diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..412eeda --- /dev/null +++ b/.gitattributes @@ -0,0 +1,22 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp +*.sln merge=union +*.csproj merge=union +*.vbproj merge=union +*.fsproj merge=union +*.dbproj merge=union + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed391d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,225 @@ +################# +## Eclipse +################# + +*.pydevproject +.project +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + + +################# +## Visual Studio +################# + +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +build/ +[Bb]in/ +[Oo]bj/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml +*.pubxml + +# NuGet Packages Directory +## TODO: If you have NuGet Package Restore enabled, uncomment the next line +#packages/ + +# Windows Azure Build Output +csx +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml +*.pfx +*.publishsettings + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +App_Data/*.mdf +App_Data/*.ldf + +############# +## Windows detritus +############# + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac crap +.DS_Store + + +############# +## Python +############# + +*.py[co] + +# Packages +*.egg +*.egg-info +dist/ +build/ +eggs/ +parts/ +var/ +sdist/ +develop-eggs/ +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg +docs/upgrade/sed_parser.sql +datas/config.php +datas/users/* +datas/thumbs/* +datas/avatars/* +datas/resized/* +plugins/karma/* +plugins/ogmetas/* +plugins/feedback/* +plugins/banstoplist/* diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..3827224 --- /dev/null +++ b/.htaccess @@ -0,0 +1,17 @@ +Options -Indexes + +RewriteEngine On + +#RewriteBase / + +RewriteCond %{REQUEST_URI} ^(.*?)\/{2,}(.*?)$ +RewriteRule . %1/%2 [L,R=301] +RewriteCond %{THE_REQUEST} // +RewriteRule .* /$0 [R=301,L] + +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-l +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule ^(.*)$ index.php [L] + + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..40ce6db --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Seditio CMS + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d133869 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Seditio-179 + Seditio 179 (stable release) diff --git a/datas/config.default.php b/datas/config.default.php new file mode 100644 index 0000000..9b52fdd --- /dev/null +++ b/datas/config.default.php @@ -0,0 +1,88 @@ + 1) ? dirname($_SERVER['PHP_SELF']) : ""; +$request_uri = str_replace($subdir_uri, "", $request_uri); + +$vars_req = array(); +$params_req = ""; + +if (($pos = strpos($request_uri, "?")) !== false) { + $params_req = mb_substr($request_uri, $pos + 1); + $request_uri = mb_substr($request_uri, 0, $pos); + parse_str($params_req, $vars_req); + $params_req = "&" . urldecode($params_req); +} + +foreach ($sed_urlrewrite as $val) { + if (preg_match($val['cond'], $request_uri)) { + $url = preg_replace($val['cond'], $val['rule'], $request_uri); + + $url = urldecode($url); + + if (($pos = mb_strpos($url, "?")) !== false) { + $params = mb_substr($url, $pos + 1); + parse_str($params, $vars); + + $vars += $vars_req; + $params = $params . $params_req; + + $_GET += $vars; + $_REQUEST += $vars; + //$GLOBALS += $vars; + $_SERVER["QUERY_STRING"] = $QUERY_STRING = $params; + } + + $pos = mb_strpos($url, ".php"); + $incl = mb_substr($url, 0, $pos + 4); + + include_once(SED_ROOT . '/' . $incl); + die(); + } +} + +$module = @$_GET['module']; + +if (!empty($module)) { + $system_core = array("install", "admin", "captcha", "resizer", "forums", "gallery", "index", "list", "message", "page", "pfs", "plug", "pm", "polls", "rss", "sitemap", "users", "view"); + if (in_array($module, $system_core)) { + $system_incl_dir = ($module == "install") ? SED_ROOT . "/system/install/" : SED_ROOT . "/system/core/" . $module . "/"; + include_once($system_incl_dir . $module . ".php"); + die(); + } +} + +if (str_replace("/", "", $request_uri) == "index.php") { + header("Location: /", TRUE, 301); + exit(); +} + +header("HTTP/1.1 404 Not Found"); +exit; diff --git a/plugins/adminqv/adminqv.php b/plugins/adminqv/adminqv.php new file mode 100644 index 0000000..9909014 --- /dev/null +++ b/plugins/adminqv/adminqv.php @@ -0,0 +1,160 @@ +'$timeback'"); +$newusers = sed_sql_result($sql, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT COUNT(*) FROM $db_pages WHERE page_date >'$timeback'"); +$newpages = sed_sql_result($sql, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT COUNT(*) FROM $db_forum_topics WHERE ft_creationdate>'$timeback'"); +$newtopics = sed_sql_result($sql, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT COUNT(*) FROM $db_forum_posts WHERE fp_updated>'$timeback'"); +$newposts = sed_sql_result($sql, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT COUNT(*) FROM $db_com WHERE com_date>'$timeback'"); +$newcomments = sed_sql_result($sql, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT COUNT(*) FROM $db_pm WHERE pm_date>'$timeback'"); +$newpms = sed_sql_result($sql, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT * FROM $db_stats WHERE stat_name LIKE '20%' ORDER BY stat_name DESC LIMIT " . $timeback_stats); +while ($row = sed_sql_fetchassoc($sql)) { + $ty = mb_substr($row['stat_name'], 0, 4); + $tm = mb_substr($row['stat_name'], 5, 2); + $td = mb_substr($row['stat_name'], 8, 2); + $dat = @date('d D', mktime(0, 0, 0, $tm, $td, $ty)); + $hits_d[$dat] = $row['stat_value']; +} + +$hits_d_max = max($hits_d); + +$sql = sed_sql_query("SHOW TABLES"); + +while ($row = sed_sql_fetchrow($sql)) { + $table_name = $row[0]; + $status = sed_sql_query("SHOW TABLE STATUS LIKE '$table_name'"); + $status1 = sed_sql_fetcharray($status); + $tables[] = $status1; +} + +$total_length = 0; +$total_rows = 0; +$total_index_length = 0; +$total_fragmented = 0; +$total_data_length = 0; + +foreach ($tables as $i => $dat) { + $table_length = $dat['Index_length'] + $dat['Data_length']; + $total_length += $table_length; + $total_rows += $dat['Rows']; + $total_index_length += $dat['Index_length']; + $total_fragmented += $dat['Data_free']; + $total_data_length += $dat['Data_length']; +} + +$qv = new XTemplate(SED_ROOT . '/plugins/adminqv/adminqv.tpl'); + +if (!$cfg['disablereg']) { + + $qv->assign(array( + "QV_NEWUSERS" => $newusers, + "QV_NEWUSERS_URL" => sed_url("users", "f=all&s=regdate&w=desc") + )); + $qv->parse("ADMIN_QV.ADMIN_QV_NEWUSERS"); +} + +if (!$cfg['disable_page']) { + + $qv->assign(array( + "QV_NEWPAGES" => $newpages, + "QV_NEWPAGES_URL" => sed_url("admin", "m=page") + )); + $qv->parse("ADMIN_QV.ADMIN_QV_NEWPAGES"); +} + +if (!$cfg['disable_forums']) { + + $qv->assign(array( + "QV_NEWTOPICS" => $newtopics, + "QV_NEWPOSTS" => $newposts, + "QV_NEWFORUMS_URL" => sed_url("forums") + )); + $qv->parse("ADMIN_QV.ADMIN_QV_NEWONFORUMS"); +} + +if (!$cfg['disable_comments']) { + + $qv->assign(array( + "QV_NEWCOMMENTS" => $newcomments, + "QV_NEWCOMMENTS_URL" => sed_url("admin", "m=comments") + )); + $qv->parse("ADMIN_QV.ADMIN_QV_NEWCOMMENTS"); +} + +if (!$cfg['disable_pm']) { + + $qv->assign(array( + "QV_NEWPMS" => $newcomments + )); + $qv->parse("ADMIN_QV.ADMIN_QV_NEWPMS"); +} + +$qv->assign(array( + "QV_DB_ROWS" => $total_rows, + "QV_DB_INDEXSIZE" => number_format(($total_index_length / 1024), 1, '.', ' '), + "QV_DB_DATASSIZE" => number_format(($total_data_length / 1024), 1, '.', ' '), + "QV_DB_TOTALSIZE" => number_format(($total_length / 1024), 1, '.', ' '), + "QV_DB_TOTALFRAGMENTED" => number_format(($total_fragmented / 1024), 1, '.', ' ') +)); + +$qv->parse("ADMIN_QV.ADMIN_QV_DB"); + +if (!$cfg['disablehitstats']) { + foreach ($hits_d as $day => $hits) { + $qv->assign(array( + "QV_HITS_PERCENTBAR" => floor(($hits / $hits_d_max) * 100), + "QV_HITS_DAY" => $day, + "QV_HITS_COUNT" => $hits, + "QV_HITS_URL" => sed_url("admin", "m=hits") + )); + $qv->parse("ADMIN_QV.ADMIN_QV_HITS.ADMIN_QV_HITS_DAYLIST"); + } + $qv->parse("ADMIN_QV.ADMIN_QV_HITS"); +} + +$qv->parse("ADMIN_QV"); +$t->assign("ADMIN_QV", $qv->text("ADMIN_QV")); diff --git a/plugins/adminqv/adminqv.png b/plugins/adminqv/adminqv.png new file mode 100644 index 0000000..d49d6aa Binary files /dev/null and b/plugins/adminqv/adminqv.png differ diff --git a/plugins/adminqv/adminqv.setup.php b/plugins/adminqv/adminqv.setup.php new file mode 100644 index 0000000..f873af0 --- /dev/null +++ b/plugins/adminqv/adminqv.setup.php @@ -0,0 +1,36 @@ + + +
+ +
+ +
+ +
+

{PHP.L.plu_pastdays}

+
+ +
+ +
+ +
+ + +
+ +
+ {QV_NEWUSERS} +
+
+ + + +
+ +
{QV_NEWPAGES}
+
+ + + +
+ +
{QV_NEWTOPICS}
+
+
+ +
{QV_NEWPOSTS}
+
+ + + +
+ +
{QV_NEWCOMMENTS}
+
+ + + +
+
{PHP.L.plu_newpms}
+
{QV_NEWPMS}
+
+ + +
+ +
+ +
+ +
+ +
+
+ +
+ +
+

{PHP.L.plu_db}

+
+ +
+ + + +
+ +
+ +
+
{PHP.L.plu_db_rows}
+
{QV_DB_ROWS}
+
+ +
+
{PHP.L.plu_db_indexsize}
+
{QV_DB_INDEXSIZE}
+
+ +
+
{PHP.L.plu_db_datassize}
+
{QV_DB_DATASSIZE}
+
+ +
+
{PHP.L.plu_db_totalsize}
+
{QV_DB_TOTALSIZE}
+
+ +
+
{PHP.L.plu_db_fragmented}
+
{QV_DB_TOTALFRAGMENTED}
+
+ +
+ +
+ + + +
+ +
+ +
+ +
+ + + +
+ +
+

{PHP.L.plu_hitsmonth}

+
+ +
+ +
+ +
+ + +
+
{QV_HITS_DAY}
+
{QV_HITS_COUNT} {PHP.L.Hits}
+
{QV_HITS_PERCENTBAR}%
+
+
+
+
+
+
+
+
+ + +
+ +
+ + + + + +
+ +
+ + \ No newline at end of file diff --git a/plugins/adminqv/lang/adminqv.en.lang.php b/plugins/adminqv/lang/adminqv.en.lang.php new file mode 100644 index 0000000..c2d5922 --- /dev/null +++ b/plugins/adminqv/lang/adminqv.en.lang.php @@ -0,0 +1,41 @@ + $maxtotal * 1024) || ($u_size > ($maxfile * 1024))) { + $disp_errors = $L['pfs_filetoobigorext']; +} elseif (file_exists($cfg['pfs_dir'] . $filename)) { + $disp_errors = $L['pfs_fileexists']; +} elseif (empty($disp_errors)) { + move_uploaded_file($u_tmp_name, $cfg['pfs_dir'] . $filename); + + @chmod($cfg['pfs_dir'] . $filename, 0644); + + $uploaded = 1; + + $folder_title = $L[date('F')] . " " . date('Y'); + + $sql = sed_sql_query("SELECT pff_id FROM $db_pfs_folders WHERE pff_userid = '" . $usr['id'] . "' AND pff_title = '" . $folder_title . "' LIMIT 1"); + if (sed_sql_numrows($sql) > 0) { + $folderid = sed_sql_result($sql, 0, "pff_id"); + } else { + $sql = sed_sql_query("INSERT INTO $db_pfs_folders + (pff_userid, + pff_title, + pff_date, + pff_updated, + pff_desc, + pff_type, + pff_count) + VALUES + (" . (int)$usr['id'] . ", + '" . sed_sql_prep($folder_title) . "', + " . (int)$sys['now'] . ", + " . (int)$sys['now'] . ", + '', + 0, + 0)"); + $folderid = sed_sql_insertid(); + } + + $sql = sed_sql_query("INSERT INTO $db_pfs + (pfs_userid, + pfs_date, + pfs_file, + pfs_extension, + pfs_folderid, + pfs_title, + pfs_size, + pfs_count) + VALUES + (" . (int)$usr['id'] . ", + " . (int)$sys['now_offset'] . ", + '" . sed_sql_prep($u_sqlname) . "', + '" . sed_sql_prep($f_extension) . "', + " . (int)$folderid . ", + '" . sed_sql_prep($u_title) . "', + " . (int)$u_size . ", + 0) "); + + $sql = sed_sql_query("UPDATE $db_pfs_folders SET pff_updated='" . $sys['now'] . "' WHERE pff_id='$folderid'"); + sed_sm_createthumb($cfg['pfs_dir'] . $filename, $cfg['th_dir'] . $filename, $cfg['th_x'], $cfg['th_y'], $cfg['th_jpeg_quality'], "resize", TRUE); +} + +$result_upload = array( + "uploaded" => $uploaded, + "filename" => $filename, + "url" => $cfg['pfs_dir'] . $filename, + "error" => array("message" => $disp_errors) +); + +header("Content-type: application/json; charset=UTF-8"); +header("Cache-Control: must-revalidate"); +header("Pragma: no-cache"); +header("Expires: -1"); +print json_encode($result_upload); diff --git a/plugins/ckeditor/ckeditor.install.php b/plugins/ckeditor/ckeditor.install.php new file mode 100644 index 0000000..771c800 --- /dev/null +++ b/plugins/ckeditor/ckeditor.install.php @@ -0,0 +1,28 @@ + $v) { + if ($v['id'] > 3) { + //$value = ($v['id']==5) ? 'Extended' : 'Default'; + sed_config_add('plug', 'ckeditor', 99, 'ckeditor_grp' . $v['id'], 'select', 'Default', 'Default,Micro,Basic,Extended,Full', "Global toolbar for the group '" . $v['title']); + } +} diff --git a/plugins/ckeditor/ckeditor.pfs.stndl.php b/plugins/ckeditor/ckeditor.pfs.stndl.php new file mode 100644 index 0000000..068217e --- /dev/null +++ b/plugins/ckeditor/ckeditor.pfs.stndl.php @@ -0,0 +1,62 @@ + + +" . $cfg['maintitle'] . "" . sed_htmlmetas() . sed_javascript($morejavascript) . $moremetas . " + +"; diff --git a/plugins/ckeditor/ckeditor.php b/plugins/ckeditor/ckeditor.php new file mode 100644 index 0000000..61c421c --- /dev/null +++ b/plugins/ckeditor/ckeditor.php @@ -0,0 +1,85 @@ + 3) { + + /* ===== Load configuration Ckeditor ===== */ + + $ckeditor_detect_lang = $cfg['plugin']['ckeditor']['ckeditor_detectlang']; + $ckeditor_lang = ($ckeditor_detect_lang == "No") ? $cfg['plugin']['ckeditor']['ckeditor_lang'] : $usr['lang']; + $ckeditor_skin = $cfg['plugin']['ckeditor']['ckeditor_skin']; + $ckeditor_color_toolbar = $cfg['plugin']['ckeditor']['ckeditor_color_toolbar']; + + /* ===== Load smiles ===== */ + + $sql2 = sed_sql_query("SELECT * FROM $db_smilies WHERE 1 ORDER BY smilie_order ASC"); + $smiley_path = "["; + $smiley_descriptions = "["; + while ($row = sed_sql_fetchassoc($sql2)) { + $row['smilie_text'] = sed_cc($row['smilie_text']); + $smiley_path .= "'" . $row['smilie_image'] . "',"; + $smiley_descriptions .= "'" . sed_cc($row['smilie_text'], ENT_QUOTES) . "',"; + } + $pointpos_sp = mb_strrpos($smiley_path, ",") + 1; + $smiley_path = mb_substr($smiley_path, 0, $pointpos_sp - 1); + $pointpos_sd = mb_strrpos($smiley_descriptions, ",") + 1; + $smiley_descriptions = mb_substr($smiley_descriptions, 0, $pointpos_sd - 1); + $smiley_path .= "]"; + $smiley_descriptions .= "]"; + $ck_config = "sed_config.js" . "?" . sed_unique(5); + + $tmp = 'ckeditor_grp' . $usr['maingrp']; + $ck_toolbar = (!empty($cfg['plugin']['ckeditor'][$tmp] && $cfg['plugin']['ckeditor'][$tmp] != 'Default')) ? "'" . $cfg['plugin']['ckeditor'][$tmp] . "'" : "textareas[i].getAttribute('data-editor')"; + + /* ===== Init Ckeditor ===== */ + + $init_ck = " + "; + $moremetas .= " + " . $init_ck; +} diff --git a/plugins/ckeditor/ckeditor.png b/plugins/ckeditor/ckeditor.png new file mode 100644 index 0000000..7856420 Binary files /dev/null and b/plugins/ckeditor/ckeditor.png differ diff --git a/plugins/ckeditor/ckeditor.setup.php b/plugins/ckeditor/ckeditor.setup.php new file mode 100644 index 0000000..cfeeb5c --- /dev/null +++ b/plugins/ckeditor/ckeditor.setup.php @@ -0,0 +1,44 @@ +y.getListenerIndex(c)){y=y.listeners;k||(k=this);isNaN(q)&&(q=10);m.fn=c;m.priority=q;for(var A=y.length-1;0<=A;A--)if(y[A].priority<=q)return y.splice(A+1,0,m),{removeListener:g}; +y.unshift(m)}return{removeListener:g}},once:function(){var a=Array.prototype.slice.call(arguments),b=a[1];a[1]=function(a){a.removeListener();return b.apply(this,arguments)};return this.on.apply(this,a)},capture:function(){CKEDITOR.event.useCapture=1;var a=this.on.apply(this,arguments);CKEDITOR.event.useCapture=0;return a},fire:function(){var c=0,e=function(){c=1},d=0,h=function(){d=1};return function(q,m,g){var x=b(this)[q];q=c;var y=d;c=d=0;if(x){var A=x.listeners;if(A.length)for(var A=A.slice(0), +F,v=0;vdocument.documentMode),mobile:-1c||b.quirks);b.gecko&&(d=a.match(/rv:([\d\.]+)/))&&(d=d[1].split("."),c=1E4*d[0]+100*(d[1]||0)+1*(d[2]||0));b.air&&(c=parseFloat(a.match(/ adobeair\/(\d+)/)[1])); +b.webkit&&(c=parseFloat(a.match(/ applewebkit\/(\d+)/)[1]));b.version=c;b.isCompatible=!(b.ie&&7>c)&&!(b.gecko&&4E4>c)&&!(b.webkit&&534>c);b.hidpi=2<=window.devicePixelRatio;b.needsBrFiller=b.gecko||b.webkit||b.ie&&10c;b.cssClass="cke_browser_"+(b.ie?"ie":b.gecko?"gecko":b.webkit?"webkit":"unknown");b.quirks&&(b.cssClass+=" cke_browser_quirks");b.ie&&(b.cssClass+=" cke_browser_ie"+(b.quirks?"6 cke_browser_iequirks":b.version));b.air&&(b.cssClass+=" cke_browser_air"); +b.iOS&&(b.cssClass+=" cke_browser_ios");b.hidpi&&(b.cssClass+=" cke_hidpi");return b}()); +"unloaded"==CKEDITOR.status&&function(){CKEDITOR.event.implementOn(CKEDITOR);CKEDITOR.loadFullCore=function(){if("basic_ready"!=CKEDITOR.status)CKEDITOR.loadFullCore._load=1;else{delete CKEDITOR.loadFullCore;var a=document.createElement("script");a.type="text/javascript";a.src=CKEDITOR.basePath+"ckeditor.js";document.getElementsByTagName("head")[0].appendChild(a)}};CKEDITOR.loadFullCoreTimeout=0;CKEDITOR.add=function(a){(this._.pending||(this._.pending=[])).push(a)};(function(){CKEDITOR.domReady(function(){var a= +CKEDITOR.loadFullCore,d=CKEDITOR.loadFullCoreTimeout;a&&(CKEDITOR.status="basic_ready",a&&a._load?a():d&&setTimeout(function(){CKEDITOR.loadFullCore&&CKEDITOR.loadFullCore()},1E3*d))})})();CKEDITOR.status="basic_loaded"}();"use strict";CKEDITOR.VERBOSITY_WARN=1;CKEDITOR.VERBOSITY_ERROR=2;CKEDITOR.verbosity=CKEDITOR.VERBOSITY_WARN|CKEDITOR.VERBOSITY_ERROR;CKEDITOR.warn=function(a,d){CKEDITOR.verbosity&CKEDITOR.VERBOSITY_WARN&&CKEDITOR.fire("log",{type:"warn",errorCode:a,additionalData:d})}; +CKEDITOR.error=function(a,d){CKEDITOR.verbosity&CKEDITOR.VERBOSITY_ERROR&&CKEDITOR.fire("log",{type:"error",errorCode:a,additionalData:d})}; +CKEDITOR.on("log",function(a){if(window.console&&window.console.log){var d=console[a.data.type]?a.data.type:"log",b=a.data.errorCode;if(a=a.data.additionalData)console[d]("[CKEDITOR] Error code: "+b+".",a);else console[d]("[CKEDITOR] Error code: "+b+".");console[d]("[CKEDITOR] For more information about this error go to https://ckeditor.com/docs/ckeditor4/latest/guide/dev_errors.html#"+b)}},null,null,999);CKEDITOR.dom={}; +(function(){function a(a,y,b){this._minInterval=a;this._context=b;this._lastOutput=this._scheduledTimer=0;this._output=CKEDITOR.tools.bind(y,b||{});var c=this;this.input=function(){function a(){c._lastOutput=(new Date).getTime();c._scheduledTimer=0;c._call()}if(!c._scheduledTimer||!1!==c._reschedule()){var x=(new Date).getTime()-c._lastOutput;x/g,k=/|\s) /g,function(a,b){return b+"\x26nbsp;"}).replace(/ (?=<)/g,"\x26nbsp;")},getNextNumber:function(){var a=0;return function(){return++a}}(),getNextId:function(){return"cke_"+this.getNextNumber()},getUniqueId:function(){for(var a="e",b=0;8>b;b++)a+=Math.floor(65536*(1+Math.random())).toString(16).substring(1); +return a},override:function(a,b){var c=b(a);c.prototype=a.prototype;return c},setTimeout:function(a,b,c,g,h){h||(h=window);c||(c=h);return h.setTimeout(function(){g?a.apply(c,[].concat(g)):a.apply(c)},b||0)},throttle:function(a,b,c){return new this.buffers.throttle(a,b,c)},trim:function(){var a=/(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g;return function(b){return b.replace(a,"")}}(),ltrim:function(){var a=/^[ \t\n\r]+/g;return function(b){return b.replace(a,"")}}(),rtrim:function(){var a=/[ \t\n\r]+$/g;return function(b){return b.replace(a, +"")}}(),indexOf:function(a,b){if("function"==typeof b)for(var c=0,g=a.length;cparseFloat(c);g&&(c=c.replace("-",""));a.setStyle("width",c);b=a.getClientRect();c=Math.round(b.width);return g?-c:c}return c}}(),repeat:function(a,b){return Array(b+1).join(a)},tryThese:function(){for(var a,b=0,c=arguments.length;bb;b++)a[b]=("0"+parseInt(a[b],10).toString(16)).slice(-2);return"#"+a.join("")})},normalizeHex:function(a){return a.replace(/#(([0-9a-f]{3}){1,2})($|;|\s+)/gi, +function(a,b,c,g){a=b.toLowerCase();3==a.length&&(a=a.split(""),a=[a[0],a[0],a[1],a[1],a[2],a[2]].join(""));return"#"+a+g})},_isValidColorFormat:function(a){if(!a)return!1;a=a.replace(/\s+/g,"");return/^[a-z0-9()#%,./]+$/i.test(a)},parseCssText:function(a,b,c){var g={};c&&(a=(new CKEDITOR.dom.element("span")).setAttribute("style",a).getAttribute("style")||"");a&&(a=CKEDITOR.tools.normalizeHex(CKEDITOR.tools.convertRgbToHex(a)));if(!a||";"==a)return g;a.replace(/"/g,'"').replace(/\s*([^:;\s]+)\s*:\s*([^;]+)\s*(?=;|$)/g, +function(a,c,x){b&&(c=c.toLowerCase(),"font-family"==c&&(x=x.replace(/\s*,\s*/g,",")),x=CKEDITOR.tools.trim(x));g[c]=x});return g},writeCssText:function(a,b){var c,g=[];for(c in a)g.push(c+":"+a[c]);b&&g.sort();return g.join("; ")},objectCompare:function(a,b,c){var g;if(!a&&!b)return!0;if(!a||!b)return!1;for(g in a)if(a[g]!=b[g])return!1;if(!c)for(g in b)if(a[g]!=b[g])return!1;return!0},objectKeys:function(a){return CKEDITOR.tools.object.keys(a)},convertArrayToObject:function(a,b){var c={};1==arguments.length&& +(b=!0);for(var g=0,h=a.length;gc;c++)a.push(Math.floor(256*Math.random()));for(c=0;c=g||0==c&&48<= +g&&57>=g||1==c&&48<=g&&57>=g&&45==l?h+("\\"+g.toString(16)+" "):0==c&&1==b&&45==g?h+("\\"+a.charAt(c)):128<=g||45==g||95==g||48<=g&&57>=g||65<=g&&90>=g||97<=g&&122>=g?h+a.charAt(c):h+("\\"+a.charAt(c));a=h}else a="";return a},getMouseButton:function(a){return(a=a&&a.data?a.data.$:a)?CKEDITOR.tools.normalizeMouseButton(a.button):!1},normalizeMouseButton:function(a,b){if(!CKEDITOR.env.ie||9<=CKEDITOR.env.version&&!CKEDITOR.env.ie6Compat)return a;for(var c=[[CKEDITOR.MOUSE_BUTTON_LEFT,1],[CKEDITOR.MOUSE_BUTTON_MIDDLE, +4],[CKEDITOR.MOUSE_BUTTON_RIGHT,2]],g=0;gl)for(d=l;3>d;d++)h[d]=0;e[0]=(h[0]&252)>>2;e[1]=(h[0]&3)<<4|h[1]>>4;e[2]=(h[1]&15)<<2|(h[2]&192)>>6;e[3]=h[2]&63;for(d=0;4>d;d++)b=d<=l? +b+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(e[d]):b+"\x3d"}return b},style:{parse:{_borderStyle:"none hidden dotted dashed solid double groove ridge inset outset".split(" "),_widthRegExp:/^(thin|medium|thick|[\+-]?\d+(\.\d+)?[a-z%]+|[\+-]?0+(\.0+)?|\.\d+[a-z%]+)$/,_rgbaRegExp:/rgba?\(\s*\d+%?\s*,\s*\d+%?\s*,\s*\d+%?\s*(?:,\s*[0-9.]+\s*)?\)/gi,_hslaRegExp:/hsla?\(\s*[0-9.]+\s*,\s*\d+%\s*,\s*\d+%\s*(?:,\s*[0-9.]+\s*)?\)/gi,background:function(a){var b={},c=this._findColor(a); +c.length&&(b.color=c[0],CKEDITOR.tools.array.forEach(c,function(b){a=a.replace(b,"")}));if(a=CKEDITOR.tools.trim(a))b.unprocessed=a;return b},margin:function(a){return CKEDITOR.tools.style.parse.sideShorthand(a,function(a){return a.match(/(?:\-?[\.\d]+(?:%|\w*)|auto|inherit|initial|unset|revert)/g)||["0px"]})},sideShorthand:function(a,b){function c(a){g.top=h[a[0]];g.right=h[a[1]];g.bottom=h[a[2]];g.left=h[a[3]]}var g={},h=b?b(a):a.split(/\s+/);switch(h.length){case 1:c([0,0,0,0]);break;case 2:c([0, +1,0,1]);break;case 3:c([0,1,2,1]);break;case 4:c([0,1,2,3])}return g},border:function(a){return CKEDITOR.tools.style.border.fromCssRule(a)},_findColor:function(a){var b=[],c=CKEDITOR.tools.array,b=b.concat(a.match(this._rgbaRegExp)||[]),b=b.concat(a.match(this._hslaRegExp)||[]);return b=b.concat(c.filter(a.split(/\s+/),function(a){return a.match(/^\#[a-f0-9]{3}(?:[a-f0-9]{3})?$/gi)?!0:a.toLowerCase()in CKEDITOR.tools.style.parse._colors}))}}},array:{filter:function(a,b,c){var g=[];this.forEach(a, +function(h,l){b.call(c,h,l,a)&&g.push(h)});return g},find:function(a,b,c){for(var g=a.length,h=0;hCKEDITOR.env.version&&(!a||"object"!==typeof a)){b=[];if("string"===typeof a)for(c=0;cCKEDITOR.env.version)for(h=0;hCKEDITOR.env.version&&(this.type==CKEDITOR.NODE_ELEMENT||this.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT)&&c(f);return f},hasPrevious:function(){return!!this.$.previousSibling},hasNext:function(){return!!this.$.nextSibling},insertAfter:function(a){a.$.parentNode.insertBefore(this.$,a.$.nextSibling);return a},insertBefore:function(a){a.$.parentNode.insertBefore(this.$, +a.$);return a},insertBeforeMe:function(a){this.$.parentNode.insertBefore(a.$,this.$);return a},getAddress:function(a){for(var d=[],b=this.getDocument().$.documentElement,c=this;c&&c!=b;){var f=c.getParent();f&&d.unshift(this.getIndex.call(c,a));c=f}return d},getDocument:function(){return new CKEDITOR.dom.document(this.$.ownerDocument||this.$.parentNode.ownerDocument)},getIndex:function(a){function d(a,b){var c=b?a.getNext():a.getPrevious();return c&&c.type==CKEDITOR.NODE_TEXT?c.isEmpty()?d(c,b):c: +null}var b=this,c=-1,f;if(!this.getParent()||a&&b.type==CKEDITOR.NODE_TEXT&&b.isEmpty()&&!d(b)&&!d(b,!0))return-1;do if(!a||b.equals(this)||b.type!=CKEDITOR.NODE_TEXT||!f&&!b.isEmpty())c++,f=b.type==CKEDITOR.NODE_TEXT;while(b=b.getPrevious());return c},getNextSourceNode:function(a,d,b){if(b&&!b.call){var c=b;b=function(a){return!a.equals(c)}}a=!a&&this.getFirst&&this.getFirst();var f;if(!a){if(this.type==CKEDITOR.NODE_ELEMENT&&b&&!1===b(this,!0))return null;a=this.getNext()}for(;!a&&(f=(f||this).getParent());){if(b&& +!1===b(f,!0))return null;a=f.getNext()}return!a||b&&!1===b(a)?null:d&&d!=a.type?a.getNextSourceNode(!1,d,b):a},getPreviousSourceNode:function(a,d,b){if(b&&!b.call){var c=b;b=function(a){return!a.equals(c)}}a=!a&&this.getLast&&this.getLast();var f;if(!a){if(this.type==CKEDITOR.NODE_ELEMENT&&b&&!1===b(this,!0))return null;a=this.getPrevious()}for(;!a&&(f=(f||this).getParent());){if(b&&!1===b(f,!0))return null;a=f.getPrevious()}return!a||b&&!1===b(a)?null:d&&a.type!=d?a.getPreviousSourceNode(!1,d,b): +a},getPrevious:function(a){var d=this.$,b;do b=(d=d.previousSibling)&&10!=d.nodeType&&new CKEDITOR.dom.node(d);while(b&&a&&!a(b));return b},getNext:function(a){var d=this.$,b;do b=(d=d.nextSibling)&&new CKEDITOR.dom.node(d);while(b&&a&&!a(b));return b},getParent:function(a){var d=this.$.parentNode;return d&&(d.nodeType==CKEDITOR.NODE_ELEMENT||a&&d.nodeType==CKEDITOR.NODE_DOCUMENT_FRAGMENT)?new CKEDITOR.dom.node(d):null},getParents:function(a){var d=this,b=[];do b[a?"push":"unshift"](d);while(d=d.getParent()); +return b},getCommonAncestor:function(a){if(a.equals(this))return this;if(a.contains&&a.contains(this))return a;var d=this.contains?this:this.getParent();do if(d.contains(a))return d;while(d=d.getParent());return null},getPosition:function(a){var d=this.$,b=a.$;if(d.compareDocumentPosition)return d.compareDocumentPosition(b);if(d==b)return CKEDITOR.POSITION_IDENTICAL;if(this.type==CKEDITOR.NODE_ELEMENT&&a.type==CKEDITOR.NODE_ELEMENT){if(d.contains){if(d.contains(b))return CKEDITOR.POSITION_CONTAINS+ +CKEDITOR.POSITION_PRECEDING;if(b.contains(d))return CKEDITOR.POSITION_IS_CONTAINED+CKEDITOR.POSITION_FOLLOWING}if("sourceIndex"in d)return 0>d.sourceIndex||0>b.sourceIndex?CKEDITOR.POSITION_DISCONNECTED:d.sourceIndex=document.documentMode||!d||(a=d+":"+a);return new CKEDITOR.dom.nodeList(this.$.getElementsByTagName(a))},getHead:function(){var a= +this.$.getElementsByTagName("head")[0];return a=a?new CKEDITOR.dom.element(a):this.getDocumentElement().append(new CKEDITOR.dom.element("head"),!0)},getBody:function(){return new CKEDITOR.dom.element(this.$.body)},getDocumentElement:function(){return new CKEDITOR.dom.element(this.$.documentElement)},getWindow:function(){return new CKEDITOR.dom.window(this.$.parentWindow||this.$.defaultView)},write:function(a){this.$.open("text/html","replace");CKEDITOR.env.ie&&(a=a.replace(/(?:^\s*]*?>)|^/i, +'$\x26\n\x3cscript data-cke-temp\x3d"1"\x3e('+CKEDITOR.tools.fixDomain+")();\x3c/script\x3e"));this.$.write(a);this.$.close()},find:function(a){return new CKEDITOR.dom.nodeList(this.$.querySelectorAll(a))},findOne:function(a){return(a=this.$.querySelector(a))?new CKEDITOR.dom.element(a):null},_getHtml5ShivFrag:function(){var a=this.getCustomData("html5ShivFrag");a||(a=this.$.createDocumentFragment(),CKEDITOR.tools.enableHtml5Elements(a,!0),this.setCustomData("html5ShivFrag",a));return a}}); +CKEDITOR.dom.nodeList=function(a){this.$=a};CKEDITOR.dom.nodeList.prototype={count:function(){return this.$.length},getItem:function(a){return 0>a||a>=this.$.length?null:(a=this.$[a])?new CKEDITOR.dom.node(a):null},toArray:function(){return CKEDITOR.tools.array.map(this.$,function(a){return new CKEDITOR.dom.node(a)})}};CKEDITOR.dom.element=function(a,d){"string"==typeof a&&(a=(d?d.$:document).createElement(a));CKEDITOR.dom.domObject.call(this,a)}; +CKEDITOR.dom.element.get=function(a){return(a="string"==typeof a?document.getElementById(a)||document.getElementsByName(a)[0]:a)&&(a.$?a:new CKEDITOR.dom.element(a))};CKEDITOR.dom.element.prototype=new CKEDITOR.dom.node;CKEDITOR.dom.element.createFromHtml=function(a,d){var b=new CKEDITOR.dom.element("div",d);b.setHtml(a);return b.getFirst().remove()}; +CKEDITOR.dom.element.setMarker=function(a,d,b,c){var f=d.getCustomData("list_marker_id")||d.setCustomData("list_marker_id",CKEDITOR.tools.getNextNumber()).getCustomData("list_marker_id"),e=d.getCustomData("list_marker_names")||d.setCustomData("list_marker_names",{}).getCustomData("list_marker_names");a[f]=d;e[b]=1;return d.setCustomData(b,c)};CKEDITOR.dom.element.clearAllMarkers=function(a){for(var d in a)CKEDITOR.dom.element.clearMarkers(a,a[d],1)}; +CKEDITOR.dom.element.clearMarkers=function(a,d,b){var c=d.getCustomData("list_marker_names"),f=d.getCustomData("list_marker_id"),e;for(e in c)d.removeCustomData(e);d.removeCustomData("list_marker_names");b&&(d.removeCustomData("list_marker_id"),delete a[f])}; +(function(){function a(a,b){return-1<(" "+a+" ").replace(e," ").indexOf(" "+b+" ")}function d(a){var b=!0;a.$.id||(a.$.id="cke_tmp_"+CKEDITOR.tools.getNextNumber(),b=!1);return function(){b||a.removeAttribute("id")}}function b(a,b){var c=CKEDITOR.tools.escapeCss(a.$.id);return"#"+c+" "+b.split(/,\s*/).join(", #"+c+" ")}function c(a){for(var b=0,c=0,g=k[a].length;cCKEDITOR.env.version?this.$.text+=a:this.append(new CKEDITOR.dom.text(a))},appendBogus:function(a){if(a||CKEDITOR.env.needsBrFiller){for(a=this.getLast();a&&a.type==CKEDITOR.NODE_TEXT&&!CKEDITOR.tools.rtrim(a.getText());)a=a.getPrevious();a&&a.is&&a.is("br")||(a=this.getDocument().createElement("br"),CKEDITOR.env.gecko&&a.setAttribute("type","_moz"),this.append(a))}},breakParent:function(a,b){var c=new CKEDITOR.dom.range(this.getDocument());c.setStartAfter(this);c.setEndAfter(a); +var g=c.extractContents(!1,b||!1),d;c.insertNode(this.remove());if(CKEDITOR.env.ie&&!CKEDITOR.env.edge){for(c=new CKEDITOR.dom.element("div");d=g.getFirst();)d.$.style.backgroundColor&&(d.$.style.backgroundColor=d.$.style.backgroundColor),c.append(d);c.insertAfter(this);c.remove(!0)}else g.insertAfterNode(this)},contains:document.compareDocumentPosition?function(a){return!!(this.$.compareDocumentPosition(a.$)&16)}:function(a){var b=this.$;return a.type!=CKEDITOR.NODE_ELEMENT?b.contains(a.getParent().$): +b!=a.$&&b.contains(a.$)},focus:function(){function a(){try{this.$.focus()}catch(b){}}return function(b){b?CKEDITOR.tools.setTimeout(a,100,this):a.call(this)}}(),getHtml:function(){var a=this.$.innerHTML;return CKEDITOR.env.ie?a.replace(/<\?[^>]*>/g,""):a},getOuterHtml:function(){if(this.$.outerHTML)return this.$.outerHTML.replace(/<\?[^>]*>/,"");var a=this.$.ownerDocument.createElement("div");a.appendChild(this.$.cloneNode(!0));return a.innerHTML},getClientRect:function(a){var b=CKEDITOR.tools.extend({}, +this.$.getBoundingClientRect());!b.width&&(b.width=b.right-b.left);!b.height&&(b.height=b.bottom-b.top);return a?CKEDITOR.tools.getAbsoluteRectPosition(this.getWindow(),b):b},setHtml:CKEDITOR.env.ie&&9>CKEDITOR.env.version?function(a){try{var b=this.$;if(this.getParent())return b.innerHTML=a;var c=this.getDocument()._getHtml5ShivFrag();c.appendChild(b);b.innerHTML=a;c.removeChild(b);return a}catch(g){this.$.innerHTML="";b=new CKEDITOR.dom.element("body",this.getDocument());b.$.innerHTML=a;for(b=b.getChildren();b.count();)this.append(b.getItem(0)); +return a}}:function(a){return this.$.innerHTML=a},setText:function(){var a=document.createElement("p");a.innerHTML="x";a=a.textContent;return function(b){this.$[a?"textContent":"innerText"]=b}}(),getAttribute:function(){var a=function(a){return this.$.getAttribute(a,2)};return CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(a){switch(a){case "class":a="className";break;case "http-equiv":a="httpEquiv";break;case "name":return this.$.name;case "tabindex":return a=this.$.getAttribute(a, +2),0!==a&&0===this.$.tabIndex&&(a=null),a;case "checked":return a=this.$.attributes.getNamedItem(a),(a.specified?a.nodeValue:this.$.checked)?"checked":null;case "hspace":case "value":return this.$[a];case "style":return this.$.style.cssText;case "contenteditable":case "contentEditable":return this.$.attributes.getNamedItem("contentEditable").specified?this.$.getAttribute("contentEditable"):null}return this.$.getAttribute(a,2)}:a}(),getAttributes:function(a){var b={},c=this.$.attributes,g;a=CKEDITOR.tools.isArray(a)? +a:[];for(g=0;g=document.documentMode){var b=this.$.scopeName;"HTML"!=b&&(a=b.toLowerCase()+":"+a)}this.getName=function(){return a};return this.getName()},getValue:function(){return this.$.value},getFirst:function(a){var b=this.$.firstChild;(b=b&&new CKEDITOR.dom.node(b))&&a&&!a(b)&&(b=b.getNext(a));return b},getLast:function(a){var b=this.$.lastChild;(b=b&&new CKEDITOR.dom.node(b))&&a&&!a(b)&&(b=b.getPrevious(a));return b},getStyle:function(a){return this.$.style[CKEDITOR.tools.cssStyleToDomStyle(a)]}, +is:function(){var a=this.getName();if("object"==typeof arguments[0])return!!arguments[0][a];for(var b=0;bCKEDITOR.env.version&&this.is("a")){var c=this.getParent();c.type==CKEDITOR.NODE_ELEMENT&&(c=c.clone(),c.setHtml(b),b=c.getHtml(),c.setHtml(a),a=c.getHtml())}return b==a},isVisible:function(){var a=(this.$.offsetHeight||this.$.offsetWidth)&&"hidden"!=this.getComputedStyle("visibility"),b,c;a&&CKEDITOR.env.webkit&&(b=this.getWindow(),!b.equals(CKEDITOR.document.getWindow())&&(c=b.$.frameElement)&&(a=(new CKEDITOR.dom.element(c)).isVisible()));return!!a},isEmptyInlineRemoveable:function(){if(!CKEDITOR.dtd.$removeEmpty[this.getName()])return!1; +for(var a=this.getChildren(),b=0,c=a.count();bCKEDITOR.env.version?function(b){return"name"==b?!!this.$.name:a.call(this,b)}:a:function(a){return!!this.$.attributes.getNamedItem(a)}}(),hide:function(){this.setStyle("display","none")},moveChildren:function(a,b){var c=this.$;a=a.$;if(c!=a){var g;if(b)for(;g=c.lastChild;)a.insertBefore(c.removeChild(g),a.firstChild);else for(;g=c.firstChild;)a.appendChild(c.removeChild(g))}},mergeSiblings:function(){function a(b,c,g){if(c&&c.type==CKEDITOR.NODE_ELEMENT){for(var d= +[];c.data("cke-bookmark")||c.isEmptyInlineRemoveable();)if(d.push(c),c=g?c.getNext():c.getPrevious(),!c||c.type!=CKEDITOR.NODE_ELEMENT)return;if(b.isIdentical(c)){for(var e=g?b.getLast():b.getFirst();d.length;)d.shift().move(b,!g);c.moveChildren(b,!g);c.remove();e&&e.type==CKEDITOR.NODE_ELEMENT&&e.mergeSiblings()}}}return function(b){if(!1===b||CKEDITOR.dtd.$removeEmpty[this.getName()]||this.is("a"))a(this,this.getNext(),!0),a(this,this.getPrevious())}}(),show:function(){this.setStyles({display:"", +visibility:""})},setAttribute:function(){var a=function(a,b){this.$.setAttribute(a,b);return this};return CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(b,c){"class"==b?this.$.className=c:"style"==b?this.$.style.cssText=c:"tabindex"==b?this.$.tabIndex=c:"checked"==b?this.$.checked=c:"contenteditable"==b?a.call(this,"contentEditable",c):a.apply(this,arguments);return this}:CKEDITOR.env.ie8Compat&&CKEDITOR.env.secure?function(b,c){if("src"==b&&c.match(/^http:\/\//))try{a.apply(this, +arguments)}catch(g){}else a.apply(this,arguments);return this}:a}(),setAttributes:function(a){for(var b in a)this.setAttribute(b,a[b]);return this},setValue:function(a){this.$.value=a;return this},removeAttribute:function(){var a=function(a){this.$.removeAttribute(a)};return CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(a){"class"==a?a="className":"tabindex"==a?a="tabIndex":"contenteditable"==a&&(a="contentEditable");this.$.removeAttribute(a)}:a}(),removeAttributes:function(a){if(CKEDITOR.tools.isArray(a))for(var b= +0;bCKEDITOR.env.version?(a=Math.round(100*a),this.setStyle("filter",100<=a?"":"progid:DXImageTransform.Microsoft.Alpha(opacity\x3d"+a+")")):this.setStyle("opacity",a)},unselectable:function(){this.setStyles(CKEDITOR.tools.cssVendorPrefix("user-select", +"none"));if(CKEDITOR.env.ie){this.setAttribute("unselectable","on");for(var a,b=this.getElementsByTag("*"),c=0,g=b.count();cf||0f?f:d);c&&(0>e||0e?e:g,0)},setState:function(a,b,c){b=b||"cke";switch(a){case CKEDITOR.TRISTATE_ON:this.addClass(b+"_on");this.removeClass(b+ +"_off");this.removeClass(b+"_disabled");c&&this.setAttribute("aria-pressed",!0);c&&this.removeAttribute("aria-disabled");break;case CKEDITOR.TRISTATE_DISABLED:this.addClass(b+"_disabled");this.removeClass(b+"_off");this.removeClass(b+"_on");c&&this.setAttribute("aria-disabled",!0);c&&this.removeAttribute("aria-pressed");break;default:this.addClass(b+"_off"),this.removeClass(b+"_on"),this.removeClass(b+"_disabled"),c&&this.removeAttribute("aria-pressed"),c&&this.removeAttribute("aria-disabled")}}, +getFrameDocument:function(){var a=this.$;try{a.contentWindow.document}catch(b){a.src=a.src}return a&&new CKEDITOR.dom.document(a.contentWindow.document)},copyAttributes:function(a,b){var c=this.$.attributes;b=b||{};for(var g=0;gCKEDITOR.env.version){var d=g.ownerDocument.createEventObject(),e;for(e in b)d[e]=b[e];g.fireEvent(c, +d)}else g[g[a]?a:c](b)},isDetached:function(){var a=this.getDocument(),b=a.getDocumentElement();return b.equals(this)||b.contains(this)?!CKEDITOR.env.ie||8=u.getChildCount()?(u=u.getChild(E-1),t=!0):u=u.getChild(E):z=t=!0;p.type==CKEDITOR.NODE_TEXT?q?H=!0:p.split(K):0ea)for(;X;)X=f(X,D,!0);D=R}q|| +h()}}function b(){var a=!1,b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.dom.walker.bookmark(!0),d=CKEDITOR.dom.walker.bogus();return function(f){return c(f)||b(f)?!0:d(f)&&!a?a=!0:f.type==CKEDITOR.NODE_TEXT&&(f.hasAscendant("pre")||CKEDITOR.tools.trim(f.getText()).length)||f.type==CKEDITOR.NODE_ELEMENT&&!f.is(e)?!1:!0}}function c(a){var b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.dom.walker.bookmark(1);return function(d){return c(d)||b(d)?!0:!a&&k(d)||d.type==CKEDITOR.NODE_ELEMENT&&d.is(CKEDITOR.dtd.$removeEmpty)}} +function f(a){return function(){var b;return this[a?"getPreviousNode":"getNextNode"](function(a){!b&&m(a)&&(b=a);return q(a)&&!(k(a)&&a.equals(b))})}}var e={abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,"var":1},k=CKEDITOR.dom.walker.bogus(),h=/^[\t\r\n ]*(?: |\xa0)$/,q=CKEDITOR.dom.walker.editable(),m=CKEDITOR.dom.walker.ignored(!0);CKEDITOR.dom.range.prototype={clone:function(){var a= +new CKEDITOR.dom.range(this.root);a._setStartContainer(this.startContainer);a.startOffset=this.startOffset;a._setEndContainer(this.endContainer);a.endOffset=this.endOffset;a.collapsed=this.collapsed;return a},collapse:function(a){a?(this._setEndContainer(this.startContainer),this.endOffset=this.startOffset):(this._setStartContainer(this.endContainer),this.startOffset=this.endOffset);this.collapsed=!0},cloneContents:function(a){var b=new CKEDITOR.dom.documentFragment(this.document);this.collapsed|| +d(this,2,b,!1,"undefined"==typeof a?!0:a);return b},deleteContents:function(a){this.collapsed||d(this,0,null,a)},extractContents:function(a,b){var c=new CKEDITOR.dom.documentFragment(this.document);this.collapsed||d(this,1,c,a,"undefined"==typeof b?!0:b);return c},equals:function(a){return this.startOffset===a.startOffset&&this.endOffset===a.endOffset&&this.startContainer.equals(a.startContainer)&&this.endContainer.equals(a.endContainer)},createBookmark:function(a){function b(a){return a.getAscendant(function(a){var b; +if(b=a.data&&a.data("cke-temp"))b=-1===CKEDITOR.tools.array.indexOf(["cke_copybin","cke_pastebin"],a.getAttribute("id"));return b},!0)}var c=this.startContainer,d=this.endContainer,e=this.collapsed,f,l,h,k;f=this.document.createElement("span");f.data("cke-bookmark",1);f.setStyle("display","none");f.setHtml("\x26nbsp;");a&&(h="cke_bm_"+CKEDITOR.tools.getNextNumber(),f.setAttribute("id",h+(e?"C":"S")));e||(l=f.clone(),l.setHtml("\x26nbsp;"),a&&l.setAttribute("id",h+"E"),k=this.clone(),b(d)&&(d=b(d), +k.moveToPosition(d,CKEDITOR.POSITION_AFTER_END)),k.collapse(),k.insertNode(l));k=this.clone();b(c)&&(d=b(c),k.moveToPosition(d,CKEDITOR.POSITION_BEFORE_START));k.collapse(!0);k.insertNode(f);l?(this.setStartAfter(f),this.setEndBefore(l)):this.moveToPosition(f,CKEDITOR.POSITION_AFTER_END);return{startNode:a?h+(e?"C":"S"):f,endNode:a?h+"E":l,serializable:a,collapsed:e}},createBookmark2:function(){function a(b){var g=b.container,d=b.offset,e;e=g;var f=d;e=e.type!=CKEDITOR.NODE_ELEMENT||0===f||f==e.getChildCount()? +0:e.getChild(f-1).type==CKEDITOR.NODE_TEXT&&e.getChild(f).type==CKEDITOR.NODE_TEXT;e&&(g=g.getChild(d-1),d=g.getLength());if(g.type==CKEDITOR.NODE_ELEMENT&&0=a.offset&&(a.offset=d.getIndex(),a.container=d.getParent()))}}var c=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_TEXT,!0);return function(c){var d=this.collapsed,e={container:this.startContainer,offset:this.startOffset},l={container:this.endContainer,offset:this.endOffset};c&&(a(e),b(e,this.root), +d||(a(l),b(l,this.root)));return{start:e.container.getAddress(c),end:d?null:l.container.getAddress(c),startOffset:e.offset,endOffset:l.offset,normalized:c,collapsed:d,is2:!0}}}(),moveToBookmark:function(a){if(a.is2){var b=this.document.getByAddress(a.start,a.normalized),c=a.startOffset,d=a.end&&this.document.getByAddress(a.end,a.normalized);a=a.endOffset;this.setStart(b,c);d?this.setEnd(d,a):this.collapse(!0)}else b=(c=a.serializable)?this.document.getById(a.startNode):a.startNode,a=c?this.document.getById(a.endNode): +a.endNode,this.setStartBefore(b),b.remove(),a?(this.setEndBefore(a),a.remove()):this.collapse(!0)},getBoundaryNodes:function(){var a=this.startContainer,b=this.endContainer,c=this.startOffset,d=this.endOffset,e;if(a.type==CKEDITOR.NODE_ELEMENT)if(e=a.getChildCount(),e>c)a=a.getChild(c);else if(1>e)a=a.getPreviousSourceNode();else{for(a=a.$;a.lastChild;)a=a.lastChild;a=new CKEDITOR.dom.node(a);a=a.getNextSourceNode()||a}if(b.type==CKEDITOR.NODE_ELEMENT)if(e=b.getChildCount(),e>d)b=b.getChild(d).getPreviousSourceNode(!0); +else if(1>e)b=b.getPreviousSourceNode();else{for(b=b.$;b.lastChild;)b=b.lastChild;b=new CKEDITOR.dom.node(b)}a.getPosition(b)&CKEDITOR.POSITION_FOLLOWING&&(a=b);return{startNode:a,endNode:b}},getCommonAncestor:function(a,b){var c=this.startContainer,d=this.endContainer,c=c.equals(d)?a&&c.type==CKEDITOR.NODE_ELEMENT&&this.startOffset==this.endOffset-1?c.getChild(this.startOffset):c:c.getCommonAncestor(d);return b&&!c.is?c.getParent():c},optimize:function(){var a=this.startContainer,b=this.startOffset; +a.type!=CKEDITOR.NODE_ELEMENT&&(b?b>=a.getLength()&&this.setStartAfter(a):this.setStartBefore(a));a=this.endContainer;b=this.endOffset;a.type!=CKEDITOR.NODE_ELEMENT&&(b?b>=a.getLength()&&this.setEndAfter(a):this.setEndBefore(a))},optimizeBookmark:function(){var a=this.startContainer,b=this.endContainer;a.is&&a.is("span")&&a.data("cke-bookmark")&&this.setStartAt(a,CKEDITOR.POSITION_BEFORE_START);b&&b.is&&b.is("span")&&b.data("cke-bookmark")&&this.setEndAt(b,CKEDITOR.POSITION_AFTER_END)},trim:function(a, +b){var c=this.startContainer,d=this.startOffset,e=this.collapsed;if((!a||e)&&c&&c.type==CKEDITOR.NODE_TEXT){if(d)if(d>=c.getLength())d=c.getIndex()+1,c=c.getParent();else{var f=c.split(d),d=c.getIndex()+1,c=c.getParent();this.startContainer.equals(this.endContainer)?this.setEnd(f,this.endOffset-this.startOffset):c.equals(this.endContainer)&&(this.endOffset+=1)}else d=c.getIndex(),c=c.getParent();this.setStart(c,d);if(e){this.collapse(!0);return}}c=this.endContainer;d=this.endOffset;b||e||!c||c.type!= +CKEDITOR.NODE_TEXT||(d?(d>=c.getLength()||c.split(d),d=c.getIndex()+1):d=c.getIndex(),c=c.getParent(),this.setEnd(c,d))},enlarge:function(a,b){function c(a){return a&&a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("contenteditable")?null:a}function d(a,b,c){var g=new CKEDITOR.dom.range(c);g.setStart(a,b);g.setEndAt(c,CKEDITOR.POSITION_BEFORE_END);c=new CKEDITOR.dom.walker(g);for(c.guard=function(a){return!(a.type==CKEDITOR.NODE_ELEMENT&&a.isBlockBoundary())};g=c.next();){if(g.type!=CKEDITOR.NODE_TEXT)return!1; +f=g!=a?g.getText():g.substring(b);if(e.test(f))return!1}return!0}var e=new RegExp(/[^\s\ufeff]/),f,l;switch(a){case CKEDITOR.ENLARGE_INLINE:var h=1;case CKEDITOR.ENLARGE_ELEMENT:if(this.collapsed)break;var k=this.getCommonAncestor();l=this.root;var m,q,p,u,K,E=!1,C;C=this.startContainer;var t=this.startOffset;C.type==CKEDITOR.NODE_TEXT?(t&&(C=!CKEDITOR.tools.trim(C.substring(0,t)).length&&C,E=!!C),C&&((u=C.getPrevious())||(p=C.getParent()))):(t&&(u=C.getChild(t-1)||C.getLast()),u||(p=C));for(p=c(p);p|| +u;){if(p&&!u){!K&&p.equals(k)&&(K=!0);if(h?p.isBlockBoundary():!l.contains(p))break;E&&"inline"==p.getComputedStyle("display")||(E=!1,K?m=p:this.setStartBefore(p));u=p.getPrevious()}for(;u;)if(C=!1,u.type==CKEDITOR.NODE_COMMENT)u=u.getPrevious();else{if(u.type==CKEDITOR.NODE_TEXT)f=u.getText(),e.test(f)&&(u=null),C=/[\s\ufeff]$/.test(f);else if((u.$.offsetWidth>(CKEDITOR.env.webkit?1:0)||b&&u.is("br"))&&!u.data("cke-bookmark"))if(E&&CKEDITOR.dtd.$removeEmpty[u.getName()]){f=u.getText();if(e.test(f))u= +null;else for(var t=u.$.getElementsByTagName("*"),B=0,z;z=t[B++];)if(!CKEDITOR.dtd.$removeEmpty[z.nodeName.toLowerCase()]){u=null;break}u&&(C=!!f.length)}else u=null;C&&(E?K?m=p:p&&this.setStartBefore(p):E=!0);if(u){C=u.getPrevious();if(!p&&!C){p=u;u=null;break}u=C}else p=null}p&&(p=c(p.getParent()))}C=this.endContainer;t=this.endOffset;p=u=null;K=E=!1;C.type==CKEDITOR.NODE_TEXT?CKEDITOR.tools.trim(C.substring(t)).length?E=!0:(E=!C.getLength(),t==C.getLength()?(u=C.getNext())||(p=C.getParent()):d(C, +t,l)&&(p=C.getParent())):(u=C.getChild(t))||(p=C);for(;p||u;){if(p&&!u){!K&&p.equals(k)&&(K=!0);if(h?p.isBlockBoundary():!l.contains(p))break;E&&"inline"==p.getComputedStyle("display")||(E=!1,K?q=p:p&&this.setEndAfter(p));u=p.getNext()}for(;u;){C=!1;if(u.type==CKEDITOR.NODE_TEXT)f=u.getText(),d(u,0,l)||(u=null),C=/^[\s\ufeff]/.test(f);else if(u.type==CKEDITOR.NODE_ELEMENT){if((0=l.getLength()?f.setStartAfter(l):(f.setStartBefore(l),c=0):f.setStartBefore(l));h&&h.type==CKEDITOR.NODE_TEXT&&(m?m>=h.getLength()?f.setEndAfter(h):(f.setEndAfter(h),q=0):f.setEndBefore(h));var f=new CKEDITOR.dom.walker(f),p=CKEDITOR.dom.walker.bookmark(),u=CKEDITOR.dom.walker.bogus();f.evaluator=function(b){return b.type==(a==CKEDITOR.SHRINK_ELEMENT?CKEDITOR.NODE_ELEMENT:CKEDITOR.NODE_TEXT)};var K;f.guard=function(b,c){if(e&&u(b)||p(b))return!0;if(a==CKEDITOR.SHRINK_ELEMENT&& +b.type==CKEDITOR.NODE_TEXT||c&&b.equals(K)||!1===d&&b.type==CKEDITOR.NODE_ELEMENT&&b.isBlockBoundary()||b.type==CKEDITOR.NODE_ELEMENT&&b.hasAttribute("contenteditable"))return!1;c||b.type!=CKEDITOR.NODE_ELEMENT||(K=b);return!0};c&&(l=f[a==CKEDITOR.SHRINK_ELEMENT?"lastForward":"next"]())&&this.setStartAt(l,b?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_START);q&&(f.reset(),(f=f[a==CKEDITOR.SHRINK_ELEMENT?"lastBackward":"previous"]())&&this.setEndAt(f,b?CKEDITOR.POSITION_BEFORE_END:CKEDITOR.POSITION_AFTER_END)); +return!(!c&&!q)}},insertNode:function(a){this.optimizeBookmark();this.trim(!1,!0);var b=this.startContainer,c=b.getChild(this.startOffset);c?a.insertBefore(c):b.append(a);a.getParent()&&a.getParent().equals(this.endContainer)&&this.endOffset++;this.setStartBefore(a)},moveToPosition:function(a,b){this.setStartAt(a,b);this.collapse(!0)},moveToRange:function(a){this.setStart(a.startContainer,a.startOffset);this.setEnd(a.endContainer,a.endOffset)},selectNodeContents:function(a){this.setStart(a,0);this.setEnd(a, +a.type==CKEDITOR.NODE_TEXT?a.getLength():a.getChildCount())},setStart:function(b,c){b.type==CKEDITOR.NODE_ELEMENT&&CKEDITOR.dtd.$empty[b.getName()]&&(c=b.getIndex(),b=b.getParent());this._setStartContainer(b);this.startOffset=c;this.endContainer||(this._setEndContainer(b),this.endOffset=c);a(this)},setEnd:function(b,c){b.type==CKEDITOR.NODE_ELEMENT&&CKEDITOR.dtd.$empty[b.getName()]&&(c=b.getIndex()+1,b=b.getParent());this._setEndContainer(b);this.endOffset=c;this.startContainer||(this._setStartContainer(b), +this.startOffset=c);a(this)},setStartAfter:function(a){this.setStart(a.getParent(),a.getIndex()+1)},setStartBefore:function(a){this.setStart(a.getParent(),a.getIndex())},setEndAfter:function(a){this.setEnd(a.getParent(),a.getIndex()+1)},setEndBefore:function(a){this.setEnd(a.getParent(),a.getIndex())},setStartAt:function(b,c){switch(c){case CKEDITOR.POSITION_AFTER_START:this.setStart(b,0);break;case CKEDITOR.POSITION_BEFORE_END:b.type==CKEDITOR.NODE_TEXT?this.setStart(b,b.getLength()):this.setStart(b, +b.getChildCount());break;case CKEDITOR.POSITION_BEFORE_START:this.setStartBefore(b);break;case CKEDITOR.POSITION_AFTER_END:this.setStartAfter(b)}a(this)},setEndAt:function(b,c){switch(c){case CKEDITOR.POSITION_AFTER_START:this.setEnd(b,0);break;case CKEDITOR.POSITION_BEFORE_END:b.type==CKEDITOR.NODE_TEXT?this.setEnd(b,b.getLength()):this.setEnd(b,b.getChildCount());break;case CKEDITOR.POSITION_BEFORE_START:this.setEndBefore(b);break;case CKEDITOR.POSITION_AFTER_END:this.setEndAfter(b)}a(this)},fixBlock:function(a, +b){var c=this.createBookmark(),d=this.document.createElement(b);this.collapse(a);this.enlarge(CKEDITOR.ENLARGE_BLOCK_CONTENTS);this.extractContents().appendTo(d);d.trim();this.insertNode(d);var e=d.getBogus();e&&e.remove();d.appendBogus();this.moveToBookmark(c);return d},splitBlock:function(a,b){var c=new CKEDITOR.dom.elementPath(this.startContainer,this.root),d=new CKEDITOR.dom.elementPath(this.endContainer,this.root),e=c.block,f=d.block,l=null;if(!c.blockLimit.equals(d.blockLimit))return null;"br"!= +a&&(e||(e=this.fixBlock(!0,a),f=(new CKEDITOR.dom.elementPath(this.endContainer,this.root)).block),f||(f=this.fixBlock(!1,a)));c=e&&this.checkStartOfBlock();d=f&&this.checkEndOfBlock();this.deleteContents();e&&e.equals(f)&&(d?(l=new CKEDITOR.dom.elementPath(this.startContainer,this.root),this.moveToPosition(f,CKEDITOR.POSITION_AFTER_END),f=null):c?(l=new CKEDITOR.dom.elementPath(this.startContainer,this.root),this.moveToPosition(e,CKEDITOR.POSITION_BEFORE_START),e=null):(f=this.splitElement(e,b|| +!1),e.is("ul","ol")||e.appendBogus()));return{previousBlock:e,nextBlock:f,wasStartOfBlock:c,wasEndOfBlock:d,elementPath:l}},splitElement:function(a,b){if(!this.collapsed)return null;this.setEndAt(a,CKEDITOR.POSITION_BEFORE_END);var c=this.extractContents(!1,b||!1),d=a.clone(!1,b||!1);c.appendTo(d);d.insertAfter(a);this.moveToPosition(a,CKEDITOR.POSITION_AFTER_END);return d},removeEmptyBlocksAtEnd:function(){function a(g){return function(a){return b(a)||c(a)||a.type==CKEDITOR.NODE_ELEMENT&&a.isEmptyInlineRemoveable()|| +g.is("table")&&a.is("caption")?!1:!0}}var b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.dom.walker.bookmark(!1);return function(b){for(var c=this.createBookmark(),d=this[b?"endPath":"startPath"](),e=d.block||d.blockLimit,f;e&&!e.equals(d.root)&&!e.getFirst(a(e));)f=e.getParent(),this[b?"setEndAt":"setStartAt"](e,CKEDITOR.POSITION_AFTER_END),e.remove(1),e=f;this.moveToBookmark(c)}}(),startPath:function(){return new CKEDITOR.dom.elementPath(this.startContainer,this.root)},endPath:function(){return new CKEDITOR.dom.elementPath(this.endContainer, +this.root)},checkBoundaryOfElement:function(a,b){var d=b==CKEDITOR.START,e=this.clone();e.collapse(d);e[d?"setStartAt":"setEndAt"](a,d?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_END);e=new CKEDITOR.dom.walker(e);e.evaluator=c(d);return e[d?"checkBackward":"checkForward"]()},checkStartOfBlock:function(a){var c=this.startContainer,d=this.startOffset;CKEDITOR.env.ie&&d&&c.type==CKEDITOR.NODE_TEXT&&(c=CKEDITOR.tools.ltrim(c.substring(0,d)),h.test(c)&&this.trim(0,1));a||this.trim();a=new CKEDITOR.dom.elementPath(this.startContainer, +this.root);c=this.clone();c.collapse(!0);c.setStartAt(a.block||a.blockLimit,CKEDITOR.POSITION_AFTER_START);a=new CKEDITOR.dom.walker(c);a.evaluator=b();return a.checkBackward()},checkEndOfBlock:function(a){var c=this.endContainer,d=this.endOffset;CKEDITOR.env.ie&&c.type==CKEDITOR.NODE_TEXT&&(c=CKEDITOR.tools.rtrim(c.substring(d)),h.test(c)&&this.trim(1,0));a||this.trim();a=new CKEDITOR.dom.elementPath(this.endContainer,this.root);c=this.clone();c.collapse(!1);c.setEndAt(a.block||a.blockLimit,CKEDITOR.POSITION_BEFORE_END); +a=new CKEDITOR.dom.walker(c);a.evaluator=b();return a.checkForward()},getPreviousNode:function(a,b,c){var d=this.clone();d.collapse(1);d.setStartAt(c||this.root,CKEDITOR.POSITION_AFTER_START);c=new CKEDITOR.dom.walker(d);c.evaluator=a;c.guard=b;return c.previous()},getNextNode:function(a,b,c){var d=this.clone();d.collapse();d.setEndAt(c||this.root,CKEDITOR.POSITION_BEFORE_END);c=new CKEDITOR.dom.walker(d);c.evaluator=a;c.guard=b;return c.next()},checkReadOnly:function(){function a(b,c){for(;b;){if(b.type== +CKEDITOR.NODE_ELEMENT){if("false"==b.getAttribute("contentEditable")&&!b.data("cke-editable"))return 0;if(b.is("html")||"true"==b.getAttribute("contentEditable")&&(b.contains(c)||b.equals(c)))break}b=b.getParent()}return 1}return function(){var b=this.startContainer,c=this.endContainer;return!(a(b,c)&&a(c,b))}}(),moveToElementEditablePosition:function(a,b){if(a.type==CKEDITOR.NODE_ELEMENT&&!a.isEditable(!1))return this.moveToPosition(a,b?CKEDITOR.POSITION_AFTER_END:CKEDITOR.POSITION_BEFORE_START), +!0;for(var c=0;a;){if(a.type==CKEDITOR.NODE_TEXT){b&&this.endContainer&&this.checkEndOfBlock()&&h.test(a.getText())?this.moveToPosition(a,CKEDITOR.POSITION_BEFORE_START):this.moveToPosition(a,b?CKEDITOR.POSITION_AFTER_END:CKEDITOR.POSITION_BEFORE_START);c=1;break}if(a.type==CKEDITOR.NODE_ELEMENT)if(a.isEditable())this.moveToPosition(a,b?CKEDITOR.POSITION_BEFORE_END:CKEDITOR.POSITION_AFTER_START),c=1;else if(b&&a.is("br")&&this.endContainer&&this.checkEndOfBlock())this.moveToPosition(a,CKEDITOR.POSITION_BEFORE_START); +else if("false"==a.getAttribute("contenteditable")&&a.is(CKEDITOR.dtd.$block))return this.setStartBefore(a),this.setEndAfter(a),!0;var d=a,e=c,f=void 0;d.type==CKEDITOR.NODE_ELEMENT&&d.isEditable(!1)&&(f=d[b?"getLast":"getFirst"](m));e||f||(f=d[b?"getPrevious":"getNext"](m));a=f}return!!c},moveToClosestEditablePosition:function(a,b){var c,d=0,e,f,l=[CKEDITOR.POSITION_AFTER_END,CKEDITOR.POSITION_BEFORE_START];a?(c=new CKEDITOR.dom.range(this.root),c.moveToPosition(a,l[b?0:1])):c=this.clone();if(a&& +!a.is(CKEDITOR.dtd.$block))d=1;else if(e=c[b?"getNextEditableNode":"getPreviousEditableNode"]())d=1,(f=e.type==CKEDITOR.NODE_ELEMENT)&&e.is(CKEDITOR.dtd.$block)&&"false"==e.getAttribute("contenteditable")?(c.setStartAt(e,CKEDITOR.POSITION_BEFORE_START),c.setEndAt(e,CKEDITOR.POSITION_AFTER_END)):!CKEDITOR.env.needsBrFiller&&f&&e.is(CKEDITOR.dom.walker.validEmptyBlockContainers)?(c.setEnd(e,0),c.collapse()):c.moveToPosition(e,l[b?1:0]);d&&this.moveToRange(c);return!!d},moveToElementEditStart:function(a){return this.moveToElementEditablePosition(a)}, +moveToElementEditEnd:function(a){return this.moveToElementEditablePosition(a,!0)},getEnclosedNode:function(){var a=this.clone();a.optimize();if(a.startContainer.type!=CKEDITOR.NODE_ELEMENT||a.endContainer.type!=CKEDITOR.NODE_ELEMENT)return null;var a=new CKEDITOR.dom.walker(a),b=CKEDITOR.dom.walker.bookmark(!1,!0),c=CKEDITOR.dom.walker.whitespaces(!0);a.evaluator=function(a){return c(a)&&b(a)};var d=a.next();a.reset();return d&&d.equals(a.previous())?d:null},getTouchedStartNode:function(){var a=this.startContainer; +return this.collapsed||a.type!=CKEDITOR.NODE_ELEMENT?a:a.getChild(this.startOffset)||a},getTouchedEndNode:function(){var a=this.endContainer;return this.collapsed||a.type!=CKEDITOR.NODE_ELEMENT?a:a.getChild(this.endOffset-1)||a},getNextEditableNode:f(),getPreviousEditableNode:f(1),_getTableElement:function(a){a=a||{td:1,th:1,tr:1,tbody:1,thead:1,tfoot:1,table:1};var b=this.getTouchedStartNode(),c=this.getTouchedEndNode(),d=b.getAscendant("table",!0),c=c.getAscendant("table",!0);return d&&!this.root.contains(d)? +null:this.getEnclosedNode()?this.getEnclosedNode().getAscendant(a,!0):d&&c&&(d.equals(c)||d.contains(c)||c.contains(d))?b.getAscendant(a,!0):null},scrollIntoView:function(){var a=new CKEDITOR.dom.element.createFromHtml("\x3cspan\x3e\x26nbsp;\x3c/span\x3e",this.document),b,c,d,e=this.clone();e.optimize();(d=e.startContainer.type==CKEDITOR.NODE_TEXT)?(c=e.startContainer.getText(),b=e.startContainer.split(e.startOffset),a.insertAfter(e.startContainer)):e.insertNode(a);a.scrollIntoView();d&&(e.startContainer.setText(c), +b.remove());a.remove()},getClientRects:function(){function a(b,c){var d=CKEDITOR.tools.array.map(b,function(a){return a}),e=new CKEDITOR.dom.range(c.root),g,f,h;c.startContainer instanceof CKEDITOR.dom.element&&(f=0===c.startOffset&&c.startContainer.hasAttribute("data-widget"));c.endContainer instanceof CKEDITOR.dom.element&&(h=(h=c.endOffset===(c.endContainer.getChildCount?c.endContainer.getChildCount():c.endContainer.length))&&c.endContainer.hasAttribute("data-widget"));f&&e.setStart(c.startContainer.getParent(), +c.startContainer.getIndex());h&&e.setEnd(c.endContainer.getParent(),c.endContainer.getIndex()+1);if(f||h)c=e;e=c.cloneContents().find("[data-cke-widget-id]").toArray();if(e=CKEDITOR.tools.array.map(e,function(a){var b=c.root.editor;a=a.getAttribute("data-cke-widget-id");return b.widgets.instances[a].element}))return e=CKEDITOR.tools.array.map(e,function(a){var b;b=a.getParent().hasClass("cke_widget_wrapper")?a.getParent():a;g=this.root.getDocument().$.createRange();g.setStart(b.getParent().$,b.getIndex()); +g.setEnd(b.getParent().$,b.getIndex()+1);b=g.getClientRects();b.widgetRect=a.getClientRect();return b},c),CKEDITOR.tools.array.forEach(e,function(a){function b(e){CKEDITOR.tools.array.forEach(d,function(b,g){var f=CKEDITOR.tools.objectCompare(a[e],b);f||(f=CKEDITOR.tools.objectCompare(a.widgetRect,b));f&&(Array.prototype.splice.call(d,g,a.length-e,a.widgetRect),c=!0)});c||(earguments.length||(this.range=a,this.forceBrBreak=0,this.enlargeBr=1,this.enforceRealBlocks=0,this._||(this._={}))}function d(a){var b=[];a.forEach(function(a){if("true"==a.getAttribute("contenteditable"))return b.push(a),!1},CKEDITOR.NODE_ELEMENT,!0);return b}function b(a,c,e,f){a:{null==f&&(f=d(e));for(var h;h=f.shift();)if(h.getDtd().p){f={element:h,remaining:f};break a}f=null}if(!f)return 0;if((h=CKEDITOR.filter.instances[f.element.data("cke-filter")])&&!h.check(c))return b(a, +c,e,f.remaining);c=new CKEDITOR.dom.range(f.element);c.selectNodeContents(f.element);c=c.createIterator();c.enlargeBr=a.enlargeBr;c.enforceRealBlocks=a.enforceRealBlocks;c.activeFilter=c.filter=h;a._.nestedEditable={element:f.element,container:e,remaining:f.remaining,iterator:c};return 1}function c(a,b,c){if(!b)return!1;a=a.clone();a.collapse(!c);return a.checkBoundaryOfElement(b,c?CKEDITOR.START:CKEDITOR.END)}var f=/^[\r\n\t ]+$/,e=CKEDITOR.dom.walker.bookmark(!1,!0),k=CKEDITOR.dom.walker.whitespaces(!0), +h=function(a){return e(a)&&k(a)},q={dd:1,dt:1,li:1};a.prototype={getNextParagraph:function(a){var d,k,y,A,F;a=a||"p";if(this._.nestedEditable){if(d=this._.nestedEditable.iterator.getNextParagraph(a))return this.activeFilter=this._.nestedEditable.iterator.activeFilter,d;this.activeFilter=this.filter;if(b(this,a,this._.nestedEditable.container,this._.nestedEditable.remaining))return this.activeFilter=this._.nestedEditable.iterator.activeFilter,this._.nestedEditable.iterator.getNextParagraph(a);this._.nestedEditable= +null}if(!this.range.root.getDtd()[a])return null;if(!this._.started){var v=this.range.clone();k=v.startPath();var l=v.endPath(),L=!v.collapsed&&c(v,k.block),w=!v.collapsed&&c(v,l.block,1);v.shrink(CKEDITOR.SHRINK_ELEMENT,!0);L&&v.setStartAt(k.block,CKEDITOR.POSITION_BEFORE_END);w&&v.setEndAt(l.block,CKEDITOR.POSITION_AFTER_START);k=v.endContainer.hasAscendant("pre",!0)||v.startContainer.hasAscendant("pre",!0);v.enlarge(this.forceBrBreak&&!k||!this.enlargeBr?CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS:CKEDITOR.ENLARGE_BLOCK_CONTENTS); +v.collapsed||(k=new CKEDITOR.dom.walker(v.clone()),l=CKEDITOR.dom.walker.bookmark(!0,!0),k.evaluator=l,this._.nextNode=k.next(),k=new CKEDITOR.dom.walker(v.clone()),k.evaluator=l,k=k.previous(),this._.lastNode=k.getNextSourceNode(!0,null,v.root),this._.lastNode&&this._.lastNode.type==CKEDITOR.NODE_TEXT&&!CKEDITOR.tools.trim(this._.lastNode.getText())&&this._.lastNode.getParent().isBlockBoundary()&&(l=this.range.clone(),l.moveToPosition(this._.lastNode,CKEDITOR.POSITION_AFTER_END),l.checkEndOfBlock()&& +(l=new CKEDITOR.dom.elementPath(l.endContainer,l.root),this._.lastNode=(l.block||l.blockLimit).getNextSourceNode(!0))),this._.lastNode&&v.root.contains(this._.lastNode)||(this._.lastNode=this._.docEndMarker=v.document.createText(""),this._.lastNode.insertAfter(k)),v=null);this._.started=1;k=v}l=this._.nextNode;v=this._.lastNode;for(this._.nextNode=null;l;){var L=0,w=l.hasAscendant("pre"),J=l.type!=CKEDITOR.NODE_ELEMENT,G=0;if(J)l.type==CKEDITOR.NODE_TEXT&&f.test(l.getText())&&(J=0);else{var p=l.getName(); +if(CKEDITOR.dtd.$block[p]&&"false"==l.getAttribute("contenteditable")){d=l;b(this,a,d);break}else if(l.isBlockBoundary(this.forceBrBreak&&!w&&{br:1})){if("br"==p)J=1;else if(!k&&!l.getChildCount()&&"hr"!=p){d=l;y=l.equals(v);break}k&&(k.setEndAt(l,CKEDITOR.POSITION_BEFORE_START),"br"!=p&&(this._.nextNode=l));L=1}else{if(l.getFirst()){k||(k=this.range.clone(),k.setStartAt(l,CKEDITOR.POSITION_BEFORE_START));l=l.getFirst();continue}J=1}}J&&!k&&(k=this.range.clone(),k.setStartAt(l,CKEDITOR.POSITION_BEFORE_START)); +y=(!L||J)&&l.equals(v);if(k&&!L)for(;!l.getNext(h)&&!y;){p=l.getParent();if(p.isBlockBoundary(this.forceBrBreak&&!w&&{br:1})){L=1;J=0;y||p.equals(v);k.setEndAt(p,CKEDITOR.POSITION_BEFORE_END);break}l=p;J=1;y=l.equals(v);G=1}J&&k.setEndAt(l,CKEDITOR.POSITION_AFTER_END);l=this._getNextSourceNode(l,G,v);if((y=!l)||L&&k)break}if(!d){if(!k)return this._.docEndMarker&&this._.docEndMarker.remove(),this._.nextNode=null;d=new CKEDITOR.dom.elementPath(k.startContainer,k.root);l=d.blockLimit;L={div:1,th:1,td:1}; +d=d.block;!d&&l&&!this.enforceRealBlocks&&L[l.getName()]&&k.checkStartOfBlock()&&k.checkEndOfBlock()&&!l.equals(k.root)?d=l:!d||this.enforceRealBlocks&&d.is(q)?(d=this.range.document.createElement(a),k.extractContents().appendTo(d),d.trim(),k.insertNode(d),A=F=!0):"li"!=d.getName()?k.checkStartOfBlock()&&k.checkEndOfBlock()||(d=d.clone(!1),k.extractContents().appendTo(d),d.trim(),F=k.splitBlock(),A=!F.wasStartOfBlock,F=!F.wasEndOfBlock,k.insertNode(d)):y||(this._.nextNode=d.equals(v)?null:this._getNextSourceNode(k.getBoundaryNodes().endNode, +1,v))}A&&(A=d.getPrevious())&&A.type==CKEDITOR.NODE_ELEMENT&&("br"==A.getName()?A.remove():A.getLast()&&"br"==A.getLast().$.nodeName.toLowerCase()&&A.getLast().remove());F&&(A=d.getLast())&&A.type==CKEDITOR.NODE_ELEMENT&&"br"==A.getName()&&(!CKEDITOR.env.needsBrFiller||A.getPrevious(e)||A.getNext(e))&&A.remove();this._.nextNode||(this._.nextNode=y||d.equals(v)||!v?null:this._getNextSourceNode(d,1,v));return d},_getNextSourceNode:function(a,b,c){function d(a){return!(a.equals(c)||a.equals(f))}var f= +this.range.root;for(a=a.getNextSourceNode(b,null,d);!e(a);)a=a.getNextSourceNode(b,null,d);return a}};CKEDITOR.dom.range.prototype.createIterator=function(){return new a(this)}})(); +CKEDITOR.command=function(a,d){this.uiItems=[];this.exec=function(b){if(this.state==CKEDITOR.TRISTATE_DISABLED||!this.checkAllowed())return!1;this.editorFocus&&a.focus();return!1===this.fire("exec")?!0:!1!==d.exec.call(this,a,b)};this.refresh=function(a,b){if(!this.readOnly&&a.readOnly)return!0;if(this.context&&!b.isContextFor(this.context)||!this.checkAllowed(!0))return this.disable(),!0;this.startDisabled||this.enable();this.modes&&!this.modes[a.mode]&&this.disable();return!1===this.fire("refresh", +{editor:a,path:b})?!0:d.refresh&&!1!==d.refresh.apply(this,arguments)};var b;this.checkAllowed=function(c){return c||"boolean"!=typeof b?b=a.activeFilter.checkFeature(this):b};CKEDITOR.tools.extend(this,d,{modes:{wysiwyg:1},editorFocus:1,contextSensitive:!!d.context,state:CKEDITOR.TRISTATE_DISABLED});CKEDITOR.event.call(this)}; +CKEDITOR.command.prototype={enable:function(){this.state==CKEDITOR.TRISTATE_DISABLED&&this.checkAllowed()&&this.setState(this.preserveState&&"undefined"!=typeof this.previousState?this.previousState:CKEDITOR.TRISTATE_OFF)},disable:function(){this.setState(CKEDITOR.TRISTATE_DISABLED)},setState:function(a){if(this.state==a||a!=CKEDITOR.TRISTATE_DISABLED&&!this.checkAllowed())return!1;this.previousState=this.state;this.state=a;this.fire("state");return!0},toggleState:function(){this.state==CKEDITOR.TRISTATE_OFF? +this.setState(CKEDITOR.TRISTATE_ON):this.state==CKEDITOR.TRISTATE_ON&&this.setState(CKEDITOR.TRISTATE_OFF)}};CKEDITOR.event.implementOn(CKEDITOR.command.prototype);CKEDITOR.ENTER_P=1;CKEDITOR.ENTER_BR=2;CKEDITOR.ENTER_DIV=3; +CKEDITOR.config={customConfig:"config.js",autoUpdateElement:!0,language:"",defaultLanguage:"en",contentsLangDirection:"",enterMode:CKEDITOR.ENTER_P,forceEnterMode:!1,shiftEnterMode:CKEDITOR.ENTER_BR,docType:"\x3c!DOCTYPE html\x3e",bodyId:"",bodyClass:"",fullPage:!1,height:200,contentsCss:CKEDITOR.getUrl("contents.css"),extraPlugins:"",removePlugins:"",protectedSource:[],tabIndex:0,useComputedState:!0,width:"",baseFloatZIndex:1E4,blockedKeystrokes:[CKEDITOR.CTRL+66,CKEDITOR.CTRL+73,CKEDITOR.CTRL+85]}; +(function(){function a(a,b,c,d,e){var f,g;a=[];for(f in b){g=b[f];g="boolean"==typeof g?{}:"function"==typeof g?{match:g}:B(g);"$"!=f.charAt(0)&&(g.elements=f);c&&(g.featureName=c.toLowerCase());var n=g;n.elements=k(n.elements,/\s+/)||null;n.propertiesOnly=n.propertiesOnly||!0===n.elements;var t=/\s*,\s*/,r=void 0;for(r in O){n[r]=k(n[r],t)||null;var l=n,z=N[r],h=k(n[N[r]],t),E=n[r],D=[],H=!0,I=void 0;h?H=!1:h={};for(I in E)"!"==I.charAt(0)&&(I=I.slice(1),D.push(I),h[I]=!0,H=!1);for(;I=D.pop();)E[I]= +E["!"+I],delete E["!"+I];l[z]=(H?!1:h)||null}n.match=n.match||null;d.push(g);a.push(g)}b=e.elements;e=e.generic;var C;c=0;for(d=a.length;c=--q&&(e&&CKEDITOR.document.getDocumentElement().removeStyle("cursor"),x(b))},A=function(b,c){a[b]=1;var e=d[b];delete d[b];for(var f=0;f=CKEDITOR.env.version||CKEDITOR.env.ie9Compat)?f.$.onreadystatechange=function(){if("loaded"==f.$.readyState||"complete"==f.$.readyState)f.$.onreadystatechange=null,A(b,!0)}:(f.$.onload=function(){setTimeout(function(){f.$.onload=null;f.$.onerror=null;A(b,!0)},0)},f.$.onerror=function(){f.$.onload=null;f.$.onerror=null;A(b,!1)}));f.appendTo(CKEDITOR.document.getHead())}}};e&&CKEDITOR.document.getDocumentElement().setStyle("cursor", +"wait");for(var v=0;v]+)>)|(?:!--([\S|\s]*?)--!?>)|(?:([^\/\s>]+)((?:\s+[\w\-:.]+(?:\s*=\s*?(?:(?:"[^"]*")|(?:'[^']*')|[^\s"'\/>]+))?)*)[\S\s]*?(\/?)>))/g}}; +(function(){var a=/([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,d={checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1};CKEDITOR.htmlParser.prototype={onTagOpen:function(){},onTagClose:function(){},onText:function(){},onCDATA:function(){},onComment:function(){},parse:function(b){for(var c,f,e=0,k;c=this._.htmlPartsRegex.exec(b);){f=c.index;if(f>e)if(e=b.substring(e,f),k)k.push(e);else this.onText(e); +e=this._.htmlPartsRegex.lastIndex;if(f=c[1])if(f=f.toLowerCase(),k&&CKEDITOR.dtd.$cdata[f]&&(this.onCDATA(k.join("")),k=null),!k){this.onTagClose(f);continue}if(k)k.push(c[0]);else if(f=c[3]){if(f=f.toLowerCase(),!/="/.test(f)){var h={},q,m=c[4];c=!!c[5];if(m)for(;q=a.exec(m);){var g=q[1].toLowerCase();q=q[2]||q[3]||q[4]||"";h[g]=!q&&d[g]?g:CKEDITOR.tools.htmlDecodeAttr(q)}this.onTagOpen(f,h,c);!k&&CKEDITOR.dtd.$cdata[f]&&(k=[])}}else if(f=c[2])this.onComment(f)}if(b.length>e)this.onText(b.substring(e, +b.length))}}})(); +CKEDITOR.htmlParser.basicWriter=CKEDITOR.tools.createClass({$:function(){this._={output:[]}},proto:{openTag:function(a){this._.output.push("\x3c",a)},openTagClose:function(a,d){d?this._.output.push(" /\x3e"):this._.output.push("\x3e")},attribute:function(a,d){"string"==typeof d&&(d=CKEDITOR.tools.htmlEncodeAttr(d));this._.output.push(" ",a,'\x3d"',d,'"')},closeTag:function(a){this._.output.push("\x3c/",a,"\x3e")},text:function(a){this._.output.push(a)},comment:function(a){this._.output.push("\x3c!--",a, +"--\x3e")},write:function(a){this._.output.push(a)},reset:function(){this._.output=[];this._.indent=!1},getHtml:function(a){var d=this._.output.join("");a&&this.reset();return d}}});"use strict"; +(function(){CKEDITOR.htmlParser.node=function(){};CKEDITOR.htmlParser.node.prototype={remove:function(){var a=this.parent.children,d=CKEDITOR.tools.indexOf(a,this),b=this.previous,c=this.next;b&&(b.next=c);c&&(c.previous=b);a.splice(d,1);this.parent=null},replaceWith:function(a){var d=this.parent.children,b=CKEDITOR.tools.indexOf(d,this),c=a.previous=this.previous,f=a.next=this.next;c&&(c.next=a);f&&(f.previous=a);d[b]=a;a.parent=this.parent;this.parent=null},insertAfter:function(a){var d=a.parent.children, +b=CKEDITOR.tools.indexOf(d,a),c=a.next;d.splice(b+1,0,this);this.next=a.next;this.previous=a;a.next=this;c&&(c.previous=this);this.parent=a.parent},insertBefore:function(a){var d=a.parent.children,b=CKEDITOR.tools.indexOf(d,a);d.splice(b,0,this);this.next=a;(this.previous=a.previous)&&(a.previous.next=this);a.previous=this;this.parent=a.parent},getAscendant:function(a){var d="function"==typeof a?a:"string"==typeof a?function(b){return b.name==a}:function(b){return b.name in a},b=this.parent;for(;b&& +b.type==CKEDITOR.NODE_ELEMENT;){if(d(b))return b;b=b.parent}return null},wrapWith:function(a){this.replaceWith(a);a.add(this);return a},getIndex:function(){return CKEDITOR.tools.indexOf(this.parent.children,this)},getFilterContext:function(a){return a||{}}}})();"use strict";CKEDITOR.htmlParser.comment=function(a){this.value=a;this._={isBlockLike:!1}}; +CKEDITOR.htmlParser.comment.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_COMMENT,filter:function(a,d){var b=this.value;if(!(b=a.onComment(d,b,this)))return this.remove(),!1;if("string"!=typeof b)return this.replaceWith(b),!1;this.value=b;return!0},writeHtml:function(a,d){d&&this.filter(d);a.comment(this.value)}});"use strict"; +(function(){CKEDITOR.htmlParser.text=function(a){this.value=a;this._={isBlockLike:!1}};CKEDITOR.htmlParser.text.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_TEXT,filter:function(a,d){if(!(this.value=a.onText(d,this.value,this)))return this.remove(),!1},writeHtml:function(a,d){d&&this.filter(d);a.text(this.value)}})})();"use strict"; +(function(){CKEDITOR.htmlParser.cdata=function(a){this.value=a};CKEDITOR.htmlParser.cdata.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_TEXT,filter:function(a){var d=this.getAscendant("style");if(d&&d.getAscendant({math:1,svg:1})){var d=CKEDITOR.htmlParser.fragment.fromHtml(this.value),b=new CKEDITOR.htmlParser.basicWriter;a.applyTo(d);d.writeHtml(b);this.value=b.getHtml()}},writeHtml:function(a){a.write(this.value)}})})();"use strict"; +CKEDITOR.htmlParser.fragment=function(){this.children=[];this.parent=null;this._={isBlockLike:!0,hasInlineStarted:!1}}; +(function(){function a(a){return a.attributes["data-cke-survive"]?!1:"a"==a.name&&a.attributes.href||CKEDITOR.dtd.$removeEmpty[a.name]}var d=CKEDITOR.tools.extend({table:1,ul:1,ol:1,dl:1},CKEDITOR.dtd.table,CKEDITOR.dtd.ul,CKEDITOR.dtd.ol,CKEDITOR.dtd.dl),b={ol:1,ul:1},c=CKEDITOR.tools.extend({},{html:1},CKEDITOR.dtd.html,CKEDITOR.dtd.body,CKEDITOR.dtd.head,{style:1,script:1}),f={ul:"li",ol:"li",dl:"dd",table:"tbody",tbody:"tr",thead:"tr",tfoot:"tr",tr:"td"};CKEDITOR.htmlParser.fragment.fromHtml= +function(e,k,h){function q(a){var b;if(0k;k++)if(e=d[k]){e=e.exec(a,c,this);if(!1===e)return null;if(e&&e!=c)return this.onNode(a,e);if(c.parent&&!c.name)break}return c}, +onNode:function(a,c){var d=c.type;return d==CKEDITOR.NODE_ELEMENT?this.onElement(a,c):d==CKEDITOR.NODE_TEXT?new CKEDITOR.htmlParser.text(this.onText(a,c.value,c)):d==CKEDITOR.NODE_COMMENT?new CKEDITOR.htmlParser.comment(this.onComment(a,c.value,c)):null},onAttribute:function(a,c,d,e){return(d=this.attributesRules[d])?d.exec(a,e,c,this):e}}});CKEDITOR.htmlParser.filterRulesGroup=a;a.prototype={add:function(a,c,d){this.rules.splice(this.findIndex(c),0,{value:a,priority:c,options:d})},addMany:function(a, +c,d){for(var e=[this.findIndex(c),0],k=0,h=a.length;k/g,"\x26gt;")+"\x3c/textarea\x3e");return"\x3ccke:encoded\x3e"+encodeURIComponent(a)+"\x3c/cke:encoded\x3e"})}function x(a){return a.replace(N,function(a,b){return decodeURIComponent(b)})}function y(a){return a.replace(/\x3c!--(?!{cke_protected})[\s\S]+?--\x3e/g, +function(a){return"\x3c!--"+w+"{C}"+encodeURIComponent(a).replace(/--/g,"%2D%2D")+"--\x3e"})}function A(a){return a.replace(/\x3c!--\{cke_protected\}\{C\}([\s\S]+?)--\x3e/g,function(a,b){return decodeURIComponent(b)})}function F(a,b){var c=b._.dataStore;return a.replace(/\x3c!--\{cke_protected\}([\s\S]+?)--\x3e/g,function(a,b){return decodeURIComponent(b)}).replace(/\{cke_protected_(\d+)\}/g,function(a,b){return c&&c[b]||""})}function v(a,b,c){var d=[],e=b.config.protectedSource,f=b._.dataStore|| +(b._.dataStore={id:1}),g=new RegExp("\x3c\\!--\\{cke_temp_"+c+"(comment)?\\}(\\d*?)--\x3e","g"),e=[/|$)/gi,//gi,//gi].concat(e);a=a.replace(/\x3c!--[\s\S]*?--\x3e/g,function(a){return"\x3c!--{cke_temp_"+c+"comment}"+(d.push(a)-1)+"--\x3e"});for(var t=0;t]+\s*=\s*(?:[^'"\s>]+|'[^']*'|"[^"]*"))|[^\s=\/>]+))+\s*\/?>/g,function(a){return a.replace(/\x3c!--\{cke_protected\}([^>]*)--\x3e/g,function(a,b){f[f.id]=decodeURIComponent(b);return"{cke_protected_"+f.id++ +"}"})});return a=a.replace(/<(title|iframe|textarea)([^>]*)>([\s\S]*?)<\/\1>/g,function(a,c,d,e){return"\x3c"+c+d+"\x3e"+F(A(e),b)+"\x3c/"+c+"\x3e"})}var l;CKEDITOR.htmlDataProcessor= +function(b){var c,e,f=this;this.editor=b;this.dataFilter=c=new CKEDITOR.htmlParser.filter;this.htmlFilter=e=new CKEDITOR.htmlParser.filter;this.writer=new CKEDITOR.htmlParser.basicWriter;c.addRules(u);c.addRules(K,{applyToAll:!0});c.addRules(a(b,"data"),{applyToAll:!0});e.addRules(E);e.addRules(C,{applyToAll:!0});e.addRules(a(b,"html"),{applyToAll:!0});b.on("toHtml",function(a){var c;var e=window.crypto||window.msCrypto;c=e?e.getRandomValues(new Uint32Array(1))[0]:Math.floor(9E9*Math.random()+1E9); +a=a.data;var e=a.dataValue,e=l(e),e=v(e,b,c),e=g(e,O),e=m(e,c),e=g(e,H),e=e.replace(r,"$1cke:$2"),e=e.replace(M,"\x3ccke:$1$2\x3e\x3c/cke:$1\x3e"),e=e.replace(/(]*>)(\r\n|\n)/g,"$1$2$2"),e=e.replace(/([^a-z0-9<\-])(on\w{3,})(?!>)/gi,"$1data-cke-"+c+"-$2"),f=a.context||b.editable().getName(),t;CKEDITOR.env.ie&&9>CKEDITOR.env.version&&"pre"==f&&(f="div",e="\x3cpre\x3e"+e+"\x3c/pre\x3e",t=1);f=b.document.createElement(f);f.setHtml("a"+e);e=f.getHtml().substr(1);e=e.replace(new RegExp("data-cke-"+ +c+"-","ig"),"");t&&(e=e.replace(/^
|<\/pre>$/gi,""));e=e.replace(I,"$1$2");e=x(e);e=A(e);c=!1===a.fixForBody?!1:d(a.enterMode,b.config.autoParagraph);e=CKEDITOR.htmlParser.fragment.fromHtml(e,a.context,c);c&&(t=e,!t.children.length&&CKEDITOR.dtd[t.name][c]&&(c=new CKEDITOR.htmlParser.element(c),t.add(c)));a.dataValue=e},null,null,5);b.on("toHtml",function(a){a.data.filter.applyTo(a.data.dataValue,!0,a.data.dontFilter,a.data.enterMode)&&b.fire("dataFiltered")},null,null,6);b.on("toHtml",function(a){a.data.dataValue.filterChildren(f.dataFilter,
+!0)},null,null,10);b.on("toHtml",function(a){a=a.data;var b=a.dataValue,c=new CKEDITOR.htmlParser.basicWriter;b.writeChildrenHtml(c);b=c.getHtml(!0);a.dataValue=y(b)},null,null,15);b.on("toDataFormat",function(a){var c=a.data.dataValue;a.data.enterMode!=CKEDITOR.ENTER_BR&&(c=c.replace(/^
/i,""));a.data.dataValue=CKEDITOR.htmlParser.fragment.fromHtml(c,a.data.context,d(a.data.enterMode,b.config.autoParagraph))},null,null,5);b.on("toDataFormat",function(a){a.data.dataValue.filterChildren(f.htmlFilter, +!0)},null,null,10);b.on("toDataFormat",function(a){a.data.filter.applyTo(a.data.dataValue,!1,!0)},null,null,11);b.on("toDataFormat",function(a){var c=a.data.dataValue,d=f.writer;d.reset();c.writeChildrenHtml(d);c=d.getHtml(!0);c=A(c);c=F(c,b);a.data.dataValue=c},null,null,15)};CKEDITOR.htmlDataProcessor.prototype={toHtml:function(a,b,c,d){var e=this.editor,f,g,t,r;b&&"object"==typeof b?(f=b.context,c=b.fixForBody,d=b.dontFilter,g=b.filter,t=b.enterMode,r=b.protectedWhitespaces):f=b;f||null===f||(f= +e.editable().getName());return e.fire("toHtml",{dataValue:a,context:f,fixForBody:c,dontFilter:d,filter:g||e.filter,enterMode:t||e.enterMode,protectedWhitespaces:r}).dataValue},toDataFormat:function(a,b){var c,d,e;b&&(c=b.context,d=b.filter,e=b.enterMode);c||null===c||(c=this.editor.editable().getName());return this.editor.fire("toDataFormat",{dataValue:a,filter:d||this.editor.filter,context:c,enterMode:e||this.editor.enterMode}).dataValue},protectSource:function(a){return v(a,this.editor)},unprotectSource:function(a){return F(a, +this.editor)},unprotectRealComments:function(a){return A(a)}};var L=/(?: |\xa0)$/,w="{cke_protected}",J=CKEDITOR.dtd,G="caption colgroup col thead tfoot tbody".split(" "),p=CKEDITOR.tools.extend({},J.$blockLimit,J.$block),u={elements:{input:h,textarea:h}},K={attributeNames:[[/^on/,"data-cke-pa-on"],[/^srcdoc/,"data-cke-pa-srcdoc"],[/^data-cke-expando$/,""]],elements:{iframe:function(a){if(a.attributes&&a.attributes.src){var b=a.attributes.src.toLowerCase().replace(/[^a-z]/gi,"");if(0===b.indexOf("javascript")|| +0===b.indexOf("data"))a.attributes["data-cke-pa-src"]=a.attributes.src,delete a.attributes.src}}}},E={elements:{embed:function(a){var b=a.parent;if(b&&"object"==b.name){var c=b.attributes.width,b=b.attributes.height;c&&(a.attributes.width=c);b&&(a.attributes.height=b)}},a:function(a){var b=a.attributes;if(!(a.children.length||b.name||b.id||a.attributes["data-cke-saved-name"]))return!1}}},C={elementNames:[[/^cke:/,""],[/^\?xml:namespace$/,""]],attributeNames:[[/^data-cke-(saved|pa)-/,""],[/^data-cke-.*/, +""],["hidefocus",""]],elements:{$:function(a){var b=a.attributes;if(b){if(b["data-cke-temp"])return!1;for(var c=["name","href","src"],d,e=0;ed?1:-1})},param:function(a){a.children= +[];a.isEmpty=!0;return a},span:function(a){"Apple-style-span"==a.attributes["class"]&&delete a.name},html:function(a){delete a.attributes.contenteditable;delete a.attributes["class"]},body:function(a){delete a.attributes.spellcheck;delete a.attributes.contenteditable},style:function(a){var b=a.children[0];b&&b.value&&(b.value=CKEDITOR.tools.trim(b.value));a.attributes.type||(a.attributes.type="text/css")},title:function(a){var b=a.children[0];!b&&k(a,b=new CKEDITOR.htmlParser.text);b.value=a.attributes["data-cke-title"]|| +""},input:q,textarea:q},attributes:{"class":function(a){return CKEDITOR.tools.ltrim(a.replace(/(?:^|\s+)cke_[^\s]*/g,""))||!1}}};CKEDITOR.env.ie&&(C.attributes.style=function(a){return a.replace(/(^|;)([^\:]+)/g,function(a){return a.toLowerCase()})});var t=/<(a|area|img|input|source)\b([^>]*)>/gi,B=/([\w-:]+)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi,z=/^(href|src|name)$/i,H=/(?:])[^>]*>[\s\S]*?<\/style>)|(?:<(:?link|meta|base)[^>]*>)/gi,O=/(])[^>]*>)([\s\S]*?)(?:<\/textarea>)/gi, +N=/([^<]*)<\/cke:encoded>/gi,r=/(<\/?)((?:object|embed|param|html|body|head|title)([\s][^>]*)?>)/gi,I=/(<\/?)cke:((?:html|body|head|title)[^>]*>)/gi,M=/]*?)\/?>(?!\s*<\/cke:\1)/gi;l=function(){function a(b,c){for(var d=0;d/g];return function(b){for(;a(d,b);)for(var c=d,e=0;eb?1:0},b=CKEDITOR.htmlParser.fragment.prototype;CKEDITOR.htmlParser.element.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_ELEMENT,add:b.add,clone:function(){return new CKEDITOR.htmlParser.element(this.name,this.attributes)},filter:function(a,b){var d=this,k,h;b=d.getFilterContext(b);if(!d.parent)a.onRoot(b, +d);for(;;){k=d.name;if(!(h=a.onElementName(b,k)))return this.remove(),!1;d.name=h;if(!(d=a.onElement(b,d)))return this.remove(),!1;if(d!==this)return this.replaceWith(d),!1;if(d.name==k)break;if(d.type!=CKEDITOR.NODE_ELEMENT)return this.replaceWith(d),!1;if(!d.name)return this.replaceWithChildren(),!1}k=d.attributes;var q,m;for(q in k){for(h=k[q];;)if(m=a.onAttributeName(b,q))if(m!=q)delete k[q],q=m;else break;else{delete k[q];break}m&&(!1===(h=a.onAttribute(b,d,m,h))?delete k[m]:k[m]=h)}d.isEmpty|| +this.filterChildren(a,!1,b);return!0},filterChildren:b.filterChildren,writeHtml:function(a,b){b&&this.filter(b);var e=this.name,k=[],h=this.attributes,q,m;a.openTag(e,h);for(q in h)k.push([q,h[q]]);a.sortAttributes&&k.sort(d);q=0;for(m=k.length;qCKEDITOR.env.version||CKEDITOR.env.quirks))this.hasFocus&&(this.focus(),b());else if(this.hasFocus)this.focus(), +a();else this.once("focus",function(){a()},null,null,-999)},getHtmlFromRange:function(a){if(a.collapsed)return new CKEDITOR.dom.documentFragment(a.document);a={doc:this.getDocument(),range:a.clone()};p.eol.detect(a,this);p.bogus.exclude(a);p.cell.shrink(a);a.fragment=a.range.cloneContents();p.tree.rebuild(a,this);p.eol.fix(a,this);return new CKEDITOR.dom.documentFragment(a.fragment.$)},extractHtmlFromRange:function(a,b){var c=u,d={range:a,doc:a.document},e=this.getHtmlFromRange(a);if(a.collapsed)return a.optimize(), +e;a.enlarge(CKEDITOR.ENLARGE_INLINE,1);c.table.detectPurge(d);d.bookmark=a.createBookmark();delete d.range;var g=this.editor.createRange();g.moveToPosition(d.bookmark.startNode,CKEDITOR.POSITION_BEFORE_START);d.targetBookmark=g.createBookmark();c.list.detectMerge(d,this);c.table.detectRanges(d,this);c.block.detectMerge(d,this);d.tableContentsRanges?(c.table.deleteRanges(d),a.moveToBookmark(d.bookmark),d.range=a):(a.moveToBookmark(d.bookmark),d.range=a,a.extractContents(c.detectExtractMerge(d)));a.moveToBookmark(d.targetBookmark); +a.optimize();c.fixUneditableRangePosition(a);c.list.merge(d,this);c.table.purge(d,this);c.block.merge(d,this);if(b){c=a.startPath();if(d=a.checkStartOfBlock()&&a.checkEndOfBlock()&&c.block&&!a.root.equals(c.block)){a:{var d=c.block.getElementsByTag("span"),g=0,f;if(d)for(;f=d.getItem(g++);)if(!F(f)){d=!0;break a}d=!1}d=!d}d&&(a.moveToPosition(c.block,CKEDITOR.POSITION_BEFORE_START),c.block.remove())}else c.autoParagraph(this.editor,a),v(a.startContainer)&&a.startContainer.appendBogus();a.startContainer.mergeSiblings(); +return e},setup:function(){var a=this.editor;this.attachListener(a,"beforeGetData",function(){var b=this.getData();this.is("textarea")||!1!==a.config.ignoreEmptyParagraph&&(b=b.replace(L,function(a,b){return b}));a.setData(b,null,1)},this);this.attachListener(a,"getSnapshot",function(a){a.data=this.getData(1)},this);this.attachListener(a,"afterSetData",function(){this.setData(a.getData(1))},this);this.attachListener(a,"loadSnapshot",function(a){this.setData(a.data,1)},this);this.attachListener(a, +"beforeFocus",function(){var b=a.getSelection();(b=b&&b.getNative())&&"Control"==b.type||this.focus()},this);this.attachListener(a,"insertHtml",function(a){this.insertHtml(a.data.dataValue,a.data.mode,a.data.range)},this);this.attachListener(a,"insertElement",function(a){this.insertElement(a.data)},this);this.attachListener(a,"insertText",function(a){this.insertText(a.data)},this);this.setReadOnly(a.readOnly);this.attachClass("cke_editable");a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?this.attachClass("cke_editable_inline"): +a.elementMode!=CKEDITOR.ELEMENT_MODE_REPLACE&&a.elementMode!=CKEDITOR.ELEMENT_MODE_APPENDTO||this.attachClass("cke_editable_themed");this.attachClass("cke_contents_"+a.config.contentsLangDirection);a.keystrokeHandler.blockedKeystrokes[8]=+a.readOnly;a.keystrokeHandler.attach(this);this.on("blur",function(){this.hasFocus=!1},null,null,-1);this.on("focus",function(){this.hasFocus=!0},null,null,-1);if(CKEDITOR.env.webkit)this.on("scroll",function(){a._.previousScrollTop=a.editable().$.scrollTop},null, +null,-1);if(CKEDITOR.env.edge&&14CKEDITOR.env.version?H.$.styleSheet.cssText=z:H.setText(z)):(z=g.appendStyleText(z),z=new CKEDITOR.dom.element(z.ownerNode||z.owningElement),f.setCustomData("stylesheet", +z),z.data("cke-temp",1))}f=g.getCustomData("stylesheet_ref")||0;g.setCustomData("stylesheet_ref",f+1);this.setCustomData("cke_includeReadonly",!a.config.disableReadonlyStyling);this.attachListener(this,"click",function(a){a=a.data;var b=(new CKEDITOR.dom.elementPath(a.getTarget(),this)).contains("a");b&&2!=a.$.button&&b.isReadOnly()&&a.preventDefault()});var O={8:1,46:1};this.attachListener(a,"key",function(b){if(a.readOnly)return!0;var c=b.data.domEvent.getKey(),d,g=a.getSelection();if(0!==g.getRanges().length){if(c in +O){var f;b=g.getRanges()[0];var t=b.startPath(),z,B,H,c=8==c,m=!1;if(CKEDITOR.env.ie&&11>CKEDITOR.env.version&&g.getSelectedElement())f=g.getSelectedElement();else if(e(g)){var l=new CKEDITOR.dom.walker(b),q=b.collapsed?b.startContainer:l.next(),m=!1,C;if(b.checkStartOfBlock()){C=b.startPath().block||b.startPath().blockLimit;var p=C.getName();C=-1!==CKEDITOR.tools.array.indexOf(["dd","dt","li"],p)&&null===C.getPrevious()}else C=!1;if(C){for(;q&&!m;)m=q.$.nodeName.toLowerCase(),m=!!K[m],q=l.next(); +l=h(b.startPath());q=h(b.endPath());m=m||l!==q}else m=void 0;m||(f=k(g))}f||m?(a.fire("saveSnapshot"),m?((d=b.startContainer.getAscendant(K,!0))?(b.setStart(d,0),b.enlarge(CKEDITOR.ENLARGE_ELEMENT),f=b):f=null,f.deleteContents()):(b.moveToPosition(f,CKEDITOR.POSITION_BEFORE_START),f.remove()),b.select(),a.fire("saveSnapshot"),d=1):b.collapsed&&((z=t.block)&&(H=z[c?"getPrevious":"getNext"](A))&&H.type==CKEDITOR.NODE_ELEMENT&&H.is("table")&&b[c?"checkStartOfBlock":"checkEndOfBlock"]()?(a.fire("saveSnapshot"), +b[c?"checkEndOfBlock":"checkStartOfBlock"]()&&z.remove(),b["moveToElementEdit"+(c?"End":"Start")](H),b.select(),a.fire("saveSnapshot"),d=1):t.blockLimit&&t.blockLimit.is("td")&&(B=t.blockLimit.getAscendant("table"))&&b.checkBoundaryOfElement(B,c?CKEDITOR.START:CKEDITOR.END)&&(H=B[c?"getPrevious":"getNext"](A))?(a.fire("saveSnapshot"),b["moveToElementEdit"+(c?"End":"Start")](H),b.checkStartOfBlock()&&b.checkEndOfBlock()?H.remove():b.select(),a.fire("saveSnapshot"),d=1):(B=t.contains(["td","th","caption"]))&& +b.checkBoundaryOfElement(B,c?CKEDITOR.START:CKEDITOR.END)&&(d=1))}return!d}});a.blockless&&CKEDITOR.env.ie&&CKEDITOR.env.needsBrFiller&&this.attachListener(this,"keyup",function(b){b.data.getKeystroke()in O&&!this.getFirst(c)&&(this.appendBogus(),b=a.createRange(),b.moveToPosition(this,CKEDITOR.POSITION_AFTER_START),b.select())});this.attachListener(this,"dblclick",function(b){if(a.readOnly)return!1;b={element:b.data.getTarget()};a.fire("doubleclick",b)});CKEDITOR.env.ie&&this.attachListener(this, +"click",b);CKEDITOR.env.ie&&!CKEDITOR.env.edge||this.attachListener(this,"mousedown",function(b){var c=b.data.getTarget();c.is("img","hr","input","textarea","select")&&!c.isReadOnly()&&(a.getSelection().selectElement(c),c.is("input","textarea","select")&&b.data.preventDefault())});CKEDITOR.env.edge&&this.attachListener(this,"mouseup",function(b){(b=b.data.getTarget())&&b.is("img")&&!b.isReadOnly()&&a.getSelection().selectElement(b)});CKEDITOR.env.gecko&&this.attachListener(this,"mouseup",function(b){if(2== +b.data.$.button&&(b=b.data.getTarget(),!b.getAscendant("table")&&!b.getOuterHtml().replace(L,""))){var c=a.createRange();c.moveToElementEditStart(b);c.select(!0)}});CKEDITOR.env.webkit&&(this.attachListener(this,"click",function(a){a.data.getTarget().is("input","select")&&a.data.preventDefault()}),this.attachListener(this,"mouseup",function(a){a.data.getTarget().is("input","textarea")&&a.data.preventDefault()}));CKEDITOR.env.webkit&&this.attachListener(a,"key",function(b){if(a.readOnly)return!0;var c= +b.data.domEvent.getKey();if(c in O&&(b=a.getSelection(),0!==b.getRanges().length)){var c=8==c,d=b.getRanges()[0];b=d.startPath();if(d.collapsed)a:{var e=b.block;if(e&&d[c?"checkStartOfBlock":"checkEndOfBlock"](!0)&&d.moveToClosestEditablePosition(e,!c)&&d.collapsed){if(d.startContainer.type==CKEDITOR.NODE_ELEMENT){var g=d.startContainer.getChild(d.startOffset-(c?1:0));if(g&&g.type==CKEDITOR.NODE_ELEMENT&&g.is("hr")){a.fire("saveSnapshot");g.remove();b=!0;break a}}d=d.startPath().block;if(!d||d&&d.contains(e))b= +void 0;else{a.fire("saveSnapshot");var f;(f=(c?d:e).getBogus())&&f.remove();f=a.getSelection();g=f.createBookmarks();(c?e:d).moveChildren(c?d:e,!1);b.lastElement.mergeSiblings();y(e,d,!c);f.selectBookmarks(g);b=!0}}else b=!1}else c=d,f=b.block,d=c.endPath().block,f&&d&&!f.equals(d)?(a.fire("saveSnapshot"),(e=f.getBogus())&&e.remove(),c.enlarge(CKEDITOR.ENLARGE_INLINE),c.deleteContents(),d.getParent()&&(d.moveChildren(f,!1),b.lastElement.mergeSiblings(),y(f,d,!0)),c=a.getSelection().getRanges()[0], +c.collapse(1),c.optimize(),""===c.startContainer.getHtml()&&c.startContainer.appendBogus(),c.select(),b=!0):b=!1;if(!b)return;a.getSelection().scrollIntoView();a.fire("saveSnapshot");return!1}},this,null,100)}},getUniqueId:function(){var a;try{this._.expandoNumber=a=CKEDITOR.dom.domObject.prototype.getUniqueId.call(this)}catch(b){a=this._&&this._.expandoNumber}return a}},_:{cleanCustomData:function(){this.removeClass("cke_editable");this.restoreAttrs();for(var a=this.removeCustomData("classes");a&& +a.length;)this.removeClass(a.pop());if(!this.is("textarea")){var a=this.getDocument(),b=a.getHead();if(b.getCustomData("stylesheet")){var c=a.getCustomData("stylesheet_ref");--c?a.setCustomData("stylesheet_ref",c):(a.removeCustomData("stylesheet_ref"),b.removeCustomData("stylesheet").remove())}}}}});CKEDITOR.editor.prototype.editable=function(a){var b=this._.editable;if(b&&a)return 0;if(!arguments.length)return b;a?b=a instanceof CKEDITOR.editable?a:new CKEDITOR.editable(this,a):(b&&b.detach(),b= +null);return this._.editable=b};CKEDITOR.on("instanceLoaded",function(b){var c=b.editor;c.on("insertElement",function(a){a=a.data;a.type==CKEDITOR.NODE_ELEMENT&&(a.is("input")||a.is("textarea"))&&("false"!=a.getAttribute("contentEditable")&&a.data("cke-editable",a.hasAttribute("contenteditable")?"true":"1"),a.setAttribute("contentEditable",!1))});c.on("selectionChange",function(b){if(!c.readOnly){var d=c.getSelection();d&&!d.isLocked&&(d=c.checkDirty(),c.fire("lockSnapshot"),a(b),c.fire("unlockSnapshot"), +!d&&c.resetDirty())}})});CKEDITOR.on("instanceCreated",function(a){var b=a.editor;b.on("mode",function(){var a=b.editable();if(a&&a.isInline()){var c=b.title;a.changeAttr("role","textbox");a.changeAttr("aria-multiline","true");c&&a.changeAttr("aria-label",c);c&&a.changeAttr("title",c);var d=b.fire("ariaEditorHelpLabel",{}).label;if(d&&(c=this.ui.space(this.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?"top":"contents"))){var e=CKEDITOR.tools.getNextId(),d=CKEDITOR.dom.element.createFromHtml('\x3cspan id\x3d"'+ +e+'" class\x3d"cke_voice_label"\x3e'+d+"\x3c/span\x3e");c.append(d);a.changeAttr("aria-describedby",e)}}})});CKEDITOR.addCss(".cke_editable{cursor:text}.cke_editable img,.cke_editable input,.cke_editable textarea{cursor:default}");A=CKEDITOR.dom.walker.whitespaces(!0);F=CKEDITOR.dom.walker.bookmark(!1,!0);v=CKEDITOR.dom.walker.empty();l=CKEDITOR.dom.walker.bogus();L=/(^|]*>)\s*<(p|div|address|h\d|center|pre)[^>]*>\s*(?:]*>| |\u00A0| )?\s*(:?<\/\2>)?\s*(?=$|<\/body>)/gi;w= +function(){function a(b){return b.type==CKEDITOR.NODE_ELEMENT}function b(c,d){var e,g,f,r,h=[],t=d.range.startContainer;e=d.range.startPath();for(var t=l[t.getName()],k=0,z=c.getChildren(),B=z.count(),H=-1,I=-1,M=0,m=e.contains(l.$list);kCKEDITOR.env.version&&d.getChildCount()&&d.getFirst().remove())}return function(d){var e=d.startContainer,g=e.getAscendant("table",1),f=!1;c(g.getElementsByTag("td"));c(g.getElementsByTag("th"));g=d.clone();g.setStart(e,0);g=a(g).lastBackward();g||(g=d.clone(),g.setEndAt(e, +CKEDITOR.POSITION_BEFORE_END),g=a(g).lastForward(),f=!0);g||(g=e);g.is("table")?(d.setStartAt(g,CKEDITOR.POSITION_BEFORE_START),d.collapse(!0),g.remove()):(g.is({tbody:1,thead:1,tfoot:1})&&(g=b(g,"tr",f)),g.is("tr")&&(g=b(g,g.getParent().is("thead")?"th":"td",f)),(e=g.getBogus())&&e.remove(),d.moveToPosition(g,f?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_END))}}();G=function(){function a(b){b=new CKEDITOR.dom.walker(b);b.guard=function(a,b){if(b)return!1;if(a.type==CKEDITOR.NODE_ELEMENT)return a.is(CKEDITOR.dtd.$list)|| +a.is(CKEDITOR.dtd.$listItem)};b.evaluator=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.is(CKEDITOR.dtd.$listItem)};return b}return function(b){var c=b.startContainer,d=!1,e;e=b.clone();e.setStart(c,0);e=a(e).lastBackward();e||(e=b.clone(),e.setEndAt(c,CKEDITOR.POSITION_BEFORE_END),e=a(e).lastForward(),d=!0);e||(e=c);e.is(CKEDITOR.dtd.$list)?(b.setStartAt(e,CKEDITOR.POSITION_BEFORE_START),b.collapse(!0),e.remove()):((c=e.getBogus())&&c.remove(),b.moveToPosition(e,d?CKEDITOR.POSITION_AFTER_START: +CKEDITOR.POSITION_BEFORE_END),b.select())}}();p={eol:{detect:function(a,b){var c=a.range,d=c.clone(),e=c.clone(),g=new CKEDITOR.dom.elementPath(c.startContainer,b),f=new CKEDITOR.dom.elementPath(c.endContainer,b);d.collapse(1);e.collapse();g.block&&d.checkBoundaryOfElement(g.block,CKEDITOR.END)&&(c.setStartAfter(g.block),a.prependEolBr=1);f.block&&e.checkBoundaryOfElement(f.block,CKEDITOR.START)&&(c.setEndBefore(f.block),a.appendEolBr=1)},fix:function(a,b){var c=b.getDocument(),d;a.appendEolBr&&(d= +this.createEolBr(c),a.fragment.append(d));!a.prependEolBr||d&&!d.getPrevious()||a.fragment.append(this.createEolBr(c),1)},createEolBr:function(a){return a.createElement("br",{attributes:{"data-cke-eol":1}})}},bogus:{exclude:function(a){var b=a.range.getBoundaryNodes(),c=b.startNode,b=b.endNode;!b||!l(b)||c&&c.equals(b)||a.range.setEndBefore(b)}},tree:{rebuild:function(a,b){var c=a.range,d=c.getCommonAncestor(),e=new CKEDITOR.dom.elementPath(d,b),g=new CKEDITOR.dom.elementPath(c.startContainer,b), +c=new CKEDITOR.dom.elementPath(c.endContainer,b),f;d.type==CKEDITOR.NODE_TEXT&&(d=d.getParent());if(e.blockLimit.is({tr:1,table:1})){var h=e.contains("table").getParent();f=function(a){return!a.equals(h)}}else if(e.block&&e.block.is(CKEDITOR.dtd.$listItem)&&(g=g.contains(CKEDITOR.dtd.$list),c=c.contains(CKEDITOR.dtd.$list),!g.equals(c))){var r=e.contains(CKEDITOR.dtd.$list).getParent();f=function(a){return!a.equals(r)}}f||(f=function(a){return!a.equals(e.block)&&!a.equals(e.blockLimit)});this.rebuildFragment(a, +b,d,f)},rebuildFragment:function(a,b,c,d){for(var e;c&&!c.equals(b)&&d(c);)e=c.clone(0,1),a.fragment.appendTo(e),a.fragment=e,c=c.getParent()}},cell:{shrink:function(a){a=a.range;var b=a.startContainer,c=a.endContainer,d=a.startOffset,e=a.endOffset;b.type==CKEDITOR.NODE_ELEMENT&&b.equals(c)&&b.is("tr")&&++d==e&&a.shrink(CKEDITOR.SHRINK_TEXT)}}};u=function(){function a(b,c){var d=b.getParent();if(d.is(CKEDITOR.dtd.$inline))b[c?"insertBefore":"insertAfter"](d)}function b(c,d,e){a(d);a(e,1);for(var g;g= +e.getNext();)g.insertAfter(d),d=g;v(c)&&c.remove()}function c(a,b){var d=new CKEDITOR.dom.range(a);d.setStartAfter(b.startNode);d.setEndBefore(b.endNode);return d}return{list:{detectMerge:function(a,b){var d=c(b,a.bookmark),e=d.startPath(),g=d.endPath(),f=e.contains(CKEDITOR.dtd.$list),h=g.contains(CKEDITOR.dtd.$list);a.mergeList=f&&h&&f.getParent().equals(h.getParent())&&!f.equals(h);a.mergeListItems=e.block&&g.block&&e.block.is(CKEDITOR.dtd.$listItem)&&g.block.is(CKEDITOR.dtd.$listItem);if(a.mergeList|| +a.mergeListItems)d=d.clone(),d.setStartBefore(a.bookmark.startNode),d.setEndAfter(a.bookmark.endNode),a.mergeListBookmark=d.createBookmark()},merge:function(a,c){if(a.mergeListBookmark){var d=a.mergeListBookmark.startNode,e=a.mergeListBookmark.endNode,g=new CKEDITOR.dom.elementPath(d,c),f=new CKEDITOR.dom.elementPath(e,c);if(a.mergeList){var h=g.contains(CKEDITOR.dtd.$list),k=f.contains(CKEDITOR.dtd.$list);h.equals(k)||(k.moveChildren(h),k.remove())}a.mergeListItems&&(g=g.contains(CKEDITOR.dtd.$listItem), +f=f.contains(CKEDITOR.dtd.$listItem),g.equals(f)||b(f,d,e));d.remove();e.remove()}}},block:{detectMerge:function(a,b){if(!a.tableContentsRanges&&!a.mergeListBookmark){var c=new CKEDITOR.dom.range(b);c.setStartBefore(a.bookmark.startNode);c.setEndAfter(a.bookmark.endNode);a.mergeBlockBookmark=c.createBookmark()}},merge:function(a,c){if(a.mergeBlockBookmark&&!a.purgeTableBookmark){var d=a.mergeBlockBookmark.startNode,e=a.mergeBlockBookmark.endNode,g=new CKEDITOR.dom.elementPath(d,c),f=new CKEDITOR.dom.elementPath(e, +c),g=g.block,f=f.block;g&&f&&!g.equals(f)&&b(f,d,e);d.remove();e.remove()}}},table:function(){function a(c){var e=[],g,f=new CKEDITOR.dom.walker(c),h=c.startPath().contains(d),k=c.endPath().contains(d),t={};f.guard=function(a,f){if(a.type==CKEDITOR.NODE_ELEMENT){var B="visited_"+(f?"out":"in");if(a.getCustomData(B))return;CKEDITOR.dom.element.setMarker(t,a,B,1)}if(f&&h&&a.equals(h))g=c.clone(),g.setEndAt(h,CKEDITOR.POSITION_BEFORE_END),e.push(g);else if(!f&&k&&a.equals(k))g=c.clone(),g.setStartAt(k, +CKEDITOR.POSITION_AFTER_START),e.push(g);else{if(B=!f)B=a.type==CKEDITOR.NODE_ELEMENT&&a.is(d)&&(!h||b(a,h))&&(!k||b(a,k));if(!B&&(B=f))if(a.is(d))var B=h&&h.getAscendant("table",!0),I=k&&k.getAscendant("table",!0),m=a.getAscendant("table",!0),B=B&&B.contains(m)||I&&I.contains(m);else B=void 0;B&&(g=c.clone(),g.selectNodeContents(a),e.push(g))}};f.lastForward();CKEDITOR.dom.element.clearAllMarkers(t);return e}function b(a,c){var d=CKEDITOR.POSITION_CONTAINS+CKEDITOR.POSITION_IS_CONTAINED,e=a.getPosition(c); +return e===CKEDITOR.POSITION_IDENTICAL?!1:0===(e&d)}var d={td:1,th:1,caption:1};return{detectPurge:function(a){var b=a.range,c=b.clone();c.enlarge(CKEDITOR.ENLARGE_ELEMENT);var c=new CKEDITOR.dom.walker(c),e=0;c.evaluator=function(a){a.type==CKEDITOR.NODE_ELEMENT&&a.is(d)&&++e};c.checkForward();if(1g&&e&&e.intersectsNode(c.$)){var f=[{node:d.anchorNode,offset:d.anchorOffset}, +{node:d.focusNode,offset:d.focusOffset}];d.anchorNode==c.$&&d.anchorOffset>g&&(f[0].offset-=g);d.focusNode==c.$&&d.focusOffset>g&&(f[1].offset-=g)}}c.setText(y(c.getText(),1));f&&(c=a.getDocument().$,d=c.getSelection(),c=c.createRange(),c.setStart(f[0].node,f[0].offset),c.collapse(!0),d.removeAllRanges(),d.addRange(c),d.extend(f[1].node,f[1].offset))}}function y(a,b){return b?a.replace(J,function(a,b){return b?" ":""}):a.replace(w,"")}function A(a,b){var c=b&&CKEDITOR.tools.htmlEncode(b)||"\x26nbsp;", +c=CKEDITOR.dom.element.createFromHtml('\x3cdiv data-cke-hidden-sel\x3d"1" data-cke-temp\x3d"1" style\x3d"'+(CKEDITOR.env.ie&&14>CKEDITOR.env.version?"display:none":"position:fixed;top:0;left:-1000px;width:0;height:0;overflow:hidden;")+'"\x3e'+c+"\x3c/div\x3e",a.document);a.fire("lockSnapshot");a.editable().append(c);var d=a.getSelection(1),e=a.createRange(),g=d.root.on("selectionchange",function(a){a.cancel()},null,null,0);e.setStartAt(c,CKEDITOR.POSITION_AFTER_START);e.setEndAt(c,CKEDITOR.POSITION_BEFORE_END); +d.selectRanges([e]);g.removeListener();a.fire("unlockSnapshot");a._.hiddenSelectionContainer=c}function F(a){var b={37:1,39:1,8:1,46:1};return function(c){var d=c.data.getKeystroke();if(b[d]){var e=a.getSelection(),g=e.getRanges()[0];e.isCollapsed()&&(g=g[38>d?"getPreviousEditableNode":"getNextEditableNode"]())&&g.type==CKEDITOR.NODE_ELEMENT&&"false"==g.getAttribute("contenteditable")&&(e=e.getStartElement(),!e.isBlockBoundary()||""!==(void 0===e.$.textContent?e.$.innerText:e.$.textContent)||8!== +d&&46!==d||(e.remove(),a.fire("saveSnapshot")),a.getSelection().fake(g),c.data.preventDefault(),c.cancel())}}}function v(a){for(var b=0;b=d.getLength()?h.setStartAfter(d):h.setStartBefore(d));e&&e.type==CKEDITOR.NODE_TEXT&&(f?h.setEndAfter(e):h.setEndBefore(e));d=new CKEDITOR.dom.walker(h);d.evaluator=function(d){if(d.type==CKEDITOR.NODE_ELEMENT&&d.isReadOnly()){var e=c.clone();c.setEndBefore(d);c.collapsed&&a.splice(b--,1);d.getPosition(h.endContainer)&CKEDITOR.POSITION_CONTAINS||(e.setStartAfter(d),e.collapsed||a.splice(b+1,0,e));return!0}return!1};d.next()}}return a}var l= +"function"!=typeof window.getSelection,L=1,w=CKEDITOR.tools.repeat("​",7),J=new RegExp(w+"( )?","g"),G,p,u,K=CKEDITOR.dom.walker.invisible(1),E=function(){function a(b){return function(a){var c=a.editor.createRange();c.moveToClosestEditablePosition(a.selected,b)&&a.editor.getSelection().selectRanges([c]);return!1}}function b(a){return function(b){var c=b.editor,d=c.createRange(),e;if(!c.readOnly)return(e=d.moveToClosestEditablePosition(b.selected,a))||(e=d.moveToClosestEditablePosition(b.selected, +!a)),e&&c.getSelection().selectRanges([d]),c.fire("saveSnapshot"),b.selected.remove(),e||(d.moveToElementEditablePosition(c.editable()),c.getSelection().selectRanges([d])),c.fire("saveSnapshot"),!1}}var c=a(),d=a(1);return{37:c,38:c,39:d,40:d,8:b(),46:b(1)}}();CKEDITOR.on("instanceCreated",function(a){function b(){var a=c.getSelection();a&&a.removeAllRanges()}var c=a.editor;c.on("contentDom",function(){function a(){p=new CKEDITOR.dom.selection(c.getSelection());p.lock()}function b(){h.removeListener("mouseup", +b);m.removeListener("mouseup",b);var a=CKEDITOR.document.$.selection,c=a.createRange();"None"!=a.type&&c.parentElement()&&c.parentElement().ownerDocument==f.$&&c.select()}function d(a){var b,c;b=(b=this.document.getActive())?"input"===b.getName()||"textarea"===b.getName():!1;b||(b=this.getSelection(1),(c=g(b))&&!c.equals(n)&&(b.selectElement(c),a.data.preventDefault()))}function g(a){a=a.getRanges()[0];return a?(a=a.startContainer.getAscendant(function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("contenteditable")}, +!0))&&"false"===a.getAttribute("contenteditable")?a:null:null}var f=c.document,h=CKEDITOR.document,n=c.editable(),t=f.getBody(),m=f.getDocumentElement(),B=n.isInline(),q,p;CKEDITOR.env.gecko&&n.attachListener(n,"focus",function(a){a.removeListener();0!==q&&(a=c.getSelection().getNative())&&a.isCollapsed&&a.anchorNode==n.$&&(a=c.createRange(),a.moveToElementEditStart(n),a.select())},null,null,-2);n.attachListener(n,CKEDITOR.env.webkit||CKEDITOR.env.gecko?"focusin":"focus",function(){if(q&&(CKEDITOR.env.webkit|| +CKEDITOR.env.gecko)){q=c._.previousActive&&c._.previousActive.equals(f.getActive());var a=null!=c._.previousScrollTop&&c._.previousScrollTop!=n.$.scrollTop;CKEDITOR.env.webkit&&q&&a&&(n.$.scrollTop=c._.previousScrollTop)}c.unlockSelection(q);q=0},null,null,-1);n.attachListener(n,"mousedown",function(){q=0});if(CKEDITOR.env.ie||CKEDITOR.env.gecko||B)l?n.attachListener(n,"beforedeactivate",a,null,null,-1):n.attachListener(c,"selectionCheck",a,null,null,-1),n.attachListener(n,CKEDITOR.env.webkit||CKEDITOR.env.gecko? +"focusout":"blur",function(){var a=p&&(p.isFake||2>p.getRanges().length);CKEDITOR.env.gecko&&!B&&a||(c.lockSelection(p),q=1)},null,null,-1),n.attachListener(n,"mousedown",function(){q=0});if(CKEDITOR.env.ie&&!B){var v;n.attachListener(n,"mousedown",function(a){2==a.data.$.button&&((a=c.document.getSelection())&&a.getType()!=CKEDITOR.SELECTION_NONE||(v=c.window.getScrollPosition()))});n.attachListener(n,"mouseup",function(a){2==a.data.$.button&&v&&(c.document.$.documentElement.scrollLeft=v.x,c.document.$.documentElement.scrollTop= +v.y);v=null});if("BackCompat"!=f.$.compatMode){if(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat){var u,w;m.on("mousedown",function(a){function b(a){a=a.data.$;if(u){var c=t.$.createTextRange();try{c.moveToPoint(a.clientX,a.clientY)}catch(d){}u.setEndPoint(0>w.compareEndPoints("StartToStart",c)?"EndToEnd":"StartToStart",c);u.select()}}function c(){m.removeListener("mousemove",b);h.removeListener("mouseup",c);m.removeListener("mouseup",c);u.select()}a=a.data;if(a.getTarget().is("html")&&a.$.yCKEDITOR.env.version)m.on("mousedown",function(a){a.data.getTarget().is("html")&&(h.on("mouseup",b),m.on("mouseup",b))})}}n.attachListener(n,"selectionchange",e,c);n.attachListener(n,"keyup",k,c);n.attachListener(n,"touchstart",k,c);n.attachListener(n,"touchend",k,c);CKEDITOR.env.ie&&n.attachListener(n, +"keydown",d,c);n.attachListener(n,CKEDITOR.env.webkit||CKEDITOR.env.gecko?"focusin":"focus",function(){c.forceNextSelectionCheck();c.selectionChange(1)});if(B&&(CKEDITOR.env.webkit||CKEDITOR.env.gecko)){var y;n.attachListener(n,"mousedown",function(){y=1});n.attachListener(f.getDocumentElement(),"mouseup",function(){y&&k.call(c);y=0})}else n.attachListener(CKEDITOR.env.ie?n:f.getDocumentElement(),"mouseup",k,c);CKEDITOR.env.webkit&&n.attachListener(f,"keydown",function(a){switch(a.data.getKey()){case 13:case 33:case 34:case 35:case 36:case 37:case 39:case 8:case 45:case 46:n.hasFocus&& +x(n)}},null,null,-1);n.attachListener(n,"keydown",F(c),null,null,-1)});c.on("setData",function(){c.unlockSelection();CKEDITOR.env.webkit&&b()});c.on("contentDomUnload",function(){c.unlockSelection()});if(CKEDITOR.env.ie9Compat)c.on("beforeDestroy",b,null,null,9);c.on("dataReady",function(){delete c._.fakeSelection;delete c._.hiddenSelectionContainer;c.selectionChange(1)});c.on("loadSnapshot",function(){var a=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT),b=c.editable().getLast(a);b&&b.hasAttribute("data-cke-hidden-sel")&& +(b.remove(),CKEDITOR.env.gecko&&(a=c.editable().getFirst(a))&&a.is("br")&&a.getAttribute("_moz_editor_bogus_node")&&a.remove())},null,null,100);c.on("key",function(a){if("wysiwyg"==c.mode){var b=c.getSelection();if(b.isFake){var d=E[a.data.keyCode];if(d)return d({editor:c,selected:b.getSelectedElement(),selection:b,keyEvent:a})}}})});if(CKEDITOR.env.webkit)CKEDITOR.on("instanceReady",function(a){var b=a.editor;b.on("selectionChange",function(){var a=b.editable(),c=a.getCustomData("cke-fillingChar"); +c&&(c.getCustomData("ready")?(x(a),a.editor.fire("selectionCheck")):c.setCustomData("ready",1))},null,null,-1);b.on("beforeSetMode",function(){x(b.editable())},null,null,-1);b.on("getSnapshot",function(a){a.data&&(a.data=y(a.data))},b,null,20);b.on("toDataFormat",function(a){a.data.dataValue=y(a.data.dataValue)},null,null,0)});CKEDITOR.editor.prototype.selectionChange=function(a){(a?e:k).call(this)};CKEDITOR.editor.prototype.getSelection=function(a){return!this._.savedSelection&&!this._.fakeSelection|| +a?(a=this.editable())&&"wysiwyg"==this.mode&&"recreating"!==this.status?new CKEDITOR.dom.selection(a):null:this._.savedSelection||this._.fakeSelection};CKEDITOR.editor.prototype.getSelectedRanges=function(a){var b=this.getSelection();return b&&b.getRanges(a)||[]};CKEDITOR.editor.prototype.lockSelection=function(a){a=a||this.getSelection(1);return a.getType()!=CKEDITOR.SELECTION_NONE?(!a.isLocked&&a.lock(),this._.savedSelection=a,!0):!1};CKEDITOR.editor.prototype.unlockSelection=function(a){var b= +this._.savedSelection;return b?(b.unlock(a),delete this._.savedSelection,!0):!1};CKEDITOR.editor.prototype.forceNextSelectionCheck=function(){delete this._.selectionPreviousPath};CKEDITOR.dom.document.prototype.getSelection=function(){return new CKEDITOR.dom.selection(this)};CKEDITOR.dom.range.prototype.select=function(){var a=this.root instanceof CKEDITOR.editable?this.root.editor.getSelection():new CKEDITOR.dom.selection(this.root);a.selectRanges([this]);return a};CKEDITOR.SELECTION_NONE=1;CKEDITOR.SELECTION_TEXT= +2;CKEDITOR.SELECTION_ELEMENT=3;CKEDITOR.dom.selection=function(a){if(a instanceof CKEDITOR.dom.selection){var b=a;a=a.root}var c=a instanceof CKEDITOR.dom.element;this.rev=b?b.rev:L++;this.document=a instanceof CKEDITOR.dom.document?a:a.getDocument();this.root=c?a:this.document.getBody();this.isLocked=0;this._={cache:{}};if(b)return CKEDITOR.tools.extend(this._.cache,b._.cache),this.isFake=b.isFake,this.isLocked=b.isLocked,this;a=this.getNative();var d,e;if(a)if(a.getRangeAt)d=(e=a.rangeCount&&a.getRangeAt(0))&& +new CKEDITOR.dom.node(e.commonAncestorContainer);else{try{e=a.createRange()}catch(g){}d=e&&CKEDITOR.dom.element.get(e.item&&e.item(0)||e.parentElement())}if(!d||d.type!=CKEDITOR.NODE_ELEMENT&&d.type!=CKEDITOR.NODE_TEXT||!this.root.equals(d)&&!this.root.contains(d))this._.cache.type=CKEDITOR.SELECTION_NONE,this._.cache.startElement=null,this._.cache.selectedElement=null,this._.cache.selectedText="",this._.cache.ranges=new CKEDITOR.dom.rangeList;return this};var C={img:1,hr:1,li:1,table:1,tr:1,td:1, +th:1,embed:1,object:1,ol:1,ul:1,a:1,input:1,form:1,select:1,textarea:1,button:1,fieldset:1,thead:1,tfoot:1};CKEDITOR.tools.extend(CKEDITOR.dom.selection,{_removeFillingCharSequenceString:y,_createFillingCharSequenceNode:g,FILLING_CHAR_SEQUENCE:w});CKEDITOR.dom.selection.prototype={getNative:function(){return void 0!==this._.cache.nativeSel?this._.cache.nativeSel:this._.cache.nativeSel=l?this.document.$.selection:this.document.getWindow().$.getSelection()},getType:l?function(){var a=this._.cache;if(a.type)return a.type; +var b=CKEDITOR.SELECTION_NONE;try{var c=this.getNative(),d=c.type;"Text"==d&&(b=CKEDITOR.SELECTION_TEXT);"Control"==d&&(b=CKEDITOR.SELECTION_ELEMENT);c.createRange().parentElement()&&(b=CKEDITOR.SELECTION_TEXT)}catch(e){}return a.type=b}:function(){var a=this._.cache;if(a.type)return a.type;var b=CKEDITOR.SELECTION_TEXT,c=this.getNative();if(!c||!c.rangeCount)b=CKEDITOR.SELECTION_NONE;else if(1==c.rangeCount){var c=c.getRangeAt(0),d=c.startContainer;d==c.endContainer&&1==d.nodeType&&1==c.endOffset- +c.startOffset&&C[d.childNodes[c.startOffset].nodeName.toLowerCase()]&&(b=CKEDITOR.SELECTION_ELEMENT)}return a.type=b},getRanges:function(){var a=l?function(){function a(b){return(new CKEDITOR.dom.node(b)).getIndex()}var b=function(b,c){b=b.duplicate();b.collapse(c);var d=b.parentElement();if(!d.hasChildNodes())return{container:d,offset:0};for(var e=d.children,g,f,h=b.duplicate(),k=0,m=e.length-1,t=-1,l,q;k<=m;)if(t=Math.floor((k+m)/2),g=e[t],h.moveToElementText(g),l=h.compareEndPoints("StartToStart", +b),0l)k=t+1;else return{container:d,offset:a(g)};if(-1==t||t==e.length-1&&0>l){h.moveToElementText(d);h.setEndPoint("StartToStart",b);h=h.text.replace(/(\r\n|\r)/g,"\n").length;e=d.childNodes;if(!h)return g=e[e.length-1],g.nodeType!=CKEDITOR.NODE_TEXT?{container:d,offset:e.length}:{container:g,offset:g.nodeValue.length};for(d=e.length;0c.length?this.selectElement(b):this.selectRanges(c))}},reset:function(){this._.cache={};this.isFake=0;var a=this.root.editor;if(a&&a._.fakeSelection)if(this.rev== +a._.fakeSelection.rev){delete a._.fakeSelection;var b=a._.hiddenSelectionContainer;if(b){var c=a.checkDirty();a.fire("lockSnapshot");b.remove();a.fire("unlockSnapshot");!c&&a.resetDirty()}delete a._.hiddenSelectionContainer}else CKEDITOR.warn("selection-fake-reset");this.rev=L++},selectElement:function(a){var b=new CKEDITOR.dom.range(this.root);b.setStartBefore(a);b.setEndAfter(a);this.selectRanges([b])},selectRanges:function(a){var b=this.root.editor,c=b&&b._.hiddenSelectionContainer;this.reset(); +if(c)for(var c=this.root,e,h=0;h]*>)[ \t\r\n]*/gi,"$1");f=f.replace(/([ \t\n\r]+| )/g," ");f=f.replace(/]*>/gi,"\n");if(CKEDITOR.env.ie){var h=a.getDocument().createElement("div");h.append(e);e.$.outerHTML="\x3cpre\x3e"+f+"\x3c/pre\x3e";e.copyAttributes(h.getFirst());e=h.getFirst().remove()}else e.setHtml(f);b=e}else f?b=y(c?[a.getHtml()]:g(a),b):a.moveChildren(b);b.replace(a);if(d){var c=b,k;(k=c.getPrevious(H))&& +k.type==CKEDITOR.NODE_ELEMENT&&k.is("pre")&&(d=x(k.getHtml(),/\n$/,"")+"\n\n"+x(c.getHtml(),/^\n/,""),CKEDITOR.env.ie?c.$.outerHTML="\x3cpre\x3e"+d+"\x3c/pre\x3e":c.setHtml(d),k.remove())}else c&&l(b)}function g(a){var b=[];x(a.getOuterHtml(),/(\S\s*)\n(?:\s|(]+data-cke-bookmark.*?\/span>))*\n(?!$)/gi,function(a,b,c){return b+"\x3c/pre\x3e"+c+"\x3cpre\x3e"}).replace(/([\s\S]*?)<\/pre>/gi,function(a,c){b.push(c)});return b}function x(a,b,c){var d="",e="";a=a.replace(/(^]+data-cke-bookmark.*?\/span>)|(]+data-cke-bookmark.*?\/span>$)/gi, +function(a,b,c){b&&(d=b);c&&(e=c);return""});return d+a.replace(b,c)+e}function y(a,b){var c;1=b&&a<=c}function f(a){a=a.toString(16);return 1==a.length?"0"+a:a}CKEDITOR.tools.color= +CKEDITOR.tools.createClass({$:function(a,b){this._.initialColorCode=a;this._.defaultValue=b;this._.parseInput(a)},proto:{getHex:function(){if(!this._.isValidColor)return this._.defaultValue;var a=this._.blendAlphaColor(this._.red,this._.green,this._.blue,this._.alpha);return this._.formatHexString(a[0],a[1],a[2])},getHexWithAlpha:function(){if(!this._.isValidColor)return this._.defaultValue;var a=Math.round(this._.alpha*CKEDITOR.tools.color.MAX_RGB_CHANNEL_VALUE);return this._.formatHexString(this._.red, +this._.green,this._.blue,a)},getRgb:function(){if(!this._.isValidColor)return this._.defaultValue;var a=this._.blendAlphaColor(this._.red,this._.green,this._.blue,this._.alpha);return this._.formatRgbString("rgb",a[0],a[1],a[2])},getRgba:function(){return this._.isValidColor?this._.formatRgbString("rgba",this._.red,this._.green,this._.blue,this._.alpha):this._.defaultValue},getHsl:function(){var a=0===this._.alpha||1===this._.alpha;if(!this._.isValidColor)return this._.defaultValue;this._.type=== +CKEDITOR.tools.color.TYPE_HSL&&a?a=[this._.hue,this._.saturation,this._.lightness]:(a=this._.blendAlphaColor(this._.red,this._.green,this._.blue,this._.alpha),a=this._.rgbToHsl(a[0],a[1],a[2]));return this._.formatHslString("hsl",a[0],a[1],a[2])},getHsla:function(){var a;if(!this._.isValidColor)return this._.defaultValue;a=this._.type===CKEDITOR.tools.color.TYPE_HSL?[this._.hue,this._.saturation,this._.lightness]:this._.rgbToHsl(this._.red,this._.green,this._.blue);return this._.formatHslString("hsla", +a[0],a[1],a[2],this._.alpha)},getInitialValue:function(){return this._.initialColorCode}},_:{initialColorCode:"",isValidColor:!0,type:0,hue:0,saturation:0,lightness:0,red:0,green:0,blue:0,alpha:1,blendAlphaColor:function(a,b,c,d){return CKEDITOR.tools.array.map([a,b,c],function(a){return Math.round(CKEDITOR.tools.color.MAX_RGB_CHANNEL_VALUE-d*(CKEDITOR.tools.color.MAX_RGB_CHANNEL_VALUE-a))})},formatHexString:function(a,b,c,d){a="#"+f(a)+f(b)+f(c);void 0!==d&&(a+=f(d));return a.toUpperCase()},formatRgbString:function(a, +b,c,d,f){b=[b,c,d];void 0!==f&&b.push(f);return a+"("+b.join(",")+")"},formatHslString:function(a,b,c,d,f){return a+"("+b+","+c+"%,"+d+"%"+(void 0!==f?","+f:"")+")"},parseInput:function(a){if("string"!==typeof a)this._.isValidColor=!1;else{a=CKEDITOR.tools.trim(a);var b=this._.matchStringToNamedColor(a);b&&(a=b);var b=this._.extractColorChannelsFromHex(a),c=this._.extractColorChannelsFromRgba(a);a=this._.extractColorChannelsFromHsla(a);(a=b||c||a)?(this._.type=a.type,this._.red=a.red,this._.green= +a.green,this._.blue=a.blue,this._.alpha=a.alpha,a.type===CKEDITOR.tools.color.TYPE_HSL&&(this._.hue=a.hue,this._.saturation=a.saturation,this._.lightness=a.lightness)):this._.isValidColor=!1}},matchStringToNamedColor:function(a){return CKEDITOR.tools.color.namedColors[a.toLowerCase()]||null},extractColorChannelsFromHex:function(a){-1===a.indexOf("#")&&(a="#"+a);a.match(CKEDITOR.tools.color.hex3CharsRegExp)&&(a=this._.hex3ToHex6(a));a.match(CKEDITOR.tools.color.hex4CharsRegExp)&&(a=this._.hex4ToHex8(a)); +if(!a.match(CKEDITOR.tools.color.hex6CharsRegExp)&&!a.match(CKEDITOR.tools.color.hex8CharsRegExp))return null;a=a.split("");var b=1;a[7]&&a[8]&&(b=parseInt(a[7]+a[8],16),b/=CKEDITOR.tools.color.MAX_RGB_CHANNEL_VALUE,b=Number(b.toFixed(1)));return{type:CKEDITOR.tools.color.TYPE_RGB,red:parseInt(a[1]+a[2],16),green:parseInt(a[3]+a[4],16),blue:parseInt(a[5]+a[6],16),alpha:b}},extractColorChannelsFromRgba:function(b){var c=this._.extractColorChannelsByPattern(b,CKEDITOR.tools.color.rgbRegExp);if(!c|| +3>c.length||4c.length||4=c?(e=f.createText(""),e.insertAfter(this)):(a=f.createText(""),a.insertAfter(e),a.remove()));return e},substring:function(a,d){return"number"!=typeof d?this.$.nodeValue.substr(a):this.$.nodeValue.substring(a,d)}}); +(function(){function a(a,c,d){var e=a.serializable,k=c[d?"endContainer":"startContainer"],h=d?"endOffset":"startOffset",q=e?c.document.getById(a.startNode):a.startNode;a=e?c.document.getById(a.endNode):a.endNode;k.equals(q.getPrevious())?(c.startOffset=c.startOffset-k.getLength()-a.getPrevious().getLength(),k=a.getNext()):k.equals(a.getPrevious())&&(c.startOffset-=k.getLength(),k=a.getNext());k.equals(q.getParent())&&c[h]++;k.equals(a.getParent())&&c[h]++;c[d?"endContainer":"startContainer"]=k;return c} +CKEDITOR.dom.rangeList=function(a){if(a instanceof CKEDITOR.dom.rangeList)return a;a?a instanceof CKEDITOR.dom.range&&(a=[a]):a=[];return CKEDITOR.tools.extend(a,d)};var d={createIterator:function(){var a=this,c=CKEDITOR.dom.walker.bookmark(),d=[],e;return{getNextRange:function(k){e=void 0===e?0:e+1;var h=a[e];if(h&&1b?-1:1}),e=0,f;eCKEDITOR.env.version? +a[h].$.styleSheet.cssText+=f:a[h].$.innerHTML+=f}}var e={};CKEDITOR.skin={path:a,loadPart:function(c,d){CKEDITOR.skin.name!=CKEDITOR.skinName.split(",")[0]?CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(a()+"skin.js"),function(){b(c,d)}):b(c,d)},getPath:function(a){return CKEDITOR.getUrl(d(a))},icons:{},addIcon:function(a,b,c,d){a=a.toLowerCase();this.icons[a]||(this.icons[a]={path:b,offset:c||0,bgsize:d||"16px"})},getIconStyle:function(a,b,c,d,e){var f;a&&(a=a.toLowerCase(),b&&(f=this.icons[a+"-rtl"]), +f||(f=this.icons[a]));a=c||f&&f.path||"";d=d||f&&f.offset;e=e||f&&f.bgsize||"16px";a&&(a=a.replace(/'/g,"\\'"));return a&&"background-image:url('"+CKEDITOR.getUrl(a)+"');background-position:0 "+d+"px;background-size:"+e+";"}};CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{getUiColor:function(){return this.uiColor},setUiColor:function(a){var b=c(CKEDITOR.document);return(this.setUiColor=function(a){this.uiColor=a;var c=CKEDITOR.skin.chameleon,d="",e="";"function"==typeof c&&(d=c(this,"editor"),e= +c(this,"panel"));a=[[q,a]];f([b],d,a);f(h,e,a)}).call(this,a)}});var k="cke_ui_color",h=[],q=/\$color/g;CKEDITOR.on("instanceLoaded",function(a){if(!CKEDITOR.env.ie||!CKEDITOR.env.quirks){var b=a.editor;a=function(a){a=(a.data[0]||a.data).element.getElementsByTag("iframe").getItem(0).getFrameDocument();if(!a.getById("cke_ui_color")){var d=c(a);h.push(d);b.on("destroy",function(){h=CKEDITOR.tools.array.filter(h,function(a){return d!==a})});(a=b.getUiColor())&&f([d],CKEDITOR.skin.chameleon(b,"panel"), +[[q,a]])}};b.on("panelShow",a);b.on("menuShow",a);b.config.uiColor&&b.setUiColor(b.config.uiColor)}})})(); +(function(){var a=CKEDITOR.dom.element.createFromHtml('\x3cdiv style\x3d"width:0;height:0;position:absolute;left:-10000px;border:1px solid;border-color:red blue"\x3e\x3c/div\x3e',CKEDITOR.document);a.appendTo(CKEDITOR.document.getHead());try{var d=a.getComputedStyle("border-top-color"),b=a.getComputedStyle("border-right-color");CKEDITOR.env.hc=!(!d||d!=b)}catch(c){CKEDITOR.env.hc=!1}a.remove();CKEDITOR.env.hc&&(CKEDITOR.env.cssClass+=" cke_hc");CKEDITOR.document.appendStyleText(".cke{visibility:hidden;}"); +CKEDITOR.status="loaded";CKEDITOR.fireOnce("loaded");if(a=CKEDITOR._.pending)for(delete CKEDITOR._.pending,d=0;dc;c++){var f=c,d;d=parseInt(a[c],16);d=("0"+(0>e?0|d*(1+e):0|d+(255-d)*e).toString(16)).slice(-2);a[f]=d}return"#"+a.join("")}}(),c=function(){var b=new CKEDITOR.template("background:#{to};background-image:linear-gradient(to bottom,{from},{to});filter:progid:DXImageTransform.Microsoft.gradient(gradientType\x3d0,startColorstr\x3d'{from}',endColorstr\x3d'{to}');");return function(c,a){return b.output({from:c, +to:a})}}(),f={editor:new CKEDITOR.template("{id}.cke_chrome [border-color:{defaultBorder};] {id} .cke_top [ {defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_bottom [{defaultGradient}border-top-color:{defaultBorder};] {id} .cke_resizer [border-right-color:{ckeResizer}] {id} .cke_dialog_title [{defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_dialog_footer [{defaultGradient}outline-color:{defaultBorder};border-top-color:{defaultBorder};] {id} .cke_dialog_tab [{lightGradient}border-color:{defaultBorder};] {id} .cke_dialog_tab:hover [{mediumGradient}] {id} .cke_dialog_contents [border-top-color:{defaultBorder};] {id} .cke_dialog_tab_selected, {id} .cke_dialog_tab_selected:hover [background:{dialogTabSelected};border-bottom-color:{dialogTabSelectedBorder};] {id} .cke_dialog_body [background:{dialogBody};border-color:{defaultBorder};] {id} .cke_toolgroup [{lightGradient}border-color:{defaultBorder};] {id} a.cke_button_off:hover, {id} a.cke_button_off:focus, {id} a.cke_button_off:active [{mediumGradient}] {id} .cke_button_on [{ckeButtonOn}] {id} .cke_toolbar_separator [background-color: {ckeToolbarSeparator};] {id} .cke_combo_button [border-color:{defaultBorder};{lightGradient}] {id} a.cke_combo_button:hover, {id} a.cke_combo_button:focus, {id} .cke_combo_on a.cke_combo_button [border-color:{defaultBorder};{mediumGradient}] {id} .cke_path_item [color:{elementsPathColor};] {id} a.cke_path_item:hover, {id} a.cke_path_item:focus, {id} a.cke_path_item:active [background-color:{elementsPathBg};] {id}.cke_panel [border-color:{defaultBorder};] "), +panel:new CKEDITOR.template(".cke_panel_grouptitle [{lightGradient}border-color:{defaultBorder};] .cke_menubutton_icon [background-color:{menubuttonIcon};] .cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon [background-color:{menubuttonIconHover};] .cke_menuseparator [background-color:{menubuttonIcon};] a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox [border-color:{defaultBorder};] a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore [background-color:{ckeColorauto};border-color:{defaultBorder};] ")}; +return function(g,e){var a=g.uiColor,a={id:"."+g.id,defaultBorder:b(a,-.1),defaultGradient:c(b(a,.9),a),lightGradient:c(b(a,1),b(a,.7)),mediumGradient:c(b(a,.8),b(a,.5)),ckeButtonOn:c(b(a,.6),b(a,.7)),ckeResizer:b(a,-.4),ckeToolbarSeparator:b(a,.5),ckeColorauto:b(a,.8),dialogBody:b(a,.7),dialogTabSelected:c("#FFFFFF","#FFFFFF"),dialogTabSelectedBorder:"#FFF",elementsPathColor:b(a,-.6),elementsPathBg:a,menubuttonIcon:b(a,.5),menubuttonIconHover:b(a,.3)};return f[e].output(a).replace(/\[/g,"{").replace(/\]/g, +"}")}}();CKEDITOR.plugins.add("dialogui",{onLoad:function(){var h=function(b){this._||(this._={});this._["default"]=this._.initValue=b["default"]||"";this._.required=b.required||!1;for(var a=[this._],d=1;darguments.length)){var c=h.call(this,a);c.labelId=CKEDITOR.tools.getNextId()+ +"_label";this._.children=[];var e={role:a.role||"presentation"};a.includeLabel&&(e["aria-labelledby"]=c.labelId);CKEDITOR.ui.dialog.uiElement.call(this,b,a,d,"div",null,e,function(){var e=[],g=a.required?" cke_required":"";"horizontal"!=a.labelLayout?e.push('\x3clabel class\x3d"cke_dialog_ui_labeled_label'+g+'" ',' id\x3d"'+c.labelId+'"',c.inputId?' for\x3d"'+c.inputId+'"':"",(a.labelStyle?' style\x3d"'+a.labelStyle+'"':"")+"\x3e",a.required?a.label+'\x3cspan class\x3d"cke_dialog_ui_labeled_required" aria-hidden\x3d"true"\x3e*\x3c/span\x3e': +a.label,"\x3c/label\x3e",'\x3cdiv class\x3d"cke_dialog_ui_labeled_content"',a.controlStyle?' style\x3d"'+a.controlStyle+'"':"",' role\x3d"presentation"\x3e',f.call(this,b,a),"\x3c/div\x3e"):(g={type:"hbox",widths:a.widths,padding:0,children:[{type:"html",html:'\x3clabel class\x3d"cke_dialog_ui_labeled_label'+g+'" id\x3d"'+c.labelId+'" for\x3d"'+c.inputId+'"'+(a.labelStyle?' style\x3d"'+a.labelStyle+'"':"")+"\x3e"+CKEDITOR.tools.htmlEncode(a.label)+"\x3c/label\x3e"},{type:"html",html:'\x3cspan class\x3d"cke_dialog_ui_labeled_content"'+ +(a.controlStyle?' style\x3d"'+a.controlStyle+'"':"")+"\x3e"+f.call(this,b,a)+"\x3c/span\x3e"}]},CKEDITOR.dialog._.uiElementBuilders.hbox.build(b,g,e));return e.join("")})}},textInput:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this._.inputId=CKEDITOR.tools.getNextId()+"_textInput",c={"class":"cke_dialog_ui_input_"+a.type,id:f,type:a.type};a.validate&&(this.validate=a.validate);a.maxLength&&(c.maxlength=a.maxLength);a.size&&(c.size=a.size);a.inputStyle&&(c.style=a.inputStyle);var e= +this,m=!1;b.on("load",function(){e.getInputElement().on("keydown",function(a){13==a.data.getKeystroke()&&(m=!0)});e.getInputElement().on("keyup",function(a){13==a.data.getKeystroke()&&m&&(b.getButton("ok")&&setTimeout(function(){b.getButton("ok").click()},0),m=!1);e.bidi&&w.call(e,a)},null,null,1E3)});CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){var b=['\x3cdiv class\x3d"cke_dialog_ui_input_',a.type,'" role\x3d"presentation"'];a.width&&b.push('style\x3d"width:'+a.width+'" ');b.push("\x3e\x3cinput "); +c["aria-labelledby"]=this._.labelId;this._.required&&(c["aria-required"]=this._.required);for(var e in c)b.push(e+'\x3d"'+c[e]+'" ');b.push(" /\x3e\x3c/div\x3e");return b.join("")})}},textarea:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this,c=this._.inputId=CKEDITOR.tools.getNextId()+"_textarea",e={};a.validate&&(this.validate=a.validate);e.rows=a.rows||5;e.cols=a.cols||20;e["class"]="cke_dialog_ui_input_textarea "+(a["class"]||"");"undefined"!=typeof a.inputStyle&&(e.style=a.inputStyle); +a.dir&&(e.dir=a.dir);if(f.bidi)b.on("load",function(){f.getInputElement().on("keyup",w)},f);CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){e["aria-labelledby"]=this._.labelId;this._.required&&(e["aria-required"]=this._.required);var a=['\x3cdiv class\x3d"cke_dialog_ui_input_textarea" role\x3d"presentation"\x3e\x3ctextarea id\x3d"',c,'" '],b;for(b in e)a.push(b+'\x3d"'+CKEDITOR.tools.htmlEncode(e[b])+'" ');a.push("\x3e",CKEDITOR.tools.htmlEncode(f._["default"]),"\x3c/textarea\x3e\x3c/div\x3e"); +return a.join("")})}},checkbox:function(b,a,d){if(!(3>arguments.length)){var f=h.call(this,a,{"default":!!a["default"]});a.validate&&(this.validate=a.validate);CKEDITOR.ui.dialog.uiElement.call(this,b,a,d,"span",null,null,function(){var c=CKEDITOR.tools.extend({},a,{id:a.id?a.id+"_checkbox":CKEDITOR.tools.getNextId()+"_checkbox"},!0),e=[],d=CKEDITOR.tools.getNextId()+"_label",g={"class":"cke_dialog_ui_checkbox_input",type:"checkbox","aria-labelledby":d};t(c);a["default"]&&(g.checked="checked");"undefined"!= +typeof c.inputStyle&&(c.style=c.inputStyle);f.checkbox=new CKEDITOR.ui.dialog.uiElement(b,c,e,"input",null,g);e.push(' \x3clabel id\x3d"',d,'" for\x3d"',g.id,'"'+(a.labelStyle?' style\x3d"'+a.labelStyle+'"':"")+"\x3e",CKEDITOR.tools.htmlEncode(a.label),"\x3c/label\x3e");return e.join("")})}},radio:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);this._["default"]||(this._["default"]=this._.initValue=a.items[0][1]);a.validate&&(this.validate=a.validate);var f=[],c=this;a.role="radiogroup"; +a.includeLabel=!0;CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){for(var e=[],d=[],g=(a.id?a.id:CKEDITOR.tools.getNextId())+"_radio",k=0;karguments.length)){var f=h.call(this,a);a.validate&&(this.validate=a.validate);f.inputId=CKEDITOR.tools.getNextId()+"_select";CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){var c=CKEDITOR.tools.extend({},a,{id:a.id?a.id+"_select":CKEDITOR.tools.getNextId()+"_select"},!0),e=[],d=[],g={id:f.inputId,"class":"cke_dialog_ui_input_select", +"aria-labelledby":this._.labelId};e.push('\x3cdiv class\x3d"cke_dialog_ui_input_',a.type,'" role\x3d"presentation"');a.width&&e.push('style\x3d"width:'+a.width+'" ');e.push("\x3e");void 0!==a.size&&(g.size=a.size);void 0!==a.multiple&&(g.multiple=a.multiple);t(c);for(var k=0,l;karguments.length)){void 0===a["default"]&&(a["default"]="");var f=CKEDITOR.tools.extend(h.call(this,a),{definition:a,buttons:[]});a.validate&&(this.validate=a.validate);b.on("load",function(){CKEDITOR.document.getById(f.frameId).getParent().addClass("cke_dialog_ui_input_file")});CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d, +function(){f.frameId=CKEDITOR.tools.getNextId()+"_fileInput";var b=['\x3ciframe frameborder\x3d"0" allowtransparency\x3d"0" class\x3d"cke_dialog_ui_input_file" role\x3d"presentation" id\x3d"',f.frameId,'" title\x3d"',a.label,'" src\x3d"javascript:void('];b.push(CKEDITOR.env.ie?"(function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+"})()":"0");b.push(')"\x3e\x3c/iframe\x3e');return b.join("")})}},fileButton:function(b,a,d){var f=this;if(!(3>arguments.length)){h.call(this, +a);a.validate&&(this.validate=a.validate);var c=CKEDITOR.tools.extend({},a),e=c.onClick;c.className=(c.className?c.className+" ":"")+"cke_dialog_ui_button";c.onClick=function(c){var d=a["for"];c=e?e.call(this,c):!1;!1!==c&&("xhr"!==c&&b.getContentElement(d[0],d[1]).submit(),this.disable())};b.on("load",function(){b.getContentElement(a["for"][0],a["for"][1])._.buttons.push(f)});CKEDITOR.ui.dialog.button.call(this,b,c,d)}},html:function(){var b=/^\s*<[\w:]+\s+([^>]*)?>/,a=/^(\s*<[\w:]+(?:\s+[^>]*)?)((?:.|\r|\n)+)$/, +d=/\/$/;return function(f,c,e){if(!(3>arguments.length)){var m=[],g=c.html;"\x3c"!=g.charAt(0)&&(g="\x3cspan\x3e"+g+"\x3c/span\x3e");var k=c.focus;if(k){var l=this.focus;this.focus=function(){("function"==typeof k?k:l).call(this);this.fire("focus")};c.isFocusable&&(this.isFocusable=this.isFocusable);this.keyboardFocusable=!0}CKEDITOR.ui.dialog.uiElement.call(this,f,c,m,"span",null,null,"");m=m.join("").match(b);g=g.match(a)||["","",""];d.test(g[1])&&(g[1]=g[1].slice(0,-1),g[2]="/"+g[2]);e.push([g[1], +" ",m[1]||"",g[2]].join(""))}}}(),fieldset:function(b,a,d,f,c){var e=c.label;this._={children:a};CKEDITOR.ui.dialog.uiElement.call(this,b,c,f,"fieldset",null,null,function(){var a=[];e&&a.push("\x3clegend"+(c.labelStyle?' style\x3d"'+c.labelStyle+'"':"")+"\x3e"+e+"\x3c/legend\x3e");for(var b=0;ba.getChildCount()?(new CKEDITOR.dom.text(b,CKEDITOR.document)).appendTo(a):a.getChild(0).$.nodeValue=b;return this},getLabel:function(){var b=CKEDITOR.document.getById(this._.labelId);return!b||1>b.getChildCount()?"":b.getChild(0).getText()},eventProcessors:v},!0);CKEDITOR.ui.dialog.button.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{click:function(){return this._.disabled?!1:this.fire("click",{dialog:this._.dialog})}, +enable:function(){this._.disabled=!1;var b=this.getElement();b&&b.removeClass("cke_disabled")},disable:function(){this._.disabled=!0;this.getElement().addClass("cke_disabled")},isVisible:function(){return this.getElement().getFirst().isVisible()},isEnabled:function(){return!this._.disabled},eventProcessors:CKEDITOR.tools.extend({},CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,{onClick:function(b,a){this.on("click",function(){a.apply(this,arguments)})}},!0),accessKeyUp:function(){this.click()}, +accessKeyDown:function(){this.focus()},keyboardFocusable:!0},!0);CKEDITOR.ui.dialog.textInput.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return CKEDITOR.document.getById(this._.inputId)},focus:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&a.$.focus()},0)},select:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&(a.$.focus(),a.$.select())},0)},accessKeyUp:function(){this.select()}, +setValue:function(b){if(this.bidi){var a=b&&b.charAt(0);(a="‪"==a?"ltr":"‫"==a?"rtl":null)&&(b=b.slice(1));this.setDirectionMarker(a)}b||(b="");return CKEDITOR.ui.dialog.uiElement.prototype.setValue.apply(this,arguments)},getValue:function(){var b=CKEDITOR.ui.dialog.uiElement.prototype.getValue.call(this);if(this.bidi&&b){var a=this.getDirectionMarker();a&&(b=("ltr"==a?"‪":"‫")+b)}return b},setDirectionMarker:function(b){var a=this.getInputElement();b?a.setAttributes({dir:b,"data-cke-dir-marker":b}): +this.getDirectionMarker()&&a.removeAttributes(["dir","data-cke-dir-marker"])},getDirectionMarker:function(){return this.getInputElement().data("cke-dir-marker")},keyboardFocusable:!0},q,!0);CKEDITOR.ui.dialog.textarea.prototype=new CKEDITOR.ui.dialog.textInput;CKEDITOR.ui.dialog.select.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return this._.select.getElement()},add:function(b,a,d){var f=new CKEDITOR.dom.element("option",this.getDialog().getParentEditor().document), +c=this.getInputElement().$;f.$.text=b;f.$.value=void 0===a||null===a?b:a;void 0===d||null===d?CKEDITOR.env.ie?c.add(f.$):c.add(f.$,null):c.add(f.$,d);return this},remove:function(b){this.getInputElement().$.remove(b);return this},clear:function(){for(var b=this.getInputElement().$;0b-a;c--)if(this._.tabs[this._.tabIdList[c%a]][0].$.offsetHeight)return this._.tabIdList[c%a];return null}function W(){for(var a=this._.tabIdList.length,b=CKEDITOR.tools.indexOf(this._.tabIdList,this._.currentTabId),c=b+1;ch.width-c.width-g?h.width-c.width+("rtl"==f.lang.dir?0:k[1]):d.x;c=d.y+k[0]h.height-c.height-g?h.height-c.height+k[2]:d.y;q=Math.floor(q);c=Math.floor(c);a.move(q,c,1);b.data.preventDefault()}function c(){CKEDITOR.document.removeListener("mousemove",b);CKEDITOR.document.removeListener("mouseup",c);if(CKEDITOR.env.ie6Compat){var a=u.getChild(0).getFrameDocument();a.removeListener("mousemove",b);a.removeListener("mouseup", +c)}}var e=null,d=null,f=a.getParentEditor(),g=f.config.dialog_magnetDistance,k=CKEDITOR.skin.margins||[0,0,0,0];"undefined"==typeof g&&(g=20);a.parts.title.on("mousedown",function(f){if(!a._.moved){var g=a._.element;g.getFirst().setStyle("position","absolute");g.removeStyle("display");a._.moved=!0;a.layout()}e={x:f.data.$.screenX,y:f.data.$.screenY};CKEDITOR.document.on("mousemove",b);CKEDITOR.document.on("mouseup",c);d=a.getPosition();CKEDITOR.env.ie6Compat&&(g=u.getChild(0).getFrameDocument(),g.on("mousemove", +b),g.on("mouseup",c));f.data.preventDefault()},a)}function da(a){function b(b){var c="rtl"==f.lang.dir,n=h.width,q=h.height,w=n+(b.data.$.screenX-l.x)*(c?-1:1)*(a._.moved?1:2),A=q+(b.data.$.screenY-l.y)*(a._.moved?1:2),C=a._.element.getFirst(),C=c&&parseInt(C.getComputedStyle("right"),10),v=a.getPosition();v.x=v.x||0;v.y=v.y||0;v.y+A>p.height&&(A=p.height-v.y);(c?C:v.x)+w>p.width&&(w=p.width-(c?C:v.x));A=Math.floor(A);w=Math.floor(w);if(d==CKEDITOR.DIALOG_RESIZE_WIDTH||d==CKEDITOR.DIALOG_RESIZE_BOTH)n= +Math.max(e.minWidth||0,w-g);if(d==CKEDITOR.DIALOG_RESIZE_HEIGHT||d==CKEDITOR.DIALOG_RESIZE_BOTH)q=Math.max(e.minHeight||0,A-k);a.resize(n,q);a._.moved&&O(a,a._.position.x,a._.position.y);a._.moved||a.layout();b.data.preventDefault()}function c(){CKEDITOR.document.removeListener("mouseup",c);CKEDITOR.document.removeListener("mousemove",b);q&&(q.remove(),q=null);if(CKEDITOR.env.ie6Compat){var a=u.getChild(0).getFrameDocument();a.removeListener("mouseup",c);a.removeListener("mousemove",b)}}var e=a.definition, +d=e.resizable;if(d!=CKEDITOR.DIALOG_RESIZE_NONE){var f=a.getParentEditor(),g,k,p,l,h,q,n=CKEDITOR.tools.addFunction(function(d){function e(a){return a.isVisible()}h=a.getSize();var f=a.parts.contents,n=f.$.getElementsByTagName("iframe").length,w=!(CKEDITOR.env.gecko||CKEDITOR.env.ie&&CKEDITOR.env.quirks);n&&(q=CKEDITOR.dom.element.createFromHtml('\x3cdiv class\x3d"cke_dialog_resize_cover" style\x3d"height: 100%; position: absolute; width: 100%; left:0; top:0;"\x3e\x3c/div\x3e'),f.append(q));k=h.height- +a.parts.contents.getFirst(e).getSize("height",w);g=h.width-a.parts.contents.getFirst(e).getSize("width",1);l={x:d.screenX,y:d.screenY};p=CKEDITOR.document.getWindow().getViewPaneSize();CKEDITOR.document.on("mousemove",b);CKEDITOR.document.on("mouseup",c);CKEDITOR.env.ie6Compat&&(f=u.getChild(0).getFrameDocument(),f.on("mousemove",b),f.on("mouseup",c));d.preventDefault&&d.preventDefault()});a.on("load",function(){var b="";d==CKEDITOR.DIALOG_RESIZE_WIDTH?b=" cke_resizer_horizontal":d==CKEDITOR.DIALOG_RESIZE_HEIGHT&& +(b=" cke_resizer_vertical");b=CKEDITOR.dom.element.createFromHtml('\x3cdiv class\x3d"cke_resizer'+b+" cke_resizer_"+f.lang.dir+'" title\x3d"'+CKEDITOR.tools.htmlEncode(f.lang.common.resize)+'" onmousedown\x3d"CKEDITOR.tools.callFunction('+n+', event )"\x3e'+("ltr"==f.lang.dir?"◢":"◣")+"\x3c/div\x3e");a.parts.footer.append(b,1)});f.on("destroy",function(){CKEDITOR.tools.removeFunction(n)})}}function O(a,b,c){var e=a.parts.dialog.getParent().getClientSize(),d=a.getSize(),f=a._.viewportRatio,g=Math.max(e.width- +d.width,0),e=Math.max(e.height-d.height,0);f.width=g?b/g:f.width;f.height=e?c/e:f.height;a._.viewportRatio=f}function H(a){a.data.preventDefault(1)}function P(a){var b=a.config,c=CKEDITOR.skinName||a.config.skin,e=b.dialog_backgroundCoverColor||("moono-lisa"==c?"black":"white"),c=b.dialog_backgroundCoverOpacity,d=b.baseFloatZIndex,b=CKEDITOR.tools.genKey(e,c,d),f=B[b];CKEDITOR.document.getBody().addClass("cke_dialog_open");f?f.show():(d=['\x3cdiv tabIndex\x3d"-1" style\x3d"position: ',CKEDITOR.env.ie6Compat? +"absolute":"fixed","; z-index: ",d,"; top: 0px; left: 0px; ","; width: 100%; height: 100%;",CKEDITOR.env.ie6Compat?"":"background-color: "+e,'" class\x3d"cke_dialog_background_cover"\x3e'],CKEDITOR.env.ie6Compat&&(e="\x3chtml\x3e\x3cbody style\x3d\\'background-color:"+e+";\\'\x3e\x3c/body\x3e\x3c/html\x3e",d.push('\x3ciframe hidefocus\x3d"true" frameborder\x3d"0" id\x3d"cke_dialog_background_iframe" src\x3d"javascript:'),d.push("void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+ +")();document.write( '"+e+"' );document.close();")+"})())"),d.push('" style\x3d"position:absolute;left:0;top:0;width:100%;height: 100%;filter: progid:DXImageTransform.Microsoft.Alpha(opacity\x3d0)"\x3e\x3c/iframe\x3e')),d.push("\x3c/div\x3e"),f=CKEDITOR.dom.element.createFromHtml(d.join("")),f.setOpacity(void 0!==c?c:.5),f.on("keydown",H),f.on("keypress",H),f.on("keyup",H),f.appendTo(CKEDITOR.document.getBody()),B[b]=f);a.focusManager.add(f);u=f;CKEDITOR.env.mac&&CKEDITOR.env.webkit||f.focus()}function Q(a){CKEDITOR.document.getBody().removeClass("cke_dialog_open"); +u&&(a.focusManager.remove(u),u.hide())}function R(a){var b=a.data.$.ctrlKey||a.data.$.metaKey,c=a.data.$.altKey,e=a.data.$.shiftKey,d=String.fromCharCode(a.data.$.keyCode);(b=x[(b?"CTRL+":"")+(c?"ALT+":"")+(e?"SHIFT+":"")+d])&&b.length&&(b=b[b.length-1],b.keydown&&b.keydown.call(b.uiElement,b.dialog,b.key),a.data.preventDefault())}function S(a){var b=a.data.$.ctrlKey||a.data.$.metaKey,c=a.data.$.altKey,e=a.data.$.shiftKey,d=String.fromCharCode(a.data.$.keyCode);(b=x[(b?"CTRL+":"")+(c?"ALT+":"")+(e? +"SHIFT+":"")+d])&&b.length&&(b=b[b.length-1],b.keyup&&(b.keyup.call(b.uiElement,b.dialog,b.key),a.data.preventDefault()))}function T(a,b,c,e,d){(x[c]||(x[c]=[])).push({uiElement:a,dialog:b,key:c,keyup:d||a.accessKeyUp,keydown:e||a.accessKeyDown})}function ea(a){for(var b in x){for(var c=x[b],e=c.length-1;0<=e;e--)c[e].dialog!=a&&c[e].uiElement!=a||c.splice(e,1);0===c.length&&delete x[b]}}function fa(a,b){a._.accessKeyMap[b]&&a.selectPage(a._.accessKeyMap[b])}function ga(){}var y=CKEDITOR.tools.cssLength, +U,u,V=!1,D=!CKEDITOR.env.ie||CKEDITOR.env.edge,aa='\x3cdiv class\x3d"cke_reset_all cke_dialog_container {editorId} {editorDialogClass} {hidpi}" dir\x3d"{langDir}" style\x3d"'+(D?"display:flex":"")+'" lang\x3d"{langCode}" role\x3d"dialog" aria-labelledby\x3d"cke_dialog_title_{id}"\x3e\x3ctable class\x3d"cke_dialog '+CKEDITOR.env.cssClass+' cke_{langDir}" style\x3d"'+(D?"margin:auto":"position:absolute")+'" role\x3d"presentation"\x3e\x3ctr\x3e\x3ctd role\x3d"presentation"\x3e\x3cdiv class\x3d"cke_dialog_body" role\x3d"presentation"\x3e\x3cdiv id\x3d"cke_dialog_title_{id}" class\x3d"cke_dialog_title" role\x3d"presentation"\x3e\x3c/div\x3e\x3ca id\x3d"cke_dialog_close_button_{id}" class\x3d"cke_dialog_close_button" href\x3d"javascript:void(0)" title\x3d"{closeTitle}" role\x3d"button"\x3e\x3cspan class\x3d"cke_label"\x3eX\x3c/span\x3e\x3c/a\x3e\x3cdiv id\x3d"cke_dialog_tabs_{id}" class\x3d"cke_dialog_tabs" role\x3d"tablist"\x3e\x3c/div\x3e\x3ctable class\x3d"cke_dialog_contents" role\x3d"presentation"\x3e\x3ctr\x3e\x3ctd id\x3d"cke_dialog_contents_{id}" class\x3d"cke_dialog_contents_body" role\x3d"presentation"\x3e\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd id\x3d"cke_dialog_footer_{id}" class\x3d"cke_dialog_footer" role\x3d"presentation"\x3e\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3c/div\x3e\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3c/div\x3e'; +CKEDITOR.dialog=function(a,b){function c(){var a=m._.focusList;a.sort(function(a,b){return a.tabIndex!=b.tabIndex?b.tabIndex-a.tabIndex:a.focusIndex-b.focusIndex});for(var b=a.length,c=0;cb.length)){var c=m._.currentFocusIndex;m._.tabBarMode&&0>a&&(c=0);try{b[c].getInputElement().$.blur()}catch(d){}var e=c,f=1arguments.length)){var k=(e.call?e(b):e)||"div",p=["\x3c",k," "],l=(d&&d.call?d(b):d)||{},h=(f&&f.call?f(b):f)||{},q=(g&&g.call?g.call(this,a,b):g)||"",n=this.domId=h.id||CKEDITOR.tools.getNextId()+"_uiElement";b.requiredContent&&!a.getParentEditor().filter.check(b.requiredContent)&&(l.display="none",this.notAllowed= +!0);h.id=n;var r={};b.type&&(r["cke_dialog_ui_"+b.type]=1);b.className&&(r[b.className]=1);b.disabled&&(r.cke_disabled=1);for(var m=h["class"]&&h["class"].split?h["class"].split(" "):[],n=0;nCKEDITOR.env.version?"cke_dialog_ui_focused":"";b.on("focus", +function(){a._.tabBarMode=!1;a._.hasFocus=!0;t.fire("focus");c&&this.addClass(c)});b.on("blur",function(){t.fire("blur");c&&this.removeClass(c)})}});CKEDITOR.tools.extend(this,b);this.keyboardFocusable&&(this.tabIndex=b.tabIndex||0,this.focusIndex=a._.focusList.push(this)-1,this.on("focus",function(){a._.currentFocusIndex=t.focusIndex}))}},hbox:function(a,b,c,e,d){if(!(4>arguments.length)){this._||(this._={});var f=this._.children=b,g=d&&d.widths||null,k=d&&d.height||null,p,l={role:"presentation"}; +d&&d.align&&(l.align=d.align);CKEDITOR.ui.dialog.uiElement.call(this,a,d||{type:"hbox"},e,"table",{},l,function(){var a=['\x3ctbody\x3e\x3ctr class\x3d"cke_dialog_ui_hbox"\x3e'];for(p=0;parguments.length)){this._||(this._={});var f=this._.children=b,g=d&&d.width||null,k=d&&d.heights||null;CKEDITOR.ui.dialog.uiElement.call(this,a,d||{type:"vbox"},e,"div",null,{role:"presentation"},function(){var b= +['\x3ctable role\x3d"presentation" cellspacing\x3d"0" border\x3d"0" '];b.push('style\x3d"');d&&d.expand&&b.push("height:100%;");b.push("width:"+y(g||"100%"),";");CKEDITOR.env.webkit&&b.push("float:none;");b.push('"');b.push('align\x3d"',CKEDITOR.tools.htmlEncode(d&&d.align||("ltr"==a.getParentEditor().lang.dir?"left":"right")),'" ');b.push("\x3e\x3ctbody\x3e");for(var e=0;earguments.length)return this._.children.concat();a.splice||(a=[a]);return 2>a.length?this._.children[a[0]]:this._.children[a[0]]&&this._.children[a[0]].getChild?this._.children[a[0]].getChild(a.slice(1,a.length)):null}},!0);CKEDITOR.ui.dialog.vbox.prototype=new CKEDITOR.ui.dialog.hbox;(function(){var a={build:function(a, +c,e){for(var d=c.children,f,g=[],k=[],p=0;pe.length&&(a=g.document.createElement(g.config.enterMode==CKEDITOR.ENTER_P?"p":"div"),b=h.shift(),c.insertNode(a),a.append(new CKEDITOR.dom.text("",g.document)),c.moveToBookmark(b),c.selectNodeContents(a),c.collapse(!0),b=c.createBookmark(),e.push(a),h.unshift(b));d=e[0].getParent();c=[];for(b=0;ba||(this.notifications.splice(a,1),b.element.remove(),this.element.getChildCount()||(this._removeListeners(),this.element.remove()))},_createElement:function(){var b=this.editor,a=b.config,c=new CKEDITOR.dom.element("div");c.addClass("cke_notifications_area");c.setAttribute("id","cke_notifications_area_"+b.name);c.setStyle("z-index",a.baseFloatZIndex-2);return c},_attachListeners:function(){var b=CKEDITOR.document.getWindow(),a=this.editor;b.on("scroll",this._uiBuffer.input);b.on("resize",this._uiBuffer.input); +a.on("change",this._changeBuffer.input);a.on("floatingSpaceLayout",this._layout,this,null,20);a.on("blur",this._layout,this,null,20)},_removeListeners:function(){var b=CKEDITOR.document.getWindow(),a=this.editor;b.removeListener("scroll",this._uiBuffer.input);b.removeListener("resize",this._uiBuffer.input);a.removeListener("change",this._changeBuffer.input);a.removeListener("floatingSpaceLayout",this._layout);a.removeListener("blur",this._layout)},_layout:function(){function b(){a.setStyle("left", +k(n+d.width-g-h))}var a=this.element,c=this.editor,d=c.ui.contentsElement.getClientRect(),e=c.ui.contentsElement.getDocumentPosition(),f,l,u=a.getClientRect(),m,g=this._notificationWidth,h=this._notificationMargin;m=CKEDITOR.document.getWindow();var p=m.getScrollPosition(),t=m.getViewPaneSize(),q=CKEDITOR.document.getBody(),r=q.getDocumentPosition(),k=CKEDITOR.tools.cssLength;g&&h||(m=this.element.getChild(0),g=this._notificationWidth=m.getClientRect().width,h=this._notificationMargin=parseInt(m.getComputedStyle("margin-left"), +10)+parseInt(m.getComputedStyle("margin-right"),10));c.toolbar&&(f=c.ui.space(c.config.toolbarLocation),l=f.getClientRect());f&&f.isVisible()&&l.bottom>d.top&&l.bottomp.y?a.setStyles({position:"fixed",top:0}):a.setStyles({position:"absolute",top:k(e.y+d.height-u.height)});var n="fixed"==a.getStyle("position")?d.left:"static"!=q.getComputedStyle("position")? +e.x-r.x:e.x;d.widthp.x+t.width?b():a.setStyle("left",k(n)):e.x+g+h>p.x+t.width?a.setStyle("left",k(n)):e.x+d.width/2+g/2+h>p.x+t.width?a.setStyle("left",k(n-e.x+p.x+t.width-g-h)):0>d.left+d.width-g-h?b():0>d.left+d.width/2-g/2?a.setStyle("left",k(n-e.x+p.x)):a.setStyle("left",k(n+d.width/2-g/2-h/2))}};CKEDITOR.plugins.notification=q})();(function(){var c='\x3ca id\x3d"{id}" class\x3d"cke_button cke_button__{name} cke_button_{state} {cls}"'+(CKEDITOR.env.gecko&&!CKEDITOR.env.hc?"":" href\x3d\"javascript:void('{titleJs}')\"")+' title\x3d"{title}" tabindex\x3d"-1" hidefocus\x3d"true" role\x3d"button" aria-labelledby\x3d"{id}_label" aria-describedby\x3d"{id}_description" aria-haspopup\x3d"{hasArrow}" aria-disabled\x3d"{ariaDisabled}"{toggleAriaHtml}';CKEDITOR.env.gecko&&CKEDITOR.env.mac&&(c+=' onkeypress\x3d"return false;"');CKEDITOR.env.gecko&& +(c+=' onblur\x3d"this.style.cssText \x3d this.style.cssText;"');var l="";CKEDITOR.env.ie&&(l='return false;" onmouseup\x3d"CKEDITOR.tools.getMouseButton(event)\x3d\x3dCKEDITOR.MOUSE_BUTTON_LEFT\x26\x26');var c=c+(' onkeydown\x3d"return CKEDITOR.tools.callFunction({keydownFn},event);" onfocus\x3d"return CKEDITOR.tools.callFunction({focusFn},event);" onclick\x3d"'+l+'CKEDITOR.tools.callFunction({clickFn},this);return false;"\x3e\x3cspan class\x3d"cke_button_icon cke_button__{iconName}_icon" style\x3d"{style}"')+ +'\x3e\x26nbsp;\x3c/span\x3e\x3cspan id\x3d"{id}_label" class\x3d"cke_button_label cke_button__{name}_label" aria-hidden\x3d"false"\x3e{label}\x3c/span\x3e\x3cspan id\x3d"{id}_description" class\x3d"cke_button_label" aria-hidden\x3d"false"\x3e{ariaShortcutSpace}{ariaShortcut}\x3c/span\x3e{arrowHtml}\x3c/a\x3e',v=CKEDITOR.addTemplate("buttonArrow",'\x3cspan class\x3d"cke_button_arrow"\x3e'+(CKEDITOR.env.hc?"\x26#9660;":"")+"\x3c/span\x3e"),w=CKEDITOR.addTemplate("button",c);CKEDITOR.plugins.add("button", +{beforeInit:function(a){a.ui.addHandler(CKEDITOR.UI_BUTTON,CKEDITOR.ui.button.handler)}});CKEDITOR.UI_BUTTON="button";CKEDITOR.ui.button=function(a){CKEDITOR.tools.extend(this,a,{isToggle:a.isToggle||!1,title:a.label,click:a.click||function(b){b.execCommand(a.command)}});this._={}};CKEDITOR.ui.button.handler={create:function(a){return new CKEDITOR.ui.button(a)}};CKEDITOR.ui.button.prototype={render:function(a,b){function c(){var f=a.mode;f&&(f=this.modes[f]?void 0!==p[f]?p[f]:CKEDITOR.TRISTATE_OFF: +CKEDITOR.TRISTATE_DISABLED,f=a.readOnly&&!this.readOnly?CKEDITOR.TRISTATE_DISABLED:f,this.setState(f),this.refresh&&this.refresh())}var p=null,q=CKEDITOR.env,r=this._.id=CKEDITOR.tools.getNextId(),g="",d=this.command,l,m,k;this._.editor=a;var e={id:r,button:this,editor:a,focus:function(){CKEDITOR.document.getById(r).focus()},execute:function(){this.button.click(a)},attach:function(a){this.button.attach(a)}},x=CKEDITOR.tools.addFunction(function(a){if(e.onkey)return a=new CKEDITOR.dom.event(a),!1!== +e.onkey(e,a.getKeystroke())}),y=CKEDITOR.tools.addFunction(function(a){var b;e.onfocus&&(b=!1!==e.onfocus(e,new CKEDITOR.dom.event(a)));return b}),u=0;e.clickFn=l=CKEDITOR.tools.addFunction(function(){u&&(a.unlockSelection(1),u=0);e.execute();q.iOS&&a.focus()});this.modes?(p={},a.on("beforeModeUnload",function(){a.mode&&this._.state!=CKEDITOR.TRISTATE_DISABLED&&(p[a.mode]=this._.state)},this),a.on("activeFilterChange",c,this),a.on("mode",c,this),!this.readOnly&&a.on("readOnly",c,this)):d&&(d=a.getCommand(d))&& +(d.on("state",function(){this.setState(d.state)},this),g+=d.state==CKEDITOR.TRISTATE_ON?"on":d.state==CKEDITOR.TRISTATE_DISABLED?"disabled":"off");var n;if(this.directional)a.on("contentDirChanged",function(b){var c=CKEDITOR.document.getById(this._.id),d=c.getFirst();b=b.data;b!=a.lang.dir?c.addClass("cke_"+b):c.removeClass("cke_ltr").removeClass("cke_rtl");d.setAttribute("style",CKEDITOR.skin.getIconStyle(n,"rtl"==b,this.icon,this.iconOffset))},this);d?(m=a.getCommandKeystroke(d))&&(k=CKEDITOR.tools.keystrokeToString(a.lang.common.keyboard, +m)):g+="off";m=this.name||this.command;var h=null,t=this.icon;n=m;this.icon&&!/\./.test(this.icon)?(n=this.icon,t=null):(this.icon&&(h=this.icon),CKEDITOR.env.hidpi&&this.iconHiDpi&&(h=this.iconHiDpi));h?(CKEDITOR.skin.addIcon(h,h),t=null):h=n;g={id:r,name:m,iconName:n,label:this.label,cls:(this.hasArrow?"cke_button_expandable ":"")+(this.className||""),state:g,ariaDisabled:"disabled"==g?"true":"false",title:this.title+(k?" ("+k.display+")":""),ariaShortcutSpace:k?"\x26nbsp;":"",ariaShortcut:k?a.lang.common.keyboardShortcut+ +" "+k.aria:"",titleJs:q.gecko&&!q.hc?"":(this.title||"").replace("'",""),hasArrow:"string"===typeof this.hasArrow&&this.hasArrow||(this.hasArrow?"true":"false"),keydownFn:x,focusFn:y,clickFn:l,style:CKEDITOR.skin.getIconStyle(h,"rtl"==a.lang.dir,t,this.iconOffset),arrowHtml:this.hasArrow?v.output():"",toggleAriaHtml:this.isToggle?'aria-pressed\x3d"false"':""};w.output(g,b);if(this.onRender)this.onRender();return e},setState:function(a){if(this._.state==a)return!1;this._.state=a;var b=CKEDITOR.document.getById(this._.id); +return b?(b.setState(a,"cke_button"),b.setAttribute("aria-disabled",a==CKEDITOR.TRISTATE_DISABLED),this.isToggle&&!this.hasArrow?b.setAttribute("aria-pressed",a===CKEDITOR.TRISTATE_ON):this.hasArrow&&b.setAttribute("aria-expanded",a==CKEDITOR.TRISTATE_ON),!0):!1},getState:function(){return this._.state},toFeature:function(a){if(this._.feature)return this._.feature;var b=this;this.allowedContent||this.requiredContent||!this.command||(b=a.getCommand(this.command)||b);return this._.feature=b}};CKEDITOR.ui.prototype.addButton= +function(a,b){this.add(a,CKEDITOR.UI_BUTTON,b)}})();(function(){function D(a){function d(){for(var b=f(),e=CKEDITOR.tools.clone(a.config.toolbarGroups)||v(a),n=0;na.order?-1:0>b.order?1:b.order]+data-cke-bookmark[^<]*?<\/span>/ig, +"");h&&t(a,c)})}function p(){if("wysiwyg"==a.mode){var b=k("paste");a.getCommand("cut").setState(k("cut"));a.getCommand("copy").setState(k("copy"));a.getCommand("paste").setState(b);a.fire("pasteState",b)}}function k(b){var c=a.getSelection(),c=c&&c.getRanges()[0];if((a.readOnly||c&&c.checkReadOnly())&&b in{paste:1,cut:1})return CKEDITOR.TRISTATE_DISABLED;if("paste"==b)return CKEDITOR.TRISTATE_OFF;b=a.getSelection();c=b.getRanges();return b.getType()==CKEDITOR.SELECTION_NONE||1==c.length&&c[0].collapsed? +CKEDITOR.TRISTATE_DISABLED:CKEDITOR.TRISTATE_OFF}var n=CKEDITOR.plugins.clipboard,u=0,w=0;(function(){a.on("key",h);a.on("contentDom",b);a.on("selectionChange",p);if(a.contextMenu){a.contextMenu.addListener(function(){return{cut:k("cut"),copy:k("copy"),paste:k("paste")}});var c=null;a.on("menuShow",function(){c&&(c.removeListener(),c=null);var b=a.contextMenu.findItemByCommandName("paste");b&&b.element&&(c=b.element.on("touchend",function(){a._.forcePasteDialog=!0}))})}if(a.ui.addButton)a.once("instanceReady", +function(){a._.pasteButtons&&CKEDITOR.tools.array.forEach(a._.pasteButtons,function(b){if(b=a.ui.get(b))if(b=CKEDITOR.document.getById(b._.id))b.on("touchend",function(){a._.forcePasteDialog=!0})})})})();(function(){function b(c,h,d,m,e){var p=a.lang.clipboard[h];a.addCommand(h,d);a.ui.addButton&&a.ui.addButton(c,{label:p,command:h,toolbar:"clipboard,"+m});a.addMenuItems&&a.addMenuItem(h,{label:p,command:h,group:"clipboard",order:e})}b("Cut","cut",c("cut"),10,1);b("Copy","copy",c("copy"),20,4);b("Paste", +"paste",d(),30,8);a._.pasteButtons||(a._.pasteButtons=[]);a._.pasteButtons.push("Paste")})();a.getClipboardData=function(b,c){function h(a){a.removeListener();a.cancel();c(a.data)}function d(a){a.removeListener();a.cancel();c({type:e,dataValue:a.data.dataValue,dataTransfer:a.data.dataTransfer,method:"paste"})}var m=!1,e="auto";c||(c=b,b=null);a.on("beforePaste",function(a){a.removeListener();m=!0;e=a.data.type},null,null,1E3);a.on("paste",h,null,null,0);!1===v()&&(a.removeListener("paste",h),a._.forcePasteDialog&& +m&&a.fire("pasteDialog")?(a.on("pasteDialogCommit",d),a.on("dialogHide",function(a){a.removeListener();a.data.removeListener("pasteDialogCommit",d);a.data._.committed||c(null)})):c(null))}}function z(a){if(CKEDITOR.env.webkit){if(!a.match(/^[^<]*$/g)&&!a.match(/^(
<\/div>|
[^<]*<\/div>)*$/gi))return"html"}else if(CKEDITOR.env.ie){if(!a.match(/^([^<]|)*$/gi)&&!a.match(/^(

([^<]|)*<\/p>|(\r\n))*$/gi))return"html"}else if(CKEDITOR.env.gecko){if(!a.match(/^([^<]|)*$/gi))return"html"}else return"html"; +return"htmlifiedtext"}function A(a,b){function c(a){return CKEDITOR.tools.repeat("\x3c/p\x3e\x3cp\x3e",~~(a/2))+(1==a%2?"\x3cbr\x3e":"")}b=b.replace(/(?!\u3000)\s+/g," ").replace(/> +/gi,"\x3cbr\x3e");b=b.replace(/<\/?[A-Z]+>/g,function(a){return a.toLowerCase()});if(b.match(/^[^<]$/))return b;CKEDITOR.env.webkit&&-1(
|)<\/div>)(?!$|(

(
|)<\/div>))/g,"\x3cbr\x3e").replace(/^(
(
|)<\/div>){2}(?!$)/g,"\x3cdiv\x3e\x3c/div\x3e"), +b.match(/
(
|)<\/div>/)&&(b="\x3cp\x3e"+b.replace(/(
(
|)<\/div>)+/g,function(a){return c(a.split("\x3c/div\x3e\x3cdiv\x3e").length+1)})+"\x3c/p\x3e"),b=b.replace(/<\/div>
/g,"\x3cbr\x3e"),b=b.replace(/<\/?div>/g,""));CKEDITOR.env.gecko&&a.enterMode!=CKEDITOR.ENTER_BR&&(CKEDITOR.env.gecko&&(b=b.replace(/^

$/,"\x3cbr\x3e")),-1){2,}/g,function(a){return c(a.length/4)})+"\x3c/p\x3e"));return B(a,b)}function C(a){function b(){var a= +{},b;for(b in CKEDITOR.dtd)"$"!=b.charAt(0)&&"div"!=b&&"span"!=b&&(a[b]=1);return a}var c={};return{get:function(d){return"plain-text"==d?c.plainText||(c.plainText=new CKEDITOR.filter(a,"br")):"semantic-content"==d?((d=c.semanticContent)||(d=new CKEDITOR.filter(a,{}),d.allow({$1:{elements:b(),attributes:!0,styles:!1,classes:!1}}),d=c.semanticContent=d),d):d?new CKEDITOR.filter(a,d):null}}}function x(a,b,c){b=CKEDITOR.htmlParser.fragment.fromHtml(b);var d=new CKEDITOR.htmlParser.basicWriter;c.applyTo(b, +!0,!1,a.activeEnterMode);b.writeHtml(d);return d.getHtml()}function B(a,b){a.enterMode==CKEDITOR.ENTER_BR?b=b.replace(/(<\/p>

)+/g,function(a){return CKEDITOR.tools.repeat("\x3cbr\x3e",a.length/7*2)}).replace(/<\/?p>/g,""):a.enterMode==CKEDITOR.ENTER_DIV&&(b=b.replace(/<(\/)?p>/g,"\x3c$1div\x3e"));return b}function D(a){a.data.preventDefault();a.data.$.dataTransfer.dropEffect="none"}function E(a){var b=CKEDITOR.plugins.clipboard;a.on("contentDom",function(){function c(b,c,d){c.select();t(a,{dataTransfer:d, +method:"drop"},1);d.sourceEditor.fire("saveSnapshot");d.sourceEditor.editable().extractHtmlFromRange(b);d.sourceEditor.getSelection().selectRanges([b]);d.sourceEditor.fire("saveSnapshot")}function d(c,d){c.select();t(a,{dataTransfer:d,method:"drop"},1);b.resetDragDataTransfer()}function g(b,c,d){var e={$:b.data.$,target:b.data.getTarget()};c&&(e.dragRange=c);d&&(e.dropRange=d);!1===a.fire(b.name,e)&&b.data.preventDefault()}function f(a){a.type!=CKEDITOR.NODE_ELEMENT&&(a=a.getParent());return a.getChildCount()} +var e=a.editable(),l=CKEDITOR.plugins.clipboard.getDropTarget(a),q=a.ui.space("top"),v=a.ui.space("bottom");b.preventDefaultDropOnElement(q);b.preventDefaultDropOnElement(v);e.attachListener(l,"dragstart",g);e.attachListener(a,"dragstart",b.resetDragDataTransfer,b,null,1);e.attachListener(a,"dragstart",function(c){b.initDragDataTransfer(c,a)},null,null,2);e.attachListener(a,"dragstart",function(){var c=b.dragRange=a.getSelection().getRanges()[0];CKEDITOR.env.ie&&10>CKEDITOR.env.version&&(b.dragStartContainerChildCount= +c?f(c.startContainer):null,b.dragEndContainerChildCount=c?f(c.endContainer):null)},null,null,100);e.attachListener(l,"dragend",g);e.attachListener(a,"dragend",b.initDragDataTransfer,b,null,1);e.attachListener(a,"dragend",b.resetDragDataTransfer,b,null,100);e.attachListener(l,"dragover",function(a){if(CKEDITOR.env.edge)a.data.preventDefault();else{var b=a.data.getTarget();b&&b.is&&b.is("html")?a.data.preventDefault():CKEDITOR.env.ie&&CKEDITOR.plugins.clipboard.isFileApiSupported&&a.data.$.dataTransfer.types.contains("Files")&& +a.data.preventDefault()}});e.attachListener(l,"drop",function(c){if(!c.data.$.defaultPrevented&&(c.data.preventDefault(),!a.readOnly)){var d=c.data.getTarget();if(!d.isReadOnly()||d.type==CKEDITOR.NODE_ELEMENT&&d.is("html")){var d=b.getRangeAtDropPosition(c,a),e=b.dragRange;d&&g(c,e,d)}}},null,null,9999);e.attachListener(a,"drop",b.initDragDataTransfer,b,null,1);e.attachListener(a,"drop",function(h){if(h=h.data){var e=h.dropRange,p=h.dragRange,k=h.dataTransfer;k.getTransferType(a)==CKEDITOR.DATA_TRANSFER_INTERNAL? +setTimeout(function(){b.internalDrop(p,e,k,a)},0):k.getTransferType(a)==CKEDITOR.DATA_TRANSFER_CROSS_EDITORS?c(p,e,k):d(e,k)}},null,null,9999)})}var r;CKEDITOR.plugins.add("clipboard",{requires:"dialog,notification,toolbar",_supportedFileMatchers:[],init:function(a){function b(a){return-1!==CKEDITOR.tools.indexOf(["image/png","image/jpeg","image/gif"],a.type)}function c(b){return CKEDITOR.tools.array.some(a.plugins.clipboard._supportedFileMatchers,function(a){return a(b)})}function d(b){b.length&& +(b=CKEDITOR.tools.array.unique(b),b=CKEDITOR.tools.array.filter(b,function(a){return!!CKEDITOR.tools.trim(a)}),b=g(b.join(", ")),a.showNotification(b,"info",a.config.clipboard_notificationDuration))}function g(b){return b?a.lang.clipboard.fileFormatNotSupportedNotification.replace(/\${formats\}/g,"\x3cem\x3e"+b+"\x3c/em\x3e"):a.lang.clipboard.fileWithoutFormatNotSupportedNotification}function f(a,b){return CKEDITOR.env.ie&&a.data.fileTransferCancel||!(CKEDITOR.env.ie||b&&v!==b.id)?!1:b.isFileTransfer()&& +1===b.getFilesCount()}var e,l=C(a);a.config.forcePasteAsPlainText?e="plain-text":a.config.pasteFilter?e=a.config.pasteFilter:!CKEDITOR.env.webkit||"pasteFilter"in a.config||(e="semantic-content");a.pasteFilter=l.get(e);y(a);E(a);CKEDITOR.dialog.add("paste",CKEDITOR.getUrl(this.path+"dialogs/paste.js"));var q=CKEDITOR.plugins.clipboard.isCustomDataTypesSupported||CKEDITOR.plugins.clipboard.isFileApiSupported,v;CKEDITOR.plugins.clipboard.addFileMatcher(a,b);a.on("paste",function(a){if(q){var b=a.data; +a=b.dataTransfer;if(!b.dataValue){for(var b=[],e=0;e <\/span>/gi," "),"html"!=a.data.type&&(b=b.replace(/]*>([^<]*)<\/span>/gi,function(a,b){return b.replace(/\t/g,"\x26nbsp;\x26nbsp; \x26nbsp;")})),-1/, +"")),b=b.replace(/(<[^>]+) class="Apple-[^"]*"/gi,"$1"));if(b.match(/^<[^<]+cke_(editable|contents)/i)){var d,e,f=new CKEDITOR.dom.element("div");for(f.setHtml(b);1==f.getChildCount()&&(d=f.getFirst())&&d.type==CKEDITOR.NODE_ELEMENT&&(d.hasClass("cke_editable")||d.hasClass("cke_contents"));)f=e=d;e&&(b=e.getHtml().replace(/
$/i,""))}CKEDITOR.env.ie?b=b.replace(/^ (?: |\r\n)?<(\w+)/g,function(b,d){return d.toLowerCase()in c?(a.data.preSniffing="html","\x3c"+d):b}):CKEDITOR.env.webkit?b=b.replace(/<\/(\w+)>


<\/div>$/, +function(b,d){return d in c?(a.data.endsWithEOL=1,"\x3c/"+d+"\x3e"):b}):CKEDITOR.env.gecko&&(b=b.replace(/(\s)
$/,"$1"));a.data.dataValue=b},null,null,3);a.on("paste",function(b){b=b.data;var c=a._.nextPasteType||b.type,d=b.dataValue,e,f=a.config.clipboard_defaultContentType||"html",g=b.dataTransfer.getTransferType(a)==CKEDITOR.DATA_TRANSFER_EXTERNAL,q=!0===a.config.forcePasteAsPlainText;e="html"==c||"html"==b.preSniffing?"html":z(d);delete a._.nextPasteType;"htmlifiedtext"==e&&(d=A(a.config,d)); +if("text"==c&&"html"==e)d=x(a,d,l.get("plain-text"));else if(g&&a.pasteFilter&&!b.dontFilter||q)d=x(a,d,a.pasteFilter);b.startsWithEOL&&(d='\x3cbr data-cke-eol\x3d"1"\x3e'+d);b.endsWithEOL&&(d+='\x3cbr data-cke-eol\x3d"1"\x3e');"auto"==c&&(c="html"==e||"html"==f?"html":"text");b.type=c;b.dataValue=d;delete b.preSniffing;delete b.startsWithEOL;delete b.endsWithEOL},null,null,6);a.on("paste",function(b){b=b.data;b.dataValue&&(a.insertHtml(b.dataValue,b.type,b.range),setTimeout(function(){a.fire("afterPaste")}, +0))},null,null,1E3);a.on("pasteDialog",function(b){setTimeout(function(){a.openDialog("paste",b.data)},0)})}});CKEDITOR.plugins.clipboard={addFileMatcher:function(a,b){a.plugins.clipboard._supportedFileMatchers.push(b)},isCustomCopyCutSupported:CKEDITOR.env.ie&&16>CKEDITOR.env.version||CKEDITOR.env.iOS&&605>CKEDITOR.env.version?!1:!0,isCustomDataTypesSupported:!CKEDITOR.env.ie||16<=CKEDITOR.env.version,isFileApiSupported:!CKEDITOR.env.ie||9CKEDITOR.env.version||b.isInline()?b:a.document},fixSplitNodesAfterDrop:function(a,b,c,d){function g(a,c,d){var f=a;f.type==CKEDITOR.NODE_TEXT&&(f=a.getParent());if(f.equals(c)&&d!=c.getChildCount())return a=b.startContainer.getChild(b.startOffset-1),c=b.startContainer.getChild(b.startOffset),a&&a.type==CKEDITOR.NODE_TEXT&&c&&c.type==CKEDITOR.NODE_TEXT&&(d=a.getLength(),a.setText(a.getText()+c.getText()),c.remove(),b.setStart(a, +d),b.collapse(!0)),!0}var f=b.startContainer;"number"==typeof d&&"number"==typeof c&&f.type==CKEDITOR.NODE_ELEMENT&&(g(a.startContainer,f,c)||g(a.endContainer,f,d))},isDropRangeAffectedByDragRange:function(a,b){var c=b.startContainer,d=b.endOffset;return a.endContainer.equals(c)&&a.endOffset<=d||a.startContainer.getParent().equals(c)&&a.startContainer.getIndex()CKEDITOR.env.version&&this.fixSplitNodesAfterDrop(a,b,g.dragStartContainerChildCount,g.dragEndContainerChildCount);(l=this.isDropRangeAffectedByDragRange(a,b))||(e=a.createBookmark(!1));g=b.clone().createBookmark(!1);l&&(e=a.createBookmark(!1));a=e.startNode;b=e.endNode;l=g.startNode;b&&a.getPosition(l)&CKEDITOR.POSITION_PRECEDING&&b.getPosition(l)&CKEDITOR.POSITION_FOLLOWING&&l.insertBefore(a);a=d.createRange(); +a.moveToBookmark(e);f.extractHtmlFromRange(a,1);b=d.createRange();g.startNode.getCommonAncestor(f)||(g=d.getSelection().createBookmarks()[0]);b.moveToBookmark(g);t(d,{dataTransfer:c,method:"drop",range:b},1);d.fire("unlockSnapshot")},getRangeAtDropPosition:function(a,b){var c=a.data.$,d=c.clientX,g=c.clientY,f=b.getSelection(!0).getRanges()[0],e=b.createRange();if(a.data.testRange)return a.data.testRange;if(document.caretRangeFromPoint&&b.document.$.caretRangeFromPoint(d,g))c=b.document.$.caretRangeFromPoint(d, +g),e.setStart(CKEDITOR.dom.node(c.startContainer),c.startOffset),e.collapse(!0);else if(c.rangeParent)e.setStart(CKEDITOR.dom.node(c.rangeParent),c.rangeOffset),e.collapse(!0);else{if(CKEDITOR.env.ie&&8q&&!l;q++){if(!l)try{c.moveToPoint(d,g-q),l=!0}catch(r){}if(!l)try{c.moveToPoint(d,g+q),l=!0}catch(h){}}if(l){var m="cke-temp-"+(new Date).getTime(); +c.pasteHTML('\x3cspan id\x3d"'+m+'"\x3e​\x3c/span\x3e');var p=b.document.getById(m);e.moveToPosition(p,CKEDITOR.POSITION_BEFORE_START);p.remove()}else{var k=b.document.$.elementFromPoint(d,g),n=new CKEDITOR.dom.element(k),u;if(n.equals(b.editable())||"html"==n.getName())return f&&f.startContainer&&!f.startContainer.equals(b.editable())?f:null;u=n.getClientRect();d/i,fragmentRegExp:/\s*\x3c!--StartFragment--\x3e|\x3c!--EndFragment--\x3e\s*/g, +types:[],data:{},files:[],nativeHtmlCache:"",normalizeType:function(a){a=a.toLowerCase();return"text"==a||"text/plain"==a?"Text":"url"==a?"URL":"files"===a?"Files":a}};this._.fallbackDataTransfer=new CKEDITOR.plugins.clipboard.fallbackDataTransfer(this);this.id=this.getData(r);this.id||(this.id="Text"==r?"":"cke-"+CKEDITOR.tools.getUniqueId());b&&(this.sourceEditor=b,this.setData("text/html",b.getSelectedHtml(1)),"Text"==r||this.getData("text/plain")||this.setData("text/plain",b.getSelection().getSelectedText()))}; +CKEDITOR.DATA_TRANSFER_INTERNAL=1;CKEDITOR.DATA_TRANSFER_CROSS_EDITORS=2;CKEDITOR.DATA_TRANSFER_EXTERNAL=3;CKEDITOR.plugins.clipboard.dataTransfer.prototype={getData:function(a,b){a=this._.normalizeType(a);var c="text/html"==a&&b?this._.nativeHtmlCache:this._.data[a];if(void 0===c||null===c||""===c){if(this._.fallbackDataTransfer.isRequired())c=this._.fallbackDataTransfer.getData(a,b);else try{c=this.$.getData(a)||""}catch(d){c=""}"text/html"!=a||b||(c=this._stripHtml(c))}"Text"==a&&CKEDITOR.env.gecko&& +this.getFilesCount()&&"file://"==c.substring(0,7)&&(c="");if("string"===typeof c)var g=c.indexOf("\x3c/html\x3e"),c=-1!==g?c.substring(0,g+7):c;return c},setData:function(a,b){a=this._.normalizeType(a);"text/html"==a?(this._.data[a]=this._stripHtml(b),this._.nativeHtmlCache=b):this._.data[a]=b;if(CKEDITOR.plugins.clipboard.isCustomDataTypesSupported||"URL"==a||"Text"==a)if("Text"==r&&"Text"==a&&(this.id=b),this._.fallbackDataTransfer.isRequired())this._.fallbackDataTransfer.setData(a,b);else try{this.$.setData(a, +b)}catch(c){}},storeId:function(){"Text"!==r&&this.setData(r,this.id)},getTransferType:function(a){return this.sourceEditor?this.sourceEditor==a?CKEDITOR.DATA_TRANSFER_INTERNAL:CKEDITOR.DATA_TRANSFER_CROSS_EDITORS:CKEDITOR.DATA_TRANSFER_EXTERNAL},cacheData:function(){function a(a){a=b._.normalizeType(a);var c=b.getData(a);"text/html"==a&&(b._.nativeHtmlCache=b.getData(a,!0),c=b._stripHtml(c));c&&(b._.data[a]=c);b._.types.push(a)}if(this.$){var b=this,c,d,g;if(CKEDITOR.plugins.clipboard.isCustomDataTypesSupported){if(this.$.types)for(c= +0;c$/gi,"")}a&&a.length&&(a=b(a),a=a.replace(this._.metaRegExp,""),a=a.replace(this._.fragmentRegExp,""));return a}};CKEDITOR.plugins.clipboard.fallbackDataTransfer=function(a){this._dataTransfer=a;this._customDataFallbackType="text/html"};CKEDITOR.plugins.clipboard.fallbackDataTransfer._isCustomMimeTypeSupported= +null;CKEDITOR.plugins.clipboard.fallbackDataTransfer._customTypes=[];CKEDITOR.plugins.clipboard.fallbackDataTransfer.prototype={isRequired:function(){var a=CKEDITOR.plugins.clipboard.fallbackDataTransfer,b=this._dataTransfer.$;if(null===a._isCustomMimeTypeSupported)if(b){a._isCustomMimeTypeSupported=!1;if(CKEDITOR.env.edge&&17<=CKEDITOR.env.version)return!0;try{b.setData("cke/mimetypetest","cke test value"),a._isCustomMimeTypeSupported="cke test value"===b.getData("cke/mimetypetest"),b.clearData("cke/mimetypetest")}catch(c){}}else return!1; +return!a._isCustomMimeTypeSupported},getData:function(a,b){var c=this._getData(this._customDataFallbackType,!0);if(b)return c;var c=this._extractDataComment(c),d=null,d=a===this._customDataFallbackType?c.content:c.data&&c.data[a]?c.data[a]:this._getData(a,!0);return null!==d?d:""},setData:function(a,b){var c=a===this._customDataFallbackType;c&&(b=this._applyDataComment(b,this._getFallbackTypeData()));var d=b,g=this._dataTransfer.$;try{g.setData(a,d),c&&(this._dataTransfer._.nativeHtmlCache=d)}catch(f){if(this._isUnsupportedMimeTypeError(f)){c= +CKEDITOR.plugins.clipboard.fallbackDataTransfer;-1===CKEDITOR.tools.indexOf(c._customTypes,a)&&c._customTypes.push(a);var c=this._getFallbackTypeContent(),e=this._getFallbackTypeData();e[a]=d;try{d=this._applyDataComment(c,e),g.setData(this._customDataFallbackType,d),this._dataTransfer._.nativeHtmlCache=d}catch(l){d=""}}}return d},_getData:function(a,b){var c=this._dataTransfer._.data;if(!b&&c[a])return c[a];try{return this._dataTransfer.$.getData(a)}catch(d){return null}},_getFallbackTypeContent:function(){var a= +this._dataTransfer._.data[this._customDataFallbackType];a||(a=this._extractDataComment(this._getData(this._customDataFallbackType,!0)).content);return a},_getFallbackTypeData:function(){var a=CKEDITOR.plugins.clipboard.fallbackDataTransfer._customTypes,b=this._extractDataComment(this._getData(this._customDataFallbackType,!0)).data||{},c=this._dataTransfer._.data;CKEDITOR.tools.array.forEach(a,function(a){void 0!==c[a]?b[a]=c[a]:void 0!==b[a]&&(b[a]=b[a])},this);return b},_isUnsupportedMimeTypeError:function(a){return a.message&& +-1!==a.message.search(/element not found/gi)},_extractDataComment:function(a){var b={data:null,content:a||""};if(a&&16c?d+c:b.width>c?d-a.left:d-a.right+b.width):mc?d-c:b.width>c?d-a.right+b.width:d-a.left);c=a.top;b.height-a.tope?p-e:b.height>e?p-a.bottom+b.height:p-a.top);CKEDITOR.env.ie&&!CKEDITOR.env.edge&&((b=a=k.$.offsetParent&&new CKEDITOR.dom.element(k.$.offsetParent))&&"html"==b.getName()&&(b=b.getDocument().getBody()),b&&"rtl"==b.getComputedStyle("direction")&&(d=CKEDITOR.env.ie8Compat?d-2*k.getDocument().getDocumentElement().$.scrollLeft:d-(a.$.scrollWidth-a.$.clientWidth))); +var a=k.getFirst(),f;(f=a.getCustomData("activePanel"))&&f.onHide&&f.onHide.call(this,1);a.setCustomData("activePanel",this);k.setStyles({top:p+"px",left:d+"px"});k.setOpacity(1);g&&g()},this);n.isLoaded?a():n.onLoad=a;CKEDITOR.tools.setTimeout(function(){var a=CKEDITOR.env.webkit&&CKEDITOR.document.getWindow().getScrollPosition().y;this.focus();l.element.focus();CKEDITOR.env.webkit&&(CKEDITOR.document.getBody().$.scrollTop=a);this.allowBlur(!0);this._.markFirst&&(CKEDITOR.env.ie?CKEDITOR.tools.setTimeout(function(){l.markFirstDisplayed? +l.markFirstDisplayed():l._.markFirstDisplayed()},0):l.markFirstDisplayed?l.markFirstDisplayed():l._.markFirstDisplayed());this._.editor.fire("panelShow",this)},0,this)},CKEDITOR.env.air?200:0,this);this.visible=1;this.onShow&&this.onShow.call(this)},reposition:function(){var a=this._.showBlockParams;this.visible&&this._.showBlockParams&&(this.hide(),this.showBlock.apply(this,a))},focus:function(){if(CKEDITOR.env.webkit){var a=CKEDITOR.document.getActive();a&&!a.equals(this._.iframe)&&a.$.blur()}(this._.lastFocused|| +this._.iframe.getFrameDocument().getWindow()).focus()},blur:function(){var a=this._.iframe.getFrameDocument().getActive();a&&a.is("a")&&(this._.lastFocused=a)},hide:function(a){if(this.visible&&(!this.onHide||!0!==this.onHide.call(this))){this.hideChild();CKEDITOR.env.gecko&&this._.iframe.getFrameDocument().$.activeElement.blur();this.element.setStyle("display","none");this.visible=0;this.element.getFirst().removeCustomData("activePanel");if(a=a&&this._.returnFocus)CKEDITOR.env.webkit&&a.type&&a.getWindow().$.focus(), +a.focus();delete this._.lastFocused;this._.showBlockParams=null;this._.editor.fire("panelHide",this)}},allowBlur:function(a){var b=this._.panel;void 0!==a&&(b.allowBlur=a);return b.allowBlur},showAsChild:function(a,b,c,f,h,g){if(this._.activeChild!=a||a._.panel._.offsetParentId!=c.getId())this.hideChild(),a.onHide=CKEDITOR.tools.bind(function(){CKEDITOR.tools.setTimeout(function(){this._.focused||this.hide()},0,this)},this),this._.activeChild=a,this._.focused=!1,a.showBlock(b,c,f,h,g),this.blur(), +(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)&&setTimeout(function(){a.element.getChild(0).$.style.cssText+=""},100)},hideChild:function(a){var b=this._.activeChild;b&&(delete b.onHide,delete this._.activeChild,b.hide(),a&&this.focus())}}});CKEDITOR.on("instanceDestroyed",function(){var a=CKEDITOR.tools.isEmpty(CKEDITOR.instances),b;for(b in f){var c=f[b];a?c.destroy():c.element.hide()}a&&(f={})})})();(function(){var n,k,l;CKEDITOR.plugins.add("colorbutton",{requires:"panelbutton,floatpanel",init:function(a){function b(d){function b(){var d=a.config["colorButton_"+h+"Style"];d.childRule="back"==h?function(a){return f(a)}:function(a){return!(a.is("a")||a.getElementsByTag("a").count())||f(a)};return d}function z(d,w,e){var c={};d&&(c.color=d);w&&(c.colorName=w);w=!CKEDITOR.tools.isEmpty(c)&&new CKEDITOR.style(b(),c);a.execCommand(m,{newStyle:w});if(d&&e)for(e.addColor(d.substr(1).toUpperCase()), +d=t.element.find("[role\x3doption]").toArray(),e=0;eb)return null;this.boxes[b].getElement().remove(); +return this.boxes.splice(b,1)[0]}}});l=CKEDITOR.tools.createClass({$:function(a,b,c){this.editor=a;this.cssProperty=b;this.clickFn=c;this.rows=[];this._.addNewRow();if(this.editor.config.colorButton_renderContentColors)this.editor.once("instanceReady",function(){this.renderContentColors()},this)},statics:{renderContainer:function(a,b){a.push('\x3c/tbody\x3e\x3ctbody class\x3d"cke_colorhistory" style\x3d"display:none;"\x3e',"\x3ctr\x3e",'\x3ctd colspan\x3d"',b.config.colorButton_colorsPerRow,'" align\x3d"center"\x3e', +"\x3cspan\x3e\x3chr\x3e\x3c/span\x3e","\x3c/td\x3e","\x3c/tr\x3e","\x3c/tbody\x3e\x3ctbody\x3e")},getRowLimit:function(a){return a.config.colorButton_historyRowLimit},getCapacity:function(a){return l.getRowLimit(a)*a.config.colorButton_colorsPerRow},colorList:CKEDITOR.tools.style.parse._colors},_:{countColors:function(){var a=CKEDITOR.tools.getStyledSpans(this.cssProperty,this.editor.editable());return CKEDITOR.tools.array.reduce(a,function(a,c){var f=this._.getHexCode(c,this.cssProperty,l.colorList); +a[f]=a[f]||0;a[f]+=1;return a},{},this)},getHexCode:function(a,b,c){var f=a.getStyle(b);return f in c?c[f].substr(1):n.normalizeColor(a.getComputedStyle(b)).toUpperCase()},sortByOccurrencesAscending:function(a,b){var c=[],f;for(f in a){var k={};k[b]=f;k.frequency=a[f];c.push(k)}c.sort(function(a,b){return b.frequency-a.frequency});this._.trimToCapacity(c);return c.reverse()},trimToCapacity:function(a){a.splice(l.getCapacity(this.editor))},addColors:function(a){CKEDITOR.tools.array.forEach(a,function(a){this.addColor(a.colorCode)}, +this)},extractColorBox:function(a){for(var b=0;bf.group?1:a.orderf.order?1:0})}var k='\x3cspan class\x3d"cke_menuitem"\x3e\x3ca id\x3d"{id}" class\x3d"cke_menubutton cke_menubutton__{name} cke_menubutton_{state} {cls}" href\x3d"{href}" title\x3d"{title}" tabindex\x3d"-1" _cke_focus\x3d1 hidefocus\x3d"true" role\x3d"{role}" aria-label\x3d"{attrLabel}" aria-describedby\x3d"{id}_description" aria-haspopup\x3d"{hasPopup}" aria-disabled\x3d"{disabled}" {ariaChecked} draggable\x3d"false"', +n="";CKEDITOR.env.gecko&&CKEDITOR.env.mac&&(k+=' onkeypress\x3d"return false;"');CKEDITOR.env.gecko&&(k+=' onblur\x3d"this.style.cssText \x3d this.style.cssText;" ondragstart\x3d"return false;"');CKEDITOR.env.ie&&(n='return false;" onmouseup\x3d"CKEDITOR.tools.getMouseButton(event)\x3d\x3d\x3dCKEDITOR.MOUSE_BUTTON_LEFT\x26\x26');var k=k+(' onmouseover\x3d"CKEDITOR.tools.callFunction({hoverFn},{index});" onmouseout\x3d"CKEDITOR.tools.callFunction({moveOutFn},{index});" onclick\x3d"'+n+'CKEDITOR.tools.callFunction({clickFn},{index}); return false;"\x3e')+ +'\x3cspan class\x3d"cke_menubutton_inner"\x3e\x3cspan class\x3d"cke_menubutton_icon"\x3e\x3cspan class\x3d"cke_button_icon cke_button__{iconName}_icon" style\x3d"{iconStyle}"\x3e\x3c/span\x3e\x3c/span\x3e\x3cspan class\x3d"cke_menubutton_label"\x3e{label}\x3c/span\x3e{shortcutHtml}{arrowHtml}\x3c/span\x3e\x3c/a\x3e\x3cspan id\x3d"{id}_description" class\x3d"cke_voice_label" aria-hidden\x3d"false"\x3e{ariaShortcut}\x3c/span\x3e\x3c/span\x3e',r=CKEDITOR.addTemplate("menuItem",k),p=CKEDITOR.addTemplate("menuArrow", +'\x3cspan class\x3d"cke_menuarrow"\x3e\x3cspan\x3e{label}\x3c/span\x3e\x3c/span\x3e'),c=CKEDITOR.addTemplate("menuShortcut",'\x3cspan class\x3d"cke_menubutton_label cke_menubutton_shortcut"\x3e{shortcut}\x3c/span\x3e');CKEDITOR.menu=CKEDITOR.tools.createClass({$:function(a,b){b=this._.definition=b||{};this.id=CKEDITOR.tools.getNextId();this.editor=a;this.items=[];this._.listeners=[];this._.level=b.level||1;var f=CKEDITOR.tools.extend({},b.panel,{css:[CKEDITOR.skin.getPath("editor")],level:this._.level- +1,block:{}}),c=f.block.attributes=f.attributes||{};!c.role&&(c.role="menu");this._.panelDefinition=f},_:{onShow:function(){var a=this.editor.getSelection(),b=a&&a.getStartElement(),f=this.editor.elementPath(),c=this._.listeners;this.removeAll();for(var h=0;h <\/span>/g, +""),a.replace(/<.*?>/g,"")):a.getText()}function d(a,c){var f=a,g=/\s/g,h="p br ol ul li td th div caption body".split(" "),m=!1,k=!1,p,n;do{for(p=b(f,c);!p&&f.getParent();){f=f.getParent();if(-1!==l(h,f.getName())){k=m=!0;break}p=b(f,c)}if(p&&p.getName&&-1!==l(h,p.getName())){m=!0;break}f=p}while(f&&f.getStyle&&("none"==f.getStyle("display")||!f.getText()));for(f||(f=a);f.type!==CKEDITOR.NODE_TEXT;)f=!m||c||k?f.getChild(0):f.getChild(f.getChildCount()-1);for(h=e(f);null!=(k=g.exec(h))&&(n=k.index, +c););if("number"!==typeof n&&!m)return d(f,c);if(m)c?n=0:(g=/([\.\b]*$)/,n=(k=g.exec(h))?k.index:h.length);else if(c&&(n+=1,n>h.length))return d(f);return{node:f,offset:n}}var c=/\b\w+\b/ig,f,g,h,m,k;h=m=k=a.startContainer;for(f=e(h);null!=(g=c.exec(f));)if(g.index+g[0].length>=a.startOffset)return a=g.index,c=g.index+g[0].length,0===g.index&&(g=d(h,!0),m=g.node,a=g.offset),c>=f.length&&(f=d(h),k=f.node,c=f.offset),{startNode:m,startOffset:a,endNode:k,endOffset:c};return null},_filterStyles:function(a){var b= +CKEDITOR.tools.isEmpty,e=[],d,c;for(c=0;c((?:.|[\n\r])*?)<\/body>/i,f=a.config.fullPage,a=a.getData();f&&(d=a.match(d))&&1CKEDITOR.env.version?n.createText("\r"):n.createElement("br"),b.deleteContents(),b.insertNode(a),CKEDITOR.env.needsBrFiller?(n.createText("").insertAfter(a),g&&(k||f.blockLimit).appendBogus(),a.getNext().$.nodeValue="",b.setStartAt(a.getNext(), +CKEDITOR.POSITION_AFTER_START)):b.setStartAt(a,CKEDITOR.POSITION_AFTER_END)),b.collapse(!0),b.select(),b.scrollIntoView()):r(a,e,b,l)}}};v=CKEDITOR.plugins.enterkey;u=v.enterBr;r=v.enterBlock;w=/^h[1-6]$/})();(function(){function k(a,f){var g={},c=[],e={nbsp:" ",shy:"­",gt:"\x3e",lt:"\x3c",amp:"\x26",apos:"'",quot:'"'};a=a.replace(/\b(nbsp|shy|gt|lt|amp|apos|quot)(?:,|$)/g,function(a,b){var d=f?"\x26"+b+";":e[b];g[d]=f?e[b]:"\x26"+b+";";c.push(d);return""});a=a.replace(/,$/,"");if(!f&&a){a=a.split(",");var b=document.createElement("div"),d;b.innerHTML="\x26"+a.join(";\x26")+";";d=b.innerHTML;b=null;for(b=0;ba&&(a=640);420>b&&(b=420);var f=parseInt((window.screen.height-b)/2,10),g=parseInt((window.screen.width-a)/2,10);d=(d||"location\x3dno,menubar\x3dno,toolbar\x3dno,dependent\x3dyes,minimizable\x3dno,modal\x3dyes,alwaysRaised\x3dyes,resizable\x3dyes,scrollbars\x3dyes")+",width\x3d"+ +a+",height\x3d"+b+",top\x3d"+f+",left\x3d"+g;var c=window.open("",null,d,!0);if(!c)return!1;try{-1==navigator.userAgent.toLowerCase().indexOf(" chrome/")&&(c.moveTo(g,f),c.resizeTo(a,b)),c.focus(),c.location.href=e}catch(h){window.open(e,null,d,!0)}return!0}});(function(){function k(a){this.editor=a;this.loaders=[]}function l(a,c,b){var d=a.config.fileTools_defaultFileName;this.editor=a;this.lang=a.lang;"string"===typeof c?(this.data=c,this.file=n(this.data),this.loaded=this.total=this.file.size):(this.data=null,this.file=c,this.total=this.file.size,this.loaded=0);b?this.fileName=b:this.file.name?this.fileName=this.file.name:(a=this.file.type.split("/"),d&&(a[0]=d),this.fileName=a.join("."));this.uploaded=0;this.responseData=this.uploadTotal=null;this.status= +"created";this.abort=function(){this.changeStatus("abort")}}function n(a){var c=a.match(m)[1];a=a.replace(m,"");a=atob(a);var b=[],d,f,g,e;for(d=0;dd.status||299h.height-c.bottom?e("pin"):e("bottom"),d=h.width/2,d=l.floatSpacePreferRight?"right":0n.width?"rtl"==l.contentsLangDirection? +"right":"left":d-c.left>c.right-d?"left":"right",n.width>h.width?(d="left",f=0):(f="left"==d?0h.width&&(d="left"==d?"right":"left",f=0)),b.setStyle(d,w(("pin"==m?u:p)+f+("pin"==m?0:"left"==d?v:-v)))):(m="pin",e("pin"),t(d))}}}();if(p){var k=new CKEDITOR.template('\x3cdiv id\x3d"cke_{name}" class\x3d"cke {id} cke_reset_all cke_chrome cke_editor_{name} cke_float cke_{langDir} '+CKEDITOR.env.cssClass+'" dir\x3d"{langDir}" title\x3d"'+(CKEDITOR.env.gecko? +" ":"")+'" lang\x3d"{langCode}" role\x3d"application" style\x3d"{style}"'+(a.applicationTitle?' aria-labelledby\x3d"cke_{name}_arialbl"':" ")+"\x3e"+(a.applicationTitle?'\x3cspan id\x3d"cke_{name}_arialbl" class\x3d"cke_voice_label"\x3e{voiceLabel}\x3c/span\x3e':" ")+'\x3cdiv class\x3d"cke_inner"\x3e\x3cdiv id\x3d"{topId}" class\x3d"cke_top" role\x3d"presentation"\x3e{content}\x3c/div\x3e\x3c/div\x3e\x3c/div\x3e'),b=CKEDITOR.document.getBody().append(CKEDITOR.dom.element.createFromHtml(k.output({content:p, +id:a.id,langDir:a.lang.dir,langCode:a.langCode,name:a.name,style:"display:none;z-index:"+(l.baseFloatZIndex-1),topId:a.ui.spaceId("top"),voiceLabel:a.applicationTitle}))),u=CKEDITOR.tools.eventsBuffer(500,t),e=CKEDITOR.tools.eventsBuffer(100,t);b.unselectable();b.on("mousedown",function(a){a=a.data;a.getTarget().hasAscendant("a",1)||a.preventDefault()});a.on("focus",function(b){t(b);a.on("change",u.input);g.on("scroll",e.input);g.on("resize",e.input)});a.on("blur",function(){b.hide();a.removeListener("change", +u.input);g.removeListener("scroll",e.input);g.removeListener("resize",e.input)});a.on("destroy",function(){g.removeListener("scroll",e.input);g.removeListener("resize",e.input);b.clearCustomData();b.remove()});a.focusManager.hasFocus&&b.show();a.focusManager.add(b,1)}}var g=CKEDITOR.document.getWindow(),w=CKEDITOR.tools.cssLength;CKEDITOR.plugins.add("floatingspace",{init:function(a){a.on("loaded",function(){k(this)},null,null,20)}})})();CKEDITOR.plugins.add("listblock",{requires:"panel",onLoad:function(){var f=CKEDITOR.addTemplate("panel-list",'\x3cul role\x3d"presentation" class\x3d"cke_panel_list"\x3e{items}\x3c/ul\x3e'),g=CKEDITOR.addTemplate("panel-list-item",'\x3cli id\x3d"{id}" class\x3d"cke_panel_listItem" role\x3dpresentation\x3e\x3ca id\x3d"{id}_option" _cke_focus\x3d1 hidefocus\x3dtrue title\x3d"{title}" draggable\x3d"false" ondragstart\x3d"return false;" href\x3d"javascript:void(\'{val}\')" onclick\x3d"{onclick}CKEDITOR.tools.callFunction({clickFn},\'{val}\'); return false;" role\x3d"option"\x3e{text}\x3c/a\x3e\x3c/li\x3e'), +h=CKEDITOR.addTemplate("panel-list-group",'\x3ch1 id\x3d"{id}" draggable\x3d"false" ondragstart\x3d"return false;" class\x3d"cke_panel_grouptitle" role\x3d"presentation" \x3e{label}\x3c/h1\x3e'),k=/\'/g;CKEDITOR.ui.panel.prototype.addListBlock=function(a,b){return this.addBlock(a,new CKEDITOR.ui.listBlock(this.getHolderElement(),b))};CKEDITOR.ui.listBlock=CKEDITOR.tools.createClass({base:CKEDITOR.ui.panel.block,$:function(a,b){b=b||{};var c=b.attributes||(b.attributes={});(this.multiSelect=!!b.multiSelect)&& +(c["aria-multiselectable"]=!0);!c.role&&(c.role="listbox");this.base.apply(this,arguments);this.element.setAttribute("role",c.role);c=this.keys;c[40]="next";c[9]="next";c[38]="prev";c[CKEDITOR.SHIFT+9]="prev";c[32]=CKEDITOR.env.ie?"mouseup":"click";CKEDITOR.env.ie&&(c[13]="mouseup");this._.pendingHtml=[];this._.pendingList=[];this._.items={};this._.groups={}},_:{close:function(){if(this._.started){var a=f.output({items:this._.pendingList.join("")});this._.pendingList=[];this._.pendingHtml.push(a); +delete this._.started}},getClick:function(){this._.click||(this._.click=CKEDITOR.tools.addFunction(function(a){var b=this.toggle(a);if(this.onClick)this.onClick(a,b)},this));return this._.click}},proto:{add:function(a,b,c){var d=CKEDITOR.tools.getNextId();this._.started||(this._.started=1,this._.size=this._.size||0);this._.items[a]=d;var e;e=CKEDITOR.tools.htmlEncodeAttr(a).replace(k,"\\'");a={id:d,val:e,onclick:CKEDITOR.env.ie?'return false;" onmouseup\x3d"CKEDITOR.tools.getMouseButton(event)\x3d\x3d\x3dCKEDITOR.MOUSE_BUTTON_LEFT\x26\x26': +"",clickFn:this._.getClick(),title:CKEDITOR.tools.htmlEncodeAttr(c||a),text:b||a};this._.pendingList.push(g.output(a))},startGroup:function(a){this._.close();var b=CKEDITOR.tools.getNextId();this._.groups[a]=b;this._.pendingHtml.push(h.output({id:b,label:a}))},commit:function(){this._.close();this.element.appendHtml(this._.pendingHtml.join(""));delete this._.size;this._.pendingHtml=[]},toggle:function(a){var b=this.isMarked(a);b?this.unmark(a):this.mark(a);return!b},hideGroup:function(a){var b=(a= +this.element.getDocument().getById(this._.groups[a]))&&a.getNext();a&&(a.setStyle("display","none"),b&&"ul"==b.getName()&&b.setStyle("display","none"))},hideItem:function(a){this.element.getDocument().getById(this._.items[a]).setStyle("display","none")},showAll:function(){var a=this._.items,b=this._.groups,c=this.element.getDocument(),d;for(d in a)c.getById(a[d]).setStyle("display","");for(var e in b)a=c.getById(b[e]),d=a.getNext(),a.setStyle("display",""),d&&"ul"==d.getName()&&d.setStyle("display", +"")},mark:function(a){this.multiSelect||this.unmarkAll();a=this._.items[a];var b=this.element.getDocument().getById(a);b.addClass("cke_selected");this.element.getDocument().getById(a+"_option").setAttribute("aria-selected",!0);this.onMark&&this.onMark(b)},markFirstDisplayed:function(){var a=this;this._.markFirstDisplayed(function(){a.multiSelect||a.unmarkAll()})},unmark:function(a){var b=this.element.getDocument();a=this._.items[a];var c=b.getById(a);c.removeClass("cke_selected");b.getById(a+"_option").removeAttribute("aria-selected"); +this.onUnmark&&this.onUnmark(c)},unmarkAll:function(){var a=this._.items,b=this.element.getDocument(),c;for(c in a){var d=a[c];b.getById(d).removeClass("cke_selected");b.getById(d+"_option").removeAttribute("aria-selected")}this.onUnmark&&this.onUnmark()},isMarked:function(a){return this.element.getDocument().getById(this._.items[a]).hasClass("cke_selected")},focus:function(a){this._.focusIndex=-1;var b=this.element.getElementsByTag("a"),c,d=-1;if(a)for(c=this.element.getDocument().getById(this._.items[a]).getFirst();a= +b.getItem(++d);){if(a.equals(c)){this._.focusIndex=d;break}}else this.element.focus();c&&setTimeout(function(){c.focus()},0)}}})}});CKEDITOR.plugins.add("richcombo",{requires:"floatpanel,listblock,button",beforeInit:function(e){e.ui.addHandler(CKEDITOR.UI_RICHCOMBO,CKEDITOR.ui.richCombo.handler)}}); +(function(){var e='\x3cspan id\x3d"{id}" class\x3d"cke_combo cke_combo__{name} {cls}" role\x3d"presentation"\x3e\x3cspan id\x3d"{id}_label" class\x3d"cke_combo_label"\x3e{label}\x3c/span\x3e\x3ca class\x3d"cke_combo_button" title\x3d"{title}" tabindex\x3d"-1"'+(CKEDITOR.env.gecko&&!CKEDITOR.env.hc?"":" href\x3d\"javascript:void('{titleJs}')\"")+' hidefocus\x3d"true" role\x3d"button" aria-labelledby\x3d"{id}_label" aria-haspopup\x3d"listbox"',h="";CKEDITOR.env.gecko&&CKEDITOR.env.mac&&(e+=' onkeypress\x3d"return false;"'); +CKEDITOR.env.gecko&&(e+=' onblur\x3d"this.style.cssText \x3d this.style.cssText;"');CKEDITOR.env.ie&&(h='return false;" onmouseup\x3d"CKEDITOR.tools.getMouseButton(event)\x3d\x3dCKEDITOR.MOUSE_BUTTON_LEFT\x26\x26');var e=e+(' onkeydown\x3d"return CKEDITOR.tools.callFunction({keydownFn},event,this);" onfocus\x3d"return CKEDITOR.tools.callFunction({focusFn},event);" onclick\x3d"'+h+'CKEDITOR.tools.callFunction({clickFn},this);return false;"\x3e\x3cspan id\x3d"{id}_text" class\x3d"cke_combo_text cke_combo_inlinelabel"\x3e{label}\x3c/span\x3e\x3cspan class\x3d"cke_combo_open"\x3e\x3cspan class\x3d"cke_combo_arrow"\x3e'+ +(CKEDITOR.env.hc?"\x26#9660;":CKEDITOR.env.air?"\x26nbsp;":"")+"\x3c/span\x3e\x3c/span\x3e\x3c/a\x3e\x3c/span\x3e"),m=CKEDITOR.addTemplate("combo",e);CKEDITOR.UI_RICHCOMBO="richcombo";CKEDITOR.ui.richCombo=CKEDITOR.tools.createClass({$:function(a){CKEDITOR.tools.extend(this,a,{canGroup:!1,title:a.label,modes:{wysiwyg:1},editorFocus:1});a=this.panel||{};delete this.panel;this.id=CKEDITOR.tools.getNextNumber();this.document=a.parent&&a.parent.getDocument()||CKEDITOR.document;a.className="cke_combopanel"; +a.block={multiSelect:a.multiSelect,attributes:a.attributes};a.toolbarRelated=!0;this._={panelDefinition:a,items:{},listeners:[]}},proto:{renderHtml:function(a){var b=[];this.render(a,b);return b.join("")},render:function(a,b){function c(){if(this.getState()!=CKEDITOR.TRISTATE_ON){var b=this.modes[a.mode]?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED;a.readOnly&&!this.readOnly&&(b=CKEDITOR.TRISTATE_DISABLED);this.setState(b);this.setValue("");b!=CKEDITOR.TRISTATE_DISABLED&&this.refresh&&this.refresh()}} +var l=CKEDITOR.env,g,f,d="cke_"+this.id,e=CKEDITOR.tools.addFunction(function(b){f&&(a.unlockSelection(1),f=0);g.execute(b)},this),k=this;g={id:d,combo:this,focus:function(){CKEDITOR.document.getById(d).getChild(1).focus()},execute:function(b){var c=k._;if(c.state!=CKEDITOR.TRISTATE_DISABLED)if(k.createPanel(a),c.on)c.panel.hide();else{k.commit();var d=k.getValue();d?c.list.mark(d):c.list.unmarkAll();c.panel.showBlock(k.id,new CKEDITOR.dom.element(b),4)}},clickFn:e};this._.listeners.push(a.on("activeFilterChange", +c,this));this._.listeners.push(a.on("mode",c,this));this._.listeners.push(a.on("selectionChange",c,this));!this.readOnly&&this._.listeners.push(a.on("readOnly",c,this));var h=CKEDITOR.tools.addFunction(function(a,b){a=new CKEDITOR.dom.event(a);var c=a.getKeystroke();switch(c){case 13:case 32:case 40:CKEDITOR.tools.callFunction(e,b);break;default:g.onkey(g,c)}a.preventDefault()}),n=CKEDITOR.tools.addFunction(function(){g.onfocus&&g.onfocus()});f=0;g.keyDownFn=h;l={id:d,name:this.name||this.command, +label:this.label,title:this.title,cls:this.className||"",titleJs:l.gecko&&!l.hc?"":(this.title||"").replace("'",""),keydownFn:h,focusFn:n,clickFn:e};m.output(l,b);if(this.onRender)this.onRender();return g},createPanel:function(a){if(!this._.panel){var b=this._.panelDefinition,c=this._.panelDefinition.block,e=b.parent||CKEDITOR.document.getBody(),g="cke_combopanel__"+this.name,f=new CKEDITOR.ui.floatPanel(a,e,b),b=f.addListBlock(this.id,c),d=this;f.onShow=function(){this.element.addClass(g);d.setState(CKEDITOR.TRISTATE_ON); +d._.on=1;d.editorFocus&&!a.focusManager.hasFocus&&a.focus();if(d.onOpen)d.onOpen()};f.onHide=function(b){this.element.removeClass(g);d.setState(d.modes&&d.modes[a.mode]?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED);d._.on=0;if(!b&&d.onClose)d.onClose()};f.onEscape=function(){f.hide(1)};b.onClick=function(a,b){d.onClick&&d.onClick.call(d,a,b);f.hide()};this._.panel=f;this._.list=b;f.getBlock(this.id).onHide=function(){d._.on=0;d.setState(CKEDITOR.TRISTATE_OFF)};this.init&&this.init()}},setValue:function(a, +b){this._.value=a;var c=this.document.getById("cke_"+this.id+"_text");c&&(a||b?c.removeClass("cke_combo_inlinelabel"):(b=this.label,c.addClass("cke_combo_inlinelabel")),c.setText("undefined"!=typeof b?b:a));var c="undefined"!=typeof b?b:a,e=this.label,c=c===e?c:c+", "+e;(e=this.document.getById("cke_"+this.id+"_label"))&&e.setText(c)},getValue:function(){return this._.value||""},unmarkAll:function(){this._.list.unmarkAll()},mark:function(a){this._.list.mark(a)},hideItem:function(a){this._.list.hideItem(a)}, +hideGroup:function(a){this._.list.hideGroup(a)},showAll:function(){this._.list.showAll()},add:function(a,b,c){this._.items[a]=c||a;this._.list.add(a,b,c)},startGroup:function(a){this._.list.startGroup(a)},commit:function(){this._.committed||(this._.list.commit(),this._.committed=1,CKEDITOR.ui.fire("ready",this));this._.committed=1},setState:function(a){if(this._.state!=a){var b=this.document.getById("cke_"+this.id),c=b.getElementsByTag("a").getItem(0);b.setState(a,"cke_combo");a==CKEDITOR.TRISTATE_DISABLED? +b.setAttribute("aria-disabled",!0):b.removeAttribute("aria-disabled");c&&c.setAttribute("aria-expanded",a==CKEDITOR.TRISTATE_ON);this._.state=a}},getState:function(){return this._.state},enable:function(){this._.state==CKEDITOR.TRISTATE_DISABLED&&this.setState(this._.lastState)},disable:function(){this._.state!=CKEDITOR.TRISTATE_DISABLED&&(this._.lastState=this._.state,this.setState(CKEDITOR.TRISTATE_DISABLED))},destroy:function(){CKEDITOR.tools.array.forEach(this._.listeners,function(a){a.removeListener()}); +this._.listeners=[]},select:function(a){if(!CKEDITOR.tools.isEmpty(this._.items))for(var b in this._.items)if(a({value:b,text:this._.items[b]})){this.setValue(b);break}}},statics:{handler:{create:function(a){return new CKEDITOR.ui.richCombo(a)}}}});CKEDITOR.ui.prototype.addRichCombo=function(a,b){this.add(a,CKEDITOR.UI_RICHCOMBO,b)}})();(function(){function k(a,b){var c=a.config,e=b.lang,d=new CKEDITOR.style(b.styleDefinition),f=new l({entries:b.entries,styleVariable:b.styleVariable,styleDefinition:b.styleDefinition}),g;a.addCommand(b.commandName,{exec:function(a,b){var c=b.newStyle,d=b.oldStyle,e=a.getSelection().getRanges()[0],f=void 0===c;if(d||c)d&&e.collapsed&&m({editor:a,range:e,style:d}),f?a.removeStyle(d):(d&&!n(d,c)&&a.removeStyle(d),a.applyStyle(c))},refresh:function(a,b){d.checkApplicable(b,a,a.activeFilter)||this.setState(CKEDITOR.TRISTATE_DISABLED)}}); +g=a.getCommand(b.commandName);a.ui.addRichCombo(b.comboName,{label:e.label,title:e.panelTitle,command:b.commandName,toolbar:"styles,"+b.order,defaultValue:"cke-default",allowedContent:d,requiredContent:d,contentTransformations:"span"===b.styleDefinition.element?[[{element:"font",check:"span",left:function(a){return!!a.attributes.size||!!a.attributes.align||!!a.attributes.face},right:function(a){var b=" x-small small medium large x-large xx-large 48px".split(" ");a.name="span";a.attributes.size&&(a.styles["font-size"]= +b[a.attributes.size],delete a.attributes.size);a.attributes.align&&(a.styles["text-align"]=a.attributes.align,delete a.attributes.align);a.attributes.face&&(a.styles["font-family"]=a.attributes.face,delete a.attributes.face)}}]]:null,panel:{css:[CKEDITOR.skin.getPath("editor")].concat(c.contentsCss),multiSelect:!1,attributes:{"aria-label":e.panelTitle}},init:function(){var b="("+a.lang.common.optionDefault+")";this.startGroup(e.panelTitle);this.add(this.defaultValue,b,b);f.addToCombo(this)},onClick:function(c){var d= +this.getValue();a.focus();a.fire("saveSnapshot");a.execCommand(b.commandName,{newStyle:f.getStyle(c),oldStyle:f.getStyle(d)});a.fire("saveSnapshot")},onRender:function(){a.on("selectionChange",function(c){var d=this.getValue();(c=f.getMatchingValue(a,c.data.path))?c!=d&&this.setValue(c):this.setValue("",b.defaultLabel)},this);g.on("state",function(){this.setState(g.state)},this)},refresh:function(){this.setState(g.state)}})}function n(a,b){if(!(a instanceof CKEDITOR.style&&b instanceof CKEDITOR.style))return!1; +var c=function(a,b){var c=a.getDefinition().attributes,e=b.getDefinition().attributes;return CKEDITOR.tools.objectCompare(c,e)}(a,b),e=function(a,b){return CKEDITOR.style.getStyleText(a.getDefinition())===CKEDITOR.style.getStyleText(b.getDefinition())}(a,b);return c&&e}function m(a){var b=a.editor,c=a.range,e=a.style,d,f,g;d=b.elementPath();if(a=d.contains(function(a){return e.checkElementRemovable(a)})){f=c.checkBoundaryOfElement(a,CKEDITOR.START);g=c.checkBoundaryOfElement(a,CKEDITOR.END);if(f&& +g){for(f=c.createBookmark();d=a.getFirst();)d.insertBefore(a);a.remove();c.moveToBookmark(f)}else f||g?c.moveToPosition(a,f?CKEDITOR.POSITION_BEFORE_START:CKEDITOR.POSITION_AFTER_END):(c.splitElement(a),c.moveToPosition(a,CKEDITOR.POSITION_AFTER_END)),h(c,d.elements.slice(),a);b.getSelection().selectRanges([c])}}function h(a,b,c){var e=b.pop();if(e){if(c)return h(a,b,e.equals(c)?null:c);c=e.clone();a.insertNode(c);a.moveToPosition(c,CKEDITOR.POSITION_AFTER_START);h(a,b)}}var l=CKEDITOR.tools.createClass({$:function(a){var b= +a.entries.split(";");this._.data={};this._.names=[];for(var c=0;c(a+=l?1:-1))return;a=Math.min(a,c.length);a=Math.max(a,0);b.$.className=CKEDITOR.tools.ltrim(b.$.className.replace(this.classNameRegex,""));0a)return;a=Math.max(a, +0);a=Math.ceil(a/g)*g;b.setStyle(c,a?a+(d.config.indentUnit||"px"):"");""===b.getAttribute("style")&&b.removeAttribute("style")}CKEDITOR.dom.element.setMarker(this.database,b,"indent_processed",1)}}function m(b,c){return"ltr"==(c||b.getComputedStyle("direction"))?"margin-left":"margin-right"}var h=CKEDITOR.dtd.$listItem,p=CKEDITOR.dtd.$list,k=CKEDITOR.TRISTATE_DISABLED,n=CKEDITOR.TRISTATE_OFF;CKEDITOR.plugins.add("indentblock",{requires:"indent",init:function(b){function c(){a.specificDefinition.apply(this, +arguments);this.allowedContent={"div h1 h2 h3 h4 h5 h6 ol p pre ul":{propertiesOnly:!0,styles:d?null:"margin-left,margin-right",classes:d||null}};this.contentTransformations=[["div: splitMarginShorthand"],["h1: splitMarginShorthand"],["h2: splitMarginShorthand"],["h3: splitMarginShorthand"],["h4: splitMarginShorthand"],["h5: splitMarginShorthand"],["h6: splitMarginShorthand"],["ol: splitMarginShorthand"],["p: splitMarginShorthand"],["pre: splitMarginShorthand"],["ul: splitMarginShorthand"]];this.enterBr&& +(this.allowedContent.div=!0);this.requiredContent=(this.enterBr?"div":"p")+(d?"("+d.join(",")+")":"{margin-left}");this.jobs={20:{refresh:function(a,b){var e=b.block||b.blockLimit;if(!e.is(h))var c=e.getAscendant(h),e=c&&b.contains(c)||e;e.is(h)&&(e=e.getParent());if(this.enterBr||this.getContext(b)){if(d){var c=d,e=e.$.className.match(this.classNameRegex),f=this.isIndent,c=e?f?e[1]!=c.slice(-1):!0:f;return c?n:k}return this.isIndent?n:e?CKEDITOR[0>=(parseInt(e.getStyle(m(e)),10)||0)?"TRISTATE_DISABLED": +"TRISTATE_OFF"]:k}return k},exec:function(a){var b=a.getSelection(),b=b&&b.getRanges()[0],c;if(c=a.elementPath().contains(p))f.call(this,c,d);else for(b=b.createIterator(),a=a.config.enterMode,b.enforceRealBlocks=!0,b.enlargeBr=a!=CKEDITOR.ENTER_BR;c=b.getNextParagraph(a==CKEDITOR.ENTER_P?"p":"div");)c.isReadOnly()||f.call(this,c,d);return!0}}}}var a=CKEDITOR.plugins.indent,d=b.config.indentClasses;a.registerCommands(b,{indentblock:new c(b,"indentblock",!0),outdentblock:new c(b,"outdentblock")}); +CKEDITOR.tools.extend(c.prototype,a.specificDefinition.prototype,{context:{div:1,dl:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,ul:1,ol:1,p:1,pre:1,table:1},classNameRegex:d?new RegExp("(?:^|\\s+)("+d.join("|")+")(?\x3d$|\\s)"):null})}})})();(function(){function w(f){function g(b){for(var e=c.startContainer,a=c.endContainer;e&&!e.getParent().equals(b);)e=e.getParent();for(;a&&!a.getParent().equals(b);)a=a.getParent();if(!e||!a)return!1;for(var d=[],h=!1;!h;)e.equals(a)&&(h=!0),d.push(e),e=e.getNext();if(1>d.length)return!1;e=b.getParents(!0);for(a=0;am;a++)h[a].indent+=e;e=CKEDITOR.plugins.list.arrayToList(h,q,null,f.config.enterMode,b.getDirection());if(!k.isIndent){var t;if((t=b.getParent())&&t.is("li"))for(var d=e.listNode.getChildren(), +r=[],l,a=d.count()-1;0<=a;a--)(l=d.getItem(a))&&l.is&&l.is("li")&&r.push(l)}e&&e.listNode.replace(b);if(r&&r.length)for(a=0;a=this.rect.right||a<=this.rect.top||a>=this.rect.bottom)&&this.hideVisible();(0>=b||b>=this.winTopPane.width||0>=a||a>=this.winTopPane.height)&&this.hideVisible()},this);b.attachListener(a,"resize",c);b.attachListener(a,"mode",g);a.on("destroy",g);this.lineTpl=(new CKEDITOR.template('\x3cdiv data-cke-lineutils-line\x3d"1" class\x3d"cke_reset_all" style\x3d"{lineStyle}"\x3e\x3cspan style\x3d"{tipLeftStyle}"\x3e\x26nbsp;\x3c/span\x3e\x3cspan style\x3d"{tipRightStyle}"\x3e\x26nbsp;\x3c/span\x3e\x3c/div\x3e')).output({lineStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({}, +t,this.lineStyle,!0)),tipLeftStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},q,{left:"0px","border-left-color":"red","border-width":"6px 0 6px 6px"},this.tipCss,this.tipLeftStyle,!0)),tipRightStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},q,{right:"0px","border-right-color":"red","border-width":"6px 6px 6px 0"},this.tipCss,this.tipRightStyle,!0))})}function l(a){var d;if(d=a&&a.type==CKEDITOR.NODE_ELEMENT)d=!(r[a.getComputedStyle("float")]||r[a.getAttribute("align")]);return d&& +!u[a.getComputedStyle("position")]}CKEDITOR.plugins.add("lineutils");CKEDITOR.LINEUTILS_BEFORE=1;CKEDITOR.LINEUTILS_AFTER=2;CKEDITOR.LINEUTILS_INSIDE=4;m.prototype={start:function(a){var d=this,b=this.editor,c=this.doc,e,g,f,h,k=CKEDITOR.tools.eventsBuffer(50,function(){b.readOnly||"wysiwyg"!=b.mode||(d.relations={},(g=c.$.elementFromPoint(f,h))&&g.nodeType&&(e=new CKEDITOR.dom.element(g),d.traverseSearch(e),isNaN(f+h)||d.pixelSearch(e,f,h),a&&a(d.relations,f,h)))});this.listener=this.editable.attachListener(this.target, +"mousemove",function(a){f=a.data.$.clientX;h=a.data.$.clientY;k.input()});this.editable.attachListener(this.inline?this.editable:this.frame,"mouseout",function(){k.reset()})},stop:function(){this.listener&&this.listener.removeListener()},getRange:function(){var a={};a[CKEDITOR.LINEUTILS_BEFORE]=CKEDITOR.POSITION_BEFORE_START;a[CKEDITOR.LINEUTILS_AFTER]=CKEDITOR.POSITION_AFTER_END;a[CKEDITOR.LINEUTILS_INSIDE]=CKEDITOR.POSITION_AFTER_START;return function(d){var b=this.editor.createRange();b.moveToPosition(this.relations[d.uid].element, +a[d.type]);return b}}(),store:function(){function a(a,b,c){var e=a.getUniqueId();e in c?c[e].type|=b:c[e]={element:a,type:b}}return function(d,b){var c;b&CKEDITOR.LINEUTILS_AFTER&&l(c=d.getNext())&&c.isVisible()&&(a(c,CKEDITOR.LINEUTILS_BEFORE,this.relations),b^=CKEDITOR.LINEUTILS_AFTER);b&CKEDITOR.LINEUTILS_INSIDE&&l(c=d.getFirst())&&c.isVisible()&&(a(c,CKEDITOR.LINEUTILS_BEFORE,this.relations),b^=CKEDITOR.LINEUTILS_INSIDE);a(d,b,this.relations)}}(),traverseSearch:function(a){var d,b,c;do if(c=a.$["data-cke-expando"], +!(c&&c in this.relations)){if(a.equals(this.editable))break;if(l(a))for(d in this.lookups)(b=this.lookups[d](a))&&this.store(a,b)}while((!a||a.type!=CKEDITOR.NODE_ELEMENT||"true"!=a.getAttribute("contenteditable"))&&(a=a.getParent()))},pixelSearch:function(){function a(a,c,e,g,f){for(var h=0,k;f(e);){e+=g;if(25==++h)break;if(k=this.doc.$.elementFromPoint(c,e))if(k==a)h=0;else if(d(a,k)&&(h=0,l(k=new CKEDITOR.dom.element(k))))return k}}var d=CKEDITOR.env.ie||CKEDITOR.env.webkit?function(a,c){return a.contains(c)}: +function(a,c){return!!(a.compareDocumentPosition(c)&16)};return function(b,c,d){var g=this.win.getViewPaneSize().height,f=a.call(this,b.$,c,d,-1,function(a){return 0this.rect.bottom)return!1;this.inline? +e.left=b.elementRect.left-this.rect.relativeX:(0[^<]*c});0>d&&(d=a._.upcasts.length);a._.upcasts.splice(d,0,[CKEDITOR.tools.bind(b,e),e.name,c])}var e=b.upcast,f=b.upcastPriority||10;e&&("string"==typeof e?d(c,b,f):d(e,b,f))}function x(a,b){a.focused=null;if(b.isInited()){var c=b.editor.checkDirty();a.fire("widgetBlurred",{widget:b});b.setFocused(!1);!c&&b.editor.resetDirty()}} +function T(a){a=a.data;if("wysiwyg"==this.editor.mode){var b=this.editor.editable(),c=this.instances,d,e,f,g;if(b){for(d in c)c[d].isReady()&&!b.contains(c[d].wrapper)&&this.destroy(c[d],!0);if(a&&a.initOnlyNew)c=this.initOnAll();else{var l=b.find(".cke_widget_wrapper"),c=[];d=0;for(e=l.count();da.selected.length||G(c,"cut"===b.name)}var c=a.editor;c.on("contentDom",function(){var a=c.editable();a.attachListener(a,"copy",b);a.attachListener(a,"cut",b)})} +function U(a){function b(){var a=e.getSelection();if(a&&(a=a.getRanges()[0])&&!a.collapsed){var b=c(a.startContainer),d=c(a.endContainer);!b&&d?(a.setEndBefore(d.wrapper),a.select()):b&&!d&&(a.setStartAfter(b.wrapper),a.select())}}function c(a){return a?a.type==CKEDITOR.NODE_TEXT?c(a.getParent()):e.widgets.getByElement(a):null}function d(){a.fire("checkSelection")}var e=a.editor;e.on("selectionCheck",d);e.on("contentDom",function(){e.editable().attachListener(e,"key",function(){setTimeout(d,10)})}); +if(!CKEDITOR.env.ie)a.on("checkSelection",b);a.on("checkSelection",a.checkSelection,a);e.on("selectionChange",function(b){var c=(b=h.getNestedEditable(e.editable(),b.data.selection.getStartElement()))&&a.getByElement(b),d=a.widgetHoldingFocusedEditable;d?d===c&&d.focusedEditable.equals(b)||(p(a,d,null),c&&b&&p(a,c,b)):c&&b&&p(a,c,b)});e.on("dataReady",function(){H(a).commit()});e.on("blur",function(){var b;(b=a.focused)&&x(a,b);(b=a.widgetHoldingFocusedEditable)&&p(a,b,null)})}function S(a){var b= +a.editor,c={};b.on("toDataFormat",function(b){var e=CKEDITOR.tools.getNextNumber(),f=[];b.data.downcastingSessionId=e;c[e]=f;b.data.dataValue.forEach(function(b){var c=b.attributes,e;if("data-cke-widget-white-space"in c){e=z(b);var d=A(b);e.parent.attributes["data-cke-white-space-first"]&&(e.value=e.value.replace(/^ /g," "));d.parent.attributes["data-cke-white-space-last"]&&(d.value=d.value.replace(/ $/g," "))}if("data-cke-widget-id"in c){if(c=a.instances[c["data-cke-widget-id"]])e=b.getFirst(h.isParserWidgetElement), +f.push({wrapper:b,element:e,widget:c,editables:{}}),"1"!=e.attributes["data-cke-widget-keep-attr"]&&delete e.attributes["data-widget"]}else if("data-cke-widget-editable"in c)return 0CKEDITOR.tools.indexOf(b,a)&&c.push(a);a=CKEDITOR.tools.indexOf(d,a);0<=a&&d.splice(a,1);return this},focus:function(a){e=a;return this},commit:function(){var f=a.focused!==e,g,l;a.editor.fire("lockSnapshot");for(f&&(g=a.focused)&&x(a,g);g=d.pop();)b.splice(CKEDITOR.tools.indexOf(b,g),1),g.isInited()&&(l=g.editor.checkDirty(), +g.setSelected(!1),!l&&g.editor.resetDirty());f&&e&&(l=a.editor.checkDirty(),a.focused=e,a.fire("widgetFocused",{widget:e}),e.setFocused(!0),!l&&a.editor.resetDirty());for(;g=c.pop();)b.push(g),g.setSelected(!0);a.editor.fire("unlockSnapshot")}}}function ha(a){a&&a.addFilterRule(function(a){return a.replace(/\s*cke_widget_selected/g,"").replace(/\s*cke_widget_focused/g,"")})}function I(a,b,c){var d=0;b=J(b);var e=a.data.classes||{},f;if(b){for(e=CKEDITOR.tools.clone(e);f=b.pop();)c?e[f]||(d=e[f]=1): +e[f]&&(delete e[f],d=1);d&&a.setData("classes",e)}}function K(a){a.cancel()}function L(a,b){var c=function(a){return a==CKEDITOR.ENTER_BR?"br":a==CKEDITOR.ENTER_DIV?"div":"p"}(a.editor.config.enterMode),d=new CKEDITOR.dom.element(c);"br"!==c&&d.appendBogus();"after"===b?d.insertAfter(a.wrapper):d.insertBefore(a.wrapper);(function(b){var c=a.editor.createRange();c.setStart(b,0);a.editor.getSelection().selectRanges([c])})(d)}function G(a,b){var c=a.widgets.focused,d,e,f;u.hasCopyBin(a)||(e=new u(a, +{beforeDestroy:function(){!b&&c&&c.focus();f&&a.getSelection().selectBookmarks(f);d&&CKEDITOR.plugins.widgetselection.addFillers(a.editable())},afterDestroy:function(){b&&!a.readOnly&&(c?a.widgets.del(c):a.extractSelectedHtml(),a.fire("saveSnapshot"))}}),c||(d=CKEDITOR.env.webkit&&CKEDITOR.plugins.widgetselection.isWholeContentSelected(a.editable()),f=a.getSelection().createBookmarks(!0)),e.handle(F(a)))}function J(a){return(a=(a=a.getDefinition().attributes)&&a["class"])?a.split(/\s+/):null}function M(){var a= +CKEDITOR.document.getActive(),b=this.editor,c=b.editable();(c.isInline()?c:b.document.getWindow().getFrame()).equals(a)&&b.focusManager.focus(c)}function N(){CKEDITOR.env.gecko&&this.editor.unlockSelection();CKEDITOR.env.webkit||(this.editor.forceNextSelectionCheck(),this.editor.selectionChange(1))}function F(a){var b=a.getSelectedHtml(!0);if(a.widgets.focused)return a.widgets.focused.getClipboardHtml();a.once("toDataFormat",function(a){a.data.widgetsCopy=!0},null,null,-1);return a.dataProcessor.toDataFormat(b)} +function Z(a,b){var c=a.editor.config.widget_keystrokeInsertLineBefore,d=a.editor.config.widget_keystrokeInsertLineAfter;ia(a);O(a);ja(a);P(a);ka(a);la(a);ma(a);if(CKEDITOR.env.ie&&9>CKEDITOR.env.version)a.wrapper.on("dragstart",function(b){var c=b.data.getTarget();h.getNestedEditable(a,c)||a.inline&&h.isDomDragHandler(c)||b.data.preventDefault()});a.wrapper.removeClass("cke_widget_new");a.element.addClass("cke_widget_element");a.on("key",function(b){b=b.data.keyCode;if(b==c)L(a,"before"),a.editor.fire("saveSnapshot"); +else if(b==d)L(a,"after"),a.editor.fire("saveSnapshot");else if(13==b)a.edit();else{if(b==CKEDITOR.CTRL+67||b==CKEDITOR.CTRL+88){G(a.editor,b==CKEDITOR.CTRL+88);return}if(b in Q||CKEDITOR.CTRL&b||CKEDITOR.ALT&b)return}return!1},null,null,999);a.on("doubleclick",function(b){a.edit()&&b.cancel()});if(b.data)a.on("data",b.data);if(b.edit)a.on("edit",b.edit)}function ia(a){(a.wrapper=a.element.getParent()).setAttribute("data-cke-widget-id",a.id)}function O(a,b){a.partSelectors||(a.partSelectors=a.parts); +if(a.parts){var c={},d,e;for(e in a.partSelectors)b||!a.parts[e]||"string"==typeof a.parts[e]?(d=a.wrapper.findOne(a.partSelectors[e]),c[e]=d):c[e]=a.parts[e];a.parts=c}}function ja(a){var b=a.editables,c,d;a.editables={};if(a.editables)for(c in b)d=b[c],a.initEditable(c,"string"==typeof d?{selector:d}:d)}function P(a){if(!0===a.mask)na(a);else if(a.mask){var b=new CKEDITOR.tools.buffers.throttle(250,oa,a),c=CKEDITOR.env.gecko?300:0,d,e;a.on("focus",function(){b.input();d=a.editor.on("change",b.input); +e=a.on("blur",function(){d.removeListener();e.removeListener()})});a.editor.on("instanceReady",function(){setTimeout(function(){b.input()},c)});a.editor.on("mode",function(){setTimeout(function(){b.input()},c)});if(CKEDITOR.env.gecko){var f=a.element.find("img");CKEDITOR.tools.array.forEach(f.toArray(),function(a){a.on("load",function(){b.input()})})}for(var g in a.editables)a.editables[g].on("focus",function(){a.editor.on("change",b.input);e&&e.removeListener()}),a.editables[g].on("blur",function(){a.editor.removeListener("change", +b.input)});b.input()}}function na(a){var b=a.wrapper.findOne(".cke_widget_mask");b||(b=new CKEDITOR.dom.element("img",a.editor.document),b.setAttributes({src:CKEDITOR.tools.transparentImageData,"class":"cke_reset cke_widget_mask"}),a.wrapper.append(b));a.mask=b}function oa(){if(this.wrapper){this.maskPart=this.maskPart||this.mask;var a=this.parts[this.maskPart],b;if(a&&"string"!=typeof a){b=this.wrapper.findOne(".cke_widget_partial_mask");b||(b=new CKEDITOR.dom.element("img",this.editor.document), +b.setAttributes({src:CKEDITOR.tools.transparentImageData,"class":"cke_reset cke_widget_partial_mask"}),this.wrapper.append(b));this.mask=b;var c=b.$,d=a.$,e=!(c.offsetTop==d.offsetTop&&c.offsetLeft==d.offsetLeft);if(c.offsetWidth!=d.offsetWidth||c.offsetHeight!=d.offsetHeight||e)c=a.getParent(),d=CKEDITOR.plugins.widget.isDomWidget(c),b.setStyles({top:a.$.offsetTop+(d?0:c.$.offsetTop)+"px",left:a.$.offsetLeft+(d?0:c.$.offsetLeft)+"px",width:a.$.offsetWidth+"px",height:a.$.offsetHeight+"px"})}}}function ka(a){if(a.draggable){var b= +a.editor,c=a.wrapper.getLast(h.isDomDragHandlerContainer),d;c?d=c.findOne("img"):(c=new CKEDITOR.dom.element("span",b.document),c.setAttributes({"class":"cke_reset cke_widget_drag_handler_container",style:"background:rgba(220,220,220,0.5);background-image:url("+b.plugins.widget.path+"images/handle.png);display:none;"}),d=new CKEDITOR.dom.element("img",b.document),d.setAttributes({"class":"cke_reset cke_widget_drag_handler","data-cke-widget-drag-handler":"1",src:CKEDITOR.tools.transparentImageData, +width:15,title:b.lang.widget.move,height:15,role:"presentation"}),a.inline&&d.setAttribute("draggable","true"),c.append(d),a.wrapper.append(c));a.wrapper.on("dragover",function(a){a.data.preventDefault()});a.wrapper.on("mouseenter",a.updateDragHandlerPosition,a);setTimeout(function(){a.on("data",a.updateDragHandlerPosition,a)},50);if(!a.inline&&(d.on("mousedown",pa,a),CKEDITOR.env.ie&&9>CKEDITOR.env.version))d.on("dragstart",function(a){a.data.preventDefault(!0)});a.dragHandlerContainer=c}}function pa(a){function b(){var b; +for(r.reset();b=l.pop();)b.removeListener();var c=k;b=a.sender;var d=this.repository.finder,e=this.repository.liner,f=this.editor,g=this.editor.editable();CKEDITOR.tools.isEmpty(e.visible)||(c=d.getRange(c[0]),this.focus(),f.fire("drop",{dropRange:c,target:c.startContainer}));g.removeClass("cke_widget_dragging");e.hideVisible();f.fire("dragend",{target:b})}if(CKEDITOR.tools.getMouseButton(a)===CKEDITOR.MOUSE_BUTTON_LEFT){var c=this.repository.finder,d=this.repository.locator,e=this.repository.liner, +f=this.editor,g=f.editable(),l=[],k=[],h,m;this.repository._.draggedWidget=this;var w=c.greedySearch(),r=CKEDITOR.tools.eventsBuffer(50,function(){h=d.locate(w);k=d.sort(m,1);k.length&&(e.prepare(w,h),e.placeLine(k[0]),e.cleanup())});g.addClass("cke_widget_dragging");l.push(g.on("mousemove",function(a){m=a.data.$.clientY;r.input()}));f.fire("dragstart",{target:a.sender});l.push(f.document.once("mouseup",b,this));g.isInline()||l.push(CKEDITOR.document.once("mouseup",b,this))}}function la(a){var b= +null;a.on("data",function(){var a=this.data.classes,d;if(b!=a){for(d in b)a&&a[d]||this.removeClass(d);for(d in a)this.addClass(d);b=a}})}function ma(a){a.on("data",function(){if(a.wrapper){var b=this.getLabel?this.getLabel():this.editor.lang.widget.label.replace(/%1/,this.pathName||this.element.getName());a.wrapper.setAttribute("role","region");a.wrapper.setAttribute("aria-label",b)}},null,null,9999)}function v(a){a.element.data("cke-widget-data",encodeURIComponent(JSON.stringify(a.data)))}function qa(){function a(){} +function b(a,b,c){return c&&this.checkElement(a)?(a=c.widgets.getByElement(a,!0))&&a.checkStyleActive(this):!1}function c(a){function b(a,c,d){for(var e=a.length,f=0;f)?(?:<(?:div|span)(?: style="[^"]+")?>)?]*data-cke-copybin-start="1"[^>]*>.?<\/span>([\s\S]+)]*data-cke-copybin-end="1"[^>]*>.?<\/span>(?:<\/(?:div|span)>)?(?:<\/(?:div|span)>)?$/i, +Q={37:1,38:1,39:1,40:1,8:1,46:1};Q[CKEDITOR.SHIFT+121]=1;var u=CKEDITOR.tools.createClass({$:function(a,b){this._.createCopyBin(a,b);this._.createListeners(b)},_:{createCopyBin:function(a){var b=a.document,c=CKEDITOR.env.edge&&16<=CKEDITOR.env.version,d=!a.blockless&&!CKEDITOR.env.ie||c?"div":"span",c=b.createElement(d),b=b.createElement(d);b.setAttributes({id:"cke_copybin","data-cke-temp":"1"});c.setStyles({position:"absolute",width:"1px",height:"1px",overflow:"hidden"});c.setStyle("ltr"==a.config.contentsLangDirection? +"left":"right","-5000px");this.editor=a;this.copyBin=c;this.container=b},createListeners:function(a){a&&(a.beforeDestroy&&(this.beforeDestroy=a.beforeDestroy),a.afterDestroy&&(this.afterDestroy=a.afterDestroy))}},proto:{handle:function(a){var b=this.copyBin,c=this.editor,d=this.container,e=CKEDITOR.env.ie&&9>CKEDITOR.env.version,f=c.document.getDocumentElement().$,g=c.createRange(),h=this,k=CKEDITOR.env.mac&&CKEDITOR.env.webkit,n=k?100:0,m=window.requestAnimationFrame&&!k?requestAnimationFrame:setTimeout, +p,r,q;b.setHtml('\x3cspan data-cke-copybin-start\x3d"1"\x3e​\x3c/span\x3e'+a+'\x3cspan data-cke-copybin-end\x3d"1"\x3e​\x3c/span\x3e');c.fire("lockSnapshot");d.append(b);c.editable().append(d);p=c.on("selectionChange",K,null,null,0);r=c.widgets.on("checkSelection",K,null,null,0);e&&(q=f.scrollTop);g.selectNodeContents(b);g.select();e&&(f.scrollTop=q);return new CKEDITOR.tools.promise(function(a){m(function(){h.beforeDestroy&&h.beforeDestroy();d.remove();p.removeListener();r.removeListener();c.fire("unlockSnapshot"); +h.afterDestroy&&h.afterDestroy();a()},n)})}},statics:{hasCopyBin:function(a){return!!u.getCopyBin(a)},getCopyBin:function(a){return a.document.getById("cke_copybin")}}});CKEDITOR.plugins.widget=h;h.repository=q;h.nestedEditable=t})();CKEDITOR.config.widget_keystrokeInsertLineBefore=CKEDITOR.SHIFT+CKEDITOR.ALT+13;CKEDITOR.config.widget_keystrokeInsertLineAfter=CKEDITOR.SHIFT+13;CKEDITOR.plugins.add("basewidget",{requires:"widget",init:pluginInit});function pluginInit(b){CKEDITOR.on("dialogDefinition",function(b){var a=b.data.definition.dialog,d=a._.element;a.on("show",function(){a.definition.nockereset&&d.removeClass("cke_reset_all")})})} +function addWidget(b,e,a){var d={};d.init=new FunctionManager;if(a.extend)for(var c in a.extend)if(a.extend.hasOwnProperty(c)&&"function"==typeof a.extend[c])if(d.hasOwnProperty(c))d[c].addFunction(c,a.extend[c],1);else throw"no such function "+c;d.init.addFunction("configToolbar",function(a){var b=function(){var b=document.createElement("span");b.id="configToolbar-panel";b.className="btn-group btn-group-sm basewidget-menu-wrapper";b.style.display="block";b.style.position="absolute";b.style.top="-30px"; +b.style.left="20px";var c=function(b){var a=document.createElement("button");a.style.zIndex="2147483647";a.type="button";a.className="btn btn-default";a.onclick=b.onClick.bind(this);var c=document.createElement("span");c.className="glyphicon"+b.icon;a.appendChild(c);b=document.createTextNode(b.label);a.appendChild(b);return a}.bind(this),e=[];e.push(c({label:"remove",icon:"",onClick:function(){this.repository.del(this)}.bind(this)}));if(a&&(a.defaultButtons?a.defaultButtons.edit&&a.defaultButtons.edit.onClick&& +e.push(c({label:"edit",icon:"glyphicon-edit",onClick:a.defaultButtons.edit.onClick.bind(this)})):e=[],a.buttons))for(var d=0;d=d;d++)c[d]=g*d;g='\x3cdiv class\x3d"container-fluid"\x3e';for(d=0;d=a;c--)b=$(g[c]),e=$(g[c-1]),$(b.children()[0]).children().appendTo($(e.children()[0])),b.remove()}else{for(c=0;c[\t ]+\[\t ]+$/g,"\x3e")};this.addLayout=function(b,d){var l=b.split("/").length;c[b]={template:e(a[l-1], +b),rowPosition:d}};this.buildDefaultLayouts=function(){for(var g=0,d=0;dg.length)){f=g[g.length-1].getNext();b=e.createElement(this.type);for(d.push(b);g.length;)d=g.shift(),a=e.createElement("li"),c=d,c.is("pre")||M.test(c.getName())||"false"==c.getAttribute("contenteditable")?d.appendTo(a):(d.copyAttributes(a),h&&d.getDirection()&&(a.removeStyle("direction"), +a.removeAttribute("dir")),d.moveChildren(a),d.remove()),a.appendTo(b);h&&k&&b.setAttribute("dir",h);f?b.insertBefore(f):b.appendTo(l)}}function N(a,l,d){function f(b){if(!(!(c=k[b?"getFirst":"getLast"]())||c.is&&c.isBlockBoundary()||!(p=l.root[b?"getPrevious":"getNext"](CKEDITOR.dom.walker.invisible(!0)))||p.is&&p.isBlockBoundary({br:1})))a.document.createElement("br")[b?"insertBefore":"insertAfter"](c)}for(var e=CKEDITOR.plugins.list.listToArray(l.root,d),g=[],b=0;be[b-1].indent+1){g=e[b-1].indent+1-e[b].indent;for(h=e[b].indent;e[b]&&e[b].indent>=h;)e[b].indent+=g,b++;b--}var k=CKEDITOR.plugins.list.arrayToList(e,d,null,a.config.enterMode,l.root.getAttribute("dir")).listNode,c,p; +f(!0);f();k.replace(l.root);a.fire("contentDomInvalidated")}function C(a,l){this.name=a;this.context=this.type=l;this.allowedContent=l+" li";this.requiredContent=l}function F(a,l,d,f){for(var e,g;e=a[f?"getLast":"getFirst"](O);)(g=e.getDirection(1))!==l.getDirection(1)&&e.setAttribute("dir",g),e.remove(),d?e[f?"insertBefore":"insertAfter"](d):l.append(e,f),d=e}function G(a){function l(d){var f=a[d?"getPrevious":"getNext"](t);f&&f.type==CKEDITOR.NODE_ELEMENT&&f.is(a.getName())&&(F(a,f,null,!d),a.remove(), +a=f)}l();l(1)}function H(a){return a.type==CKEDITOR.NODE_ELEMENT&&(a.getName()in CKEDITOR.dtd.$block||a.getName()in CKEDITOR.dtd.$listItem)&&CKEDITOR.dtd[a.getName()]["#"]}function D(a,l,d){a.fire("saveSnapshot");d.enlarge(CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS);var f=d.extractContents();l.trim(!1,!0);var e=l.createBookmark(),g=new CKEDITOR.dom.elementPath(l.startContainer),b=g.block,g=g.lastElement.getAscendant("li",1)||b,h=new CKEDITOR.dom.elementPath(d.startContainer),k=h.contains(CKEDITOR.dtd.$listItem), +h=h.contains(CKEDITOR.dtd.$list);b?(b=b.getBogus())&&b.remove():h&&(b=h.getPrevious(t))&&z(b)&&b.remove();(b=f.getLast())&&b.type==CKEDITOR.NODE_ELEMENT&&b.is("br")&&b.remove();(b=l.startContainer.getChild(l.startOffset))?f.insertBefore(b):l.startContainer.append(f);k&&(f=A(k))&&(g.contains(k)?(F(f,k.getParent(),k),f.remove()):g.append(f));for(;d.checkStartOfBlock()&&d.checkEndOfBlock();){h=d.startPath();f=h.block;if(!f)break;f.is("li")&&(g=f.getParent(),f.equals(g.getLast(t))&&f.equals(g.getFirst(t))&& +(f=g));d.moveToPosition(f,CKEDITOR.POSITION_BEFORE_START);f.remove()}d=d.clone();f=a.editable();d.setEndAt(f,CKEDITOR.POSITION_BEFORE_END);d=new CKEDITOR.dom.walker(d);d.evaluator=function(a){return t(a)&&!z(a)};(d=d.next())&&d.type==CKEDITOR.NODE_ELEMENT&&d.getName()in CKEDITOR.dtd.$list&&G(d);l.moveToBookmark(e);l.select();a.fire("saveSnapshot")}function A(a){return(a=a.getLast(t))&&a.type==CKEDITOR.NODE_ELEMENT&&a.getName()in u?a:null}var u={ol:1,ul:1},P=CKEDITOR.dom.walker.whitespaces(),I=CKEDITOR.dom.walker.bookmark(), +t=function(a){return!(P(a)||I(a))},z=CKEDITOR.dom.walker.bogus();CKEDITOR.plugins.list={listToArray:function(a,l,d,f,e){if(!u[a.getName()])return[];f||(f=0);d||(d=[]);for(var g=0,b=a.getChildCount();g=b.$.documentMode&&m.append(b.createText(" ")),m.append(c.listNode),c=c.nextIndex;else if(-1==q.indent&&!d&&g){u[g.getName()]?(m=q.element.clone(!1,!0),n!=g.getDirection(1)&&m.setAttribute("dir",n)):m=new CKEDITOR.dom.documentFragment(b);var k=g.getDirection(1)!=n,w=q.element,B=w.getAttribute("class"),E=w.getAttribute("style"),J=m.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT&&(f!=CKEDITOR.ENTER_BR||k||E||B),v,z=q.contents.length,x;for(g=0;gc&&at.version?" ":J,f=a.hotNode&&a.hotNode.getText()==d&&a.element.equals(a.hotNode)&&a.lastCmdDirection===!!c;S(a,function(d){f&&a.hotNode&&a.hotNode.remove();d[c?"insertAfter":"insertBefore"](b);d.setAttributes({"data-cke-magicline-hot":1,"data-cke-magicline-dir":!!c});a.lastCmdDirection=!!c});t.ie||a.enterMode==CKEDITOR.ENTER_BR||a.hotNode.scrollIntoView();a.line.detach()}return function(b){b=b.getSelection().getStartElement(); +var e;b=b.getAscendant(Z,1);if(!aa(a,b)&&b&&!b.equals(a.editable)&&!b.contains(a.editable)){(e=P(b))&&"false"==e.getAttribute("contenteditable")&&(b=e);a.element=b;e=w(a,b,!c);var f;n(e)&&e.is(a.triggers)&&e.is(ma)&&(!w(a,e,!c)||(f=w(a,e,!c))&&n(f)&&f.is(a.triggers))?d(e):(f=O(a,b),n(f)&&(w(a,f,!c)?(b=w(a,f,!c))&&n(b)&&b.is(a.triggers)&&d(f):d(f)))}}}()}}function A(a,c){if(!c||c.type!=CKEDITOR.NODE_ELEMENT||!c.$)return!1;var d=a.line;return d.wrap.equals(c)||d.wrap.contains(c)}function n(a){return a&& +a.type==CKEDITOR.NODE_ELEMENT&&a.$}function u(a){if(!n(a))return!1;var c;(c=ba(a))||(n(a)?(c={left:1,right:1,center:1},c=!(!c[a.getComputedStyle("float")]&&!c[a.getAttribute("align")])):c=!1);return c}function ba(a){return!!{absolute:1,fixed:1}[a.getComputedStyle("position")]}function L(a,c){return n(c)?c.is(a.triggers):null}function aa(a,c){if(!c)return!1;for(var d=c.getParents(1),b=d.length;b--;)for(var e=a.tabuList.length;e--;)if(d[b].hasAttribute(a.tabuList[e]))return!0;return!1}function na(a, +c,d){c=c[d?"getLast":"getFirst"](function(b){return a.isRelevant(b)&&!b.is(oa)});if(!c)return!1;r(a,c);return d?c.size.top>a.mouse.y:c.size.bottom(a.inInlineMode?b.editable.top+b.editable.height/2:Math.min(b.editable.height,b.pane.height)/2),c=c[f?"getLast":"getFirst"](function(a){return!(E(a)||F(a))});if(!c)return null;A(a,c)&&(c=a.line.wrap[f?"getPrevious":"getNext"](function(a){return!(E(a)||F(a))})); +if(!n(c)||u(c)||!L(a,c))return null;r(a,c);return!f&&0<=c.size.top&&q(d.y,0,c.size.top+e)?(a=a.inInlineMode||0===b.scroll.y?C:x,new z([null,c,I,M,a])):f&&c.size.bottom<=b.pane.height&&q(d.y,c.size.bottom-e,b.pane.height)?(a=a.inInlineMode||q(c.size.bottom,b.pane.height-e,b.pane.height)?D:x,new z([c,null,da,M,a])):null}function ea(a){var c=a.mouse,d=a.view,b=a.triggerOffset,e=O(a);if(!e)return null;r(a,e);var b=Math.min(b,0|e.size.outerHeight/2),f=[],k,h;if(q(c.y,e.size.top-1,e.size.top+b))h=!1;else if(q(c.y, +e.size.bottom-b,e.size.bottom+1))h=!0;else return null;if(u(e)||na(a,e,h)||e.getParent().is(fa))return null;var g=w(a,e,!h);if(g){if(g&&g.type==CKEDITOR.NODE_TEXT)return null;if(n(g)){if(u(g)||!L(a,g)||g.getParent().is(fa))return null;f=[g,e][h?"reverse":"concat"]().concat([T,M])}}else e.equals(a.editable[h?"getLast":"getFirst"](a.isRelevant))?(H(a),h&&q(c.y,e.size.bottom-b,d.pane.height)&&q(e.size.bottom,d.pane.height-b,d.pane.height)?k=D:q(c.y,0,e.size.top+b)&&(k=C)):k=x,f=[null,e][h?"reverse": +"concat"]().concat([h?da:I,M,k,e.equals(a.editable[h?"getLast":"getFirst"](a.isRelevant))?h?D:C:x]);return 0 in f?new z(f):null}function U(a,c,d,b){for(var e=c.getDocumentPosition(),f={},k={},h={},g={},l=y.length;l--;)f[y[l]]=parseInt(c.getComputedStyle.call(c,"border-"+y[l]+"-width"),10)||0,h[y[l]]=parseInt(c.getComputedStyle.call(c,"padding-"+y[l]),10)||0,k[y[l]]=parseInt(c.getComputedStyle.call(c,"margin-"+y[l]),10)||0;d&&!b||N(a,b);g.top=e.y-(d?0:a.view.scroll.y);g.left=e.x-(d?0:a.view.scroll.x); +g.outerWidth=c.$.offsetWidth;g.outerHeight=c.$.offsetHeight;g.height=g.outerHeight-(h.top+h.bottom+f.top+f.bottom);g.width=g.outerWidth-(h.left+h.right+f.left+f.right);g.bottom=g.top+g.outerHeight;g.right=g.left+g.outerWidth;a.inInlineMode&&(g.scroll={top:c.$.scrollTop,left:c.$.scrollLeft});return v({border:f,padding:h,margin:k,ignoreScroll:d},g,!0)}function r(a,c,d){if(!n(c))return c.size=null;if(!c.size)c.size={};else if(c.size.ignoreScroll==d&&c.size.date>new Date-ga)return null;return v(c.size, +U(a,c,d),{date:+new Date},!0)}function H(a,c){a.view.editable=U(a,a.editable,c,!0)}function N(a,c){a.view||(a.view={});var d=a.view;if(!(!c&&d&&d.date>new Date-ga)){var b=a.win,d=b.getScrollPosition(),b=b.getViewPaneSize();v(a.view,{scroll:{x:d.x,y:d.y,width:a.doc.$.documentElement.scrollWidth-b.width,height:a.doc.$.documentElement.scrollHeight-b.height},pane:{width:b.width,height:b.height,bottom:b.height+d.y},date:+new Date},!0)}}function pa(a,c,d,b){for(var e=b,f=b,k=0,h=!1,g=!1,l=a.view.pane.height, +p=a.mouse;p.y+ke.left-f.x&&de.top-f.y&&cCKEDITOR.env.version,B=CKEDITOR.dtd,K={},I=128,da=64,T=32,M=16,C=4,D=2,x=1,J=" ",fa=B.$listItem,oa=B.$tableContent,ma=v({},B.$nonEditable,B.$empty),Z=B.$block,ga=100,Q="width:0px;height:0px;padding:0px;margin:0px;display:block;z-index:9999;color:#fff;position:absolute;font-size: 0px;line-height:0px;", +X=Q+"border-color:transparent;display:block;border-style:solid;",W="\x3cspan\x3e"+J+"\x3c/span\x3e";K[CKEDITOR.ENTER_BR]="br";K[CKEDITOR.ENTER_P]="p";K[CKEDITOR.ENTER_DIV]="div";z.prototype={set:function(a,c,d){this.properties=a+c+(d||x);return this},is:function(a){return(this.properties&a)==a}};var ha=function(){function a(a,d){var b=a.$.elementFromPoint(d.x,d.y);return b&&b.nodeType?new CKEDITOR.dom.element(b):null}return function(c,d,b){if(!c.mouse)return null;var e=c.doc,f=c.line.wrap;b=b||c.mouse; +var k=a(e,b);d&&A(c,k)&&(f.hide(),k=a(e,b),f.show());return!k||k.type!=CKEDITOR.NODE_ELEMENT||!k.$||t.ie&&9>t.version&&!c.boundary.equals(k)&&!c.boundary.contains(k)?null:k}}(),E=CKEDITOR.dom.walker.whitespaces(),F=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_COMMENT),ia=function(){function a(a){var b=a.element,e,f,k;if(!n(b)||b.contains(a.editable)||b.isReadOnly())return null;k=pa(a,function(a,b){return!b.equals(a)},function(a,b){return ha(a,!0,b)},b);e=k.upper;f=k.lower;if(V(a,e,f))return k.set(T, +8);if(e&&b.contains(e))for(;!e.getParent().equals(b);)e=e.getParent();else e=b.getFirst(function(b){return c(a,b)});if(f&&b.contains(f))for(;!f.getParent().equals(b);)f=f.getParent();else f=b.getLast(function(b){return c(a,b)});if(!e||!f)return null;r(a,e);r(a,f);if(!q(a.mouse.y,e.size.top,f.size.bottom))return null;for(var b=Number.MAX_VALUE,h,g,l,p;f&&!f.equals(e)&&(g=e.getNext(a.isRelevant));)h=Math.abs(ka(a,e,g)-a.mouse.y),ha.status||304==a.status||0===a.status||1223==a.status))return null;switch(b){case "text":return a.responseText;case "xml":var c=a.responseXML; +return new CKEDITOR.xml(c&&c.firstChild?c:a.responseText);case "arraybuffer":return a.response;default:return null}}function g(a,b,c){var e=!!b,d=k();if(!d)return null;e&&"text"!==c&&"xml"!==c&&(d.responseType=c);d.open("GET",a,e);e&&(d.onreadystatechange=function(){4==d.readyState&&(b(h(d,c)),d=null)});d.send(null);return e?"":h(d,c)}function l(a,b,c,e,d){var f=k();if(!f)return null;f.open("POST",a,!0);f.onreadystatechange=function(){4==f.readyState&&(e&&e(h(f,d)),f=null)};f.setRequestHeader("Content-type", +c||"application/x-www-form-urlencoded; charset\x3dUTF-8");f.send(b)}return{load:function(a,b,c){return g(a,b,c||"text")},post:function(a,b,c,e){return l(a,b,c,e,"text")},loadXml:function(a,b){return g(a,b,"xml")},loadText:function(a,b){return g(a,b,"text")},loadBinary:function(a,b){return g(a,b,"arraybuffer")}}}()})();(function(){function n(a,b){return CKEDITOR.tools.array.filter(a,function(a){return a.canHandle(b)}).sort(function(a,c){return a.priority===c.priority?0:a.priority-c.priority})}function k(a,b){var d=a.shift();d&&d.handle(b,function(){k(a,b)})}function p(a){var b=CKEDITOR.tools.array.reduce(a,function(a,c){return CKEDITOR.tools.array.isArray(c.filters)?a.concat(c.filters):a},[]);return CKEDITOR.tools.array.filter(b,function(a,c){return CKEDITOR.tools.array.indexOf(b,a)===c})}function l(a,b){var d= +0,c,e;if(!CKEDITOR.tools.array.isArray(a)||0===a.length)return!0;c=CKEDITOR.tools.array.filter(a,function(a){return-1===CKEDITOR.tools.array.indexOf(m,a)});if(0=CKEDITOR.env.version;return!(CKEDITOR.env.webkit&&!CKEDITOR.env.chrome)&&!b},init:function(b){if(this.isSupportedEnvironment()){var d=CKEDITOR.plugins.getPath("pastetools"),f=this.path;b.pasteTools.register({priority:100,filters:[CKEDITOR.getUrl(d+"filter/common.js"),CKEDITOR.getUrl(d+"filter/image.js"),CKEDITOR.getUrl(f+"filter/default.js")],canHandle:function(a){a= +a.data;return(a=a.dataTransfer.getData("text/html",!0)||a.dataValue)?"libreoffice"===CKEDITOR.plugins.pastetools.getContentGeneratorName(a):!1},handle:function(a,d){var c=a.data,e=c.dataValue||CKEDITOR.plugins.pastetools.getClipboardData(c,"text/html");c.dontFilter=!0;e=CKEDITOR.pasteFilters.image(e,b,CKEDITOR.plugins.pastetools.getClipboardData(c,"text/rtf"));c.dataValue=CKEDITOR.pasteFilters.libreoffice(e,b);!0===b.config.forcePasteAsPlainText&&(c.type="text");d()}})}}})})();(function(){CKEDITOR.plugins.add("pastefromword",{requires:"pastetools",init:function(a){var f=0,e=CKEDITOR.plugins.getPath("pastetools"),h=this.path,k=void 0===a.config.pasteFromWord_inlineImages?!0:a.config.pasteFromWord_inlineImages,e=[CKEDITOR.getUrl(e+"filter/common.js"),CKEDITOR.getUrl(e+"filter/image.js"),CKEDITOR.getUrl(h+"filter/default.js")];a.addCommand("pastefromword",{canUndo:!1,async:!0,exec:function(a,b){f=1;a.execCommand("paste",{type:"html",notification:b&&"undefined"!==typeof b.notification? +b.notification:!0})}});CKEDITOR.plugins.clipboard.addPasteButton(a,"PasteFromWord",{label:a.lang.pastefromword.toolbar,command:"pastefromword",toolbar:"clipboard,50"});a.pasteTools.register({filters:a.config.pasteFromWordCleanupFile?[a.config.pasteFromWordCleanupFile]:e,canHandle:function(a){a=CKEDITOR.plugins.pastetools.getClipboardData(a.data,"text/html");var b=CKEDITOR.plugins.pastetools.getContentGeneratorName(a),d=/(class="?Mso|style=["'][^"]*?\bmso\-|w:WordDocument||<\/font>)/,b=b?"microsoft"=== +b:d.test(a);return a&&(f||b)},handle:function(e,b){var d=e.data,c=CKEDITOR.plugins.pastetools.getClipboardData(d,"text/html"),g=CKEDITOR.plugins.pastetools.getClipboardData(d,"text/rtf"),c={dataValue:c,dataTransfer:{"text/rtf":g}};if(!1!==a.fire("pasteFromWord",c)||f){d.dontFilter=!0;if(f||!a.config.pasteFromWordPromptCleanup||confirm(a.lang.pastefromword.confirmCleanup))c.dataValue=CKEDITOR.cleanWord(c.dataValue,a),CKEDITOR.plugins.clipboard.isCustomDataTypesSupported&&k&&CKEDITOR.pasteFilters.image&& +(c.dataValue=CKEDITOR.pasteFilters.image(c.dataValue,a,g)),a.fire("afterPasteFromWord",c),d.dataValue=c.dataValue,!0===a.config.forcePasteAsPlainText?d.type="text":CKEDITOR.plugins.clipboard.isCustomCopyCutSupported||"allow-word"!==a.config.forcePasteAsPlainText||(d.type="html");f=0;b()}}})}})})();(function(){var f={canUndo:!1,async:!0,exec:function(a,b){var c=a.lang,e=CKEDITOR.tools.keystrokeToString(c.common.keyboard,a.getCommandKeystroke(CKEDITOR.env.ie?a.commands.paste:this)),d=b&&"undefined"!==typeof b.notification?b.notification:!b||!b.from||"keystrokeHandler"===b.from&&CKEDITOR.env.ie,c=d&&"string"===typeof d?d:c.pastetext.pasteNotification.replace(/%1/,'\x3ckbd aria-label\x3d"'+e.aria+'"\x3e'+e.display+"\x3c/kbd\x3e");a.execCommand("paste",{type:"text",notification:d?c:!1})}};CKEDITOR.plugins.add("pastetext", +{requires:"clipboard",init:function(a){var b=CKEDITOR.env.safari?CKEDITOR.CTRL+CKEDITOR.ALT+CKEDITOR.SHIFT+86:CKEDITOR.CTRL+CKEDITOR.SHIFT+86;a.addCommand("pastetext",f);a.setKeystroke(b,"pastetext");CKEDITOR.plugins.clipboard.addPasteButton(a,"PasteText",{label:a.lang.pastetext.button,command:"pastetext",toolbar:"clipboard,40"});if(a.config.forcePasteAsPlainText)a.on("beforePaste",function(a){"html"!=a.data.type&&(a.data.type="text")});a.on("pasteState",function(b){a.getCommand("pastetext").setState(b.data)})}})})();(function(){function k(a,f){var g=CKEDITOR.plugins.getPath("preview"),b=a.config,e=a.title,h=function(){var a=location.origin,c=location.pathname;if(!b.baseHref&&!CKEDITOR.env.gecko)return"";if(b.baseHref)return'\x3cbase href\x3d"{HREF}"\x3e'.replace("{HREF}",b.baseHref);c=c.split("/");c.pop();c=c.join("/");return'\x3cbase href\x3d"{HREF}"\x3e'.replace("{HREF}",a+c+"/")}();return b.fullPage?a.getData().replace(//,"$\x26"+h).replace(/[^>]*(?=<\/title>)/,"$\x26 \x26mdash; "+e):b.docType+'\x3chtml dir\x3d"'+ +b.contentsLangDirection+'"\x3e\x3chead\x3e'+h+"\x3ctitle\x3e"+e+"\x3c/title\x3e"+CKEDITOR.tools.buildStyleHtml(b.contentsCss)+'\x3clink rel\x3d"stylesheet" media\x3d"screen" href\x3d"'+g+'styles/screen.css"\x3e\x3c/head\x3e'+function(){var b="\x3cbody\x3e",c=a.document&&a.document.getBody();if(!c)return b;c.getAttribute("id")&&(b=b.replace("\x3e",' id\x3d"'+c.getAttribute("id")+'"\x3e'));c.getAttribute("class")&&(b=b.replace("\x3e",' class\x3d"'+c.getAttribute("class")+'"\x3e'));return b}()+a.getData()+ +(f?"\x3cscript\x3e"+(CKEDITOR.env.ie?"window.onload":"document.onreadystatechange")+" \x3d function() { previewCallback(); } \x3c/script\x3e":"")+"\x3c/body\x3e\x3c/html\x3e"}function l(){var a=window.screen;return{width:Math.round(.8*a.width),height:Math.round(.7*a.height),left:Math.round(.1*a.width)}}function m(){var a=CKEDITOR.plugins.getPath("preview");return CKEDITOR.env.gecko?CKEDITOR.getUrl(a+"preview.html"):""}CKEDITOR.plugins.add("preview",{init:function(a){a.addCommand("preview",{modes:{wysiwyg:1}, +canUndo:!1,readOnly:1,exec:function(){CKEDITOR.plugins.preview.createPreview(a)}});a.ui.addButton&&a.ui.addButton("Preview",{label:a.lang.preview.preview,command:"preview",toolbar:"document,40"})}});CKEDITOR.plugins.preview={createPreview:function(a,f){var g={dataValue:k(a,f)},b=l(),e;e=CKEDITOR.env.ie||CKEDITOR.env.gecko?"javascript:void( (function(){document.open();"+("("+CKEDITOR.tools.fixDomain+")();").replace(/\/\/.*?\n/g,"").replace(/parent\./g,"window.opener.")+"document.write( window.opener._cke_htmlToLoad );document.close();window.opener._cke_htmlToLoad \x3d null;})() )": +null;var h=m(),d,c;if(!1===a.fire("contentPreview",g))return!1;if(e||h)window._cke_htmlToLoad=g.dataValue;d=window.open(h,null,["toolbar\x3dyes,location\x3dno,status\x3dyes,menubar\x3dyes,scrollbars\x3dyes,resizable\x3dyes","width\x3d"+b.width,"height\x3d"+b.height,"left\x3d"+b.left].join());c=new CKEDITOR.dom.window(d);e&&d&&(d.location=e);window._cke_htmlToLoad||(b=d.document,b.open(),b.write(g.dataValue),b.close());f&&(d.previewCallback=function(){"complete"===d.document.readyState&&f(c)},d.previewCallback()); +return c}}})();(function(){CKEDITOR.plugins.add("print",{requires:"preview",init:function(a){a.addCommand("print",CKEDITOR.plugins.print);a.ui.addButton&&a.ui.addButton("Print",{label:a.lang.print.toolbar,command:"print",toolbar:"document,50"})}});CKEDITOR.plugins.print={exec:function(a){CKEDITOR.plugins.preview.createPreview(a,function(a){a=a.$;CKEDITOR.env.gecko?a.print():a.document.execCommand("Print");a.close()})},canUndo:!1,readOnly:1,modes:{wysiwyg:1}}})();CKEDITOR.plugins.add("removeformat",{init:function(a){a.addCommand("removeFormat",CKEDITOR.plugins.removeformat.commands.removeformat);a.ui.addButton&&a.ui.addButton("RemoveFormat",{label:a.lang.removeformat.toolbar,command:"removeFormat",toolbar:"cleanup,10"})}}); +CKEDITOR.plugins.removeformat={commands:{removeformat:{exec:function(a){for(var h=a._.removeFormatRegex||(a._.removeFormatRegex=new RegExp("^(?:"+a.config.removeFormatTags.replace(/,/g,"|")+")$","i")),c=a._.removeAttributes||(a._.removeAttributes=a.config.removeFormatAttributes.split(",")),e=CKEDITOR.plugins.removeformat.filter,m=a.getSelection().getRanges(),n=m.createIterator(),p=function(a){return a.type==CKEDITOR.NODE_ELEMENT},f;f=n.getNextRange();){f.enlarge(CKEDITOR.ENLARGE_INLINE);var l=f.createBookmark(), +b=l.startNode,d=l.endNode,k=function(b){for(var c=a.elementPath(b),f=c.elements,d=1,g;(g=f[d])&&!g.equals(c.block)&&!g.equals(c.blockLimit);d++)h.test(g.getName())&&e(a,g)&&b.breakParent(g)};k(b);if(d)for(k(d),b=b.getNextSourceNode(!0,CKEDITOR.NODE_ELEMENT);b&&!b.equals(d);)if(b.isReadOnly()){if(b.getPosition(d)&CKEDITOR.POSITION_CONTAINS)break;b=b.getNext(p)}else k=b.getNextSourceNode(!1,CKEDITOR.NODE_ELEMENT),"img"==b.getName()&&b.data("cke-realelement")||!e(a,b)||(h.test(b.getName())?b.remove(1): +(b.removeAttributes(c),a.fire("removeFormatCleanup",b))),b=k;f.moveToBookmark(l)}a.forceNextSelectionCheck();a.getSelection().selectRanges(m)}}},filter:function(a,h){for(var c=a._.removeFormatFilters||[],e=0;ec.width&&(a.resize_minWidth=c.width);a.resize_minHeight>c.height&&(a.resize_minHeight=c.height);CKEDITOR.document.on("mousemove",f);CKEDITOR.document.on("mouseup",k);b.document&&(b.document.on("mousemove",f),b.document.on("mouseup",k));d.preventDefault&&d.preventDefault()});b.on("destroy", +function(){CKEDITOR.tools.removeFunction(q)});b.on("uiSpace",function(a){if("bottom"==a.data.space){var e="";h&&!p&&(e=" cke_resizer_horizontal");!h&&p&&(e=" cke_resizer_vertical");var c='\x3cspan id\x3d"'+r+'" class\x3d"cke_resizer'+e+" cke_resizer_"+g+'" title\x3d"'+CKEDITOR.tools.htmlEncode(b.lang.common.resize)+'" onmousedown\x3d"CKEDITOR.tools.callFunction('+q+', event)"\x3e'+("ltr"==g?"◢":"◣")+"\x3c/span\x3e";"ltr"==g&&"ltr"==e?a.data.html+=c:a.data.html=c+a.data.html}},b,null,100);b.on("maximize", +function(a){b.ui.space("resizer")[a.data==CKEDITOR.TRISTATE_ON?"hide":"show"]()})}}});(function(){var b={readOnly:1,modes:{wysiwyg:1,source:1},exec:function(a){if(a.fire("save")&&(a=a.element.$.form))try{a.submit()}catch(b){a.submit.click&&a.submit.click()}}};CKEDITOR.plugins.add("save",{init:function(a){a.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE&&(a.addCommand("save",b).startDisabled=!a.element.$.form,a.ui.addButton&&a.ui.addButton("Save",{label:a.lang.save.toolbar,command:"save",toolbar:"document,10"}))}})})();CKEDITOR.plugins.add("scayt",{requires:"menubutton,dialog",tabToOpen:null,dialogName:"scaytDialog",onLoad:function(a){"moono-lisa"==(CKEDITOR.skinName||a.config.skin)&&CKEDITOR.document.appendStyleSheet(CKEDITOR.getUrl(this.path+"skins/"+CKEDITOR.skin.name+"/scayt.css"));CKEDITOR.document.appendStyleSheet(CKEDITOR.getUrl(this.path+"dialogs/dialog.css"));var c=!1;CKEDITOR.on("instanceLoaded",function(a){if(!c&&CKEDITOR.plugins.autocomplete){c=!0;var b=CKEDITOR.plugins.autocomplete.prototype.getModel; +CKEDITOR.plugins.autocomplete.prototype.getModel=function(a){var d=this.editor;a=b.bind(this)(a);a.on("change-isActive",function(a){a.data?d.fire("autocompletePanelShow"):d.fire("autocompletePanelHide")});return a}}})},init:function(a){var c=this,d=CKEDITOR.plugins.scayt;this.bindEvents(a);this.parseConfig(a);this.addRule(a);CKEDITOR.dialog.add(this.dialogName,CKEDITOR.getUrl(this.path+"dialogs/options.js"));this.addMenuItems(a);var b=a.lang.scayt,e=CKEDITOR.env;a.ui.add("Scayt",CKEDITOR.UI_MENUBUTTON, +{label:b.text_title,title:a.plugins.wsc?a.lang.wsc.title:b.text_title,modes:{wysiwyg:!(e.ie&&(8>e.version||e.quirks))},toolbar:"spellchecker,20",refresh:function(){var b=a.ui.instances.Scayt.getState();a.scayt&&(b=d.state.scayt[a.name]?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF);a.fire("scaytButtonState",b)},onRender:function(){var b=this;a.on("scaytButtonState",function(a){void 0!==typeof a.data&&b.setState(a.data)})},onMenu:function(){var b=a.scayt;a.getMenuItem("scaytToggle").label=a.lang.scayt[b&& +d.state.scayt[a.name]?"btn_disable":"btn_enable"];var c={scaytToggle:CKEDITOR.TRISTATE_OFF,scaytOptions:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,scaytLangs:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,scaytDict:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,scaytAbout:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,WSC:a.plugins.wsc?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED};a.config.scayt_uiTabs[0]||delete c.scaytOptions;a.config.scayt_uiTabs[1]||delete c.scaytLangs; +a.config.scayt_uiTabs[2]||delete c.scaytDict;b&&!CKEDITOR.plugins.scayt.isNewUdSupported(b)&&(delete c.scaytDict,a.config.scayt_uiTabs[2]=0,CKEDITOR.plugins.scayt.alarmCompatibilityMessage());return c}});a.contextMenu&&a.addMenuItems&&(a.contextMenu.addListener(function(b,d){var e=a.scayt,l,m;e&&(m=e.getSelectionNode())&&(l=c.menuGenerator(a,m),e.showBanner("."+a.contextMenu._.definition.panel.className.split(" ").join(" .")));return l}),a.contextMenu._.onHide=CKEDITOR.tools.override(a.contextMenu._.onHide, +function(b){return function(){var d=a.scayt;d&&d.hideBanner();return b.apply(this)}}))},addMenuItems:function(a){var c=this,d=CKEDITOR.plugins.scayt;a.addMenuGroup("scaytButton");for(var b=a.config.scayt_contextMenuItemsOrder.split("|"),e=0;ea.config.scayt_maxSuggestions)a.config.scayt_maxSuggestions=3;if(void 0=== +a.config.scayt_minWordLength||"number"!=typeof a.config.scayt_minWordLength||1>a.config.scayt_minWordLength)a.config.scayt_minWordLength=3;if(void 0===a.config.scayt_customDictionaryIds||"string"!==typeof a.config.scayt_customDictionaryIds)a.config.scayt_customDictionaryIds="";if(void 0===a.config.scayt_userDictionaryName||"string"!==typeof a.config.scayt_userDictionaryName)a.config.scayt_userDictionaryName=null;if("string"===typeof a.config.scayt_uiTabs&&3===a.config.scayt_uiTabs.split(",").length){var d= +[],b=[];a.config.scayt_uiTabs=a.config.scayt_uiTabs.split(",");CKEDITOR.tools.search(a.config.scayt_uiTabs,function(a){1===Number(a)||0===Number(a)?(b.push(!0),d.push(Number(a))):b.push(!1)});null===CKEDITOR.tools.search(b,!1)?a.config.scayt_uiTabs=d:a.config.scayt_uiTabs=[1,1,1]}else a.config.scayt_uiTabs=[1,1,1];"string"!=typeof a.config.scayt_serviceProtocol&&(a.config.scayt_serviceProtocol=null);"string"!=typeof a.config.scayt_serviceHost&&(a.config.scayt_serviceHost=null);"string"!=typeof a.config.scayt_servicePort&& +(a.config.scayt_servicePort=null);"string"!=typeof a.config.scayt_servicePath&&(a.config.scayt_servicePath=null);a.config.scayt_moreSuggestions||(a.config.scayt_moreSuggestions="on");"string"!==typeof a.config.scayt_customerId&&(a.config.scayt_customerId="1:WvF0D4-UtPqN1-43nkD4-NKvUm2-daQqk3-LmNiI-z7Ysb4-mwry24-T8YrS3-Q2tpq2");"string"!==typeof a.config.scayt_customPunctuation&&(a.config.scayt_customPunctuation="-");"string"!==typeof a.config.scayt_srcUrl&&(a.config.scayt_srcUrl="https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js"); +"boolean"!==typeof CKEDITOR.config.scayt_handleCheckDirty&&(CKEDITOR.config.scayt_handleCheckDirty=!0);"boolean"!==typeof CKEDITOR.config.scayt_handleUndoRedo&&(CKEDITOR.config.scayt_handleUndoRedo=!0);CKEDITOR.config.scayt_handleUndoRedo=CKEDITOR.plugins.undo?CKEDITOR.config.scayt_handleUndoRedo:!1;a.config.scayt_ignoreAllCapsWords&&"boolean"!==typeof a.config.scayt_ignoreAllCapsWords&&(a.config.scayt_ignoreAllCapsWords=!1);a.config.scayt_ignoreDomainNames&&"boolean"!==typeof a.config.scayt_ignoreDomainNames&& +(a.config.scayt_ignoreDomainNames=!1);a.config.scayt_ignoreWordsWithMixedCases&&"boolean"!==typeof a.config.scayt_ignoreWordsWithMixedCases&&(a.config.scayt_ignoreWordsWithMixedCases=!1);a.config.scayt_ignoreWordsWithNumbers&&"boolean"!==typeof a.config.scayt_ignoreWordsWithNumbers&&(a.config.scayt_ignoreWordsWithNumbers=!1);if(a.config.scayt_disableOptionsStorage){var c=CKEDITOR.tools.isArray(a.config.scayt_disableOptionsStorage)?a.config.scayt_disableOptionsStorage:"string"===typeof a.config.scayt_disableOptionsStorage? +[a.config.scayt_disableOptionsStorage]:void 0,e="all options lang ignore-all-caps-words ignore-domain-names ignore-words-with-mixed-cases ignore-words-with-numbers".split(" "),f=["lang","ignore-all-caps-words","ignore-domain-names","ignore-words-with-mixed-cases","ignore-words-with-numbers"],g=CKEDITOR.tools.search,k=CKEDITOR.tools.indexOf;a.config.scayt_disableOptionsStorage=function(a){for(var b=[],d=0;de)return b;if(fthis.warningCounter&&(console.warn("You are using the latest version of SCAYT plugin for CKEditor with the old application version. In order to have access to the newest features, it is recommended to upgrade the application version to latest one as well. Contact us for more details at support@webspellchecker.net."), +this.warningCounter+=1)},isNewUdSupported:function(a){return a.getUserDictionary?!0:!1},reloadMarkup:function(a){var c;a&&(c=a.getScaytLangList(),a.reloadMarkup?a.reloadMarkup():(this.alarmCompatibilityMessage(),c&&c.ltr&&c.rtl&&a.fire("startSpellCheck, startGrammarCheck")))},replaceOldOptionsNames:function(a){for(var c in a)c in this.backCompatibilityMap&&(a[this.backCompatibilityMap[c]]=a[c],delete a[c])},createScayt:function(a){var c=this,d=CKEDITOR.plugins.scayt;this.loadScaytLibrary(a,function(a){function e(a){return new SCAYT.CKSCAYT(a, +function(){},function(){})}var f;a.window&&(f="BODY"==a.editable().$.nodeName?a.window.getFrame():a.editable());if(f){f={lang:a.config.scayt_sLang,container:f.$,customDictionary:a.config.scayt_customDictionaryIds,userDictionaryName:a.config.scayt_userDictionaryName,localization:a.langCode,customer_id:a.config.scayt_customerId,customPunctuation:a.config.scayt_customPunctuation,debug:a.config.scayt_debug,data_attribute_name:c.options.data_attribute_name,misspelled_word_class:c.options.misspelled_word_class, +problem_grammar_data_attribute:c.options.problem_grammar_data_attribute,problem_grammar_class:c.options.problem_grammar_class,"options-to-restore":a.config.scayt_disableOptionsStorage,focused:a.editable().hasFocus,ignoreElementsRegex:a.config.scayt_elementsToIgnore,ignoreGraytElementsRegex:a.config.grayt_elementsToIgnore,minWordLength:a.config.scayt_minWordLength,graytAutoStartup:a.config.grayt_autoStartup,charsToObserve:d.charsToObserve};a.config.scayt_serviceProtocol&&(f.service_protocol=a.config.scayt_serviceProtocol); +a.config.scayt_serviceHost&&(f.service_host=a.config.scayt_serviceHost);a.config.scayt_servicePort&&(f.service_port=a.config.scayt_servicePort);a.config.scayt_servicePath&&(f.service_path=a.config.scayt_servicePath);"boolean"===typeof a.config.scayt_ignoreAllCapsWords&&(f["ignore-all-caps-words"]=a.config.scayt_ignoreAllCapsWords);"boolean"===typeof a.config.scayt_ignoreDomainNames&&(f["ignore-domain-names"]=a.config.scayt_ignoreDomainNames);"boolean"===typeof a.config.scayt_ignoreWordsWithMixedCases&& +(f["ignore-words-with-mixed-cases"]=a.config.scayt_ignoreWordsWithMixedCases);"boolean"===typeof a.config.scayt_ignoreWordsWithNumbers&&(f["ignore-words-with-numbers"]=a.config.scayt_ignoreWordsWithNumbers);var g;try{g=e(f)}catch(k){c.alarmCompatibilityMessage(),delete f.charsToObserve,g=e(f)}g.subscribe("suggestionListSend",function(a){for(var b={},d=[],c=0;cCKEDITOR.env.version),g=l?":not([contenteditable\x3dfalse]):not(.cke_show_blocks_off)":"",d,h;for(c=b=e=f="";d=a.pop();)h=a.length?",":"",c+=".cke_show_blocks "+d+g+h,e+=".cke_show_blocks.cke_contents_ltr "+d+g+h,f+=".cke_show_blocks.cke_contents_rtl "+d+g+h,b+=".cke_show_blocks "+d+g+"{background-image:url("+CKEDITOR.getUrl(k+"images/block_"+d+".png")+")}";CKEDITOR.addCss((c+"{background-repeat:no-repeat;border:1px dotted gray;padding-top:8px}").concat(b,e+"{background-position:top left;padding-left:8px}", +f+"{background-position:top right;padding-right:8px}"));l||CKEDITOR.addCss(".cke_show_blocks [contenteditable\x3dfalse],.cke_show_blocks .cke_show_blocks_off{border:none;padding-top:0;background-image:none}.cke_show_blocks.cke_contents_rtl [contenteditable\x3dfalse],.cke_show_blocks.cke_contents_rtl .cke_show_blocks_off{padding-right:0}.cke_show_blocks.cke_contents_ltr [contenteditable\x3dfalse],.cke_show_blocks.cke_contents_ltr .cke_show_blocks_off{padding-left:0}")},init:function(a){function c(){b.refresh(a)} +if(!a.blockless){var b=a.addCommand("showblocks",k);b.canUndo=!1;a.config.startupOutlineBlocks&&b.setState(CKEDITOR.TRISTATE_ON);a.ui.addButton&&a.ui.addButton("ShowBlocks",{label:a.lang.showblocks.toolbar,command:"showblocks",toolbar:"tools,20"});a.on("mode",function(){b.state!=CKEDITOR.TRISTATE_DISABLED&&b.refresh(a)});a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE&&(a.on("focus",c),a.on("blur",c));a.on("contentDom",function(){b.state!=CKEDITOR.TRISTATE_DISABLED&&b.refresh(a)})}}})})();(function(){var f={preserveState:!0,editorFocus:!1,readOnly:1,exec:function(a){this.toggleState();this.refresh(a)},refresh:function(a){if(a.document){var b=this.state==CKEDITOR.TRISTATE_ON?"attachClass":"removeClass";a.editable()[b]("cke_show_borders")}}};CKEDITOR.plugins.add("showborders",{modes:{wysiwyg:1},onLoad:function(){var a;a=(CKEDITOR.env.ie6Compat?[".%1 table.%2,",".%1 table.%2 td, .%1 table.%2 th","{","border : #d3d3d3 1px dotted","}"]:".%1 table.%2,;.%1 table.%2 \x3e tr \x3e td, .%1 table.%2 \x3e tr \x3e th,;.%1 table.%2 \x3e tbody \x3e tr \x3e td, .%1 table.%2 \x3e tbody \x3e tr \x3e th,;.%1 table.%2 \x3e thead \x3e tr \x3e td, .%1 table.%2 \x3e thead \x3e tr \x3e th,;.%1 table.%2 \x3e tfoot \x3e tr \x3e td, .%1 table.%2 \x3e tfoot \x3e tr \x3e th;{;border : #d3d3d3 1px dotted;}".split(";")).join("").replace(/%2/g, +"cke_show_border").replace(/%1/g,"cke_show_borders ");CKEDITOR.addCss(a)},init:function(a){var b=a.addCommand("showborders",f);b.canUndo=!1;!1!==a.config.startupShowBorders&&b.setState(CKEDITOR.TRISTATE_ON);a.on("mode",function(){b.state!=CKEDITOR.TRISTATE_DISABLED&&b.refresh(a)},null,null,100);a.on("contentDom",function(){b.state!=CKEDITOR.TRISTATE_DISABLED&&b.refresh(a)});a.on("removeFormatCleanup",function(d){d=d.data;a.getCommand("showborders").state==CKEDITOR.TRISTATE_ON&&d.is("table")&&(!d.hasAttribute("border")|| +0>=parseInt(d.getAttribute("border"),10))&&d.addClass("cke_show_border")})},afterInit:function(a){var b=a.dataProcessor;a=b&&b.dataFilter;b=b&&b.htmlFilter;a&&a.addRules({elements:{table:function(a){a=a.attributes;var b=a["class"],c=parseInt(a.border,10);c&&!(0>=c)||b&&-1!=b.indexOf("cke_show_border")||(a["class"]=(b||"")+" cke_show_border")}}});b&&b.addRules({elements:{table:function(a){a=a.attributes;var b=a["class"];b&&(a["class"]=b.replace("cke_show_border","").replace(/\s{2}/," ").replace(/^\s+|\s+$/, +""))}}})}});CKEDITOR.on("dialogDefinition",function(a){var b=a.data.name;if("table"==b||"tableProperties"==b)if(a=a.data.definition,b=a.getContents("info").get("txtBorder"),b.commit=CKEDITOR.tools.override(b.commit,function(a){return function(b,c){a.apply(this,arguments);var e=parseInt(this.getValue(),10);c[!e||0>=e?"addClass":"removeClass"]("cke_show_border")}}),a=(a=a.getContents("advanced"))&&a.get("advCSSClasses"))a.setup=CKEDITOR.tools.override(a.setup,function(a){return function(){a.apply(this, +arguments);this.setValue(this.getValue().replace(/cke_show_border/,""))}}),a.commit=CKEDITOR.tools.override(a.commit,function(a){return function(b,c){a.apply(this,arguments);parseInt(c.getAttribute("border"),10)||c.addClass("cke_show_border")}})})})();CKEDITOR.plugins.add("smiley",{requires:"dialog",init:function(a){a.config.smiley_path=a.config.smiley_path||this.path+"images/";a.addCommand("smiley",new CKEDITOR.dialogCommand("smiley",{allowedContent:"img[alt,height,!src,title,width]",requiredContent:"img"}));a.ui.addButton&&a.ui.addButton("Smiley",{label:a.lang.smiley.toolbar,command:"smiley",toolbar:"insert,50"});CKEDITOR.dialog.add("smiley",this.path+"dialogs/smiley.js")}});CKEDITOR.config.smiley_images="regular_smile.png sad_smile.png wink_smile.png teeth_smile.png confused_smile.png tongue_smile.png embarrassed_smile.png omg_smile.png whatchutalkingabout_smile.png angry_smile.png angel_smile.png shades_smile.png devil_smile.png cry_smile.png lightbulb.png thumbs_down.png thumbs_up.png heart.png broken_heart.png kiss.png envelope.png".split(" "); +CKEDITOR.config.smiley_descriptions="smiley;sad;wink;laugh;frown;cheeky;blush;surprise;indecision;angry;angel;cool;devil;crying;enlightened;no;yes;heart;broken heart;kiss;mail".split(";");(function(){CKEDITOR.plugins.add("sourcearea",{init:function(a){function d(){var a=e&&this.equals(CKEDITOR.document.getActive());this.hide();this.setStyle("height",this.getParent().$.clientHeight+"px");this.setStyle("width",this.getParent().$.clientWidth+"px");this.show();a&&this.focus()}if(a.elementMode!=CKEDITOR.ELEMENT_MODE_INLINE){var f=CKEDITOR.plugins.sourcearea;a.addMode("source",function(e){var b=a.ui.space("contents").getDocument().createElement("textarea");b.setStyles(CKEDITOR.tools.extend({width:CKEDITOR.env.ie7Compat? +"99%":"100%",height:"100%",resize:"none",outline:"none","text-align":"left"},CKEDITOR.tools.cssVendorPrefix("tab-size",a.config.sourceAreaTabSize||4)));b.setAttribute("dir","ltr");b.addClass("cke_source").addClass("cke_reset").addClass("cke_enable_context_menu");a.ui.space("contents").append(b);b=a.editable(new c(a,b));b.setData(a.getData(1));CKEDITOR.env.ie&&(b.attachListener(a,"resize",d,b),b.attachListener(CKEDITOR.document.getWindow(),"resize",d,b),CKEDITOR.tools.setTimeout(d,0,b));a.fire("ariaWidget", +this);e()});a.addCommand("source",f.commands.source);a.ui.addButton&&a.ui.addButton("Source",{isToggle:!0,label:a.lang.sourcearea.toolbar,command:"source",toolbar:"mode,10"});a.on("mode",function(){a.getCommand("source").setState("source"==a.mode?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF)});var e=CKEDITOR.env.ie&&9==CKEDITOR.env.version}}});var c=CKEDITOR.tools.createClass({base:CKEDITOR.editable,proto:{setData:function(a){this.setValue(a);this.status="ready";this.editor.fire("dataReady")},getData:function(){return this.getValue()}, +insertHtml:function(){},insertElement:function(){},insertText:function(){},setReadOnly:function(a){this[(a?"set":"remove")+"Attribute"]("readOnly","readonly")},detach:function(){c.baseProto.detach.call(this);this.clearCustomData();this.remove()}}})})(); +CKEDITOR.plugins.sourcearea={commands:{source:{modes:{wysiwyg:1,source:1},editorFocus:!1,readOnly:1,exec:function(c){"wysiwyg"==c.mode&&c.fire("saveSnapshot");c.getCommand("source").setState(CKEDITOR.TRISTATE_DISABLED);c.setMode("source"==c.mode?"wysiwyg":"source")},canUndo:!1}}};CKEDITOR.plugins.add("specialchar",{availableLangs:{af:1,ar:1,az:1,bg:1,ca:1,cs:1,cy:1,da:1,de:1,"de-ch":1,el:1,en:1,"en-au":1,"en-ca":1,"en-gb":1,eo:1,es:1,"es-mx":1,et:1,eu:1,fa:1,fi:1,fr:1,"fr-ca":1,gl:1,he:1,hr:1,hu:1,id:1,it:1,ja:1,km:1,ko:1,ku:1,lt:1,lv:1,nb:1,nl:1,no:1,oc:1,pl:1,pt:1,"pt-br":1,ro:1,ru:1,si:1,sk:1,sl:1,sq:1,sr:1,"sr-latn":1,sv:1,th:1,tr:1,tt:1,ug:1,uk:1,vi:1,zh:1,"zh-cn":1},requires:"dialog",init:function(a){var c=this;CKEDITOR.dialog.add("specialchar",this.path+"dialogs/specialchar.js"); +a.addCommand("specialchar",{exec:function(){var b=a.langCode,b=c.availableLangs[b]?b:c.availableLangs[b.replace(/-.*/,"")]?b.replace(/-.*/,""):"en";CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(c.path+"dialogs/lang/"+b+".js"),function(){CKEDITOR.tools.extend(a.lang.specialchar,c.langEntries[b]);a.openDialog("specialchar")})},modes:{wysiwyg:1},canUndo:!1});a.ui.addButton&&a.ui.addButton("SpecialChar",{label:a.lang.specialchar.toolbar,command:"specialchar",toolbar:"insert,50"})}}); +CKEDITOR.config.specialChars="! \x26quot; # $ % \x26amp; ' ( ) * + - . / 0 1 2 3 4 5 6 7 8 9 : ; \x26lt; \x3d \x26gt; ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ \x26euro; \x26lsquo; \x26rsquo; \x26ldquo; \x26rdquo; \x26ndash; \x26mdash; \x26iexcl; \x26cent; \x26pound; \x26curren; \x26yen; \x26brvbar; \x26sect; \x26uml; \x26copy; \x26ordf; \x26laquo; \x26not; \x26reg; \x26macr; \x26deg; \x26sup2; \x26sup3; \x26acute; \x26micro; \x26para; \x26middot; \x26cedil; \x26sup1; \x26ordm; \x26raquo; \x26frac14; \x26frac12; \x26frac34; \x26iquest; \x26Agrave; \x26Aacute; \x26Acirc; \x26Atilde; \x26Auml; \x26Aring; \x26AElig; \x26Ccedil; \x26Egrave; \x26Eacute; \x26Ecirc; \x26Euml; \x26Igrave; \x26Iacute; \x26Icirc; \x26Iuml; \x26ETH; \x26Ntilde; \x26Ograve; \x26Oacute; \x26Ocirc; \x26Otilde; \x26Ouml; \x26times; \x26Oslash; \x26Ugrave; \x26Uacute; \x26Ucirc; \x26Uuml; \x26Yacute; \x26THORN; \x26szlig; \x26agrave; \x26aacute; \x26acirc; \x26atilde; \x26auml; \x26aring; \x26aelig; \x26ccedil; \x26egrave; \x26eacute; \x26ecirc; \x26euml; \x26igrave; \x26iacute; \x26icirc; \x26iuml; \x26eth; \x26ntilde; \x26ograve; \x26oacute; \x26ocirc; \x26otilde; \x26ouml; \x26divide; \x26oslash; \x26ugrave; \x26uacute; \x26ucirc; \x26uuml; \x26yacute; \x26thorn; \x26yuml; \x26OElig; \x26oelig; \x26#372; \x26#374 \x26#373 \x26#375; \x26sbquo; \x26#8219; \x26bdquo; \x26hellip; \x26trade; \x26#9658; \x26bull; \x26rarr; \x26rArr; \x26hArr; \x26diams; \x26asymp;".split(" ");(function(){CKEDITOR.plugins.add("stylescombo",{requires:"richcombo",init:function(c){var l=c.config,h=c.lang.stylescombo,e={},k=[],m=[];c.on("stylesSet",function(a){if(a=a.data.styles){for(var b,f,d,g=0,n=a.length;g=g)for(b=this.getNextSourceNode(k,CKEDITOR.NODE_ELEMENT);b;){if(b.isVisible()&&0===b.getTabIndex()){d=b;break}b=b.getNextSourceNode(!1,CKEDITOR.NODE_ELEMENT)}else for(b=this.getDocument().getBody().getFirst();b=b.getNextSourceNode(!1,CKEDITOR.NODE_ELEMENT);){if(!f)if(!c&&b.equals(this)){if(c=!0,k){if(!(b=b.getNextSourceNode(!0,CKEDITOR.NODE_ELEMENT)))break;f=1}}else c&&!this.contains(b)&& +(f=1);if(b.isVisible()&&!(0>(a=b.getTabIndex()))){if(f&&a==g){d=b;break}a>g&&(!d||!e||a(b=a.getTabIndex())))if(0>=g){if(f&&0===b){d=a;break}b>e&&(d=a,e=b)}else{if(f&&b==g){d=a;break}be)&&(d=a,e=b)}}d&&d.focus()};CKEDITOR.plugins.add("table",{requires:"dialog",init:function(a){function f(c){return CKEDITOR.tools.extend(c||{},{contextSensitive:1,refresh:function(c,b){this.setState(b.contains("table",1)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED)}})}if(!a.blockless){var e=a.lang.table;a.addCommand("table",new CKEDITOR.dialogCommand("table",{context:"table",allowedContent:"table{width,height,border-collapse}[align,border,cellpadding,cellspacing,summary];caption tbody thead tfoot;th td tr[scope];td{border*,background-color,vertical-align,width,height}[colspan,rowspan];"+ +(a.plugins.dialogadvtab?"table"+a.plugins.dialogadvtab.allowedContent():""),requiredContent:"table",contentTransformations:[["table{width}: sizeToStyle","table[width]: sizeToAttribute"],["td: splitBorderShorthand"],[{element:"table",right:function(c){if(c.styles){var a;if(c.styles.border)a=CKEDITOR.tools.style.parse.border(c.styles.border);else if(CKEDITOR.env.ie&&8===CKEDITOR.env.version){var b=c.styles;b["border-left"]&&b["border-left"]===b["border-right"]&&b["border-right"]===b["border-top"]&& +b["border-top"]===b["border-bottom"]&&(a=CKEDITOR.tools.style.parse.border(b["border-top"]))}a&&a.style&&"solid"===a.style&&a.width&&0!==parseFloat(a.width)&&(c.attributes.border=1);"collapse"==c.styles["border-collapse"]&&(c.attributes.cellspacing=0)}}}]]}));a.addCommand("tableProperties",new CKEDITOR.dialogCommand("tableProperties",f()));a.addCommand("tableDelete",f({exec:function(a){var d=a.elementPath().contains("table",1);if(d){var b=d.getParent(),e=a.editable();1!=b.getChildCount()||b.is("td", +"th")||b.equals(e)||(d=b);a=a.createRange();a.moveToPosition(d,CKEDITOR.POSITION_BEFORE_START);d.remove();a.select()}}}));a.ui.addButton&&a.ui.addButton("Table",{label:e.toolbar,command:"table",toolbar:"insert,30"});CKEDITOR.dialog.add("table",this.path+"dialogs/table.js");CKEDITOR.dialog.add("tableProperties",this.path+"dialogs/table.js");a.addMenuItems&&a.addMenuItems({table:{label:e.menu,command:"tableProperties",group:"table",order:5},tabledelete:{label:e.deleteTable,command:"tableDelete",group:"table", +order:1}});a.on("doubleclick",function(a){a.data.element.is("table")&&(a.data.dialog="tableProperties")});a.contextMenu&&a.contextMenu.addListener(function(){return{tabledelete:CKEDITOR.TRISTATE_OFF,table:CKEDITOR.TRISTATE_OFF}})}}});(function(){function q(d,f){function b(a){return f?f.contains(a)&&a.getAscendant("table",!0).equals(f):!0}function c(a){var b=/^(?:td|th)$/;0b)b=e}return b}function u(d,f){for(var b= +D(d)?d:q(d),c=b[0].getAscendant("table"),e=w(b,1),b=w(b),h=f?e:b,a=CKEDITOR.tools.buildTableMap(c),c=[],e=[],b=[],k=a.length,g=0;gg?new CKEDITOR.dom.element(a[0][g+1]):k&&-1!==a[0][k-1].cellIndex?new CKEDITOR.dom.element(a[0][k-1]):new CKEDITOR.dom.element(c.$.parentNode); +m.length==d&&(b[0].moveToPosition(c,CKEDITOR.POSITION_AFTER_END),b[0].select(),c.remove());return k}function t(d,f){var b=d.getStartElement().getAscendant({td:1,th:1},!0);if(b){var c=b.clone();c.appendBogus();f?c.insertBefore(b):c.insertAfter(b)}}function z(d){if(d instanceof CKEDITOR.dom.selection){var f=d.getRanges(),b=q(d),c=b[0]&&b[0].getAscendant("table"),e;a:{var h=0;e=b.length-1;for(var a={},k,g;k=b[h++];)CKEDITOR.dom.element.setMarker(a,k,"delete_cell",!0);for(h=0;k=b[h++];)if((g=k.getPrevious())&& +!g.getCustomData("delete_cell")||(g=k.getNext())&&!g.getCustomData("delete_cell")){CKEDITOR.dom.element.clearAllMarkers(a);e=g;break a}CKEDITOR.dom.element.clearAllMarkers(a);h=b[0].getParent();(h=h.getPrevious())?e=h.getLast():(h=b[e].getParent(),e=(h=h.getNext())?h.getChild(0):null)}d.reset();for(d=b.length-1;0<=d;d--)z(b[d]);e?p(e,!0):c&&(f[0].moveToPosition(c,CKEDITOR.POSITION_BEFORE_START),f[0].select(),c.remove())}else d instanceof CKEDITOR.dom.element&&(f=d.getParent(),1==f.getChildCount()? +f.remove():d.remove())}function p(d,f){var b=d.getDocument(),c=CKEDITOR.document;CKEDITOR.env.ie&&10==CKEDITOR.env.version&&(c.focus(),b.focus());b=new CKEDITOR.dom.range(b);b["moveToElementEdit"+(f?"End":"Start")](d)||(b.selectNodeContents(d),b.collapse(f?!1:!0));b.select(!0)}function A(d,f,b){d=d[f];if("undefined"==typeof b)return d;for(f=0;d&&fc.length)||(e=d.getCommonAncestor())&&e.type==CKEDITOR.NODE_ELEMENT&&e.is("table"))return!1;d=c[0];e=d.getAscendant("table");var h=CKEDITOR.tools.buildTableMap(e),a=h.length,k=h[0].length,g=d.getParent().$.rowIndex,m=A(h,g,d),l;if(f){var n;try{var p=parseInt(d.getAttribute("rowspan"),10)||1;l=parseInt(d.getAttribute("colspan"),10)||1;n=h["up"==f?g-p:"down"==f?g+p:g]["left"==f?m-l:"right"==f?m+l:m]}catch(x){return!1}if(!n||d.$==n)return!1;c["up"==f||"left"==f?"unshift":"push"](new CKEDITOR.dom.element(n))}f= +d.getDocument();var r=g,p=n=0,u=!b&&new CKEDITOR.dom.documentFragment(f),w=0;for(f=0;f=k?d.removeAttribute("rowSpan"):d.$.rowSpan=n;n>=a?d.removeAttribute("colSpan"):d.$.colSpan=p;b=new CKEDITOR.dom.nodeList(e.$.rows);c=b.count();for(f=c-1;0<=f;f--)e=b.getItem(f),e.$.cells.length||(e.remove(),c++);return d}function C(d,f){var b=q(d);if(1k){c.insertBefore(new CKEDITOR.dom.element(l));break}else l=null;l||e.append(c)}else for(g=m=1,e=c.clone(),e.insertAfter(c),e.append(c=b.clone()),l=A(h,a),k=0;kv);x++){y[u+x]||(y[u+x]=[]);for(var C=0;C=w)break}}return y};(function(){function D(a){return CKEDITOR.plugins.widget&&CKEDITOR.plugins.widget.isDomWidget(a)}function z(a,b){var c=a.getAscendant("table"),d=b.getAscendant("table"),e=CKEDITOR.tools.buildTableMap(c),g=r(a),k=r(b),h=[],f={},l,p;c.contains(d)&&(b=b.getAscendant({td:1,th:1}),k=r(b));g>k&&(c=g,g=k,k=c,c=a,a=b,b=c);for(c=0;cp&&(c=l,l=p,p=c);for(c=g;c<=k;c++)for(g=l;g<=p;g++)d=new CKEDITOR.dom.element(e[c][g]), +d.$&&!d.getCustomData("selected_cell")&&(h.push(d),CKEDITOR.dom.element.setMarker(f,d,"selected_cell",!0));CKEDITOR.dom.element.clearAllMarkers(f);return h}function I(a){return(a=a.editable().findOne(".cke_table-faked-selection"))&&a.getAscendant("table")}function A(a,b){var c=a.editable().find(".cke_table-faked-selection"),d=a.editable().findOne("[data-cke-table-faked-selection-table]"),e;a.fire("lockSnapshot");a.editable().removeClass("cke_table-faked-selection-editor");for(e=0;eb.count()||(b=z(b.getItem(0),b.getItem(b.count()-1)),t(a,b))}function K(a,b,c){var d=v(a.getSelection(!0));b=b.is("table")?null: +b;var e;(e=m.active&&!m.first)&&!(e=b)&&(e=a.getSelection().getRanges(),e=1CKEDITOR.env.version,l=a.blockless||CKEDITOR.env.ie?"span":"div",p,x,n,m;g.getById("cke_table_copybin")||(p=g.createElement(l),x=g.createElement(l),x.setAttributes({id:"cke_table_copybin","data-cke-temp":"1"}),p.setStyles({position:"absolute",width:"1px",height:"1px",overflow:"hidden"}),p.setStyle("ltr"==a.config.contentsLangDirection?"left":"right", +"-5000px"),p.setHtml(a.getSelectedHtml(!0)),a.fire("lockSnapshot"),x.append(p),a.editable().append(x),m=a.on("selectionChange",c,null,null,0),f&&(n=h.scrollTop),k.selectNodeContents(p),k.select(),f&&(h.scrollTop=n),setTimeout(function(){x.remove();d.selectBookmarks(e);m.removeListener();a.fire("unlockSnapshot");b&&(a.extractSelectedHtml(),a.fire("saveSnapshot"))},100))}function E(a){var b=a.editor||a.sender.editor,c=b.getSelection();c.isInTable()&&(c.getRanges()[0]._getTableElement({table:1}).hasAttribute("data-cke-tableselection-ignored")|| +N(b,"cut"===a.name))}function q(a){this._reset();a&&this.setSelectedCells(a)}function B(a,b,c){a.on("beforeCommandExec",function(d){-1!==CKEDITOR.tools.array.indexOf(b,d.data.name)&&(d.data.selectedCells=v(a.getSelection()))});a.on("afterCommandExec",function(d){-1!==CKEDITOR.tools.array.indexOf(b,d.data.name)&&c(a,d.data)})}var m={active:!1},y,v,C,F,G;q.prototype={};q.prototype._reset=function(){this.cells={first:null,last:null,all:[]};this.rows={first:null,last:null}};q.prototype.setSelectedCells= +function(a){this._reset();a=a.slice(0);this._arraySortByDOMOrder(a);this.cells.all=a;this.cells.first=a[0];this.cells.last=a[a.length-1];this.rows.first=a[0].getAscendant("tr");this.rows.last=this.cells.last.getAscendant("tr")};q.prototype.getTableMap=function(){var a=C(this.cells.first),b;a:{b=this.cells.last;var c=b.getAscendant("table"),d=r(b),c=CKEDITOR.tools.buildTableMap(c),e;for(e=0;e=a)return;for(var d=this.cells.first.$.cellIndex,e=this.cells.last.$.cellIndex,g=c?[]:this.cells.all,k,h=0;h=d&&a.$.cellIndex<=e}),g=b?k.concat(g):g.concat(k);this.setSelectedCells(g)}; +q.prototype.insertColumn=function(a){function b(a){a=r(a);return a>=e&&a<=g}if("undefined"===typeof a)a=1;else if(0>=a)return;for(var c=this.cells,d=c.all,e=r(c.first),g=r(c.last),c=0;cf)n[0].moveToElementEditablePosition(m?q:r,!m),k.selectRanges([n[0]]); +else if(13!==f||13===l||l===CKEDITOR.SHIFT+13){for(h=0;hCKEDITOR.env.version)},onLoad:function(){y=CKEDITOR.plugins.tabletools;v=y.getSelectedCells;C=y.getCellColIndex;F=y.insertRow;G=y.insertColumn; +CKEDITOR.document.appendStyleSheet(this.path+"styles/tableselection.css")},init:function(a){this.isSupportedEnvironment()&&(a.addContentsCss&&a.addContentsCss(this.path+"styles/tableselection.css"),a.on("contentDom",function(){var b=a.editable(),c=b.isInline()?b:a.document,d={editor:a};b.attachListener(c,"mousedown",w,null,d);b.attachListener(c,"mousemove",w,null,d);b.attachListener(c,"mouseup",w,null,d);b.attachListener(b,"dragstart",M);b.attachListener(a,"selectionCheck",L);CKEDITOR.plugins.tableselection.keyboardIntegration(a); +CKEDITOR.plugins.clipboard&&!CKEDITOR.plugins.clipboard.isCustomCopyCutSupported&&(b.attachListener(b,"cut",E),b.attachListener(b,"copy",E))}),a.on("paste",H.onPaste,H),B(a,"rowInsertBefore rowInsertAfter columnInsertBefore columnInsertAfter cellInsertBefore cellInsertAfter".split(" "),function(a,c){t(a,c.selectedCells)}),B(a,["cellMerge","cellMergeRight","cellMergeDown"],function(a,c){t(a,[c.commandData.cell])}),B(a,["cellDelete"],function(a){A(a,!0)}))}})})();(function(){CKEDITOR.plugins.add("templates",{requires:"dialog,ajax",init:function(a){CKEDITOR.dialog.add("templates",CKEDITOR.getUrl(this.path+"dialogs/templates.js"));a.addCommand("templates",new CKEDITOR.dialogCommand("templates"));a.ui.addButton&&a.ui.addButton("Templates",{label:a.lang.templates.button,command:"templates",toolbar:"doctools,10"})}});var c={},f={};CKEDITOR.addTemplates=function(a,d){c[a]=d};CKEDITOR.getTemplates=function(a){return c[a]};CKEDITOR.loadTemplates=function(a,d){for(var e= +[],b=0,c=a.length;b=this.strokesLimit;this.typing||(this.hasUndo=this.typing=!0,this.hasRedo=!1,this.onChange());b?(d=0,this.editor.fire("saveSnapshot")):this.editor.fire("change");this.strokesRecorded[c]=d;this.previousKeyGroup=c},keyGroupChanged:function(a){return e.getKeyGroup(a)!=this.previousKeyGroup},reset:function(){this.snapshots=[];this.index=-1;this.currentImage=null;this.hasRedo=this.hasUndo=!1;this.locked=null;this.resetType()},resetType:function(){this.strokesRecorded= +[0,0];this.typing=!1;this.previousKeyGroup=-1},refreshState:function(){this.hasUndo=!!this.getNextImage(!0);this.hasRedo=!!this.getNextImage(!1);this.resetType();this.onChange()},save:function(a,b,c){var d=this.editor;if(this.locked||"ready"!=d.status||"wysiwyg"!=d.mode)return!1;var e=d.editable();if(!e||"ready"!=e.status)return!1;e=this.snapshots;b||(b=new f(d));if(!1===b.contents)return!1;if(this.currentImage)if(b.equalsContent(this.currentImage)){if(a||b.equalsSelection(this.currentImage))return!1}else!1!== +c&&d.fire("change");e.splice(this.index+1,e.length-this.index-1);e.length==this.limit&&e.shift();this.index=e.push(b)-1;this.currentImage=b;!1!==c&&this.refreshState();return!0},restoreImage:function(a){var b=this.editor,c;a.bookmarks&&(b.focus(),c=b.getSelection());this.locked={level:999};this.editor.loadSnapshot(a.contents);a.bookmarks?c.selectBookmarks(a.bookmarks):CKEDITOR.env.ie&&(c=this.editor.document.getBody().$.createTextRange(),c.collapse(!0),c.select());this.locked=null;this.index=a.index; +this.currentImage=this.snapshots[this.index];this.update();this.refreshState();b.fire("change")},getNextImage:function(a){var b=this.snapshots,c=this.currentImage,d;if(c)if(a)for(d=this.index-1;0<=d;d--){if(a=b[d],!c.equalsContent(a))return a.index=d,a}else for(d=this.index+1;d=this.undoManager.strokesLimit&&(this.undoManager.type(a.keyCode,!0),this.keyEventsStack.resetInputs())}},onKeyup:function(a){var b=this.undoManager;a=a.data.getKey();var c=this.keyEventsStack.getTotalInputs();this.keyEventsStack.remove(a);if(!(e.ieFunctionalKeysBug(a)&&this.lastKeydownImage&&this.lastKeydownImage.equalsContent(new f(b.editor, +!0))))if(0=c&&(c="0"+c);return String(c)}function n(c){var a=new Date,a=[a.getFullYear(),a.getMonth()+1,a.getDate(),a.getHours(),a.getMinutes(),a.getSeconds()];e+=1;return"image-"+CKEDITOR.tools.array.map(a,l).join("")+"-"+e+"."+c}var e=0;CKEDITOR.plugins.add("uploadimage",{requires:"uploadwidget",onLoad:function(){CKEDITOR.addCss(".cke_upload_uploading img{opacity: 0.3}")},isSupportedEnvironment:function(){return CKEDITOR.plugins.clipboard.isFileApiSupported},init:function(c){if(this.isSupportedEnvironment()){var a= +CKEDITOR.fileTools,e=a.getUploadUrl(c.config,"image");e&&(a.addUploadWidget(c,"uploadimage",{supportedTypes:/image\/(jpeg|png|gif|bmp)/,uploadUrl:e,fileToElement:function(){var b=new CKEDITOR.dom.element("img");b.setAttribute("src","data:image/gif;base64,R0lGODlhDgAOAIAAAAAAAP///yH5BAAAAAAALAAAAAAOAA4AAAIMhI+py+0Po5y02qsKADs\x3d");return b},parts:{img:"img"},onUploading:function(b){this.parts.img.setAttribute("src",b.data)},onUploaded:function(b){var a=this.parts.img.$;this.replaceWith('\x3cimg src\x3d"'+ +b.url+'" width\x3d"'+(b.responseData.width||a.naturalWidth)+'" height\x3d"'+(b.responseData.height||a.naturalHeight)+'"\x3e')}}),c.on("paste",function(b){if(b.data.dataValue.match(/CKEDITOR.env.version&&b.enterMode!=CKEDITOR.ENTER_DIV&&e("div");if(CKEDITOR.env.webkit||CKEDITOR.env.ie&&10this.$.offsetHeight){var c=b.createRange();c[33==d?"moveToElementEditStart":"moveToElementEditEnd"](this);c.select();a.data.preventDefault()}});CKEDITOR.env.ie&&this.attachListener(c,"blur",function(){try{c.$.selection.empty()}catch(a){}});CKEDITOR.env.iOS&&this.attachListener(c,"touchend",function(){a.focus()});f=b.document.getElementsByTag("title").getItem(0); +f.data("cke-title",f.getText());CKEDITOR.env.ie&&(b.document.$.title=this._.docTitle);CKEDITOR.tools.setTimeout(function(){"unloaded"==this.status&&(this.status="ready");b.fire("contentDom");this._.isPendingFocus&&(b.focus(),this._.isPendingFocus=!1);setTimeout(function(){b.fire("dataReady")},0)},0,this)}}function w(a){function e(){var d;a.editable().attachListener(a,"selectionChange",function(){var c=a.getSelection().getSelectedElement();c&&(d&&(d.detachEvent("onresizestart",b),d=null),c.$.attachEvent("onresizestart", +b),d=c.$)})}function b(a){a.returnValue=!1}if(CKEDITOR.env.gecko)try{var c=a.document.$;c.execCommand("enableObjectResizing",!1,!a.config.disableObjectResizing);c.execCommand("enableInlineTableEditing",!1,!a.config.disableNativeTableHandles)}catch(f){}else CKEDITOR.env.ie&&11>CKEDITOR.env.version&&a.config.disableObjectResizing&&e()}function x(){var a=[];if(8<=CKEDITOR.document.$.documentMode){a.push("html.CSS1Compat [contenteditable\x3dfalse]{min-height:0 !important}");var e=[],b;for(b in CKEDITOR.dtd.$removeEmpty)e.push("html.CSS1Compat "+ +b+"[contenteditable\x3dfalse]");a.push(e.join(",")+"{display:inline-block}")}else CKEDITOR.env.gecko&&(a.push("html{height:100% !important}"),a.push("img:-moz-broken{-moz-force-broken-image-icon:1;min-width:24px;min-height:24px}"));a.push("html{cursor:text;*cursor:auto}");a.push("img,input,textarea{cursor:default}");return a.join("\n")}var l;CKEDITOR.plugins.add("wysiwygarea",{init:function(a){a.config.fullPage&&a.addFeature({allowedContent:"html head title; style [media,type]; body (*)[id]; meta link [*]", +requiredContent:"body"});a.addMode("wysiwyg",function(e){function b(b){b&&b.removeListener();if(!a.isDestroyed()&&!a.isDetached()&&(a.editable(new l(a,g.getFrameDocument().getBody())),a.setData(a.getData(1),e),t)){if(u)a.on("mode",c,{iframe:g,editor:a,callback:e});a.on("mode",function(){a.status="ready"});f()}}function c(a){a&&a.removeListener();g.on("load",function(){p&&(p=!1,d())})}function f(){m=new MutationObserver(function(b){for(var c=0;c/,'\x3cstyle data-cke-temp\x3d"1"\x3e');f||(h+=CKEDITOR.tools.buildStyleHtml(b.config.contentsCss));var g=c.baseHref?'\x3cbase href\x3d"'+c.baseHref+'" data-cke-temp\x3d"1" /\x3e':"";f&&(a=a.replace(/]*>/i,function(a){b.docType= +d=a;return""}).replace(/<\?xml\s[^\?]*\?>/i,function(a){b.xmlDeclaration=a;return""}));a=b.dataProcessor.toHtml(a);f?(/]/.test(a)||(a="\x3cbody\x3e"+a),/]/.test(a)||(a="\x3chtml\x3e"+a+"\x3c/html\x3e"),/]/.test(a)?/]/.test(a)||(a=a.replace(/]*>/,"$\x26\x3ctitle\x3e\x3c/title\x3e")):a=a.replace(/]*>/,"$\x26\x3chead\x3e\x3ctitle\x3e\x3c/title\x3e\x3c/head\x3e"),g&&(a=a.replace(/]*?>/,"$\x26"+g)),a=a.replace(/<\/head\s*>/,h+"$\x26"),a= +d+a):a=c.docType+'\x3chtml dir\x3d"'+c.contentsLangDirection+'" lang\x3d"'+(c.contentsLanguage||b.langCode)+'"\x3e\x3chead\x3e\x3ctitle\x3e'+this._.docTitle+"\x3c/title\x3e"+g+h+"\x3c/head\x3e\x3cbody"+(c.bodyId?' id\x3d"'+c.bodyId+'"':"")+(c.bodyClass?' class\x3d"'+c.bodyClass+'"':"")+"\x3e"+a+"\x3c/body\x3e\x3c/html\x3e";CKEDITOR.env.gecko&&(a=a.replace(/CKEDITOR.env.version&&(a=a.replace(/]*>/,"$\x26\x3c!-- cke-content-start --\x3e"))); +a=a.replace(/CKEDITOR.env.version&&(c+='\x3cscript id\x3d"cke_shimscrpt"\x3ewindow.parent.CKEDITOR.tools.enableHtml5Elements(document)\x3c/script\x3e');g&&CKEDITOR.env.ie&&10>CKEDITOR.env.version&&(c+='\x3cscript id\x3d"cke_basetagscrpt"\x3evar baseTag \x3d document.querySelector( "base" );baseTag.href \x3d baseTag.href;\x3c/script\x3e');a=a.replace(/(?=\s*<\/(:?head)>)/, +c);this.clearCustomData();this.clearListeners();b.fire("contentDomUnload");var l=this.getDocument();try{l.write(a)}catch(k){setTimeout(function(){l.write(a)},0)}}},getData:function(a){if(a)return this.getHtml();a=this.editor;var e=a.config,b=e.fullPage,c=b&&a.docType,f=b&&a.xmlDeclaration,d=this.getDocument(),d=b?d.getDocumentElement().getOuterHtml():d.getBody().getHtml();CKEDITOR.env.gecko&&e.enterMode!=CKEDITOR.ENTER_BR&&(d=d.replace(/
(?=\s*(:?$|<\/body>))/,""));b&&(d=d.replace(/a.indexOf("px")&&(a=a in l&&"none"!=b.getComputedStyle("border-style")?l[a]:0);return parseFloat(a)}function C(b){var c=[],a={},l="rtl"===b.getComputedStyle("direction"),e=CKEDITOR.tools.array.zip((new CKEDITOR.dom.nodeList(b.$.rows)).toArray(),CKEDITOR.tools.buildTableMap(b));CKEDITOR.tools.array.forEach(e, +function(h){var f=h[0].$;h=h[1];var g=-1,d=0,e=null;f?(d=new CKEDITOR.dom.element(f),e={height:d.$.offsetHeight,position:d.getDocumentPosition()}):e=void 0;for(var f=CKEDITOR.env.ie&&!CKEDITOR.env.edge,n="collapse"===b.getComputedStyle("border-collapse"),d=e.height,e=e.position,m=0;m=f.x&&b<=f.x+f.width&&a>=f.y&&a<=f.y+f.height))return f= +null,y=m=0,g.removeListener("mouseup",e),d.removeListener("mousedown",l),d.removeListener("mousemove",h),g.getBody().setStyle("cursor","auto"),x?d.remove():d.hide(),0;var c=b-Math.round(d.$.offsetWidth/2);if(y){if(c==v||c==q)return 1;c=Math.max(c,v);c=Math.min(c,q);m=c-A}d.setStyle("left",n(c));return 1}}function A(b){var c=b.data.getTarget();if("mouseout"==b.name){if(!c.is("table"))return;for(var a=new CKEDITOR.dom.element(b.data.$.relatedTarget||b.data.$.toElement);a&&a.$&&!a.equals(c)&&!a.is("body");)a= +a.getParent();if(!a||a.equals(c))return}c.getAscendant("table",1).removeCustomData("_cke_table_pillars");b.removeListener()}var n=CKEDITOR.tools.cssLength,x=CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks);CKEDITOR.plugins.add("tableresize",{requires:"tabletools",init:function(b){b.on("contentDom",function(){var c,a=b.editable();a.attachListener(a.isInline()?a:b.document,"mousemove",function(a){a=a.data;var e=a.getTarget();if(e.type==CKEDITOR.NODE_ELEMENT){var h=a.getPageOffset().x, +f=a.getPageOffset().y;if(c&&c.move(h,f))B(a);else if(e.is("table")||e.getAscendant({thead:1,tbody:1,tfoot:1},1))if(a=e.getAscendant("table",1),b.editable().contains(a)){(e=a.getCustomData("_cke_table_pillars"))||(a.setCustomData("_cke_table_pillars",e=C(a)),a.on("mouseout",A),a.on("mousedown",A));a:{a=e;for(var e=0,g=a.length;e=d.x&&h<=d.x+d.width&&f>=d.y&&f<=d.y+d.height){h=d;break a}}h=null}h&&(!c&&(c=new E(b)),c.attachTo(h))}}})})}})})();CKEDITOR.plugins.add("syntaxhighlight",{requires:"dialog",init:function(a){a.addCommand("syntaxhighlightDialog",new CKEDITOR.dialogCommand("syntaxhighlightDialog",{allowedContent:"pre[title](*)",requiredContent:"pre[title](*)"}));a.ui.addButton&&a.ui.addButton("Syntaxhighlight",{label:a.lang.syntaxhighlight.title,command:"syntaxhighlightDialog",toolbar:"insert,98"});a.contextMenu&&(a.addMenuGroup("syntaxhighlightGroup"),a.addMenuItem("syntaxhighlightItem",{label:a.lang.syntaxhighlight.contextTitle, +icon:this.path+"icons/syntaxhighlight.png",command:"syntaxhighlightDialog",group:"syntaxhighlightGroup"}),a.contextMenu.addListener(function(a){if(a.getAscendant("pre",!0))return{syntaxhighlightItem:CKEDITOR.TRISTATE_OFF}}));CKEDITOR.dialog.add("syntaxhighlightDialog",this.path+"dialogs/syntaxhighlight.js")}});CKEDITOR.config.syntaxhighlight_hideGutter=!1;CKEDITOR.config.syntaxhighlight_hideControls=!1;CKEDITOR.config.syntaxhighlight_collapse=!1;CKEDITOR.config.syntaxhighlight_codeTitle=""; +CKEDITOR.config.syntaxhighlight_showColumns=!1;CKEDITOR.config.syntaxhighlight_noWrap=!1;CKEDITOR.config.syntaxhighlight_firstLine=0;CKEDITOR.config.syntaxhighlight_highlight=null;CKEDITOR.config.syntaxhighlight_lang=null;CKEDITOR.config.syntaxhighlight_code="";(function(){CKEDITOR.plugins.add("mediaembed",{init:function(a){CKEDITOR.dialog.add("MediaEmbedDialog",function(a){return{title:"Embed Media",minWidth:550,minHeight:200,contents:[{id:"iframe",expand:!0,elements:[{id:"embedArea",type:"textarea",label:"Paste Embed Code Here",autofocus:"autofocus",setup:function(){},commit:function(){}}]}],onOk:function(){var b=a.document.createElement("div");b.setHtml(this.getContentElement("iframe","embedArea").getValue());a.insertElement(b)}}});a.addCommand("MediaEmbed", +new CKEDITOR.dialogCommand("MediaEmbedDialog",{allowedContent:"iframe[*]"}));a.ui.addButton("MediaEmbed",{label:"Embed Media",command:"MediaEmbed",toolbar:"mediaembed"})}})})();CKEDITOR.config.plugins='dialogui,dialog,a11yhelp,about,basicstyles,bidi,blockquote,notification,button,toolbar,clipboard,panelbutton,panel,floatpanel,colorbutton,colordialog,menu,contextmenu,copyformatting,dialogadvtab,div,editorplaceholder,elementspath,enterkey,entities,popup,filetools,filebrowser,find,floatingspace,listblock,richcombo,font,format,fakeobjects,forms,horizontalrule,htmlwriter,iframe,image,indent,indentblock,indentlist,justify,menubutton,language,lineutils,widgetselection,widget,basewidget,layoutmanager,link,list,liststyle,magicline,maximize,newpage,pagebreak,xml,ajax,pastetools,pastefromgdocs,pastefromlibreoffice,pastefromword,pastetext,preview,print,removeformat,resize,save,scayt,selectall,showblocks,showborders,smiley,sourcearea,specialchar,stylescombo,tab,table,tabletools,tableselection,templates,undo,notificationaggregator,uploadwidget,uploadimage,wysiwygarea,youtube,tableresize,syntaxhighlight,mediaembed';CKEDITOR.config.skin='moono';(function() {var setIcons = function(icons, strip) {var path = CKEDITOR.getUrl( 'plugins/' + strip );icons = icons.split( ',' );for ( var i = 0; i < icons.length; i++ )CKEDITOR.skin.icons[ icons[ i ] ] = { path: path, offset: -icons[ ++i ], bgsize : icons[ ++i ] };};if (CKEDITOR.env.hidpi) setIcons('about,0,,bold,24,,italic,48,,strike,72,,subscript,96,,superscript,120,,underline,144,,bidiltr,168,,bidirtl,192,,blockquote,216,,copy-rtl,240,,copy,264,,cut-rtl,288,,cut,312,,paste-rtl,336,,paste,360,,bgcolor,384,,textcolor,408,,copyformatting,432,,creatediv,456,,find-rtl,480,,find,504,,replace,528,,button,552,,checkbox,576,,form,600,,hiddenfield,624,,imagebutton,648,,radio,672,,select-rtl,696,,select,720,,textarea-rtl,744,,textarea,768,,textfield-rtl,792,,textfield,816,,horizontalrule,840,,iframe,864,,image,888,,indent-rtl,912,,indent,936,,outdent-rtl,960,,outdent,984,,justifyblock,1008,,justifycenter,1032,,justifyleft,1056,,justifyright,1080,,language,1104,,addlayout,2256,auto,anchor-rtl,1152,,anchor,1176,,link,1200,,unlink,1224,,bulletedlist-rtl,1248,,bulletedlist,1272,,numberedlist-rtl,1296,,numberedlist,1320,,maximize,1344,,newpage-rtl,1368,,newpage,1392,,pagebreak-rtl,1416,,pagebreak,1440,,pastefromword-rtl,1464,,pastefromword,1488,,pastetext-rtl,1512,,pastetext,1536,,preview-rtl,1560,,preview,1584,,print,1608,,removeformat,1632,,save,1656,,scayt,1680,,selectall,1704,,showblocks-rtl,1728,,showblocks,1752,,smiley,1776,,source-rtl,1800,,source,1824,,specialchar,1848,,table,1872,,templates-rtl,1896,,templates,1920,,redo-rtl,1944,,redo,1968,,undo-rtl,1992,,undo,2016,,syntaxhighlight,4080,auto,mediaembed,2064,','icons_hidpi.png');else setIcons('about,0,auto,bold,24,auto,italic,48,auto,strike,72,auto,subscript,96,auto,superscript,120,auto,underline,144,auto,bidiltr,168,auto,bidirtl,192,auto,blockquote,216,auto,copy-rtl,240,auto,copy,264,auto,cut-rtl,288,auto,cut,312,auto,paste-rtl,336,auto,paste,360,auto,bgcolor,384,auto,textcolor,408,auto,copyformatting,432,auto,creatediv,456,auto,find-rtl,480,auto,find,504,auto,replace,528,auto,button,552,auto,checkbox,576,auto,form,600,auto,hiddenfield,624,auto,imagebutton,648,auto,radio,672,auto,select-rtl,696,auto,select,720,auto,textarea-rtl,744,auto,textarea,768,auto,textfield-rtl,792,auto,textfield,816,auto,horizontalrule,840,auto,iframe,864,auto,image,888,auto,indent-rtl,912,auto,indent,936,auto,outdent-rtl,960,auto,outdent,984,auto,justifyblock,1008,auto,justifycenter,1032,auto,justifyleft,1056,auto,justifyright,1080,auto,language,1104,auto,addlayout,1128,auto,anchor-rtl,1152,auto,anchor,1176,auto,link,1200,auto,unlink,1224,auto,bulletedlist-rtl,1248,auto,bulletedlist,1272,auto,numberedlist-rtl,1296,auto,numberedlist,1320,auto,maximize,1344,auto,newpage-rtl,1368,auto,newpage,1392,auto,pagebreak-rtl,1416,auto,pagebreak,1440,auto,pastefromword-rtl,1464,auto,pastefromword,1488,auto,pastetext-rtl,1512,auto,pastetext,1536,auto,preview-rtl,1560,auto,preview,1584,auto,print,1608,auto,removeformat,1632,auto,save,1656,auto,scayt,1680,auto,selectall,1704,auto,showblocks-rtl,1728,auto,showblocks,1752,auto,smiley,1776,auto,source-rtl,1800,auto,source,1824,auto,specialchar,1848,auto,table,1872,auto,templates-rtl,1896,auto,templates,1920,auto,redo-rtl,1944,auto,redo,1968,auto,undo-rtl,1992,auto,undo,2016,auto,syntaxhighlight,2040,auto,mediaembed,2064,auto','icons.png');})();CKEDITOR.lang.languages={"de":1,"el":1,"en":1,"fr":1,"ru":1,"tr":1};}()); \ No newline at end of file diff --git a/plugins/ckeditor/lib/config.js b/plugins/ckeditor/lib/config.js new file mode 100644 index 0000000..77ec26d --- /dev/null +++ b/plugins/ckeditor/lib/config.js @@ -0,0 +1,10 @@ +/** + * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license + */ + +CKEDITOR.editorConfig = function( config ) { + // Define changes to default configuration here. For example: + // config.language = 'fr'; + // config.uiColor = '#AADC6E'; +}; diff --git a/plugins/ckeditor/lib/contents.css b/plugins/ckeditor/lib/contents.css new file mode 100644 index 0000000..68cde71 --- /dev/null +++ b/plugins/ckeditor/lib/contents.css @@ -0,0 +1,208 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ + +body +{ + /* Font */ + /* Emoji fonts are added to visualise them nicely in Internet Explorer. */ + font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-size: 12px; + + /* Text color */ + color: #333; + + /* Remove the background color to make it transparent. */ + background-color: #fff; + + margin: 20px; +} + +.cke_editable +{ + font-size: 13px; + line-height: 1.6; + + /* Fix for missing scrollbars with RTL texts. (#10488) */ + word-wrap: break-word; +} + +blockquote +{ + font-style: italic; + font-family: Georgia, Times, "Times New Roman", serif; + padding: 2px 0; + border-style: solid; + border-color: #ccc; + border-width: 0; +} + +.cke_contents_ltr blockquote +{ + padding-left: 20px; + padding-right: 8px; + border-left-width: 5px; +} + +.cke_contents_rtl blockquote +{ + padding-left: 8px; + padding-right: 20px; + border-right-width: 5px; +} + +a +{ + color: #0782C1; +} + +ol,ul,dl +{ + /* IE7: reset rtl list margin. (#7334) */ + *margin-right: 0px; + /* Preserved spaces for list items with text direction different than the list. (#6249,#8049)*/ + padding: 0 40px; +} + +h1,h2,h3,h4,h5,h6 +{ + font-weight: normal; + line-height: 1.2; +} + +hr +{ + border: 0px; + border-top: 1px solid #ccc; +} + +img.right +{ + border: 1px solid #ccc; + float: right; + margin-left: 15px; + padding: 5px; +} + +img.left +{ + border: 1px solid #ccc; + float: left; + margin-right: 15px; + padding: 5px; +} + +pre +{ + white-space: pre-wrap; /* CSS 2.1 */ + word-wrap: break-word; /* IE7 */ + -moz-tab-size: 4; + tab-size: 4; +} + +.marker +{ + background-color: Yellow; +} + +span[lang] +{ + font-style: italic; +} + +figure +{ + text-align: center; + outline: solid 1px #ccc; + background: rgba(0,0,0,0.05); + padding: 10px; + margin: 10px 20px; + display: inline-block; +} + +figure > figcaption +{ + text-align: center; + display: block; /* For IE8 */ +} + +a > img { + padding: 1px; + margin: 1px; + border: none; + outline: 1px solid #0782C1; +} + +/* Widget Styles */ +.code-featured +{ + border: 5px solid red; +} + +.math-featured +{ + padding: 20px; + box-shadow: 0 0 2px rgba(200, 0, 0, 1); + background-color: rgba(255, 0, 0, 0.05); + margin: 10px; +} + +.image-clean +{ + border: 0; + background: none; + padding: 0; +} + +.image-clean > figcaption +{ + font-size: .9em; + text-align: right; +} + +.image-grayscale +{ + background-color: white; + color: #666; +} + +.image-grayscale img, img.image-grayscale +{ + filter: grayscale(100%); +} + +.embed-240p +{ + max-width: 426px; + max-height: 240px; + margin:0 auto; +} + +.embed-360p +{ + max-width: 640px; + max-height: 360px; + margin:0 auto; +} + +.embed-480p +{ + max-width: 854px; + max-height: 480px; + margin:0 auto; +} + +.embed-720p +{ + max-width: 1280px; + max-height: 720px; + margin:0 auto; +} + +.embed-1080p +{ + max-width: 1920px; + max-height: 1080px; + margin:0 auto; +} diff --git a/plugins/ckeditor/lib/lang/de.js b/plugins/ckeditor/lib/lang/de.js new file mode 100644 index 0000000..68277cd --- /dev/null +++ b/plugins/ckeditor/lib/lang/de.js @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license/ +*/ +CKEDITOR.lang['de']={"application":"Rich Text Editor","editor":"WYSIWYG-Editor","editorPanel":"WYSIWYG-Editor-Leiste","common":{"editorHelp":"Drücken Sie ALT 0 für Hilfe","browseServer":"Server durchsuchen","url":"URL","protocol":"Protokoll","upload":"Hochladen","uploadSubmit":"Zum Server senden","image":"Bild","form":"Formular","checkbox":"Kontrollbox","radio":"Optionsfeld","textField":"Textfeld","textarea":"Textfeld","hiddenField":"Verstecktes Feld","button":"Schaltfläche","select":"Auswahlfeld","imageButton":"Bildschaltfläche","notSet":"","id":"Kennung","name":"Name","langDir":"Schreibrichtung","langDirLtr":"Links nach Rechts (LTR)","langDirRtl":"Rechts nach Links (RTL)","langCode":"Sprachcode","longDescr":"Langbeschreibungs-URL","cssClass":"Formatvorlagenklassen","advisoryTitle":"Titel Beschreibung","cssStyle":"Stil","ok":"OK","cancel":"Abbrechen","close":"Schließen","preview":"Vorschau","resize":"Größe ändern","generalTab":"Allgemein","advancedTab":"Erweitert","validateNumberFailed":"Dieser Wert ist keine Nummer.","confirmNewPage":"Alle nicht gespeicherten Änderungen gehen verloren. Sind Sie sicher, die neue Seite zu laden?","confirmCancel":"Einige Optionen wurden geändert. Wollen Sie den Dialog dennoch schließen?","options":"Optionen","target":"Zielseite","targetNew":"Neues Fenster (_blank)","targetTop":"Oberstes Fenster (_top)","targetSelf":"Gleiches Fenster (_self)","targetParent":"Oberes Fenster (_parent)","langDirLTR":"Links nach Rechts (LNR)","langDirRTL":"Rechts nach Links (RNL)","styles":"Style","cssClasses":"Stylesheet Klasse","width":"Breite","height":"Höhe","align":"Ausrichtung","left":"Links","right":"Rechts","center":"Zentriert","justify":"Blocksatz","alignLeft":"Linksbündig","alignRight":"Rechtsbündig","alignCenter":"Zentriert","alignTop":"Oben","alignMiddle":"Mitte","alignBottom":"Unten","alignNone":"Keine","invalidValue":"Ungültiger Wert.","invalidHeight":"Höhe muss eine Zahl sein.","invalidWidth":"Breite muss eine Zahl sein.","invalidLength":"Der für das Feld \"%1\" angegebene Wert muss eine positive Zahl mit oder ohne gültige Maßeinheit (%2) sein. ","invalidCssLength":"Wert spezifiziert für \"%1\" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).","invalidHtmlLength":"Wert spezifiziert für \"%1\" Feld muss ein positiver numerischer Wert sein mit oder ohne korrekte HTML Messeinheit (px oder %).","invalidInlineStyle":"Wert spezifiziert für inline Stilart muss enthalten ein oder mehr Tupels mit dem Format \"Name : Wert\" getrennt mit Semikolons.","cssLengthTooltip":"Gebe eine Zahl ein für ein Wert in pixels oder eine Zahl mit einer korrekten CSS Messeinheit (px, %, in, cm, mm, em, ex, pt oder pc).","unavailable":"%1, nicht verfügbar","keyboard":{"8":"Rücktaste","13":"Eingabe","16":"Umschalt","17":"Strg","18":"Alt","32":"Leer","35":"Ende","36":"Pos1","46":"Entfernen","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Befehl"},"keyboardShortcut":"Tastaturkürzel","optionDefault":"Standard"},"about":{"copy":"Copyright © $1. Alle Rechte vorbehalten.","dlgTitle":"Über CKEditor 4","moreInfo":"Für Informationen über unsere Lizenzbestimmungen besuchen sie bitte unsere Webseite:"},"basicstyles":{"bold":"Fett","italic":"Kursiv","strike":"Durchgestrichen","subscript":"Tiefgestellt","superscript":"Hochgestellt","underline":"Unterstrichen"},"bidi":{"ltr":"Leserichtung von Links nach Rechts","rtl":"Leserichtung von Rechts nach Links"},"blockquote":{"toolbar":"Zitatblock"},"notification":{"closed":"Benachrichtigung geschlossen."},"toolbar":{"toolbarCollapse":"Werkzeugleiste einklappen","toolbarExpand":"Werkzeugleiste ausklappen","toolbarGroups":{"document":"Dokument","clipboard":"Zwischenablage/Rückgängig","editing":"Editieren","forms":"Formulare","basicstyles":"Grundstile","paragraph":"Absatz","links":"Links","insert":"Einfügen","styles":"Stile","colors":"Farben","tools":"Werkzeuge"},"toolbars":"Editor Werkzeugleisten"},"clipboard":{"copy":"Kopieren","copyError":"Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch zu kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).","cut":"Ausschneiden","cutError":"Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).","paste":"Einfügen","pasteNotification":"Drücken Sie %1 zum Einfügen. Ihr Browser unterstützt nicht das Einfügen über den Knopf in der Toolbar oder dem Kontextmenü.","pasteArea":"Einfügebereich","pasteMsg":"Fügen Sie den Inhalt in den unteren Bereich ein und drücken Sie OK.","fileFormatNotSupportedNotification":"The ${formats} file format(s) are not supported.","fileWithoutFormatNotSupportedNotification":"The file format is not supported."},"colorbutton":{"auto":"Automatisch","bgColorTitle":"Hintergrundfarbe","colors":{"000":"Schwarz","800000":"Kastanienbraun","8B4513":"Braun","2F4F4F":"Dunkles Schiefergrau","008080":"Blaugrün","000080":"Marineblau","4B0082":"Indigo","696969":"Dunkelgrau","B22222":"Ziegelrot","A52A2A":"Braun","DAA520":"Goldgelb","006400":"Dunkelgrün","40E0D0":"Türkis","0000CD":"Mittelblau","800080":"Lila","808080":"Grau","F00":"Rot","FF8C00":"Dunkelorange","FFD700":"Gold","008000":"Grün","0FF":"Cyan","00F":"Blau","EE82EE":"Violett","A9A9A9":"Dunkelgrau","FFA07A":"Helles Lachsrosa","FFA500":"Orange","FFFF00":"Gelb","00FF00":"Lime","AFEEEE":"Blasstürkis","ADD8E6":"Hellblau","DDA0DD":"Pflaumenblau","D3D3D3":"Hellgrau","FFF0F5":"Lavendel","FAEBD7":"Antik Weiß","FFFFE0":"Hellgelb","F0FFF0":"Honigtau","F0FFFF":"Azurblau","F0F8FF":"Alice Blau","E6E6FA":"Lavendel","FFF":"Weiß","1ABC9C":"Kräftiges Cyan","2ECC71":"Smaragdgrün","3498DB":"Helles Blau","9B59B6":"Amethystblau","4E5F70":"Graublau","F1C40F":"Lebhaftes Gelb","16A085":"Dunkelcyan","27AE60":"Dunkelsmaragdgrün","2980B9":"Kräftiges Blau","8E44AD":"Dunkelviolett","2C3E50":"Entsättigtes blau","F39C12":"Orange","E67E22":"Möhrenfarben","E74C3C":"Blassrot","ECF0F1":"Glänzendes Silber","95A5A6":"Helles Graublau","DDD":"Hellgrau","D35400":"Kürbisfarben","C0392B":"Kräftiges Rot","BDC3C7":"Silber","7F8C8D":"Graucyan","999":"Dunkelgrau"},"more":"Weitere Farben...","panelTitle":"Farben","textColorTitle":"Textfarbe"},"colordialog":{"clear":"Entfernen","highlight":"Hervorheben","options":"Farboptionen","selected":"Ausgewählte Farbe","title":"Farbe auswählen"},"contextmenu":{"options":"Kontextmenüoptionen"},"copyformatting":{"label":"Formatierung kopieren","notification":{"copied":"Formatierung kopiert","applied":"Formatierung angewendet","canceled":"Formatierung abgebrochen","failed":"Formatierung fehlgeschlagen. Sie können Stile nicht anwenden, ohne sie zuerst zu kopieren."}},"div":{"IdInputLabel":"Kennung","advisoryTitleInputLabel":"Tooltip","cssClassInputLabel":"Formatvorlagenklasse","edit":"Div bearbeiten","inlineStyleInputLabel":"Inline Stil","langDirLTRLabel":"Links nach Rechs (LTR)","langDirLabel":"Sprachrichtung","langDirRTLLabel":"Rechs nach Links (RTL)","languageCodeInputLabel":"Sprachcode","remove":"Div entfernen","styleSelectLabel":"Stil","title":"Div Container erzeugen","toolbar":"Div Container erzeugen"},"elementspath":{"eleLabel":"Elementepfad","eleTitle":"%1 Element"},"filetools":{"loadError":"Während des Lesens der Datei ist ein Fehler aufgetreten.","networkError":"Während des Hochladens der Datei ist ein Netzwerkfehler aufgetreten.","httpError404":"Während des Hochladens der Datei ist ein HTTP-Fehler aufgetreten (404: Datei nicht gefunden).","httpError403":"Während des Hochladens der Datei ist ein HTTP-Fehler aufgetreten (403: Verboten).","httpError":"Während des Hochladens der Datei ist ein HTTP-Fehler aufgetreten (Fehlerstatus: %1).","noUrlError":"Hochlade-URL ist nicht definiert.","responseError":"Falsche Antwort des Servers."},"find":{"find":"Suchen","findOptions":"Suchoptionen","findWhat":"Suchen nach:","matchCase":"Groß-/Kleinschreibung beachten","matchCyclic":"Zyklische Suche","matchWord":"Nur ganzes Wort suchen","notFoundMsg":"Der angegebene Text wurde nicht gefunden.","replace":"Ersetzen","replaceAll":"Alle ersetzen","replaceSuccessMsg":"%1 Vorkommen ersetzt.","replaceWith":"Ersetzen mit:","title":"Suchen und Ersetzen"},"font":{"fontSize":{"label":"Größe","voiceLabel":"Schrifgröße","panelTitle":"Schriftgröße"},"label":"Schriftart","panelTitle":"Schriftartname","voiceLabel":"Schriftart"},"format":{"label":"Format","panelTitle":"Absatzformat","tag_address":"Adresse","tag_div":"Normal (DIV)","tag_h1":"Überschrift 1","tag_h2":"Überschrift 2","tag_h3":"Überschrift 3","tag_h4":"Überschrift 4","tag_h5":"Überschrift 5","tag_h6":"Überschrift 6","tag_p":"Normal","tag_pre":"Formatiert"},"fakeobjects":{"anchor":"Anker","hiddenfield":"Verstecktes Feld","iframe":"IFrame","unknown":"Unbekanntes Objekt"},"forms":{"button":{"title":"Schaltflächeneigenschaften","text":"Text (Wert)","type":"Typ","typeBtn":"Button","typeSbm":"Absenden","typeRst":"Zurücksetzen"},"checkboxAndRadio":{"checkboxTitle":"Kontrollboxeigenschaften","radioTitle":"Optionsfeldeigenschaften","value":"Wert","selected":"Ausgewählt","required":"Erforderlich"},"form":{"title":"Formulareigenschaften","menu":"Formulareigenschaften","action":"Aktion","method":"Methode","encoding":"Kodierung"},"hidden":{"title":"Versteckte Feldeigenschaften","name":"Name","value":"Wert"},"select":{"title":"Auswahlfeldeigenschaften","selectInfo":"Info auswählen","opAvail":"Verfügbare Optionen","value":"Wert","size":"Größe","lines":"Linien","chkMulti":"Mehrfachauswahl erlauben","required":"Erforderlich","opText":"Text","opValue":"Wert","btnAdd":"Hinzufügen","btnModify":"Ändern","btnUp":"Hoch","btnDown":"Runter","btnSetValue":"Als ausgewählten Wert festlegen","btnDelete":"Entfernen"},"textarea":{"title":"Textfeldeigenschaften","cols":"Spalten","rows":"Reihen"},"textfield":{"title":"Textfeldeigenschaften","name":"Name","value":"Wert","charWidth":"Zeichenbreite","maxChars":"Max. Zeichen","required":"Erforderlich","type":"Typ","typeText":"Text","typePass":"Passwort","typeEmail":"E-mail","typeSearch":"Suche","typeTel":"Telefonnummer","typeUrl":"URL"}},"horizontalrule":{"toolbar":"Horizontale Linie einfügen"},"iframe":{"border":"Rahmen anzeigen","noUrl":"Bitte geben Sie die IFrame-URL an","scrolling":"Rollbalken anzeigen","title":"IFrame-Eigenschaften","toolbar":"IFrame","tabindex":"Remove from tabindex"},"image":{"alt":"Alternativer Text","border":"Rahmen","btnUpload":"Zum Server senden","button2Img":"Möchten Sie die ausgewählte Bildschaltfläche in ein einfaches Bild umwandeln?","hSpace":"Horizontal-Abstand","img2Button":"Möchten Sie das ausgewählte Bild in eine Bildschaltfläche umwandeln?","infoTab":"Bildinfo","linkTab":"Link","lockRatio":"Größenverhältnis beibehalten","menu":"Bildeigenschaften","resetSize":"Größe zurücksetzen","title":"Bildeigenschaften","titleButton":"Bildschaltflächeneigenschaften","upload":"Hochladen","urlMissing":"Bildquellen-URL fehlt.","vSpace":"Vertikal-Abstand","validateBorder":"Rahmen muss eine ganze Zahl sein.","validateHSpace":"Horizontal-Abstand muss eine ganze Zahl sein.","validateVSpace":"Vertikal-Abstand muss eine ganze Zahl sein."},"indent":{"indent":"Einzug vergrößern","outdent":"Einzug verkleinern"},"language":{"button":"Sprache festlegen","remove":"Sprache entfernen"},"widget":{"move":"Zum Verschieben anwählen und ziehen","label":"%1 Steuerelement"},"layoutmanager":{"title":"Layouts","addLayoutDialogTitle":"Choose layout","manageLayoutDialogTitle":"Replace layout with","removeLayoutMenuLabel":"Remove layout","manageLayoutMenuLabel":"Replace layout"},"link":{"acccessKey":"Zugriffstaste","advanced":"Erweitert","advisoryContentType":"Inhaltstyp","advisoryTitle":"Titel Beschreibung","anchor":{"toolbar":"Anker","menu":"Anker bearbeiten","title":"Ankereigenschaften","name":"Ankername","errorName":"Bitte geben Sie den Namen des Ankers ein","remove":"Anker entfernen"},"anchorId":"Nach Elementkennung","anchorName":"Nach Ankername","charset":"Verknüpfter Ressourcenzeichensatz","cssClasses":"Formatvorlagenklasse","download":"Herunterladen erzwingen","displayText":"Anzeigetext","emailAddress":"E-Mail-Adresse","emailBody":"Nachrichtentext","emailSubject":"Betreffzeile","id":"Kennung","info":"Linkinfo","langCode":"Sprachcode","langDir":"Schreibrichtung","langDirLTR":"Links nach Rechts (LTR)","langDirRTL":"Rechts nach Links (RTL)","menu":"Link bearbeiten","name":"Name","noAnchors":"(Keine Anker im Dokument vorhanden)","noEmail":"Bitte geben Sie E-Mail-Adresse an","noUrl":"Bitte geben Sie die Link-URL an","noTel":"Bitte geben Sie die Telefonnummer ein","other":"","phoneNumber":"Telefonnummer","popupDependent":"Abhängig (Netscape)","popupFeatures":"Pop-up Fenstereigenschaften","popupFullScreen":"Vollbild (IE)","popupLeft":"Linke Position","popupLocationBar":"Adressleiste","popupMenuBar":"Menüleiste","popupResizable":"Größe änderbar","popupScrollBars":"Rollbalken","popupStatusBar":"Statusleiste","popupToolbar":"Werkzeugleiste","popupTop":"Obere Position","rel":"Beziehung","selectAnchor":"Anker auswählen","styles":"Style","tabIndex":"Tab-Index","target":"Zielseite","targetFrame":"","targetFrameName":"Ziel-Fenster-Name","targetPopup":"","targetPopupName":"Pop-up Fenster-Name","title":"Link","toAnchor":"Anker in dieser Seite","toEmail":"E-Mail","toUrl":"URL","toPhone":"Telefon","toolbar":"Link einfügen/editieren","type":"Link-Typ","unlink":"Link entfernen","upload":"Hochladen"},"list":{"bulletedlist":"Liste","numberedlist":"Nummerierte Liste einfügen/entfernen"},"liststyle":{"bulletedTitle":"Aufzählungslisteneigenschaften","circle":"Ring","decimal":"Dezimal (1, 2, 3, etc.)","disc":"Kreis","lowerAlpha":"Klein Alpha (a, b, c, d, e, usw.)","lowerRoman":"Klein römisch (i, ii, iii, iv, v, usw.)","none":"Keine","notset":"","numberedTitle":"Nummerierte Listeneigenschaften","square":"Quadrat","start":"Start","type":"Typ","upperAlpha":"Groß alpha (A, B, C, D, E, etc.)","upperRoman":"Groß römisch (I, II, III, IV, V, usw.)","validateStartNumber":"Listenstartnummer muss eine ganze Zahl sein."},"magicline":{"title":"Absatz hier einfügen"},"maximize":{"maximize":"Maximieren","minimize":"Minimieren"},"newpage":{"toolbar":"Neue Seite"},"pagebreak":{"alt":"Seitenumbruch","toolbar":"Seitenumbruch zum Drucken einfügen"},"pastefromword":{"confirmCleanup":"Der Text, den Sie einfügen möchten, scheint aus MS-Word kopiert zu sein. Möchten Sie ihn zuvor bereinigen lassen?","error":"Aufgrund eines internen Fehlers war es nicht möglich die eingefügten Daten zu bereinigen","title":"Aus Word einfügen","toolbar":"Aus Word einfügen"},"pastetext":{"button":"Als Klartext einfügen","pasteNotification":"Drücken Sie %1 zum Einfügen. Ihr Browser unterstützt nicht das Einfügen über den Knopf in der Toolbar oder dem Kontextmenü.","title":"Als Klartext einfügen"},"preview":{"preview":"Vorschau"},"print":{"toolbar":"Drucken"},"removeformat":{"toolbar":"Formatierung entfernen"},"save":{"toolbar":"Speichern"},"scayt":{"btn_about":"Über SCAYT","btn_dictionaries":"Wörterbücher","btn_disable":"SCAYT ausschalten","btn_enable":"SCAYT einschalten","btn_langs":"Sprachen","btn_options":"Optionen","text_title":"Rechtschreibprüfung während der Texteingabe (SCAYT)"},"selectall":{"toolbar":"Alles auswählen"},"showblocks":{"toolbar":"Blöcke anzeigen"},"smiley":{"options":"Smiley-Optionen","title":"Smiley auswählen","toolbar":"Smiley"},"sourcearea":{"toolbar":"Quellcode"},"specialchar":{"options":"Sonderzeichenoptionen","title":"Sonderzeichen auswählen","toolbar":"Sonderzeichen einfügen"},"stylescombo":{"label":"Stil","panelTitle":"Formatierungsstile","panelTitle1":"Blockstile","panelTitle2":"Inline Stilart","panelTitle3":"Objektstile"},"table":{"border":"Rahmengröße","caption":"Überschrift","cell":{"menu":"Zelle","insertBefore":"Zelle davor einfügen","insertAfter":"Zelle danach einfügen","deleteCell":"Zelle löschen","merge":"Zellen verbinden","mergeRight":"Nach rechts verbinden","mergeDown":"Nach unten verbinden","splitHorizontal":"Zelle horizontal teilen","splitVertical":"Zelle vertikal teilen","title":"Zelleneigenschaften","cellType":"Zellart","rowSpan":"Anzahl Zeilen verbinden","colSpan":"Anzahl Spalten verbinden","wordWrap":"Zeilenumbruch","hAlign":"Horizontale Ausrichtung","vAlign":"Vertikale Ausrichtung","alignBaseline":"Grundlinie","bgColor":"Hintergrundfarbe","borderColor":"Rahmenfarbe","data":"Daten","header":"Überschrift","yes":"Ja","no":"Nein","invalidWidth":"Zellenbreite muss eine Zahl sein.","invalidHeight":"Zellenhöhe muss eine Zahl sein.","invalidRowSpan":"\"Anzahl Zeilen verbinden\" muss eine Ganzzahl sein.","invalidColSpan":"\"Anzahl Spalten verbinden\" muss eine Ganzzahl sein.","chooseColor":"Wählen"},"cellPad":"Zellenabstand innen","cellSpace":"Zellenabstand außen","column":{"menu":"Spalte","insertBefore":"Spalte links davor einfügen","insertAfter":"Spalte rechts danach einfügen","deleteColumn":"Spalte löschen"},"columns":"Spalte","deleteTable":"Tabelle löschen","headers":"Kopfzeile","headersBoth":"Beide","headersColumn":"Erste Spalte","headersNone":"Keine","headersRow":"Erste Zeile","heightUnit":"Höheneinheit","invalidBorder":"Die Rahmenbreite muß eine Zahl sein.","invalidCellPadding":"Der Zellenabstand innen muß eine positive Zahl sein.","invalidCellSpacing":"Der Zellenabstand außen muß eine positive Zahl sein.","invalidCols":"Die Anzahl der Spalten muß größer als 0 sein..","invalidHeight":"Die Tabellenbreite muß eine Zahl sein.","invalidRows":"Die Anzahl der Zeilen muß größer als 0 sein.","invalidWidth":"Die Tabellenbreite muss eine Zahl sein.","menu":"Tabellen-Eigenschaften","row":{"menu":"Zeile","insertBefore":"Zeile oberhalb einfügen","insertAfter":"Zeile unterhalb einfügen","deleteRow":"Zeile entfernen"},"rows":"Zeile","summary":"Inhaltsübersicht","title":"Tabellen-Eigenschaften","toolbar":"Tabelle","widthPc":"%","widthPx":"Pixel","widthUnit":"Breite Einheit"},"templates":{"button":"Vorlagen","emptyListMsg":"(Keine Vorlagen definiert)","insertOption":"Aktuelle Inhalte ersetzen","options":"Vorlagenoptionen","selectPromptMsg":"Klicken Sie auf eine Vorlage, um sie im Editor zu öffnen","title":"Inhaltsvorlagen"},"undo":{"redo":"Wiederherstellen","undo":"Rückgängig"},"uploadwidget":{"abort":"Hochladen durch den Benutzer abgebrochen.","doneOne":"Datei erfolgreich hochgeladen.","doneMany":"%1 Dateien erfolgreich hochgeladen.","uploadOne":"Datei wird hochgeladen ({percentage}%)...","uploadMany":"Dateien werden hochgeladen, {current} von {max} fertig ({percentage}%)..."},"youtube":{"button":"YouTube Video einbinden","title":"YouTube Video einbinden","txtEmbed":"Embed Code hier einfügen","txtUrl":"YouTube Video URL hier einfügen","txtWidth":"Breite","txtHeight":"Höhe","chkRelated":"Vorschläge am Ende des Videos einblenden","txtStartAt":"Start bei Position (ss oder mm:ss oder hh:mm:ss)","chkPrivacy":"Erweiterten Datenschutzmodus aktivieren","chkOlderCode":"Benutze alten Embed Code","chkAutoplay":"Autoplay","chkControls":"Player-Steuerelemente anzeigen","noCode":"Sie müssen einen Embed Code oder URL angeben","invalidEmbed":"Der angegebene Embed Code scheint nicht gültig zu sein.","invalidUrl":"Die angegebene URL scheint nicht gültig zu sein.","or":"oder","noWidth":"Geben Sie eine Breite an","invalidWidth":"Geben Sie eine gültige Breite an","noHeight":"Geben Sie eine Höhe an","invalidHeight":"Geben Sie eine gültige Höhe an","invalidTime":"Geben Sie eine gültige Startzeit an","txtResponsive":"Automatische Größe (ignoriert Breite und Höhe)","txtNoEmbed":"Video image and link only"},"syntaxhighlight":{"title":"Einen Quelltextabschnitt einfügen oder aktualisieren","contextTitle":"Quelltext bearbeiten","sourceTab":"Quelltext","langLbl":"Sprache auswählen","sourceTextareaEmptyError":"Das Quelltext-Feld darf nicht leer sein.","advancedTab":"Erweitert","hideGutter":"Verstecke Seitenleiste","hideGutterLbl":"Verstecke Seitenleiste und Zeilennummern.","hideControls":"Verstecke Kontrollfelder","hideControlsLbl":"Verstecke die Menüleiste über dem Quelltextblock.","collapse":"Einklappen","collapseLbl":"Klappe den Quelltextblock standartmäßig ein. (Kontrollfelder müssen aktiviert werden)","codeTitleLbl":"Einen Code-Titel verwenden","showColumns":"Spalten anzeigen","showColumnsLbl":"Zeige Spalten jeder Zeile in der Kopfzeile an.","lineWrap":"Zeilenumbruch","lineWrapLbl":"Deaktiviere Zeilenumbrüche.","lineCount":"Nummerierung der ersten Zeile (falls ungleich 1)","highlight":"Zeilen hervorheben","highlightLbl":"Geben Sie kommasepariert die Zeilen ein, die sie hervorheben wollen, z.B. 3,10,15."}}; \ No newline at end of file diff --git a/plugins/ckeditor/lib/lang/el.js b/plugins/ckeditor/lib/lang/el.js new file mode 100644 index 0000000..5d029d2 --- /dev/null +++ b/plugins/ckeditor/lib/lang/el.js @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license/ +*/ +CKEDITOR.lang['el']={"application":"Rich Text Editor","editor":"Επεξεργαστής Πλούσιου Κειμένου","editorPanel":"Πίνακας Επεξεργαστή Πλούσιου Κειμένου","common":{"editorHelp":"Πατήστε το ALT 0 για βοήθεια","browseServer":"Εξερεύνηση Διακομιστή","url":"URL","protocol":"Πρωτόκολλο","upload":"Αποστολή","uploadSubmit":"Αποστολή στον Διακομιστή","image":"Εικόνα","form":"Φόρμα","checkbox":"Κουτί Επιλογής","radio":"Κουμπί Επιλογής","textField":"Πεδίο Κειμένου","textarea":"Περιοχή Κειμένου","hiddenField":"Κρυφό Πεδίο","button":"Κουμπί","select":"Πεδίο Επιλογής","imageButton":"Κουμπί Εικόνας","notSet":"<δεν έχει ρυθμιστεί>","id":"Id","name":"Όνομα","langDir":"Κατεύθυνση Κειμένου","langDirLtr":"Αριστερά προς Δεξιά (LTR)","langDirRtl":"Δεξιά προς Αριστερά (RTL)","langCode":"Κωδικός Γλώσσας","longDescr":"Αναλυτική Περιγραφή URL","cssClass":"Κλάσεις Φύλλων Στυλ","advisoryTitle":"Ενδεικτικός Τίτλος","cssStyle":"Μορφή Κειμένου","ok":"OK","cancel":"Ακύρωση","close":"Κλείσιμο","preview":"Προεπισκόπηση","resize":"Αλλαγή Μεγέθους","generalTab":"Γενικά","advancedTab":"Για Προχωρημένους","validateNumberFailed":"Αυτή η τιμή δεν είναι αριθμός.","confirmNewPage":"Οι όποιες αλλαγές στο περιεχόμενο θα χαθούν. Είσαστε σίγουροι ότι θέλετε να φορτώσετε μια νέα σελίδα;","confirmCancel":"Μερικές επιλογές έχουν αλλάξει. Είσαστε σίγουροι ότι θέλετε να κλείσετε το παράθυρο διαλόγου;","options":"Επιλογές","target":"Προορισμός","targetNew":"Νέο Παράθυρο (_blank)","targetTop":"Αρχική Περιοχή (_top)","targetSelf":"Ίδιο Παράθυρο (_self)","targetParent":"Γονεϊκό Παράθυρο (_parent)","langDirLTR":"Αριστερά προς Δεξιά (LTR)","langDirRTL":"Δεξιά προς Αριστερά (RTL)","styles":"Μορφή","cssClasses":"Κλάσεις Φύλλων Στυλ","width":"Πλάτος","height":"Ύψος","align":"Στοίχιση","left":"Αριστερά","right":"Δεξιά","center":"Κέντρο","justify":"Πλήρης Στοίχιση","alignLeft":"Στοίχιση Αριστερά","alignRight":"Στοίχιση Δεξιά","alignCenter":"Στοίχιση στο κέντρο","alignTop":"Πάνω","alignMiddle":"Μέση","alignBottom":"Κάτω","alignNone":"Χωρίς","invalidValue":"Μη έγκυρη τιμή.","invalidHeight":"Το ύψος πρέπει να είναι ένας αριθμός.","invalidWidth":"Το πλάτος πρέπει να είναι ένας αριθμός.","invalidLength":"Η τιμή που ορίζεται στο πεδίο «%1» πρέπει να είναι θετικός αριθμός με ή χωρίς μονάδα μέτρησης (%2).","invalidCssLength":"Η τιμή που ορίζεται για το πεδίο \"%1\" πρέπει να είναι ένας θετικός αριθμός με ή χωρίς μια έγκυρη μονάδα μέτρησης CSS (px, %, in, cm, mm, em, ex, pt, ή pc).","invalidHtmlLength":"Η τιμή που ορίζεται για το πεδίο \"%1\" πρέπει να είναι ένας θετικός αριθμός με ή χωρίς μια έγκυρη μονάδα μέτρησης HTML (px ή %).","invalidInlineStyle":"Η τιμή για το εν σειρά στυλ πρέπει να περιέχει ένα ή περισσότερα ζεύγη με την μορφή \"όνομα: τιμή\" διαχωρισμένα με Ελληνικό ερωτηματικό.","cssLengthTooltip":"Εισάγεται μια τιμή σε pixel ή έναν αριθμό μαζί με μια έγκυρη μονάδα μέτρησης CSS (px, %, in, cm, mm, em, ex, pt, ή pc).","unavailable":"%1, δεν είναι διαθέσιμο","keyboard":{"8":"Backspace","13":"Enter","16":"Shift","17":"Ctrl","18":"Alt","32":"Κενό","35":"End","36":"Home","46":"Delete","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Εντολή"},"keyboardShortcut":"Συντόμευση πληκτρολογίου","optionDefault":"Προεπιλογή"},"about":{"copy":"Πνευματικά δικαιώματα © $1 Με επιφύλαξη παντός δικαιώματος.","dlgTitle":"Περί του CKEditor 4","moreInfo":"Για πληροφορίες σχετικές με την άδεια χρήσης, παρακαλούμε επισκεφθείτε την ιστοσελίδα μας:"},"basicstyles":{"bold":"Έντονη","italic":"Πλάγια","strike":"Διακριτή Διαγραφή","subscript":"Δείκτης","superscript":"Εκθέτης","underline":"Υπογράμμιση"},"bidi":{"ltr":"Διεύθυνση κειμένου από αριστερά στα δεξιά","rtl":"Διεύθυνση κειμένου από δεξιά στα αριστερά"},"blockquote":{"toolbar":"Περιοχή Παράθεσης"},"notification":{"closed":"Notification closed."},"toolbar":{"toolbarCollapse":"Σύμπτυξη Εργαλειοθήκης","toolbarExpand":"Ανάπτυξη Εργαλειοθήκης","toolbarGroups":{"document":"Έγγραφο","clipboard":"Πρόχειρο/Αναίρεση","editing":"Επεξεργασία","forms":"Φόρμες","basicstyles":"Βασικά Στυλ","paragraph":"Παράγραφος","links":"Σύνδεσμοι","insert":"Εισαγωγή","styles":"Στυλ","colors":"Χρώματα","tools":"Εργαλεία"},"toolbars":"Εργαλειοθήκες επεξεργαστή"},"clipboard":{"copy":"Αντιγραφή","copyError":"Οι ρυθμίσεις ασφαλείας του περιηγητή σας δεν επιτρέπουν την επιλεγμένη εργασία αντιγραφής. Παρακαλώ χρησιμοποιείστε το πληκτρολόγιο (Ctrl/Cmd+C).","cut":"Αποκοπή","cutError":"Οι ρυθμίσεις ασφαλείας του περιηγητή σας δεν επιτρέπουν την επιλεγμένη εργασία αποκοπής. Παρακαλώ χρησιμοποιείστε το πληκτρολόγιο (Ctrl/Cmd+X).","paste":"Επικόλληση","pasteNotification":"Πατήστε %1 για επικόλληση. Ο φυλλομετρητής σας δεν υποστηρίζει επικόλληση με το κουμπί της γραμμής εργαλείων ή την επιλογή από το μενού δεξιού κλικ.","pasteArea":"Περιοχή Επικόλλησης","pasteMsg":"Επικολλήστε το περιεχόμενό σας μέσα στην περιοχή παρακάτω και πατήστε Εντάξει.","fileFormatNotSupportedNotification":"The ${formats} file format(s) are not supported.","fileWithoutFormatNotSupportedNotification":"The file format is not supported."},"colorbutton":{"auto":"Αυτόματα","bgColorTitle":"Χρώμα Φόντου","colors":{"000":"Μαύρο","800000":"Καστανέρυθρο","8B4513":"Saddle Brown","2F4F4F":"Dark Slate Gray","008080":"Βαθυκύανο","000080":"Μπλε μαρέν","4B0082":"Ινδικό","696969":"Σκούρο Γκρι","B22222":"Ανοικτό Κόκκινο","A52A2A":"Καφέ","DAA520":"Golden Rod","006400":"Σκούρο Πράσινο","40E0D0":"Τυρκουάζ","0000CD":"Medium Blue","800080":"Μοβ","808080":"Γκρι","F00":"Κόκκινο","FF8C00":"Σκούρο Πορτοκαλί","FFD700":"Χρυσαφί","008000":"Πράσινο","0FF":"Κυανό","00F":"Μπλε","EE82EE":"Μενεξεδί","A9A9A9":"Ποντικί","FFA07A":"Ανοικτό Σομόν","FFA500":"Πορτοκαλί","FFFF00":"Κίτρινο","00FF00":"Μοσχολέμονο","AFEEEE":"Pale Turquoise","ADD8E6":"Γαλάζιο","DDA0DD":"Δαμασκηνί","D3D3D3":"Ανοικτό Γκρι","FFF0F5":"Lavender Blush","FAEBD7":"Antique White","FFFFE0":"Ανοικτό Κίτρινο","F0FFF0":"Honeydew","F0FFFF":"Γαλανό","F0F8FF":"Alice Blue","E6E6FA":"Ελαφρός Ιώδες","FFF":"Λευκό","1ABC9C":"Έντονο Κυανό","2ECC71":"Σμαραγδί","3498DB":"Φωτεινό Μπλε","9B59B6":"Αμέθυστος","4E5F70":"Γκριζωπό Μπλε","F1C40F":"Ζωντανό Κίτρινο","16A085":"Σκοτεινό Κυανό","27AE60":"Σκοτεινό Σμαραγδί","2980B9":"Έντονο Μπλε","8E44AD":"Σκοτεινό Βιολετί","2C3E50":"Αποκορρεσμένο Μπλε","F39C12":"Πορτοκαλί","E67E22":"Καροτί","E74C3C":"Απαλό Κόκκινο","ECF0F1":"Φωτεινό Ασημί","95A5A6":"Φωτεινό Γκριζωπό Κυανό","DDD":"Φωτεινό Γκρι","D35400":"Κολοκυθί","C0392B":"Έντονο Κόκκινο","BDC3C7":"Αργυρό","7F8C8D":"Γκριζωπό Κυανό","999":"Σκοτεινό Γκρι"},"more":"Περισσότερα Χρώματα…","panelTitle":"Χρώματα","textColorTitle":"Χρώμα Κειμένου"},"colordialog":{"clear":"Εκκαθάριση","highlight":"Σήμανση","options":"Επιλογές Χρωμάτων","selected":"Επιλεγμένο Χρώμα","title":"Επιλογή χρώματος"},"contextmenu":{"options":"Επιλογές Αναδυόμενου Μενού"},"copyformatting":{"label":"Αντιγραφή Μορφοποίησης","notification":{"copied":"Αντιγραφή μορφοποίησης","applied":"Εφαρμογή μορφοποίησης","canceled":"Ακύρωση μορφοποίησης","failed":"Η μορφοποίηση απέτυχε. Δεν μπορείτε να εφαρμόσετε στυλ πριν τα αντιγράψετε."}},"div":{"IdInputLabel":"Id","advisoryTitleInputLabel":"Ενδεικτικός Τίτλος","cssClassInputLabel":"Κλάσεις Φύλλων Στυλ","edit":"Επεξεργασία Div","inlineStyleInputLabel":"Στυλ Εν Σειρά","langDirLTRLabel":"Αριστερά προς Δεξιά (LTR)","langDirLabel":"Κατεύθυνση Κειμένου","langDirRTLLabel":"Δεξιά προς Αριστερά (RTL)","languageCodeInputLabel":"Κωδικός Γλώσσας","remove":"Διαγραφή Div","styleSelectLabel":"Μορφή","title":"Δημιουργία Div","toolbar":"Δημιουργία Div"},"elementspath":{"eleLabel":"Διαδρομή Στοιχείων","eleTitle":"Στοιχείο %1"},"filetools":{"loadError":"Error occurred during file read.","networkError":"Network error occurred during file upload.","httpError404":"HTTP error occurred during file upload (404: File not found).","httpError403":"HTTP error occurred during file upload (403: Forbidden).","httpError":"HTTP error occurred during file upload (error status: %1).","noUrlError":"Upload URL is not defined.","responseError":"Incorrect server response."},"find":{"find":"Εύρεση","findOptions":"Επιλογές Εύρεσης","findWhat":"Εύρεση για:","matchCase":"Ταίριασμα πεζών/κεφαλαίων","matchCyclic":"Αναδρομική εύρεση","matchWord":"Εύρεση μόνο πλήρων λέξεων","notFoundMsg":"Το κείμενο δεν βρέθηκε.","replace":"Αντικατάσταση","replaceAll":"Αντικατάσταση Όλων","replaceSuccessMsg":"Ο(ι) όρος(-οι) αντικαταστήθηκε(-αν) %1 φορές.","replaceWith":"Αντικατάσταση με:","title":"Εύρεση και Αντικατάσταση"},"font":{"fontSize":{"label":"Μέγεθος","voiceLabel":"Μέγεθος Γραμματοσειράς","panelTitle":"Μέγεθος Γραμματοσειράς"},"label":"Γραμματοσειρά","panelTitle":"Όνομα Γραμματοσειράς","voiceLabel":"Γραμματοσειρά"},"format":{"label":"Μορφοποίηση","panelTitle":"Μορφοποίηση Παραγράφου","tag_address":"Διεύθυνση","tag_div":"Κανονική (DIV)","tag_h1":"Κεφαλίδα 1","tag_h2":"Κεφαλίδα 2","tag_h3":"Κεφαλίδα 3","tag_h4":"Κεφαλίδα 4","tag_h5":"Κεφαλίδα 5","tag_h6":"Κεφαλίδα 6","tag_p":"Κανονική","tag_pre":"Προ-μορφοποιημένη"},"fakeobjects":{"anchor":"Άγκυρα","hiddenfield":"Κρυφό Πεδίο","iframe":"IFrame","unknown":"Άγνωστο Αντικείμενο"},"forms":{"button":{"title":"Ιδιότητες Κουμπιού","text":"Κείμενο (Τιμή)","type":"Τύπος","typeBtn":"Κουμπί","typeSbm":"Υποβολή","typeRst":"Επαναφορά"},"checkboxAndRadio":{"checkboxTitle":"Ιδιότητες Κουτιού Επιλογής","radioTitle":"Ιδιότητες Κουμπιού Επιλογής","value":"Τιμή","selected":"Επιλεγμένο","required":"Απαιτείται"},"form":{"title":"Ιδιότητες Φόρμας","menu":"Ιδιότητες Φόρμας","action":"Ενέργεια","method":"Μέθοδος","encoding":"Κωδικοποίηση"},"hidden":{"title":"Ιδιότητες Κρυφού Πεδίου","name":"Όνομα","value":"Τιμή"},"select":{"title":"Ιδιότητες Πεδίου Επιλογής","selectInfo":"Πληροφορίες Πεδίου Επιλογής","opAvail":"Διαθέσιμες Επιλογές","value":"Τιμή","size":"Μέγεθος","lines":"γραμμές","chkMulti":"Να επιτρέπονται οι πολλαπλές επιλογές","required":"Απαιτείται","opText":"Κείμενο","opValue":"Τιμή","btnAdd":"Προσθήκη","btnModify":"Τροποποίηση","btnUp":"Πάνω","btnDown":"Κάτω","btnSetValue":"Θέση ως προεπιλογή","btnDelete":"Διαγραφή"},"textarea":{"title":"Ιδιότητες Περιοχής Κειμένου","cols":"Στήλες","rows":"Σειρές"},"textfield":{"title":"Ιδιότητες Πεδίου Κειμένου","name":"Όνομα","value":"Τιμή","charWidth":"Πλάτος Χαρακτήρων","maxChars":"Μέγιστοι χαρακτήρες","required":"Απαιτείται","type":"Τύπος","typeText":"Κείμενο","typePass":"Κωδικός","typeEmail":"Email","typeSearch":"Αναζήτηση","typeTel":"Αριθμός Τηλεφώνου","typeUrl":"URL"}},"horizontalrule":{"toolbar":"Εισαγωγή Οριζόντιας Γραμμής"},"iframe":{"border":"Προβολή περιγράμματος πλαισίου","noUrl":"Παρακαλούμε εισάγεται το URL του iframe","scrolling":"Ενεργοποίηση μπαρών κύλισης","title":"Ιδιότητες IFrame","toolbar":"IFrame","tabindex":"Απομάκρυνση από ευρετήριο στηλοθέτη."},"image":{"alt":"Εναλλακτικό Κείμενο","border":"Περίγραμμα","btnUpload":"Αποστολή στον Διακομιστή","button2Img":"Θέλετε να μετατρέψετε το επιλεγμένο κουμπί εικόνας σε απλή εικόνα;","hSpace":"HSpace","img2Button":"Θέλετε να μεταμορφώσετε την επιλεγμένη εικόνα που είναι πάνω σε ένα κουμπί;","infoTab":"Πληροφορίες Εικόνας","linkTab":"Σύνδεσμος","lockRatio":"Κλείδωμα Αναλογίας","menu":"Ιδιότητες Εικόνας","resetSize":"Επαναφορά Αρχικού Μεγέθους","title":"Ιδιότητες Εικόνας","titleButton":"Ιδιότητες Κουμπιού Εικόνας","upload":"Αποστολή","urlMissing":"Το URL πηγής για την εικόνα λείπει.","vSpace":"VSpace","validateBorder":"Το περίγραμμα πρέπει να είναι ένας ακέραιος αριθμός.","validateHSpace":"Το HSpace πρέπει να είναι ένας ακέραιος αριθμός.","validateVSpace":"Το VSpace πρέπει να είναι ένας ακέραιος αριθμός."},"indent":{"indent":"Αύξηση Εσοχής","outdent":"Μείωση Εσοχής"},"language":{"button":"Θέση γλώσσας","remove":"Αφαίρεση γλώσσας"},"widget":{"move":"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε","label":"%1 widget"},"layoutmanager":{"title":"Layouts","addLayoutDialogTitle":"Choose layout","manageLayoutDialogTitle":"Replace layout with","removeLayoutMenuLabel":"Remove layout","manageLayoutMenuLabel":"Replace layout"},"link":{"acccessKey":"Συντόμευση","advanced":"Για Προχωρημένους","advisoryContentType":"Ενδεικτικός Τύπος Περιεχομένου","advisoryTitle":"Ενδεικτικός Τίτλος","anchor":{"toolbar":"Εισαγωγή/επεξεργασία Άγκυρας","menu":"Ιδιότητες άγκυρας","title":"Ιδιότητες άγκυρας","name":"Όνομα άγκυρας","errorName":"Παρακαλούμε εισάγετε όνομα άγκυρας","remove":"Αφαίρεση Άγκυρας"},"anchorId":"Βάσει του Element Id","anchorName":"Βάσει του Ονόματος Άγκυρας","charset":"Κωδικοποίηση Χαρακτήρων Προσαρτημένης Πηγής","cssClasses":"Κλάσεις Φύλλων Στυλ","download":"Εξαγκασμένη Λήψη","displayText":"Κείμενο Εμφάνισης","emailAddress":"Διεύθυνση E-mail","emailBody":"Κείμενο Μηνύματος","emailSubject":"Θέμα Μηνύματος","id":"Id","info":"Πληροφορίες Συνδέσμου","langCode":"Κατεύθυνση Κειμένου","langDir":"Κατεύθυνση Κειμένου","langDirLTR":"Αριστερά προς Δεξιά (LTR)","langDirRTL":"Δεξιά προς Αριστερά (RTL)","menu":"Επεξεργασία Συνδέσμου","name":"Όνομα","noAnchors":"(Δεν υπάρχουν άγκυρες στο κείμενο)","noEmail":"Εισάγετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου","noUrl":"Εισάγετε την τοποθεσία (URL) του συνδέσμου","noTel":"Γράψτε τον αριθμό τηλεφώνου","other":"<άλλο>","phoneNumber":"Αριθμός τηλεφώνου","popupDependent":"Εξαρτημένο (Netscape)","popupFeatures":"Επιλογές Αναδυόμενου Παραθύρου","popupFullScreen":"Πλήρης Οθόνη (IE)","popupLeft":"Θέση Αριστερά","popupLocationBar":"Γραμμή Τοποθεσίας","popupMenuBar":"Γραμμή Επιλογών","popupResizable":"Προσαρμοζόμενο Μέγεθος","popupScrollBars":"Μπάρες Κύλισης","popupStatusBar":"Γραμμή Κατάστασης","popupToolbar":"Εργαλειοθήκη","popupTop":"Θέση Πάνω","rel":"Σχέση","selectAnchor":"Επιλέξτε μια Άγκυρα","styles":"Μορφή","tabIndex":"Σειρά Μεταπήδησης","target":"Παράθυρο Προορισμού","targetFrame":"<πλαίσιο>","targetFrameName":"Όνομα Πλαισίου Προορισμού","targetPopup":"<αναδυόμενο παράθυρο>","targetPopupName":"Όνομα Αναδυόμενου Παραθύρου","title":"Σύνδεσμος","toAnchor":"Άγκυρα σε αυτήν τη σελίδα","toEmail":"E-Mail","toUrl":"URL","toPhone":"Τηλέφωνο","toolbar":"Σύνδεσμος","type":"Τύπος Συνδέσμου","unlink":"Αφαίρεση Συνδέσμου","upload":"Αποστολή"},"list":{"bulletedlist":"Εισαγωγή/Απομάκρυνση Λίστας Κουκκίδων","numberedlist":"Εισαγωγή/Απομάκρυνση Αριθμημένης Λίστας"},"liststyle":{"bulletedTitle":"Ιδιότητες Λίστας Σημείων","circle":"Κύκλος","decimal":"Δεκαδική (1, 2, 3, κτλ)","disc":"Δίσκος","lowerAlpha":"Μικρά Λατινικά (a, b, c, d, e, κτλ.)","lowerRoman":"Μικρά Ρωμαϊκά (i, ii, iii, iv, v, κτλ)","none":"Καμία","notset":"<δεν έχει οριστεί>","numberedTitle":"Ιδιότητες Αριθμημένης Λίστας ","square":"Τετράγωνο","start":"Εκκίνηση","type":"Τύπος","upperAlpha":"Κεφαλαία Λατινικά (A, B, C, D, E, κτλ)","upperRoman":"Κεφαλαία Ρωμαϊκά (I, II, III, IV, V, κτλ)","validateStartNumber":"Ο αριθμός εκκίνησης της αρίθμησης πρέπει να είναι ακέραιος αριθμός."},"magicline":{"title":"Εισάγετε παράγραφο εδώ"},"maximize":{"maximize":"Μεγιστοποίηση","minimize":"Ελαχιστοποίηση"},"newpage":{"toolbar":"Νέα Σελίδα"},"pagebreak":{"alt":"Αλλαγή Σελίδας","toolbar":"Εισαγωγή Τέλους Σελίδας για Εκτύπωση"},"pastefromword":{"confirmCleanup":"Το κείμενο που επικολλάται φαίνεται να είναι αντιγραμμένο από το Word. Μήπως θα θέλατε να καθαριστεί προτού επικολληθεί;","error":"Δεν ήταν δυνατό να καθαριστούν τα δεδομένα λόγω ενός εσωτερικού σφάλματος","title":"Επικόλληση από το Word","toolbar":"Επικόλληση από το Word"},"pastetext":{"button":"Επικόλληση ως απλό κείμενο","pasteNotification":"Πατήστε %1 για επικόλληση. Ο φυλλομετρητής σας δεν υποστηρίζει επικόλληση με το κουμπί της γραμμής εργαλείων ή την επιλογή από το μενού δεξιού κλικ.","title":"Επικόλληση ως απλό κείμενο"},"preview":{"preview":"Προεπισκόπιση"},"print":{"toolbar":"Εκτύπωση"},"removeformat":{"toolbar":"Εκκαθάριση Μορφοποίησης"},"save":{"toolbar":"Αποθήκευση"},"scayt":{"btn_about":"About SCAYT","btn_dictionaries":"Λεξικά","btn_disable":"Disable SCAYT","btn_enable":"Enable SCAYT","btn_langs":"Γλώσσες","btn_options":"Επιλογές","text_title":"Spell Check As You Type"},"selectall":{"toolbar":"Επιλογή όλων"},"showblocks":{"toolbar":"Προβολή Τμημάτων"},"smiley":{"options":"Επιλογές Φατσούλων","title":"Εισάγετε μια Φατσούλα","toolbar":"Φατσούλα"},"sourcearea":{"toolbar":"Κώδικας"},"specialchar":{"options":"Επιλογές Ειδικών Χαρακτήρων","title":"Επιλέξτε Έναν Ειδικό Χαρακτήρα","toolbar":"Εισαγωγή Ειδικού Χαρακτήρα"},"stylescombo":{"label":"Μορφές","panelTitle":"Στυλ Μορφοποίησης","panelTitle1":"Στυλ Τμημάτων","panelTitle2":"Στυλ Εν Σειρά","panelTitle3":"Στυλ Αντικειμένων"},"table":{"border":"Πάχος Περιγράμματος","caption":"Λεζάντα","cell":{"menu":"Κελί","insertBefore":"Εισαγωγή Κελιού Πριν","insertAfter":"Εισαγωγή Κελιού Μετά","deleteCell":"Διαγραφή Κελιών","merge":"Ενοποίηση Κελιών","mergeRight":"Συγχώνευση Με Δεξιά","mergeDown":"Συγχώνευση Με Κάτω","splitHorizontal":"Οριζόντια Διαίρεση Κελιού","splitVertical":"Κατακόρυφη Διαίρεση Κελιού","title":"Ιδιότητες Κελιού","cellType":"Τύπος Κελιού","rowSpan":"Εύρος Γραμμών","colSpan":"Εύρος Στηλών","wordWrap":"Αναδίπλωση Λέξεων","hAlign":"Οριζόντια Στοίχιση","vAlign":"Κάθετη Στοίχιση","alignBaseline":"Γραμμή Βάσης","bgColor":"Χρώμα Φόντου","borderColor":"Χρώμα Περιγράμματος","data":"Δεδομένα","header":"Κεφαλίδα","yes":"Ναι","no":"Όχι","invalidWidth":"Το πλάτος του κελιού πρέπει να είναι αριθμός.","invalidHeight":"Το ύψος του κελιού πρέπει να είναι αριθμός.","invalidRowSpan":"Το εύρος των γραμμών πρέπει να είναι ακέραιος αριθμός.","invalidColSpan":"Το εύρος των στηλών πρέπει να είναι ακέραιος αριθμός.","chooseColor":"Επιλέξτε"},"cellPad":"Αναπλήρωση κελιών","cellSpace":"Απόσταση κελιών","column":{"menu":"Στήλη","insertBefore":"Εισαγωγή Στήλης Πριν","insertAfter":"Εισαγωγή Στήλης Μετά","deleteColumn":"Διαγραφή Στηλών"},"columns":"Στήλες","deleteTable":"Διαγραφή Πίνακα","headers":"Κεφαλίδες","headersBoth":"Και τα δύο","headersColumn":"Πρώτη στήλη","headersNone":"Κανένα","headersRow":"Πρώτη Γραμμή","heightUnit":"μονάδα ύψους","invalidBorder":"Το πάχος του περιγράμματος πρέπει να είναι ένας αριθμός.","invalidCellPadding":"Η αναπλήρωση των κελιών πρέπει να είναι θετικός αριθμός.","invalidCellSpacing":"Η απόσταση μεταξύ των κελιών πρέπει να είναι ένας θετικός αριθμός.","invalidCols":"Ο αριθμός των στηλών πρέπει να είναι μεγαλύτερος από 0.","invalidHeight":"Το ύψος του πίνακα πρέπει να είναι αριθμός.","invalidRows":"Ο αριθμός των σειρών πρέπει να είναι μεγαλύτερος από 0.","invalidWidth":"Το πλάτος του πίνακα πρέπει να είναι ένας αριθμός.","menu":"Ιδιότητες Πίνακα","row":{"menu":"Γραμμή","insertBefore":"Εισαγωγή Γραμμής Πριν","insertAfter":"Εισαγωγή Γραμμής Μετά","deleteRow":"Διαγραφή Γραμμών"},"rows":"Γραμμές","summary":"Περίληψη","title":"Ιδιότητες Πίνακα","toolbar":"Πίνακας","widthPc":"τοις εκατό","widthPx":"pixel","widthUnit":"μονάδα πλάτους"},"templates":{"button":"Πρότυπα","emptyListMsg":"(Δεν έχουν καθοριστεί πρότυπα)","insertOption":"Αντικατάσταση υπάρχοντων περιεχομένων","options":"Επιλογές Προτύπου","selectPromptMsg":"Παρακαλώ επιλέξτε πρότυπο για εισαγωγή στο πρόγραμμα","title":"Πρότυπα Περιεχομένου"},"undo":{"redo":"Επανάληψη","undo":"Αναίρεση"},"uploadwidget":{"abort":"Αποστολή ακυρώθηκε απο χρήστη.","doneOne":"Αρχείο εστάλη επιτυχώς.","doneMany":"Επιτυχής αποστολή %1 αρχείων.","uploadOne":"Αποστολή αρχείου ({percentage}%)…","uploadMany":"Αποστολή αρχείων, {current} από {max} ολοκληρωμένα ({percentage}%)…"},"youtube":{"button":"Ενσωμάτωση Youtube βίντεο","title":"Ενσωμάτωση Youtube βίντεο","txtEmbed":"Επικόλλησε τον κώδικα ενσωμάτωσης","txtUrl":"Επικόλλησε το URL του βίντεο","txtWidth":"Πλάτος","txtHeight":"Ύψος","chkRelated":"Εμφάνιση προτεινόμενων βίντεο μόλις ολοκληρωθεί","txtStartAt":"Χρόνος εκκίνησης (ss or mm:ss or hh:mm:ss)","chkPrivacy":"Ενεργοποίηση λειτουργίας ενισχυμένου απορρήτου","chkOlderCode":"Χρήση παλαιού κώδικα ενσωμάτωσης","chkAutoplay":"Αυτόματη εκκίνηση","chkControls":"Εμφάνιση στοιχείων ελέγχου προγράμματος αναπαραγωγής","noCode":"Χρειάζεται κώδικας ενσωμάτωσης ή URL","invalidEmbed":"Ο κώδικας ενσωμάτωσης που εισήγατε δεν μοιάζει σωστός","invalidUrl":"Το URL που εισήγατε δεν μοιάζει σωστό","or":"ή","noWidth":"Συμπληρώστε το πλάτος","invalidWidth":"Λανθασμένο πλάτος","noHeight":"Συμπληρώστε το ύψος","invalidHeight":"Λανθασμένο ύψος","invalidTime":"Λανθασμένος χρόνος εκκίνησης","txtResponsive":"Make Responsive (ignore width and height, fit to width)","txtNoEmbed":"Video image and link only"},"syntaxhighlight":{"title":"Add or update a code snippet","contextTitle":"Edit source code","sourceTab":"Source code","langLbl":"Select language","sourceTextareaEmptyError":"Source code mustn't be empty.","advancedTab":"Advanced","hideGutter":"Hide gutter","hideGutterLbl":"Hide gutter & line numbers.","hideControls":"Hide controls","hideControlsLbl":"Hide code controls at the top of the code block.","collapse":"Collapse","collapseLbl":"Collapse the code block by default. (controls need to be turned on)","codeTitleLbl":"Use a Code Title","showColumns":"Show columns","showColumnsLbl":"Show row columns in the first line.","lineWrap":"Disable line wrapping","lineWrapLbl":"Switch off line wrapping.","lineCount":"Default line count","highlight":"Highlight lines","highlightLbl":"Enter a comma seperated lines of lines you want to highlight, eg 3,10,15."}}; \ No newline at end of file diff --git a/plugins/ckeditor/lib/lang/en.js b/plugins/ckeditor/lib/lang/en.js new file mode 100644 index 0000000..6000225 --- /dev/null +++ b/plugins/ckeditor/lib/lang/en.js @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license/ +*/ +CKEDITOR.lang['en']={"application":"Rich Text Editor","editor":"Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Press ALT 0 for help","browseServer":"Browse Server","url":"URL","protocol":"Protocol","upload":"Upload","uploadSubmit":"Send it to the Server","image":"Image","form":"Form","checkbox":"Checkbox","radio":"Radio Button","textField":"Text Field","textarea":"Textarea","hiddenField":"Hidden Field","button":"Button","select":"Selection Field","imageButton":"Image Button","notSet":"","id":"Id","name":"Name","langDir":"Language Direction","langDirLtr":"Left to Right (LTR)","langDirRtl":"Right to Left (RTL)","langCode":"Language Code","longDescr":"Long Description URL","cssClass":"Stylesheet Classes","advisoryTitle":"Advisory Title","cssStyle":"Style","ok":"OK","cancel":"Cancel","close":"Close","preview":"Preview","resize":"Resize","generalTab":"General","advancedTab":"Advanced","validateNumberFailed":"This value is not a number.","confirmNewPage":"Any unsaved changes to this content will be lost. Are you sure you want to load new page?","confirmCancel":"You have changed some options. Are you sure you want to close the dialog window?","options":"Options","target":"Target","targetNew":"New Window (_blank)","targetTop":"Topmost Window (_top)","targetSelf":"Same Window (_self)","targetParent":"Parent Window (_parent)","langDirLTR":"Left to Right (LTR)","langDirRTL":"Right to Left (RTL)","styles":"Style","cssClasses":"Stylesheet Classes","width":"Width","height":"Height","align":"Alignment","left":"Left","right":"Right","center":"Center","justify":"Justify","alignLeft":"Align Left","alignRight":"Align Right","alignCenter":"Align Center","alignTop":"Top","alignMiddle":"Middle","alignBottom":"Bottom","alignNone":"None","invalidValue":"Invalid value.","invalidHeight":"Height must be a number.","invalidWidth":"Width must be a number.","invalidLength":"Value specified for the \"%1\" field must be a positive number with or without a valid measurement unit (%2).","invalidCssLength":"Value specified for the \"%1\" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).","invalidHtmlLength":"Value specified for the \"%1\" field must be a positive number with or without a valid HTML measurement unit (px or %).","invalidInlineStyle":"Value specified for the inline style must consist of one or more tuples with the format of \"name : value\", separated by semi-colons.","cssLengthTooltip":"Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).","unavailable":"%1, unavailable","keyboard":{"8":"Backspace","13":"Enter","16":"Shift","17":"Ctrl","18":"Alt","32":"Space","35":"End","36":"Home","46":"Delete","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Command"},"keyboardShortcut":"Keyboard shortcut","optionDefault":"Default"},"about":{"copy":"Copyright © $1. All rights reserved.","dlgTitle":"About CKEditor 4","moreInfo":"For licensing information please visit our web site:"},"basicstyles":{"bold":"Bold","italic":"Italic","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"Underline"},"bidi":{"ltr":"Text direction from left to right","rtl":"Text direction from right to left"},"blockquote":{"toolbar":"Block Quote"},"notification":{"closed":"Notification closed."},"toolbar":{"toolbarCollapse":"Collapse Toolbar","toolbarExpand":"Expand Toolbar","toolbarGroups":{"document":"Document","clipboard":"Clipboard/Undo","editing":"Editing","forms":"Forms","basicstyles":"Basic Styles","paragraph":"Paragraph","links":"Links","insert":"Insert","styles":"Styles","colors":"Colors","tools":"Tools"},"toolbars":"Editor toolbars"},"clipboard":{"copy":"Copy","copyError":"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).","cut":"Cut","cutError":"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).","paste":"Paste","pasteNotification":"Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.","pasteArea":"Paste Area","pasteMsg":"Paste your content inside the area below and press OK.","fileFormatNotSupportedNotification":"The ${formats} file format(s) are not supported.","fileWithoutFormatNotSupportedNotification":"The file format is not supported."},"colorbutton":{"auto":"Automatic","bgColorTitle":"Background Color","colors":{"000":"Black","800000":"Maroon","8B4513":"Saddle Brown","2F4F4F":"Dark Slate Gray","008080":"Teal","000080":"Navy","4B0082":"Indigo","696969":"Dark Gray","B22222":"Fire Brick","A52A2A":"Brown","DAA520":"Golden Rod","006400":"Dark Green","40E0D0":"Turquoise","0000CD":"Medium Blue","800080":"Purple","808080":"Gray","F00":"Red","FF8C00":"Dark Orange","FFD700":"Gold","008000":"Green","0FF":"Cyan","00F":"Blue","EE82EE":"Violet","A9A9A9":"Dim Gray","FFA07A":"Light Salmon","FFA500":"Orange","FFFF00":"Yellow","00FF00":"Lime","AFEEEE":"Pale Turquoise","ADD8E6":"Light Blue","DDA0DD":"Plum","D3D3D3":"Light Grey","FFF0F5":"Lavender Blush","FAEBD7":"Antique White","FFFFE0":"Light Yellow","F0FFF0":"Honeydew","F0FFFF":"Azure","F0F8FF":"Alice Blue","E6E6FA":"Lavender","FFF":"White","1ABC9C":"Strong Cyan","2ECC71":"Emerald","3498DB":"Bright Blue","9B59B6":"Amethyst","4E5F70":"Grayish Blue","F1C40F":"Vivid Yellow","16A085":"Dark Cyan","27AE60":"Dark Emerald","2980B9":"Strong Blue","8E44AD":"Dark Violet","2C3E50":"Desaturated Blue","F39C12":"Orange","E67E22":"Carrot","E74C3C":"Pale Red","ECF0F1":"Bright Silver","95A5A6":"Light Grayish Cyan","DDD":"Light Gray","D35400":"Pumpkin","C0392B":"Strong Red","BDC3C7":"Silver","7F8C8D":"Grayish Cyan","999":"Dark Gray"},"more":"More Colors...","panelTitle":"Colors","textColorTitle":"Text Color"},"colordialog":{"clear":"Clear","highlight":"Highlight","options":"Color Options","selected":"Selected Color","title":"Select color"},"contextmenu":{"options":"Context Menu Options"},"copyformatting":{"label":"Copy Formatting","notification":{"copied":"Formatting copied","applied":"Formatting applied","canceled":"Formatting canceled","failed":"Formatting failed. You cannot apply styles without copying them first."}},"div":{"IdInputLabel":"Id","advisoryTitleInputLabel":"Advisory Title","cssClassInputLabel":"Stylesheet Classes","edit":"Edit Div","inlineStyleInputLabel":"Inline Style","langDirLTRLabel":"Left to Right (LTR)","langDirLabel":"Language Direction","langDirRTLLabel":"Right to Left (RTL)","languageCodeInputLabel":" Language Code","remove":"Remove Div","styleSelectLabel":"Style","title":"Create Div Container","toolbar":"Create Div Container"},"elementspath":{"eleLabel":"Elements path","eleTitle":"%1 element"},"filetools":{"loadError":"Error occurred during file read.","networkError":"Network error occurred during file upload.","httpError404":"HTTP error occurred during file upload (404: File not found).","httpError403":"HTTP error occurred during file upload (403: Forbidden).","httpError":"HTTP error occurred during file upload (error status: %1).","noUrlError":"Upload URL is not defined.","responseError":"Incorrect server response."},"find":{"find":"Find","findOptions":"Find Options","findWhat":"Find what:","matchCase":"Match case","matchCyclic":"Match cyclic","matchWord":"Match whole word","notFoundMsg":"The specified text was not found.","replace":"Replace","replaceAll":"Replace All","replaceSuccessMsg":"%1 occurrence(s) replaced.","replaceWith":"Replace with:","title":"Find and Replace"},"font":{"fontSize":{"label":"Size","voiceLabel":"Font Size","panelTitle":"Font Size"},"label":"Font","panelTitle":"Font Name","voiceLabel":"Font"},"format":{"label":"Format","panelTitle":"Paragraph Format","tag_address":"Address","tag_div":"Normal (DIV)","tag_h1":"Heading 1","tag_h2":"Heading 2","tag_h3":"Heading 3","tag_h4":"Heading 4","tag_h5":"Heading 5","tag_h6":"Heading 6","tag_p":"Normal","tag_pre":"Formatted"},"fakeobjects":{"anchor":"Anchor","hiddenfield":"Hidden Field","iframe":"IFrame","unknown":"Unknown Object"},"forms":{"button":{"title":"Button Properties","text":"Text (Value)","type":"Type","typeBtn":"Button","typeSbm":"Submit","typeRst":"Reset"},"checkboxAndRadio":{"checkboxTitle":"Checkbox Properties","radioTitle":"Radio Button Properties","value":"Value","selected":"Selected","required":"Required"},"form":{"title":"Form Properties","menu":"Form Properties","action":"Action","method":"Method","encoding":"Encoding"},"hidden":{"title":"Hidden Field Properties","name":"Name","value":"Value"},"select":{"title":"Selection Field Properties","selectInfo":"Select Info","opAvail":"Available Options","value":"Value","size":"Size","lines":"lines","chkMulti":"Allow multiple selections","required":"Required","opText":"Text","opValue":"Value","btnAdd":"Add","btnModify":"Modify","btnUp":"Up","btnDown":"Down","btnSetValue":"Set as selected value","btnDelete":"Delete"},"textarea":{"title":"Textarea Properties","cols":"Columns","rows":"Rows"},"textfield":{"title":"Text Field Properties","name":"Name","value":"Value","charWidth":"Character Width","maxChars":"Maximum Characters","required":"Required","type":"Type","typeText":"Text","typePass":"Password","typeEmail":"Email","typeSearch":"Search","typeTel":"Telephone Number","typeUrl":"URL"}},"horizontalrule":{"toolbar":"Insert Horizontal Line"},"iframe":{"border":"Show frame border","noUrl":"Please type the iframe URL","scrolling":"Enable scrollbars","title":"IFrame Properties","toolbar":"IFrame","tabindex":"Remove from tabindex"},"image":{"alt":"Alternative Text","border":"Border","btnUpload":"Send it to the Server","button2Img":"Do you want to transform the selected image button on a simple image?","hSpace":"HSpace","img2Button":"Do you want to transform the selected image on a image button?","infoTab":"Image Info","linkTab":"Link","lockRatio":"Lock Ratio","menu":"Image Properties","resetSize":"Reset Size","title":"Image Properties","titleButton":"Image Button Properties","upload":"Upload","urlMissing":"Image source URL is missing.","vSpace":"VSpace","validateBorder":"Border must be a whole number.","validateHSpace":"HSpace must be a whole number.","validateVSpace":"VSpace must be a whole number."},"indent":{"indent":"Increase Indent","outdent":"Decrease Indent"},"language":{"button":"Set language","remove":"Remove language"},"widget":{"move":"Click and drag to move","label":"%1 widget"},"layoutmanager":{"title":"Layouts","addLayoutDialogTitle":"Choose layout","manageLayoutDialogTitle":"Replace layout with","removeLayoutMenuLabel":"Remove layout","manageLayoutMenuLabel":"Replace layout"},"link":{"acccessKey":"Access Key","advanced":"Advanced","advisoryContentType":"Advisory Content Type","advisoryTitle":"Advisory Title","anchor":{"toolbar":"Anchor","menu":"Edit Anchor","title":"Anchor Properties","name":"Anchor Name","errorName":"Please type the anchor name","remove":"Remove Anchor"},"anchorId":"By Element Id","anchorName":"By Anchor Name","charset":"Linked Resource Charset","cssClasses":"Stylesheet Classes","download":"Force Download","displayText":"Display Text","emailAddress":"E-Mail Address","emailBody":"Message Body","emailSubject":"Message Subject","id":"Id","info":"Link Info","langCode":"Language Code","langDir":"Language Direction","langDirLTR":"Left to Right (LTR)","langDirRTL":"Right to Left (RTL)","menu":"Edit Link","name":"Name","noAnchors":"(No anchors available in the document)","noEmail":"Please type the e-mail address","noUrl":"Please type the link URL","noTel":"Please type the phone number","other":"","phoneNumber":"Phone number","popupDependent":"Dependent (Netscape)","popupFeatures":"Popup Window Features","popupFullScreen":"Full Screen (IE)","popupLeft":"Left Position","popupLocationBar":"Location Bar","popupMenuBar":"Menu Bar","popupResizable":"Resizable","popupScrollBars":"Scroll Bars","popupStatusBar":"Status Bar","popupToolbar":"Toolbar","popupTop":"Top Position","rel":"Relationship","selectAnchor":"Select an Anchor","styles":"Style","tabIndex":"Tab Index","target":"Target","targetFrame":"","targetFrameName":"Target Frame Name","targetPopup":"","targetPopupName":"Popup Window Name","title":"Link","toAnchor":"Link to anchor in the text","toEmail":"E-mail","toUrl":"URL","toPhone":"Phone","toolbar":"Link","type":"Link Type","unlink":"Unlink","upload":"Upload"},"list":{"bulletedlist":"Insert/Remove Bulleted List","numberedlist":"Insert/Remove Numbered List"},"liststyle":{"bulletedTitle":"Bulleted List Properties","circle":"Circle","decimal":"Decimal (1, 2, 3, etc.)","disc":"Disc","lowerAlpha":"Lower Alpha (a, b, c, d, e, etc.)","lowerRoman":"Lower Roman (i, ii, iii, iv, v, etc.)","none":"None","notset":"","numberedTitle":"Numbered List Properties","square":"Square","start":"Start","type":"Type","upperAlpha":"Upper Alpha (A, B, C, D, E, etc.)","upperRoman":"Upper Roman (I, II, III, IV, V, etc.)","validateStartNumber":"List start number must be a whole number."},"magicline":{"title":"Insert paragraph here"},"maximize":{"maximize":"Maximize","minimize":"Minimize"},"newpage":{"toolbar":"New Page"},"pagebreak":{"alt":"Page Break","toolbar":"Insert Page Break for Printing"},"pastefromword":{"confirmCleanup":"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?","error":"It was not possible to clean up the pasted data due to an internal error","title":"Paste from Word","toolbar":"Paste from Word"},"pastetext":{"button":"Paste as plain text","pasteNotification":"Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.","title":"Paste as Plain Text"},"preview":{"preview":"Preview"},"print":{"toolbar":"Print"},"removeformat":{"toolbar":"Remove Format"},"save":{"toolbar":"Save"},"scayt":{"btn_about":"About SCAYT","btn_dictionaries":"Dictionaries","btn_disable":"Disable SCAYT","btn_enable":"Enable SCAYT","btn_langs":"Languages","btn_options":"Options","text_title":"Spell Check As You Type"},"selectall":{"toolbar":"Select All"},"showblocks":{"toolbar":"Show Blocks"},"smiley":{"options":"Smiley Options","title":"Insert a Smiley","toolbar":"Smiley"},"sourcearea":{"toolbar":"Source"},"specialchar":{"options":"Special Character Options","title":"Select Special Character","toolbar":"Insert Special Character"},"stylescombo":{"label":"Styles","panelTitle":"Formatting Styles","panelTitle1":"Block Styles","panelTitle2":"Inline Styles","panelTitle3":"Object Styles"},"table":{"border":"Border size","caption":"Caption","cell":{"menu":"Cell","insertBefore":"Insert Cell Before","insertAfter":"Insert Cell After","deleteCell":"Delete Cells","merge":"Merge Cells","mergeRight":"Merge Right","mergeDown":"Merge Down","splitHorizontal":"Split Cell Horizontally","splitVertical":"Split Cell Vertically","title":"Cell Properties","cellType":"Cell Type","rowSpan":"Rows Span","colSpan":"Columns Span","wordWrap":"Word Wrap","hAlign":"Horizontal Alignment","vAlign":"Vertical Alignment","alignBaseline":"Baseline","bgColor":"Background Color","borderColor":"Border Color","data":"Data","header":"Header","yes":"Yes","no":"No","invalidWidth":"Cell width must be a number.","invalidHeight":"Cell height must be a number.","invalidRowSpan":"Rows span must be a whole number.","invalidColSpan":"Columns span must be a whole number.","chooseColor":"Choose"},"cellPad":"Cell padding","cellSpace":"Cell spacing","column":{"menu":"Column","insertBefore":"Insert Column Before","insertAfter":"Insert Column After","deleteColumn":"Delete Columns"},"columns":"Columns","deleteTable":"Delete Table","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row","heightUnit":"height unit","invalidBorder":"Border size must be a number.","invalidCellPadding":"Cell padding must be a positive number.","invalidCellSpacing":"Cell spacing must be a positive number.","invalidCols":"Number of columns must be a number greater than 0.","invalidHeight":"Table height must be a number.","invalidRows":"Number of rows must be a number greater than 0.","invalidWidth":"Table width must be a number.","menu":"Table Properties","row":{"menu":"Row","insertBefore":"Insert Row Before","insertAfter":"Insert Row After","deleteRow":"Delete Rows"},"rows":"Rows","summary":"Summary","title":"Table Properties","toolbar":"Table","widthPc":"percent","widthPx":"pixels","widthUnit":"width unit"},"templates":{"button":"Templates","emptyListMsg":"(No templates defined)","insertOption":"Replace actual contents","options":"Template Options","selectPromptMsg":"Please select the template to open in the editor","title":"Content Templates"},"undo":{"redo":"Redo","undo":"Undo"},"uploadwidget":{"abort":"Upload aborted by the user.","doneOne":"File successfully uploaded.","doneMany":"Successfully uploaded %1 files.","uploadOne":"Uploading file ({percentage}%)...","uploadMany":"Uploading files, {current} of {max} done ({percentage}%)..."},"youtube":{"button":"Embed YouTube Video","title":"Embed YouTube Video","txtEmbed":"Paste Embed Code Here","txtUrl":"Paste YouTube Video URL","txtWidth":"Width","txtHeight":"Height","chkRelated":"Show suggested videos at the video's end","txtStartAt":"Start at (ss or mm:ss or hh:mm:ss)","chkPrivacy":"Enable privacy-enhanced mode","chkOlderCode":"Use old embed code","chkAutoplay":"Autoplay","chkControls":"Show player controls","noCode":"You must input an embed code or URL","invalidEmbed":"The embed code you've entered doesn't appear to be valid","invalidUrl":"The URL you've entered doesn't appear to be valid","or":"or","noWidth":"You must inform the width","invalidWidth":"Inform a valid width","noHeight":"You must inform the height","invalidHeight":"Inform a valid height","invalidTime":"Inform a valid start time","txtResponsive":"Make Responsive (ignore width and height, fit to width)","txtNoEmbed":"Video image and link only"},"syntaxhighlight":{"title":"Add or update a code snippet","contextTitle":"Edit source code","sourceTab":"Source code","langLbl":"Select language","sourceTextareaEmptyError":"Source code mustn't be empty.","advancedTab":"Advanced","hideGutter":"Hide gutter","hideGutterLbl":"Hide gutter & line numbers.","hideControls":"Hide controls","hideControlsLbl":"Hide code controls at the top of the code block.","collapse":"Collapse","collapseLbl":"Collapse the code block by default. (controls need to be turned on)","codeTitleLbl":"Use a Code Title","showColumns":"Show columns","showColumnsLbl":"Show row columns in the first line.","lineWrap":"Disable line wrapping","lineWrapLbl":"Switch off line wrapping.","lineCount":"Default line count","highlight":"Highlight lines","highlightLbl":"Enter a comma seperated lines of lines you want to highlight, eg 3,10,15."}}; \ No newline at end of file diff --git a/plugins/ckeditor/lib/lang/fr.js b/plugins/ckeditor/lib/lang/fr.js new file mode 100644 index 0000000..a23e03f --- /dev/null +++ b/plugins/ckeditor/lib/lang/fr.js @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license/ +*/ +CKEDITOR.lang['fr']={"application":"Rich Text Editor","editor":"Éditeur de texte enrichi","editorPanel":"Tableau de bord de l'éditeur de texte enrichi","common":{"editorHelp":"Utilisez le raccourci Alt-0 pour obtenir de l'aide","browseServer":"Parcourir le serveur","url":"URL","protocol":"Protocole","upload":"Télécharger","uploadSubmit":"Envoyer sur le serveur","image":"Image","form":"Formulaire","checkbox":"Case à cocher","radio":"Bouton radio","textField":"Champ texte","textarea":"Zone de texte","hiddenField":"Champ invisible","button":"Bouton","select":"Liste déroulante","imageButton":"Bouton avec image","notSet":"","id":"ID","name":"Nom","langDir":"Sens d'écriture","langDirLtr":"Gauche à droite (LTR)","langDirRtl":"Droite à gauche (RTL)","langCode":"Code de langue","longDescr":"URL de description longue","cssClass":"Classes de style","advisoryTitle":"Infobulle","cssStyle":"Style","ok":"OK","cancel":"Annuler","close":"Fermer","preview":"Aperçu","resize":"Redimensionner","generalTab":"Général","advancedTab":"Avancé","validateNumberFailed":"Cette valeur n'est pas un nombre.","confirmNewPage":"Les changements non sauvegardés seront perdus. Êtes-vous sûr de vouloir charger une nouvelle page ?","confirmCancel":"Certaines options ont été modifiées. Êtes-vous sûr de vouloir fermer ?","options":"Options","target":"Cible","targetNew":"Nouvelle fenêtre (_blank)","targetTop":"Fenêtre supérieure (_top)","targetSelf":"Même fenêtre (_self)","targetParent":"Fenêtre parent (_parent)","langDirLTR":"Gauche à droite (LTR)","langDirRTL":"Droite à gauche (RTL)","styles":"Style","cssClasses":"Classes de style","width":"Largeur","height":"Hauteur","align":"Alignement","left":"Gauche","right":"Droite","center":"Centrer","justify":"Justifier","alignLeft":"Aligner à gauche","alignRight":"Aligner à droite","alignCenter":"Aligner au centre","alignTop":"Haut","alignMiddle":"Milieu","alignBottom":"Bas","alignNone":"Aucun","invalidValue":"Valeur invalide.","invalidHeight":"La hauteur doit être un nombre.","invalidWidth":"La largeur doit être un nombre.","invalidLength":"La valeur de \"%1\" doit être un nombre positif avec ou sans unité de mesure (%2).","invalidCssLength":"La valeur spécifiée pour le champ « %1 » doit être un nombre positif avec ou sans unité de mesure CSS valide (px, %, in, cm, mm, em, ex, pt, ou pc).","invalidHtmlLength":"La valeur spécifiée pour le champ « %1 » doit être un nombre positif avec ou sans unité de mesure HTML valide (px ou %).","invalidInlineStyle":"La valeur spécifiée pour le style en ligne doit être composée d'un ou plusieurs couples au format « nom : valeur », séparés par des points-virgules.","cssLengthTooltip":"Entrer un nombre pour une valeur en pixels ou un nombre avec une unité de mesure CSS valide (px, %, in, cm, mm, em, ex, pt, ou pc).","unavailable":"%1, indisponible","keyboard":{"8":"Retour arrière","13":"Entrée","16":"Majuscule","17":"Ctrl","18":"Alt","32":"Espace","35":"Fin","36":"Origine","46":"Supprimer","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Commande"},"keyboardShortcut":"Raccourci clavier","optionDefault":"Par défaut"},"about":{"copy":"Copyright © $1. Tous droits réservés.","dlgTitle":"À propos de CKEditor 4","moreInfo":"Pour les informations de licence, veuillez visiter notre site web :"},"basicstyles":{"bold":"Gras","italic":"Italique","strike":"Barré","subscript":"Indice","superscript":"Exposant","underline":"Souligné"},"bidi":{"ltr":"Direction du texte de la gauche vers la droite","rtl":"Direction du texte de la droite vers la gauche"},"blockquote":{"toolbar":"Citation"},"notification":{"closed":"Notification fermée."},"toolbar":{"toolbarCollapse":"Enrouler la barre d'outils","toolbarExpand":"Dérouler la barre d'outils","toolbarGroups":{"document":"Document","clipboard":"Presse-papier/Défaire","editing":"Édition","forms":"Formulaires","basicstyles":"Styles de base","paragraph":"Paragraphe","links":"Liens","insert":"Insérer","styles":"Styles","colors":"Couleurs","tools":"Outils"},"toolbars":"Barres d'outils de l'éditeur"},"clipboard":{"copy":"Copier","copyError":"Les paramètres de sécurité de votre navigateur n'autorisent pas l'éditeur à exécuter automatiquement l'opération « Copier ». Veuillez utiliser le raccourci clavier à cet effet (Ctrl/Cmd+C).","cut":"Couper","cutError":"Les paramètres de sécurité de votre navigateur n'autorisent pas l'éditeur à exécuter automatiquement l'opération « Couper ». Veuillez utiliser le raccourci clavier à cet effet (Ctrl/Cmd+X).","paste":"Coller","pasteNotification":"Utilisez le raccourci %1 pour coller. Votre navigateur n'accepte pas de coller à l'aide du bouton ou du menu contextuel.","pasteArea":"Coller la zone","pasteMsg":"Collez votre contenu dans la zone de saisie ci-dessous et cliquez OK.","fileFormatNotSupportedNotification":"The ${formats} file format(s) are not supported.","fileWithoutFormatNotSupportedNotification":"The file format is not supported."},"colorbutton":{"auto":"Automatique","bgColorTitle":"Couleur d'arrière-plan","colors":{"000":"Noir","800000":"Marron","8B4513":"Brun de selle","2F4F4F":"Gris sombre d'ardoise","008080":"Canard","000080":"Bleu marine","4B0082":"Indigo","696969":"Gris foncé","B22222":"Rouge brique","A52A2A":"Brun","DAA520":"Or terni","006400":"Vert foncé","40E0D0":"Turquoise","0000CD":"Bleu royal","800080":"Violet","808080":"Gris","F00":"Rouge","FF8C00":"Orange foncé","FFD700":"Or","008000":"Vert","0FF":"Cyan","00F":"Bleu","EE82EE":"Violet","A9A9A9":"Gris tamisé","FFA07A":"Saumon clair","FFA500":"Orange","FFFF00":"Jaune","00FF00":"Lime","AFEEEE":"Turquoise clair","ADD8E6":"Bleu clair","DDA0DD":"Prune","D3D3D3":"Gris clair","FFF0F5":"Fard lavande","FAEBD7":"Blanc antique","FFFFE0":"Jaune clair","F0FFF0":"Vert rosée","F0FFFF":"Azur","F0F8FF":"Bleu Alice","E6E6FA":"Lavande","FFF":"Blanc","1ABC9C":"Cyan dur","2ECC71":"Émeraude","3498DB":"Bleu brillant","9B59B6":"Améthyste","4E5F70":"Bleu-gris","F1C40F":"Jaune vif","16A085":"Cyan foncé","27AE60":"Émeraude foncée","2980B9":"Bleu dur","8E44AD":"Violet foncé","2C3E50":"Bleu désaturé","F39C12":"Orange","E67E22":"Carotte","E74C3C":"Rouge pâle","ECF0F1":"Argent brillant","95A5A6":"Cyan-gris clair","DDD":"Gris clair","D35400":"Citrouille","C0392B":"Rouge dur","BDC3C7":"Argent","7F8C8D":"Cyan-gris","999":"Gris foncé"},"more":"Plus de couleurs...","panelTitle":"Couleurs","textColorTitle":"Couleur du texte"},"colordialog":{"clear":"Effacer","highlight":"Pointée","options":"Options de couleur","selected":"Couleur choisie","title":"Sélectionner une couleur"},"contextmenu":{"options":"Options du menu contextuel"},"copyformatting":{"label":"Copier le formatage","notification":{"copied":"Formatage copié","applied":"Formatage appliqué","canceled":"Formatage supprimé","failed":"Échec du formatage. Vous devez d'abord copier des styles pour pouvoir les appliquer."}},"div":{"IdInputLabel":"ID","advisoryTitleInputLabel":"Infobulle","cssClassInputLabel":"Classes de style","edit":"Modifier la division","inlineStyleInputLabel":"Style en ligne","langDirLTRLabel":"Gauche à droite (LTR)","langDirLabel":"Sens d'écriture","langDirRTLLabel":"Droite à gauche (RTL)","languageCodeInputLabel":"Code de langue","remove":"Enlever la division","styleSelectLabel":"Style","title":"Créer une division","toolbar":"Créer une division"},"elementspath":{"eleLabel":"Chemin des éléments","eleTitle":"Élément %1"},"filetools":{"loadError":"Une erreur est survenue lors de la lecture du fichier.","networkError":"Une erreur réseau est survenue lors du téléversement du fichier.","httpError404":"Une erreur HTTP est survenue durant le téléversement du fichier (404 : fichier non trouvé).","httpError403":"Une erreur HTTP est survenue durant le téléversement du fichier (403 : accès refusé).","httpError":"Une erreur HTTP est survenue durant le téléversement du fichier (erreur : %1).","noUrlError":"L'URL de téléversement n'est pas spécifiée.","responseError":"Réponse du serveur incorrecte."},"find":{"find":"Rechercher","findOptions":"Options de recherche","findWhat":"Rechercher :","matchCase":"Respecter la casse","matchCyclic":"Boucler","matchWord":"Mot entier uniquement","notFoundMsg":"Le texte spécifié ne peut être trouvé.","replace":"Remplacer","replaceAll":"Remplacer tout","replaceSuccessMsg":"%1 occurrence(s) remplacée(s).","replaceWith":"Remplacer par : ","title":"Rechercher et remplacer"},"font":{"fontSize":{"label":"Taille","voiceLabel":"Taille de police","panelTitle":"Taille de police"},"label":"Police","panelTitle":"Style de police","voiceLabel":"Police"},"format":{"label":"Format","panelTitle":"Format de paragraphe","tag_address":"Adresse","tag_div":"Division","tag_h1":"Titre 1","tag_h2":"Titre 2","tag_h3":"Titre 3","tag_h4":"Titre 4","tag_h5":"Titre 5","tag_h6":"Titre 6","tag_p":"Normal","tag_pre":"Préformaté"},"fakeobjects":{"anchor":"Ancre","hiddenfield":"Champ invisible","iframe":"Cadre de contenu incorporé","unknown":"Objet inconnu"},"forms":{"button":{"title":"Propriétés du bouton","text":"Texte","type":"Type","typeBtn":"Bouton","typeSbm":"Validation","typeRst":"Remise à zéro"},"checkboxAndRadio":{"checkboxTitle":"Propriétés de la case à cocher","radioTitle":"Propriétés du bouton radio","value":"Valeur","selected":"Sélectionné","required":"Requis"},"form":{"title":"Propriétés du formulaire","menu":"Propriétés du formulaire","action":"Action","method":"Méthode","encoding":"Encodage"},"hidden":{"title":"Propriétés du champ invisible","name":"Nom","value":"Valeur"},"select":{"title":"Propriétés du menu déroulant","selectInfo":"Informations sur le menu déroulant","opAvail":"Options disponibles","value":"Valeur","size":"Taille","lines":"lignes","chkMulti":"Permettre les sélections multiples","required":"Requis","opText":"Texte","opValue":"Valeur","btnAdd":"Ajouter","btnModify":"Modifier","btnUp":"Haut","btnDown":"Bas","btnSetValue":"Définir comme valeur sélectionnée","btnDelete":"Supprimer"},"textarea":{"title":"Propriétés de la zone de texte","cols":"Colonnes","rows":"Lignes"},"textfield":{"title":"Propriétés du champ texte","name":"Nom","value":"Valeur","charWidth":"Largeur des caractères","maxChars":"Nombre maximum de caractères","required":"Requis","type":"Type","typeText":"Texte","typePass":"Mot de passe","typeEmail":"Courriel","typeSearch":"Rechercher","typeTel":"Numéro de téléphone","typeUrl":"URL"}},"horizontalrule":{"toolbar":"Ligne horizontale"},"iframe":{"border":"Afficher la bordure du cadre","noUrl":"Veuillez entrer l'URL du contenu du cadre","scrolling":"Activer les barres de défilement","title":"Propriétés du cadre de contenu incorporé","toolbar":"Cadre de contenu incorporé","tabindex":"Supprimer de tabindex"},"image":{"alt":"Texte alternatif","border":"Bordure","btnUpload":"Envoyer sur le serveur","button2Img":"Voulez-vous transformer le bouton avec image sélectionné en simple image ?","hSpace":"Espacement horizontal","img2Button":"Voulez-vous transformer l'image sélectionnée en bouton avec image ?","infoTab":"Informations sur l'image","linkTab":"Lien","lockRatio":"Conserver les proportions","menu":"Propriétés de l'image","resetSize":"Réinitialiser la taille","title":"Propriétés de l'image","titleButton":"Propriétés du bouton avec image","upload":"Téléverser","urlMissing":"L'URL source de l'image est manquante.","vSpace":"Espacement vertical","validateBorder":"La bordure doit être un nombre entier.","validateHSpace":"L'espacement horizontal doit être un nombre entier.","validateVSpace":"L'espacement vertical doit être un nombre entier."},"indent":{"indent":"Augmenter le retrait","outdent":"Diminuer le retrait"},"language":{"button":"Définir la langue","remove":"Supprimer la langue"},"widget":{"move":"Cliquer et glisser pour déplacer","label":"Élément %1"},"layoutmanager":{"title":"Layouts","addLayoutDialogTitle":"Choose layout","manageLayoutDialogTitle":"Replace layout with","removeLayoutMenuLabel":"Remove layout","manageLayoutMenuLabel":"Replace layout"},"link":{"acccessKey":"Touche d'accessibilité","advanced":"Avancé","advisoryContentType":"Type de contenu (indicatif)","advisoryTitle":"Infobulle","anchor":{"toolbar":"Ancre","menu":"Modifier l'ancre","title":"Propriétés de l'ancre","name":"Nom de l'ancre","errorName":"Veuillez entrer le nom de l'ancre.","remove":"Supprimer l'ancre"},"anchorId":"Par ID d'élément","anchorName":"Par nom d'ancre","charset":"Encodage de la ressource liée","cssClasses":"Classes de style","download":"Forcer le téléchargement","displayText":"Afficher le texte","emailAddress":"Adresse électronique","emailBody":"Corps du message","emailSubject":"Sujet du message","id":"ID","info":"Informations sur le lien","langCode":"Code de langue","langDir":"Sens d'écriture","langDirLTR":"Gauche à droite","langDirRTL":"Droite à gauche (RTL)","menu":"Modifier le lien","name":"Nom","noAnchors":"(Aucune ancre disponible dans ce document)","noEmail":"Veuillez entrer l'adresse électronique","noUrl":"Veuillez entrer l'URL du lien","noTel":"Veuillez entrer le numéro de téléphone","other":"","phoneNumber":"Numéro de téléphone","popupDependent":"Dépendante (Netscape)","popupFeatures":"Caractéristiques de la fenêtre surgissante","popupFullScreen":"Plein écran (IE)","popupLeft":"À gauche","popupLocationBar":"Barre d'adresse","popupMenuBar":"Barre de menu","popupResizable":"Redimensionnable","popupScrollBars":"Barres de défilement","popupStatusBar":"Barre d'état","popupToolbar":"Barre d'outils","popupTop":"En haut","rel":"Relation","selectAnchor":"Sélectionner une ancre","styles":"Style","tabIndex":"Indice de tabulation","target":"Cible","targetFrame":"","targetFrameName":"Nom du cadre affecté","targetPopup":"","targetPopupName":"Nom de la fenêtre surgissante","title":"Lien","toAnchor":"Ancre","toEmail":"Courriel","toUrl":"URL","toPhone":"Téléphone","toolbar":"Lien","type":"Type de lien","unlink":"Supprimer le lien","upload":"Téléverser"},"list":{"bulletedlist":"Insérer/Supprimer une liste à puces","numberedlist":"Insérer/Supprimer une liste numérotée"},"liststyle":{"bulletedTitle":"Propriétés de la liste à puces","circle":"Cercle","decimal":"Décimal (1, 2, 3, etc.)","disc":"Disque","lowerAlpha":"Lettres minuscules (a, b, c, d, e, etc.)","lowerRoman":"Chiffres romains minuscules (i, ii, iii, iv, v, etc.)","none":"Aucun","notset":"","numberedTitle":"Propriétés de la liste numérotée","square":"Carré","start":"Début","type":"Type","upperAlpha":"Lettres majuscules (A, B, C, D, E, etc.)","upperRoman":"Chiffres romains majuscules (I, II, III, IV, V, etc.)","validateStartNumber":"Le premier élément de la liste doit être un nombre entier."},"magicline":{"title":"Insérer un paragraphe ici"},"maximize":{"maximize":"Agrandir","minimize":"Réduire"},"newpage":{"toolbar":"Nouvelle page"},"pagebreak":{"alt":"Saut de page","toolbar":"Insérer un saut de page pour l'impression"},"pastefromword":{"confirmCleanup":"Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller ?","error":"Les données collées n'ont pas pu être nettoyées à cause d'une erreur interne","title":"Coller depuis Word","toolbar":"Coller depuis Word"},"pastetext":{"button":"Coller comme texte brut","pasteNotification":"Utilisez le raccourci %1 pour coller. Votre navigateur n'accepte pas de coller à l'aide du bouton ou du menu contextuel.","title":"Coller comme texte brut"},"preview":{"preview":"Aperçu"},"print":{"toolbar":"Imprimer"},"removeformat":{"toolbar":"Supprimer la mise en forme"},"save":{"toolbar":"Enregistrer"},"scayt":{"btn_about":"A propos de SCAYT","btn_dictionaries":"Dictionnaires","btn_disable":"Désactiver SCAYT","btn_enable":"Activer SCAYT","btn_langs":"Langues","btn_options":"Options","text_title":"Vérification de l'Orthographe en Cours de Frappe (SCAYT)"},"selectall":{"toolbar":"Tout sélectionner"},"showblocks":{"toolbar":"Afficher les blocs"},"smiley":{"options":"Options des frimousses","title":"Insérer une frimousse","toolbar":"Frimousse"},"sourcearea":{"toolbar":"Source"},"specialchar":{"options":"Options des caractères spéciaux","title":"Sélectionner un caractère","toolbar":"Insérer un caractère spécial"},"stylescombo":{"label":"Styles","panelTitle":"Styles de mise en forme","panelTitle1":"Styles de bloc","panelTitle2":"Styles en ligne","panelTitle3":"Styles d'objet"},"table":{"border":"Taille de la bordure","caption":"Titre du tableau","cell":{"menu":"Cellule","insertBefore":"Insérer une cellule avant","insertAfter":"Insérer une cellule après","deleteCell":"Supprimer les cellules","merge":"Fusionner les cellules","mergeRight":"Fusionner vers la droite","mergeDown":"Fusionner vers le bas","splitHorizontal":"Scinder la cellule horizontalement","splitVertical":"Scinder la cellule verticalement","title":"Propriétés de la cellule","cellType":"Type de cellule","rowSpan":"Lignes occupées","colSpan":"Colonnes occupées","wordWrap":"Césure","hAlign":"Alignement horizontal","vAlign":"Alignement vertical","alignBaseline":"Ligne de base","bgColor":"Couleur d'arrière-plan","borderColor":"Couleur de bordure","data":"Données","header":"En-tête","yes":"Oui","no":"Non","invalidWidth":"La largeur de la cellule doit être un nombre.","invalidHeight":"La hauteur de la cellule doit être un nombre.","invalidRowSpan":"Le nombre de colonnes occupées doit être un nombre entier.","invalidColSpan":"Le nombre de colonnes occupées doit être un nombre entier.","chooseColor":"Choisir"},"cellPad":"Marge interne des cellules","cellSpace":"Espacement entre les cellules","column":{"menu":"Colonne","insertBefore":"Insérer une colonne avant","insertAfter":"Insérer une colonne après","deleteColumn":"Supprimer les colonnes"},"columns":"Colonnes","deleteTable":"Supprimer le tableau","headers":"En-têtes","headersBoth":"Les deux","headersColumn":"Première colonne","headersNone":"Aucun","headersRow":"Première ligne","heightUnit":"unité de hauteur","invalidBorder":"La taille de la bordure doit être un nombre.","invalidCellPadding":"La marge interne des cellules doit être un nombre positif.","invalidCellSpacing":"L'espacement entre les cellules doit être un nombre positif.","invalidCols":"Le nombre de colonnes doit être supérieur à 0.","invalidHeight":"La hauteur du tableau doit être un nombre.","invalidRows":"Le nombre de lignes doit être supérieur à 0.","invalidWidth":"La largeur du tableau doit être un nombre.","menu":"Propriétés du tableau","row":{"menu":"Ligne","insertBefore":"Insérer une ligne avant","insertAfter":"Insérer une ligne après","deleteRow":"Supprimer les lignes"},"rows":"Lignes","summary":"Résumé (description)","title":"Propriétés du tableau","toolbar":"Tableau","widthPc":"pour cent","widthPx":"pixels","widthUnit":"unité de largeur"},"templates":{"button":"Modèles","emptyListMsg":"(Aucun modèle disponible)","insertOption":"Remplacer le contenu actuel","options":"Options des modèles","selectPromptMsg":"Veuillez sélectionner le modèle à ouvrir dans l'éditeur","title":"Contenu des modèles"},"undo":{"redo":"Rétablir","undo":"Annuler"},"uploadwidget":{"abort":"Téléversement interrompu par l'utilisateur.","doneOne":"Fichier téléversé avec succès.","doneMany":"%1 fichiers téléversés avec succès.","uploadOne":"Téléversement du fichier en cours ({percentage} %)…","uploadMany":"Téléversement des fichiers en cours, {current} sur {max} effectués ({percentage} %)…"},"youtube":{"button":"Insérer une vidéo Youtube","title":"Insérer une vidéo youtube","txtEmbed":"Coller le code embed ici","txtUrl":"Coller l'url de la vidéo ici","txtWidth":"Largeur","txtHeight":"Hauteur","chkRelated":"Montrer les suggestions de vidéo à la fin","txtStartAt":"Commencer à (ss ou mm:ss ou hh:mm:ss)","chkPrivacy":"Activer la protection de la vie privée","chkOlderCode":"Utiliser l'ancien code embed","chkAutoplay":"Autoplay","chkControls":"Afficher les commandes du lecteur","noCode":"Vous devez entrer un code embed ou une url","invalidEmbed":"Le code embed est invalide","invalidUrl":"L'url est invalide","or":"ou","noWidth":"Vous devez saisir une largeur","invalidWidth":"La largeur saisie est invalide","noHeight":"Vous devez saisir une hauteur","invalidHeight":"La hauteur saisie est invalide","invalidTime":"Le temps de départ de la vidéo est invalide","txtResponsive":"Responsive video","txtNoEmbed":"Vidéo image et lien seulement"},"syntaxhighlight":{"title":"Ajouter ou modifier un morceau de code source","contextTitle":"Éditer le code source","sourceTab":"Code source","langLbl":"Sélectionnez le langage:","sourceTextareaEmptyError":"Le code source ne doit pas être vide","advancedTab":"Avancé","hideGutter":"Cacher la marge","hideGutterLbl":"Cacher la marge et les numéros de ligne.","hideControls":"Cacher la barre d'outils","hideControlsLbl":"Cacher la barre d'outils en haut du bloc de code.","collapse":"Réduire le code","collapseLbl":"Réduire le bloc de code par défaut. (la barre d'outils doit être activée)","codeTitleLbl":"Employez un titre de code","showColumns":"Montrer les colonnes","showColumnsLbl":"Montrer les colonnes sur la première ligne.","lineWrap":"Désactiver le retour à la ligne automatique","lineWrapLbl":"Désactiver le retour à la ligne automatique (ne fonctionne plus avec SyntaxHighlighter 3).","lineCount":"Numéro de la première ligne (différent de 1)","highlight":"Surligner les lignes","highlightLbl":"Entrez les numéros des lignes que vous souhaitez surligner, séparés par des virgules. ex 3,10,15."}}; \ No newline at end of file diff --git a/plugins/ckeditor/lib/lang/ru.js b/plugins/ckeditor/lib/lang/ru.js new file mode 100644 index 0000000..5878bc7 --- /dev/null +++ b/plugins/ckeditor/lib/lang/ru.js @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license/ +*/ +CKEDITOR.lang['ru']={"application":"Rich Text Editor","editor":"Визуальный текстовый редактор","editorPanel":"Визуальный редактор текста","common":{"editorHelp":"Нажмите ALT-0 для открытия справки","browseServer":"Выбор на сервере","url":"Ссылка","protocol":"Протокол","upload":"Загрузка файла","uploadSubmit":"Загрузить на сервер","image":"Изображение","form":"Форма","checkbox":"Чекбокс","radio":"Радиокнопка","textField":"Текстовое поле","textarea":"Многострочное текстовое поле","hiddenField":"Скрытое поле","button":"Кнопка","select":"Выпадающий список","imageButton":"Кнопка-изображение","notSet":"<не указано>","id":"Идентификатор","name":"Имя","langDir":"Направление текста","langDirLtr":"Слева направо (LTR)","langDirRtl":"Справа налево (RTL)","langCode":"Код языка","longDescr":"Длинное описание ссылки","cssClass":"Класс CSS","advisoryTitle":"Заголовок","cssStyle":"Стиль","ok":"ОК","cancel":"Отмена","close":"Закрыть","preview":"Предпросмотр","resize":"Перетащите для изменения размера","generalTab":"Основное","advancedTab":"Дополнительно","validateNumberFailed":"Это значение не является числом.","confirmNewPage":"Несохранённые изменения будут потеряны! Вы действительно желаете перейти на другую страницу?","confirmCancel":"Некоторые параметры были изменены. Вы уверены, что желаете закрыть без сохранения?","options":"Параметры","target":"Цель","targetNew":"Новое окно (_blank)","targetTop":"Главное окно (_top)","targetSelf":"Текущее окно (_self)","targetParent":"Родительское окно (_parent)","langDirLTR":"Слева направо (LTR)","langDirRTL":"Справа налево (RTL)","styles":"Стиль","cssClasses":"CSS классы","width":"Ширина","height":"Высота","align":"Выравнивание","left":"По левому краю","right":"По правому краю","center":"По центру","justify":"По ширине","alignLeft":"По левому краю","alignRight":"По правому краю","alignCenter":"По центру","alignTop":"Поверху","alignMiddle":"Посередине","alignBottom":"Понизу","alignNone":"Нет","invalidValue":"Недопустимое значение.","invalidHeight":"Высота задается числом.","invalidWidth":"Ширина задается числом.","invalidLength":"Указанное значение для поля \"%1\" должно быть положительным числом без или с корректным символом единицы измерения (%2)","invalidCssLength":"Значение, указанное в поле \"%1\", должно быть положительным целым числом. Допускается указание единиц меры CSS (px, %, in, cm, mm, em, ex, pt или pc).","invalidHtmlLength":"Значение, указанное в поле \"%1\", должно быть положительным целым числом. Допускается указание единиц меры HTML (px или %).","invalidInlineStyle":"Значение, указанное для стиля элемента, должно состоять из одной или нескольких пар данных в формате \"параметр : значение\", разделённых точкой с запятой.","cssLengthTooltip":"Введите значение в пикселях, либо число с корректной единицей меры CSS (px, %, in, cm, mm, em, ex, pt или pc).","unavailable":"%1, недоступно","keyboard":{"8":"Backspace","13":"Ввод","16":"Shift","17":"Ctrl","18":"Alt","32":"Пробел","35":"End","36":"Home","46":"Delete","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Command"},"keyboardShortcut":"Комбинация клавиш","optionDefault":"По умолчанию"},"about":{"copy":"Copyright © $1. Все права защищены.","dlgTitle":"О CKEditor 4","moreInfo":"Для получения информации о лицензии, пожалуйста, перейдите на наш сайт:"},"basicstyles":{"bold":"Полужирный","italic":"Курсив","strike":"Зачеркнутый","subscript":"Подстрочный индекс","superscript":"Надстрочный индекс","underline":"Подчеркнутый"},"bidi":{"ltr":"Направление текста слева направо","rtl":"Направление текста справа налево"},"blockquote":{"toolbar":"Цитата"},"notification":{"closed":"Уведомление закрыто"},"toolbar":{"toolbarCollapse":"Свернуть панель инструментов","toolbarExpand":"Развернуть панель инструментов","toolbarGroups":{"document":"Документ","clipboard":"Буфер обмена / Отмена действий","editing":"Корректировка","forms":"Формы","basicstyles":"Простые стили","paragraph":"Абзац","links":"Ссылки","insert":"Вставка","styles":"Стили","colors":"Цвета","tools":"Инструменты"},"toolbars":"Панели инструментов редактора"},"clipboard":{"copy":"Копировать","copyError":"Настройки безопасности вашего браузера не разрешают редактору выполнять операции по копированию текста. Пожалуйста, используйте для этого клавиатуру (Ctrl/Cmd+C).","cut":"Вырезать","cutError":"Настройки безопасности вашего браузера не разрешают редактору выполнять операции по вырезке текста. Пожалуйста, используйте для этого клавиатуру (Ctrl/Cmd+X).","paste":"Вставить","pasteNotification":"Для вставки нажмите %1. Ваш браузер не поддерживает возможность вставки через панель инструментов или контекстное меню","pasteArea":"Область вставки","pasteMsg":"Вставьте контент в эту область и нажмите OK","fileFormatNotSupportedNotification":"The ${formats} file format(s) are not supported.","fileWithoutFormatNotSupportedNotification":"The file format is not supported."},"colorbutton":{"auto":"Автоматически","bgColorTitle":"Цвет фона","colors":{"000":"Чёрный","800000":"Бордовый","8B4513":"Кожано-коричневый","2F4F4F":"Темный синевато-серый","008080":"Сине-зелёный","000080":"Тёмно-синий","4B0082":"Индиго","696969":"Тёмно-серый","B22222":"Кирпичный","A52A2A":"Коричневый","DAA520":"Золотисто-берёзовый","006400":"Темно-зелёный","40E0D0":"Бирюзовый","0000CD":"Умеренно синий","800080":"Пурпурный","808080":"Серый","F00":"Красный","FF8C00":"Темно-оранжевый","FFD700":"Золотистый","008000":"Зелёный","0FF":"Васильковый","00F":"Синий","EE82EE":"Фиолетовый","A9A9A9":"Тускло-серый","FFA07A":"Светло-лососевый","FFA500":"Оранжевый","FFFF00":"Жёлтый","00FF00":"Лайма","AFEEEE":"Бледно-синий","ADD8E6":"Свелто-голубой","DDA0DD":"Сливовый","D3D3D3":"Светло-серый","FFF0F5":"Розово-лавандовый","FAEBD7":"Античный белый","FFFFE0":"Светло-жёлтый","F0FFF0":"Медвяной росы","F0FFFF":"Лазурный","F0F8FF":"Бледно-голубой","E6E6FA":"Лавандовый","FFF":"Белый","1ABC9C":"Насыщенный голубой","2ECC71":"Изумрудный","3498DB":"Светло-синий","9B59B6":"Аметист","4E5F70":"Сине-серый","F1C40F":"Ярко-желтый","16A085":"Тёмно-голубой","27AE60":"Тёмно-изумрудный","2980B9":"Насыщенный синий","8E44AD":"Тёмно-фиолетовый","2C3E50":"Ненасыщенный синий","F39C12":"Оранжевый","E67E22":"Морковный","E74C3C":"Бледно-красный","ECF0F1":"Яркий серебристый","95A5A6":"Светлый серо-голубой","DDD":"Светло-серый","D35400":"Цвет тыквы","C0392B":"Насыщенный красный","BDC3C7":"Серебристый","7F8C8D":"Серо-голубой","999":"Тёмно-серый"},"more":"Ещё цвета...","panelTitle":"Цвета","textColorTitle":"Цвет текста"},"colordialog":{"clear":"Очистить","highlight":"Под курсором","options":"Настройки цвета","selected":"Выбранный цвет","title":"Выберите цвет"},"contextmenu":{"options":"Параметры контекстного меню"},"copyformatting":{"label":"Копировать форматирование","notification":{"copied":"Форматирование скопировано","applied":"Форматирование применено","canceled":"Форматирование отменен","failed":"Форматирование не выполнено. Стили необходимо скопировать перед применением."}},"div":{"IdInputLabel":"Идентификатор","advisoryTitleInputLabel":"Заголовок","cssClassInputLabel":"Классы CSS","edit":"Редактировать контейнер","inlineStyleInputLabel":"Стиль элемента","langDirLTRLabel":"Слева направо (LTR)","langDirLabel":"Направление текста","langDirRTLLabel":"Справа налево (RTL)","languageCodeInputLabel":"Код языка","remove":"Удалить контейнер","styleSelectLabel":"Стиль","title":"Создать Div-контейнер","toolbar":"Создать Div-контейнер"},"elementspath":{"eleLabel":"Путь элементов","eleTitle":"Элемент %1"},"filetools":{"loadError":"Ошибка при чтении файла","networkError":"Сетевая ошибка при загрузке файла","httpError404":"HTTP ошибка при загрузке файла (404: Файл не найден)","httpError403":"HTTP ошибка при загрузке файла (403: Запрещено)","httpError":"HTTP ошибка при загрузке файла (%1)","noUrlError":"Не определен URL для загрузки файлов","responseError":"Некорректный ответ сервера"},"find":{"find":"Найти","findOptions":"Опции поиска","findWhat":"Найти:","matchCase":"Учитывать регистр","matchCyclic":"По всему тексту","matchWord":"Только слово целиком","notFoundMsg":"Искомый текст не найден.","replace":"Заменить","replaceAll":"Заменить всё","replaceSuccessMsg":"Успешно заменено %1 раз(а).","replaceWith":"Заменить на:","title":"Поиск и замена"},"font":{"fontSize":{"label":"Размер","voiceLabel":"Размер шрифта","panelTitle":"Размер шрифта"},"label":"Шрифт","panelTitle":"Шрифт","voiceLabel":"Шрифт"},"format":{"label":"Форматирование","panelTitle":"Форматирование","tag_address":"Адрес","tag_div":"Обычное (div)","tag_h1":"Заголовок 1","tag_h2":"Заголовок 2","tag_h3":"Заголовок 3","tag_h4":"Заголовок 4","tag_h5":"Заголовок 5","tag_h6":"Заголовок 6","tag_p":"Обычное","tag_pre":"Моноширинное"},"fakeobjects":{"anchor":"Якорь","hiddenfield":"Скрытое поле","iframe":"iFrame","unknown":"Неизвестный объект"},"forms":{"button":{"title":"Свойства кнопки","text":"Текст (Значение)","type":"Тип","typeBtn":"Кнопка","typeSbm":"Отправка","typeRst":"Сброс"},"checkboxAndRadio":{"checkboxTitle":"Свойства флаговой кнопки","radioTitle":"Свойства кнопки выбора","value":"Значение","selected":"Выбрано","required":"Обязательное поле"},"form":{"title":"Свойства формы","menu":"Свойства формы","action":"Действие","method":"Метод","encoding":"Кодировка"},"hidden":{"title":"Свойства скрытого поля","name":"Имя","value":"Значение"},"select":{"title":"Свойства списка выбора","selectInfo":"Информация о списке выбора","opAvail":"Доступные варианты","value":"Значение","size":"Размер","lines":"строк(и)","chkMulti":"Разрешить выбор нескольких вариантов","required":"Обязательное поле","opText":"Текст","opValue":"Значение","btnAdd":"Добавить","btnModify":"Изменить","btnUp":"Поднять","btnDown":"Опустить","btnSetValue":"Пометить как выбранное","btnDelete":"Удалить"},"textarea":{"title":"Свойства многострочного текстового поля","cols":"Колонок","rows":"Строк"},"textfield":{"title":"Свойства текстового поля","name":"Имя","value":"Значение","charWidth":"Ширина поля (в символах)","maxChars":"Макс. количество символов","required":"Обязательное поле","type":"Тип содержимого","typeText":"Текст","typePass":"Пароль","typeEmail":"Email","typeSearch":"Поиск","typeTel":"Номер телефона","typeUrl":"Ссылка"}},"horizontalrule":{"toolbar":"Вставить горизонтальную линию"},"iframe":{"border":"Показать границы фрейма","noUrl":"Пожалуйста, введите ссылку фрейма","scrolling":"Отображать полосы прокрутки","title":"Свойства iFrame","toolbar":"iFrame","tabindex":"Remove from tabindex"},"image":{"alt":"Альтернативный текст","border":"Граница","btnUpload":"Загрузить на сервер","button2Img":"Вы желаете преобразовать это изображение-кнопку в обычное изображение?","hSpace":"Гориз. отступ","img2Button":"Вы желаете преобразовать это обычное изображение в изображение-кнопку?","infoTab":"Данные об изображении","linkTab":"Ссылка","lockRatio":"Сохранять пропорции","menu":"Свойства изображения","resetSize":"Вернуть обычные размеры","title":"Свойства изображения","titleButton":"Свойства изображения-кнопки","upload":"Загрузить","urlMissing":"Не указана ссылка на изображение.","vSpace":"Вертик. отступ","validateBorder":"Размер границ должен быть задан числом.","validateHSpace":"Горизонтальный отступ должен быть задан числом.","validateVSpace":"Вертикальный отступ должен быть задан числом."},"indent":{"indent":"Увеличить отступ","outdent":"Уменьшить отступ"},"language":{"button":"Установка языка","remove":"Удалить язык"},"widget":{"move":"Нажмите и перетащите, чтобы переместить","label":"%1 виджет"},"layoutmanager":{"title":"Шаблоны разметки","addLayoutDialogTitle":"Выбор шаблона","manageLayoutDialogTitle":"Замена шаблона","removeLayoutMenuLabel":"Удалить шаблон","manageLayoutMenuLabel":"Заменить шаблон"},"link":{"acccessKey":"Клавиша доступа","advanced":"Дополнительно","advisoryContentType":"Тип содержимого","advisoryTitle":"Заголовок","anchor":{"toolbar":"Вставить / редактировать якорь","menu":"Изменить якорь","title":"Свойства якоря","name":"Имя якоря","errorName":"Пожалуйста, введите имя якоря","remove":"Удалить якорь"},"anchorId":"По идентификатору","anchorName":"По имени","charset":"Кодировка ресурса","cssClasses":"Классы CSS","download":"Скачать как файл","displayText":"Отображаемый текст","emailAddress":"Email адрес","emailBody":"Текст сообщения","emailSubject":"Тема сообщения","id":"Идентификатор","info":"Информация о ссылке","langCode":"Код языка","langDir":"Направление текста","langDirLTR":"Слева направо (LTR)","langDirRTL":"Справа налево (RTL)","menu":"Редактировать ссылку","name":"Имя","noAnchors":"(В документе нет ни одного якоря)","noEmail":"Пожалуйста, введите email адрес","noUrl":"Пожалуйста, введите ссылку","noTel":"Please type the phone number","other":"<другой>","phoneNumber":"Phone number","popupDependent":"Зависимое (Netscape)","popupFeatures":"Параметры всплывающего окна","popupFullScreen":"Полноэкранное (IE)","popupLeft":"Отступ слева","popupLocationBar":"Панель адреса","popupMenuBar":"Панель меню","popupResizable":"Изменяемый размер","popupScrollBars":"Полосы прокрутки","popupStatusBar":"Строка состояния","popupToolbar":"Панель инструментов","popupTop":"Отступ сверху","rel":"Отношение","selectAnchor":"Выберите якорь","styles":"Стиль","tabIndex":"Последовательность перехода","target":"Цель","targetFrame":"<фрейм>","targetFrameName":"Имя целевого фрейма","targetPopup":"<всплывающее окно>","targetPopupName":"Имя всплывающего окна","title":"Ссылка","toAnchor":"Ссылка на якорь в тексте","toEmail":"Email","toUrl":"Ссылка","toPhone":"Phone","toolbar":"Вставить/Редактировать ссылку","type":"Тип ссылки","unlink":"Убрать ссылку","upload":"Загрузка"},"list":{"bulletedlist":"Вставить / удалить маркированный список","numberedlist":"Вставить / удалить нумерованный список"},"liststyle":{"bulletedTitle":"Свойства маркированного списка","circle":"Окружность","decimal":"Десятичные (1, 2, 3, и т.д.)","disc":"Круг","lowerAlpha":"Строчные латинские (a, b, c, d, e, и т.д.)","lowerRoman":"Строчные римские (i, ii, iii, iv, v, и т.д.)","none":"Нет","notset":"<не указано>","numberedTitle":"Свойства нумерованного списка","square":"Квадрат","start":"Начиная с","type":"Тип","upperAlpha":"Заглавные латинские (A, B, C, D, E, и т.д.)","upperRoman":"Заглавные римские (I, II, III, IV, V, и т.д.)","validateStartNumber":"Первый номер списка должен быть задан обычным целым числом."},"magicline":{"title":"Вставить здесь параграф"},"maximize":{"maximize":"Развернуть","minimize":"Свернуть"},"newpage":{"toolbar":"Новая страница"},"pagebreak":{"alt":"Разрыв страницы","toolbar":"Вставить разрыв страницы для печати"},"pastefromword":{"confirmCleanup":"Текст, который вы желаете вставить, по всей видимости, был скопирован из Word. Следует ли очистить его перед вставкой?","error":"Невозможно очистить вставленные данные из-за внутренней ошибки","title":"Вставить из Word","toolbar":"Вставить из Word"},"pastetext":{"button":"Вставить только текст","pasteNotification":"Для вставки нажмите %1. Ваш браузер не поддерживает возможность вставки через панель инструментов или контекстное меню","title":"Вставить только текст"},"preview":{"preview":"Предварительный просмотр"},"print":{"toolbar":"Печать"},"removeformat":{"toolbar":"Убрать форматирование"},"save":{"toolbar":"Сохранить"},"scayt":{"btn_about":"О SCAYT","btn_dictionaries":"Словари","btn_disable":"Отключить SCAYT","btn_enable":"Включить SCAYT","btn_langs":"Языки","btn_options":"Настройки","text_title":"Проверка орфографии по мере ввода (SCAYT)"},"selectall":{"toolbar":"Выделить все"},"showblocks":{"toolbar":"Отображать блоки"},"smiley":{"options":"Выбор смайла","title":"Вставить смайл","toolbar":"Смайлы"},"sourcearea":{"toolbar":"Источник"},"specialchar":{"options":"Выбор специального символа","title":"Выберите специальный символ","toolbar":"Вставить специальный символ"},"stylescombo":{"label":"Стили","panelTitle":"Стили форматирования","panelTitle1":"Стили блока","panelTitle2":"Стили элемента","panelTitle3":"Стили объекта"},"table":{"border":"Размер границ","caption":"Заголовок","cell":{"menu":"Ячейка","insertBefore":"Вставить ячейку слева","insertAfter":"Вставить ячейку справа","deleteCell":"Удалить ячейки","merge":"Объединить ячейки","mergeRight":"Объединить с правой","mergeDown":"Объединить с нижней","splitHorizontal":"Разделить ячейку по вертикали","splitVertical":"Разделить ячейку по горизонтали","title":"Свойства ячейки","cellType":"Тип ячейки","rowSpan":"Объединяет строк","colSpan":"Объединяет колонок","wordWrap":"Перенос по словам","hAlign":"Горизонтальное выравнивание","vAlign":"Вертикальное выравнивание","alignBaseline":"По базовой линии","bgColor":"Цвет фона","borderColor":"Цвет границ","data":"Данные","header":"Заголовок","yes":"Да","no":"Нет","invalidWidth":"Ширина ячейки должна быть числом.","invalidHeight":"Высота ячейки должна быть числом.","invalidRowSpan":"Количество объединяемых строк должно быть задано числом.","invalidColSpan":"Количество объединяемых колонок должно быть задано числом.","chooseColor":"Выберите"},"cellPad":"Внутренний отступ ячеек","cellSpace":"Внешний отступ ячеек","column":{"menu":"Колонка","insertBefore":"Вставить колонку слева","insertAfter":"Вставить колонку справа","deleteColumn":"Удалить колонки"},"columns":"Колонки","deleteTable":"Удалить таблицу","headers":"Заголовки","headersBoth":"Сверху и слева","headersColumn":"Левая колонка","headersNone":"Без заголовков","headersRow":"Верхняя строка","heightUnit":"height unit","invalidBorder":"Размер границ должен быть числом.","invalidCellPadding":"Внутренний отступ ячеек (cellpadding) должен быть числом.","invalidCellSpacing":"Внешний отступ ячеек (cellspacing) должен быть числом.","invalidCols":"Количество столбцов должно быть больше 0.","invalidHeight":"Высота таблицы должна быть числом.","invalidRows":"Количество строк должно быть больше 0.","invalidWidth":"Ширина таблицы должна быть числом.","menu":"Свойства таблицы","row":{"menu":"Строка","insertBefore":"Вставить строку сверху","insertAfter":"Вставить строку снизу","deleteRow":"Удалить строки"},"rows":"Строки","summary":"Итоги","title":"Свойства таблицы","toolbar":"Таблица","widthPc":"процентов","widthPx":"пикселей","widthUnit":"единица измерения"},"templates":{"button":"Шаблоны","emptyListMsg":"(не определено ни одного шаблона)","insertOption":"Заменить текущее содержимое","options":"Параметры шаблона","selectPromptMsg":"Пожалуйста, выберите, какой шаблон следует открыть в редакторе","title":"Шаблоны содержимого"},"undo":{"redo":"Повторить","undo":"Отменить"},"uploadwidget":{"abort":"Загрузка отменена пользователем","doneOne":"Файл успешно загружен","doneMany":"Успешно загружено файлов: %1","uploadOne":"Загрузка файла ({percentage}%)","uploadMany":"Загрузка файлов, {current} из {max} загружено ({percentage}%)..."},"youtube":{"button":"Вставить YouTube видео","title":"Вставить YouTube видео","txtEmbed":"Вставьте HTML-код сюда","txtUrl":"Вставьте адрес видео (URL)","txtWidth":"Ширина","txtHeight":"Высота","chkRelated":"Показать похожие видео после завершения просмотра","txtStartAt":"Начать с (сс или мм:сс или чч:мм:сс)","chkPrivacy":"Включить режим повышенной конфиденциальности","chkOlderCode":"Использовать старый код вставки","chkAutoplay":"Автозапуск","chkControls":"Показать панель управления","noCode":"Вы должны ввести HTML-код или адрес","invalidEmbed":"Ваш HTML-код не похож на правильный","invalidUrl":"Ваш адрес видео не похож на правильный","or":"или","noWidth":"Вы должны указать ширину","invalidWidth":"Укажите правильную ширину","noHeight":"Вы должны указать высоту","invalidHeight":"Укажите правильную высоту","invalidTime":"Укажите правильное время начала","txtResponsive":"Растягиваемое видео","txtNoEmbed":"Не встраивать видео (обложка-ссылка на YouTube)"},"syntaxhighlight":{"title":"Add or update a code snippet","contextTitle":"Edit source code","sourceTab":"Source code","langLbl":"Select language","sourceTextareaEmptyError":"Source code mustn't be empty.","advancedTab":"Advanced","hideGutter":"Hide gutter","hideGutterLbl":"Hide gutter & line numbers.","hideControls":"Hide controls","hideControlsLbl":"Hide code controls at the top of the code block.","collapse":"Collapse","collapseLbl":"Collapse the code block by default. (controls need to be turned on)","codeTitleLbl":"Use a Code Title","showColumns":"Show columns","showColumnsLbl":"Show row columns in the first line.","lineWrap":"Disable line wrapping","lineWrapLbl":"Switch off line wrapping.","lineCount":"Default line count","highlight":"Highlight lines","highlightLbl":"Enter a comma seperated lines of lines you want to highlight, eg 3,10,15."}}; \ No newline at end of file diff --git a/plugins/ckeditor/lib/lang/tr.js b/plugins/ckeditor/lib/lang/tr.js new file mode 100644 index 0000000..5d13952 --- /dev/null +++ b/plugins/ckeditor/lib/lang/tr.js @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license/ +*/ +CKEDITOR.lang['tr']={"application":"Rich Text Editor","editor":"Zengin Metin Editörü","editorPanel":"Zengin Metin Editör Paneli","common":{"editorHelp":"Yardım için ALT 0 tuşlarına basın","browseServer":"Sunucuya Gözat","url":"URL","protocol":"Protokol","upload":"Karşıya Yükle","uploadSubmit":"Sunucuya Gönder","image":"Resim","form":"Form","checkbox":"Seçim Kutusu","radio":"Seçenek Düğmesi","textField":"Metin Kutusu","textarea":"Metin Alanı","hiddenField":"Gizli Alan","button":"Düğme","select":"Seçme Alanı","imageButton":"Resim Düğmesi","notSet":"","id":"Kimlik","name":"İsim","langDir":"Dil Yönü","langDirLtr":"Soldan Sağa (LTR)","langDirRtl":"Sağdan Sola (RTL)","langCode":" Dil Kodu","longDescr":"Uzun Açıklamalı URL","cssClass":"Stil Sınıfları","advisoryTitle":"Öneri Başlığı","cssStyle":"Stil","ok":"Tamam","cancel":"İptal","close":"Kapat","preview":"Önizleme","resize":"Yeniden Boyutlandır","generalTab":"Genel","advancedTab":"Gelişmiş","validateNumberFailed":"Bu değer bir sayı değildir.","confirmNewPage":"Bu içerikle ilgili kaydedilmemiş tüm bilgiler kaybolacaktır. Yeni bir sayfa yüklemek istediğinizden emin misiniz?","confirmCancel":"Bazı seçenekleri değiştirdiniz. İletişim penceresini kapatmak istediğinizden emin misiniz?","options":"Seçenekler","target":"Hedef","targetNew":"Yeni Pencere (_blank)","targetTop":"En Üstteki Pencere (_top)","targetSelf":"Aynı Pencere (_self)","targetParent":"Üst Pencere (_parent)","langDirLTR":"Soldan Sağa (LTR)","langDirRTL":"Sağdan Sola (RTL)","styles":"Stil","cssClasses":"Stil Sınıfları","width":"Genişlik","height":"Yükseklik","align":"Hizalama","left":"Sol","right":"Sağ","center":"Ortala","justify":"İki Kenara Yaslanmış","alignLeft":"Sola Dayalı","alignRight":"Sağa Dayalı","alignCenter":"Ortaya Hizala","alignTop":"Üst","alignMiddle":"Orta","alignBottom":"Alt","alignNone":"Hiçbiri","invalidValue":"Geçersiz değer.","invalidHeight":"Yükseklik değeri bir sayı olmalıdır.","invalidWidth":"Genişlik değeri bir sayı olmalıdır.","invalidLength":"\"%1\" alanı için belirtilen değer, geçerli bir ölçü birimi olsun veya olmasın (%2) pozitif bir sayı olmalıdır.","invalidCssLength":"\"%1\" alanı için verilen değer, geçerli bir CSS ölçü birimi (px, %, in, cm, mm, em, ex, pt, veya pc) içeren veya içermeyen pozitif bir sayı olmalıdır.","invalidHtmlLength":"\"%1\" alanı için belirttiğiniz sayı, HTML (px veya %) birimi olsun yada olmasın pozitif bir değeri olmalıdır.","invalidInlineStyle":"Satıriçi stil için verilen değer, \"isim : değer\" biçiminde birbirinden noktalı virgüllerle ayrılan bir veya daha fazla değişkenler grubundan oluşmalıdır.","cssLengthTooltip":"Piksel türünde bir sayı veya geçerli bir CSS ölçü birimi (px, %, in, cm, mm, em, ex, pt veya pc) içeren bir sayı girin.","unavailable":"%1, kullanılamaz","keyboard":{"8":"Silme Tuşu","13":"Giriş Tuşu","16":"Üst Karater Tuşu","17":"Kontrol Tuşu","18":"Alt Tuşu","32":"Boşluk Tuşu","35":"En Sona Tuşu","36":"En Başa Tuşu","46":"Silme Tuşu","112":"F1","113":"F2","114":"F3","115":"F4","116":"F5","117":"F6","118":"F7","119":"F8","120":"F9","121":"F10","122":"F11","123":"F12","124":"F13","125":"F14","126":"F15","127":"F16","128":"F17","129":"F18","130":"F19","131":"F20","132":"F21","133":"F22","134":"F23","135":"F24","224":"Komut Tuşu"},"keyboardShortcut":"Klavye Kısayolu","optionDefault":"Varsayılan"},"about":{"copy":"Copyright © $1. Tüm hakları saklıdır.","dlgTitle":"CKEditor Hakkında","moreInfo":"Lisanslama hakkında daha fazla bilgi almak için lütfen sitemizi ziyaret edin:"},"basicstyles":{"bold":"Kalın","italic":"İtalik","strike":"Üstü Çizgili","subscript":"Alt Simge","superscript":"Üst Simge","underline":"Altı Çizgili"},"bidi":{"ltr":"Metin yönü soldan sağa","rtl":"Metin yönü sağdan sola"},"blockquote":{"toolbar":"Blok Oluştur"},"notification":{"closed":"Uyarılar kapatıldı."},"toolbar":{"toolbarCollapse":"Araç çubuklarını topla","toolbarExpand":"Araç çubuklarını aç","toolbarGroups":{"document":"Belge","clipboard":"Pano/Geri al","editing":"Düzenleme","forms":"Formlar","basicstyles":"Temel Stiller","paragraph":"Paragraf","links":"Bağlantılar","insert":"Ekle","styles":"Stiller","colors":"Renkler","tools":"Araçlar"},"toolbars":"Araç çubukları Editörü"},"clipboard":{"copy":"Kopyala","copyError":"Tarayıcı yazılımınızın güvenlik ayarları düzenleyicinin otomatik kopyalama işlemine izin vermiyor. İşlem için (Ctrl/Cmd+C) tuşlarını kullanın.","cut":"Kes","cutError":"Tarayıcı yazılımınızın güvenlik ayarları düzenleyicinin otomatik kesme işlemine izin vermiyor. İşlem için (Ctrl/Cmd+X) tuşlarını kullanın.","paste":"Yapıştır","pasteNotification":"%1 tuşuna yapıştırmak için tıklayın. Tarayıcınız, Araç Çubuğu yada İçerik Menüsünü kullanarak yapıştırmayı desteklemiyor.","pasteArea":"Yapıştırma Alanı","pasteMsg":"İçeriğinizi alttaki bulunan alana yapıştırın ve TAMAM butonuna tıklayın","fileFormatNotSupportedNotification":"The ${formats} file format(s) are not supported.","fileWithoutFormatNotSupportedNotification":"The file format is not supported."},"colorbutton":{"auto":"Otomatik","bgColorTitle":"Arka Renk","colors":{"000":"Siyah","800000":"Kestane","8B4513":"Koyu Kahverengi","2F4F4F":"Koyu Kurşuni Gri","008080":"Teal","000080":"Mavi","4B0082":"Çivit Mavisi","696969":"Silik Gri","B22222":"Ateş Tuğlası","A52A2A":"Kahverengi","DAA520":"Altun Sırık","006400":"Koyu Yeşil","40E0D0":"Turkuaz","0000CD":"Orta Mavi","800080":"Pembe","808080":"Gri","F00":"Kırmızı","FF8C00":"Koyu Portakal","FFD700":"Altın","008000":"Yeşil","0FF":"Ciyan","00F":"Mavi","EE82EE":"Menekşe","A9A9A9":"Loş Gri","FFA07A":"Açık Sarımsı","FFA500":"Portakal","FFFF00":"Sarı","00FF00":"Açık Yeşil","AFEEEE":"Sönük Turkuaz","ADD8E6":"Açık Mavi","DDA0DD":"Mor","D3D3D3":"Açık Gri","FFF0F5":"Eflatun Pembe","FAEBD7":"Antik Beyaz","FFFFE0":"Açık Sarı","F0FFF0":"Balsarısı","F0FFFF":"Gök Mavisi","F0F8FF":"Reha Mavi","E6E6FA":"Eflatun","FFF":"Beyaz","1ABC9C":"Koyu Camgöbeği","2ECC71":"Zümrüt Yeşili","3498DB":"Parlak Mavi","9B59B6":"Ametist Moru","4E5F70":"Kirli Gri Mavi","F1C40F":"Canlı Sarı","16A085":"Koyu Camgöbeği","27AE60":"Koyu Zümrüt Yeşili","2980B9":"Koyu Mavi","8E44AD":"Koyu Menekşe","2C3E50":"Koyu Lacivert","F39C12":"Turuncu","E67E22":"Havuç Turuncusu","E74C3C":"Soluk Kırmızı","ECF0F1":"Parlak Gümüş","95A5A6":"Açık Kirli Gri Camgöbeği","DDD":"Açık Gri","D35400":"Balkabağı Turuncusu","C0392B":"Kan Kırmızı","BDC3C7":"Gümüş","7F8C8D":"Kirli Gri Camgöbeği","999":"Koyu Gri"},"more":"Diğer renkler...","panelTitle":"Renkler","textColorTitle":"Yazı Rengi"},"colordialog":{"clear":"Temizle","highlight":"İşaretle","options":"Renk Seçenekleri","selected":"Seçilmiş","title":"Renk seç"},"contextmenu":{"options":"İçerik Menüsü Seçenekleri"},"copyformatting":{"label":"Formatı Kopyala","notification":{"copied":"Formatlama Kopyalandı","applied":"Formatlama Uygulandı","canceled":"Formatlama İptal Edildi","failed":"Formatlama hatası. İlk önce onları kopyalamadan stilleri uygulayamazsınız."}},"div":{"IdInputLabel":"Id","advisoryTitleInputLabel":"Tavsiye Başlığı","cssClassInputLabel":"Stilltipi Sınıfı","edit":"Div Düzenle","inlineStyleInputLabel":"Inline Stili","langDirLTRLabel":"Soldan sağa (LTR)","langDirLabel":"Dil Yönü","langDirRTLLabel":"Sağdan sola (RTL)","languageCodeInputLabel":" Dil Kodu","remove":"Div Kaldır","styleSelectLabel":"Stil","title":"Div İçeriği Oluştur","toolbar":"Div İçeriği Oluştur"},"elementspath":{"eleLabel":"Elementlerin yolu","eleTitle":"%1 elementi"},"filetools":{"loadError":"Dosya okunurken hata oluştu.","networkError":"Dosya gönderilirken ağ hatası oluştu.","httpError404":"Dosya gönderilirken HTTP hatası oluştu (404: Dosya bulunamadı).","httpError403":"Dosya gönderilirken HTTP hatası oluştu (403: Yasaklı).","httpError":"Dosya gönderilirken HTTP hatası oluştu (hata durumu: %1).","noUrlError":"Gönderilecek URL belirtilmedi.","responseError":"Sunucu cevap veremedi."},"find":{"find":"Bul","findOptions":"Seçenekleri Bul","findWhat":"Aranan:","matchCase":"Büyük/küçük harf duyarlı","matchCyclic":"Eşleşen döngü","matchWord":"Kelimenin tamamı uysun","notFoundMsg":"Belirtilen yazı bulunamadı.","replace":"Değiştir","replaceAll":"Tümünü Değiştir","replaceSuccessMsg":"%1 bulunanlardan değiştirildi.","replaceWith":"Bununla değiştir:","title":"Bul ve Değiştir"},"font":{"fontSize":{"label":"Boyut","voiceLabel":"Font Size","panelTitle":"Boyut"},"label":"Yazı Türü","panelTitle":"Yazı Türü","voiceLabel":"Font"},"format":{"label":"Biçim","panelTitle":"Biçim","tag_address":"Adres","tag_div":"Paragraf (DIV)","tag_h1":"Başlık 1","tag_h2":"Başlık 2","tag_h3":"Başlık 3","tag_h4":"Başlık 4","tag_h5":"Başlık 5","tag_h6":"Başlık 6","tag_p":"Normal","tag_pre":"Biçimli"},"fakeobjects":{"anchor":"Bağlantı","hiddenfield":"Gizli Alan","iframe":"IFrame","unknown":"Bilinmeyen Nesne"},"forms":{"button":{"title":"Düğme Özellikleri","text":"Metin (Değer)","type":"Tip","typeBtn":"Düğme","typeSbm":"Gönder","typeRst":"Sıfırla"},"checkboxAndRadio":{"checkboxTitle":"Onay Kutusu Özellikleri","radioTitle":"Seçenek Düğmesi Özellikleri","value":"Değer","selected":"Seçili","required":"Zorunlu"},"form":{"title":"Form Özellikleri","menu":"Form Özellikleri","action":"İşlem","method":"Yöntem","encoding":"Kodlama"},"hidden":{"title":"Gizli Veri Özellikleri","name":"Ad","value":"Değer"},"select":{"title":"Seçim Menüsü Özellikleri","selectInfo":"Bilgi","opAvail":"Mevcut Seçenekler","value":"Değer","size":"Boyut","lines":"satır","chkMulti":"Çoklu seçime izin ver","required":"Zorunlu","opText":"Metin","opValue":"Değer","btnAdd":"Ekle","btnModify":"Düzenle","btnUp":"Yukarı","btnDown":"Aşağı","btnSetValue":"Seçili değer olarak ata","btnDelete":"Sil"},"textarea":{"title":"Çok Satırlı Metin Özellikleri","cols":"Sütunlar","rows":"Satırlar"},"textfield":{"title":"Metin Girişi Özellikleri","name":"Ad","value":"Değer","charWidth":"Karakter Genişliği","maxChars":"En Fazla Karakter","required":"Zorunlu","type":"Tür","typeText":"Metin","typePass":"Şifre","typeEmail":"E-posta","typeSearch":"Ara","typeTel":"Telefon Numarası","typeUrl":"URL"}},"horizontalrule":{"toolbar":"Yatay Satır Ekle"},"iframe":{"border":"Çerceve sınırlarını göster","noUrl":"Lütfen IFrame köprü (URL) bağlantısını yazın","scrolling":"Kaydırma çubuklarını aktif et","title":"IFrame Özellikleri","toolbar":"IFrame","tabindex":"Remove from tabindex"},"image":{"alt":"Alternatif Yazı","border":"Kenar","btnUpload":"Sunucuya Yolla","button2Img":"Seçili resim butonunu basit resime çevirmek istermisiniz?","hSpace":"Yatay Boşluk","img2Button":"Seçili olan resimi, resimli butona çevirmek istermisiniz?","infoTab":"Resim Bilgisi","linkTab":"Köprü","lockRatio":"Oranı Kilitle","menu":"Resim Özellikleri","resetSize":"Boyutu Başa Döndür","title":"Resim Özellikleri","titleButton":"Resimli Düğme Özellikleri","upload":"Karşıya Yükle","urlMissing":"Resmin URL kaynağı eksiktir.","vSpace":"Dikey Boşluk","validateBorder":"Çerçeve tam sayı olmalıdır.","validateHSpace":"HSpace tam sayı olmalıdır.","validateVSpace":"VSpace tam sayı olmalıdır."},"indent":{"indent":"Sekme Arttır","outdent":"Sekme Azalt"},"language":{"button":"Dili seç","remove":"Dili kaldır"},"widget":{"move":"Taşımak için, tıklayın ve sürükleyin","label":"%1 Grafik Beleşeni"},"layoutmanager":{"title":"Layouts","addLayoutDialogTitle":"Choose layout","manageLayoutDialogTitle":"Replace layout with","removeLayoutMenuLabel":"Remove layout","manageLayoutMenuLabel":"Replace layout"},"link":{"acccessKey":"Erişim Tuşu","advanced":"Gelişmiş","advisoryContentType":"Danışma İçerik Türü","advisoryTitle":"Danışma Başlığı","anchor":{"toolbar":"Bağlantı Ekle/Düzenle","menu":"Bağlantı Özellikleri","title":"Bağlantı Özellikleri","name":"Bağlantı Adı","errorName":"Lütfen bağlantı için ad giriniz","remove":"Bağlantıyı Kaldır"},"anchorId":"Eleman Kimlik Numarası ile","anchorName":"Bağlantı Adı ile","charset":"Bağlı Kaynak Karakter Gurubu","cssClasses":"Biçem Sayfası Sınıfları","download":"İndirmeye Zorla","displayText":"Gösterim Metni","emailAddress":"E-Posta Adresi","emailBody":"İleti Gövdesi","emailSubject":"İleti Konusu","id":"Id","info":"Link Bilgisi","langCode":"Dil Yönü","langDir":"Dil Yönü","langDirLTR":"Soldan Sağa (LTR)","langDirRTL":"Sağdan Sola (RTL)","menu":"Link Düzenle","name":"Ad","noAnchors":"(Bu belgede hiç çapa yok)","noEmail":"Lütfen E-posta adresini yazın","noUrl":"Lütfen Link URL'sini yazın","noTel":"Lütfen telefon numaranızı yazınız","other":"","phoneNumber":"Telefon numarası","popupDependent":"Bağımlı (Netscape)","popupFeatures":"Yeni Açılan Pencere Özellikleri","popupFullScreen":"Tam Ekran (IE)","popupLeft":"Sola Göre Konum","popupLocationBar":"Yer Çubuğu","popupMenuBar":"Menü Çubuğu","popupResizable":"Resizable","popupScrollBars":"Kaydırma Çubukları","popupStatusBar":"Durum Çubuğu","popupToolbar":"Araç Çubuğu","popupTop":"Yukarıya Göre Konum","rel":"İlişki","selectAnchor":"Bağlantı Seç","styles":"Biçem","tabIndex":"Sekme İndeksi","target":"Hedef","targetFrame":"<çerçeve>","targetFrameName":"Hedef Çerçeve Adı","targetPopup":"","targetPopupName":"Yeni Açılan Pencere Adı","title":"Link","toAnchor":"Bu sayfada çapa","toEmail":"E-Posta","toUrl":"URL","toPhone":"Telefon","toolbar":"Link Ekle/Düzenle","type":"Link Türü","unlink":"Köprü Kaldır","upload":"Karşıya Yükle"},"list":{"bulletedlist":"Simgeli Liste","numberedlist":"Numaralı Liste"},"liststyle":{"bulletedTitle":"Simgeli Liste Özellikleri","circle":"Daire","decimal":"Ondalık (1, 2, 3, vs.)","disc":"Disk","lowerAlpha":"Küçük Alpha (a, b, c, d, e, vs.)","lowerRoman":"Küçük Roman (i, ii, iii, iv, v, vs.)","none":"Yok","notset":"","numberedTitle":"Sayılandırılmış Liste Özellikleri","square":"Kare","start":"Başla","type":"Tipi","upperAlpha":"Büyük Alpha (A, B, C, D, E, vs.)","upperRoman":"Büyük Roman (I, II, III, IV, V, vs.)","validateStartNumber":"Liste başlangıcı tam sayı olmalıdır."},"magicline":{"title":"Parağrafı buraya ekle"},"maximize":{"maximize":"Büyült","minimize":"Küçült"},"newpage":{"toolbar":"Yeni Sayfa"},"pagebreak":{"alt":"Sayfa Sonu","toolbar":"Sayfa Sonu Ekle"},"pastefromword":{"confirmCleanup":"Yapıştırmaya çalıştığınız metin Word'den kopyalanmıştır. Yapıştırmadan önce silmek istermisiniz?","error":"Yapıştırmadaki veri bilgisi hata düzelene kadar silinmeyecektir","title":"Word'den Yapıştır","toolbar":"Word'den Yapıştır"},"pastetext":{"button":"Düz metin olarak yapıştır","pasteNotification":"%1 tuşuna yapıştırmak için tıklayın. Tarayıcınız, Araç Çubuğu yada İçerik Menüsünü kullanarak yapıştırmayı desteklemiyor.","title":"Düz metin olarak yapıştır"},"preview":{"preview":"Ön İzleme"},"print":{"toolbar":"Yazdır"},"removeformat":{"toolbar":"Biçimi Kaldır"},"save":{"toolbar":"Kaydet"},"scayt":{"btn_about":"SCAYT'ı hakkında","btn_dictionaries":"Sözlükler","btn_disable":"SCAYT'ı pasifleştir","btn_enable":"SCAYT'ı etkinleştir","btn_langs":"Diller","btn_options":"Seçenekler","text_title":"Girmiş olduğunuz kelime denetimi"},"selectall":{"toolbar":"Tümünü Seç"},"showblocks":{"toolbar":"Blokları Göster"},"smiley":{"options":"İfade Seçenekleri","title":"İfade Ekle","toolbar":"İfade"},"sourcearea":{"toolbar":"Kaynak"},"specialchar":{"options":"Özel Karakter Seçenekleri","title":"Özel Karakter Seç","toolbar":"Özel Karakter Ekle"},"stylescombo":{"label":"Biçem","panelTitle":"Stilleri Düzenliyor","panelTitle1":"Blok Stilleri","panelTitle2":"Inline Stilleri","panelTitle3":"Nesne Stilleri"},"table":{"border":"Kenar Kalınlığı","caption":"Başlık","cell":{"menu":"Hücre","insertBefore":"Hücre Ekle - Önce","insertAfter":"Hücre Ekle - Sonra","deleteCell":"Hücre Sil","merge":"Hücreleri Birleştir","mergeRight":"Birleştir - Sağdaki İle ","mergeDown":"Birleştir - Aşağıdaki İle ","splitHorizontal":"Hücreyi Yatay Böl","splitVertical":"Hücreyi Dikey Böl","title":"Hücre Özellikleri","cellType":"Hücre Tipi","rowSpan":"Satırlar Mesafesi (Span)","colSpan":"Sütünlar Mesafesi (Span)","wordWrap":"Kelime Kaydırma","hAlign":"Düşey Hizalama","vAlign":"Yataş Hizalama","alignBaseline":"Tabana","bgColor":"Arkaplan Rengi","borderColor":"Çerçeve Rengi","data":"Veri","header":"Başlık","yes":"Evet","no":"Hayır","invalidWidth":"Hücre genişliği sayı olmalıdır.","invalidHeight":"Hücre yüksekliği sayı olmalıdır.","invalidRowSpan":"Satırların mesafesi tam sayı olmalıdır.","invalidColSpan":"Sütünların mesafesi tam sayı olmalıdır.","chooseColor":"Seçiniz"},"cellPad":"Izgara yazı arası","cellSpace":"Izgara kalınlığı","column":{"menu":"Sütun","insertBefore":"Kolon Ekle - Önce","insertAfter":"Kolon Ekle - Sonra","deleteColumn":"Sütun Sil"},"columns":"Sütunlar","deleteTable":"Tabloyu Sil","headers":"Başlıklar","headersBoth":"Her İkisi","headersColumn":"İlk Sütun","headersNone":"Yok","headersRow":"İlk Satır","heightUnit":"yükseklik birimi","invalidBorder":"Çerceve büyüklüklüğü sayı olmalıdır.","invalidCellPadding":"Hücre aralığı (padding) sayı olmalıdır.","invalidCellSpacing":"Hücre boşluğu (spacing) sayı olmalıdır.","invalidCols":"Sütün sayısı 0 sayısından büyük olmalıdır.","invalidHeight":"Tablo yüksekliği sayı olmalıdır.","invalidRows":"Satır sayısı 0 sayısından büyük olmalıdır.","invalidWidth":"Tablo genişliği sayı olmalıdır.","menu":"Tablo Özellikleri","row":{"menu":"Satır","insertBefore":"Satır Ekle - Önce","insertAfter":"Satır Ekle - Sonra","deleteRow":"Satır Sil"},"rows":"Satırlar","summary":"Özet","title":"Tablo Özellikleri","toolbar":"Tablo","widthPc":"yüzde","widthPx":"piksel","widthUnit":"genişlik birimi"},"templates":{"button":"Şablonlar","emptyListMsg":"(Belirli bir şablon seçilmedi)","insertOption":"Mevcut içerik ile değiştir","options":"Şablon Seçenekleri","selectPromptMsg":"Düzenleyicide açmak için lütfen bir şablon seçin.
(hali hazırdaki içerik kaybolacaktır.):","title":"İçerik Şablonları"},"undo":{"redo":"Tekrarla","undo":"Geri Al"},"uploadwidget":{"abort":"Gönderme işlemi kullanıcı tarafından durduruldu.","doneOne":"Gönderim işlemi başarılı şekilde tamamlandı.","doneMany":"%1 dosya başarılı şekilde gönderildi.","uploadOne":"Dosyanın ({percentage}%) gönderildi...","uploadMany":"Toplam {current} / {max} dosyanın ({percentage}%) gönderildi..."},"youtube":{"button":"Youtube Video Gömün (Embed)","title":"Youtube Video","txtEmbed":"Youtube gömülü kodu (embed) buraya yapıştırınız","txtUrl":"Youtube linkinizi buraya yapıştırınız","txtWidth":"Genişlik","txtHeight":"Yükseklik","chkRelated":"Önerilen videoları video bitiminde göster","txtStartAt":"Video başlangıç anı (ss ya da dd:ss ya da ss:dd:ss)","chkPrivacy":"Gizlilik modunu etkinleştir","chkOlderCode":"Eski gömülü kodu (embed) kullan","chkAutoplay":"Otomatik","chkControls":"Oynatıcı kontrollerini göster","noCode":"Gömülü kod (embed) veya url yapıştırmak zorundasınız","invalidEmbed":"Verdiğiniz gömülü kod (embed) ile video bulunamadı","invalidUrl":"Verdiğiniz linkte video bulunamadı","or":"ya da","noWidth":"Genişliği belirtmek zorundasınız","invalidWidth":"Bir genişlik belirtin","noHeight":"Yükseliği belirtmek zorundasınız","invalidHeight":"Yükseklik belirtin","invalidTime":"Başlangıç anını doğru girin, örneğin: 13 (13. saniye) ya da 12:25 (12. dakika 25. saniye) ya da 01.25.33 (1 saat 25 dakika 33 saniye)","txtResponsive":"Responsive video","txtNoEmbed":"Video image and link only"},"syntaxhighlight":{"title":"Add or update a code snippet","contextTitle":"Edit source code","sourceTab":"Source code","langLbl":"Select language","sourceTextareaEmptyError":"Source code mustn't be empty.","advancedTab":"Advanced","hideGutter":"Hide gutter","hideGutterLbl":"Hide gutter & line numbers.","hideControls":"Hide controls","hideControlsLbl":"Hide code controls at the top of the code block.","collapse":"Collapse","collapseLbl":"Collapse the code block by default. (controls need to be turned on)","codeTitleLbl":"Use a Code Title","showColumns":"Show columns","showColumnsLbl":"Show row columns in the first line.","lineWrap":"Disable line wrapping","lineWrapLbl":"Switch off line wrapping.","lineCount":"Default line count","highlight":"Highlight lines","highlightLbl":"Enter a comma seperated lines of lines you want to highlight, eg 3,10,15."}}; \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/a11yhelp/dialogs/a11yhelp.js b/plugins/ckeditor/lib/plugins/a11yhelp/dialogs/a11yhelp.js new file mode 100644 index 0000000..14345b1 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/a11yhelp/dialogs/a11yhelp.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("a11yHelp",function(f){function m(a){for(var b,c,h=[],d=0;d=b&&(a-=c,h.push(e[c]));h.push(e[a]||String.fromCharCode(a));return h.join("+")}function t(a,b){var c=f.getCommandKeystroke(b,!0);return c.length?CKEDITOR.tools.array.map(c,m).join(" / "):a}var a=f.lang.a11yhelp,b=f.lang.common.keyboard,p=CKEDITOR.tools.getNextId(),q=/\$\{(.*?)\}/g,g=[CKEDITOR.ALT,CKEDITOR.SHIFT,CKEDITOR.CTRL],e={8:b[8],9:a.tab,13:b[13],16:b[16],17:b[17],18:b[18],19:a.pause, +20:a.capslock,27:a.escape,33:a.pageUp,34:a.pageDown,35:b[35],36:b[36],37:a.leftArrow,38:a.upArrow,39:a.rightArrow,40:a.downArrow,45:a.insert,46:b[46],91:a.leftWindowKey,92:a.rightWindowKey,93:a.selectKey,96:a.numpad0,97:a.numpad1,98:a.numpad2,99:a.numpad3,100:a.numpad4,101:a.numpad5,102:a.numpad6,103:a.numpad7,104:a.numpad8,105:a.numpad9,106:a.multiply,107:a.add,109:a.subtract,110:a.decimalPoint,111:a.divide,112:a.f1,113:a.f2,114:a.f3,115:a.f4,116:a.f5,117:a.f6,118:a.f7,119:a.f8,120:a.f9,121:a.f10, +122:a.f11,123:a.f12,144:a.numLock,145:a.scrollLock,186:a.semiColon,187:a.equalSign,188:a.comma,189:a.dash,190:a.period,191:a.forwardSlash,192:a.graveAccent,219:a.openBracket,220:a.backSlash,221:a.closeBracket,222:a.singleQuote};e[CKEDITOR.ALT]=b[18];e[CKEDITOR.SHIFT]=b[16];e[CKEDITOR.CTRL]=CKEDITOR.env.mac?b[224]:b[17];return{title:a.title,minWidth:600,minHeight:400,contents:[{id:"info",label:f.lang.common.generalTab,expand:!0,elements:[{type:"html",id:"legends",style:"white-space:normal;",focus:function(){this.getElement().focus()}, +html:function(){for(var b='\x3cdiv class\x3d"cke_accessibility_legend" role\x3d"document" aria-labelledby\x3d"'+p+'_arialbl" tabIndex\x3d"-1"\x3e%1\x3c/div\x3e\x3cspan id\x3d"'+p+'_arialbl" class\x3d"cke_voice_label"\x3e'+a.contents+" \x3c/span\x3e",e=[],c=a.legend,h=c.length,d=0;dCKEDITOR.env.version)b.getWindow().on("blur",function(){b.$.selection.empty()});b.on("keydown",function(a){a=a.data;var b;switch(a.getKeystroke()){case 27:this.hide();b=1;break;case 9:case CKEDITOR.SHIFT+ +9:this.changeFocus(1),b=1}b&&a.preventDefault()},this);c.fire("ariaWidget",new CKEDITOR.dom.element(a.frameElement));b.getWindow().getFrame().removeCustomData("pendingFocus")&&g.focus()}var h=c.lang.clipboard,e=CKEDITOR.plugins.clipboard,f;c.on("pasteDialogCommit",function(a){a.data&&c.fire("paste",{type:"auto",dataValue:a.data.dataValue,method:"paste",dataTransfer:a.data.dataTransfer||e.initPasteDataTransfer()})},null,null,1E3);return{title:h.paste,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370: +350,minHeight:CKEDITOR.env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();this._.committed=!1},onLoad:function(){(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)&&"rtl"==c.lang.dir&&this.parts.contents.setStyle("overflow","hidden")},onOk:function(){this.commitContent()},contents:[{id:"general",label:c.lang.common.generalTab,elements:[{type:"html",id:"pasteMsg",html:'\x3cdiv style\x3d"white-space:normal;width:340px"\x3e'+h.pasteMsg+"\x3c/div\x3e"},{type:"html", +id:"editing_area",style:"width:100%;height:100%",html:"",focus:function(){var a=this.getInputElement(),b=a.getFrameDocument().getBody();!b||b.isReadOnly()?a.setCustomData("pendingFocus",1):b.focus()},setup:function(){var a=this.getDialog(),b='\x3chtml dir\x3d"'+c.config.contentsLangDirection+'" lang\x3d"'+(c.config.contentsLanguage||c.langCode)+'"\x3e\x3chead\x3e\x3cstyle\x3ebody{margin:3px;height:95%;word-break:break-all;}\x3c/style\x3e\x3c/head\x3e\x3cbody\x3e\x3cscript id\x3d"cke_actscrpt" type\x3d"text/javascript"\x3ewindow.parent.CKEDITOR.tools.callFunction('+ +CKEDITOR.tools.addFunction(k,a)+",this);\x3c/script\x3e\x3c/body\x3e\x3c/html\x3e",g=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie&&!CKEDITOR.env.edge?"javascript:void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+'})())"':"",d=CKEDITOR.dom.element.createFromHtml('\x3ciframe class\x3d"cke_pasteframe" frameborder\x3d"0" allowTransparency\x3d"true" src\x3d"'+g+'" aria-label\x3d"'+h.pasteArea+'" aria-describedby\x3d"'+a.getContentElement("general", +"pasteMsg").domId+'"\x3e\x3c/iframe\x3e');f=null;d.on("load",function(a){a.removeListener();a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());CKEDITOR.env.air&&k.call(this,a.getWindow().$)},a);d.setCustomData("dialog",a);a=this.getElement();a.setHtml("");a.append(d);if(CKEDITOR.env.ie&&!CKEDITOR.env.edge){var e=CKEDITOR.dom.element.createFromHtml('\x3cspan tabindex\x3d"-1" style\x3d"position:absolute" role\x3d"presentation"\x3e\x3c/span\x3e');e.on("focus",function(){setTimeout(function(){d.$.contentWindow.focus()})}); +a.append(e);this.focus=function(){e.focus();this.fire("focus")}}this.getInputElement=function(){return d};CKEDITOR.env.ie&&(a.setStyle("display","block"),a.setStyle("height",d.$.offsetHeight+2+"px"))},commit:function(){var a=this.getDialog().getParentEditor(),b=this.getInputElement().getFrameDocument().getBody(),c=b.getBogus();c&&c.remove();b=b.getHtml();this.getDialog()._.committed=!0;a.fire("pasteDialogCommit",{dataValue:b,dataTransfer:f||e.initPasteDataTransfer()})}}]}]}}); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/colordialog/dialogs/colordialog.css b/plugins/ckeditor/lib/plugins/colordialog/dialogs/colordialog.css new file mode 100644 index 0000000..2065449 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/colordialog/dialogs/colordialog.css @@ -0,0 +1,20 @@ +/** + * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ + +.cke_colordialog_colorcell { + width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ + height: 14px; + padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ +} + +.cke_colordialog_colorcell.cke_colordialog_focused_light, +.cke_colordialog_colorcell.cke_colordialog_focused_dark { + padding: 0; /* Shrink cell to allow 1px border indicating focus. */ + border: 1px dotted #000; +} + +.cke_colordialog_colorcell.cke_colordialog_focused_dark { + border-color: #FFF; +} diff --git a/plugins/ckeditor/lib/plugins/colordialog/dialogs/colordialog.js b/plugins/ckeditor/lib/plugins/colordialog/dialogs/colordialog.js new file mode 100644 index 0000000..5628357 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/colordialog/dialogs/colordialog.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("colordialog",function(w){function l(){h.getById(p).removeStyle("background-color");m.getContentElement("picker","selectedColor").setValue("");x()}function y(a){a=a.data.getTarget();var c;"td"==a.getName()&&(c=a.getChild(0).getHtml())&&(x(),e=a,e.setAttribute("aria-selected",!0),e.addClass("cke_colordialog_selected"),m.getContentElement("picker","selectedColor").setValue(c))}function x(){e&&(e.removeClass("cke_colordialog_selected"),e.removeAttribute("aria-selected"),e=null)}function D(a){a= +a.replace(/^#/,"");for(var c=0,b=[];2>=c;c++)b[c]=parseInt(a.substr(2*c,2),16);return 165<=.2126*b[0]+.7152*b[1]+.0722*b[2]}function z(a){!a.name&&(a=new CKEDITOR.event(a));var c=!/mouse/.test(a.name),b=a.data.getTarget(),f;"td"==b.getName()&&(f=b.getChild(0).getHtml())&&(q(a),c?d=b:A=b,c&&b.addClass(D(f)?"cke_colordialog_focused_light":"cke_colordialog_focused_dark"),r(f))}function B(){d&&(d.removeClass("cke_colordialog_focused_light"),d.removeClass("cke_colordialog_focused_dark"));r(!1);d=null} +function q(a){if(a=!/mouse/.test(a.name)&&d)a.removeClass("cke_colordialog_focused_light"),a.removeClass("cke_colordialog_focused_dark");d||A||r(!1)}function r(a){a?(h.getById(t).setStyle("background-color",a),h.getById(u).setHtml(a)):(h.getById(t).removeStyle("background-color"),h.getById(u).setHtml("\x26nbsp;"))}function E(a){var c=a.data,b=c.getTarget(),f=c.getKeystroke(),d="rtl"==w.lang.dir;switch(f){case 38:if(a=b.getParent().getPrevious())a=a.getChild([b.getIndex()]),a.focus();c.preventDefault(); +break;case 40:(a=b.getParent().getNext())&&(a=a.getChild([b.getIndex()]))&&1==a.type&&a.focus();c.preventDefault();break;case 32:case 13:y(a);c.preventDefault();break;case d?37:39:(a=b.getNext())?1==a.type&&(a.focus(),c.preventDefault(!0)):(a=b.getParent().getNext())&&(a=a.getChild([0]))&&1==a.type&&(a.focus(),c.preventDefault(!0));break;case d?39:37:if(a=b.getPrevious())a.focus(),c.preventDefault(!0);else if(a=b.getParent().getPrevious())a=a.getLast(),a.focus(),c.preventDefault(!0)}}var v=CKEDITOR.dom.element, +h=CKEDITOR.document,g=w.lang.colordialog,m,e,C={type:"html",html:"\x26nbsp;"},n=function(a){return CKEDITOR.tools.getNextId()+"_"+a},t=n("hicolor"),u=n("hicolortext"),p=n("selhicolor"),k,d,A;(function(){function a(a,d){for(var e=a;eh;h++)c(f.$,"#"+b[g]+b[h]+b[e])}}function c(a,c){var b=new v(a.insertCell(-1));b.setAttribute("class","ColorCell cke_colordialog_colorcell");b.setAttribute("tabIndex", +-1);b.setAttribute("role","gridcell");b.on("keydown",E);b.on("click",y);b.on("focus",z);b.on("blur",q);b.setStyle("background-color",c);var d=n("color_table_cell");b.setAttribute("aria-labelledby",d);b.append(CKEDITOR.dom.element.createFromHtml('\x3cspan id\x3d"'+d+'" class\x3d"cke_voice_label"\x3e'+c+"\x3c/span\x3e",CKEDITOR.document))}k=CKEDITOR.dom.element.createFromHtml('\x3ctable tabIndex\x3d"-1" class\x3d"cke_colordialog_table" aria-label\x3d"'+g.options+'" role\x3d"grid" style\x3d"border-collapse:separate;" cellspacing\x3d"0"\x3e\x3ccaption class\x3d"cke_voice_label"\x3e'+ +g.options+'\x3c/caption\x3e\x3ctbody role\x3d"presentation"\x3e\x3c/tbody\x3e\x3c/table\x3e');k.on("mouseover",z);k.on("mouseout",q);var b="00 33 66 99 cc ff".split(" ");a(0,0);a(3,0);a(0,3);a(3,3);var f=new v(k.$.insertRow(-1));f.setAttribute("role","row");c(f.$,"#000000");for(var d=0;16>d;d++){var e=d.toString(16);c(f.$,"#"+e+e+e+e+e+e)}c(f.$,"#ffffff")})();CKEDITOR.document.appendStyleSheet(CKEDITOR.getUrl(CKEDITOR.plugins.get("colordialog").path+"dialogs/colordialog.css"));return{title:g.title, +minWidth:360,minHeight:220,onShow:function(a){if(!a.data.selectionColor||a.data.selectionColor==a.data.automaticTextColor||"#rgba(0, 0, 0, 0)"==a.data.selectionColor&&"back"==a.data.type)l(),B();else{var c=a.data.selectionColor;a=this.parts.contents.getElementsByTag("td").toArray();var b;m.getContentElement("picker","selectedColor").setValue(c);CKEDITOR.tools.array.forEach(a,function(a){b=CKEDITOR.tools.convertRgbToHex(a.getStyle("background-color"));c===b&&(a.focus(),d=a)})}},onLoad:function(){m= +this},onHide:function(){l();B()},contents:[{id:"picker",label:g.title,accessKey:"I",elements:[{type:"hbox",padding:0,widths:["70%","10%","30%"],children:[{type:"html",html:"\x3cdiv\x3e\x3c/div\x3e",onLoad:function(){CKEDITOR.document.getById(this.domId).append(k)},focus:function(){(d||this.getElement().getElementsByTag("td").getItem(0)).focus()}},C,{type:"vbox",padding:0,widths:["70%","5%","25%"],children:[{type:"html",html:"\x3cspan\x3e"+g.highlight+'\x3c/span\x3e\x3cdiv id\x3d"'+t+'" style\x3d"border: 1px solid; height: 74px; width: 74px;"\x3e\x3c/div\x3e\x3cdiv id\x3d"'+ +u+'"\x3e\x26nbsp;\x3c/div\x3e\x3cspan\x3e'+g.selected+'\x3c/span\x3e\x3cdiv id\x3d"'+p+'" style\x3d"border: 1px solid; height: 20px; width: 74px;"\x3e\x3c/div\x3e'},{type:"text",label:g.selected,labelStyle:"display:none",id:"selectedColor",style:"width: 76px;margin-top:4px",onChange:function(){try{h.getById(p).setStyle("background-color",this.getValue())}catch(a){l()}}},C,{type:"button",id:"clear",label:g.clear,onClick:l}]}]}]}]}}); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/copyformatting/cursors/cursor-disabled.svg b/plugins/ckeditor/lib/plugins/copyformatting/cursors/cursor-disabled.svg new file mode 100644 index 0000000..9298aef --- /dev/null +++ b/plugins/ckeditor/lib/plugins/copyformatting/cursors/cursor-disabled.svg @@ -0,0 +1,25 @@ + + + + cursor_disabled + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/copyformatting/cursors/cursor.svg b/plugins/ckeditor/lib/plugins/copyformatting/cursors/cursor.svg new file mode 100644 index 0000000..9595147 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/copyformatting/cursors/cursor.svg @@ -0,0 +1,14 @@ + + + cursor + + + + + + + + + + + diff --git a/plugins/ckeditor/lib/plugins/copyformatting/styles/copyformatting.css b/plugins/ckeditor/lib/plugins/copyformatting/styles/copyformatting.css new file mode 100644 index 0000000..e6f2edb --- /dev/null +++ b/plugins/ckeditor/lib/plugins/copyformatting/styles/copyformatting.css @@ -0,0 +1,45 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ + +html.cke_copyformatting_active { + min-height: 100%; +} + +/* There is no cursor in CUR format for IE/Edge as that browser + does not support custom cursor in [contenteditable] area. + Ticket for this issue: + https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-using-css */ +.cke_copyformatting_disabled, +.cke_copyformatting_disabled a, +.cke_copyformatting_disabled .cke_editable { + cursor: url(../cursors/cursor-disabled.svg) 12 1, auto; +} + +.cke_copyformatting_disabled .cke_top a, +.cke_copyformatting_disabled .cke_bottom a { + cursor: default; +} + +/* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin. + The `!important` rule is used because the Table Resize plugin creates a `
` which changes the cursor using inlined styles. */ +.cke_copyformatting_active, +.cke_copyformatting_active.cke_editable, +.cke_copyformatting_active .cke_editable, +.cke_copyformatting_active a, +.cke_copyformatting_active table, +.cke_copyformatting_active div[data-cke-temp], +.cke_copyformatting_tableresize_cursor div[data-cke-temp] { + cursor: url(../cursors/cursor.svg) 12 1, auto !important; +} + +.cke_screen_reader_only { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); + padding: 0; + border: 0; + height: 1px; + width: 1px; + overflow: hidden; +} diff --git a/plugins/ckeditor/lib/plugins/dialog/dialogDefinition.js b/plugins/ckeditor/lib/plugins/dialog/dialogDefinition.js new file mode 100644 index 0000000..9361af4 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/dialog/dialogDefinition.js @@ -0,0 +1,4 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ diff --git a/plugins/ckeditor/lib/plugins/dialog/styles/dialog.css b/plugins/ckeditor/lib/plugins/dialog/styles/dialog.css new file mode 100644 index 0000000..add83eb --- /dev/null +++ b/plugins/ckeditor/lib/plugins/dialog/styles/dialog.css @@ -0,0 +1,18 @@ +.cke_dialog_open { + overflow: hidden; +} + +.cke_dialog_container { + position: fixed; + overflow-y: auto; + overflow-x: auto; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 10010; +} + +.cke_dialog_body { + position: relative; +} diff --git a/plugins/ckeditor/lib/plugins/div/dialogs/div.js b/plugins/ckeditor/lib/plugins/div/dialogs/div.js new file mode 100644 index 0000000..48233da --- /dev/null +++ b/plugins/ckeditor/lib/plugins/div/dialogs/div.js @@ -0,0 +1,10 @@ +(function(){function t(a,m,r){m.is&&m.getCustomData("block_processed")||(m.is&&CKEDITOR.dom.element.setMarker(r,m,"block_processed",!0),a.push(m))}function q(a,m){function r(){this.foreach(function(a){/^(?!vbox|hbox)/.test(a.type)&&(a.setup||(a.setup=function(c){a.setValue(c.getAttribute(a.id)||"",1)}),a.commit||(a.commit=function(c){var f=this.getValue();if("dir"!=a.id||c.getComputedStyle("direction")!=f)f?c.setAttribute(a.id,f):c.removeAttribute(a.id)}))})}var q=function(){var g=CKEDITOR.tools.extend({}, +CKEDITOR.dtd.$blockLimit);a.config.div_wrapTable&&(delete g.td,delete g.th);return g}(),u=CKEDITOR.dtd.div,n={},p=[];return{title:a.lang.div.title,minWidth:400,minHeight:165,contents:[{id:"info",label:a.lang.common.generalTab,title:a.lang.common.generalTab,elements:[{type:"hbox",widths:["50%","50%"],children:[{id:"elementStyle",type:"select",style:"width: 100%;",label:a.lang.div.styleSelectLabel,"default":"",items:[[a.lang.common.notSet,""]],onChange:function(){var g=["info:elementStyle","info:class", +"advanced:dir","advanced:style"],c=this.getDialog(),f=c.getModel(a),f=f&&f.clone()||new CKEDITOR.dom.element("div",a.document);this.commit(f,!0);for(var g=[].concat(g),b=g.length,k,e=0;e=b||8192<=b&&8202>=b||F.test(a)}function r(a){var b=d.getSelection().getRanges()[0],c=d.editable();b&&!a?(a=b.clone(),a.collapse(!0)):(a=d.createRange(),a.setStartAt(c,CKEDITOR.POSITION_AFTER_START));a.setEndAt(c,CKEDITOR.POSITION_BEFORE_END);return a}function G(a,b){var c=b.replace(H,function(a){a=a.split("");return CKEDITOR.tools.array.map(a,function(a,b){return 0=== +b%2?" ":a}).join("")});return a.document.createText(c)}var A=new CKEDITOR.style(CKEDITOR.tools.extend({attributes:{"data-cke-highlight":1},fullMatch:1,ignoreReadonly:1,childRule:function(){return 0}},d.config.find_highlight,!0));n.prototype={next:function(){return this.move()},back:function(){return this.move(!0)},move:function(a){var b=this.textNode;if(null===b)return w.call(this);this._.matchBoundary=!1;if(b&&a&&0b.length){var c=this._.walker.textNode;if(c)a.setStartAfter(c);else return null}else c=b[0],b=b[b.length-1],a.setStart(c.textNode,c.offset), +a.setEnd(b.textNode,b.offset+1);return a},updateFromDomRange:function(a){var b=new n(a);this._.cursors=[];do a=b.next(),a.character&&this._.cursors.push(a);while(a.character);this._.rangeLength=this._.cursors.length},setMatched:function(){this._.isMatched=!0},clearMatched:function(){this._.isMatched=!1},isMatched:function(){return this._.isMatched},highlight:function(){if(!(1>this._.cursors.length)){this._.highlightRange&&this.removeHighlight();var a=this.toDomRange(),b=a.createBookmark();A.applyToRange(a, +d);a.moveToBookmark(b);this._.highlightRange=a;b=a.startContainer;b.type!=CKEDITOR.NODE_ELEMENT&&(b=b.getParent());b.scrollIntoView();this.updateFromDomRange(a)}},removeHighlight:function(){if(this._.highlightRange){var a=this._.highlightRange.createBookmark();A.removeFromRange(this._.highlightRange,d);this._.highlightRange.moveToBookmark(a);this.updateFromDomRange(this._.highlightRange);this._.highlightRange=null}},isReadOnly:function(){return this._.highlightRange?this._.highlightRange.startContainer.isReadOnly(): +0},moveBack:function(){var a=this._.walker.back(),b=this._.cursors;a.hitMatchBoundary&&(this._.cursors=b=[]);b.unshift(a);b.length>this._.rangeLength&&b.pop();return a},moveNext:function(){var a=this._.walker.next(),b=this._.cursors;a.hitMatchBoundary&&(this._.cursors=b=[]);b.push(a);b.length>this._.rangeLength&&b.shift();return a},getEndCharacter:function(){var a=this._.cursors;return 1>a.length?null:a[a.length-1].character},getNextCharacterRange:function(a){var b,c;c=this._.cursors;c=(b=c[c.length- +1])&&b.textNode?new n(y(b)):this._.walker;return new u(c,a)},getCursors:function(){return this._.cursors}};var B=function(a,b){var c=[-1];b&&(a=a.toLowerCase());for(var d=0;dCKEDITOR.document.$.documentMode?b.document.createElement('\x3cinput name\x3d"'+CKEDITOR.tools.htmlEncode(a)+'"\x3e'):b.document.createElement("input");a.setAttribute("type","hidden");this.commitContent(a);var a=b.createFakeElement(a,"cke_hidden","hiddenfield"),c=this.getModel(b);c?(a.replace(c),b.getSelection().selectElement(a)):b.insertElement(a);return!0},contents:[{id:"info",label:c.lang.forms.hidden.title,title:c.lang.forms.hidden.title,elements:[{id:"_cke_saved_name", +type:"text",label:c.lang.forms.hidden.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.setAttribute("name",this.getValue()):a.removeAttribute("name")}},{id:"value",type:"text",label:c.lang.forms.hidden.value,"default":"",accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}}]}]}}); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/forms/dialogs/radio.js b/plugins/ckeditor/lib/plugins/forms/dialogs/radio.js new file mode 100644 index 0000000..a9d2543 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/forms/dialogs/radio.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("radio",function(c){return{title:c.lang.forms.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"input"==a.getName()&&"radio"==a.getAttribute("type")?a:null},onShow:function(){var a=this.getModel(this.getParentEditor());a&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a);b||(b=a.document.createElement("input"),b.setAttribute("type","radio"),a.insertElement(b));this.commitContent({element:b})}, +contents:[{id:"info",label:c.lang.forms.checkboxAndRadio.radioTitle,title:c.lang.forms.checkboxAndRadio.radioTitle,elements:[{id:"name",type:"text",label:c.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"value",type:"text",label:c.lang.forms.checkboxAndRadio.value,"default":"", +accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){a=a.element;this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}},{id:"checked",type:"checkbox",label:c.lang.forms.checkboxAndRadio.selected,"default":"",accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var b=a.element;if(CKEDITOR.env.ie){var d=b.getAttribute("checked"),e=!!this.getValue();d!=e&&(d=CKEDITOR.dom.element.createFromHtml('\x3cinput type\x3d"radio"'+ +(e?' checked\x3d"checked"':"")+"\x3e\x3c/input\x3e",c.document),b.copyAttributes(d,{type:1,checked:1}),d.replace(b),e&&d.setAttribute("checked","checked"),c.getSelection().selectElement(d),a.element=d)}else a=this.getValue(),CKEDITOR.env.webkit&&(b.$.checked=a),a?b.setAttribute("checked","checked"):b.removeAttribute("checked")}},{id:"required",type:"checkbox",label:c.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:CKEDITOR.plugins.forms._setupRequiredAttribute, +commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/forms/dialogs/select.js b/plugins/ckeditor/lib/plugins/forms/dialogs/select.js new file mode 100644 index 0000000..d824254 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/forms/dialogs/select.js @@ -0,0 +1,21 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("select",function(c){function h(a,b,e,d,c){a=f(a);d=d?d.createElement("OPTION"):document.createElement("OPTION");if(a&&d&&"option"==d.getName())CKEDITOR.env.ie?(isNaN(parseInt(c,10))?a.$.options.add(d.$):a.$.options.add(d.$,c),d.$.innerHTML=0c?0:c).insertBeforeMe(d):a.append(d),d.setText(0b)return!1;a=a.getChild(b);a.setText(e);a.setValue(d);return a}function m(a){for(a=f(a);a.getChild(0)&&a.getChild(0).remove(););}function l(a,b,e){a=f(a);var d=g(a);if(0>d)return!1;b=d+b;b=0>b?0:b;b=b>=a.getChildCount()?a.getChildCount()-1:b;if(d==b)return!1;var d=a.getChild(d),c=d.getText(),r=d.getValue();d.remove();d=h(a,c,r,e?e:null,b);k(a,b);return d}function g(a){return(a=f(a))?a.$.selectedIndex:-1} +function k(a,b){a=f(a);if(0>b)return null;var e=a.getChildren().count();a.$.selectedIndex=b>=e?e-1:b;return a}function n(a){return(a=f(a))?a.getChildren():!1}function f(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}return{title:c.lang.forms.select.title,minWidth:CKEDITOR.env.ie?460:395,minHeight:CKEDITOR.env.ie?320:300,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"select"==a.getName()?a:null},onShow:function(){this.setupContent("clear");var a= +this.getModel(this.getParentEditor());if(a){this.setupContent(a.getName(),a);for(var a=n(a),b=0;b + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/.idea/misc.xml b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/misc.xml new file mode 100644 index 0000000..c830a42 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/misc.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/.idea/modules.xml b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/modules.xml new file mode 100644 index 0000000..9e79687 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/.idea/vcs.xml b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/vcs.xml new file mode 100644 index 0000000..5ace414 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/.idea/workspace.xml b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/workspace.xml new file mode 100644 index 0000000..d6e068d --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/.idea/workspace.xml @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + project + + + true + + + + DIRECTORY + + false + + + + + + + + + 1477936305162 + + + 1477937408225 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/README.md b/plugins/ckeditor/lib/plugins/layoutmanager/README.md new file mode 100644 index 0000000..ece9192 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/README.md @@ -0,0 +1,20 @@ +# LayoutManager + +TODO: Write a plugin description + +## Configuration + +#### config.extraPlugins = "layoutmanager" + +#### config.layoutmanager_loadbootstrap = true/false (false by default - embedded bootstrap.css is not loaded) +#### config.layoutmanager_allowedContent (all tags are allowed by default) +#### config.layoutmanager_buttonboxWidth = 58 (the width of each layout-preview button in the dialog) + +#### Name for adding into the toolbar : "LayoutManager" + +## Events + +layoutmanager:layout-inserted - fired when layout is inserted + +## Dependencies +https://jquery.com/ diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/css/bootstrap.css b/plugins/ckeditor/lib/plugins/layoutmanager/css/bootstrap.css new file mode 100644 index 0000000..9e6d734 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/css/bootstrap.css @@ -0,0 +1,7838 @@ +/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100% +} + +body { + margin: 0 +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block +} + +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline +} + +audio:not([controls]) { + display: none; + height: 0 +} + +[hidden], +template { + display: none +} + +a { + background-color: transparent +} + +a:active, +a:hover { + outline: 0 +} + +abbr[title] { + border-bottom: 1px dotted +} + +b, +strong { + font-weight: 700 +} + +dfn { + font-style: italic +} + +h1 { + margin: .67em 0; + font-size: 2em +} + +mark { + color: #000; + background: #ff0 +} + +small { + font-size: 80% +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline +} + +sup { + top: -.5em +} + +sub { + bottom: -.25em +} + +img { + border: 0 +} + +svg:not(:root) { + overflow: hidden +} + +figure { + margin: 1em 40px +} + +hr { + height: 0; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box +} + +pre { + overflow: auto +} + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em +} + +button, +input, +optgroup, +select, +textarea { + margin: 0; + font: inherit; + color: inherit +} + +button { + overflow: visible +} + +button, +select { + text-transform: none +} + +button, +html input[type=button], +input[type=reset], +input[type=submit] { + -webkit-appearance: button; + cursor: pointer +} + +button[disabled], +html input[disabled] { + cursor: default +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0 +} + +input { + line-height: normal +} + +input[type=checkbox], +input[type=radio] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0 +} + +input[type=number]::-webkit-inner-spin-button, +input[type=number]::-webkit-outer-spin-button { + height: auto +} + +input[type=search] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield +} + +input[type=search]::-webkit-search-cancel-button, +input[type=search]::-webkit-search-decoration { + -webkit-appearance: none +} + +fieldset { + padding: .35em .625em .75em; + margin: 0 2px; + border: 1px solid silver +} + +legend { + padding: 0; + border: 0 +} + +textarea { + overflow: auto +} + +optgroup { + font-weight: 700 +} + +table { + border-spacing: 0; + border-collapse: collapse +} + +td, +th { + padding: 0 +} +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ + +@media print { + *, + :after, + :before { + color: #000!important; + text-shadow: none!important; + background: 0 0!important; + -webkit-box-shadow: none!important; + box-shadow: none!important + } + a, + a:visited { + text-decoration: underline + } + a[href]:after { + content: " (" attr(href) ")" + } + abbr[title]:after { + content: " (" attr(title) ")" + } + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: "" + } + blockquote, + pre { + border: 1px solid #999; + page-break-inside: avoid + } + thead { + display: table-header-group + } + img, + tr { + page-break-inside: avoid + } + img { + max-width: 100%!important + } + h2, + h3, + p { + orphans: 3; + widows: 3 + } + h2, + h3 { + page-break-after: avoid + } + select { + background: #fff!important + } + .navbar { + display: none + } + .btn>.caret, + .dropup>.btn>.caret { + border-top-color: #000!important + } + .label { + border: 1px solid #000 + } + .table { + border-collapse: collapse!important + } + .table td, + .table th { + background-color: #fff!important + } + .table-bordered td, + .table-bordered th { + border: 1px solid #ddd!important + } +} + +@font-face { + font-family: 'Glyphicons Halflings'; + src: url(../fonts/glyphicons-halflings-regular.eot); + src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg') +} + +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.glyphicon-asterisk:before { + content: "\2a" +} + +.glyphicon-plus:before { + content: "\2b" +} + +.glyphicon-eur:before, +.glyphicon-euro:before { + content: "\20ac" +} + +.glyphicon-minus:before { + content: "\2212" +} + +.glyphicon-cloud:before { + content: "\2601" +} + +.glyphicon-envelope:before { + content: "\2709" +} + +.glyphicon-pencil:before { + content: "\270f" +} + +.glyphicon-glass:before { + content: "\e001" +} + +.glyphicon-music:before { + content: "\e002" +} + +.glyphicon-search:before { + content: "\e003" +} + +.glyphicon-heart:before { + content: "\e005" +} + +.glyphicon-star:before { + content: "\e006" +} + +.glyphicon-star-empty:before { + content: "\e007" +} + +.glyphicon-user:before { + content: "\e008" +} + +.glyphicon-film:before { + content: "\e009" +} + +.glyphicon-th-large:before { + content: "\e010" +} + +.glyphicon-th:before { + content: "\e011" +} + +.glyphicon-th-list:before { + content: "\e012" +} + +.glyphicon-ok:before { + content: "\e013" +} + +.glyphicon-remove:before { + content: "\e014" +} + +.glyphicon-zoom-in:before { + content: "\e015" +} + +.glyphicon-zoom-out:before { + content: "\e016" +} + +.glyphicon-off:before { + content: "\e017" +} + +.glyphicon-signal:before { + content: "\e018" +} + +.glyphicon-cog:before { + content: "\e019" +} + +.glyphicon-trash:before { + content: "\e020" +} + +.glyphicon-home:before { + content: "\e021" +} + +.glyphicon-file:before { + content: "\e022" +} + +.glyphicon-time:before { + content: "\e023" +} + +.glyphicon-road:before { + content: "\e024" +} + +.glyphicon-download-alt:before { + content: "\e025" +} + +.glyphicon-download:before { + content: "\e026" +} + +.glyphicon-upload:before { + content: "\e027" +} + +.glyphicon-inbox:before { + content: "\e028" +} + +.glyphicon-play-circle:before { + content: "\e029" +} + +.glyphicon-repeat:before { + content: "\e030" +} + +.glyphicon-refresh:before { + content: "\e031" +} + +.glyphicon-list-alt:before { + content: "\e032" +} + +.glyphicon-lock:before { + content: "\e033" +} + +.glyphicon-flag:before { + content: "\e034" +} + +.glyphicon-headphones:before { + content: "\e035" +} + +.glyphicon-volume-off:before { + content: "\e036" +} + +.glyphicon-volume-down:before { + content: "\e037" +} + +.glyphicon-volume-up:before { + content: "\e038" +} + +.glyphicon-qrcode:before { + content: "\e039" +} + +.glyphicon-barcode:before { + content: "\e040" +} + +.glyphicon-tag:before { + content: "\e041" +} + +.glyphicon-tags:before { + content: "\e042" +} + +.glyphicon-book:before { + content: "\e043" +} + +.glyphicon-bookmark:before { + content: "\e044" +} + +.glyphicon-print:before { + content: "\e045" +} + +.glyphicon-camera:before { + content: "\e046" +} + +.glyphicon-font:before { + content: "\e047" +} + +.glyphicon-bold:before { + content: "\e048" +} + +.glyphicon-italic:before { + content: "\e049" +} + +.glyphicon-text-height:before { + content: "\e050" +} + +.glyphicon-text-width:before { + content: "\e051" +} + +.glyphicon-align-left:before { + content: "\e052" +} + +.glyphicon-align-center:before { + content: "\e053" +} + +.glyphicon-align-right:before { + content: "\e054" +} + +.glyphicon-align-justify:before { + content: "\e055" +} + +.glyphicon-list:before { + content: "\e056" +} + +.glyphicon-indent-left:before { + content: "\e057" +} + +.glyphicon-indent-right:before { + content: "\e058" +} + +.glyphicon-facetime-video:before { + content: "\e059" +} + +.glyphicon-picture:before { + content: "\e060" +} + +.glyphicon-map-marker:before { + content: "\e062" +} + +.glyphicon-adjust:before { + content: "\e063" +} + +.glyphicon-tint:before { + content: "\e064" +} + +.glyphicon-edit:before { + content: "\e065" +} + +.glyphicon-share:before { + content: "\e066" +} + +.glyphicon-check:before { + content: "\e067" +} + +.glyphicon-move:before { + content: "\e068" +} + +.glyphicon-step-backward:before { + content: "\e069" +} + +.glyphicon-fast-backward:before { + content: "\e070" +} + +.glyphicon-backward:before { + content: "\e071" +} + +.glyphicon-play:before { + content: "\e072" +} + +.glyphicon-pause:before { + content: "\e073" +} + +.glyphicon-stop:before { + content: "\e074" +} + +.glyphicon-forward:before { + content: "\e075" +} + +.glyphicon-fast-forward:before { + content: "\e076" +} + +.glyphicon-step-forward:before { + content: "\e077" +} + +.glyphicon-eject:before { + content: "\e078" +} + +.glyphicon-chevron-left:before { + content: "\e079" +} + +.glyphicon-chevron-right:before { + content: "\e080" +} + +.glyphicon-plus-sign:before { + content: "\e081" +} + +.glyphicon-minus-sign:before { + content: "\e082" +} + +.glyphicon-remove-sign:before { + content: "\e083" +} + +.glyphicon-ok-sign:before { + content: "\e084" +} + +.glyphicon-question-sign:before { + content: "\e085" +} + +.glyphicon-info-sign:before { + content: "\e086" +} + +.glyphicon-screenshot:before { + content: "\e087" +} + +.glyphicon-remove-circle:before { + content: "\e088" +} + +.glyphicon-ok-circle:before { + content: "\e089" +} + +.glyphicon-ban-circle:before { + content: "\e090" +} + +.glyphicon-arrow-left:before { + content: "\e091" +} + +.glyphicon-arrow-right:before { + content: "\e092" +} + +.glyphicon-arrow-up:before { + content: "\e093" +} + +.glyphicon-arrow-down:before { + content: "\e094" +} + +.glyphicon-share-alt:before { + content: "\e095" +} + +.glyphicon-resize-full:before { + content: "\e096" +} + +.glyphicon-resize-small:before { + content: "\e097" +} + +.glyphicon-exclamation-sign:before { + content: "\e101" +} + +.glyphicon-gift:before { + content: "\e102" +} + +.glyphicon-leaf:before { + content: "\e103" +} + +.glyphicon-fire:before { + content: "\e104" +} + +.glyphicon-eye-open:before { + content: "\e105" +} + +.glyphicon-eye-close:before { + content: "\e106" +} + +.glyphicon-warning-sign:before { + content: "\e107" +} + +.glyphicon-plane:before { + content: "\e108" +} + +.glyphicon-calendar:before { + content: "\e109" +} + +.glyphicon-random:before { + content: "\e110" +} + +.glyphicon-comment:before { + content: "\e111" +} + +.glyphicon-magnet:before { + content: "\e112" +} + +.glyphicon-chevron-up:before { + content: "\e113" +} + +.glyphicon-chevron-down:before { + content: "\e114" +} + +.glyphicon-retweet:before { + content: "\e115" +} + +.glyphicon-shopping-cart:before { + content: "\e116" +} + +.glyphicon-folder-close:before { + content: "\e117" +} + +.glyphicon-folder-open:before { + content: "\e118" +} + +.glyphicon-resize-vertical:before { + content: "\e119" +} + +.glyphicon-resize-horizontal:before { + content: "\e120" +} + +.glyphicon-hdd:before { + content: "\e121" +} + +.glyphicon-bullhorn:before { + content: "\e122" +} + +.glyphicon-bell:before { + content: "\e123" +} + +.glyphicon-certificate:before { + content: "\e124" +} + +.glyphicon-thumbs-up:before { + content: "\e125" +} + +.glyphicon-thumbs-down:before { + content: "\e126" +} + +.glyphicon-hand-right:before { + content: "\e127" +} + +.glyphicon-hand-left:before { + content: "\e128" +} + +.glyphicon-hand-up:before { + content: "\e129" +} + +.glyphicon-hand-down:before { + content: "\e130" +} + +.glyphicon-circle-arrow-right:before { + content: "\e131" +} + +.glyphicon-circle-arrow-left:before { + content: "\e132" +} + +.glyphicon-circle-arrow-up:before { + content: "\e133" +} + +.glyphicon-circle-arrow-down:before { + content: "\e134" +} + +.glyphicon-globe:before { + content: "\e135" +} + +.glyphicon-wrench:before { + content: "\e136" +} + +.glyphicon-tasks:before { + content: "\e137" +} + +.glyphicon-filter:before { + content: "\e138" +} + +.glyphicon-briefcase:before { + content: "\e139" +} + +.glyphicon-fullscreen:before { + content: "\e140" +} + +.glyphicon-dashboard:before { + content: "\e141" +} + +.glyphicon-paperclip:before { + content: "\e142" +} + +.glyphicon-heart-empty:before { + content: "\e143" +} + +.glyphicon-link:before { + content: "\e144" +} + +.glyphicon-phone:before { + content: "\e145" +} + +.glyphicon-pushpin:before { + content: "\e146" +} + +.glyphicon-usd:before { + content: "\e148" +} + +.glyphicon-gbp:before { + content: "\e149" +} + +.glyphicon-sort:before { + content: "\e150" +} + +.glyphicon-sort-by-alphabet:before { + content: "\e151" +} + +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152" +} + +.glyphicon-sort-by-order:before { + content: "\e153" +} + +.glyphicon-sort-by-order-alt:before { + content: "\e154" +} + +.glyphicon-sort-by-attributes:before { + content: "\e155" +} + +.glyphicon-sort-by-attributes-alt:before { + content: "\e156" +} + +.glyphicon-unchecked:before { + content: "\e157" +} + +.glyphicon-expand:before { + content: "\e158" +} + +.glyphicon-collapse-down:before { + content: "\e159" +} + +.glyphicon-collapse-up:before { + content: "\e160" +} + +.glyphicon-log-in:before { + content: "\e161" +} + +.glyphicon-flash:before { + content: "\e162" +} + +.glyphicon-log-out:before { + content: "\e163" +} + +.glyphicon-new-window:before { + content: "\e164" +} + +.glyphicon-record:before { + content: "\e165" +} + +.glyphicon-save:before { + content: "\e166" +} + +.glyphicon-open:before { + content: "\e167" +} + +.glyphicon-saved:before { + content: "\e168" +} + +.glyphicon-import:before { + content: "\e169" +} + +.glyphicon-export:before { + content: "\e170" +} + +.glyphicon-send:before { + content: "\e171" +} + +.glyphicon-floppy-disk:before { + content: "\e172" +} + +.glyphicon-floppy-saved:before { + content: "\e173" +} + +.glyphicon-floppy-remove:before { + content: "\e174" +} + +.glyphicon-floppy-save:before { + content: "\e175" +} + +.glyphicon-floppy-open:before { + content: "\e176" +} + +.glyphicon-credit-card:before { + content: "\e177" +} + +.glyphicon-transfer:before { + content: "\e178" +} + +.glyphicon-cutlery:before { + content: "\e179" +} + +.glyphicon-header:before { + content: "\e180" +} + +.glyphicon-compressed:before { + content: "\e181" +} + +.glyphicon-earphone:before { + content: "\e182" +} + +.glyphicon-phone-alt:before { + content: "\e183" +} + +.glyphicon-tower:before { + content: "\e184" +} + +.glyphicon-stats:before { + content: "\e185" +} + +.glyphicon-sd-video:before { + content: "\e186" +} + +.glyphicon-hd-video:before { + content: "\e187" +} + +.glyphicon-subtitles:before { + content: "\e188" +} + +.glyphicon-sound-stereo:before { + content: "\e189" +} + +.glyphicon-sound-dolby:before { + content: "\e190" +} + +.glyphicon-sound-5-1:before { + content: "\e191" +} + +.glyphicon-sound-6-1:before { + content: "\e192" +} + +.glyphicon-sound-7-1:before { + content: "\e193" +} + +.glyphicon-copyright-mark:before { + content: "\e194" +} + +.glyphicon-registration-mark:before { + content: "\e195" +} + +.glyphicon-cloud-download:before { + content: "\e197" +} + +.glyphicon-cloud-upload:before { + content: "\e198" +} + +.glyphicon-tree-conifer:before { + content: "\e199" +} + +.glyphicon-tree-deciduous:before { + content: "\e200" +} + +.glyphicon-cd:before { + content: "\e201" +} + +.glyphicon-save-file:before { + content: "\e202" +} + +.glyphicon-open-file:before { + content: "\e203" +} + +.glyphicon-level-up:before { + content: "\e204" +} + +.glyphicon-copy:before { + content: "\e205" +} + +.glyphicon-paste:before { + content: "\e206" +} + +.glyphicon-alert:before { + content: "\e209" +} + +.glyphicon-equalizer:before { + content: "\e210" +} + +.glyphicon-king:before { + content: "\e211" +} + +.glyphicon-queen:before { + content: "\e212" +} + +.glyphicon-pawn:before { + content: "\e213" +} + +.glyphicon-bishop:before { + content: "\e214" +} + +.glyphicon-knight:before { + content: "\e215" +} + +.glyphicon-baby-formula:before { + content: "\e216" +} + +.glyphicon-tent:before { + content: "\26fa" +} + +.glyphicon-blackboard:before { + content: "\e218" +} + +.glyphicon-bed:before { + content: "\e219" +} + +.glyphicon-apple:before { + content: "\f8ff" +} + +.glyphicon-erase:before { + content: "\e221" +} + +.glyphicon-hourglass:before { + content: "\231b" +} + +.glyphicon-lamp:before { + content: "\e223" +} + +.glyphicon-duplicate:before { + content: "\e224" +} + +.glyphicon-piggy-bank:before { + content: "\e225" +} + +.glyphicon-scissors:before { + content: "\e226" +} + +.glyphicon-bitcoin:before { + content: "\e227" +} + +.glyphicon-btc:before { + content: "\e227" +} + +.glyphicon-xbt:before { + content: "\e227" +} + +.glyphicon-yen:before { + content: "\00a5" +} + +.glyphicon-jpy:before { + content: "\00a5" +} + +.glyphicon-ruble:before { + content: "\20bd" +} + +.glyphicon-rub:before { + content: "\20bd" +} + +.glyphicon-scale:before { + content: "\e230" +} + +.glyphicon-ice-lolly:before { + content: "\e231" +} + +.glyphicon-ice-lolly-tasted:before { + content: "\e232" +} + +.glyphicon-education:before { + content: "\e233" +} + +.glyphicon-option-horizontal:before { + content: "\e234" +} + +.glyphicon-option-vertical:before { + content: "\e235" +} + +.glyphicon-menu-hamburger:before { + content: "\e236" +} + +.glyphicon-modal-window:before { + content: "\e237" +} + +.glyphicon-oil:before { + content: "\e238" +} + +.glyphicon-grain:before { + content: "\e239" +} + +.glyphicon-sunglasses:before { + content: "\e240" +} + +.glyphicon-text-size:before { + content: "\e241" +} + +.glyphicon-text-color:before { + content: "\e242" +} + +.glyphicon-text-background:before { + content: "\e243" +} + +.glyphicon-object-align-top:before { + content: "\e244" +} + +.glyphicon-object-align-bottom:before { + content: "\e245" +} + +.glyphicon-object-align-horizontal:before { + content: "\e246" +} + +.glyphicon-object-align-left:before { + content: "\e247" +} + +.glyphicon-object-align-vertical:before { + content: "\e248" +} + +.glyphicon-object-align-right:before { + content: "\e249" +} + +.glyphicon-triangle-right:before { + content: "\e250" +} + +.glyphicon-triangle-left:before { + content: "\e251" +} + +.glyphicon-triangle-bottom:before { + content: "\e252" +} + +.glyphicon-triangle-top:before { + content: "\e253" +} + +.glyphicon-console:before { + content: "\e254" +} + +.glyphicon-superscript:before { + content: "\e255" +} + +.glyphicon-subscript:before { + content: "\e256" +} + +.glyphicon-menu-left:before { + content: "\e257" +} + +.glyphicon-menu-right:before { + content: "\e258" +} + +.glyphicon-menu-down:before { + content: "\e259" +} + +.glyphicon-menu-up:before { + content: "\e260" +} + +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} + +:after, +:before { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} + +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0) +} + +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333; + background-color: #fff +} + +button, +input, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit +} + +a { + color: #337ab7; + text-decoration: none +} + +a:focus, +a:hover { + color: #23527c; + text-decoration: underline +} + +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +figure { + margin: 0 +} + +img { + vertical-align: middle +} + +.carousel-inner>.item>a>img, +.carousel-inner>.item>img, +.img-responsive, +.thumbnail a>img, +.thumbnail>img { + display: block; + max-width: 100%; + height: auto +} + +.img-rounded { + border-radius: 6px +} + +.img-thumbnail { + display: inline-block; + max-width: 100%; + height: auto; + padding: 4px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out +} + +.img-circle { + border-radius: 50% +} + +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eee +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0 +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto +} + +[role=button] { + cursor: pointer +} + +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit +} + +.h1 .small, +.h1 small, +.h2 .small, +.h2 small, +.h3 .small, +.h3 small, +.h4 .small, +.h4 small, +.h5 .small, +.h5 small, +.h6 .small, +.h6 small, +h1 .small, +h1 small, +h2 .small, +h2 small, +h3 .small, +h3 small, +h4 .small, +h4 small, +h5 .small, +h5 small, +h6 .small, +h6 small { + font-weight: 400; + line-height: 1; + color: #777 +} + +.h1, +.h2, +.h3, +h1, +h2, +h3 { + margin-top: 20px; + margin-bottom: 10px +} + +.h1 .small, +.h1 small, +.h2 .small, +.h2 small, +.h3 .small, +.h3 small, +h1 .small, +h1 small, +h2 .small, +h2 small, +h3 .small, +h3 small { + font-size: 65% +} + +.h4, +.h5, +.h6, +h4, +h5, +h6 { + margin-top: 10px; + margin-bottom: 10px +} + +.h4 .small, +.h4 small, +.h5 .small, +.h5 small, +.h6 .small, +.h6 small, +h4 .small, +h4 small, +h5 .small, +h5 small, +h6 .small, +h6 small { + font-size: 75% +} + +.h1, +h1 { + font-size: 36px +} + +.h2, +h2 { + font-size: 30px +} + +.h3, +h3 { + font-size: 24px +} + +.h4, +h4 { + font-size: 18px +} + +.h5, +h5 { + font-size: 14px +} + +.h6, +h6 { + font-size: 12px +} + +p { + margin: 0 0 10px +} + +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4 +} + +@media (min-width: 768px) { + .lead { + font-size: 21px + } +} + +.small, +small { + font-size: 85% +} + +.mark, +mark { + padding: .2em; + background-color: #fcf8e3 +} + +.text-left { + text-align: left +} + +.text-right { + text-align: right +} + +.text-center { + text-align: center +} + +.text-justify { + text-align: justify +} + +.text-nowrap { + white-space: nowrap +} + +.text-lowercase { + text-transform: lowercase +} + +.text-uppercase { + text-transform: uppercase +} + +.text-capitalize { + text-transform: capitalize +} + +.text-muted { + color: #777 +} + +.text-primary { + color: #337ab7 +} + +a.text-primary:hover { + color: #286090 +} + +.text-success { + color: #3c763d +} + +a.text-success:hover { + color: #2b542c +} + +.text-info { + color: #31708f +} + +a.text-info:hover { + color: #245269 +} + +.text-warning { + color: #8a6d3b +} + +a.text-warning:hover { + color: #66512c +} + +.text-danger { + color: #a94442 +} + +a.text-danger:hover { + color: #843534 +} + +.bg-primary { + color: #fff; + background-color: #337ab7 +} + +a.bg-primary:hover { + background-color: #286090 +} + +.bg-success { + background-color: #dff0d8 +} + +a.bg-success:hover { + background-color: #c1e2b3 +} + +.bg-info { + background-color: #d9edf7 +} + +a.bg-info:hover { + background-color: #afd9ee +} + +.bg-warning { + background-color: #fcf8e3 +} + +a.bg-warning:hover { + background-color: #f7ecb5 +} + +.bg-danger { + background-color: #f2dede +} + +a.bg-danger:hover { + background-color: #e4b9b9 +} + +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eee +} + +ol, +ul { + margin-top: 0; + margin-bottom: 10px +} + +ol ol, +ol ul, +ul ol, +ul ul { + margin-bottom: 0 +} + +.list-unstyled { + padding-left: 0; + list-style: none +} + +.list-inline { + padding-left: 0; + margin-left: -5px; + list-style: none +} + +.list-inline>li { + display: inline-block; + padding-right: 5px; + padding-left: 5px +} + +dl { + margin-top: 0; + margin-bottom: 20px +} + +dd, +dt { + line-height: 1.42857143 +} + +dt { + font-weight: 700 +} + +dd { + margin-left: 0 +} + +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap + } + .dl-horizontal dd { + margin-left: 180px + } +} + +abbr[data-original-title], +abbr[title] { + cursor: help; + border-bottom: 1px dotted #777 +} + +.initialism { + font-size: 90%; + text-transform: uppercase +} + +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eee +} + +blockquote ol:last-child, +blockquote p:last-child, +blockquote ul:last-child { + margin-bottom: 0 +} + +blockquote .small, +blockquote footer, +blockquote small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777 +} + +blockquote .small:before, +blockquote footer:before, +blockquote small:before { + content: '\2014 \00A0' +} + +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eee; + border-left: 0 +} + +.blockquote-reverse .small:before, +.blockquote-reverse footer:before, +.blockquote-reverse small:before, +blockquote.pull-right .small:before, +blockquote.pull-right footer:before, +blockquote.pull-right small:before { + content: '' +} + +.blockquote-reverse .small:after, +.blockquote-reverse footer:after, +.blockquote-reverse small:after, +blockquote.pull-right .small:after, +blockquote.pull-right footer:after, +blockquote.pull-right small:after { + content: '\00A0 \2014' +} + +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143 +} + +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px +} + +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25) +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; + -webkit-box-shadow: none; + box-shadow: none +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + color: #333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px +} + +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0 +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll +} + +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto +} + +@media (min-width: 768px) { + .container { + width: 750px + } +} + +@media (min-width: 992px) { + .container { + width: 970px + } +} + +@media (min-width: 1200px) { + .container { + width: 1170px + } +} + +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto +} + +.row { + margin-right: -15px; + margin-left: -15px +} + +.col-lg-1, +.col-lg-10, +.col-lg-11, +.col-lg-12, +.col-lg-2, +.col-lg-3, +.col-lg-4, +.col-lg-5, +.col-lg-6, +.col-lg-7, +.col-lg-8, +.col-lg-9, +.col-md-1, +.col-md-10, +.col-md-11, +.col-md-12, +.col-md-2, +.col-md-3, +.col-md-4, +.col-md-5, +.col-md-6, +.col-md-7, +.col-md-8, +.col-md-9, +.col-sm-1, +.col-sm-10, +.col-sm-11, +.col-sm-12, +.col-sm-2, +.col-sm-3, +.col-sm-4, +.col-sm-5, +.col-sm-6, +.col-sm-7, +.col-sm-8, +.col-sm-9, +.col-xs-1, +.col-xs-10, +.col-xs-11, +.col-xs-12, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px +} + +.col-xs-1, +.col-xs-10, +.col-xs-11, +.col-xs-12, +.col-xs-2, +.col-xs-3, +.col-xs-4, +.col-xs-5, +.col-xs-6, +.col-xs-7, +.col-xs-8, +.col-xs-9 { + float: left +} + +.col-xs-12 { + width: 100% +} + +.col-xs-11 { + width: 91.66666667% +} + +.col-xs-10 { + width: 83.33333333% +} + +.col-xs-9 { + width: 75% +} + +.col-xs-8 { + width: 66.66666667% +} + +.col-xs-7 { + width: 58.33333333% +} + +.col-xs-6 { + width: 50% +} + +.col-xs-5 { + width: 41.66666667% +} + +.col-xs-4 { + width: 33.33333333% +} + +.col-xs-3 { + width: 25% +} + +.col-xs-2 { + width: 16.66666667% +} + +.col-xs-1 { + width: 8.33333333% +} + +.col-xs-pull-12 { + right: 100% +} + +.col-xs-pull-11 { + right: 91.66666667% +} + +.col-xs-pull-10 { + right: 83.33333333% +} + +.col-xs-pull-9 { + right: 75% +} + +.col-xs-pull-8 { + right: 66.66666667% +} + +.col-xs-pull-7 { + right: 58.33333333% +} + +.col-xs-pull-6 { + right: 50% +} + +.col-xs-pull-5 { + right: 41.66666667% +} + +.col-xs-pull-4 { + right: 33.33333333% +} + +.col-xs-pull-3 { + right: 25% +} + +.col-xs-pull-2 { + right: 16.66666667% +} + +.col-xs-pull-1 { + right: 8.33333333% +} + +.col-xs-pull-0 { + right: auto +} + +.col-xs-push-12 { + left: 100% +} + +.col-xs-push-11 { + left: 91.66666667% +} + +.col-xs-push-10 { + left: 83.33333333% +} + +.col-xs-push-9 { + left: 75% +} + +.col-xs-push-8 { + left: 66.66666667% +} + +.col-xs-push-7 { + left: 58.33333333% +} + +.col-xs-push-6 { + left: 50% +} + +.col-xs-push-5 { + left: 41.66666667% +} + +.col-xs-push-4 { + left: 33.33333333% +} + +.col-xs-push-3 { + left: 25% +} + +.col-xs-push-2 { + left: 16.66666667% +} + +.col-xs-push-1 { + left: 8.33333333% +} + +.col-xs-push-0 { + left: auto +} + +.col-xs-offset-12 { + margin-left: 100% +} + +.col-xs-offset-11 { + margin-left: 91.66666667% +} + +.col-xs-offset-10 { + margin-left: 83.33333333% +} + +.col-xs-offset-9 { + margin-left: 75% +} + +.col-xs-offset-8 { + margin-left: 66.66666667% +} + +.col-xs-offset-7 { + margin-left: 58.33333333% +} + +.col-xs-offset-6 { + margin-left: 50% +} + +.col-xs-offset-5 { + margin-left: 41.66666667% +} + +.col-xs-offset-4 { + margin-left: 33.33333333% +} + +.col-xs-offset-3 { + margin-left: 25% +} + +.col-xs-offset-2 { + margin-left: 16.66666667% +} + +.col-xs-offset-1 { + margin-left: 8.33333333% +} + +.col-xs-offset-0 { + margin-left: 0 +} + +@media (min-width: 768px) { + .col-sm-1, + .col-sm-10, + .col-sm-11, + .col-sm-12, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9 { + float: left + } + .col-sm-12 { + width: 100% + } + .col-sm-11 { + width: 91.66666667% + } + .col-sm-10 { + width: 83.33333333% + } + .col-sm-9 { + width: 75% + } + .col-sm-8 { + width: 66.66666667% + } + .col-sm-7 { + width: 58.33333333% + } + .col-sm-6 { + width: 50% + } + .col-sm-5 { + width: 41.66666667% + } + .col-sm-4 { + width: 33.33333333% + } + .col-sm-3 { + width: 25% + } + .col-sm-2 { + width: 16.66666667% + } + .col-sm-1 { + width: 8.33333333% + } + .col-sm-pull-12 { + right: 100% + } + .col-sm-pull-11 { + right: 91.66666667% + } + .col-sm-pull-10 { + right: 83.33333333% + } + .col-sm-pull-9 { + right: 75% + } + .col-sm-pull-8 { + right: 66.66666667% + } + .col-sm-pull-7 { + right: 58.33333333% + } + .col-sm-pull-6 { + right: 50% + } + .col-sm-pull-5 { + right: 41.66666667% + } + .col-sm-pull-4 { + right: 33.33333333% + } + .col-sm-pull-3 { + right: 25% + } + .col-sm-pull-2 { + right: 16.66666667% + } + .col-sm-pull-1 { + right: 8.33333333% + } + .col-sm-pull-0 { + right: auto + } + .col-sm-push-12 { + left: 100% + } + .col-sm-push-11 { + left: 91.66666667% + } + .col-sm-push-10 { + left: 83.33333333% + } + .col-sm-push-9 { + left: 75% + } + .col-sm-push-8 { + left: 66.66666667% + } + .col-sm-push-7 { + left: 58.33333333% + } + .col-sm-push-6 { + left: 50% + } + .col-sm-push-5 { + left: 41.66666667% + } + .col-sm-push-4 { + left: 33.33333333% + } + .col-sm-push-3 { + left: 25% + } + .col-sm-push-2 { + left: 16.66666667% + } + .col-sm-push-1 { + left: 8.33333333% + } + .col-sm-push-0 { + left: auto + } + .col-sm-offset-12 { + margin-left: 100% + } + .col-sm-offset-11 { + margin-left: 91.66666667% + } + .col-sm-offset-10 { + margin-left: 83.33333333% + } + .col-sm-offset-9 { + margin-left: 75% + } + .col-sm-offset-8 { + margin-left: 66.66666667% + } + .col-sm-offset-7 { + margin-left: 58.33333333% + } + .col-sm-offset-6 { + margin-left: 50% + } + .col-sm-offset-5 { + margin-left: 41.66666667% + } + .col-sm-offset-4 { + margin-left: 33.33333333% + } + .col-sm-offset-3 { + margin-left: 25% + } + .col-sm-offset-2 { + margin-left: 16.66666667% + } + .col-sm-offset-1 { + margin-left: 8.33333333% + } + .col-sm-offset-0 { + margin-left: 0 + } +} + +@media (min-width: 992px) { + .col-md-1, + .col-md-10, + .col-md-11, + .col-md-12, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9 { + float: left + } + .col-md-12 { + width: 100% + } + .col-md-11 { + width: 91.66666667% + } + .col-md-10 { + width: 83.33333333% + } + .col-md-9 { + width: 75% + } + .col-md-8 { + width: 66.66666667% + } + .col-md-7 { + width: 58.33333333% + } + .col-md-6 { + width: 50% + } + .col-md-5 { + width: 41.66666667% + } + .col-md-4 { + width: 33.33333333% + } + .col-md-3 { + width: 25% + } + .col-md-2 { + width: 16.66666667% + } + .col-md-1 { + width: 8.33333333% + } + .col-md-pull-12 { + right: 100% + } + .col-md-pull-11 { + right: 91.66666667% + } + .col-md-pull-10 { + right: 83.33333333% + } + .col-md-pull-9 { + right: 75% + } + .col-md-pull-8 { + right: 66.66666667% + } + .col-md-pull-7 { + right: 58.33333333% + } + .col-md-pull-6 { + right: 50% + } + .col-md-pull-5 { + right: 41.66666667% + } + .col-md-pull-4 { + right: 33.33333333% + } + .col-md-pull-3 { + right: 25% + } + .col-md-pull-2 { + right: 16.66666667% + } + .col-md-pull-1 { + right: 8.33333333% + } + .col-md-pull-0 { + right: auto + } + .col-md-push-12 { + left: 100% + } + .col-md-push-11 { + left: 91.66666667% + } + .col-md-push-10 { + left: 83.33333333% + } + .col-md-push-9 { + left: 75% + } + .col-md-push-8 { + left: 66.66666667% + } + .col-md-push-7 { + left: 58.33333333% + } + .col-md-push-6 { + left: 50% + } + .col-md-push-5 { + left: 41.66666667% + } + .col-md-push-4 { + left: 33.33333333% + } + .col-md-push-3 { + left: 25% + } + .col-md-push-2 { + left: 16.66666667% + } + .col-md-push-1 { + left: 8.33333333% + } + .col-md-push-0 { + left: auto + } + .col-md-offset-12 { + margin-left: 100% + } + .col-md-offset-11 { + margin-left: 91.66666667% + } + .col-md-offset-10 { + margin-left: 83.33333333% + } + .col-md-offset-9 { + margin-left: 75% + } + .col-md-offset-8 { + margin-left: 66.66666667% + } + .col-md-offset-7 { + margin-left: 58.33333333% + } + .col-md-offset-6 { + margin-left: 50% + } + .col-md-offset-5 { + margin-left: 41.66666667% + } + .col-md-offset-4 { + margin-left: 33.33333333% + } + .col-md-offset-3 { + margin-left: 25% + } + .col-md-offset-2 { + margin-left: 16.66666667% + } + .col-md-offset-1 { + margin-left: 8.33333333% + } + .col-md-offset-0 { + margin-left: 0 + } +} + +@media (min-width: 1200px) { + .col-lg-1, + .col-lg-10, + .col-lg-11, + .col-lg-12, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9 { + float: left + } + .col-lg-12 { + width: 100% + } + .col-lg-11 { + width: 91.66666667% + } + .col-lg-10 { + width: 83.33333333% + } + .col-lg-9 { + width: 75% + } + .col-lg-8 { + width: 66.66666667% + } + .col-lg-7 { + width: 58.33333333% + } + .col-lg-6 { + width: 50% + } + .col-lg-5 { + width: 41.66666667% + } + .col-lg-4 { + width: 33.33333333% + } + .col-lg-3 { + width: 25% + } + .col-lg-2 { + width: 16.66666667% + } + .col-lg-1 { + width: 8.33333333% + } + .col-lg-pull-12 { + right: 100% + } + .col-lg-pull-11 { + right: 91.66666667% + } + .col-lg-pull-10 { + right: 83.33333333% + } + .col-lg-pull-9 { + right: 75% + } + .col-lg-pull-8 { + right: 66.66666667% + } + .col-lg-pull-7 { + right: 58.33333333% + } + .col-lg-pull-6 { + right: 50% + } + .col-lg-pull-5 { + right: 41.66666667% + } + .col-lg-pull-4 { + right: 33.33333333% + } + .col-lg-pull-3 { + right: 25% + } + .col-lg-pull-2 { + right: 16.66666667% + } + .col-lg-pull-1 { + right: 8.33333333% + } + .col-lg-pull-0 { + right: auto + } + .col-lg-push-12 { + left: 100% + } + .col-lg-push-11 { + left: 91.66666667% + } + .col-lg-push-10 { + left: 83.33333333% + } + .col-lg-push-9 { + left: 75% + } + .col-lg-push-8 { + left: 66.66666667% + } + .col-lg-push-7 { + left: 58.33333333% + } + .col-lg-push-6 { + left: 50% + } + .col-lg-push-5 { + left: 41.66666667% + } + .col-lg-push-4 { + left: 33.33333333% + } + .col-lg-push-3 { + left: 25% + } + .col-lg-push-2 { + left: 16.66666667% + } + .col-lg-push-1 { + left: 8.33333333% + } + .col-lg-push-0 { + left: auto + } + .col-lg-offset-12 { + margin-left: 100% + } + .col-lg-offset-11 { + margin-left: 91.66666667% + } + .col-lg-offset-10 { + margin-left: 83.33333333% + } + .col-lg-offset-9 { + margin-left: 75% + } + .col-lg-offset-8 { + margin-left: 66.66666667% + } + .col-lg-offset-7 { + margin-left: 58.33333333% + } + .col-lg-offset-6 { + margin-left: 50% + } + .col-lg-offset-5 { + margin-left: 41.66666667% + } + .col-lg-offset-4 { + margin-left: 33.33333333% + } + .col-lg-offset-3 { + margin-left: 25% + } + .col-lg-offset-2 { + margin-left: 16.66666667% + } + .col-lg-offset-1 { + margin-left: 8.33333333% + } + .col-lg-offset-0 { + margin-left: 0 + } +} + +table { + background-color: transparent +} + +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777; + text-align: left +} + +th { + text-align: left +} + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px +} + +.table>tbody>tr>td, +.table>tbody>tr>th, +.table>tfoot>tr>td, +.table>tfoot>tr>th, +.table>thead>tr>td, +.table>thead>tr>th { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #ddd +} + +.table>thead>tr>th { + vertical-align: bottom; + border-bottom: 2px solid #ddd +} + +.table>caption+thead>tr:first-child>td, +.table>caption+thead>tr:first-child>th, +.table>colgroup+thead>tr:first-child>td, +.table>colgroup+thead>tr:first-child>th, +.table>thead:first-child>tr:first-child>td, +.table>thead:first-child>tr:first-child>th { + border-top: 0 +} + +.table>tbody+tbody { + border-top: 2px solid #ddd +} + +.table .table { + background-color: #fff +} + +.table-condensed>tbody>tr>td, +.table-condensed>tbody>tr>th, +.table-condensed>tfoot>tr>td, +.table-condensed>tfoot>tr>th, +.table-condensed>thead>tr>td, +.table-condensed>thead>tr>th { + padding: 5px +} + +.table-bordered { + border: 1px solid #ddd +} + +.table-bordered>tbody>tr>td, +.table-bordered>tbody>tr>th, +.table-bordered>tfoot>tr>td, +.table-bordered>tfoot>tr>th, +.table-bordered>thead>tr>td, +.table-bordered>thead>tr>th { + border: 1px solid #ddd +} + +.table-bordered>thead>tr>td, +.table-bordered>thead>tr>th { + border-bottom-width: 2px +} + +.table-striped>tbody>tr:nth-of-type(odd) { + background-color: #f9f9f9 +} + +.table-hover>tbody>tr:hover { + background-color: #f5f5f5 +} + +table col[class*=col-] { + position: static; + display: table-column; + float: none +} + +table td[class*=col-], +table th[class*=col-] { + position: static; + display: table-cell; + float: none +} + +.table>tbody>tr.active>td, +.table>tbody>tr.active>th, +.table>tbody>tr>td.active, +.table>tbody>tr>th.active, +.table>tfoot>tr.active>td, +.table>tfoot>tr.active>th, +.table>tfoot>tr>td.active, +.table>tfoot>tr>th.active, +.table>thead>tr.active>td, +.table>thead>tr.active>th, +.table>thead>tr>td.active, +.table>thead>tr>th.active { + background-color: #f5f5f5 +} + +.table-hover>tbody>tr.active:hover>td, +.table-hover>tbody>tr.active:hover>th, +.table-hover>tbody>tr:hover>.active, +.table-hover>tbody>tr>td.active:hover, +.table-hover>tbody>tr>th.active:hover { + background-color: #e8e8e8 +} + +.table>tbody>tr.success>td, +.table>tbody>tr.success>th, +.table>tbody>tr>td.success, +.table>tbody>tr>th.success, +.table>tfoot>tr.success>td, +.table>tfoot>tr.success>th, +.table>tfoot>tr>td.success, +.table>tfoot>tr>th.success, +.table>thead>tr.success>td, +.table>thead>tr.success>th, +.table>thead>tr>td.success, +.table>thead>tr>th.success { + background-color: #dff0d8 +} + +.table-hover>tbody>tr.success:hover>td, +.table-hover>tbody>tr.success:hover>th, +.table-hover>tbody>tr:hover>.success, +.table-hover>tbody>tr>td.success:hover, +.table-hover>tbody>tr>th.success:hover { + background-color: #d0e9c6 +} + +.table>tbody>tr.info>td, +.table>tbody>tr.info>th, +.table>tbody>tr>td.info, +.table>tbody>tr>th.info, +.table>tfoot>tr.info>td, +.table>tfoot>tr.info>th, +.table>tfoot>tr>td.info, +.table>tfoot>tr>th.info, +.table>thead>tr.info>td, +.table>thead>tr.info>th, +.table>thead>tr>td.info, +.table>thead>tr>th.info { + background-color: #d9edf7 +} + +.table-hover>tbody>tr.info:hover>td, +.table-hover>tbody>tr.info:hover>th, +.table-hover>tbody>tr:hover>.info, +.table-hover>tbody>tr>td.info:hover, +.table-hover>tbody>tr>th.info:hover { + background-color: #c4e3f3 +} + +.table>tbody>tr.warning>td, +.table>tbody>tr.warning>th, +.table>tbody>tr>td.warning, +.table>tbody>tr>th.warning, +.table>tfoot>tr.warning>td, +.table>tfoot>tr.warning>th, +.table>tfoot>tr>td.warning, +.table>tfoot>tr>th.warning, +.table>thead>tr.warning>td, +.table>thead>tr.warning>th, +.table>thead>tr>td.warning, +.table>thead>tr>th.warning { + background-color: #fcf8e3 +} + +.table-hover>tbody>tr.warning:hover>td, +.table-hover>tbody>tr.warning:hover>th, +.table-hover>tbody>tr:hover>.warning, +.table-hover>tbody>tr>td.warning:hover, +.table-hover>tbody>tr>th.warning:hover { + background-color: #faf2cc +} + +.table>tbody>tr.danger>td, +.table>tbody>tr.danger>th, +.table>tbody>tr>td.danger, +.table>tbody>tr>th.danger, +.table>tfoot>tr.danger>td, +.table>tfoot>tr.danger>th, +.table>tfoot>tr>td.danger, +.table>tfoot>tr>th.danger, +.table>thead>tr.danger>td, +.table>thead>tr.danger>th, +.table>thead>tr>td.danger, +.table>thead>tr>th.danger { + background-color: #f2dede +} + +.table-hover>tbody>tr.danger:hover>td, +.table-hover>tbody>tr.danger:hover>th, +.table-hover>tbody>tr:hover>.danger, +.table-hover>tbody>tr>td.danger:hover, +.table-hover>tbody>tr>th.danger:hover { + background-color: #ebcccc +} + +.table-responsive { + min-height: .01%; + overflow-x: auto +} + +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd + } + .table-responsive>.table { + margin-bottom: 0 + } + .table-responsive>.table>tbody>tr>td, + .table-responsive>.table>tbody>tr>th, + .table-responsive>.table>tfoot>tr>td, + .table-responsive>.table>tfoot>tr>th, + .table-responsive>.table>thead>tr>td, + .table-responsive>.table>thead>tr>th { + white-space: nowrap + } + .table-responsive>.table-bordered { + border: 0 + } + .table-responsive>.table-bordered>tbody>tr>td:first-child, + .table-responsive>.table-bordered>tbody>tr>th:first-child, + .table-responsive>.table-bordered>tfoot>tr>td:first-child, + .table-responsive>.table-bordered>tfoot>tr>th:first-child, + .table-responsive>.table-bordered>thead>tr>td:first-child, + .table-responsive>.table-bordered>thead>tr>th:first-child { + border-left: 0 + } + .table-responsive>.table-bordered>tbody>tr>td:last-child, + .table-responsive>.table-bordered>tbody>tr>th:last-child, + .table-responsive>.table-bordered>tfoot>tr>td:last-child, + .table-responsive>.table-bordered>tfoot>tr>th:last-child, + .table-responsive>.table-bordered>thead>tr>td:last-child, + .table-responsive>.table-bordered>thead>tr>th:last-child { + border-right: 0 + } + .table-responsive>.table-bordered>tbody>tr:last-child>td, + .table-responsive>.table-bordered>tbody>tr:last-child>th, + .table-responsive>.table-bordered>tfoot>tr:last-child>td, + .table-responsive>.table-bordered>tfoot>tr:last-child>th { + border-bottom: 0 + } +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0 +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333; + border: 0; + border-bottom: 1px solid #e5e5e5 +} + +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: 700 +} + +input[type=search] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} + +input[type=checkbox], +input[type=radio] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal +} + +input[type=file] { + display: block +} + +input[type=range] { + display: block; + width: 100% +} + +select[multiple], +select[size] { + height: auto +} + +input[type=file]:focus, +input[type=checkbox]:focus, +input[type=radio]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #555 +} + +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s +} + +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6) +} + +.form-control::-moz-placeholder { + color: #999; + opacity: 1 +} + +.form-control:-ms-input-placeholder { + color: #999 +} + +.form-control::-webkit-input-placeholder { + color: #999 +} + +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + background-color: #eee; + opacity: 1 +} + +.form-control[disabled], +fieldset[disabled] .form-control { + cursor: not-allowed +} + +textarea.form-control { + height: auto +} + +input[type=search] { + -webkit-appearance: none +} + +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type=date], + input[type=time], + input[type=datetime-local], + input[type=month] { + line-height: 34px + } + .input-group-sm input[type=date], + .input-group-sm input[type=time], + .input-group-sm input[type=datetime-local], + .input-group-sm input[type=month], + input[type=date].input-sm, + input[type=time].input-sm, + input[type=datetime-local].input-sm, + input[type=month].input-sm { + line-height: 30px + } + .input-group-lg input[type=date], + .input-group-lg input[type=time], + .input-group-lg input[type=datetime-local], + .input-group-lg input[type=month], + input[type=date].input-lg, + input[type=time].input-lg, + input[type=datetime-local].input-lg, + input[type=month].input-lg { + line-height: 46px + } +} + +.form-group { + margin-bottom: 15px +} + +.checkbox, +.radio { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px +} + +.checkbox label, +.radio label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + cursor: pointer +} + +.checkbox input[type=checkbox], +.checkbox-inline input[type=checkbox], +.radio input[type=radio], +.radio-inline input[type=radio] { + position: absolute; + margin-top: 4px \9; + margin-left: -20px +} + +.checkbox+.checkbox, +.radio+.radio { + margin-top: -5px +} + +.checkbox-inline, +.radio-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: 400; + vertical-align: middle; + cursor: pointer +} + +.checkbox-inline+.checkbox-inline, +.radio-inline+.radio-inline { + margin-top: 0; + margin-left: 10px +} + +fieldset[disabled] input[type=checkbox], +fieldset[disabled] input[type=radio], +input[type=checkbox].disabled, +input[type=checkbox][disabled], +input[type=radio].disabled, +input[type=radio][disabled] { + cursor: not-allowed +} + +.checkbox-inline.disabled, +.radio-inline.disabled, +fieldset[disabled] .checkbox-inline, +fieldset[disabled] .radio-inline { + cursor: not-allowed +} + +.checkbox.disabled label, +.radio.disabled label, +fieldset[disabled] .checkbox label, +fieldset[disabled] .radio label { + cursor: not-allowed +} + +.form-control-static { + min-height: 34px; + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0 +} + +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-right: 0; + padding-left: 0 +} + +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px +} + +select.input-sm { + height: 30px; + line-height: 30px +} + +select[multiple].input-sm, +textarea.input-sm { + height: auto +} + +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px +} + +select.form-group-sm .form-control { + height: 30px; + line-height: 30px +} + +select[multiple].form-group-sm .form-control, +textarea.form-group-sm .form-control { + height: auto +} + +.form-group-sm .form-control-static { + height: 30px; + min-height: 32px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5 +} + +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px +} + +select.input-lg { + height: 46px; + line-height: 46px +} + +select[multiple].input-lg, +textarea.input-lg { + height: auto +} + +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px +} + +select.form-group-lg .form-control { + height: 46px; + line-height: 46px +} + +select[multiple].form-group-lg .form-control, +textarea.form-group-lg .form-control { + height: auto +} + +.form-group-lg .form-control-static { + height: 46px; + min-height: 38px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333 +} + +.has-feedback { + position: relative +} + +.has-feedback .form-control { + padding-right: 42.5px +} + +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none +} + +.input-lg+.form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px +} + +.input-sm+.form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px +} + +.has-success .checkbox, +.has-success .checkbox-inline, +.has-success .control-label, +.has-success .help-block, +.has-success .radio, +.has-success .radio-inline, +.has-success.checkbox label, +.has-success.checkbox-inline label, +.has-success.radio label, +.has-success.radio-inline label { + color: #3c763d +} + +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) +} + +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168 +} + +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d +} + +.has-success .form-control-feedback { + color: #3c763d +} + +.has-warning .checkbox, +.has-warning .checkbox-inline, +.has-warning .control-label, +.has-warning .help-block, +.has-warning .radio, +.has-warning .radio-inline, +.has-warning.checkbox label, +.has-warning.checkbox-inline label, +.has-warning.radio label, +.has-warning.radio-inline label { + color: #8a6d3b +} + +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) +} + +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b +} + +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b +} + +.has-warning .form-control-feedback { + color: #8a6d3b +} + +.has-error .checkbox, +.has-error .checkbox-inline, +.has-error .control-label, +.has-error .help-block, +.has-error .radio, +.has-error .radio-inline, +.has-error.checkbox label, +.has-error.checkbox-inline label, +.has-error.radio label, +.has-error.radio-inline label { + color: #a94442 +} + +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075) +} + +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483 +} + +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442 +} + +.has-error .form-control-feedback { + color: #a94442 +} + +.has-feedback label~.form-control-feedback { + top: 25px +} + +.has-feedback label.sr-only~.form-control-feedback { + top: 0 +} + +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373 +} + +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + .form-inline .form-control-static { + display: inline-block + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle + } + .form-inline .input-group .form-control, + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn { + width: auto + } + .form-inline .input-group>.form-control { + width: 100% + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle + } + .form-inline .checkbox, + .form-inline .radio { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } + .form-inline .checkbox label, + .form-inline .radio label { + padding-left: 0 + } + .form-inline .checkbox input[type=checkbox], + .form-inline .radio input[type=radio] { + position: relative; + margin-left: 0 + } + .form-inline .has-feedback .form-control-feedback { + top: 0 + } +} + +.form-horizontal .checkbox, +.form-horizontal .checkbox-inline, +.form-horizontal .radio, +.form-horizontal .radio-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0 +} + +.form-horizontal .checkbox, +.form-horizontal .radio { + min-height: 27px +} + +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px +} + +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right + } +} + +.form-horizontal .has-feedback .form-control-feedback { + right: 15px +} + +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.33px + } +} + +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px + } +} + +.btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: 400; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-image: none; + border: 1px solid transparent; + border-radius: 4px +} + +.btn.active.focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn:active:focus, +.btn:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +.btn.focus, +.btn:focus, +.btn:hover { + color: #333; + text-decoration: none +} + +.btn.active, +.btn:active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) +} + +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + pointer-events: none; + cursor: not-allowed; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; + opacity: .65 +} + +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc +} + +.btn-default.active, +.btn-default.focus, +.btn-default:active, +.btn-default:focus, +.btn-default:hover, +.open>.dropdown-toggle.btn-default { + color: #333; + background-color: #e6e6e6; + border-color: #adadad +} + +.btn-default.active, +.btn-default:active, +.open>.dropdown-toggle.btn-default { + background-image: none +} + +.btn-default.disabled, +.btn-default.disabled.active, +.btn-default.disabled.focus, +.btn-default.disabled:active, +.btn-default.disabled:focus, +.btn-default.disabled:hover, +.btn-default[disabled], +.btn-default[disabled].active, +.btn-default[disabled].focus, +.btn-default[disabled]:active, +.btn-default[disabled]:focus, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default, +fieldset[disabled] .btn-default.active, +fieldset[disabled] .btn-default.focus, +fieldset[disabled] .btn-default:active, +fieldset[disabled] .btn-default:focus, +fieldset[disabled] .btn-default:hover { + background-color: #fff; + border-color: #ccc +} + +.btn-default .badge { + color: #fff; + background-color: #333 +} + +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4 +} + +.btn-primary.active, +.btn-primary.focus, +.btn-primary:active, +.btn-primary:focus, +.btn-primary:hover, +.open>.dropdown-toggle.btn-primary { + color: #fff; + background-color: #286090; + border-color: #204d74 +} + +.btn-primary.active, +.btn-primary:active, +.open>.dropdown-toggle.btn-primary { + background-image: none +} + +.btn-primary.disabled, +.btn-primary.disabled.active, +.btn-primary.disabled.focus, +.btn-primary.disabled:active, +.btn-primary.disabled:focus, +.btn-primary.disabled:hover, +.btn-primary[disabled], +.btn-primary[disabled].active, +.btn-primary[disabled].focus, +.btn-primary[disabled]:active, +.btn-primary[disabled]:focus, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary, +fieldset[disabled] .btn-primary.active, +fieldset[disabled] .btn-primary.focus, +fieldset[disabled] .btn-primary:active, +fieldset[disabled] .btn-primary:focus, +fieldset[disabled] .btn-primary:hover { + background-color: #337ab7; + border-color: #2e6da4 +} + +.btn-primary .badge { + color: #337ab7; + background-color: #fff +} + +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c +} + +.btn-success.active, +.btn-success.focus, +.btn-success:active, +.btn-success:focus, +.btn-success:hover, +.open>.dropdown-toggle.btn-success { + color: #fff; + background-color: #449d44; + border-color: #398439 +} + +.btn-success.active, +.btn-success:active, +.open>.dropdown-toggle.btn-success { + background-image: none +} + +.btn-success.disabled, +.btn-success.disabled.active, +.btn-success.disabled.focus, +.btn-success.disabled:active, +.btn-success.disabled:focus, +.btn-success.disabled:hover, +.btn-success[disabled], +.btn-success[disabled].active, +.btn-success[disabled].focus, +.btn-success[disabled]:active, +.btn-success[disabled]:focus, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success, +fieldset[disabled] .btn-success.active, +fieldset[disabled] .btn-success.focus, +fieldset[disabled] .btn-success:active, +fieldset[disabled] .btn-success:focus, +fieldset[disabled] .btn-success:hover { + background-color: #5cb85c; + border-color: #4cae4c +} + +.btn-success .badge { + color: #5cb85c; + background-color: #fff +} + +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da +} + +.btn-info.active, +.btn-info.focus, +.btn-info:active, +.btn-info:focus, +.btn-info:hover, +.open>.dropdown-toggle.btn-info { + color: #fff; + background-color: #31b0d5; + border-color: #269abc +} + +.btn-info.active, +.btn-info:active, +.open>.dropdown-toggle.btn-info { + background-image: none +} + +.btn-info.disabled, +.btn-info.disabled.active, +.btn-info.disabled.focus, +.btn-info.disabled:active, +.btn-info.disabled:focus, +.btn-info.disabled:hover, +.btn-info[disabled], +.btn-info[disabled].active, +.btn-info[disabled].focus, +.btn-info[disabled]:active, +.btn-info[disabled]:focus, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info, +fieldset[disabled] .btn-info.active, +fieldset[disabled] .btn-info.focus, +fieldset[disabled] .btn-info:active, +fieldset[disabled] .btn-info:focus, +fieldset[disabled] .btn-info:hover { + background-color: #5bc0de; + border-color: #46b8da +} + +.btn-info .badge { + color: #5bc0de; + background-color: #fff +} + +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236 +} + +.btn-warning.active, +.btn-warning.focus, +.btn-warning:active, +.btn-warning:focus, +.btn-warning:hover, +.open>.dropdown-toggle.btn-warning { + color: #fff; + background-color: #ec971f; + border-color: #d58512 +} + +.btn-warning.active, +.btn-warning:active, +.open>.dropdown-toggle.btn-warning { + background-image: none +} + +.btn-warning.disabled, +.btn-warning.disabled.active, +.btn-warning.disabled.focus, +.btn-warning.disabled:active, +.btn-warning.disabled:focus, +.btn-warning.disabled:hover, +.btn-warning[disabled], +.btn-warning[disabled].active, +.btn-warning[disabled].focus, +.btn-warning[disabled]:active, +.btn-warning[disabled]:focus, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning, +fieldset[disabled] .btn-warning.active, +fieldset[disabled] .btn-warning.focus, +fieldset[disabled] .btn-warning:active, +fieldset[disabled] .btn-warning:focus, +fieldset[disabled] .btn-warning:hover { + background-color: #f0ad4e; + border-color: #eea236 +} + +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff +} + +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a +} + +.btn-danger.active, +.btn-danger.focus, +.btn-danger:active, +.btn-danger:focus, +.btn-danger:hover, +.open>.dropdown-toggle.btn-danger { + color: #fff; + background-color: #c9302c; + border-color: #ac2925 +} + +.btn-danger.active, +.btn-danger:active, +.open>.dropdown-toggle.btn-danger { + background-image: none +} + +.btn-danger.disabled, +.btn-danger.disabled.active, +.btn-danger.disabled.focus, +.btn-danger.disabled:active, +.btn-danger.disabled:focus, +.btn-danger.disabled:hover, +.btn-danger[disabled], +.btn-danger[disabled].active, +.btn-danger[disabled].focus, +.btn-danger[disabled]:active, +.btn-danger[disabled]:focus, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger, +fieldset[disabled] .btn-danger.active, +fieldset[disabled] .btn-danger.focus, +fieldset[disabled] .btn-danger:active, +fieldset[disabled] .btn-danger:focus, +fieldset[disabled] .btn-danger:hover { + background-color: #d9534f; + border-color: #d43f3a +} + +.btn-danger .badge { + color: #d9534f; + background-color: #fff +} + +.btn-link { + font-weight: 400; + color: #337ab7; + border-radius: 0 +} + +.btn-link, +.btn-link.active, +.btn-link:active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none +} + +.btn-link, +.btn-link:active, +.btn-link:focus, +.btn-link:hover { + border-color: transparent +} + +.btn-link:focus, +.btn-link:hover { + color: #23527c; + text-decoration: underline; + background-color: transparent +} + +.btn-link[disabled]:focus, +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:focus, +fieldset[disabled] .btn-link:hover { + color: #777; + text-decoration: none +} + +.btn-group-lg>.btn, +.btn-lg { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px +} + +.btn-group-sm>.btn, +.btn-sm { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px +} + +.btn-group-xs>.btn, +.btn-xs { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px +} + +.btn-block { + display: block; + width: 100% +} + +.btn-block+.btn-block { + margin-top: 5px +} + +input[type=button].btn-block, +input[type=reset].btn-block, +input[type=submit].btn-block { + width: 100% +} + +.fade { + opacity: 0; + -webkit-transition: opacity .15s linear; + -o-transition: opacity .15s linear; + transition: opacity .15s linear +} + +.fade.in { + opacity: 1 +} + +.collapse { + display: none +} + +.collapse.in { + display: block +} + +tr.collapse.in { + display: table-row +} + +tbody.collapse.in { + display: table-row-group +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-timing-function: ease; + -o-transition-timing-function: ease; + transition-timing-function: ease; + -webkit-transition-duration: .35s; + -o-transition-duration: .35s; + transition-duration: .35s; + -webkit-transition-property: height, visibility; + -o-transition-property: height, visibility; + transition-property: height, visibility +} + +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-right: 4px solid transparent; + border-left: 4px solid transparent +} + +.dropdown, +.dropup { + position: relative +} + +.dropdown-toggle:focus { + outline: 0 +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); + box-shadow: 0 6px 12px rgba(0, 0, 0, .175) +} + +.dropdown-menu.pull-right { + right: 0; + left: auto +} + +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5 +} + +.dropdown-menu>li>a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: 400; + line-height: 1.42857143; + color: #333; + white-space: nowrap +} + +.dropdown-menu>li>a:focus, +.dropdown-menu>li>a:hover { + color: #262626; + text-decoration: none; + background-color: #f5f5f5 +} + +.dropdown-menu>.active>a, +.dropdown-menu>.active>a:focus, +.dropdown-menu>.active>a:hover { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0 +} + +.dropdown-menu>.disabled>a, +.dropdown-menu>.disabled>a:focus, +.dropdown-menu>.disabled>a:hover { + color: #777 +} + +.dropdown-menu>.disabled>a:focus, +.dropdown-menu>.disabled>a:hover { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid: DXImageTransform.Microsoft.gradient(enabled=false) +} + +.open>.dropdown-menu { + display: block +} + +.open>a { + outline: 0 +} + +.dropdown-menu-right { + right: 0; + left: auto +} + +.dropdown-menu-left { + right: auto; + left: 0 +} + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777; + white-space: nowrap +} + +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990 +} + +.pull-right>.dropdown-menu { + right: 0; + left: auto +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: ""; + border-top: 0; + border-bottom: 4px solid +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px +} + +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto + } + .navbar-right .dropdown-menu-left { + right: auto; + left: 0 + } +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle +} + +.btn-group-vertical>.btn, +.btn-group>.btn { + position: relative; + float: left +} + +.btn-group-vertical>.btn.active, +.btn-group-vertical>.btn:active, +.btn-group-vertical>.btn:focus, +.btn-group-vertical>.btn:hover, +.btn-group>.btn.active, +.btn-group>.btn:active, +.btn-group>.btn:focus, +.btn-group>.btn:hover { + z-index: 2 +} + +.btn-group .btn+.btn, +.btn-group .btn+.btn-group, +.btn-group .btn-group+.btn, +.btn-group .btn-group+.btn-group { + margin-left: -1px +} + +.btn-toolbar { + margin-left: -5px +} + +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left +} + +.btn-toolbar>.btn, +.btn-toolbar>.btn-group, +.btn-toolbar>.input-group { + margin-left: 5px +} + +.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0 +} + +.btn-group>.btn:first-child { + margin-left: 0 +} + +.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.btn-group>.btn:last-child:not(:first-child), +.btn-group>.dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group>.btn-group { + float: left +} + +.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { + border-radius: 0 +} + +.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, +.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0 +} + +.btn-group>.btn+.dropdown-toggle { + padding-right: 8px; + padding-left: 8px +} + +.btn-group>.btn-lg+.dropdown-toggle { + padding-right: 12px; + padding-left: 12px +} + +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) +} + +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none +} + +.btn .caret { + margin-left: 0 +} + +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0 +} + +.dropup .btn-lg .caret { + border-width: 0 5px 5px +} + +.btn-group-vertical>.btn, +.btn-group-vertical>.btn-group, +.btn-group-vertical>.btn-group>.btn { + display: block; + float: none; + width: 100%; + max-width: 100% +} + +.btn-group-vertical>.btn-group>.btn { + float: none +} + +.btn-group-vertical>.btn+.btn, +.btn-group-vertical>.btn+.btn-group, +.btn-group-vertical>.btn-group+.btn, +.btn-group-vertical>.btn-group+.btn-group { + margin-top: -1px; + margin-left: 0 +} + +.btn-group-vertical>.btn:not(:first-child):not(:last-child) { + border-radius: 0 +} + +.btn-group-vertical>.btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-left-radius: 4px +} + +.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { + border-radius: 0 +} + +.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, +.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate +} + +.btn-group-justified>.btn, +.btn-group-justified>.btn-group { + display: table-cell; + float: none; + width: 1% +} + +.btn-group-justified>.btn-group .btn { + width: 100% +} + +.btn-group-justified>.btn-group .dropdown-menu { + left: auto +} + +[data-toggle=buttons]>.btn input[type=checkbox], +[data-toggle=buttons]>.btn input[type=radio], +[data-toggle=buttons]>.btn-group>.btn input[type=checkbox], +[data-toggle=buttons]>.btn-group>.btn input[type=radio] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none +} + +.input-group { + position: relative; + display: table; + border-collapse: separate +} + +.input-group[class*=col-] { + float: none; + padding-right: 0; + padding-left: 0 +} + +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0 +} + +.input-group-lg>.form-control, +.input-group-lg>.input-group-addon, +.input-group-lg>.input-group-btn>.btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px +} + +select.input-group-lg>.form-control, +select.input-group-lg>.input-group-addon, +select.input-group-lg>.input-group-btn>.btn { + height: 46px; + line-height: 46px +} + +select[multiple].input-group-lg>.form-control, +select[multiple].input-group-lg>.input-group-addon, +select[multiple].input-group-lg>.input-group-btn>.btn, +textarea.input-group-lg>.form-control, +textarea.input-group-lg>.input-group-addon, +textarea.input-group-lg>.input-group-btn>.btn { + height: auto +} + +.input-group-sm>.form-control, +.input-group-sm>.input-group-addon, +.input-group-sm>.input-group-btn>.btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px +} + +select.input-group-sm>.form-control, +select.input-group-sm>.input-group-addon, +select.input-group-sm>.input-group-btn>.btn { + height: 30px; + line-height: 30px +} + +select[multiple].input-group-sm>.form-control, +select[multiple].input-group-sm>.input-group-addon, +select[multiple].input-group-sm>.input-group-btn>.btn, +textarea.input-group-sm>.form-control, +textarea.input-group-sm>.input-group-addon, +textarea.input-group-sm>.input-group-btn>.btn { + height: auto +} + +.input-group .form-control, +.input-group-addon, +.input-group-btn { + display: table-cell +} + +.input-group .form-control:not(:first-child):not(:last-child), +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child) { + border-radius: 0 +} + +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle +} + +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: 400; + line-height: 1; + color: #555; + text-align: center; + background-color: #eee; + border: 1px solid #ccc; + border-radius: 4px +} + +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px +} + +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px +} + +.input-group-addon input[type=checkbox], +.input-group-addon input[type=radio] { + margin-top: 0 +} + +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child>.btn, +.input-group-btn:first-child>.btn-group>.btn, +.input-group-btn:first-child>.dropdown-toggle, +.input-group-btn:last-child>.btn-group:not(:last-child)>.btn, +.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group-addon:first-child { + border-right: 0 +} + +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:first-child>.btn-group:not(:first-child)>.btn, +.input-group-btn:first-child>.btn:not(:first-child), +.input-group-btn:last-child>.btn, +.input-group-btn:last-child>.btn-group>.btn, +.input-group-btn:last-child>.dropdown-toggle { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.input-group-addon:last-child { + border-left: 0 +} + +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap +} + +.input-group-btn>.btn { + position: relative +} + +.input-group-btn>.btn+.btn { + margin-left: -1px +} + +.input-group-btn>.btn:active, +.input-group-btn>.btn:focus, +.input-group-btn>.btn:hover { + z-index: 2 +} + +.input-group-btn:first-child>.btn, +.input-group-btn:first-child>.btn-group { + margin-right: -1px +} + +.input-group-btn:last-child>.btn, +.input-group-btn:last-child>.btn-group { + margin-left: -1px +} + +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none +} + +.nav>li { + position: relative; + display: block +} + +.nav>li>a { + position: relative; + display: block; + padding: 10px 15px +} + +.nav>li>a:focus, +.nav>li>a:hover { + text-decoration: none; + background-color: #eee +} + +.nav>li.disabled>a { + color: #777 +} + +.nav>li.disabled>a:focus, +.nav>li.disabled>a:hover { + color: #777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent +} + +.nav .open>a, +.nav .open>a:focus, +.nav .open>a:hover { + background-color: #eee; + border-color: #337ab7 +} + +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5 +} + +.nav>li>a>img { + max-width: none +} + +.nav-tabs { + border-bottom: 1px solid #ddd +} + +.nav-tabs>li { + float: left; + margin-bottom: -1px +} + +.nav-tabs>li>a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0 +} + +.nav-tabs>li>a:hover { + border-color: #eee #eee #ddd +} + +.nav-tabs>li.active>a, +.nav-tabs>li.active>a:focus, +.nav-tabs>li.active>a:hover { + color: #555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent +} + +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0 +} + +.nav-tabs.nav-justified>li { + float: none +} + +.nav-tabs.nav-justified>li>a { + margin-bottom: 5px; + text-align: center +} + +.nav-tabs.nav-justified>.dropdown .dropdown-menu { + top: auto; + left: auto +} + +@media (min-width: 768px) { + .nav-tabs.nav-justified>li { + display: table-cell; + width: 1% + } + .nav-tabs.nav-justified>li>a { + margin-bottom: 0 + } +} + +.nav-tabs.nav-justified>li>a { + margin-right: 0; + border-radius: 4px +} + +.nav-tabs.nav-justified>.active>a, +.nav-tabs.nav-justified>.active>a:focus, +.nav-tabs.nav-justified>.active>a:hover { + border: 1px solid #ddd +} + +@media (min-width: 768px) { + .nav-tabs.nav-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0 + } + .nav-tabs.nav-justified>.active>a, + .nav-tabs.nav-justified>.active>a:focus, + .nav-tabs.nav-justified>.active>a:hover { + border-bottom-color: #fff + } +} + +.nav-pills>li { + float: left +} + +.nav-pills>li>a { + border-radius: 4px +} + +.nav-pills>li+li { + margin-left: 2px +} + +.nav-pills>li.active>a, +.nav-pills>li.active>a:focus, +.nav-pills>li.active>a:hover { + color: #fff; + background-color: #337ab7 +} + +.nav-stacked>li { + float: none +} + +.nav-stacked>li+li { + margin-top: 2px; + margin-left: 0 +} + +.nav-justified { + width: 100% +} + +.nav-justified>li { + float: none +} + +.nav-justified>li>a { + margin-bottom: 5px; + text-align: center +} + +.nav-justified>.dropdown .dropdown-menu { + top: auto; + left: auto +} + +@media (min-width: 768px) { + .nav-justified>li { + display: table-cell; + width: 1% + } + .nav-justified>li>a { + margin-bottom: 0 + } +} + +.nav-tabs-justified { + border-bottom: 0 +} + +.nav-tabs-justified>li>a { + margin-right: 0; + border-radius: 4px +} + +.nav-tabs-justified>.active>a, +.nav-tabs-justified>.active>a:focus, +.nav-tabs-justified>.active>a:hover { + border: 1px solid #ddd +} + +@media (min-width: 768px) { + .nav-tabs-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0 + } + .nav-tabs-justified>.active>a, + .nav-tabs-justified>.active>a:focus, + .nav-tabs-justified>.active>a:hover { + border-bottom-color: #fff + } +} + +.tab-content>.tab-pane { + display: none +} + +.tab-content>.active { + display: block +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent +} + +@media (min-width: 768px) { + .navbar { + border-radius: 4px + } +} + +@media (min-width: 768px) { + .navbar-header { + float: left + } +} + +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + -webkit-overflow-scrolling: touch; + border-top: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1) +} + +.navbar-collapse.in { + overflow-y: auto +} + +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + -webkit-box-shadow: none; + box-shadow: none + } + .navbar-collapse.collapse { + display: block!important; + height: auto!important; + padding-bottom: 0; + overflow: visible!important + } + .navbar-collapse.in { + overflow-y: visible + } + .navbar-fixed-bottom .navbar-collapse, + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse { + padding-right: 0; + padding-left: 0 + } +} + +.navbar-fixed-bottom .navbar-collapse, +.navbar-fixed-top .navbar-collapse { + max-height: 340px +} + +@media (max-device-width: 480px)and (orientation: landscape) { + .navbar-fixed-bottom .navbar-collapse, + .navbar-fixed-top .navbar-collapse { + max-height: 200px + } +} + +.container-fluid>.navbar-collapse, +.container-fluid>.navbar-header, +.container>.navbar-collapse, +.container>.navbar-header { + margin-right: -15px; + margin-left: -15px +} + +@media (min-width: 768px) { + .container-fluid>.navbar-collapse, + .container-fluid>.navbar-header, + .container>.navbar-collapse, + .container>.navbar-header { + margin-right: 0; + margin-left: 0 + } +} + +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px +} + +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0 + } +} + +.navbar-fixed-bottom, +.navbar-fixed-top { + position: fixed; + right: 0; + left: 0; + z-index: 1030 +} + +@media (min-width: 768px) { + .navbar-fixed-bottom, + .navbar-fixed-top { + border-radius: 0 + } +} + +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px +} + +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0 +} + +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px +} + +.navbar-brand:focus, +.navbar-brand:hover { + text-decoration: none +} + +.navbar-brand>img { + display: block +} + +@media (min-width: 768px) { + .navbar>.container .navbar-brand, + .navbar>.container-fluid .navbar-brand { + margin-left: -15px + } +} + +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-top: 8px; + margin-right: 15px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px +} + +.navbar-toggle:focus { + outline: 0 +} + +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px +} + +.navbar-toggle .icon-bar+.icon-bar { + margin-top: 4px +} + +@media (min-width: 768px) { + .navbar-toggle { + display: none + } +} + +.navbar-nav { + margin: 7.5px -15px +} + +.navbar-nav>li>a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px +} + +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + -webkit-box-shadow: none; + box-shadow: none + } + .navbar-nav .open .dropdown-menu .dropdown-header, + .navbar-nav .open .dropdown-menu>li>a { + padding: 5px 15px 5px 25px + } + .navbar-nav .open .dropdown-menu>li>a { + line-height: 20px + } + .navbar-nav .open .dropdown-menu>li>a:focus, + .navbar-nav .open .dropdown-menu>li>a:hover { + background-image: none + } +} + +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0 + } + .navbar-nav>li { + float: left + } + .navbar-nav>li>a { + padding-top: 15px; + padding-bottom: 15px + } +} + +.navbar-form { + padding: 10px 15px; + margin-top: 8px; + margin-right: -15px; + margin-bottom: 8px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1) +} + +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + .navbar-form .form-control-static { + display: inline-block + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle + } + .navbar-form .input-group .form-control, + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn { + width: auto + } + .navbar-form .input-group>.form-control { + width: 100% + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle + } + .navbar-form .checkbox, + .navbar-form .radio { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } + .navbar-form .checkbox label, + .navbar-form .radio label { + padding-left: 0 + } + .navbar-form .checkbox input[type=checkbox], + .navbar-form .radio input[type=radio] { + position: relative; + margin-left: 0 + } + .navbar-form .has-feedback .form-control-feedback { + top: 0 + } +} + +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px + } + .navbar-form .form-group:last-child { + margin-bottom: 0 + } +} + +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none + } +} + +.navbar-nav>li>.dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0 +} + +.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px +} + +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px +} + +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px +} + +.navbar-text { + margin-top: 15px; + margin-bottom: 15px +} + +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px + } +} + +@media (min-width: 768px) { + .navbar-left { + float: left!important + } + .navbar-right { + float: right!important; + margin-right: -15px + } + .navbar-right~.navbar-right { + margin-right: 0 + } +} + +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7 +} + +.navbar-default .navbar-brand { + color: #777 +} + +.navbar-default .navbar-brand:focus, +.navbar-default .navbar-brand:hover { + color: #5e5e5e; + background-color: transparent +} + +.navbar-default .navbar-text { + color: #777 +} + +.navbar-default .navbar-nav>li>a { + color: #777 +} + +.navbar-default .navbar-nav>li>a:focus, +.navbar-default .navbar-nav>li>a:hover { + color: #333; + background-color: transparent +} + +.navbar-default .navbar-nav>.active>a, +.navbar-default .navbar-nav>.active>a:focus, +.navbar-default .navbar-nav>.active>a:hover { + color: #555; + background-color: #e7e7e7 +} + +.navbar-default .navbar-nav>.disabled>a, +.navbar-default .navbar-nav>.disabled>a:focus, +.navbar-default .navbar-nav>.disabled>a:hover { + color: #ccc; + background-color: transparent +} + +.navbar-default .navbar-toggle { + border-color: #ddd +} + +.navbar-default .navbar-toggle:focus, +.navbar-default .navbar-toggle:hover { + background-color: #ddd +} + +.navbar-default .navbar-toggle .icon-bar { + background-color: #888 +} + +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7 +} + +.navbar-default .navbar-nav>.open>a, +.navbar-default .navbar-nav>.open>a:focus, +.navbar-default .navbar-nav>.open>a:hover { + color: #555; + background-color: #e7e7e7 +} + +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu>li>a { + color: #777 + } + .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus, + .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover { + color: #333; + background-color: transparent + } + .navbar-default .navbar-nav .open .dropdown-menu>.active>a, + .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus, + .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover { + color: #555; + background-color: #e7e7e7 + } + .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, + .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus, + .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover { + color: #ccc; + background-color: transparent + } +} + +.navbar-default .navbar-link { + color: #777 +} + +.navbar-default .navbar-link:hover { + color: #333 +} + +.navbar-default .btn-link { + color: #777 +} + +.navbar-default .btn-link:focus, +.navbar-default .btn-link:hover { + color: #333 +} + +.navbar-default .btn-link[disabled]:focus, +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:focus, +fieldset[disabled] .navbar-default .btn-link:hover { + color: #ccc +} + +.navbar-inverse { + background-color: #222; + border-color: #080808 +} + +.navbar-inverse .navbar-brand { + color: #9d9d9d +} + +.navbar-inverse .navbar-brand:focus, +.navbar-inverse .navbar-brand:hover { + color: #fff; + background-color: transparent +} + +.navbar-inverse .navbar-text { + color: #9d9d9d +} + +.navbar-inverse .navbar-nav>li>a { + color: #9d9d9d +} + +.navbar-inverse .navbar-nav>li>a:focus, +.navbar-inverse .navbar-nav>li>a:hover { + color: #fff; + background-color: transparent +} + +.navbar-inverse .navbar-nav>.active>a, +.navbar-inverse .navbar-nav>.active>a:focus, +.navbar-inverse .navbar-nav>.active>a:hover { + color: #fff; + background-color: #080808 +} + +.navbar-inverse .navbar-nav>.disabled>a, +.navbar-inverse .navbar-nav>.disabled>a:focus, +.navbar-inverse .navbar-nav>.disabled>a:hover { + color: #444; + background-color: transparent +} + +.navbar-inverse .navbar-toggle { + border-color: #333 +} + +.navbar-inverse .navbar-toggle:focus, +.navbar-inverse .navbar-toggle:hover { + background-color: #333 +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff +} + +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010 +} + +.navbar-inverse .navbar-nav>.open>a, +.navbar-inverse .navbar-nav>.open>a:focus, +.navbar-inverse .navbar-nav>.open>a:hover { + color: #fff; + background-color: #080808 +} + +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { + border-color: #080808 + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808 + } + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { + color: #9d9d9d + } + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus, + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover { + color: #fff; + background-color: transparent + } + .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, + .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus, + .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover { + color: #fff; + background-color: #080808 + } + .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, + .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus, + .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover { + color: #444; + background-color: transparent + } +} + +.navbar-inverse .navbar-link { + color: #9d9d9d +} + +.navbar-inverse .navbar-link:hover { + color: #fff +} + +.navbar-inverse .btn-link { + color: #9d9d9d +} + +.navbar-inverse .btn-link:focus, +.navbar-inverse .btn-link:hover { + color: #fff +} + +.navbar-inverse .btn-link[disabled]:focus, +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:focus, +fieldset[disabled] .navbar-inverse .btn-link:hover { + color: #444 +} + +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px +} + +.breadcrumb>li { + display: inline-block +} + +.breadcrumb>li+li:before { + padding: 0 5px; + color: #ccc; + content: "/\00a0" +} + +.breadcrumb>.active { + color: #777 +} + +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px +} + +.pagination>li { + display: inline +} + +.pagination>li>a, +.pagination>li>span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.42857143; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd +} + +.pagination>li:first-child>a, +.pagination>li:first-child>span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px +} + +.pagination>li:last-child>a, +.pagination>li:last-child>span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px +} + +.pagination>li>a:focus, +.pagination>li>a:hover, +.pagination>li>span:focus, +.pagination>li>span:hover { + color: #23527c; + background-color: #eee; + border-color: #ddd +} + +.pagination>.active>a, +.pagination>.active>a:focus, +.pagination>.active>a:hover, +.pagination>.active>span, +.pagination>.active>span:focus, +.pagination>.active>span:hover { + z-index: 2; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7 +} + +.pagination>.disabled>a, +.pagination>.disabled>a:focus, +.pagination>.disabled>a:hover, +.pagination>.disabled>span, +.pagination>.disabled>span:focus, +.pagination>.disabled>span:hover { + color: #777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd +} + +.pagination-lg>li>a, +.pagination-lg>li>span { + padding: 10px 16px; + font-size: 18px +} + +.pagination-lg>li:first-child>a, +.pagination-lg>li:first-child>span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px +} + +.pagination-lg>li:last-child>a, +.pagination-lg>li:last-child>span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px +} + +.pagination-sm>li>a, +.pagination-sm>li>span { + padding: 5px 10px; + font-size: 12px +} + +.pagination-sm>li:first-child>a, +.pagination-sm>li:first-child>span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px +} + +.pagination-sm>li:last-child>a, +.pagination-sm>li:last-child>span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px +} + +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none +} + +.pager li { + display: inline +} + +.pager li>a, +.pager li>span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px +} + +.pager li>a:focus, +.pager li>a:hover { + text-decoration: none; + background-color: #eee +} + +.pager .next>a, +.pager .next>span { + float: right +} + +.pager .previous>a, +.pager .previous>span { + float: left +} + +.pager .disabled>a, +.pager .disabled>a:focus, +.pager .disabled>a:hover, +.pager .disabled>span { + color: #777; + cursor: not-allowed; + background-color: #fff +} + +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em +} + +a.label:focus, +a.label:hover { + color: #fff; + text-decoration: none; + cursor: pointer +} + +.label:empty { + display: none +} + +.btn .label { + position: relative; + top: -1px +} + +.label-default { + background-color: #777 +} + +.label-default[href]:focus, +.label-default[href]:hover { + background-color: #5e5e5e +} + +.label-primary { + background-color: #337ab7 +} + +.label-primary[href]:focus, +.label-primary[href]:hover { + background-color: #286090 +} + +.label-success { + background-color: #5cb85c +} + +.label-success[href]:focus, +.label-success[href]:hover { + background-color: #449d44 +} + +.label-info { + background-color: #5bc0de +} + +.label-info[href]:focus, +.label-info[href]:hover { + background-color: #31b0d5 +} + +.label-warning { + background-color: #f0ad4e +} + +.label-warning[href]:focus, +.label-warning[href]:hover { + background-color: #ec971f +} + +.label-danger { + background-color: #d9534f +} + +.label-danger[href]:focus, +.label-danger[href]:hover { + background-color: #c9302c +} + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + background-color: #777; + border-radius: 10px +} + +.badge:empty { + display: none +} + +.btn .badge { + position: relative; + top: -1px +} + +.btn-group-xs>.btn .badge, +.btn-xs .badge { + top: 0; + padding: 1px 5px +} + +a.badge:focus, +a.badge:hover { + color: #fff; + text-decoration: none; + cursor: pointer +} + +.list-group-item.active>.badge, +.nav-pills>.active>a>.badge { + color: #337ab7; + background-color: #fff +} + +.list-group-item>.badge { + float: right +} + +.list-group-item>.badge+.badge { + margin-right: 5px +} + +.nav-pills>li>a>.badge { + margin-left: 3px +} + +.jumbotron { + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #eee +} + +.jumbotron .h1, +.jumbotron h1 { + color: inherit +} + +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200 +} + +.jumbotron>hr { + border-top-color: #d5d5d5 +} + +.container .jumbotron, +.container-fluid .jumbotron { + border-radius: 6px +} + +.jumbotron .container { + max-width: 100% +} + +@media screen and (min-width: 768px) { + .jumbotron { + padding: 48px 0 + } + .container .jumbotron, + .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px + } + .jumbotron .h1, + .jumbotron h1 { + font-size: 63px + } +} + +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border .2s ease-in-out; + -o-transition: border .2s ease-in-out; + transition: border .2s ease-in-out +} + +.thumbnail a>img, +.thumbnail>img { + margin-right: auto; + margin-left: auto +} + +a.thumbnail.active, +a.thumbnail:focus, +a.thumbnail:hover { + border-color: #337ab7 +} + +.thumbnail .caption { + padding: 9px; + color: #333 +} + +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px +} + +.alert h4 { + margin-top: 0; + color: inherit +} + +.alert .alert-link { + font-weight: 700 +} + +.alert>p, +.alert>ul { + margin-bottom: 0 +} + +.alert>p+p { + margin-top: 5px +} + +.alert-dismissable, +.alert-dismissible { + padding-right: 35px +} + +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit +} + +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6 +} + +.alert-success hr { + border-top-color: #c9e2b3 +} + +.alert-success .alert-link { + color: #2b542c +} + +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1 +} + +.alert-info hr { + border-top-color: #a6e1ec +} + +.alert-info .alert-link { + color: #245269 +} + +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc +} + +.alert-warning hr { + border-top-color: #f7e1b5 +} + +.alert-warning .alert-link { + color: #66512c +} + +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1 +} + +.alert-danger hr { + border-top-color: #e4b9c0 +} + +.alert-danger .alert-link { + color: #843534 +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0 + } + to { + background-position: 0 0 + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0 + } + to { + background-position: 0 0 + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0 + } + to { + background-position: 0 0 + } +} + +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1) +} + +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + -webkit-transition: width .6s ease; + -o-transition: width .6s ease; + transition: width .6s ease +} + +.progress-bar-striped, +.progress-striped .progress-bar { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + background-size: 40px 40px +} + +.progress-bar.active, +.progress.active .progress-bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite +} + +.progress-bar-success { + background-color: #5cb85c +} + +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent) +} + +.progress-bar-info { + background-color: #5bc0de +} + +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent) +} + +.progress-bar-warning { + background-color: #f0ad4e +} + +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent) +} + +.progress-bar-danger { + background-color: #d9534f +} + +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent) +} + +.media { + margin-top: 15px +} + +.media:first-child { + margin-top: 0 +} + +.media, +.media-body { + overflow: hidden; + zoom: 1 +} + +.media-body { + width: 10000px +} + +.media-object { + display: block +} + +.media-right, +.media>.pull-right { + padding-left: 10px +} + +.media-left, +.media>.pull-left { + padding-right: 10px +} + +.media-body, +.media-left, +.media-right { + display: table-cell; + vertical-align: top +} + +.media-middle { + vertical-align: middle +} + +.media-bottom { + vertical-align: bottom +} + +.media-heading { + margin-top: 0; + margin-bottom: 5px +} + +.media-list { + padding-left: 0; + list-style: none +} + +.list-group { + padding-left: 0; + margin-bottom: 20px +} + +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd +} + +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px +} + +a.list-group-item { + color: #555 +} + +a.list-group-item .list-group-item-heading { + color: #333 +} + +a.list-group-item:focus, +a.list-group-item:hover { + color: #555; + text-decoration: none; + background-color: #f5f5f5 +} + +.list-group-item.disabled, +.list-group-item.disabled:focus, +.list-group-item.disabled:hover { + color: #777; + cursor: not-allowed; + background-color: #eee +} + +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading { + color: inherit +} + +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text { + color: #777 +} + +.list-group-item.active, +.list-group-item.active:focus, +.list-group-item.active:hover { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7 +} + +.list-group-item.active .list-group-item-heading, +.list-group-item.active .list-group-item-heading>.small, +.list-group-item.active .list-group-item-heading>small, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading>.small, +.list-group-item.active:focus .list-group-item-heading>small, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading>.small, +.list-group-item.active:hover .list-group-item-heading>small { + color: inherit +} + +.list-group-item.active .list-group-item-text, +.list-group-item.active:focus .list-group-item-text, +.list-group-item.active:hover .list-group-item-text { + color: #c7ddef +} + +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8 +} + +a.list-group-item-success { + color: #3c763d +} + +a.list-group-item-success .list-group-item-heading { + color: inherit +} + +a.list-group-item-success:focus, +a.list-group-item-success:hover { + color: #3c763d; + background-color: #d0e9c6 +} + +a.list-group-item-success.active, +a.list-group-item-success.active:focus, +a.list-group-item-success.active:hover { + color: #fff; + background-color: #3c763d; + border-color: #3c763d +} + +.list-group-item-info { + color: #31708f; + background-color: #d9edf7 +} + +a.list-group-item-info { + color: #31708f +} + +a.list-group-item-info .list-group-item-heading { + color: inherit +} + +a.list-group-item-info:focus, +a.list-group-item-info:hover { + color: #31708f; + background-color: #c4e3f3 +} + +a.list-group-item-info.active, +a.list-group-item-info.active:focus, +a.list-group-item-info.active:hover { + color: #fff; + background-color: #31708f; + border-color: #31708f +} + +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3 +} + +a.list-group-item-warning { + color: #8a6d3b +} + +a.list-group-item-warning .list-group-item-heading { + color: inherit +} + +a.list-group-item-warning:focus, +a.list-group-item-warning:hover { + color: #8a6d3b; + background-color: #faf2cc +} + +a.list-group-item-warning.active, +a.list-group-item-warning.active:focus, +a.list-group-item-warning.active:hover { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b +} + +.list-group-item-danger { + color: #a94442; + background-color: #f2dede +} + +a.list-group-item-danger { + color: #a94442 +} + +a.list-group-item-danger .list-group-item-heading { + color: inherit +} + +a.list-group-item-danger:focus, +a.list-group-item-danger:hover { + color: #a94442; + background-color: #ebcccc +} + +a.list-group-item-danger.active, +a.list-group-item-danger.active:focus, +a.list-group-item-danger.active:hover { + color: #fff; + background-color: #a94442; + border-color: #a94442 +} + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px +} + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3 +} + +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05) +} + +.panel-body { + padding: 15px +} + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px +} + +.panel-heading>.dropdown .dropdown-toggle { + color: inherit +} + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit +} + +.panel-title>.small, +.panel-title>.small>a, +.panel-title>a, +.panel-title>small, +.panel-title>small>a { + color: inherit +} + +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px +} + +.panel>.list-group, +.panel>.panel-collapse>.list-group { + margin-bottom: 0 +} + +.panel>.list-group .list-group-item, +.panel>.panel-collapse>.list-group .list-group-item { + border-width: 1px 0; + border-radius: 0 +} + +.panel>.list-group:first-child .list-group-item:first-child, +.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px +} + +.panel>.list-group:last-child .list-group-item:last-child, +.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px +} + +.panel-heading+.list-group .list-group-item:first-child { + border-top-width: 0 +} + +.list-group+.panel-footer { + border-top-width: 0 +} + +.panel>.panel-collapse>.table, +.panel>.table, +.panel>.table-responsive>.table { + margin-bottom: 0 +} + +.panel>.panel-collapse>.table caption, +.panel>.table caption, +.panel>.table-responsive>.table caption { + padding-right: 15px; + padding-left: 15px +} + +.panel>.table-responsive:first-child>.table:first-child, +.panel>.table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px +} + +.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child, +.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, +.panel>.table:first-child>tbody:first-child>tr:first-child, +.panel>.table:first-child>thead:first-child>tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px +} + +.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, +.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child, +.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, +.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, +.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, +.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, +.panel>.table:first-child>thead:first-child>tr:first-child td:first-child, +.panel>.table:first-child>thead:first-child>tr:first-child th:first-child { + border-top-left-radius: 3px +} + +.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, +.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child, +.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, +.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, +.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, +.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, +.panel>.table:first-child>thead:first-child>tr:first-child td:last-child, +.panel>.table:first-child>thead:first-child>tr:first-child th:last-child { + border-top-right-radius: 3px +} + +.panel>.table-responsive:last-child>.table:last-child, +.panel>.table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px +} + +.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, +.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child, +.panel>.table:last-child>tbody:last-child>tr:last-child, +.panel>.table:last-child>tfoot:last-child>tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px +} + +.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, +.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, +.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, +.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child, +.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, +.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, +.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, +.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child { + border-bottom-left-radius: 3px +} + +.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, +.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, +.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, +.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child, +.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, +.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, +.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, +.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child { + border-bottom-right-radius: 3px +} + +.panel>.panel-body+.table, +.panel>.panel-body+.table-responsive, +.panel>.table+.panel-body, +.panel>.table-responsive+.panel-body { + border-top: 1px solid #ddd +} + +.panel>.table>tbody:first-child>tr:first-child td, +.panel>.table>tbody:first-child>tr:first-child th { + border-top: 0 +} + +.panel>.table-bordered, +.panel>.table-responsive>.table-bordered { + border: 0 +} + +.panel>.table-bordered>tbody>tr>td:first-child, +.panel>.table-bordered>tbody>tr>th:first-child, +.panel>.table-bordered>tfoot>tr>td:first-child, +.panel>.table-bordered>tfoot>tr>th:first-child, +.panel>.table-bordered>thead>tr>td:first-child, +.panel>.table-bordered>thead>tr>th:first-child, +.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, +.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, +.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child, +.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, +.panel>.table-responsive>.table-bordered>thead>tr>td:first-child, +.panel>.table-responsive>.table-bordered>thead>tr>th:first-child { + border-left: 0 +} + +.panel>.table-bordered>tbody>tr>td:last-child, +.panel>.table-bordered>tbody>tr>th:last-child, +.panel>.table-bordered>tfoot>tr>td:last-child, +.panel>.table-bordered>tfoot>tr>th:last-child, +.panel>.table-bordered>thead>tr>td:last-child, +.panel>.table-bordered>thead>tr>th:last-child, +.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, +.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, +.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child, +.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, +.panel>.table-responsive>.table-bordered>thead>tr>td:last-child, +.panel>.table-responsive>.table-bordered>thead>tr>th:last-child { + border-right: 0 +} + +.panel>.table-bordered>tbody>tr:first-child>td, +.panel>.table-bordered>tbody>tr:first-child>th, +.panel>.table-bordered>thead>tr:first-child>td, +.panel>.table-bordered>thead>tr:first-child>th, +.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, +.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th, +.panel>.table-responsive>.table-bordered>thead>tr:first-child>td, +.panel>.table-responsive>.table-bordered>thead>tr:first-child>th { + border-bottom: 0 +} + +.panel>.table-bordered>tbody>tr:last-child>td, +.panel>.table-bordered>tbody>tr:last-child>th, +.panel>.table-bordered>tfoot>tr:last-child>td, +.panel>.table-bordered>tfoot>tr:last-child>th, +.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, +.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, +.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, +.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th { + border-bottom: 0 +} + +.panel>.table-responsive { + margin-bottom: 0; + border: 0 +} + +.panel-group { + margin-bottom: 20px +} + +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px +} + +.panel-group .panel+.panel { + margin-top: 5px +} + +.panel-group .panel-heading { + border-bottom: 0 +} + +.panel-group .panel-heading+.panel-collapse>.list-group, +.panel-group .panel-heading+.panel-collapse>.panel-body { + border-top: 1px solid #ddd +} + +.panel-group .panel-footer { + border-top: 0 +} + +.panel-group .panel-footer+.panel-collapse .panel-body { + border-bottom: 1px solid #ddd +} + +.panel-default { + border-color: #ddd +} + +.panel-default>.panel-heading { + color: #333; + background-color: #f5f5f5; + border-color: #ddd +} + +.panel-default>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #ddd +} + +.panel-default>.panel-heading .badge { + color: #f5f5f5; + background-color: #333 +} + +.panel-default>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #ddd +} + +.panel-primary { + border-color: #337ab7 +} + +.panel-primary>.panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7 +} + +.panel-primary>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #337ab7 +} + +.panel-primary>.panel-heading .badge { + color: #337ab7; + background-color: #fff +} + +.panel-primary>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #337ab7 +} + +.panel-success { + border-color: #d6e9c6 +} + +.panel-success>.panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6 +} + +.panel-success>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #d6e9c6 +} + +.panel-success>.panel-heading .badge { + color: #dff0d8; + background-color: #3c763d +} + +.panel-success>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #d6e9c6 +} + +.panel-info { + border-color: #bce8f1 +} + +.panel-info>.panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1 +} + +.panel-info>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #bce8f1 +} + +.panel-info>.panel-heading .badge { + color: #d9edf7; + background-color: #31708f +} + +.panel-info>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #bce8f1 +} + +.panel-warning { + border-color: #faebcc +} + +.panel-warning>.panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc +} + +.panel-warning>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #faebcc +} + +.panel-warning>.panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b +} + +.panel-warning>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #faebcc +} + +.panel-danger { + border-color: #ebccd1 +} + +.panel-danger>.panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1 +} + +.panel-danger>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #ebccd1 +} + +.panel-danger>.panel-heading .badge { + color: #f2dede; + background-color: #a94442 +} + +.panel-danger>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #ebccd1 +} + +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden +} + +.embed-responsive .embed-responsive-item, +.embed-responsive embed, +.embed-responsive iframe, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0 +} + +.embed-responsive-16by9 { + padding-bottom: 56.25% +} + +.embed-responsive-4by3 { + padding-bottom: 75% +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05) +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, .15) +} + +.well-lg { + padding: 24px; + border-radius: 6px +} + +.well-sm { + padding: 9px; + border-radius: 3px +} + +.close { + float: right; + font-size: 21px; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: .2 +} + +.close:focus, +.close:hover { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: .5 +} + +button.close { + -webkit-appearance: none; + padding: 0; + cursor: pointer; + background: 0 0; + border: 0 +} + +.modal-open { + overflow: hidden +} + +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0 +} + +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform .3s ease-out; + -o-transition: -o-transform .3s ease-out; + transition: transform .3s ease-out; + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%) +} + +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0) +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto +} + +.modal-dialog { + position: relative; + width: auto; + margin: 10px +} + +.modal-content { + position: relative; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + outline: 0; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); + box-shadow: 0 3px 9px rgba(0, 0, 0, .5) +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000 +} + +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0 +} + +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: .5 +} + +.modal-header { + min-height: 16.43px; + padding: 15px; + border-bottom: 1px solid #e5e5e5 +} + +.modal-header .close { + margin-top: -2px +} + +.modal-title { + margin: 0; + line-height: 1.42857143 +} + +.modal-body { + position: relative; + padding: 15px +} + +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5 +} + +.modal-footer .btn+.btn { + margin-bottom: 0; + margin-left: 5px +} + +.modal-footer .btn-group .btn+.btn { + margin-left: -1px +} + +.modal-footer .btn-block+.btn-block { + margin-left: 0 +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll +} + +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + box-shadow: 0 5px 15px rgba(0, 0, 0, .5) + } + .modal-sm { + width: 300px + } +} + +@media (min-width: 992px) { + .modal-lg { + width: 900px + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 12px; + font-weight: 400; + line-height: 1.4; + filter: alpha(opacity=0); + opacity: 0 +} + +.tooltip.in { + filter: alpha(opacity=90); + opacity: .9 +} + +.tooltip.top { + padding: 5px 0; + margin-top: -3px +} + +.tooltip.right { + padding: 0 5px; + margin-left: 3px +} + +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px +} + +.tooltip.left { + padding: 0 5px; + margin-left: -3px +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + border-radius: 4px +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000 +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000 +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + font-weight: 400; + line-height: 1.42857143; + text-align: left; + white-space: normal; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); + box-shadow: 0 5px 10px rgba(0, 0, 0, .2) +} + +.popover.top { + margin-top: -10px +} + +.popover.right { + margin-left: 10px +} + +.popover.bottom { + margin-top: 10px +} + +.popover.left { + margin-left: -10px +} + +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0 +} + +.popover-content { + padding: 9px 14px +} + +.popover>.arrow, +.popover>.arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid +} + +.popover>.arrow { + border-width: 11px +} + +.popover>.arrow:after { + content: ""; + border-width: 10px +} + +.popover.top>.arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, .25); + border-bottom-width: 0 +} + +.popover.top>.arrow:after { + bottom: 1px; + margin-left: -10px; + content: " "; + border-top-color: #fff; + border-bottom-width: 0 +} + +.popover.right>.arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, .25); + border-left-width: 0 +} + +.popover.right>.arrow:after { + bottom: -10px; + left: 1px; + content: " "; + border-right-color: #fff; + border-left-width: 0 +} + +.popover.bottom>.arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, .25) +} + +.popover.bottom>.arrow:after { + top: 1px; + margin-left: -10px; + content: " "; + border-top-width: 0; + border-bottom-color: #fff +} + +.popover.left>.arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, .25) +} + +.popover.left>.arrow:after { + right: 1px; + bottom: -10px; + content: " "; + border-right-width: 0; + border-left-color: #fff +} + +.carousel { + position: relative +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden +} + +.carousel-inner>.item { + position: relative; + display: none; + -webkit-transition: .6s ease-in-out left; + -o-transition: .6s ease-in-out left; + transition: .6s ease-in-out left +} + +.carousel-inner>.item>a>img, +.carousel-inner>.item>img { + line-height: 1 +} + +@media all and (transform-3d), +(-webkit-transform-3d) { + .carousel-inner>.item { + -webkit-transition: -webkit-transform .6s ease-in-out; + -o-transition: -o-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000; + perspective: 1000 + } + .carousel-inner>.item.active.right, + .carousel-inner>.item.next { + left: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0) + } + .carousel-inner>.item.active.left, + .carousel-inner>.item.prev { + left: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0) + } + .carousel-inner>.item.active, + .carousel-inner>.item.next.left, + .carousel-inner>.item.prev.right { + left: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0) + } +} + +.carousel-inner>.active, +.carousel-inner>.next, +.carousel-inner>.prev { + display: block +} + +.carousel-inner>.active { + left: 0 +} + +.carousel-inner>.next, +.carousel-inner>.prev { + position: absolute; + top: 0; + width: 100% +} + +.carousel-inner>.next { + left: 100% +} + +.carousel-inner>.prev { + left: -100% +} + +.carousel-inner>.next.left, +.carousel-inner>.prev.right { + left: 0 +} + +.carousel-inner>.active.left { + left: -100% +} + +.carousel-inner>.active.right { + left: 100% +} + +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); + filter: alpha(opacity=50); + opacity: .5 +} + +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%); + filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); + background-repeat: repeat-x +} + +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%); + filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); + background-repeat: repeat-x +} + +.carousel-control:focus, +.carousel-control:hover { + color: #fff; + text-decoration: none; + filter: alpha(opacity=90); + outline: 0; + opacity: .9 +} + +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right, +.carousel-control .icon-next, +.carousel-control .icon-prev { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block +} + +.carousel-control .glyphicon-chevron-left, +.carousel-control .icon-prev { + left: 50%; + margin-left: -10px +} + +.carousel-control .glyphicon-chevron-right, +.carousel-control .icon-next { + right: 50%; + margin-right: -10px +} + +.carousel-control .icon-next, +.carousel-control .icon-prev { + width: 20px; + height: 20px; + margin-top: -10px; + font-family: serif; + line-height: 1 +} + +.carousel-control .icon-prev:before { + content: '\2039' +} + +.carousel-control .icon-next:before { + content: '\203a' +} + +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none +} + +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px +} + +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff +} + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6) +} + +.carousel-caption .btn { + text-shadow: none +} + +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next, + .carousel-control .icon-prev { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -15px + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -15px + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px + } + .carousel-indicators { + bottom: 20px + } +} + +.btn-group-vertical>.btn-group:after, +.btn-group-vertical>.btn-group:before, +.btn-toolbar:after, +.btn-toolbar:before, +.clearfix:after, +.clearfix:before, +.container-fluid:after, +.container-fluid:before, +.container:after, +.container:before, +.dl-horizontal dd:after, +.dl-horizontal dd:before, +.form-horizontal .form-group:after, +.form-horizontal .form-group:before, +.modal-footer:after, +.modal-footer:before, +.nav:after, +.nav:before, +.navbar-collapse:after, +.navbar-collapse:before, +.navbar-header:after, +.navbar-header:before, +.navbar:after, +.navbar:before, +.pager:after, +.pager:before, +.panel-body:after, +.panel-body:before, +.row:after, +.row:before { + display: table; + content: " " +} + +.btn-group-vertical>.btn-group:after, +.btn-toolbar:after, +.clearfix:after, +.container-fluid:after, +.container:after, +.dl-horizontal dd:after, +.form-horizontal .form-group:after, +.modal-footer:after, +.nav:after, +.navbar-collapse:after, +.navbar-header:after, +.navbar:after, +.pager:after, +.panel-body:after, +.row:after { + clear: both +} + +.center-block { + display: block; + margin-right: auto; + margin-left: auto +} + +.pull-right { + float: right!important +} + +.pull-left { + float: left!important +} + +.hide { + display: none!important +} + +.show { + display: block!important +} + +.invisible { + visibility: hidden +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0 +} + +.hidden { + display: none!important +} + +.affix { + position: fixed +} + +@-ms-viewport { + width: device-width +} + +.visible-lg, +.visible-md, +.visible-sm, +.visible-xs { + display: none!important +} + +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block { + display: none!important +} + +@media (max-width: 767px) { + .visible-xs { + display: block!important + } + table.visible-xs { + display: table + } + tr.visible-xs { + display: table-row!important + } + td.visible-xs, + th.visible-xs { + display: table-cell!important + } +} + +@media (max-width: 767px) { + .visible-xs-block { + display: block!important + } +} + +@media (max-width: 767px) { + .visible-xs-inline { + display: inline!important + } +} + +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block!important + } +} + +@media (min-width: 768px)and (max-width: 991px) { + .visible-sm { + display: block!important + } + table.visible-sm { + display: table + } + tr.visible-sm { + display: table-row!important + } + td.visible-sm, + th.visible-sm { + display: table-cell!important + } +} + +@media (min-width: 768px)and (max-width: 991px) { + .visible-sm-block { + display: block!important + } +} + +@media (min-width: 768px)and (max-width: 991px) { + .visible-sm-inline { + display: inline!important + } +} + +@media (min-width: 768px)and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block!important + } +} + +@media (min-width: 992px)and (max-width: 1199px) { + .visible-md { + display: block!important + } + table.visible-md { + display: table + } + tr.visible-md { + display: table-row!important + } + td.visible-md, + th.visible-md { + display: table-cell!important + } +} + +@media (min-width: 992px)and (max-width: 1199px) { + .visible-md-block { + display: block!important + } +} + +@media (min-width: 992px)and (max-width: 1199px) { + .visible-md-inline { + display: inline!important + } +} + +@media (min-width: 992px)and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block!important + } +} + +@media (min-width: 1200px) { + .visible-lg { + display: block!important + } + table.visible-lg { + display: table + } + tr.visible-lg { + display: table-row!important + } + td.visible-lg, + th.visible-lg { + display: table-cell!important + } +} + +@media (min-width: 1200px) { + .visible-lg-block { + display: block!important + } +} + +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline!important + } +} + +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block!important + } +} + +@media (max-width: 767px) { + .hidden-xs { + display: none!important + } +} + +@media (min-width: 768px)and (max-width: 991px) { + .hidden-sm { + display: none!important + } +} + +@media (min-width: 992px)and (max-width: 1199px) { + .hidden-md { + display: none!important + } +} + +@media (min-width: 1200px) { + .hidden-lg { + display: none!important + } +} + +.visible-print { + display: none!important +} + +@media print { + .visible-print { + display: block!important + } + table.visible-print { + display: table + } + tr.visible-print { + display: table-row!important + } + td.visible-print, + th.visible-print { + display: table-cell!important + } +} + +.visible-print-block { + display: none!important +} + +@media print { + .visible-print-block { + display: block!important + } +} + +.visible-print-inline { + display: none!important +} + +@media print { + .visible-print-inline { + display: inline!important + } +} + +.visible-print-inline-block { + display: none!important +} + +@media print { + .visible-print-inline-block { + display: inline-block!important + } +} + +@media print { + .hidden-print { + display: none!important + } +} diff --git a/plugins/ckeditor/lib/plugins/layoutmanager/css/style.css b/plugins/ckeditor/lib/plugins/layoutmanager/css/style.css new file mode 100644 index 0000000..aeb3e10 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/layoutmanager/css/style.css @@ -0,0 +1,11 @@ +.layoutmanager {} +.layoutmanager .layout-container { + margin: 1px; + margin-top: 20px; +} + +.layoutmanager .layout-column { + border: 1px dashed black; + word-wrap: break-word; + padding-top:30px; +} diff --git a/plugins/ckeditor/lib/plugins/link/dialogs/anchor.js b/plugins/ckeditor/lib/plugins/link/dialogs/anchor.js new file mode 100644 index 0000000..f05c10c --- /dev/null +++ b/plugins/ckeditor/lib/plugins/link/dialogs/anchor.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("anchor",function(c){function f(b,a){return b.createFakeElement(b.document.createElement("a",{attributes:a}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,getModel:function(b){var a=b.getSelection();b=a.getRanges()[0];a=a.getSelectedElement();b.shrink(CKEDITOR.SHRINK_ELEMENT);(a=b.getEnclosedNode())&&a.type===CKEDITOR.NODE_TEXT&&(a=a.getParent());a&&!a.is("a")&&(a=a.getAscendant("a")||a);b=a&&a.type===CKEDITOR.NODE_ELEMENT&&("anchor"=== +a.data("cke-real-element-type")||a.is("a"))?a:void 0;return b||null},onOk:function(){var b=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),b={id:b,name:b,"data-cke-saved-name":b},a=this.getModel(c);if(a)a.data("cke-realelement")?(b=f(c,b),b.replace(a),CKEDITOR.env.ie&&c.getSelection().selectElement(b)):a.setAttributes(b);else if(a=(a=c.getSelection())&&a.getRanges()[0],a.collapsed)b=f(c,b),a.insertNode(b);else{CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(b["class"]="cke_anchor");var d=a.clone(); +d.enlarge(CKEDITOR.ENLARGE_ELEMENT);for(var e=new CKEDITOR.dom.walker(d),d=d.collapsed?d.startContainer:e.next(),g=a.createBookmark();d;)d.type===CKEDITOR.NODE_ELEMENT&&d.getAttribute("data-cke-saved-name")&&(d.remove(!0),e.reset()),d=e.next();a.moveToBookmark(g);b=new CKEDITOR.style({element:"a",attributes:b});b.type=CKEDITOR.STYLE_INLINE;b.applyToRange(a)}},onShow:function(){var b=c.getSelection(),a=this.getModel(c),d=a&&a.data("cke-realelement");if(a=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c, +a):CKEDITOR.plugins.link.getSelectedLink(c)){var e=a.data("cke-saved-name");this.setValueOf("info","txtName",e||"");!d&&b.selectElement(a)}this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return this.getValue()?!0:(alert(c.lang.link.anchor.errorName),!1)}}]}]}}); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/link/dialogs/link.js b/plugins/ckeditor/lib/plugins/link/dialogs/link.js new file mode 100644 index 0000000..51bd322 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/link/dialogs/link.js @@ -0,0 +1,30 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function u(){var c=this.getDialog(),p=c._.editor,n=p.config.linkPhoneRegExp,q=p.config.linkPhoneMsg,p=CKEDITOR.dialog.validate.notEmpty(p.lang.link.noTel).apply(this);if(!c.getContentElement("info","linkType")||"tel"!=c.getValueOf("info","linkType"))return!0;if(!0!==p)return p;if(n)return CKEDITOR.dialog.validate.regex(n,q).call(this)}CKEDITOR.dialog.add("link",function(c){function p(a,b){var c=a.createRange();c.setStartBefore(b);c.setEndAfter(b);return c}var n=CKEDITOR.plugins.link,q, +t=function(){var a=this.getDialog(),b=a.getContentElement("target","popupFeatures"),a=a.getContentElement("target","linkTargetName"),r=this.getValue();if(b&&a)switch(b=b.getElement(),b.hide(),a.setValue(""),r){case "frame":a.setLabel(c.lang.link.targetFrameName);a.getElement().show();break;case "popup":b.show();a.setLabel(c.lang.link.targetPopupName);a.getElement().show();break;default:a.setValue(r),a.getElement().hide()}},d=function(a){a.target&&this.setValue(a.target[this.id]||"")},g=function(a){a.advanced&& +this.setValue(a.advanced[this.id]||"")},e=function(a){a.target||(a.target={});a.target[this.id]=this.getValue()||""},k=function(a){a.advanced||(a.advanced={});a.advanced[this.id]=this.getValue()||""},h=c.lang.common,b=c.lang.link,l;return{title:b.title,minWidth:"moono-lisa"==(CKEDITOR.skinName||c.config.skin)?450:350,minHeight:240,getModel:function(a){return n.getSelectedLink(a,!0)[0]||null},contents:[{id:"info",label:b.info,title:b.info,elements:[{type:"text",id:"linkDisplayText",label:b.displayText, +setup:function(){this.enable();this.setValue(c.getSelection().getSelectedText());q=this.getValue()},commit:function(a){a.linkText=this.isEnabled()?this.getValue():""}},{id:"linkType",type:"select",label:b.type,"default":"url",items:[[b.toUrl,"url"],[b.toAnchor,"anchor"],[b.toEmail,"email"],[b.toPhone,"tel"]],onChange:function(){var a=this.getDialog(),b=["urlOptions","anchorOptions","emailOptions","telOptions"],r=this.getValue(),f=a.definition.getContents("upload"),f=f&&f.hidden;"url"==r?(c.config.linkShowTargetTab&& +a.showPage("target"),f||a.showPage("upload")):(a.hidePage("target"),f||a.hidePage("upload"));for(f=0;f=f.length&&n.showDisplayTextForElement(m,a)?c.show():c.hide();this._.selectedElements=f;this.setupContent(b)},onOk:function(){var a={};this.commitContent(a);if(this._.selectedElements.length){var b=this._.selectedElements,h=n.getLinkAttributes(c,a),f=[],m,l,d,g,e,k;for(k=0;k tag' +}); diff --git a/plugins/ckeditor/lib/plugins/more/lang/ru.js b/plugins/ckeditor/lib/plugins/more/lang/ru.js new file mode 100644 index 0000000..f14e910 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/more/lang/ru.js @@ -0,0 +1,7 @@ +/* +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang('more', 'ru', { + title : 'Добавить тег ' +}); diff --git a/plugins/ckeditor/lib/plugins/more/more.gif b/plugins/ckeditor/lib/plugins/more/more.gif new file mode 100644 index 0000000..0dc69f9 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/more/more.gif differ diff --git a/plugins/ckeditor/lib/plugins/more/plugin.js b/plugins/ckeditor/lib/plugins/more/plugin.js new file mode 100644 index 0000000..cbb26a8 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/more/plugin.js @@ -0,0 +1,24 @@ +/* +Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ + +(function() { + var moreCmd = { + exec: function(editor) { + editor.insertHtml('
'); + } + }; + + CKEDITOR.plugins.add('more', { + lang: [ 'en', 'ru' ], + init: function(editor) { + editor.addCommand('more', moreCmd); + editor.ui.addButton('More', { + label: editor.lang.more.title, + command: 'more', + icon: this.path + 'more.gif' + }); + } + }); +})(); diff --git a/plugins/ckeditor/lib/plugins/pagebreak/images/pagebreak.gif b/plugins/ckeditor/lib/plugins/pagebreak/images/pagebreak.gif new file mode 100644 index 0000000..a27b168 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/pagebreak/images/pagebreak.gif differ diff --git a/plugins/ckeditor/lib/plugins/pastefromgdocs/filter/default.js b/plugins/ckeditor/lib/plugins/pastefromgdocs/filter/default.js new file mode 100644 index 0000000..3c18702 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/pastefromgdocs/filter/default.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function g(b){return""===b?!1:b}function h(b){if(!/(o|u)l/i.test(b.parent.name))return b;d.elements.replaceWithChildren(b);return!1}function k(b){function d(a,f){var b,c;if(a&&"tr"===a.name){b=a.children;for(c=0;c/)?!0:!1},convertToFakeListItem:function(c,b){p.isDegenerateListItem(c,b)&&p.assignListLevels(c, +b);this.getListItemInfo(b);if(!b.attributes["cke-dissolved"]){var d;b.forEach(function(b){!d&&"img"==b.name&&b.attributes["cke-ignored"]&&"*"==b.attributes.alt&&(d="·",b.remove())},CKEDITOR.NODE_ELEMENT);b.forEach(function(b){d||b.value.match(/^ /)||(d=b.value)},CKEDITOR.NODE_TEXT);if("undefined"==typeof d)return;b.attributes["cke-symbol"]=d.replace(/(?: | ).*$/,"");g.removeSymbolText(b)}var e=b.attributes&&n.parseCssText(b.attributes.style);if(e["margin-left"]){var f=e["margin-left"],l=b.attributes["cke-list-level"]; +(f=Math.max(CKEDITOR.tools.convertToPx(f)-40*l,0))?e["margin-left"]=f+"px":delete e["margin-left"];b.attributes.style=CKEDITOR.tools.writeCssText(e)}b.name="cke:li"},convertToRealListItems:function(c){var b=[];c.forEach(function(c){"cke:li"==c.name&&(c.name="li",b.push(c))},CKEDITOR.NODE_ELEMENT,!1);return b},removeSymbolText:function(c){var b=c.attributes["cke-symbol"],d=c.findOne(function(c){return c.value&&-1b&&(c.attributes.dir="rtl")},createList:function(c){return(c.attributes["cke-symbol"].match(/([\da-np-zA-NP-Z]).?/)||[])[1]? +new CKEDITOR.htmlParser.element("ol"):new CKEDITOR.htmlParser.element("ul")},createLists:function(c){function b(b){return CKEDITOR.tools.array.reduce(b,function(b,a){if(a.attributes&&a.attributes.style)var c=CKEDITOR.tools.parseCssText(a.attributes.style)["margin-left"];return c?b+parseInt(c,10):b},0)}var d,e,f,l=g.convertToRealListItems(c);if(0===l.length)return[];var k=g.groupLists(l);for(c=0;ch.length;){var v=g.createList(d),x=m.children;0f;f++)d[f]&&delete d[f];d[c[l].attributes["cke-list-level"]]=h;e[e.length-1].push(c[l]);f=a}[].splice.apply(b,[].concat([n.indexOf(b,c),1],e))},isAListContinuation:function(c){var b=c;do if((b=b.previous)&&b.type===CKEDITOR.NODE_ELEMENT){if(void 0===b.attributes["cke-list-level"])break;if(b.attributes["cke-list-level"]===c.attributes["cke-list-level"])return b.attributes["cke-list-id"]===c.attributes["cke-list-id"]}while(b);return!1},toArabic:function(c){return c.match(/[ivxl]/i)?c.match(/^l/i)? +50+g.toArabic(c.slice(1)):c.match(/^lx/i)?40+g.toArabic(c.slice(1)):c.match(/^x/i)?10+g.toArabic(c.slice(1)):c.match(/^ix/i)?9+g.toArabic(c.slice(2)):c.match(/^v/i)?5+g.toArabic(c.slice(1)):c.match(/^iv/i)?4+g.toArabic(c.slice(2)):c.match(/^i/i)?1+g.toArabic(c.slice(1)):g.toArabic(c.slice(1)):0},getSymbolInfo:function(c,b){var d=c.toUpperCase()==c?"upper-":"lower-",e={"·":["disc",-1],o:["circle",-2],"§":["square",-3]};if(c in e||b&&b.match(/(disc|circle|square)/))return{index:e[c][1],type:e[c][0]}; +if(c.match(/\d/))return{index:c?parseInt(g.getSubsectionSymbol(c),10):0,type:"decimal"};c=c.replace(/\W/g,"").toLowerCase();return!b&&c.match(/[ivxl]+/i)||b&&"alpha"!=b||"roman"==b?{index:g.toArabic(c),type:d+"roman"}:c.match(/[a-z]/i)?{index:c.charCodeAt(0)-97,type:d+"alpha"}:{index:-1,type:"disc"}},getListItemInfo:function(c){if(void 0!==c.attributes["cke-list-id"])return{id:c.attributes["cke-list-id"],level:c.attributes["cke-list-level"]};var b=n.parseCssText(c.attributes.style)["mso-list"],d= +{id:"0",level:"1"};b&&(b+=" ",d.level=b.match(/level(.+?)\s+/)[1],d.id=b.match(/l(\d+?)\s+/)[1]);c.attributes["cke-list-level"]=void 0!==c.attributes["cke-list-level"]?c.attributes["cke-list-level"]:d.level;c.attributes["cke-list-id"]=d.id;return d}};g=q.lists;q.heuristics={isEdgeListItem:function(c,b){if(!CKEDITOR.env.edge||!c.config.pasteFromWord_heuristicsEdgeList)return!1;var d="";b.forEach&&b.forEach(function(b){d+=b.value},CKEDITOR.NODE_TEXT);return d.match(/^(?: | )*\(?[a-zA-Z0-9]+?[\.\)](?: | ){2,}/)? +!0:p.isDegenerateListItem(c,b)},cleanupEdgeListItem:function(c){var b=!1;c.forEach(function(c){b||(c.value=c.value.replace(/^(?: |[\s])+/,""),c.value.length&&(b=!0))},CKEDITOR.NODE_TEXT)},isDegenerateListItem:function(c,b){return!!b.attributes["cke-list-level"]||b.attributes.style&&!b.attributes.style.match(/mso\-list/)&&!!b.find(function(c){if(c.type==CKEDITOR.NODE_ELEMENT&&b.name.match(/h\d/i)&&c.getHtml().match(/^[a-zA-Z0-9]+?[\.\)]$/))return!0;var e=n.parseCssText(c.attributes&&c.attributes.style, +!0);if(!e)return!1;var f=e["font-family"]||"";return(e.font||e["font-size"]||"").match(/7pt/i)&&!!c.previous||f.match(/symbol/i)},!0).length},assignListLevels:function(c,b){if(!b.attributes||void 0===b.attributes["cke-list-level"]){for(var d=[z(b)],e=[b],f=[],g=CKEDITOR.tools.array,k=g.map;b.next&&b.next.attributes&&!b.next.attributes["cke-list-level"]&&p.isDegenerateListItem(c,b.next);)b=b.next,d.push(z(b)),e.push(b);var a=k(d,function(a,b){return 0===b?0:a-d[b-1]}),h=this.guessIndentationStep(g.filter(d, +function(a){return 0!==a})),f=k(d,function(a){return Math.round(a/h)});-1!==g.indexOf(f,0)&&(f=k(f,function(a){return a+1}));g.forEach(e,function(a,b){a.attributes["cke-list-level"]=f[b]});return{indents:d,levels:f,diffs:a}}},guessIndentationStep:function(c){return c.length?Math.min.apply(null,c):null},correctLevelShift:function(c){if(this.isShifted(c)){var b=CKEDITOR.tools.array.filter(c.children,function(b){return"ul"==b.name||"ol"==b.name}),d=CKEDITOR.tools.array.reduce(b,function(b,c){return(c.children&& +1==c.children.length&&p.isShifted(c.children[0])?[c]:c.children).concat(b)},[]);CKEDITOR.tools.array.forEach(b,function(b){b.remove()});CKEDITOR.tools.array.forEach(d,function(b){c.add(b)});delete c.name}},isShifted:function(c){return"li"!==c.name?!1:0===CKEDITOR.tools.array.filter(c.children,function(b){return b.name&&("ul"==b.name||"ol"==b.name||"p"==b.name&&0===b.children.length)?!1:!0}).length}};p=q.heuristics;g.setListSymbol.removeRedundancies=function(c,b){(1===b&&"disc"===c["list-style-type"]|| +"decimal"===c["list-style-type"])&&delete c["list-style-type"]};CKEDITOR.cleanWord=CKEDITOR.pasteFilters.word=B.createFilter({rules:[t.rules,q.rules],additionalTransforms:function(c){CKEDITOR.plugins.clipboard.isCustomDataTypesSupported&&(c=t.styles.inliner.inline(c).getBody().getHtml());return c.replace(//g,"]--\x3e")}});CKEDITOR.config.pasteFromWord_heuristicsEdgeList=!0})(); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/pastetools/filter/common.js b/plugins/ckeditor/lib/plugins/pastetools/filter/common.js new file mode 100644 index 0000000..bce639a --- /dev/null +++ b/plugins/ckeditor/lib/plugins/pastetools/filter/common.js @@ -0,0 +1,24 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function q(a,b,c){b+=c;for(var d=a[b],e=/[\s]/;d&&e.test(d);)b+=c,d=a[b];return d}function r(a){return/%$/.test(a)?a:a+"px"}function t(a){var b=a.margin?"margin":a.MARGIN?"MARGIN":!1,c,d;if(b){d=CKEDITOR.tools.style.parse.margin(a[b]);for(c in d)a["margin-"+c]=d[c];delete a[b]}}function u(a){var b="background-color:transparent;background:transparent;background-color:none;background:none;background-position:initial initial;background-repeat:initial initial;caret-color;font-family:-webkit-standard;font-variant-caps;letter-spacing:normal;orphans;widows;text-transform:none;word-spacing:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;text-indent:0px;margin-bottom:0in".split(";"), +c=CKEDITOR.tools.parseCssText(a.attributes.style),d,e;for(d in c)e=d+":"+c[d],CKEDITOR.tools.array.some(b,function(a){return e.substring(0,a.length).toLowerCase()===a})&&delete c[d];c=CKEDITOR.tools.writeCssText(c);""!==c?a.attributes.style=c:delete a.attributes.style}function v(a){a=a.config.font_names;var b=[];if(!a||!a.length)return!1;b=CKEDITOR.tools.array.map(a.split(";"),function(a){return-1===a.indexOf("/")?a:a.split("/")[1]});return b.length?b:!1}function w(a,b){var c=a.split(",");return CKEDITOR.tools.array.find(b, +function(a){for(var e=0;e]+src="([^"]+)[^>]+/g,b=[],e;e=c.exec(a);)b.push(e[1]);return b}function t(a){var c=CKEDITOR.tools.array.find(CKEDITOR.pasteFilters.image.recognizableImageTypes, +function(b){return b.marker.test(a)});return c?c.type:"unknown"}function h(a){var c=-1!==CKEDITOR.tools.array.indexOf(CKEDITOR.pasteFilters.image.supportedImageTypes,a.type),b=a.hex;if(!c)return null;"string"===typeof b&&(b=CKEDITOR.tools.convertHexStringToBytes(a.hex));return a.type?"data:"+a.type+";base64,"+CKEDITOR.tools.convertBytesToBase64(b):null}function m(a){return new CKEDITOR.tools.promise(function(c){CKEDITOR.ajax.load(a,function(a){a=new Uint8Array(a);var e=r(a);a=h({type:e,hex:a});c(a)}, +"arraybuffer")})}function r(a){a=a.subarray(0,4);var c=CKEDITOR.tools.array.map(a,function(a){return a.toString(16)}).join("");return(a=CKEDITOR.tools.array.find(CKEDITOR.pasteFilters.image.recognizableImageSignatures,function(a){return 0===c.indexOf(a.signature)}))?a.type:null}CKEDITOR.pasteFilters.image=function(a,c,b){var e;if(c.activeFilter&&!c.activeFilter.check("img[src]"))return a;e=q(a);return 0===e.length?a:b?u(a,b,e):v(c,a,e)};CKEDITOR.pasteFilters.image.extractFromRtf=l;CKEDITOR.pasteFilters.image.extractTagsFromHtml= +q;CKEDITOR.pasteFilters.image.getImageType=t;CKEDITOR.pasteFilters.image.createSrcWithBase64=h;CKEDITOR.pasteFilters.image.convertBlobUrlToBase64=m;CKEDITOR.pasteFilters.image.getImageTypeFromSignature=r;CKEDITOR.pasteFilters.image.supportedImageTypes=["image/png","image/jpeg","image/gif"];CKEDITOR.pasteFilters.image.recognizableImageTypes=[{marker:/\\pngblip/,type:"image/png"},{marker:/\\jpegblip/,type:"image/jpeg"},{marker:/\\emfblip/,type:"image/emf"},{marker:/\\wmetafile\d/,type:"image/wmf"}]; +CKEDITOR.pasteFilters.image.recognizableImageSignatures=[{signature:"ffd8ff",type:"image/jpeg"},{signature:"47494638",type:"image/gif"},{signature:"89504e47",type:"image/png"}]})(); \ No newline at end of file diff --git a/plugins/ckeditor/lib/plugins/preview/images/pagebreak.gif b/plugins/ckeditor/lib/plugins/preview/images/pagebreak.gif new file mode 100644 index 0000000..a27b168 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/preview/images/pagebreak.gif differ diff --git a/plugins/ckeditor/lib/plugins/preview/preview.html b/plugins/ckeditor/lib/plugins/preview/preview.html new file mode 100644 index 0000000..7eb8082 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/preview/preview.html @@ -0,0 +1,13 @@ + diff --git a/plugins/ckeditor/lib/plugins/preview/styles/screen.css b/plugins/ckeditor/lib/plugins/preview/styles/screen.css new file mode 100644 index 0000000..b9b07f3 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/preview/styles/screen.css @@ -0,0 +1,10 @@ +div[style*="page-break-after"] { + background:url( ../images/pagebreak.gif ) no-repeat center center; + clear:both; + width:100%; + border-top:#999 1px dotted; + border-bottom:#999 1px dotted; + padding:0; + height:7px; + cursor:default; +} diff --git a/plugins/ckeditor/lib/plugins/scayt/CHANGELOG.md b/plugins/ckeditor/lib/plugins/scayt/CHANGELOG.md new file mode 100644 index 0000000..b07ce7f --- /dev/null +++ b/plugins/ckeditor/lib/plugins/scayt/CHANGELOG.md @@ -0,0 +1,4 @@ +SCAYT plugin for CKEditor 4 Changelog +==================== + +The full changelog of the SCAYT plugin for CKEditor 4 can be found on our website under the [release notes](https://webspellchecker.com/release-notes/) section. diff --git a/plugins/ckeditor/lib/plugins/scayt/LICENSE.md b/plugins/ckeditor/lib/plugins/scayt/LICENSE.md new file mode 100644 index 0000000..610c807 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/scayt/LICENSE.md @@ -0,0 +1,28 @@ +Software License Agreement +========================== + +**CKEditor SCAYT Plugin** +Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. + +Licensed under the terms of any of the following licenses at your choice: + +* GNU General Public License Version 2 or later (the "GPL"): + http://www.gnu.org/licenses/gpl.html + +* GNU Lesser General Public License Version 2.1 or later (the "LGPL"): + http://www.gnu.org/licenses/lgpl.html + +* Mozilla Public License Version 1.1 or later (the "MPL"): + http://www.mozilla.org/MPL/MPL-1.1.html + +You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. + +Sources of Intellectual Property Included in this plugin +-------------------------------------------------------- + +Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. + +Trademarks +---------- + +CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. diff --git a/plugins/ckeditor/lib/plugins/scayt/README.md b/plugins/ckeditor/lib/plugins/scayt/README.md new file mode 100644 index 0000000..62e5e62 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/scayt/README.md @@ -0,0 +1,81 @@ +SCAYT plugin for CKEditor 4 +===================== + +SpellCheckAsYouType (SCAYT) instantly underlines spelling and grammar errors while users type. To correct spelling or grammar error, a user simply needs to right-click the marked word to select from suggested corrections. +![SCAYT Plugin for CKEditor 4 View](https://webspellchecker.com/app/images/scayt_plugin_for_ckeditor4.png) + +This plugin brings the multi-language SCAYT functionality into CKEditor 4. It is integrated by default starting with [Standard Package of CKEditor 4](https://ckeditor.com/ckeditor-4/download/). You can find it on the CKEditor 4 toolbar panel under the ABC button (Enable SCAYT). + +If your version of CKEditor doesn’t have SCAYT built-in, you can easily add it by following the steps outlined in the Get Started section. + +The default version of SCAYT plugin for CKEditor 4 is using the free services of WebSpellChecker. It is provided with a banner ad and has some [limitations](https://docs.webspellchecker.net/display/WebSpellCheckerCloud/Free+and+Paid+WebSpellChecker+Cloud+Services+Comparison+for+CKEditor). + +To lift the limitations and get rid of the banner, [obtain a license](https://webspellchecker.com/wsc-scayt-ckeditor4/#pricing). Depending on your needs, you can choose a Cloud-based or Server (self-hosted) solution. + +Demo +------------ +SCAYT plugin for CKEditor 4: https://webspellchecker.com/wsc-scayt-ckeditor4/ + +Supported languages +------------ + +The SCAYT plugin for CKEditor as a part of the free services supports the next languages for check spelling: American English, British English, Canadian English, Canadian French, Danish, Dutch, Finnish, French, German, Greek, Italian, Norwegian Bokmal, Spanish, Swedish. + +There are also additional languages and specialized dictionaries available for a commercial license, you can check the full list [here](https://webspellchecker.com/additional-dictionaries/). + +Get started +------------ + +1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. +2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): + + config.extraPlugins = 'scayt'; + +That's all. SCAYT will appear on the editor toolbar under the ABC button and will be ready to use. + +Supported browsers +------- + +This is the list of officially supported browsers for the SCAYT plugin for CKEditor 4. SCAYT may also work in other browsers and environments but we unable to check all of them and guarantee proper work. + +* Chrome (the latest) +* Firefox (the latest) +* Safari (the latest) +* MS Edge (the latest) +* Internet Explorer 8.0 (limited support) +* Internet Explorer 9.0+ (close to full support) + +Note: All browsers are to be supported for web pages that work in Standards Mode. + +Resources +------- + +* Demo: https://webspellchecker.com/wsc-scayt-ckeditor4/ +* Documentation: https://docs.webspellchecker.net/ +* YouTube video “How to Configure CKEditor 4 and SpellCheckAsYouType Plugin”: https://youtu.be/D0ahmVjYBq8 +* Term of Service: https://webspellchecker.com/terms-of-service/ +* CKEditor’s How-Tos for SCAYT: https://ckeditor.com/docs/ckeditor4/latest/guide/dev_howtos_scayt.html +* CKEditor’s example of SCAYT: https://ckeditor.com/docs/ckeditor4/latest/examples/spellchecker.html + +Technical support or questions +------- + +In cooperation with the CKEditor team, during the past 10 years we have simplified the installation and built the extensive amount of documentation devoted to SCAYT plugin for CKEditor 4 and less. + +If you are experiencing any difficulties with the setup of the plugin, please check the links provided in the Resources section. + +Holders of an active subscription to the services or a commercial license have access to professional technical assistance directly from the WebSpellChecker team. [Contact us here](https://webspellchecker.com/contact-us/)! + +Reporting issues +------- + +Please use the [SCAYT plugin for CKEditor 4 GitHub issue page](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues) to report bugs and feature requests. We will do our best to reply at our earliest convenience. + +License +------- + +This plugin is licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). + +See LICENSE.md for more information. + +Developed by [WebSpellChecker](https://webspellchecker.com/) in cooperation with CKSource. diff --git a/plugins/ckeditor/lib/plugins/scayt/dialogs/dialog.css b/plugins/ckeditor/lib/plugins/scayt/dialogs/dialog.css new file mode 100644 index 0000000..427c4b4 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/scayt/dialogs/dialog.css @@ -0,0 +1,23 @@ +div.cke_dialog_ui_scaytItemList { + border: 1px solid #c9cccf; +} + +.cke_scaytItemList-child { + position: relative; + padding: 6px 30px 6px 5px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.cke_scaytItemList-child:hover { + background: #ebebeb; +} + +.cke_scaytItemList-child .cke_scaytItemList_remove { + position: absolute; + top: 0; + right: 5px; + width: 26px; + height: 26px; +} diff --git a/plugins/ckeditor/lib/plugins/scayt/dialogs/options.js b/plugins/ckeditor/lib/plugins/scayt/dialogs/options.js new file mode 100644 index 0000000..e47c97e --- /dev/null +++ b/plugins/ckeditor/lib/plugins/scayt/dialogs/options.js @@ -0,0 +1,32 @@ +CKEDITOR.dialog.add("scaytDialog",function(d){var c=d.scayt,k='\x3cp\x3e\x3cimg alt\x3d"logo" title\x3d"logo" src\x3d"'+c.getLogo()+'" /\x3e\x3c/p\x3e\x3cp\x3e'+c.getLocal("version")+c.getVersion()+'\x3c/p\x3e\x3cp\x3e\x3ca href\x3d"'+c.getOption("CKUserManual")+'" target\x3d"_blank" style\x3d"text-decoration: underline; color: blue; cursor: pointer;"\x3e'+c.getLocal("btn_userManual")+"\x3c/a\x3e\x3c/p\x3e\x3cp\x3e"+c.getLocal("text_copyrights")+"\x3c/p\x3e",n=CKEDITOR.document,l={isChanged:function(){return null=== +this.newLang||this.currentLang===this.newLang?!1:!0},currentLang:c.getLang(),newLang:null,reset:function(){this.currentLang=c.getLang();this.newLang=null},id:"lang"},k=[{id:"options",label:c.getLocal("tab_options"),onShow:function(){},elements:[{type:"vbox",id:"scaytOptions",children:function(){var b=c.getApplicationConfig(),a=[],g={"ignore-all-caps-words":"label_allCaps","ignore-domain-names":"label_ignoreDomainNames","ignore-words-with-mixed-cases":"label_mixedCase","ignore-words-with-numbers":"label_mixedWithDigits"}, +h;for(h in b)b={type:"checkbox"},b.id=h,b.label=c.getLocal(g[h]),a.push(b);return a}(),onShow:function(){this.getChild();for(var b=d.scayt,a=0;ab[1]?c=1:a[1] div +{ + padding-bottom: 6px !important; +} + +.scayt-lang-list > div input +{ + margin-right: 4px; +} + +#scayt_about_ +{ + margin: 30px auto 0 auto; +} + +#scayt_about_ p +{ + text-align: center; + margin-bottom: 10px; +} + +.cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button +{ + margin-top: 0; +} diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_address.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_address.png new file mode 100644 index 0000000..5abdae1 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_address.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_blockquote.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_blockquote.png new file mode 100644 index 0000000..a8f4973 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_blockquote.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_div.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_div.png new file mode 100644 index 0000000..87b3c17 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_div.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_h1.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_h1.png new file mode 100644 index 0000000..3933325 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_h1.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_h2.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_h2.png new file mode 100644 index 0000000..c99894c Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_h2.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_h3.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_h3.png new file mode 100644 index 0000000..cb73d67 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_h3.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_h4.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_h4.png new file mode 100644 index 0000000..7af6bb4 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_h4.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_h5.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_h5.png new file mode 100644 index 0000000..ce5bec1 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_h5.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_h6.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_h6.png new file mode 100644 index 0000000..e67b982 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_h6.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_p.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_p.png new file mode 100644 index 0000000..63a5820 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_p.png differ diff --git a/plugins/ckeditor/lib/plugins/showblocks/images/block_pre.png b/plugins/ckeditor/lib/plugins/showblocks/images/block_pre.png new file mode 100644 index 0000000..955a868 Binary files /dev/null and b/plugins/ckeditor/lib/plugins/showblocks/images/block_pre.png differ diff --git a/plugins/ckeditor/lib/plugins/smiley/dialogs/smiley.js b/plugins/ckeditor/lib/plugins/smiley/dialogs/smiley.js new file mode 100644 index 0000000..3048f31 --- /dev/null +++ b/plugins/ckeditor/lib/plugins/smiley/dialogs/smiley.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("smiley",function(f){for(var e=f.config,a=f.lang.smiley,h=e.smiley_images,g=e.smiley_columns||8,k,m=function(l){var c=l.data.getTarget(),b=c.getName();if("a"==b)c=c.getChild(0);else if("img"!=b)return;var b=c.getAttribute("cke_src"),a=c.getAttribute("title"),c=f.document.createElement("img",{attributes:{src:b,"data-cke-saved-src":b,title:a,alt:a,width:c.$.width,height:c.$.height}});f.insertElement(c);k.hide();l.data.preventDefault()},q=CKEDITOR.tools.addFunction(function(a,c){a= +new CKEDITOR.dom.event(a);c=new CKEDITOR.dom.element(c);var b;b=a.getKeystroke();var d="rtl"==f.lang.dir;switch(b){case 38:if(b=c.getParent().getParent().getPrevious())b=b.getChild([c.getParent().getIndex(),0]),b.focus();a.preventDefault();break;case 40:(b=c.getParent().getParent().getNext())&&(b=b.getChild([c.getParent().getIndex(),0]))&&b.focus();a.preventDefault();break;case 32:m({data:a});a.preventDefault();break;case d?37:39:if(b=c.getParent().getNext())b=b.getChild(0),b.focus(),a.preventDefault(!0); +else if(b=c.getParent().getParent().getNext())(b=b.getChild([0,0]))&&b.focus(),a.preventDefault(!0);break;case d?39:37:if(b=c.getParent().getPrevious())b=b.getChild(0),b.focus(),a.preventDefault(!0);else if(b=c.getParent().getParent().getPrevious())b=b.getLast().getChild(0),b.focus(),a.preventDefault(!0)}}),d=CKEDITOR.tools.getNextId()+"_smiley_emtions_label",d=['\x3cdiv\x3e\x3cspan id\x3d"'+d+'" class\x3d"cke_voice_label"\x3e'+a.options+"\x3c/span\x3e",'\x3ctable role\x3d"listbox" aria-labelledby\x3d"'+ +d+'" style\x3d"width:100%;height:100%;border-collapse:separate;" cellspacing\x3d"2" cellpadding\x3d"2"',CKEDITOR.env.ie&&CKEDITOR.env.quirks?' style\x3d"position:absolute;"':"","\x3e\x3ctbody\x3e"],n=h.length,a=0;a"+c.lang.syntaxhighlight.hideGutter+""},{type:"checkbox",id:"hide_gutter",label:c.lang.syntaxhighlight.hideGutterLbl,setup:function(b){this.setValue(b.hideGutter)}, +commit:function(b){b.hideGutter=this.getValue()}},{type:"html",html:""+c.lang.syntaxhighlight.hideControls+""},{type:"checkbox",id:"hide_controls",label:c.lang.syntaxhighlight.hideControlsLbl,setup:function(b){this.setValue(b.hideControls)},commit:function(b){b.hideControls=this.getValue()}},{type:"html",html:""+c.lang.syntaxhighlight.collapse+""},{type:"checkbox",id:"collapse",label:c.lang.syntaxhighlight.collapseLbl,setup:function(b){this.setValue(b.collapse)}, +commit:function(b){b.collapse=this.getValue()}},{type:"html",html:""+c.lang.syntaxhighlight.codeTitleLbl+""},{type:"hbox",widths:["5%","95%"],children:[{type:"text",id:"default_ti",style:"width:40%",label:"",setup:function(b){null!=b.codeTitle&&this.setValue(b.codeTitle)},commit:function(b){this.getValue()&&""!=this.getValue()&&(b.codeTitle=this.getValue())}}]},{type:"html",html:""+c.lang.syntaxhighlight.showColumns+""},{type:"checkbox",id:"show_columns",label:c.lang.syntaxhighlight.showColumnsLbl, +setup:function(b){this.setValue(b.showColumns)},commit:function(b){b.showColumns=this.getValue()}},{type:"html",html:""+c.lang.syntaxhighlight.lineWrap+""},{type:"checkbox",id:"line_wrap",label:c.lang.syntaxhighlight.lineWrapLbl,setup:function(b){this.setValue(b.noWrap)},commit:function(b){b.noWrap=this.getValue()}},{type:"html",html:""+c.lang.syntaxhighlight.lineCount+""},{type:"hbox",widths:["5%","95%"],children:[{type:"text",id:"default_lc",style:"width:15%",label:"", +setup:function(b){1"+c.lang.syntaxhighlight.highlight+""},{type:"hbox",widths:["5%","95%"],children:[{type:"text",id:"default_hl",style:"width:40%",label:"",setup:function(b){null!=b.highlight&&this.setValue(b.highlight)},commit:function(b){this.getValue()&&""!=this.getValue()&&(b.highlight=this.getValue())}}]},{type:"hbox",widths:["5%", +"95%"],children:[{type:"html",html:""+c.lang.syntaxhighlight.highlightLbl+""}]}]}]}],onShow:function(){var b=this.getParentEditor().getSelection().getStartElement(),b=b&&b.getAscendant("pre",!0),a=null;if(b){code=b.getHtml().replace(/
/g,"\n").replace(/ /g," ").replace(/</g,"<").replace(/>/g,">").replace(/"/g,'"').replace(/&/g,"&");var a=f(),c=b.getAttribute("class");if(c){if(-1p&&(p=f)}return p}function t(a){return function(){var f=this.getValue(),f=!!(CKEDITOR.dialog.validate.integer().call(this,f)&&0r.getSize("width")?"100%":500:0,getValue:v,validate:CKEDITOR.dialog.validate.cssLength(a.lang.common.invalidCssLength.replace("%1",a.lang.common.width)),onChange:function(){var a=this.getDialog().getContentElement("advanced","advStyles");a&&a.updateStyle("width",this.getValue())},setup:function(a){a=a.getStyle("width");this.setValue(a)},commit:n}]},{type:"hbox",widths:["5em"],children:[{type:"text",id:"txtHeight",requiredContent:"table{height}",controlStyle:"width:5em", +label:a.lang.common.height,title:a.lang.common.cssLengthTooltip,"default":"",getValue:v,validate:CKEDITOR.dialog.validate.cssLength(a.lang.common.invalidCssLength.replace("%1",a.lang.common.height)),onChange:function(){var a=this.getDialog().getContentElement("advanced","advStyles");a&&a.updateStyle("height",this.getValue())},setup:function(a){(a=a.getStyle("height"))&&this.setValue(a)},commit:n}]},{type:"html",html:"\x26nbsp;"},{type:"text",id:"txtCellSpace",requiredContent:"table[cellspacing]", +controlStyle:"width:3em",label:a.lang.table.cellSpace,"default":a.filter.check("table[cellspacing]")?1:0,validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidCellSpacing),setup:function(a){this.setValue(a.getAttribute("cellSpacing")||"")},commit:function(a,e){this.getValue()?e.setAttribute("cellSpacing",this.getValue()):e.removeAttribute("cellSpacing")}},{type:"text",id:"txtCellPad",requiredContent:"table[cellpadding]",controlStyle:"width:3em",label:a.lang.table.cellPad,"default":a.filter.check("table[cellpadding]")? +1:0,validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidCellPadding),setup:function(a){this.setValue(a.getAttribute("cellPadding")||"")},commit:function(a,e){this.getValue()?e.setAttribute("cellPadding",this.getValue()):e.removeAttribute("cellPadding")}}]}]},{type:"html",align:"right",html:""},{type:"vbox",padding:0,children:[{type:"text",id:"txtCaption",requiredContent:"caption",label:a.lang.table.caption,setup:function(a){this.enable();a=a.getElementsByTag("caption");if(0=m/2?g[2].children.push(a):g[0].children.push(a)});CKEDITOR.tools.array.forEach(g,function(a){a.isSpacer||(a=a.children,a[a.length-1].isSpacer&&a.pop())});return{title:d.title,minWidth:1===g.length?205:410,minHeight:50,contents:[{id:"info",label:d.title,accessKey:"I",elements:[{type:"hbox",widths:1===g.length?["100%"]:["40%","5%","40%"],children:g}]}],getModel:function(a){return CKEDITOR.plugins.tabletools.getSelectedCells(a.getSelection())},onShow:function(){var a=this.getModel(this.getParentEditor()); +this.setupContent(a)},onOk:function(){for(var a=this._.editor.getSelection(),b=a.createBookmarks(),c=this.getParentEditor(),d=this.getModel(c),e=0;e + + + mona-lisa-icons16 + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dev/icons32.png b/plugins/ckeditor/lib/skins/moono-lisa/dev/icons32.png new file mode 100644 index 0000000..1484566 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/dev/icons32.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dev/icons32.svg b/plugins/ckeditor/lib/skins/moono-lisa/dev/icons32.svg new file mode 100644 index 0000000..10e8452 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/dev/icons32.svg @@ -0,0 +1,167 @@ + + + + mona-lisa-icons32 + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dev/locations.json b/plugins/ckeditor/lib/skins/moono-lisa/dev/locations.json new file mode 100644 index 0000000..0b3648b --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/dev/locations.json @@ -0,0 +1,144 @@ +{ + "0": [ + [ + "plugins/sourcearea/icons/source.png", + "plugins/sourcedialog/icons/sourcedialog.png" + ], + [ + "plugins/sourcearea/icons/source-rtl.png", + "plugins/sourcedialog/icons/sourcedialog-rtl.png" + ], + "plugins/save/icons/save.png", + "plugins/newpage/icons/newpage.png", + "plugins/newpage/icons/newpage-rtl.png", + "plugins/preview/icons/preview.png", + "plugins/preview/icons/preview-rtl.png", + "plugins/print/icons/print.png", + [ + "plugins/templates/icons/templates.png", + "plugins/templates/icons/templates-rtl.png" + ], + "plugins/docprops/icons/docprops.png", + "plugins/docprops/icons/docprops-rtl.png" + ], + "1": [ + [ + "plugins/clipboard/icons/cut-rtl.png", + "plugins/clipboard/icons/cut.png" + ], + [ + "plugins/clipboard/icons/copy.png", + "plugins/clipboard/icons/copy-rtl.png" + ], + [ + "plugins/clipboard/icons/paste.png", + "plugins/clipboard/icons/paste-rtl.png" + ], + "plugins/pastetext/icons/pastetext.png", + "plugins/pastetext/icons/pastetext-rtl.png", + "plugins/pastefromword/icons/pastefromword.png", + "plugins/pastefromword/icons/pastefromword-rtl.png", + "plugins/undo/icons/undo.png", + "plugins/undo/icons/undo-rtl.png", + "plugins/undo/icons/redo.png", + "plugins/undo/icons/redo-rtl.png" + ], + "2": [ + [ + "plugins/find/icons/find-rtl.png", + "plugins/find/icons/find.png" + ], + "plugins/find/icons/replace.png", + "plugins/selectall/icons/selectall.png", + [ + "plugins/wsc/icons/spellchecker.png", + "plugins/scayt/icons/scayt.png" + ] + ], + "3": [ + "plugins/forms/icons/form.png", + "plugins/forms/icons/checkbox.png", + "plugins/forms/icons/radio.png", + [ + "plugins/forms/icons/textfield-rtl.png", + "plugins/forms/icons/textfield.png" + ], + "plugins/forms/icons/textarea.png", + "plugins/forms/icons/textarea-rtl.png", + "plugins/forms/icons/select.png", + "plugins/forms/icons/select-rtl.png", + "plugins/forms/icons/button.png", + "plugins/forms/icons/imagebutton.png", + "plugins/forms/icons/hiddenfield.png" + ], + "4": [ + "plugins/basicstyles/icons/bold.png", + "plugins/basicstyles/icons/italic.png", + "plugins/basicstyles/icons/underline.png", + "plugins/basicstyles/icons/strike.png", + "plugins/basicstyles/icons/superscript.png", + "plugins/basicstyles/icons/subscript.png", + "plugins/removeformat/icons/removeformat.png" + ], + "5": [ + "plugins/list/icons/numberedlist.png", + "plugins/list/icons/numberedlist-rtl.png", + "plugins/list/icons/bulletedlist.png", + "plugins/list/icons/bulletedlist-rtl.png", + "plugins/indent/icons/outdent.png", + "plugins/indent/icons/indent.png", + "plugins/indent/icons/indent-rtl.png", + "plugins/indent/icons/outdent-rtl.png", + "plugins/blockquote/icons/blockquote.png", + "plugins/div/icons/creatediv.png", + "plugins/justify/icons/justifyleft.png", + "plugins/justify/icons/justifycenter.png", + "plugins/justify/icons/justifyright.png", + "plugins/justify/icons/justifyblock.png", + "plugins/bidi/icons/bidiltr.png", + "plugins/bidi/icons/bidirtl.png" + ], + "6": [ + "plugins/link/icons/link.png", + "plugins/link/icons/unlink.png", + "plugins/link/icons/anchor.png", + "plugins/link/icons/anchor-rtl.png", + "plugins/copyformatting/icons/copyformatting.png" + ], + "7": [ + [ + "plugins/image/icons/image.png", + "plugins/image2/icons/image.png" + ], + "plugins/table/icons/table.png", + "plugins/horizontalrule/icons/horizontalrule.png", + "plugins/smiley/icons/smiley.png", + "plugins/specialchar/icons/specialchar.png", + "plugins/pagebreak/icons/pagebreak.png", + "plugins/pagebreak/icons/pagebreak-rtl.png", + "plugins/iframe/icons/iframe.png" + ], + "8": [ + "plugins/colorbutton/icons/textcolor.png", + "plugins/colorbutton/icons/bgcolor.png" + ], + "9": [ + "plugins/maximize/icons/maximize.png", + "plugins/showblocks/icons/showblocks.png", + "plugins/showblocks/icons/showblocks-rtl.png" + ], + "10": [ + "plugins/about/icons/about.png", + "plugins/uicolor/icons/uicolor.png", + "plugins/placeholder/icons/placeholder.png", + "plugins/language/icons/language.png", + "plugins/codesnippet/icons/codesnippet.png" + ], + "11": [ + "plugins/link/images/anchor.png", + "skins/moono-lisa/images/close.png", + "skins/moono-lisa/images/lock.png", + "skins/moono-lisa/images/lock-open.png", + "skins/moono-lisa/images/refresh.png" + ] +} diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dialog.css b/plugins/ckeditor/lib/skins/moono-lisa/dialog.css new file mode 100644 index 0000000..d632137 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dialog_ie.css b/plugins/ckeditor/lib/skins/moono-lisa/dialog_ie.css new file mode 100644 index 0000000..bbc2fea --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dialog_ie8.css b/plugins/ckeditor/lib/skins/moono-lisa/dialog_ie8.css new file mode 100644 index 0000000..8627bc8 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button{min-height:18px}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{min-height:18px}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus{padding-top:4px;padding-bottom:2px}select.cke_dialog_ui_input_select{width:100%!important}select.cke_dialog_ui_input_select:focus{margin-left:1px;width:100%!important;padding-top:2px;padding-bottom:2px} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/dialog_iequirks.css b/plugins/ckeditor/lib/skins/moono-lisa/dialog_iequirks.css new file mode 100644 index 0000000..a9a450d --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/editor.css b/plugins/ckeditor/lib/skins/moono-lisa/editor.css new file mode 100644 index 0000000..ed5af2c --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/editor_gecko.css b/plugins/ckeditor/lib/skins/moono-lisa/editor_gecko.css new file mode 100644 index 0000000..e7a25a5 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/editor_ie.css b/plugins/ckeditor/lib/skins/moono-lisa/editor_ie.css new file mode 100644 index 0000000..b47d5bf --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/editor_ie8.css b/plugins/ckeditor/lib/skins/moono-lisa/editor_ie8.css new file mode 100644 index 0000000..dbc6f28 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbar{position:relative}.cke_rtl .cke_toolbar_end{right:auto;left:0}.cke_toolbar_end:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:1px;right:2px}.cke_rtl .cke_toolbar_end:after{right:auto;left:2px}.cke_hc .cke_toolbar_end:after{top:2px;right:5px;border-color:#000}.cke_hc.cke_rtl .cke_toolbar_end:after{right:auto;left:5px}.cke_combo+.cke_toolbar_end:after,.cke_toolbar.cke_toolbar_last .cke_toolbar_end:after{content:none;border:0}.cke_combo+.cke_toolgroup+.cke_toolbar_end:after{right:0}.cke_rtl .cke_combo+.cke_toolgroup+.cke_toolbar_end:after{right:auto;left:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/editor_iequirks.css b/plugins/ckeditor/lib/skins/moono-lisa/editor_iequirks.css new file mode 100644 index 0000000..f1be041 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/arrow.png b/plugins/ckeditor/lib/skins/moono-lisa/images/arrow.png new file mode 100644 index 0000000..d72b5f3 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/arrow.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/close.png b/plugins/ckeditor/lib/skins/moono-lisa/images/close.png new file mode 100644 index 0000000..40caa6d Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/close.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/close.png b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/close.png new file mode 100644 index 0000000..fa00f4f Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/close.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/lock-open.png b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/lock-open.png new file mode 100644 index 0000000..c899789 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/lock-open.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/lock.png b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/lock.png new file mode 100644 index 0000000..25ad0f4 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/lock.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/refresh.png b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/refresh.png new file mode 100644 index 0000000..117a2d4 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/hidpi/refresh.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/lock-open.png b/plugins/ckeditor/lib/skins/moono-lisa/images/lock-open.png new file mode 100644 index 0000000..42df5f4 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/lock-open.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/lock.png b/plugins/ckeditor/lib/skins/moono-lisa/images/lock.png new file mode 100644 index 0000000..bde6772 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/lock.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/refresh.png b/plugins/ckeditor/lib/skins/moono-lisa/images/refresh.png new file mode 100644 index 0000000..e363764 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/refresh.png differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/images/spinner.gif b/plugins/ckeditor/lib/skins/moono-lisa/images/spinner.gif new file mode 100644 index 0000000..d898d41 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono-lisa/images/spinner.gif differ diff --git a/plugins/ckeditor/lib/skins/moono-lisa/readme.md b/plugins/ckeditor/lib/skins/moono-lisa/readme.md new file mode 100644 index 0000000..dc2b144 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/readme.md @@ -0,0 +1,46 @@ +"Moono-lisa" Skin +================= + +This skin has been made a **default skin** starting from CKEditor 4.6.0 and is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](https://ckeditor.com/docs/ckeditor4/latest/guide/skin_sdk_intro.html) +documentation. + +Features +------------------- +"Moono-lisa" is a monochromatic skin, which offers a modern, flat and minimalistic look which blends very well in modern design. +It comes with the following features: + +- Chameleon feature with brightness. +- High-contrast compatibility. +- Graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG and PNG source of the skin icons. + +License +------- + +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + +For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license) diff --git a/plugins/ckeditor/lib/skins/moono-lisa/skin.js b/plugins/ckeditor/lib/skins/moono-lisa/skin.js new file mode 100644 index 0000000..5dadddc --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono-lisa/skin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.skin.name="moono-lisa";CKEDITOR.skin.ua_editor="ie,iequirks,ie8,gecko";CKEDITOR.skin.ua_dialog="ie,iequirks,ie8"; +CKEDITOR.skin.chameleon=function(){var b=function(){return function(b,d){for(var a=b.match(/[^#]./g),e=0;3>e;e++){var f=e,c;c=parseInt(a[e],16);c=("0"+(0>d?0|c*(1+d):0|c+(255-c)*d).toString(16)).slice(-2);a[f]=c}return"#"+a.join("")}}(),f={editor:new CKEDITOR.template("{id}.cke_chrome [border-color:{defaultBorder};] {id} .cke_top [ background-color:{defaultBackground};border-bottom-color:{defaultBorder};] {id} .cke_bottom [background-color:{defaultBackground};border-top-color:{defaultBorder};] {id} .cke_resizer [border-right-color:{ckeResizer}] {id} .cke_dialog_title [background-color:{defaultBackground};border-bottom-color:{defaultBorder};] {id} .cke_dialog_footer [background-color:{defaultBackground};outline-color:{defaultBorder};] {id} .cke_dialog_tab [background-color:{dialogTab};border-color:{defaultBorder};] {id} .cke_dialog_tab:hover [background-color:{lightBackground};] {id} .cke_dialog_contents [border-top-color:{defaultBorder};] {id} .cke_dialog_tab_selected, {id} .cke_dialog_tab_selected:hover [background:{dialogTabSelected};border-bottom-color:{dialogTabSelectedBorder};] {id} .cke_dialog_body [background:{dialogBody};border-color:{defaultBorder};] {id} a.cke_button_off:hover,{id} a.cke_button_off:focus,{id} a.cke_button_off:active [background-color:{darkBackground};border-color:{toolbarElementsBorder};] {id} .cke_button_on [background-color:{ckeButtonOn};border-color:{toolbarElementsBorder};] {id} .cke_toolbar_separator,{id} .cke_toolgroup a.cke_button:last-child:after,{id} .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after [background-color: {toolbarElementsBorder};border-color: {toolbarElementsBorder};] {id} a.cke_combo_button:hover,{id} a.cke_combo_button:focus,{id} .cke_combo_on a.cke_combo_button [border-color:{toolbarElementsBorder};background-color:{darkBackground};] {id} .cke_combo:after [border-color:{toolbarElementsBorder};] {id} .cke_path_item [color:{elementsPathColor};] {id} a.cke_path_item:hover,{id} a.cke_path_item:focus,{id} a.cke_path_item:active [background-color:{darkBackground};] {id}.cke_panel [border-color:{defaultBorder};] "),panel:new CKEDITOR.template(".cke_panel_grouptitle [background-color:{lightBackground};border-color:{defaultBorder};] .cke_menubutton_icon [background-color:{menubuttonIcon};] .cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active [background-color:{menubuttonHover};] .cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon [background-color:{menubuttonIconHover};] .cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon [background-color:{menubuttonIcon};] .cke_menuseparator [background-color:{menubuttonIcon};] a:hover.cke_colorbox, a:active.cke_colorbox [border-color:{defaultBorder};] a:hover.cke_colorauto, a:hover.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore [background-color:{ckeColorauto};border-color:{defaultBorder};] ")}; +return function(g,d){var a=b(g.uiColor,.4),a={id:"."+g.id,defaultBorder:b(a,-.2),toolbarElementsBorder:b(a,-.25),defaultBackground:a,lightBackground:b(a,.8),darkBackground:b(a,-.15),ckeButtonOn:b(a,.4),ckeResizer:b(a,-.4),ckeColorauto:b(a,.8),dialogBody:b(a,.7),dialogTab:b(a,.65),dialogTabSelected:"#FFF",dialogTabSelectedBorder:"#FFF",elementsPathColor:b(a,-.6),menubuttonHover:b(a,.1),menubuttonIcon:b(a,.5),menubuttonIconHover:b(a,.3)};return f[d].output(a).replace(/\[/g,"{").replace(/\]/g,"}")}}(); \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/dialog.css b/plugins/ckeditor/lib/skins/moono/dialog.css new file mode 100644 index 0000000..1d3f400 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/dialog_ie.css b/plugins/ckeditor/lib/skins/moono/dialog_ie.css new file mode 100644 index 0000000..e9b822d --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/dialog_ie7.css b/plugins/ckeditor/lib/skins/moono/dialog_ie7.css new file mode 100644 index 0000000..5015f70 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/dialog_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_title{zoom:1}.cke_dialog_footer{border-top:1px solid #bfbfbf}.cke_dialog_footer_buttons{position:static}.cke_dialog_footer_buttons a.cke_dialog_ui_button{vertical-align:top}.cke_dialog .cke_resizer_ltr{padding-left:4px}.cke_dialog .cke_resizer_rtl{padding-right:4px}.cke_dialog_ui_input_text,.cke_dialog_ui_input_password,.cke_dialog_ui_input_tel,.cke_dialog_ui_input_textarea,.cke_dialog_ui_input_select{padding:0!important}.cke_dialog_ui_checkbox_input,.cke_dialog_ui_ratio_input,.cke_btn_reset,.cke_btn_locked,.cke_btn_unlocked{border:1px solid transparent!important} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/dialog_ie8.css b/plugins/ckeditor/lib/skins/moono/dialog_ie8.css new file mode 100644 index 0000000..7ce8859 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{display:block} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/dialog_iequirks.css b/plugins/ckeditor/lib/skins/moono/dialog_iequirks.css new file mode 100644 index 0000000..2dd7f55 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}.cke_hc a.cke_dialog_tab:focus{text-decoration:underline}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/editor.css b/plugins/ckeditor/lib/skins/moono/editor.css new file mode 100644 index 0000000..b86b8a3 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}a.cke_button.cke_button_expandable{padding:4px 5px}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}@media screen and (hover:none){a.cke_button_off:hover,a.cke_button_disabled:hover{box-shadow:none;background:transparent;filter:none}a.cke_button_on:hover{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:active,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');outline:0}.cke_combo_on a.cke_combo_button:hover{box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset}.cke_combo_off a.cke_combo_button:active{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -408px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -432px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -456px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -480px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -504px !important;}.cke_button__replace_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -528px !important;}.cke_button__button_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -552px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -576px !important;}.cke_button__form_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -600px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -624px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -648px !important;}.cke_button__radio_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -672px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -696px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -720px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -744px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -816px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -840px !important;}.cke_button__iframe_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -864px !important;}.cke_button__image_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -888px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -912px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -936px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -960px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -984px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1008px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1032px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1056px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1080px !important;}.cke_button__language_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1104px !important;}.cke_button__addlayout_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1128px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1152px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1176px !important;}.cke_button__link_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1200px !important;}.cke_button__unlink_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1224px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1248px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1320px !important;}.cke_button__maximize_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1584px !important;}.cke_button__print_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1608px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1632px !important;}.cke_button__save_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1656px !important;}.cke_button__scayt_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1680px !important;}.cke_button__selectall_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1704px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1728px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1752px !important;}.cke_button__smiley_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1848px !important;}.cke_button__table_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1872px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1896px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2016px !important;}.cke_button__syntaxhighlight_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2040px !important;}.cke_button__mediaembed_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2064px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__addlayout_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2256px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2016px !important;background-size: 16px !important;}.cke_hidpi .cke_button__syntaxhighlight_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -4080px !important;}.cke_hidpi .cke_button__mediaembed_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2064px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/editor_gecko.css b/plugins/ckeditor/lib/skins/moono/editor_gecko.css new file mode 100644 index 0000000..71f6822 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}a.cke_button.cke_button_expandable{padding:4px 5px}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}@media screen and (hover:none){a.cke_button_off:hover,a.cke_button_disabled:hover{box-shadow:none;background:transparent;filter:none}a.cke_button_on:hover{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:active,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');outline:0}.cke_combo_on a.cke_combo_button:hover{box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset}.cke_combo_off a.cke_combo_button:active{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px}.cke_button__about_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -408px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -432px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -456px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -480px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -504px !important;}.cke_button__replace_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -528px !important;}.cke_button__button_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -552px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -576px !important;}.cke_button__form_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -600px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -624px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -648px !important;}.cke_button__radio_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -672px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -696px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -720px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -744px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -816px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -840px !important;}.cke_button__iframe_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -864px !important;}.cke_button__image_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -888px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -912px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -936px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -960px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -984px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1008px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1032px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1056px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1080px !important;}.cke_button__language_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1104px !important;}.cke_button__addlayout_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1128px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1152px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1176px !important;}.cke_button__link_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1200px !important;}.cke_button__unlink_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1224px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1248px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1320px !important;}.cke_button__maximize_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1584px !important;}.cke_button__print_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1608px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1632px !important;}.cke_button__save_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1656px !important;}.cke_button__scayt_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1680px !important;}.cke_button__selectall_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1704px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1728px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1752px !important;}.cke_button__smiley_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1848px !important;}.cke_button__table_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1872px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1896px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2016px !important;}.cke_button__syntaxhighlight_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2040px !important;}.cke_button__mediaembed_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2064px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__addlayout_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2256px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2016px !important;background-size: 16px !important;}.cke_hidpi .cke_button__syntaxhighlight_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -4080px !important;}.cke_hidpi .cke_button__mediaembed_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2064px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/editor_ie.css b/plugins/ckeditor/lib/skins/moono/editor_ie.css new file mode 100644 index 0000000..25e948f --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}a.cke_button.cke_button_expandable{padding:4px 5px}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}@media screen and (hover:none){a.cke_button_off:hover,a.cke_button_disabled:hover{box-shadow:none;background:transparent;filter:none}a.cke_button_on:hover{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:active,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');outline:0}.cke_combo_on a.cke_combo_button:hover{box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset}.cke_combo_off a.cke_combo_button:active{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_button__about_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -408px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -432px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -456px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -480px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -504px !important;}.cke_button__replace_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -528px !important;}.cke_button__button_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -552px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -576px !important;}.cke_button__form_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -600px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -624px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -648px !important;}.cke_button__radio_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -672px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -696px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -720px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -744px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -816px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -840px !important;}.cke_button__iframe_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -864px !important;}.cke_button__image_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -888px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -912px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -936px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -960px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -984px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1008px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1032px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1056px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1080px !important;}.cke_button__language_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1104px !important;}.cke_button__addlayout_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1128px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1152px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1176px !important;}.cke_button__link_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1200px !important;}.cke_button__unlink_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1224px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1248px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1320px !important;}.cke_button__maximize_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1584px !important;}.cke_button__print_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1608px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1632px !important;}.cke_button__save_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1656px !important;}.cke_button__scayt_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1680px !important;}.cke_button__selectall_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1704px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1728px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1752px !important;}.cke_button__smiley_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1848px !important;}.cke_button__table_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1872px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1896px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2016px !important;}.cke_button__syntaxhighlight_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2040px !important;}.cke_button__mediaembed_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2064px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__addlayout_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2256px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2016px !important;background-size: 16px !important;}.cke_hidpi .cke_button__syntaxhighlight_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -4080px !important;}.cke_hidpi .cke_button__mediaembed_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2064px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/editor_ie7.css b/plugins/ckeditor/lib/skins/moono/editor_ie7.css new file mode 100644 index 0000000..1fa1d74 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/editor_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}a.cke_button.cke_button_expandable{padding:4px 5px}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}@media screen and (hover:none){a.cke_button_off:hover,a.cke_button_disabled:hover{box-shadow:none;background:transparent;filter:none}a.cke_button_on:hover{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:active,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');outline:0}.cke_combo_on a.cke_combo_button:hover{box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset}.cke_combo_off a.cke_combo_button:active{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_toolbox{display:inline-block;padding-bottom:5px;height:100%}.cke_rtl .cke_toolbox{padding-bottom:0}.cke_toolbar{margin-bottom:5px}.cke_rtl .cke_toolbar{margin-bottom:0}.cke_toolgroup{height:26px}.cke_toolgroup,.cke_combo{position:relative}a.cke_button{float:none;vertical-align:top}.cke_toolbar_separator{display:inline-block;float:none;vertical-align:top;background-color:#c0c0c0}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_rtl .cke_button_arrow{padding-top:8px;margin-right:2px}.cke_rtl .cke_combo_inlinelabel{display:table-cell;vertical-align:middle}.cke_menubutton{display:block;height:24px}.cke_menubutton_inner{display:block;position:relative}.cke_menubutton_icon{height:16px;width:16px}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:inline-block}.cke_menubutton_label{width:auto;vertical-align:top;line-height:24px;height:24px;margin:0 10px 0 0}.cke_menuarrow{width:5px;height:6px;padding:0;position:absolute;right:8px;top:10px;background-position:0 0}.cke_rtl .cke_menubutton_icon{position:absolute;right:0;top:0}.cke_rtl .cke_menubutton_label{float:right;clear:both;margin:0 24px 0 10px}.cke_hc .cke_rtl .cke_menubutton_label{margin-right:0}.cke_rtl .cke_menuarrow{left:8px;right:auto;background-position:0 -24px}.cke_hc .cke_menuarrow{top:5px;padding:0 5px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{position:relative}.cke_wysiwyg_div{padding-top:0!important;padding-bottom:0!important}.cke_button__about_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -408px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -432px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -456px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -480px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -504px !important;}.cke_button__replace_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -528px !important;}.cke_button__button_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -552px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -576px !important;}.cke_button__form_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -600px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -624px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -648px !important;}.cke_button__radio_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -672px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -696px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -720px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -744px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -816px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -840px !important;}.cke_button__iframe_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -864px !important;}.cke_button__image_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -888px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -912px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -936px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -960px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -984px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1008px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1032px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1056px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1080px !important;}.cke_button__language_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1104px !important;}.cke_button__addlayout_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1128px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1152px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1176px !important;}.cke_button__link_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1200px !important;}.cke_button__unlink_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1224px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1248px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1320px !important;}.cke_button__maximize_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1584px !important;}.cke_button__print_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1608px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1632px !important;}.cke_button__save_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1656px !important;}.cke_button__scayt_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1680px !important;}.cke_button__selectall_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1704px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1728px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1752px !important;}.cke_button__smiley_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1848px !important;}.cke_button__table_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1872px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1896px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2016px !important;}.cke_button__syntaxhighlight_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2040px !important;}.cke_button__mediaembed_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2064px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__addlayout_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2256px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2016px !important;background-size: 16px !important;}.cke_hidpi .cke_button__syntaxhighlight_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -4080px !important;}.cke_hidpi .cke_button__mediaembed_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2064px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/editor_ie8.css b/plugins/ckeditor/lib/skins/moono/editor_ie8.css new file mode 100644 index 0000000..4be0564 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}a.cke_button.cke_button_expandable{padding:4px 5px}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}@media screen and (hover:none){a.cke_button_off:hover,a.cke_button_disabled:hover{box-shadow:none;background:transparent;filter:none}a.cke_button_on:hover{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:active,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');outline:0}.cke_combo_on a.cke_combo_button:hover{box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset}.cke_combo_off a.cke_combo_button:active{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_button__about_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -408px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -432px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -456px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -480px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -504px !important;}.cke_button__replace_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -528px !important;}.cke_button__button_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -552px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -576px !important;}.cke_button__form_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -600px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -624px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -648px !important;}.cke_button__radio_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -672px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -696px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -720px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -744px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -816px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -840px !important;}.cke_button__iframe_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -864px !important;}.cke_button__image_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -888px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -912px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -936px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -960px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -984px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1008px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1032px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1056px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1080px !important;}.cke_button__language_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1104px !important;}.cke_button__addlayout_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1128px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1152px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1176px !important;}.cke_button__link_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1200px !important;}.cke_button__unlink_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1224px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1248px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1320px !important;}.cke_button__maximize_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1584px !important;}.cke_button__print_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1608px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1632px !important;}.cke_button__save_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1656px !important;}.cke_button__scayt_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1680px !important;}.cke_button__selectall_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1704px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1728px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1752px !important;}.cke_button__smiley_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1848px !important;}.cke_button__table_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1872px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1896px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2016px !important;}.cke_button__syntaxhighlight_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2040px !important;}.cke_button__mediaembed_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2064px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__addlayout_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2256px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2016px !important;background-size: 16px !important;}.cke_hidpi .cke_button__syntaxhighlight_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -4080px !important;}.cke_hidpi .cke_button__mediaembed_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2064px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/editor_iequirks.css b/plugins/ckeditor/lib/skins/moono/editor_iequirks.css new file mode 100644 index 0000000..bed46ce --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all select[multiple] option:checked{background-color:#cecece}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}a.cke_button.cke_button_expandable{padding:4px 5px}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}@media screen and (hover:none){a.cke_button_off:hover,a.cke_button_disabled:hover{box-shadow:none;background:transparent;filter:none}a.cke_button_on:hover{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:active,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4');outline:0}.cke_combo_on a.cke_combo_button:hover{box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset}.cke_combo_off a.cke_combo_button:active{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0}.cke_button__about_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -408px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -432px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -456px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -480px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -504px !important;}.cke_button__replace_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -528px !important;}.cke_button__button_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -552px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -576px !important;}.cke_button__form_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -600px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -624px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -648px !important;}.cke_button__radio_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -672px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -696px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -720px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -744px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -816px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -840px !important;}.cke_button__iframe_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -864px !important;}.cke_button__image_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -888px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -912px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -936px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -960px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -984px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1008px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1032px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1056px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1080px !important;}.cke_button__language_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1104px !important;}.cke_button__addlayout_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1128px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1152px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1176px !important;}.cke_button__link_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1200px !important;}.cke_button__unlink_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1224px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1248px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1320px !important;}.cke_button__maximize_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1584px !important;}.cke_button__print_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1608px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1632px !important;}.cke_button__save_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1656px !important;}.cke_button__scayt_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1680px !important;}.cke_button__selectall_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1704px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1728px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1752px !important;}.cke_button__smiley_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1848px !important;}.cke_button__table_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1872px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1896px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2016px !important;}.cke_button__syntaxhighlight_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2040px !important;}.cke_button__mediaembed_icon {background: url(icons.png?t=c08cfedb60) no-repeat 0 -2064px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__addlayout_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2256px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2016px !important;background-size: 16px !important;}.cke_hidpi .cke_button__syntaxhighlight_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -4080px !important;}.cke_hidpi .cke_button__mediaembed_icon {background: url(icons_hidpi.png?t=c08cfedb60) no-repeat 0 -2064px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moono/icons.png b/plugins/ckeditor/lib/skins/moono/icons.png new file mode 100644 index 0000000..6d3839f Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/icons.png differ diff --git a/plugins/ckeditor/lib/skins/moono/icons_hidpi.png b/plugins/ckeditor/lib/skins/moono/icons_hidpi.png new file mode 100644 index 0000000..1e2fe88 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/icons_hidpi.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/anchor.png b/plugins/ckeditor/lib/skins/moono/images/anchor.png new file mode 100644 index 0000000..1c802f5 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/anchor.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/arrow.png b/plugins/ckeditor/lib/skins/moono/images/arrow.png new file mode 100644 index 0000000..d72b5f3 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/arrow.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/close.png b/plugins/ckeditor/lib/skins/moono/images/close.png new file mode 100644 index 0000000..2d02977 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/close.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/hidpi/anchor.png b/plugins/ckeditor/lib/skins/moono/images/hidpi/anchor.png new file mode 100644 index 0000000..17cca97 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/hidpi/anchor.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/hidpi/close.png b/plugins/ckeditor/lib/skins/moono/images/hidpi/close.png new file mode 100644 index 0000000..de4eedf Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/hidpi/close.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/hidpi/lock-open.png b/plugins/ckeditor/lib/skins/moono/images/hidpi/lock-open.png new file mode 100644 index 0000000..594f0d3 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/hidpi/lock-open.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/hidpi/lock.png b/plugins/ckeditor/lib/skins/moono/images/hidpi/lock.png new file mode 100644 index 0000000..1e23a0b Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/hidpi/lock.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/hidpi/refresh.png b/plugins/ckeditor/lib/skins/moono/images/hidpi/refresh.png new file mode 100644 index 0000000..42d94a9 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/hidpi/refresh.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/lock-open.png b/plugins/ckeditor/lib/skins/moono/images/lock-open.png new file mode 100644 index 0000000..7d24c5f Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/lock-open.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/lock.png b/plugins/ckeditor/lib/skins/moono/images/lock.png new file mode 100644 index 0000000..8baeaa4 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/lock.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/refresh.png b/plugins/ckeditor/lib/skins/moono/images/refresh.png new file mode 100644 index 0000000..d8106b0 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/refresh.png differ diff --git a/plugins/ckeditor/lib/skins/moono/images/spinner.gif b/plugins/ckeditor/lib/skins/moono/images/spinner.gif new file mode 100644 index 0000000..d898d41 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moono/images/spinner.gif differ diff --git a/plugins/ckeditor/lib/skins/moono/readme.md b/plugins/ckeditor/lib/skins/moono/readme.md new file mode 100644 index 0000000..ec34a73 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moono/readme.md @@ -0,0 +1,49 @@ +"Moono" Skin +==================== + +This skin has been chosen for the **default skin** of CKEditor 4.x.x (replaced by "Moono-lisa" skin since CKEditor 4.6.0), +elected from the CKEditor [skin contest](https://ckeditor.com/blog/CKEditor-4-Skin-Contest-Winner/) and further shaped by +the CKEditor team. "Moono" is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](https://ckeditor.com/docs/ckeditor4/latest/guide/skin_sdk_intro.html) +documentation. + +Features +------------------- +"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency. +It comes with the following features: + +- Chameleon feature with brightness, +- high-contrast compatibility, +- graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **icons/**: contains all skin defined icons, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG source of the skin icons. + +License +------- + +Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + +For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license) diff --git a/plugins/ckeditor/lib/skins/moonocolor/dialog.css b/plugins/ckeditor/lib/skins/moonocolor/dialog.css new file mode 100644 index 0000000..8732d52 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus,{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/dialog_ie.css b/plugins/ckeditor/lib/skins/moonocolor/dialog_ie.css new file mode 100644 index 0000000..e5b663f --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus,{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/dialog_ie7.css b/plugins/ckeditor/lib/skins/moonocolor/dialog_ie7.css new file mode 100644 index 0000000..5f84bd3 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/dialog_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus,{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_title{zoom:1}.cke_dialog_footer{border-top:1px solid #bfbfbf}.cke_dialog_footer_buttons{position:static}.cke_dialog_footer_buttons a.cke_dialog_ui_button{vertical-align:top}.cke_dialog .cke_resizer_ltr{padding-left:4px}.cke_dialog .cke_resizer_rtl{padding-right:4px}.cke_dialog_ui_input_text,.cke_dialog_ui_input_password,.cke_dialog_ui_input_textarea,.cke_dialog_ui_input_select{padding:0!important}.cke_dialog_ui_checkbox_input,.cke_dialog_ui_ratio_input,.cke_btn_reset,.cke_btn_locked,.cke_btn_unlocked{border:1px solid transparent!important} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/dialog_ie8.css b/plugins/ckeditor/lib/skins/moonocolor/dialog_ie8.css new file mode 100644 index 0000000..ead4df5 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus,{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{display:block} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/dialog_iequirks.css b/plugins/ckeditor/lib/skins/moonocolor/dialog_iequirks.css new file mode 100644 index 0000000..03977db --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus,{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/editor.css b/plugins/ckeditor/lib/skins/moonocolor/editor.css new file mode 100644 index 0000000..67b0f28 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon{background:url(icons.png) no-repeat 0 -0px!important}.cke_rtl .cke_button__anchor_icon,.cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -24px!important}.cke_ltr .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -48px!important}.cke_button__bgcolor_icon{background:url(icons.png) no-repeat 0 -72px!important}.cke_button__bidiltr_icon{background:url(icons.png) no-repeat 0 -96px!important}.cke_button__bidirtl_icon{background:url(icons.png) no-repeat 0 -120px!important}.cke_button__blockquote_icon{background:url(icons.png) no-repeat 0 -144px!important}.cke_button__bold_icon{background:url(icons.png) no-repeat 0 -168px!important}.cke_rtl .cke_button__bulletedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -192px!important}.cke_ltr .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -216px!important}.cke_button__button_icon{background:url(icons.png) no-repeat 0 -240px!important}.cke_button__checkbox_icon{background:url(icons.png) no-repeat 0 -264px!important}.cke_rtl .cke_button__copy_icon,.cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -288px!important}.cke_ltr .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -312px!important}.cke_button__creatediv_icon{background:url(icons.png) no-repeat 0 -336px!important}.cke_rtl .cke_button__cut_icon,.cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -360px!important}.cke_ltr .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -384px!important}.cke_rtl .cke_button__docprops_icon,.cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -408px!important}.cke_ltr .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -432px!important}.cke_rtl .cke_button__find_icon,.cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons.png) no-repeat 0 -456px!important}.cke_ltr .cke_button__find_icon{background:url(icons.png) no-repeat 0 -480px!important}.cke_button__flash_icon{background:url(icons.png) no-repeat 0 -504px!important}.cke_button__form_icon{background:url(icons.png) no-repeat 0 -528px!important}.cke_button__hiddenfield_icon{background:url(icons.png) no-repeat 0 -552px!important}.cke_button__horizontalrule_icon{background:url(icons.png) no-repeat 0 -576px!important}.cke_button__iframe_icon{background:url(icons.png) no-repeat 0 -600px!important}.cke_button__image_icon{background:url(icons.png) no-repeat 0 -624px!important}.cke_button__imagebutton_icon{background:url(icons.png) no-repeat 0 -648px!important}.cke_rtl .cke_button__indent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -672px!important}.cke_ltr .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -696px!important}.cke_button__italic_icon{background:url(icons.png) no-repeat 0 -720px!important}.cke_button__justifyblock_icon{background:url(icons.png) no-repeat 0 -744px!important}.cke_button__justifycenter_icon{background:url(icons.png) no-repeat 0 -768px!important}.cke_button__justifyleft_icon{background:url(icons.png) no-repeat 0 -792px!important}.cke_button__justifyright_icon{background:url(icons.png) no-repeat 0 -816px!important}.cke_button__link_icon{background:url(icons.png) no-repeat 0 -840px!important}.cke_button__maximize_icon{background:url(icons.png) no-repeat 0 -864px!important}.cke_rtl .cke_button__newpage_icon,.cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -888px!important}.cke_ltr .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -912px!important}.cke_rtl .cke_button__numberedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -936px!important}.cke_ltr .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -960px!important}.cke_rtl .cke_button__outdent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -984px!important}.cke_ltr .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -1008px!important}.cke_rtl .cke_button__pagebreak_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1032px!important}.cke_ltr .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1056px!important}.cke_rtl .cke_button__paste_icon,.cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1080px!important}.cke_ltr .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1104px!important}.cke_rtl .cke_button__pastefromword_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1128px!important}.cke_ltr .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1152px!important}.cke_rtl .cke_button__pastetext_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1176px!important}.cke_ltr .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1200px!important}.cke_button__placeholder_icon{background:url(icons.png) no-repeat 0 -1224px!important}.cke_rtl .cke_button__preview_icon,.cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1248px!important}.cke_ltr .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1272px!important}.cke_button__print_icon{background:url(icons.png) no-repeat 0 -1296px!important}.cke_button__radio_icon{background:url(icons.png) no-repeat 0 -1320px!important}.cke_rtl .cke_button__redo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1344px!important}.cke_ltr .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1368px!important}.cke_button__removeformat_icon{background:url(icons.png) no-repeat 0 -1392px!important}.cke_button__replace_icon{background:url(icons.png) no-repeat 0 -1416px!important}.cke_button__save_icon{background:url(icons.png) no-repeat 0 -1440px!important}.cke_button__scayt_icon{background:url(icons.png) no-repeat 0 -1464px!important}.cke_rtl .cke_button__select_icon,.cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1488px!important}.cke_ltr .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1512px!important}.cke_button__selectall_icon{background:url(icons.png) no-repeat 0 -1536px!important}.cke_rtl .cke_button__showblocks_icon,.cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1560px!important}.cke_ltr .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1584px!important}.cke_button__smiley_icon{background:url(icons.png) no-repeat 0 -1608px!important}.cke_rtl .cke_button__source_icon,.cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1632px!important}.cke_ltr .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1656px!important}.cke_button__specialchar_icon{background:url(icons.png) no-repeat 0 -1680px!important}.cke_button__spellchecker_icon{background:url(icons.png) no-repeat 0 -1704px!important}.cke_button__strike_icon{background:url(icons.png) no-repeat 0 -1728px!important}.cke_button__subscript_icon{background:url(icons.png) no-repeat 0 -1752px!important}.cke_button__superscript_icon{background:url(icons.png) no-repeat 0 -1776px!important}.cke_button__table_icon{background:url(icons.png) no-repeat 0 -1800px!important}.cke_rtl .cke_button__templates_icon,.cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1824px!important}.cke_ltr .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1848px!important}.cke_rtl .cke_button__textarea_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1872px!important}.cke_ltr .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1896px!important}.cke_button__textcolor_icon{background:url(icons.png) no-repeat 0 -1920px!important}.cke_rtl .cke_button__textfield_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1944px!important}.cke_ltr .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1968px!important}.cke_button__underline_icon{background:url(icons.png) no-repeat 0 -1992px!important}.cke_rtl .cke_button__undo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2016px!important}.cke_ltr .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2040px!important}.cke_button__unlink_icon{background:url(icons.png) no-repeat 0 -2064px!important}.cke_hidpi .cke_button__about_icon{background:url(icons_hidpi.png) no-repeat 0 -0px!important}.cke_rtl.cke_hidpi .cke_button__anchor_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -32px!important}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -64px!important}.cke_hidpi .cke_button__bgcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -96px!important}.cke_hidpi .cke_button__bidiltr_icon{background:url(icons_hidpi.png) no-repeat 0 -128px!important}.cke_hidpi .cke_button__bidirtl_icon{background:url(icons_hidpi.png) no-repeat 0 -160px!important}.cke_hidpi .cke_button__blockquote_icon{background:url(icons_hidpi.png) no-repeat 0 -192px!important}.cke_hidpi .cke_button__bold_icon{background:url(icons_hidpi.png) no-repeat 0 -224px!important}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -256px!important}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -288px!important}.cke_hidpi .cke_button__button_icon{background:url(icons_hidpi.png) no-repeat 0 -320px!important}.cke_hidpi .cke_button__checkbox_icon{background:url(icons_hidpi.png) no-repeat 0 -352px!important}.cke_rtl.cke_hidpi .cke_button__copy_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -384px!important}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -416px!important}.cke_hidpi .cke_button__creatediv_icon{background:url(icons_hidpi.png) no-repeat 0 -448px!important}.cke_rtl.cke_hidpi .cke_button__cut_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -480px!important}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -512px!important}.cke_rtl.cke_hidpi .cke_button__docprops_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -544px!important}.cke_hidpi .cke_ltr .cke_button__docprops_icon,.cke_ltr.cke_hidpi .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -576px!important}.cke_rtl.cke_hidpi .cke_button__find_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -608px!important}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -640px!important}.cke_hidpi .cke_button__flash_icon{background:url(icons_hidpi.png) no-repeat 0 -672px!important}.cke_hidpi .cke_button__form_icon{background:url(icons_hidpi.png) no-repeat 0 -704px!important}.cke_hidpi .cke_button__hiddenfield_icon{background:url(icons_hidpi.png) no-repeat 0 -736px!important}.cke_hidpi .cke_button__horizontalrule_icon{background:url(icons_hidpi.png) no-repeat 0 -768px!important}.cke_hidpi .cke_button__iframe_icon{background:url(icons_hidpi.png) no-repeat 0 -800px!important}.cke_hidpi .cke_button__image_icon{background:url(icons_hidpi.png) no-repeat 0 -832px!important}.cke_hidpi .cke_button__imagebutton_icon{background:url(icons_hidpi.png) no-repeat 0 -864px!important}.cke_rtl.cke_hidpi .cke_button__indent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -896px!important}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -928px!important}.cke_hidpi .cke_button__italic_icon{background:url(icons_hidpi.png) no-repeat 0 -960px!important}.cke_hidpi .cke_button__justifyblock_icon{background:url(icons_hidpi.png) no-repeat 0 -992px!important}.cke_hidpi .cke_button__justifycenter_icon{background:url(icons_hidpi.png) no-repeat 0 -1024px!important}.cke_hidpi .cke_button__justifyleft_icon{background:url(icons_hidpi.png) no-repeat 0 -1056px!important}.cke_hidpi .cke_button__justifyright_icon{background:url(icons_hidpi.png) no-repeat 0 -1088px!important}.cke_hidpi .cke_button__link_icon{background:url(icons_hidpi.png) no-repeat 0 -1120px!important}.cke_hidpi .cke_button__maximize_icon{background:url(icons_hidpi.png) no-repeat 0 -1152px!important}.cke_rtl.cke_hidpi .cke_button__newpage_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1184px!important}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1216px!important}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1248px!important}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1280px!important}.cke_rtl.cke_hidpi .cke_button__outdent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1312px!important}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1344px!important}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1376px!important}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1408px!important}.cke_rtl.cke_hidpi .cke_button__paste_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1440px!important}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1472px!important}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1504px!important}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1536px!important}.cke_rtl.cke_hidpi .cke_button__pastetext_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1568px!important}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1600px!important}.cke_hidpi .cke_button__placeholder_icon{background:url(icons_hidpi.png) no-repeat 0 -1632px!important}.cke_rtl.cke_hidpi .cke_button__preview_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1664px!important}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1696px!important}.cke_hidpi .cke_button__print_icon{background:url(icons_hidpi.png) no-repeat 0 -1728px!important}.cke_hidpi .cke_button__radio_icon{background:url(icons_hidpi.png) no-repeat 0 -1760px!important}.cke_rtl.cke_hidpi .cke_button__redo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1792px!important}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1824px!important}.cke_hidpi .cke_button__removeformat_icon{background:url(icons_hidpi.png) no-repeat 0 -1856px!important}.cke_hidpi .cke_button__replace_icon{background:url(icons_hidpi.png) no-repeat 0 -1888px!important}.cke_hidpi .cke_button__save_icon{background:url(icons_hidpi.png) no-repeat 0 -1920px!important}.cke_hidpi .cke_button__scayt_icon{background:url(icons_hidpi.png) no-repeat 0 -1952px!important}.cke_rtl.cke_hidpi .cke_button__select_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -1984px!important}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -2016px!important}.cke_hidpi .cke_button__selectall_icon{background:url(icons_hidpi.png) no-repeat 0 -2048px!important}.cke_rtl.cke_hidpi .cke_button__showblocks_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2080px!important}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2112px!important}.cke_hidpi .cke_button__smiley_icon{background:url(icons_hidpi.png) no-repeat 0 -2144px!important}.cke_rtl.cke_hidpi .cke_button__source_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2176px!important}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2208px!important}.cke_hidpi .cke_button__specialchar_icon{background:url(icons_hidpi.png) no-repeat 0 -2240px!important}.cke_hidpi .cke_button__spellchecker_icon{background:url(icons_hidpi.png) no-repeat 0 -2272px!important}.cke_hidpi .cke_button__strike_icon{background:url(icons_hidpi.png) no-repeat 0 -2304px!important}.cke_hidpi .cke_button__subscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2336px!important}.cke_hidpi .cke_button__superscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2368px!important}.cke_hidpi .cke_button__table_icon{background:url(icons_hidpi.png) no-repeat 0 -2400px!important}.cke_rtl.cke_hidpi .cke_button__templates_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2432px!important}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2464px!important}.cke_rtl.cke_hidpi .cke_button__textarea_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2496px!important}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2528px!important}.cke_hidpi .cke_button__textcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -2560px!important}.cke_rtl.cke_hidpi .cke_button__textfield_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2592px!important}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2624px!important}.cke_hidpi .cke_button__underline_icon{background:url(icons_hidpi.png) no-repeat 0 -2656px!important}.cke_rtl.cke_hidpi .cke_button__undo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2688px!important}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2720px!important}.cke_hidpi .cke_button__unlink_icon{background:url(icons_hidpi.png) no-repeat 0 -2752px!important} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/editor_gecko.css b/plugins/ckeditor/lib/skins/moonocolor/editor_gecko.css new file mode 100644 index 0000000..55e3215 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon{background:url(icons.png) no-repeat 0 -0px!important}.cke_rtl .cke_button__anchor_icon,.cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -24px!important}.cke_ltr .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -48px!important}.cke_button__bgcolor_icon{background:url(icons.png) no-repeat 0 -72px!important}.cke_button__bidiltr_icon{background:url(icons.png) no-repeat 0 -96px!important}.cke_button__bidirtl_icon{background:url(icons.png) no-repeat 0 -120px!important}.cke_button__blockquote_icon{background:url(icons.png) no-repeat 0 -144px!important}.cke_button__bold_icon{background:url(icons.png) no-repeat 0 -168px!important}.cke_rtl .cke_button__bulletedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -192px!important}.cke_ltr .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -216px!important}.cke_button__button_icon{background:url(icons.png) no-repeat 0 -240px!important}.cke_button__checkbox_icon{background:url(icons.png) no-repeat 0 -264px!important}.cke_rtl .cke_button__copy_icon,.cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -288px!important}.cke_ltr .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -312px!important}.cke_button__creatediv_icon{background:url(icons.png) no-repeat 0 -336px!important}.cke_rtl .cke_button__cut_icon,.cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -360px!important}.cke_ltr .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -384px!important}.cke_rtl .cke_button__docprops_icon,.cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -408px!important}.cke_ltr .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -432px!important}.cke_rtl .cke_button__find_icon,.cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons.png) no-repeat 0 -456px!important}.cke_ltr .cke_button__find_icon{background:url(icons.png) no-repeat 0 -480px!important}.cke_button__flash_icon{background:url(icons.png) no-repeat 0 -504px!important}.cke_button__form_icon{background:url(icons.png) no-repeat 0 -528px!important}.cke_button__hiddenfield_icon{background:url(icons.png) no-repeat 0 -552px!important}.cke_button__horizontalrule_icon{background:url(icons.png) no-repeat 0 -576px!important}.cke_button__iframe_icon{background:url(icons.png) no-repeat 0 -600px!important}.cke_button__image_icon{background:url(icons.png) no-repeat 0 -624px!important}.cke_button__imagebutton_icon{background:url(icons.png) no-repeat 0 -648px!important}.cke_rtl .cke_button__indent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -672px!important}.cke_ltr .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -696px!important}.cke_button__italic_icon{background:url(icons.png) no-repeat 0 -720px!important}.cke_button__justifyblock_icon{background:url(icons.png) no-repeat 0 -744px!important}.cke_button__justifycenter_icon{background:url(icons.png) no-repeat 0 -768px!important}.cke_button__justifyleft_icon{background:url(icons.png) no-repeat 0 -792px!important}.cke_button__justifyright_icon{background:url(icons.png) no-repeat 0 -816px!important}.cke_button__link_icon{background:url(icons.png) no-repeat 0 -840px!important}.cke_button__maximize_icon{background:url(icons.png) no-repeat 0 -864px!important}.cke_rtl .cke_button__newpage_icon,.cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -888px!important}.cke_ltr .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -912px!important}.cke_rtl .cke_button__numberedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -936px!important}.cke_ltr .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -960px!important}.cke_rtl .cke_button__outdent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -984px!important}.cke_ltr .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -1008px!important}.cke_rtl .cke_button__pagebreak_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1032px!important}.cke_ltr .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1056px!important}.cke_rtl .cke_button__paste_icon,.cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1080px!important}.cke_ltr .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1104px!important}.cke_rtl .cke_button__pastefromword_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1128px!important}.cke_ltr .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1152px!important}.cke_rtl .cke_button__pastetext_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1176px!important}.cke_ltr .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1200px!important}.cke_button__placeholder_icon{background:url(icons.png) no-repeat 0 -1224px!important}.cke_rtl .cke_button__preview_icon,.cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1248px!important}.cke_ltr .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1272px!important}.cke_button__print_icon{background:url(icons.png) no-repeat 0 -1296px!important}.cke_button__radio_icon{background:url(icons.png) no-repeat 0 -1320px!important}.cke_rtl .cke_button__redo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1344px!important}.cke_ltr .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1368px!important}.cke_button__removeformat_icon{background:url(icons.png) no-repeat 0 -1392px!important}.cke_button__replace_icon{background:url(icons.png) no-repeat 0 -1416px!important}.cke_button__save_icon{background:url(icons.png) no-repeat 0 -1440px!important}.cke_button__scayt_icon{background:url(icons.png) no-repeat 0 -1464px!important}.cke_rtl .cke_button__select_icon,.cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1488px!important}.cke_ltr .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1512px!important}.cke_button__selectall_icon{background:url(icons.png) no-repeat 0 -1536px!important}.cke_rtl .cke_button__showblocks_icon,.cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1560px!important}.cke_ltr .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1584px!important}.cke_button__smiley_icon{background:url(icons.png) no-repeat 0 -1608px!important}.cke_rtl .cke_button__source_icon,.cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1632px!important}.cke_ltr .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1656px!important}.cke_button__specialchar_icon{background:url(icons.png) no-repeat 0 -1680px!important}.cke_button__spellchecker_icon{background:url(icons.png) no-repeat 0 -1704px!important}.cke_button__strike_icon{background:url(icons.png) no-repeat 0 -1728px!important}.cke_button__subscript_icon{background:url(icons.png) no-repeat 0 -1752px!important}.cke_button__superscript_icon{background:url(icons.png) no-repeat 0 -1776px!important}.cke_button__table_icon{background:url(icons.png) no-repeat 0 -1800px!important}.cke_rtl .cke_button__templates_icon,.cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1824px!important}.cke_ltr .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1848px!important}.cke_rtl .cke_button__textarea_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1872px!important}.cke_ltr .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1896px!important}.cke_button__textcolor_icon{background:url(icons.png) no-repeat 0 -1920px!important}.cke_rtl .cke_button__textfield_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1944px!important}.cke_ltr .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1968px!important}.cke_button__underline_icon{background:url(icons.png) no-repeat 0 -1992px!important}.cke_rtl .cke_button__undo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2016px!important}.cke_ltr .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2040px!important}.cke_button__unlink_icon{background:url(icons.png) no-repeat 0 -2064px!important}.cke_hidpi .cke_button__about_icon{background:url(icons_hidpi.png) no-repeat 0 -0px!important}.cke_rtl.cke_hidpi .cke_button__anchor_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -32px!important}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -64px!important}.cke_hidpi .cke_button__bgcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -96px!important}.cke_hidpi .cke_button__bidiltr_icon{background:url(icons_hidpi.png) no-repeat 0 -128px!important}.cke_hidpi .cke_button__bidirtl_icon{background:url(icons_hidpi.png) no-repeat 0 -160px!important}.cke_hidpi .cke_button__blockquote_icon{background:url(icons_hidpi.png) no-repeat 0 -192px!important}.cke_hidpi .cke_button__bold_icon{background:url(icons_hidpi.png) no-repeat 0 -224px!important}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -256px!important}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -288px!important}.cke_hidpi .cke_button__button_icon{background:url(icons_hidpi.png) no-repeat 0 -320px!important}.cke_hidpi .cke_button__checkbox_icon{background:url(icons_hidpi.png) no-repeat 0 -352px!important}.cke_rtl.cke_hidpi .cke_button__copy_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -384px!important}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -416px!important}.cke_hidpi .cke_button__creatediv_icon{background:url(icons_hidpi.png) no-repeat 0 -448px!important}.cke_rtl.cke_hidpi .cke_button__cut_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -480px!important}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -512px!important}.cke_rtl.cke_hidpi .cke_button__docprops_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -544px!important}.cke_hidpi .cke_ltr .cke_button__docprops_icon,.cke_ltr.cke_hidpi .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -576px!important}.cke_rtl.cke_hidpi .cke_button__find_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -608px!important}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -640px!important}.cke_hidpi .cke_button__flash_icon{background:url(icons_hidpi.png) no-repeat 0 -672px!important}.cke_hidpi .cke_button__form_icon{background:url(icons_hidpi.png) no-repeat 0 -704px!important}.cke_hidpi .cke_button__hiddenfield_icon{background:url(icons_hidpi.png) no-repeat 0 -736px!important}.cke_hidpi .cke_button__horizontalrule_icon{background:url(icons_hidpi.png) no-repeat 0 -768px!important}.cke_hidpi .cke_button__iframe_icon{background:url(icons_hidpi.png) no-repeat 0 -800px!important}.cke_hidpi .cke_button__image_icon{background:url(icons_hidpi.png) no-repeat 0 -832px!important}.cke_hidpi .cke_button__imagebutton_icon{background:url(icons_hidpi.png) no-repeat 0 -864px!important}.cke_rtl.cke_hidpi .cke_button__indent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -896px!important}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -928px!important}.cke_hidpi .cke_button__italic_icon{background:url(icons_hidpi.png) no-repeat 0 -960px!important}.cke_hidpi .cke_button__justifyblock_icon{background:url(icons_hidpi.png) no-repeat 0 -992px!important}.cke_hidpi .cke_button__justifycenter_icon{background:url(icons_hidpi.png) no-repeat 0 -1024px!important}.cke_hidpi .cke_button__justifyleft_icon{background:url(icons_hidpi.png) no-repeat 0 -1056px!important}.cke_hidpi .cke_button__justifyright_icon{background:url(icons_hidpi.png) no-repeat 0 -1088px!important}.cke_hidpi .cke_button__link_icon{background:url(icons_hidpi.png) no-repeat 0 -1120px!important}.cke_hidpi .cke_button__maximize_icon{background:url(icons_hidpi.png) no-repeat 0 -1152px!important}.cke_rtl.cke_hidpi .cke_button__newpage_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1184px!important}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1216px!important}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1248px!important}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1280px!important}.cke_rtl.cke_hidpi .cke_button__outdent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1312px!important}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1344px!important}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1376px!important}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1408px!important}.cke_rtl.cke_hidpi .cke_button__paste_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1440px!important}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1472px!important}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1504px!important}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1536px!important}.cke_rtl.cke_hidpi .cke_button__pastetext_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1568px!important}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1600px!important}.cke_hidpi .cke_button__placeholder_icon{background:url(icons_hidpi.png) no-repeat 0 -1632px!important}.cke_rtl.cke_hidpi .cke_button__preview_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1664px!important}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1696px!important}.cke_hidpi .cke_button__print_icon{background:url(icons_hidpi.png) no-repeat 0 -1728px!important}.cke_hidpi .cke_button__radio_icon{background:url(icons_hidpi.png) no-repeat 0 -1760px!important}.cke_rtl.cke_hidpi .cke_button__redo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1792px!important}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1824px!important}.cke_hidpi .cke_button__removeformat_icon{background:url(icons_hidpi.png) no-repeat 0 -1856px!important}.cke_hidpi .cke_button__replace_icon{background:url(icons_hidpi.png) no-repeat 0 -1888px!important}.cke_hidpi .cke_button__save_icon{background:url(icons_hidpi.png) no-repeat 0 -1920px!important}.cke_hidpi .cke_button__scayt_icon{background:url(icons_hidpi.png) no-repeat 0 -1952px!important}.cke_rtl.cke_hidpi .cke_button__select_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -1984px!important}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -2016px!important}.cke_hidpi .cke_button__selectall_icon{background:url(icons_hidpi.png) no-repeat 0 -2048px!important}.cke_rtl.cke_hidpi .cke_button__showblocks_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2080px!important}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2112px!important}.cke_hidpi .cke_button__smiley_icon{background:url(icons_hidpi.png) no-repeat 0 -2144px!important}.cke_rtl.cke_hidpi .cke_button__source_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2176px!important}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2208px!important}.cke_hidpi .cke_button__specialchar_icon{background:url(icons_hidpi.png) no-repeat 0 -2240px!important}.cke_hidpi .cke_button__spellchecker_icon{background:url(icons_hidpi.png) no-repeat 0 -2272px!important}.cke_hidpi .cke_button__strike_icon{background:url(icons_hidpi.png) no-repeat 0 -2304px!important}.cke_hidpi .cke_button__subscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2336px!important}.cke_hidpi .cke_button__superscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2368px!important}.cke_hidpi .cke_button__table_icon{background:url(icons_hidpi.png) no-repeat 0 -2400px!important}.cke_rtl.cke_hidpi .cke_button__templates_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2432px!important}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2464px!important}.cke_rtl.cke_hidpi .cke_button__textarea_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2496px!important}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2528px!important}.cke_hidpi .cke_button__textcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -2560px!important}.cke_rtl.cke_hidpi .cke_button__textfield_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2592px!important}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2624px!important}.cke_hidpi .cke_button__underline_icon{background:url(icons_hidpi.png) no-repeat 0 -2656px!important}.cke_rtl.cke_hidpi .cke_button__undo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2688px!important}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2720px!important}.cke_hidpi .cke_button__unlink_icon{background:url(icons_hidpi.png) no-repeat 0 -2752px!important}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/editor_ie.css b/plugins/ckeditor/lib/skins/moonocolor/editor_ie.css new file mode 100644 index 0000000..5fa57f5 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon{background:url(icons.png) no-repeat 0 -0px!important}.cke_rtl .cke_button__anchor_icon,.cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -24px!important}.cke_ltr .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -48px!important}.cke_button__bgcolor_icon{background:url(icons.png) no-repeat 0 -72px!important}.cke_button__bidiltr_icon{background:url(icons.png) no-repeat 0 -96px!important}.cke_button__bidirtl_icon{background:url(icons.png) no-repeat 0 -120px!important}.cke_button__blockquote_icon{background:url(icons.png) no-repeat 0 -144px!important}.cke_button__bold_icon{background:url(icons.png) no-repeat 0 -168px!important}.cke_rtl .cke_button__bulletedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -192px!important}.cke_ltr .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -216px!important}.cke_button__button_icon{background:url(icons.png) no-repeat 0 -240px!important}.cke_button__checkbox_icon{background:url(icons.png) no-repeat 0 -264px!important}.cke_rtl .cke_button__copy_icon,.cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -288px!important}.cke_ltr .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -312px!important}.cke_button__creatediv_icon{background:url(icons.png) no-repeat 0 -336px!important}.cke_rtl .cke_button__cut_icon,.cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -360px!important}.cke_ltr .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -384px!important}.cke_rtl .cke_button__docprops_icon,.cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -408px!important}.cke_ltr .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -432px!important}.cke_rtl .cke_button__find_icon,.cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons.png) no-repeat 0 -456px!important}.cke_ltr .cke_button__find_icon{background:url(icons.png) no-repeat 0 -480px!important}.cke_button__flash_icon{background:url(icons.png) no-repeat 0 -504px!important}.cke_button__form_icon{background:url(icons.png) no-repeat 0 -528px!important}.cke_button__hiddenfield_icon{background:url(icons.png) no-repeat 0 -552px!important}.cke_button__horizontalrule_icon{background:url(icons.png) no-repeat 0 -576px!important}.cke_button__iframe_icon{background:url(icons.png) no-repeat 0 -600px!important}.cke_button__image_icon{background:url(icons.png) no-repeat 0 -624px!important}.cke_button__imagebutton_icon{background:url(icons.png) no-repeat 0 -648px!important}.cke_rtl .cke_button__indent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -672px!important}.cke_ltr .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -696px!important}.cke_button__italic_icon{background:url(icons.png) no-repeat 0 -720px!important}.cke_button__justifyblock_icon{background:url(icons.png) no-repeat 0 -744px!important}.cke_button__justifycenter_icon{background:url(icons.png) no-repeat 0 -768px!important}.cke_button__justifyleft_icon{background:url(icons.png) no-repeat 0 -792px!important}.cke_button__justifyright_icon{background:url(icons.png) no-repeat 0 -816px!important}.cke_button__link_icon{background:url(icons.png) no-repeat 0 -840px!important}.cke_button__maximize_icon{background:url(icons.png) no-repeat 0 -864px!important}.cke_rtl .cke_button__newpage_icon,.cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -888px!important}.cke_ltr .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -912px!important}.cke_rtl .cke_button__numberedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -936px!important}.cke_ltr .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -960px!important}.cke_rtl .cke_button__outdent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -984px!important}.cke_ltr .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -1008px!important}.cke_rtl .cke_button__pagebreak_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1032px!important}.cke_ltr .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1056px!important}.cke_rtl .cke_button__paste_icon,.cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1080px!important}.cke_ltr .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1104px!important}.cke_rtl .cke_button__pastefromword_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1128px!important}.cke_ltr .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1152px!important}.cke_rtl .cke_button__pastetext_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1176px!important}.cke_ltr .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1200px!important}.cke_button__placeholder_icon{background:url(icons.png) no-repeat 0 -1224px!important}.cke_rtl .cke_button__preview_icon,.cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1248px!important}.cke_ltr .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1272px!important}.cke_button__print_icon{background:url(icons.png) no-repeat 0 -1296px!important}.cke_button__radio_icon{background:url(icons.png) no-repeat 0 -1320px!important}.cke_rtl .cke_button__redo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1344px!important}.cke_ltr .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1368px!important}.cke_button__removeformat_icon{background:url(icons.png) no-repeat 0 -1392px!important}.cke_button__replace_icon{background:url(icons.png) no-repeat 0 -1416px!important}.cke_button__save_icon{background:url(icons.png) no-repeat 0 -1440px!important}.cke_button__scayt_icon{background:url(icons.png) no-repeat 0 -1464px!important}.cke_rtl .cke_button__select_icon,.cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1488px!important}.cke_ltr .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1512px!important}.cke_button__selectall_icon{background:url(icons.png) no-repeat 0 -1536px!important}.cke_rtl .cke_button__showblocks_icon,.cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1560px!important}.cke_ltr .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1584px!important}.cke_button__smiley_icon{background:url(icons.png) no-repeat 0 -1608px!important}.cke_rtl .cke_button__source_icon,.cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1632px!important}.cke_ltr .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1656px!important}.cke_button__specialchar_icon{background:url(icons.png) no-repeat 0 -1680px!important}.cke_button__spellchecker_icon{background:url(icons.png) no-repeat 0 -1704px!important}.cke_button__strike_icon{background:url(icons.png) no-repeat 0 -1728px!important}.cke_button__subscript_icon{background:url(icons.png) no-repeat 0 -1752px!important}.cke_button__superscript_icon{background:url(icons.png) no-repeat 0 -1776px!important}.cke_button__table_icon{background:url(icons.png) no-repeat 0 -1800px!important}.cke_rtl .cke_button__templates_icon,.cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1824px!important}.cke_ltr .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1848px!important}.cke_rtl .cke_button__textarea_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1872px!important}.cke_ltr .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1896px!important}.cke_button__textcolor_icon{background:url(icons.png) no-repeat 0 -1920px!important}.cke_rtl .cke_button__textfield_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1944px!important}.cke_ltr .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1968px!important}.cke_button__underline_icon{background:url(icons.png) no-repeat 0 -1992px!important}.cke_rtl .cke_button__undo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2016px!important}.cke_ltr .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2040px!important}.cke_button__unlink_icon{background:url(icons.png) no-repeat 0 -2064px!important}.cke_hidpi .cke_button__about_icon{background:url(icons_hidpi.png) no-repeat 0 -0px!important}.cke_rtl.cke_hidpi .cke_button__anchor_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -32px!important}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -64px!important}.cke_hidpi .cke_button__bgcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -96px!important}.cke_hidpi .cke_button__bidiltr_icon{background:url(icons_hidpi.png) no-repeat 0 -128px!important}.cke_hidpi .cke_button__bidirtl_icon{background:url(icons_hidpi.png) no-repeat 0 -160px!important}.cke_hidpi .cke_button__blockquote_icon{background:url(icons_hidpi.png) no-repeat 0 -192px!important}.cke_hidpi .cke_button__bold_icon{background:url(icons_hidpi.png) no-repeat 0 -224px!important}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -256px!important}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -288px!important}.cke_hidpi .cke_button__button_icon{background:url(icons_hidpi.png) no-repeat 0 -320px!important}.cke_hidpi .cke_button__checkbox_icon{background:url(icons_hidpi.png) no-repeat 0 -352px!important}.cke_rtl.cke_hidpi .cke_button__copy_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -384px!important}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -416px!important}.cke_hidpi .cke_button__creatediv_icon{background:url(icons_hidpi.png) no-repeat 0 -448px!important}.cke_rtl.cke_hidpi .cke_button__cut_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -480px!important}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -512px!important}.cke_rtl.cke_hidpi .cke_button__docprops_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -544px!important}.cke_hidpi .cke_ltr .cke_button__docprops_icon,.cke_ltr.cke_hidpi .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -576px!important}.cke_rtl.cke_hidpi .cke_button__find_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -608px!important}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -640px!important}.cke_hidpi .cke_button__flash_icon{background:url(icons_hidpi.png) no-repeat 0 -672px!important}.cke_hidpi .cke_button__form_icon{background:url(icons_hidpi.png) no-repeat 0 -704px!important}.cke_hidpi .cke_button__hiddenfield_icon{background:url(icons_hidpi.png) no-repeat 0 -736px!important}.cke_hidpi .cke_button__horizontalrule_icon{background:url(icons_hidpi.png) no-repeat 0 -768px!important}.cke_hidpi .cke_button__iframe_icon{background:url(icons_hidpi.png) no-repeat 0 -800px!important}.cke_hidpi .cke_button__image_icon{background:url(icons_hidpi.png) no-repeat 0 -832px!important}.cke_hidpi .cke_button__imagebutton_icon{background:url(icons_hidpi.png) no-repeat 0 -864px!important}.cke_rtl.cke_hidpi .cke_button__indent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -896px!important}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -928px!important}.cke_hidpi .cke_button__italic_icon{background:url(icons_hidpi.png) no-repeat 0 -960px!important}.cke_hidpi .cke_button__justifyblock_icon{background:url(icons_hidpi.png) no-repeat 0 -992px!important}.cke_hidpi .cke_button__justifycenter_icon{background:url(icons_hidpi.png) no-repeat 0 -1024px!important}.cke_hidpi .cke_button__justifyleft_icon{background:url(icons_hidpi.png) no-repeat 0 -1056px!important}.cke_hidpi .cke_button__justifyright_icon{background:url(icons_hidpi.png) no-repeat 0 -1088px!important}.cke_hidpi .cke_button__link_icon{background:url(icons_hidpi.png) no-repeat 0 -1120px!important}.cke_hidpi .cke_button__maximize_icon{background:url(icons_hidpi.png) no-repeat 0 -1152px!important}.cke_rtl.cke_hidpi .cke_button__newpage_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1184px!important}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1216px!important}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1248px!important}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1280px!important}.cke_rtl.cke_hidpi .cke_button__outdent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1312px!important}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1344px!important}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1376px!important}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1408px!important}.cke_rtl.cke_hidpi .cke_button__paste_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1440px!important}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1472px!important}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1504px!important}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1536px!important}.cke_rtl.cke_hidpi .cke_button__pastetext_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1568px!important}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1600px!important}.cke_hidpi .cke_button__placeholder_icon{background:url(icons_hidpi.png) no-repeat 0 -1632px!important}.cke_rtl.cke_hidpi .cke_button__preview_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1664px!important}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1696px!important}.cke_hidpi .cke_button__print_icon{background:url(icons_hidpi.png) no-repeat 0 -1728px!important}.cke_hidpi .cke_button__radio_icon{background:url(icons_hidpi.png) no-repeat 0 -1760px!important}.cke_rtl.cke_hidpi .cke_button__redo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1792px!important}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1824px!important}.cke_hidpi .cke_button__removeformat_icon{background:url(icons_hidpi.png) no-repeat 0 -1856px!important}.cke_hidpi .cke_button__replace_icon{background:url(icons_hidpi.png) no-repeat 0 -1888px!important}.cke_hidpi .cke_button__save_icon{background:url(icons_hidpi.png) no-repeat 0 -1920px!important}.cke_hidpi .cke_button__scayt_icon{background:url(icons_hidpi.png) no-repeat 0 -1952px!important}.cke_rtl.cke_hidpi .cke_button__select_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -1984px!important}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -2016px!important}.cke_hidpi .cke_button__selectall_icon{background:url(icons_hidpi.png) no-repeat 0 -2048px!important}.cke_rtl.cke_hidpi .cke_button__showblocks_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2080px!important}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2112px!important}.cke_hidpi .cke_button__smiley_icon{background:url(icons_hidpi.png) no-repeat 0 -2144px!important}.cke_rtl.cke_hidpi .cke_button__source_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2176px!important}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2208px!important}.cke_hidpi .cke_button__specialchar_icon{background:url(icons_hidpi.png) no-repeat 0 -2240px!important}.cke_hidpi .cke_button__spellchecker_icon{background:url(icons_hidpi.png) no-repeat 0 -2272px!important}.cke_hidpi .cke_button__strike_icon{background:url(icons_hidpi.png) no-repeat 0 -2304px!important}.cke_hidpi .cke_button__subscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2336px!important}.cke_hidpi .cke_button__superscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2368px!important}.cke_hidpi .cke_button__table_icon{background:url(icons_hidpi.png) no-repeat 0 -2400px!important}.cke_rtl.cke_hidpi .cke_button__templates_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2432px!important}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2464px!important}.cke_rtl.cke_hidpi .cke_button__textarea_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2496px!important}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2528px!important}.cke_hidpi .cke_button__textcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -2560px!important}.cke_rtl.cke_hidpi .cke_button__textfield_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2592px!important}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2624px!important}.cke_hidpi .cke_button__underline_icon{background:url(icons_hidpi.png) no-repeat 0 -2656px!important}.cke_rtl.cke_hidpi .cke_button__undo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2688px!important}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2720px!important}.cke_hidpi .cke_button__unlink_icon{background:url(icons_hidpi.png) no-repeat 0 -2752px!important}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/editor_ie7.css b/plugins/ckeditor/lib/skins/moonocolor/editor_ie7.css new file mode 100644 index 0000000..7a669d3 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/editor_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon{background:url(icons.png) no-repeat 0 -0px!important}.cke_rtl .cke_button__anchor_icon,.cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -24px!important}.cke_ltr .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -48px!important}.cke_button__bgcolor_icon{background:url(icons.png) no-repeat 0 -72px!important}.cke_button__bidiltr_icon{background:url(icons.png) no-repeat 0 -96px!important}.cke_button__bidirtl_icon{background:url(icons.png) no-repeat 0 -120px!important}.cke_button__blockquote_icon{background:url(icons.png) no-repeat 0 -144px!important}.cke_button__bold_icon{background:url(icons.png) no-repeat 0 -168px!important}.cke_rtl .cke_button__bulletedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -192px!important}.cke_ltr .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -216px!important}.cke_button__button_icon{background:url(icons.png) no-repeat 0 -240px!important}.cke_button__checkbox_icon{background:url(icons.png) no-repeat 0 -264px!important}.cke_rtl .cke_button__copy_icon,.cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -288px!important}.cke_ltr .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -312px!important}.cke_button__creatediv_icon{background:url(icons.png) no-repeat 0 -336px!important}.cke_rtl .cke_button__cut_icon,.cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -360px!important}.cke_ltr .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -384px!important}.cke_rtl .cke_button__docprops_icon,.cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -408px!important}.cke_ltr .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -432px!important}.cke_rtl .cke_button__find_icon,.cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons.png) no-repeat 0 -456px!important}.cke_ltr .cke_button__find_icon{background:url(icons.png) no-repeat 0 -480px!important}.cke_button__flash_icon{background:url(icons.png) no-repeat 0 -504px!important}.cke_button__form_icon{background:url(icons.png) no-repeat 0 -528px!important}.cke_button__hiddenfield_icon{background:url(icons.png) no-repeat 0 -552px!important}.cke_button__horizontalrule_icon{background:url(icons.png) no-repeat 0 -576px!important}.cke_button__iframe_icon{background:url(icons.png) no-repeat 0 -600px!important}.cke_button__image_icon{background:url(icons.png) no-repeat 0 -624px!important}.cke_button__imagebutton_icon{background:url(icons.png) no-repeat 0 -648px!important}.cke_rtl .cke_button__indent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -672px!important}.cke_ltr .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -696px!important}.cke_button__italic_icon{background:url(icons.png) no-repeat 0 -720px!important}.cke_button__justifyblock_icon{background:url(icons.png) no-repeat 0 -744px!important}.cke_button__justifycenter_icon{background:url(icons.png) no-repeat 0 -768px!important}.cke_button__justifyleft_icon{background:url(icons.png) no-repeat 0 -792px!important}.cke_button__justifyright_icon{background:url(icons.png) no-repeat 0 -816px!important}.cke_button__link_icon{background:url(icons.png) no-repeat 0 -840px!important}.cke_button__maximize_icon{background:url(icons.png) no-repeat 0 -864px!important}.cke_rtl .cke_button__newpage_icon,.cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -888px!important}.cke_ltr .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -912px!important}.cke_rtl .cke_button__numberedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -936px!important}.cke_ltr .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -960px!important}.cke_rtl .cke_button__outdent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -984px!important}.cke_ltr .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -1008px!important}.cke_rtl .cke_button__pagebreak_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1032px!important}.cke_ltr .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1056px!important}.cke_rtl .cke_button__paste_icon,.cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1080px!important}.cke_ltr .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1104px!important}.cke_rtl .cke_button__pastefromword_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1128px!important}.cke_ltr .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1152px!important}.cke_rtl .cke_button__pastetext_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1176px!important}.cke_ltr .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1200px!important}.cke_button__placeholder_icon{background:url(icons.png) no-repeat 0 -1224px!important}.cke_rtl .cke_button__preview_icon,.cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1248px!important}.cke_ltr .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1272px!important}.cke_button__print_icon{background:url(icons.png) no-repeat 0 -1296px!important}.cke_button__radio_icon{background:url(icons.png) no-repeat 0 -1320px!important}.cke_rtl .cke_button__redo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1344px!important}.cke_ltr .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1368px!important}.cke_button__removeformat_icon{background:url(icons.png) no-repeat 0 -1392px!important}.cke_button__replace_icon{background:url(icons.png) no-repeat 0 -1416px!important}.cke_button__save_icon{background:url(icons.png) no-repeat 0 -1440px!important}.cke_button__scayt_icon{background:url(icons.png) no-repeat 0 -1464px!important}.cke_rtl .cke_button__select_icon,.cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1488px!important}.cke_ltr .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1512px!important}.cke_button__selectall_icon{background:url(icons.png) no-repeat 0 -1536px!important}.cke_rtl .cke_button__showblocks_icon,.cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1560px!important}.cke_ltr .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1584px!important}.cke_button__smiley_icon{background:url(icons.png) no-repeat 0 -1608px!important}.cke_rtl .cke_button__source_icon,.cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1632px!important}.cke_ltr .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1656px!important}.cke_button__specialchar_icon{background:url(icons.png) no-repeat 0 -1680px!important}.cke_button__spellchecker_icon{background:url(icons.png) no-repeat 0 -1704px!important}.cke_button__strike_icon{background:url(icons.png) no-repeat 0 -1728px!important}.cke_button__subscript_icon{background:url(icons.png) no-repeat 0 -1752px!important}.cke_button__superscript_icon{background:url(icons.png) no-repeat 0 -1776px!important}.cke_button__table_icon{background:url(icons.png) no-repeat 0 -1800px!important}.cke_rtl .cke_button__templates_icon,.cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1824px!important}.cke_ltr .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1848px!important}.cke_rtl .cke_button__textarea_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1872px!important}.cke_ltr .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1896px!important}.cke_button__textcolor_icon{background:url(icons.png) no-repeat 0 -1920px!important}.cke_rtl .cke_button__textfield_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1944px!important}.cke_ltr .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1968px!important}.cke_button__underline_icon{background:url(icons.png) no-repeat 0 -1992px!important}.cke_rtl .cke_button__undo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2016px!important}.cke_ltr .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2040px!important}.cke_button__unlink_icon{background:url(icons.png) no-repeat 0 -2064px!important}.cke_hidpi .cke_button__about_icon{background:url(icons_hidpi.png) no-repeat 0 -0px!important}.cke_rtl.cke_hidpi .cke_button__anchor_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -32px!important}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -64px!important}.cke_hidpi .cke_button__bgcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -96px!important}.cke_hidpi .cke_button__bidiltr_icon{background:url(icons_hidpi.png) no-repeat 0 -128px!important}.cke_hidpi .cke_button__bidirtl_icon{background:url(icons_hidpi.png) no-repeat 0 -160px!important}.cke_hidpi .cke_button__blockquote_icon{background:url(icons_hidpi.png) no-repeat 0 -192px!important}.cke_hidpi .cke_button__bold_icon{background:url(icons_hidpi.png) no-repeat 0 -224px!important}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -256px!important}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -288px!important}.cke_hidpi .cke_button__button_icon{background:url(icons_hidpi.png) no-repeat 0 -320px!important}.cke_hidpi .cke_button__checkbox_icon{background:url(icons_hidpi.png) no-repeat 0 -352px!important}.cke_rtl.cke_hidpi .cke_button__copy_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -384px!important}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -416px!important}.cke_hidpi .cke_button__creatediv_icon{background:url(icons_hidpi.png) no-repeat 0 -448px!important}.cke_rtl.cke_hidpi .cke_button__cut_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -480px!important}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -512px!important}.cke_rtl.cke_hidpi .cke_button__docprops_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -544px!important}.cke_hidpi .cke_ltr .cke_button__docprops_icon,.cke_ltr.cke_hidpi .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -576px!important}.cke_rtl.cke_hidpi .cke_button__find_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -608px!important}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -640px!important}.cke_hidpi .cke_button__flash_icon{background:url(icons_hidpi.png) no-repeat 0 -672px!important}.cke_hidpi .cke_button__form_icon{background:url(icons_hidpi.png) no-repeat 0 -704px!important}.cke_hidpi .cke_button__hiddenfield_icon{background:url(icons_hidpi.png) no-repeat 0 -736px!important}.cke_hidpi .cke_button__horizontalrule_icon{background:url(icons_hidpi.png) no-repeat 0 -768px!important}.cke_hidpi .cke_button__iframe_icon{background:url(icons_hidpi.png) no-repeat 0 -800px!important}.cke_hidpi .cke_button__image_icon{background:url(icons_hidpi.png) no-repeat 0 -832px!important}.cke_hidpi .cke_button__imagebutton_icon{background:url(icons_hidpi.png) no-repeat 0 -864px!important}.cke_rtl.cke_hidpi .cke_button__indent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -896px!important}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -928px!important}.cke_hidpi .cke_button__italic_icon{background:url(icons_hidpi.png) no-repeat 0 -960px!important}.cke_hidpi .cke_button__justifyblock_icon{background:url(icons_hidpi.png) no-repeat 0 -992px!important}.cke_hidpi .cke_button__justifycenter_icon{background:url(icons_hidpi.png) no-repeat 0 -1024px!important}.cke_hidpi .cke_button__justifyleft_icon{background:url(icons_hidpi.png) no-repeat 0 -1056px!important}.cke_hidpi .cke_button__justifyright_icon{background:url(icons_hidpi.png) no-repeat 0 -1088px!important}.cke_hidpi .cke_button__link_icon{background:url(icons_hidpi.png) no-repeat 0 -1120px!important}.cke_hidpi .cke_button__maximize_icon{background:url(icons_hidpi.png) no-repeat 0 -1152px!important}.cke_rtl.cke_hidpi .cke_button__newpage_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1184px!important}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1216px!important}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1248px!important}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1280px!important}.cke_rtl.cke_hidpi .cke_button__outdent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1312px!important}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1344px!important}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1376px!important}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1408px!important}.cke_rtl.cke_hidpi .cke_button__paste_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1440px!important}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1472px!important}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1504px!important}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1536px!important}.cke_rtl.cke_hidpi .cke_button__pastetext_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1568px!important}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1600px!important}.cke_hidpi .cke_button__placeholder_icon{background:url(icons_hidpi.png) no-repeat 0 -1632px!important}.cke_rtl.cke_hidpi .cke_button__preview_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1664px!important}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1696px!important}.cke_hidpi .cke_button__print_icon{background:url(icons_hidpi.png) no-repeat 0 -1728px!important}.cke_hidpi .cke_button__radio_icon{background:url(icons_hidpi.png) no-repeat 0 -1760px!important}.cke_rtl.cke_hidpi .cke_button__redo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1792px!important}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1824px!important}.cke_hidpi .cke_button__removeformat_icon{background:url(icons_hidpi.png) no-repeat 0 -1856px!important}.cke_hidpi .cke_button__replace_icon{background:url(icons_hidpi.png) no-repeat 0 -1888px!important}.cke_hidpi .cke_button__save_icon{background:url(icons_hidpi.png) no-repeat 0 -1920px!important}.cke_hidpi .cke_button__scayt_icon{background:url(icons_hidpi.png) no-repeat 0 -1952px!important}.cke_rtl.cke_hidpi .cke_button__select_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -1984px!important}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -2016px!important}.cke_hidpi .cke_button__selectall_icon{background:url(icons_hidpi.png) no-repeat 0 -2048px!important}.cke_rtl.cke_hidpi .cke_button__showblocks_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2080px!important}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2112px!important}.cke_hidpi .cke_button__smiley_icon{background:url(icons_hidpi.png) no-repeat 0 -2144px!important}.cke_rtl.cke_hidpi .cke_button__source_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2176px!important}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2208px!important}.cke_hidpi .cke_button__specialchar_icon{background:url(icons_hidpi.png) no-repeat 0 -2240px!important}.cke_hidpi .cke_button__spellchecker_icon{background:url(icons_hidpi.png) no-repeat 0 -2272px!important}.cke_hidpi .cke_button__strike_icon{background:url(icons_hidpi.png) no-repeat 0 -2304px!important}.cke_hidpi .cke_button__subscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2336px!important}.cke_hidpi .cke_button__superscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2368px!important}.cke_hidpi .cke_button__table_icon{background:url(icons_hidpi.png) no-repeat 0 -2400px!important}.cke_rtl.cke_hidpi .cke_button__templates_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2432px!important}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2464px!important}.cke_rtl.cke_hidpi .cke_button__textarea_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2496px!important}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2528px!important}.cke_hidpi .cke_button__textcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -2560px!important}.cke_rtl.cke_hidpi .cke_button__textfield_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2592px!important}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2624px!important}.cke_hidpi .cke_button__underline_icon{background:url(icons_hidpi.png) no-repeat 0 -2656px!important}.cke_rtl.cke_hidpi .cke_button__undo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2688px!important}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2720px!important}.cke_hidpi .cke_button__unlink_icon{background:url(icons_hidpi.png) no-repeat 0 -2752px!important}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_toolbox{display:inline-block;padding-bottom:5px;height:100%}.cke_rtl .cke_toolbox{padding-bottom:0}.cke_toolbar{margin-bottom:5px}.cke_rtl .cke_toolbar{margin-bottom:0}.cke_toolgroup{height:26px}.cke_toolgroup,.cke_combo{position:relative}a.cke_button{float:none;vertical-align:top}.cke_toolbar_separator{display:inline-block;float:none;vertical-align:top;background-color:#c0c0c0}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_rtl .cke_button_arrow{padding-top:8px;margin-right:2px}.cke_rtl .cke_combo_inlinelabel{display:table-cell;vertical-align:middle}.cke_menubutton{display:block;height:24px}.cke_menubutton_inner{display:block;position:relative}.cke_menubutton_icon{height:16px;width:16px}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:inline-block}.cke_menubutton_label{width:auto;vertical-align:top;line-height:24px;height:24px;margin:0 10px 0 0}.cke_menuarrow{width:5px;height:6px;padding:0;position:absolute;right:8px;top:10px;background-position:0 0}.cke_rtl .cke_menubutton_icon{position:absolute;right:0;top:0}.cke_rtl .cke_menubutton_label{float:right;clear:both;margin:0 24px 0 10px}.cke_hc .cke_rtl .cke_menubutton_label{margin-right:0}.cke_rtl .cke_menuarrow{left:8px;right:auto;background-position:0 -24px}.cke_hc .cke_menuarrow{top:5px;padding:0 5px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{position:relative}.cke_wysiwyg_div{padding-top:0!important;padding-bottom:0!important} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/editor_ie8.css b/plugins/ckeditor/lib/skins/moonocolor/editor_ie8.css new file mode 100644 index 0000000..cc9a896 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon{background:url(icons.png) no-repeat 0 -0px!important}.cke_rtl .cke_button__anchor_icon,.cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -24px!important}.cke_ltr .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -48px!important}.cke_button__bgcolor_icon{background:url(icons.png) no-repeat 0 -72px!important}.cke_button__bidiltr_icon{background:url(icons.png) no-repeat 0 -96px!important}.cke_button__bidirtl_icon{background:url(icons.png) no-repeat 0 -120px!important}.cke_button__blockquote_icon{background:url(icons.png) no-repeat 0 -144px!important}.cke_button__bold_icon{background:url(icons.png) no-repeat 0 -168px!important}.cke_rtl .cke_button__bulletedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -192px!important}.cke_ltr .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -216px!important}.cke_button__button_icon{background:url(icons.png) no-repeat 0 -240px!important}.cke_button__checkbox_icon{background:url(icons.png) no-repeat 0 -264px!important}.cke_rtl .cke_button__copy_icon,.cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -288px!important}.cke_ltr .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -312px!important}.cke_button__creatediv_icon{background:url(icons.png) no-repeat 0 -336px!important}.cke_rtl .cke_button__cut_icon,.cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -360px!important}.cke_ltr .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -384px!important}.cke_rtl .cke_button__docprops_icon,.cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -408px!important}.cke_ltr .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -432px!important}.cke_rtl .cke_button__find_icon,.cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons.png) no-repeat 0 -456px!important}.cke_ltr .cke_button__find_icon{background:url(icons.png) no-repeat 0 -480px!important}.cke_button__flash_icon{background:url(icons.png) no-repeat 0 -504px!important}.cke_button__form_icon{background:url(icons.png) no-repeat 0 -528px!important}.cke_button__hiddenfield_icon{background:url(icons.png) no-repeat 0 -552px!important}.cke_button__horizontalrule_icon{background:url(icons.png) no-repeat 0 -576px!important}.cke_button__iframe_icon{background:url(icons.png) no-repeat 0 -600px!important}.cke_button__image_icon{background:url(icons.png) no-repeat 0 -624px!important}.cke_button__imagebutton_icon{background:url(icons.png) no-repeat 0 -648px!important}.cke_rtl .cke_button__indent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -672px!important}.cke_ltr .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -696px!important}.cke_button__italic_icon{background:url(icons.png) no-repeat 0 -720px!important}.cke_button__justifyblock_icon{background:url(icons.png) no-repeat 0 -744px!important}.cke_button__justifycenter_icon{background:url(icons.png) no-repeat 0 -768px!important}.cke_button__justifyleft_icon{background:url(icons.png) no-repeat 0 -792px!important}.cke_button__justifyright_icon{background:url(icons.png) no-repeat 0 -816px!important}.cke_button__link_icon{background:url(icons.png) no-repeat 0 -840px!important}.cke_button__maximize_icon{background:url(icons.png) no-repeat 0 -864px!important}.cke_rtl .cke_button__newpage_icon,.cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -888px!important}.cke_ltr .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -912px!important}.cke_rtl .cke_button__numberedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -936px!important}.cke_ltr .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -960px!important}.cke_rtl .cke_button__outdent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -984px!important}.cke_ltr .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -1008px!important}.cke_rtl .cke_button__pagebreak_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1032px!important}.cke_ltr .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1056px!important}.cke_rtl .cke_button__paste_icon,.cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1080px!important}.cke_ltr .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1104px!important}.cke_rtl .cke_button__pastefromword_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1128px!important}.cke_ltr .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1152px!important}.cke_rtl .cke_button__pastetext_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1176px!important}.cke_ltr .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1200px!important}.cke_button__placeholder_icon{background:url(icons.png) no-repeat 0 -1224px!important}.cke_rtl .cke_button__preview_icon,.cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1248px!important}.cke_ltr .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1272px!important}.cke_button__print_icon{background:url(icons.png) no-repeat 0 -1296px!important}.cke_button__radio_icon{background:url(icons.png) no-repeat 0 -1320px!important}.cke_rtl .cke_button__redo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1344px!important}.cke_ltr .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1368px!important}.cke_button__removeformat_icon{background:url(icons.png) no-repeat 0 -1392px!important}.cke_button__replace_icon{background:url(icons.png) no-repeat 0 -1416px!important}.cke_button__save_icon{background:url(icons.png) no-repeat 0 -1440px!important}.cke_button__scayt_icon{background:url(icons.png) no-repeat 0 -1464px!important}.cke_rtl .cke_button__select_icon,.cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1488px!important}.cke_ltr .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1512px!important}.cke_button__selectall_icon{background:url(icons.png) no-repeat 0 -1536px!important}.cke_rtl .cke_button__showblocks_icon,.cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1560px!important}.cke_ltr .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1584px!important}.cke_button__smiley_icon{background:url(icons.png) no-repeat 0 -1608px!important}.cke_rtl .cke_button__source_icon,.cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1632px!important}.cke_ltr .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1656px!important}.cke_button__specialchar_icon{background:url(icons.png) no-repeat 0 -1680px!important}.cke_button__spellchecker_icon{background:url(icons.png) no-repeat 0 -1704px!important}.cke_button__strike_icon{background:url(icons.png) no-repeat 0 -1728px!important}.cke_button__subscript_icon{background:url(icons.png) no-repeat 0 -1752px!important}.cke_button__superscript_icon{background:url(icons.png) no-repeat 0 -1776px!important}.cke_button__table_icon{background:url(icons.png) no-repeat 0 -1800px!important}.cke_rtl .cke_button__templates_icon,.cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1824px!important}.cke_ltr .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1848px!important}.cke_rtl .cke_button__textarea_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1872px!important}.cke_ltr .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1896px!important}.cke_button__textcolor_icon{background:url(icons.png) no-repeat 0 -1920px!important}.cke_rtl .cke_button__textfield_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1944px!important}.cke_ltr .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1968px!important}.cke_button__underline_icon{background:url(icons.png) no-repeat 0 -1992px!important}.cke_rtl .cke_button__undo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2016px!important}.cke_ltr .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2040px!important}.cke_button__unlink_icon{background:url(icons.png) no-repeat 0 -2064px!important}.cke_hidpi .cke_button__about_icon{background:url(icons_hidpi.png) no-repeat 0 -0px!important}.cke_rtl.cke_hidpi .cke_button__anchor_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -32px!important}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -64px!important}.cke_hidpi .cke_button__bgcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -96px!important}.cke_hidpi .cke_button__bidiltr_icon{background:url(icons_hidpi.png) no-repeat 0 -128px!important}.cke_hidpi .cke_button__bidirtl_icon{background:url(icons_hidpi.png) no-repeat 0 -160px!important}.cke_hidpi .cke_button__blockquote_icon{background:url(icons_hidpi.png) no-repeat 0 -192px!important}.cke_hidpi .cke_button__bold_icon{background:url(icons_hidpi.png) no-repeat 0 -224px!important}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -256px!important}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -288px!important}.cke_hidpi .cke_button__button_icon{background:url(icons_hidpi.png) no-repeat 0 -320px!important}.cke_hidpi .cke_button__checkbox_icon{background:url(icons_hidpi.png) no-repeat 0 -352px!important}.cke_rtl.cke_hidpi .cke_button__copy_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -384px!important}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -416px!important}.cke_hidpi .cke_button__creatediv_icon{background:url(icons_hidpi.png) no-repeat 0 -448px!important}.cke_rtl.cke_hidpi .cke_button__cut_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -480px!important}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -512px!important}.cke_rtl.cke_hidpi .cke_button__docprops_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -544px!important}.cke_hidpi .cke_ltr .cke_button__docprops_icon,.cke_ltr.cke_hidpi .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -576px!important}.cke_rtl.cke_hidpi .cke_button__find_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -608px!important}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -640px!important}.cke_hidpi .cke_button__flash_icon{background:url(icons_hidpi.png) no-repeat 0 -672px!important}.cke_hidpi .cke_button__form_icon{background:url(icons_hidpi.png) no-repeat 0 -704px!important}.cke_hidpi .cke_button__hiddenfield_icon{background:url(icons_hidpi.png) no-repeat 0 -736px!important}.cke_hidpi .cke_button__horizontalrule_icon{background:url(icons_hidpi.png) no-repeat 0 -768px!important}.cke_hidpi .cke_button__iframe_icon{background:url(icons_hidpi.png) no-repeat 0 -800px!important}.cke_hidpi .cke_button__image_icon{background:url(icons_hidpi.png) no-repeat 0 -832px!important}.cke_hidpi .cke_button__imagebutton_icon{background:url(icons_hidpi.png) no-repeat 0 -864px!important}.cke_rtl.cke_hidpi .cke_button__indent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -896px!important}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -928px!important}.cke_hidpi .cke_button__italic_icon{background:url(icons_hidpi.png) no-repeat 0 -960px!important}.cke_hidpi .cke_button__justifyblock_icon{background:url(icons_hidpi.png) no-repeat 0 -992px!important}.cke_hidpi .cke_button__justifycenter_icon{background:url(icons_hidpi.png) no-repeat 0 -1024px!important}.cke_hidpi .cke_button__justifyleft_icon{background:url(icons_hidpi.png) no-repeat 0 -1056px!important}.cke_hidpi .cke_button__justifyright_icon{background:url(icons_hidpi.png) no-repeat 0 -1088px!important}.cke_hidpi .cke_button__link_icon{background:url(icons_hidpi.png) no-repeat 0 -1120px!important}.cke_hidpi .cke_button__maximize_icon{background:url(icons_hidpi.png) no-repeat 0 -1152px!important}.cke_rtl.cke_hidpi .cke_button__newpage_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1184px!important}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1216px!important}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1248px!important}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1280px!important}.cke_rtl.cke_hidpi .cke_button__outdent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1312px!important}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1344px!important}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1376px!important}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1408px!important}.cke_rtl.cke_hidpi .cke_button__paste_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1440px!important}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1472px!important}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1504px!important}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1536px!important}.cke_rtl.cke_hidpi .cke_button__pastetext_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1568px!important}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1600px!important}.cke_hidpi .cke_button__placeholder_icon{background:url(icons_hidpi.png) no-repeat 0 -1632px!important}.cke_rtl.cke_hidpi .cke_button__preview_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1664px!important}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1696px!important}.cke_hidpi .cke_button__print_icon{background:url(icons_hidpi.png) no-repeat 0 -1728px!important}.cke_hidpi .cke_button__radio_icon{background:url(icons_hidpi.png) no-repeat 0 -1760px!important}.cke_rtl.cke_hidpi .cke_button__redo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1792px!important}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1824px!important}.cke_hidpi .cke_button__removeformat_icon{background:url(icons_hidpi.png) no-repeat 0 -1856px!important}.cke_hidpi .cke_button__replace_icon{background:url(icons_hidpi.png) no-repeat 0 -1888px!important}.cke_hidpi .cke_button__save_icon{background:url(icons_hidpi.png) no-repeat 0 -1920px!important}.cke_hidpi .cke_button__scayt_icon{background:url(icons_hidpi.png) no-repeat 0 -1952px!important}.cke_rtl.cke_hidpi .cke_button__select_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -1984px!important}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -2016px!important}.cke_hidpi .cke_button__selectall_icon{background:url(icons_hidpi.png) no-repeat 0 -2048px!important}.cke_rtl.cke_hidpi .cke_button__showblocks_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2080px!important}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2112px!important}.cke_hidpi .cke_button__smiley_icon{background:url(icons_hidpi.png) no-repeat 0 -2144px!important}.cke_rtl.cke_hidpi .cke_button__source_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2176px!important}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2208px!important}.cke_hidpi .cke_button__specialchar_icon{background:url(icons_hidpi.png) no-repeat 0 -2240px!important}.cke_hidpi .cke_button__spellchecker_icon{background:url(icons_hidpi.png) no-repeat 0 -2272px!important}.cke_hidpi .cke_button__strike_icon{background:url(icons_hidpi.png) no-repeat 0 -2304px!important}.cke_hidpi .cke_button__subscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2336px!important}.cke_hidpi .cke_button__superscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2368px!important}.cke_hidpi .cke_button__table_icon{background:url(icons_hidpi.png) no-repeat 0 -2400px!important}.cke_rtl.cke_hidpi .cke_button__templates_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2432px!important}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2464px!important}.cke_rtl.cke_hidpi .cke_button__textarea_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2496px!important}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2528px!important}.cke_hidpi .cke_button__textcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -2560px!important}.cke_rtl.cke_hidpi .cke_button__textfield_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2592px!important}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2624px!important}.cke_hidpi .cke_button__underline_icon{background:url(icons_hidpi.png) no-repeat 0 -2656px!important}.cke_rtl.cke_hidpi .cke_button__undo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2688px!important}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2720px!important}.cke_hidpi .cke_button__unlink_icon{background:url(icons_hidpi.png) no-repeat 0 -2752px!important}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/editor_iequirks.css b/plugins/ckeditor/lib/skins/moonocolor/editor_iequirks.css new file mode 100644 index 0000000..c1b6864 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon{background:url(icons.png) no-repeat 0 -0px!important}.cke_rtl .cke_button__anchor_icon,.cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -24px!important}.cke_ltr .cke_button__anchor_icon{background:url(icons.png) no-repeat 0 -48px!important}.cke_button__bgcolor_icon{background:url(icons.png) no-repeat 0 -72px!important}.cke_button__bidiltr_icon{background:url(icons.png) no-repeat 0 -96px!important}.cke_button__bidirtl_icon{background:url(icons.png) no-repeat 0 -120px!important}.cke_button__blockquote_icon{background:url(icons.png) no-repeat 0 -144px!important}.cke_button__bold_icon{background:url(icons.png) no-repeat 0 -168px!important}.cke_rtl .cke_button__bulletedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -192px!important}.cke_ltr .cke_button__bulletedlist_icon{background:url(icons.png) no-repeat 0 -216px!important}.cke_button__button_icon{background:url(icons.png) no-repeat 0 -240px!important}.cke_button__checkbox_icon{background:url(icons.png) no-repeat 0 -264px!important}.cke_rtl .cke_button__copy_icon,.cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -288px!important}.cke_ltr .cke_button__copy_icon{background:url(icons.png) no-repeat 0 -312px!important}.cke_button__creatediv_icon{background:url(icons.png) no-repeat 0 -336px!important}.cke_rtl .cke_button__cut_icon,.cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -360px!important}.cke_ltr .cke_button__cut_icon{background:url(icons.png) no-repeat 0 -384px!important}.cke_rtl .cke_button__docprops_icon,.cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -408px!important}.cke_ltr .cke_button__docprops_icon{background:url(icons.png) no-repeat 0 -432px!important}.cke_rtl .cke_button__find_icon,.cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons.png) no-repeat 0 -456px!important}.cke_ltr .cke_button__find_icon{background:url(icons.png) no-repeat 0 -480px!important}.cke_button__flash_icon{background:url(icons.png) no-repeat 0 -504px!important}.cke_button__form_icon{background:url(icons.png) no-repeat 0 -528px!important}.cke_button__hiddenfield_icon{background:url(icons.png) no-repeat 0 -552px!important}.cke_button__horizontalrule_icon{background:url(icons.png) no-repeat 0 -576px!important}.cke_button__iframe_icon{background:url(icons.png) no-repeat 0 -600px!important}.cke_button__image_icon{background:url(icons.png) no-repeat 0 -624px!important}.cke_button__imagebutton_icon{background:url(icons.png) no-repeat 0 -648px!important}.cke_rtl .cke_button__indent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -672px!important}.cke_ltr .cke_button__indent_icon{background:url(icons.png) no-repeat 0 -696px!important}.cke_button__italic_icon{background:url(icons.png) no-repeat 0 -720px!important}.cke_button__justifyblock_icon{background:url(icons.png) no-repeat 0 -744px!important}.cke_button__justifycenter_icon{background:url(icons.png) no-repeat 0 -768px!important}.cke_button__justifyleft_icon{background:url(icons.png) no-repeat 0 -792px!important}.cke_button__justifyright_icon{background:url(icons.png) no-repeat 0 -816px!important}.cke_button__link_icon{background:url(icons.png) no-repeat 0 -840px!important}.cke_button__maximize_icon{background:url(icons.png) no-repeat 0 -864px!important}.cke_rtl .cke_button__newpage_icon,.cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -888px!important}.cke_ltr .cke_button__newpage_icon{background:url(icons.png) no-repeat 0 -912px!important}.cke_rtl .cke_button__numberedlist_icon,.cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -936px!important}.cke_ltr .cke_button__numberedlist_icon{background:url(icons.png) no-repeat 0 -960px!important}.cke_rtl .cke_button__outdent_icon,.cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -984px!important}.cke_ltr .cke_button__outdent_icon{background:url(icons.png) no-repeat 0 -1008px!important}.cke_rtl .cke_button__pagebreak_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1032px!important}.cke_ltr .cke_button__pagebreak_icon{background:url(icons.png) no-repeat 0 -1056px!important}.cke_rtl .cke_button__paste_icon,.cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1080px!important}.cke_ltr .cke_button__paste_icon{background:url(icons.png) no-repeat 0 -1104px!important}.cke_rtl .cke_button__pastefromword_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1128px!important}.cke_ltr .cke_button__pastefromword_icon{background:url(icons.png) no-repeat 0 -1152px!important}.cke_rtl .cke_button__pastetext_icon,.cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1176px!important}.cke_ltr .cke_button__pastetext_icon{background:url(icons.png) no-repeat 0 -1200px!important}.cke_button__placeholder_icon{background:url(icons.png) no-repeat 0 -1224px!important}.cke_rtl .cke_button__preview_icon,.cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1248px!important}.cke_ltr .cke_button__preview_icon{background:url(icons.png) no-repeat 0 -1272px!important}.cke_button__print_icon{background:url(icons.png) no-repeat 0 -1296px!important}.cke_button__radio_icon{background:url(icons.png) no-repeat 0 -1320px!important}.cke_rtl .cke_button__redo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1344px!important}.cke_ltr .cke_button__redo_icon{background:url(icons.png) no-repeat 0 -1368px!important}.cke_button__removeformat_icon{background:url(icons.png) no-repeat 0 -1392px!important}.cke_button__replace_icon{background:url(icons.png) no-repeat 0 -1416px!important}.cke_button__save_icon{background:url(icons.png) no-repeat 0 -1440px!important}.cke_button__scayt_icon{background:url(icons.png) no-repeat 0 -1464px!important}.cke_rtl .cke_button__select_icon,.cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1488px!important}.cke_ltr .cke_button__select_icon{background:url(icons.png) no-repeat 0 -1512px!important}.cke_button__selectall_icon{background:url(icons.png) no-repeat 0 -1536px!important}.cke_rtl .cke_button__showblocks_icon,.cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1560px!important}.cke_ltr .cke_button__showblocks_icon{background:url(icons.png) no-repeat 0 -1584px!important}.cke_button__smiley_icon{background:url(icons.png) no-repeat 0 -1608px!important}.cke_rtl .cke_button__source_icon,.cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1632px!important}.cke_ltr .cke_button__source_icon{background:url(icons.png) no-repeat 0 -1656px!important}.cke_button__specialchar_icon{background:url(icons.png) no-repeat 0 -1680px!important}.cke_button__spellchecker_icon{background:url(icons.png) no-repeat 0 -1704px!important}.cke_button__strike_icon{background:url(icons.png) no-repeat 0 -1728px!important}.cke_button__subscript_icon{background:url(icons.png) no-repeat 0 -1752px!important}.cke_button__superscript_icon{background:url(icons.png) no-repeat 0 -1776px!important}.cke_button__table_icon{background:url(icons.png) no-repeat 0 -1800px!important}.cke_rtl .cke_button__templates_icon,.cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1824px!important}.cke_ltr .cke_button__templates_icon{background:url(icons.png) no-repeat 0 -1848px!important}.cke_rtl .cke_button__textarea_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1872px!important}.cke_ltr .cke_button__textarea_icon{background:url(icons.png) no-repeat 0 -1896px!important}.cke_button__textcolor_icon{background:url(icons.png) no-repeat 0 -1920px!important}.cke_rtl .cke_button__textfield_icon,.cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1944px!important}.cke_ltr .cke_button__textfield_icon{background:url(icons.png) no-repeat 0 -1968px!important}.cke_button__underline_icon{background:url(icons.png) no-repeat 0 -1992px!important}.cke_rtl .cke_button__undo_icon,.cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2016px!important}.cke_ltr .cke_button__undo_icon{background:url(icons.png) no-repeat 0 -2040px!important}.cke_button__unlink_icon{background:url(icons.png) no-repeat 0 -2064px!important}.cke_hidpi .cke_button__about_icon{background:url(icons_hidpi.png) no-repeat 0 -0px!important}.cke_rtl.cke_hidpi .cke_button__anchor_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -32px!important}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon{background:url(icons_hidpi.png) no-repeat 0 -64px!important}.cke_hidpi .cke_button__bgcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -96px!important}.cke_hidpi .cke_button__bidiltr_icon{background:url(icons_hidpi.png) no-repeat 0 -128px!important}.cke_hidpi .cke_button__bidirtl_icon{background:url(icons_hidpi.png) no-repeat 0 -160px!important}.cke_hidpi .cke_button__blockquote_icon{background:url(icons_hidpi.png) no-repeat 0 -192px!important}.cke_hidpi .cke_button__bold_icon{background:url(icons_hidpi.png) no-repeat 0 -224px!important}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -256px!important}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -288px!important}.cke_hidpi .cke_button__button_icon{background:url(icons_hidpi.png) no-repeat 0 -320px!important}.cke_hidpi .cke_button__checkbox_icon{background:url(icons_hidpi.png) no-repeat 0 -352px!important}.cke_rtl.cke_hidpi .cke_button__copy_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -384px!important}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon{background:url(icons_hidpi.png) no-repeat 0 -416px!important}.cke_hidpi .cke_button__creatediv_icon{background:url(icons_hidpi.png) no-repeat 0 -448px!important}.cke_rtl.cke_hidpi .cke_button__cut_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -480px!important}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon{background:url(icons_hidpi.png) no-repeat 0 -512px!important}.cke_rtl.cke_hidpi .cke_button__docprops_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -544px!important}.cke_hidpi .cke_ltr .cke_button__docprops_icon,.cke_ltr.cke_hidpi .cke_button__docprops_icon{background:url(icons_hidpi.png) no-repeat 0 -576px!important}.cke_rtl.cke_hidpi .cke_button__find_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -608px!important}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon{background:url(icons_hidpi.png) no-repeat 0 -640px!important}.cke_hidpi .cke_button__flash_icon{background:url(icons_hidpi.png) no-repeat 0 -672px!important}.cke_hidpi .cke_button__form_icon{background:url(icons_hidpi.png) no-repeat 0 -704px!important}.cke_hidpi .cke_button__hiddenfield_icon{background:url(icons_hidpi.png) no-repeat 0 -736px!important}.cke_hidpi .cke_button__horizontalrule_icon{background:url(icons_hidpi.png) no-repeat 0 -768px!important}.cke_hidpi .cke_button__iframe_icon{background:url(icons_hidpi.png) no-repeat 0 -800px!important}.cke_hidpi .cke_button__image_icon{background:url(icons_hidpi.png) no-repeat 0 -832px!important}.cke_hidpi .cke_button__imagebutton_icon{background:url(icons_hidpi.png) no-repeat 0 -864px!important}.cke_rtl.cke_hidpi .cke_button__indent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -896px!important}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon{background:url(icons_hidpi.png) no-repeat 0 -928px!important}.cke_hidpi .cke_button__italic_icon{background:url(icons_hidpi.png) no-repeat 0 -960px!important}.cke_hidpi .cke_button__justifyblock_icon{background:url(icons_hidpi.png) no-repeat 0 -992px!important}.cke_hidpi .cke_button__justifycenter_icon{background:url(icons_hidpi.png) no-repeat 0 -1024px!important}.cke_hidpi .cke_button__justifyleft_icon{background:url(icons_hidpi.png) no-repeat 0 -1056px!important}.cke_hidpi .cke_button__justifyright_icon{background:url(icons_hidpi.png) no-repeat 0 -1088px!important}.cke_hidpi .cke_button__link_icon{background:url(icons_hidpi.png) no-repeat 0 -1120px!important}.cke_hidpi .cke_button__maximize_icon{background:url(icons_hidpi.png) no-repeat 0 -1152px!important}.cke_rtl.cke_hidpi .cke_button__newpage_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1184px!important}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon{background:url(icons_hidpi.png) no-repeat 0 -1216px!important}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1248px!important}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon{background:url(icons_hidpi.png) no-repeat 0 -1280px!important}.cke_rtl.cke_hidpi .cke_button__outdent_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1312px!important}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon{background:url(icons_hidpi.png) no-repeat 0 -1344px!important}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1376px!important}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon{background:url(icons_hidpi.png) no-repeat 0 -1408px!important}.cke_rtl.cke_hidpi .cke_button__paste_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1440px!important}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon{background:url(icons_hidpi.png) no-repeat 0 -1472px!important}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1504px!important}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon{background:url(icons_hidpi.png) no-repeat 0 -1536px!important}.cke_rtl.cke_hidpi .cke_button__pastetext_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1568px!important}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon{background:url(icons_hidpi.png) no-repeat 0 -1600px!important}.cke_hidpi .cke_button__placeholder_icon{background:url(icons_hidpi.png) no-repeat 0 -1632px!important}.cke_rtl.cke_hidpi .cke_button__preview_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1664px!important}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon{background:url(icons_hidpi.png) no-repeat 0 -1696px!important}.cke_hidpi .cke_button__print_icon{background:url(icons_hidpi.png) no-repeat 0 -1728px!important}.cke_hidpi .cke_button__radio_icon{background:url(icons_hidpi.png) no-repeat 0 -1760px!important}.cke_rtl.cke_hidpi .cke_button__redo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1792px!important}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon{background:url(icons_hidpi.png) no-repeat 0 -1824px!important}.cke_hidpi .cke_button__removeformat_icon{background:url(icons_hidpi.png) no-repeat 0 -1856px!important}.cke_hidpi .cke_button__replace_icon{background:url(icons_hidpi.png) no-repeat 0 -1888px!important}.cke_hidpi .cke_button__save_icon{background:url(icons_hidpi.png) no-repeat 0 -1920px!important}.cke_hidpi .cke_button__scayt_icon{background:url(icons_hidpi.png) no-repeat 0 -1952px!important}.cke_rtl.cke_hidpi .cke_button__select_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -1984px!important}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon{background:url(icons_hidpi.png) no-repeat 0 -2016px!important}.cke_hidpi .cke_button__selectall_icon{background:url(icons_hidpi.png) no-repeat 0 -2048px!important}.cke_rtl.cke_hidpi .cke_button__showblocks_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2080px!important}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon{background:url(icons_hidpi.png) no-repeat 0 -2112px!important}.cke_hidpi .cke_button__smiley_icon{background:url(icons_hidpi.png) no-repeat 0 -2144px!important}.cke_rtl.cke_hidpi .cke_button__source_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2176px!important}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon{background:url(icons_hidpi.png) no-repeat 0 -2208px!important}.cke_hidpi .cke_button__specialchar_icon{background:url(icons_hidpi.png) no-repeat 0 -2240px!important}.cke_hidpi .cke_button__spellchecker_icon{background:url(icons_hidpi.png) no-repeat 0 -2272px!important}.cke_hidpi .cke_button__strike_icon{background:url(icons_hidpi.png) no-repeat 0 -2304px!important}.cke_hidpi .cke_button__subscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2336px!important}.cke_hidpi .cke_button__superscript_icon{background:url(icons_hidpi.png) no-repeat 0 -2368px!important}.cke_hidpi .cke_button__table_icon{background:url(icons_hidpi.png) no-repeat 0 -2400px!important}.cke_rtl.cke_hidpi .cke_button__templates_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2432px!important}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon{background:url(icons_hidpi.png) no-repeat 0 -2464px!important}.cke_rtl.cke_hidpi .cke_button__textarea_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2496px!important}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon{background:url(icons_hidpi.png) no-repeat 0 -2528px!important}.cke_hidpi .cke_button__textcolor_icon{background:url(icons_hidpi.png) no-repeat 0 -2560px!important}.cke_rtl.cke_hidpi .cke_button__textfield_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2592px!important}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon{background:url(icons_hidpi.png) no-repeat 0 -2624px!important}.cke_hidpi .cke_button__underline_icon{background:url(icons_hidpi.png) no-repeat 0 -2656px!important}.cke_rtl.cke_hidpi .cke_button__undo_icon,.cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2688px!important}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon{background:url(icons_hidpi.png) no-repeat 0 -2720px!important}.cke_hidpi .cke_button__unlink_icon{background:url(icons_hidpi.png) no-repeat 0 -2752px!important}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0} \ No newline at end of file diff --git a/plugins/ckeditor/lib/skins/moonocolor/icons.png b/plugins/ckeditor/lib/skins/moonocolor/icons.png new file mode 100644 index 0000000..8c56ac2 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/icons.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/icons_hidpi.png b/plugins/ckeditor/lib/skins/moonocolor/icons_hidpi.png new file mode 100644 index 0000000..37c2f62 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/icons_hidpi.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/arrow.png b/plugins/ckeditor/lib/skins/moonocolor/images/arrow.png new file mode 100644 index 0000000..d72b5f3 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/arrow.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/close.png b/plugins/ckeditor/lib/skins/moonocolor/images/close.png new file mode 100644 index 0000000..6a04ab5 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/close.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/close.png b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/close.png new file mode 100644 index 0000000..e406c2c Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/close.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/lock-open.png b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/lock-open.png new file mode 100644 index 0000000..edbd12f Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/lock-open.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/lock.png b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/lock.png new file mode 100644 index 0000000..1b87bbb Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/lock.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/refresh.png b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/refresh.png new file mode 100644 index 0000000..c6c2b86 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/hidpi/refresh.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/lock-open.png b/plugins/ckeditor/lib/skins/moonocolor/images/lock-open.png new file mode 100644 index 0000000..0476987 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/lock-open.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/lock.png b/plugins/ckeditor/lib/skins/moonocolor/images/lock.png new file mode 100644 index 0000000..c5a1440 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/lock.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/refresh.png b/plugins/ckeditor/lib/skins/moonocolor/images/refresh.png new file mode 100644 index 0000000..1ff63c3 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/refresh.png differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/images/spinner.gif b/plugins/ckeditor/lib/skins/moonocolor/images/spinner.gif new file mode 100644 index 0000000..d898d41 Binary files /dev/null and b/plugins/ckeditor/lib/skins/moonocolor/images/spinner.gif differ diff --git a/plugins/ckeditor/lib/skins/moonocolor/readme.md b/plugins/ckeditor/lib/skins/moonocolor/readme.md new file mode 100644 index 0000000..e3abd58 --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/readme.md @@ -0,0 +1,51 @@ +"Moono" Skin +==================== + +This skin has been chosen for the **default skin** of CKEditor 4.x, elected from the CKEditor +[skin contest](http://ckeditor.com/blog/new_ckeditor_4_skin) and further shaped by +the CKEditor team. "Moono" is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK) +documentation. + +Features +------------------- +"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency. +It comes with the following features: + +- Chameleon feature with brightness, +- high-contrast compatibility, +- graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **icons/**: contains all skin defined icons, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG source of the skin icons. + +License +------- + +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + +Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). + +See LICENSE.md for more information. diff --git a/plugins/ckeditor/lib/skins/moonocolor/skin.js b/plugins/ckeditor/lib/skins/moonocolor/skin.js new file mode 100644 index 0000000..357ad7b --- /dev/null +++ b/plugins/ckeditor/lib/skins/moonocolor/skin.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.skin.name="moonocolor";CKEDITOR.skin.ua_editor="ie,iequirks,ie7,ie8,gecko";CKEDITOR.skin.ua_dialog="ie,iequirks,ie7,ie8"; +CKEDITOR.skin.chameleon=function(){var b=function(){return function(b,e){for(var a=b.match(/[^#]./g),c=0;3>c;c++){var f=a,h=c,d;d=parseInt(a[c],16);d=("0"+(0>e?0|d*(1+e):0|d+(255-d)*e).toString(16)).slice(-2);f[h]=d}return"#"+a.join("")}}(),c=function(){var b=new CKEDITOR.template("background:#{to};background-image:linear-gradient(to bottom,{from},{to});filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='{from}',endColorstr='{to}');");return function(c,a){return b.output({from:c, +to:a})}}(),f={editor:new CKEDITOR.template("{id}.cke_chrome [border-color:{defaultBorder};] {id} .cke_top [ {defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_bottom [{defaultGradient}border-top-color:{defaultBorder};] {id} .cke_resizer [border-right-color:{ckeResizer}] {id} .cke_dialog_title [{defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_dialog_footer [{defaultGradient}outline-color:{defaultBorder};border-top-color:{defaultBorder};] {id} .cke_dialog_tab [{lightGradient}border-color:{defaultBorder};] {id} .cke_dialog_tab:hover [{mediumGradient}] {id} .cke_dialog_contents [border-top-color:{defaultBorder};] {id} .cke_dialog_tab_selected, {id} .cke_dialog_tab_selected:hover [background:{dialogTabSelected};border-bottom-color:{dialogTabSelectedBorder};] {id} .cke_dialog_body [background:{dialogBody};border-color:{defaultBorder};] {id} .cke_toolgroup [{lightGradient}border-color:{defaultBorder};] {id} a.cke_button_off:hover, {id} a.cke_button_off:focus, {id} a.cke_button_off:active [{mediumGradient}] {id} .cke_button_on [{ckeButtonOn}] {id} .cke_toolbar_separator [background-color: {ckeToolbarSeparator};] {id} .cke_combo_button [border-color:{defaultBorder};{lightGradient}] {id} a.cke_combo_button:hover, {id} a.cke_combo_button:focus, {id} .cke_combo_on a.cke_combo_button [border-color:{defaultBorder};{mediumGradient}] {id} .cke_path_item [color:{elementsPathColor};] {id} a.cke_path_item:hover, {id} a.cke_path_item:focus, {id} a.cke_path_item:active [background-color:{elementsPathBg};] {id}.cke_panel [border-color:{defaultBorder};] "), +panel:new CKEDITOR.template(".cke_panel_grouptitle [{lightGradient}border-color:{defaultBorder};] .cke_menubutton_icon [background-color:{menubuttonIcon};] .cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon [background-color:{menubuttonIconHover};] .cke_menuseparator [background-color:{menubuttonIcon};] a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox [border-color:{defaultBorder};] a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore [background-color:{ckeColorauto};border-color:{defaultBorder};] ")}; +return function(g,e){var a=g.uiColor,a={id:"."+g.id,defaultBorder:b(a,-0.1),defaultGradient:c(b(a,0.9),a),lightGradient:c(b(a,1),b(a,0.7)),mediumGradient:c(b(a,0.8),b(a,0.5)),ckeButtonOn:c(b(a,0.6),b(a,0.7)),ckeResizer:b(a,-0.4),ckeToolbarSeparator:b(a,0.5),ckeColorauto:b(a,0.8),dialogBody:b(a,0.7),dialogTabSelected:c("#FFFFFF","#FFFFFF"),dialogTabSelectedBorder:"#FFF",elementsPathColor:b(a,-0.6),elementsPathBg:a,menubuttonIcon:b(a,0.5),menubuttonIconHover:b(a,0.3)};return f[e].output(a).replace(/\[/g, +"{").replace(/\]/g,"}")}}(); \ No newline at end of file diff --git a/plugins/ckeditor/lib/styles.js b/plugins/ckeditor/lib/styles.js new file mode 100644 index 0000000..8682bcb --- /dev/null +++ b/plugins/ckeditor/lib/styles.js @@ -0,0 +1,137 @@ +/** + * Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ + +// This file contains style definitions that can be used by CKEditor plugins. +// +// The most common use for it is the "stylescombo" plugin which shows the Styles drop-down +// list containing all styles in the editor toolbar. Other plugins, like +// the "div" plugin, use a subset of the styles for their features. +// +// If you do not have plugins that depend on this file in your editor build, you can simply +// ignore it. Otherwise it is strongly recommended to customize this file to match your +// website requirements and design properly. +// +// For more information refer to: https://ckeditor.com/docs/ckeditor4/latest/guide/dev_styles.html#style-rules + +CKEDITOR.stylesSet.add( 'default', [ + /* Block styles */ + + // These styles are already available in the "Format" drop-down list ("format" plugin), + // so they are not needed here by default. You may enable them to avoid + // placing the "Format" combo in the toolbar, maintaining the same features. + /* + { name: 'Paragraph', element: 'p' }, + { name: 'Heading 1', element: 'h1' }, + { name: 'Heading 2', element: 'h2' }, + { name: 'Heading 3', element: 'h3' }, + { name: 'Heading 4', element: 'h4' }, + { name: 'Heading 5', element: 'h5' }, + { name: 'Heading 6', element: 'h6' }, + { name: 'Preformatted Text',element: 'pre' }, + { name: 'Address', element: 'address' }, + */ + + { name: 'Italic Title', element: 'h2', styles: { 'font-style': 'italic' } }, + { name: 'Subtitle', element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } }, + { + name: 'Special Container', + element: 'div', + styles: { + padding: '5px 10px', + background: '#eee', + border: '1px solid #ccc' + } + }, + + /* Inline styles */ + + // These are core styles available as toolbar buttons. You may opt enabling + // some of them in the Styles drop-down list, removing them from the toolbar. + // (This requires the "stylescombo" plugin.) + /* + { name: 'Strong', element: 'strong', overrides: 'b' }, + { name: 'Emphasis', element: 'em' , overrides: 'i' }, + { name: 'Underline', element: 'u' }, + { name: 'Strikethrough', element: 'strike' }, + { name: 'Subscript', element: 'sub' }, + { name: 'Superscript', element: 'sup' }, + */ + + { name: 'Marker', element: 'span', attributes: { 'class': 'marker' } }, + + { name: 'Big', element: 'big' }, + { name: 'Small', element: 'small' }, + { name: 'Typewriter', element: 'tt' }, + + { name: 'Computer Code', element: 'code' }, + { name: 'Keyboard Phrase', element: 'kbd' }, + { name: 'Sample Text', element: 'samp' }, + { name: 'Variable', element: 'var' }, + + { name: 'Deleted Text', element: 'del' }, + { name: 'Inserted Text', element: 'ins' }, + + { name: 'Cited Work', element: 'cite' }, + { name: 'Inline Quotation', element: 'q' }, + + { name: 'Language: RTL', element: 'span', attributes: { 'dir': 'rtl' } }, + { name: 'Language: LTR', element: 'span', attributes: { 'dir': 'ltr' } }, + + /* Object styles */ + + { + name: 'Styled Image (left)', + element: 'img', + attributes: { 'class': 'left' } + }, + + { + name: 'Styled Image (right)', + element: 'img', + attributes: { 'class': 'right' } + }, + + { + name: 'Compact Table', + element: 'table', + attributes: { + cellpadding: '5', + cellspacing: '0', + border: '1', + bordercolor: '#ccc' + }, + styles: { + 'border-collapse': 'collapse' + } + }, + + { name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } }, + { name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } }, + + /* Widget styles */ + + { name: 'Clean Image', type: 'widget', widget: 'image', attributes: { 'class': 'image-clean' } }, + { name: 'Grayscale Image', type: 'widget', widget: 'image', attributes: { 'class': 'image-grayscale' } }, + + { name: 'Featured Snippet', type: 'widget', widget: 'codeSnippet', attributes: { 'class': 'code-featured' } }, + + { name: 'Featured Formula', type: 'widget', widget: 'mathjax', attributes: { 'class': 'math-featured' } }, + + { name: '240p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-240p' }, group: 'size' }, + { name: '360p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-360p' }, group: 'size' }, + { name: '480p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-480p' }, group: 'size' }, + { name: '720p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-720p' }, group: 'size' }, + { name: '1080p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-1080p' }, group: 'size' }, + + // Adding space after the style name is an intended workaround. For now, there + // is no option to create two styles with the same name for different widget types. See https://dev.ckeditor.com/ticket/16664. + { name: '240p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-240p' }, group: 'size' }, + { name: '360p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-360p' }, group: 'size' }, + { name: '480p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-480p' }, group: 'size' }, + { name: '720p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-720p' }, group: 'size' }, + { name: '1080p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-1080p' }, group: 'size' } + +] ); + diff --git a/plugins/ckeditor/lib/vendor/promise.js b/plugins/ckeditor/lib/vendor/promise.js new file mode 100644 index 0000000..c4d9912 --- /dev/null +++ b/plugins/ckeditor/lib/vendor/promise.js @@ -0,0 +1,13 @@ +(function(v,w){"object"===typeof exports&&"undefined"!==typeof module?module.exports=w():"function"===typeof define&&define.amd?define(w):v.ES6Promise=w()})(this,function(){function v(a){return"function"===typeof a}function w(){return function(){return process.nextTick(n)}}function R(){return"undefined"!==typeof B?function(){B(n)}:C()}function S(){var a=0,b=new J(n),c=document.createTextNode("");b.observe(c,{characterData:!0});return function(){c.data=a=++a%2}}function T(){var a=new MessageChannel; +a.port1.onmessage=n;return function(){return a.port2.postMessage(0)}}function C(){var a=setTimeout;return function(){return a(n,1)}}function n(){for(var a=0;a 0) { + $timeago = $sys['now_offset'] - ($cfg['plugin']['cleaner']['userprune'] * 86400); + $sqltmp1 = sed_sql_query("SELECT user_id FROM $db_users WHERE user_maingrp='2' AND user_lastlog='0' AND user_regdate<$timeago"); + $sqltmp2 = sed_sql_query("DELETE FROM $db_users WHERE user_maingrp='2' AND user_lastlog='0' AND user_regdate<$timeago"); + $deleted = sed_sql_affectedrows(); + + while ($row = sed_sql_fetchassoc($sqltmp1)) { + $sqltmp2 = sed_sql_query("DELETE FROM $db_users WHERE user_id='" . $row['user_id'] . "'"); + $sqltmp2 = sed_sql_query("DELETE FROM $db_groups_users WHERE gru_userid='" . $row['user_id'] . "'"); + } + + if ($deleted > 0) { + sed_log("Cleaner plugin deleted " . $deleted . " inactivated user account(s)", 'adm'); + } +} + +if ($cfg['plugin']['cleaner']['logprune'] > 0) { + $timeago = $sys['now_offset'] - ($cfg['plugin']['cleaner']['logprune'] * 86400); + $sqltmp = sed_sql_query("DELETE FROM $db_logger WHERE log_date<$timeago"); + $deleted = sed_sql_affectedrows(); + if ($deleted > 0) { + sed_log('Cleaner plugin deleted ' . $deleted . ' log entries older than ' . $cfg['plugin']['cleaner']['logprune'] . ' days', 'adm'); + } +} + +if ($cfg['plugin']['cleaner']['refprune'] > 0) { + $timeago = $sys['now_offset'] - ($cfg['plugin']['cleaner']['refprune'] * 86400); + $sqltmp = sed_sql_query("DELETE FROM $db_referers WHERE ref_date<$timeago"); + + $deleted = sed_sql_affectedrows(); + if ($deleted > 0) { + sed_log('Cleaner plugin deleted ' . $deleted . ' referers entries older than ' . $cfg['plugin']['cleaner']['refprune'] . ' days', 'adm'); + } +} + +if ($cfg['plugin']['cleaner']['pmnotread'] > 0) { + $timeago = $sys['now_offset'] - ($cfg['plugin']['cleaner']['pmnotread'] * 86400); + $sqltmp = sed_sql_query("DELETE FROM $db_pm WHERE pm_date<$timeago AND pm_state=0"); + + $deleted = sed_sql_affectedrows(); + if ($deleted > 0) { + sed_log("Cleaner plugin deleted " . $deleted . " PM not read since " . $cfg['plugin']['cleaner']['pmnotread'] . " days", 'adm'); + } +} + +if ($cfg['plugin']['cleaner']['pmnotarchived'] > 0) { + $timeago = $sys['now_offset'] - ($cfg['plugin']['cleaner']['pmnotarchived'] * 86400); + $sqltmp = sed_sql_query("DELETE FROM $db_pm WHERE pm_date<$timeago AND pm_state=1"); + + $deleted = sed_sql_affectedrows(); + if ($deleted > 0) { + sed_log("Cleaner plugin deleted " . $deleted . " PM not archived since " . $cfg['plugin']['cleaner']['pmnotarchived'] . " days", 'adm'); + } +} + +if ($cfg['plugin']['cleaner']['pmold'] > 0) { + $timeago = $sys['now_offset'] - ($cfg['plugin']['cleaner']['pmold'] * 86400); + $sqltmp = sed_sql_query("DELETE FROM $db_pm WHERE pm_date<$timeago"); + + $deleted = sed_sql_affectedrows(); + if ($deleted > 0) { + sed_log("Cleaner plugin deleted " . $deleted . " PM older than " . $cfg['plugin']['cleaner']['pmold'] . " days", 'adm'); + } +} diff --git a/plugins/cleaner/cleaner.png b/plugins/cleaner/cleaner.png new file mode 100644 index 0000000..ee3def0 Binary files /dev/null and b/plugins/cleaner/cleaner.png differ diff --git a/plugins/cleaner/cleaner.setup.php b/plugins/cleaner/cleaner.setup.php new file mode 100644 index 0000000..52e94d2 --- /dev/null +++ b/plugins/cleaner/cleaner.setup.php @@ -0,0 +1,47 @@ +"; + } + + if (empty($sender_email) || empty($sender_name) || empty($sender_subject) || empty($sender_message)) { + $error_string .= $L['plu_fieldempty'] . "
"; + } + + if (!mb_strpos($sender_email, '@') || !mb_strpos($sender_email, '.')) { + $error_string .= $L['plu_wrongentry'] . "
"; + } + + if (empty($error_string)) { + $fheaders = ("From: " . $sender_email . "\n" . "Content-Type: text/plain; charset=" . $cfg['charset'] . "\n"); + $fbody = $L['plu_notice']; + + $fbody .= $sender_name . "\n" . $L['plu_recipients_title'] . " : " . $cfg_names[$sender_recip] . "\n" . $L['plu_email_title'] . " : " . $sender_email . "\n" . $L['plu_phone_title'] . " : " . $sender_tel . "\n\n"; + + $fbody .= $L['plu_message_title'] . " : \n\n" . sed_br2nl($sender_message); + sed_mail($cfg_emails[$sender_recip], $sender_subject, $fbody, $fheaders); + + if (!empty($cfg['plugin']['contact']['admincopy1'])) { + sed_mail(trim($cfg['plugin']['contact']['admincopy1']), "COPY: " . $sender_subject, $fbody, $fheaders); + } + + if (!empty($cfg['plugin']['contact']['admincopy2'])) { + sed_mail(trim($cfg['plugin']['contact']['admincopy2']), "COPY: " . $sender_subject, $fbody, $fheaders); + } + + sed_redirect(sed_url("plug", "e=contact&a=done", "", true)); + exit; + } +} elseif ($a == 'done') { + $message = $L['plu_sent']; + unset($sender_email, $sender_name, $sender_subject, $sender_message, $sender_recip); +} + +// ====================================================== + +$error_string .= (!empty($error_string)) ? $L['plu_notsent'] : ''; + +$recipients = "\n"; + +$sender_email = isset($sender_email) ? $sender_email : ''; +$sender_name = isset($sender_name) ? $sender_name : ''; + +$sender_email = (empty($sender_email) && !empty($usr['profile']['user_email'])) ? $usr['profile']['user_email'] : $sender_email; +$sender_name = (empty($sender_name) && $usr['id'] > 0) ? $usr['name'] : $sender_name; + +for ($i = 1; $i <= 3; $i++) { + $antispam_key[] = rand(1, 9); +} + +$antispam_fak = array_reverse($antispam_key); +$antispam_key = implode('.', $antispam_key); +$antispam_fak = implode('.', $antispam_fak); + +$antispam = "  " . $antispam_key . "  "; +$antispam .= sed_textbox('sender_key', $sender_key, 8, 8); +$antispam .= sed_textbox_hidden('sender_fak', $antispam_fak); + +// ---------- Breadcrumbs +$urlpaths = array(); +$urlpaths[sed_url("plug", "e=contact")] = $L['plu_title']; + +if (!empty($error_string)) { + $t->assign("PLUGIN_CONTACT_ERROR_BODY", sed_alert($error_string, 'e')); + $t->parse("MAIN.PLUGIN_CONTACT_ERROR"); +} + +if (!empty($message)) { + $t->assign("PLUGIN_CONTACT_DONE_BODY", sed_alert($message, 's')); + $t->parse("MAIN.PLUGIN_CONTACT_DONE"); +} + +$t->assign(array( + "PLUGIN_CONTACT_TITLE" => "" . $L['plu_title'] . "", + "PLUGIN_CONTACT_SHORTTITLE" => $L['plu_title'], + "PLUGIN_CONTACT_BREADCRUMBS" => sed_breadcrumbs($urlpaths), + "PLUGIN_CONTACT_URL" => sed_url("plug", "e=contact"), + "PLUGIN_CONTACT_EXPLAIN" => $L['plu_explain'], + "PLUGIN_CONTACT_FORM" => sed_url("plug", "e=contact&a=send"), + "PLUGIN_CONTACT_RECIPIENTS_TITLE" => $L['plu_recipients_title'], + "PLUGIN_CONTACT_RECIPIENTS" => $recipients, + "PLUGIN_CONTACT_EMAIL_TITLE" => $L['plu_email_title'], + "PLUGIN_CONTACT_EMAIL" => sed_textbox('sender_email', isset($sender_email) ? $sender_email : '', 32, 64), + "PLUGIN_CONTACT_NAME_TITLE" => $L['plu_name_title'], + "PLUGIN_CONTACT_NAME" => sed_textbox('sender_name', isset($sender_name) ? $sender_name : '', 32, 64), + "PLUGIN_CONTACT_PHONE_TITLE" => $L['plu_phone_title'], + "PLUGIN_CONTACT_PHONE" => sed_textbox('sender_tel', isset($sender_tel) ? $sender_tel : '', 18, 18), + "PLUGIN_CONTACT_SUBJECT_TITLE" => $L['plu_subject_title'], + "PLUGIN_CONTACT_SUBJECT" => sed_textbox('sender_subject', isset($sender_subject) ? $sender_subject : '', 48, 64), + "PLUGIN_CONTACT_BODY_TITLE" => $L['plu_message_title'], + "PLUGIN_CONTACT_BODY" => sed_textarea('sender_message', isset($sender_message) ? $sender_message : '', 8, 48, 'noeditor') . sed_textbox_hidden('sender_tarp', ''), + "PLUGIN_CONTACT_REQUIRED" => $L['plu_required'], + "PLUGIN_CONTACT_ANTISPAM" => $L['plu_verify'] . $antispam, + "PLUGIN_CONTACT_EXTRA1" => $cfg['plugin']['contact']['extra1'], + "PLUGIN_CONTACT_EXTRA2" => $cfg['plugin']['contact']['extra2'], + "PLUGIN_CONTACT_EXTRA3" => $cfg['plugin']['contact']['extra3'], + "PLUGIN_CONTACT_SEND" => $L['plu_send'] +)); diff --git a/plugins/contact/contact.png b/plugins/contact/contact.png new file mode 100644 index 0000000..be80963 Binary files /dev/null and b/plugins/contact/contact.png differ diff --git a/plugins/contact/contact.setup.php b/plugins/contact/contact.setup.php new file mode 100644 index 0000000..c8c7220 --- /dev/null +++ b/plugins/contact/contact.setup.php @@ -0,0 +1,46 @@ +assign(array( + "IPSEARCH_FORM_SEND" => sed_url('admin', 'm=tools&p=ipsearch&a=search&' . sed_xg()), + "IPSEARCH_FORM_IPFIELD" => sed_textbox('id', $id, 16, 16) +)); + +if ($a == 'search') { + sed_check_xg(); + $id_g = sed_import('id', 'G', 'TXT', 15); + $id_p = sed_import('id', 'P', 'TXT', 15); + + if (!empty($id_g)) { + $id = $id_g; + } else { + $id = $id_p; + } + + $userip = explode(".", $id); + if (count($userip) != 4 || mb_strlen($userip[0]) > 3 || mb_strlen($userip[1]) > 3 || mb_strlen($userip[2]) > 3 || mb_strlen($userip[3]) > 3) { + sed_die(); + } + + $ipmask1 = $userip[0] . "." . $userip[1] . "." . $userip[2] . "." . $userip[3]; + $ipmask2 = $userip[0] . "." . $userip[1] . "." . $userip[2]; + $ipmask3 = $userip[0] . "." . $userip[1]; + + $res_host = @gethostbyaddr($id); + $res_dns = ($res_host == $id) ? 'Unknown' : $res_host; + + $sql = sed_sql_query("SELECT user_id, user_name, user_lastip FROM $db_users WHERE user_lastip = '$ipmask1' "); + $totalmatches1 = sed_sql_numrows($sql); + + while ($row = sed_sql_fetchassoc($sql)) { + $ipx->assign(array( + "IPSEARCH_IPMASK1" => sed_build_user($row['user_id'], sed_cc($row['user_name'])), + "IPSEARCH_LASTIP_IPMASK1" => sed_build_ipsearch($row['user_lastip']) + )); + $ipx->parse("IPSEARCH.IPSEARCH_RESULTS.IPSEARCH_IPMASK1"); + } + + $sql = sed_sql_query("SELECT user_id, user_name, user_lastip FROM $db_users WHERE user_lastip LIKE '$ipmask2.%' "); + $totalmatches2 = sed_sql_numrows($sql); + + while ($row = sed_sql_fetchassoc($sql)) { + $ipx->assign(array( + "IPSEARCH_IPMASK2" => sed_build_user($row['user_id'], sed_cc($row['user_name'])), + "IPSEARCH_LASTIP_IPMASK2" => sed_build_ipsearch($row['user_lastip']) + )); + $ipx->parse("IPSEARCH.IPSEARCH_RESULTS.IPSEARCH_IPMASK2"); + } + + $sql = sed_sql_query("SELECT user_id, user_name, user_lastip FROM $db_users WHERE user_lastip LIKE '$ipmask3.%.%' "); + $totalmatches3 = sed_sql_numrows($sql); + + while ($row = sed_sql_fetchassoc($sql)) { + $ipx->assign(array( + "IPSEARCH_IPMASK3" => sed_build_user($row['user_id'], sed_cc($row['user_name'])), + "IPSEARCH_LASTIP_IPMASK3" => sed_build_ipsearch($row['user_lastip']) + )); + $ipx->parse("IPSEARCH.IPSEARCH_RESULTS.IPSEARCH_IPMASK3"); + } + + $ipx->assign(array( + "IPSEARCH_RESULT_DNS" => $res_dns, + "IPSEARCH_RESULT_TOTALMATCHES1" => $totalmatches1, + "IPSEARCH_RESULT_IPMASK1" => $ipmask1, + "IPSEARCH_RESULT_TOTALMATCHES2" => $totalmatches2, + "IPSEARCH_RESULT_IPMASK2" => $ipmask2, + "IPSEARCH_RESULT_TOTALMATCHES3" => $totalmatches3, + "IPSEARCH_RESULT_IPMASK3" => $ipmask3 + )); + $ipx->parse("IPSEARCH.IPSEARCH_RESULTS"); +} + +$ipx->parse("IPSEARCH"); +$plugin_body = $ipx->text("IPSEARCH"); diff --git a/plugins/ipsearch/ipsearch.png b/plugins/ipsearch/ipsearch.png new file mode 100644 index 0000000..f18ba7c Binary files /dev/null and b/plugins/ipsearch/ipsearch.png differ diff --git a/plugins/ipsearch/ipsearch.setup.php b/plugins/ipsearch/ipsearch.setup.php new file mode 100644 index 0000000..067c7f2 --- /dev/null +++ b/plugins/ipsearch/ipsearch.setup.php @@ -0,0 +1,39 @@ + + +

{PHP.L.adm_searchthisuser}:

+ + + + + +

{PHP.L.adm_dnsrecord}: {IPSEARCH_RESULT_DNS}

+ +

Found {IPSEARCH_RESULT_TOTALMATCHES1} matche(s) for {IPSEARCH_RESULT_IPMASK1}:

+ +
    + +
  • {IPSEARCH_IPMASK1}: {IPSEARCH_LASTIP_IPMASK1}
  • + +
+ +

Found {IPSEARCH_RESULT_TOTALMATCHES2} match(es) for {IPSEARCH_RESULT_IPMASK2}.*:

+ +
    + +
  • {IPSEARCH_IPMASK2}: {IPSEARCH_LASTIP_IPMASK2}
  • + +
+ +

Found {IPSEARCH_RESULT_TOTALMATCHES3} matche(s) for {IPSEARCH_RESULT_IPMASK3}.*.*:

+ +
    + +
  • {IPSEARCH_IPMASK3}: {IPSEARCH_LASTIP_IPMASK3}
  • + +
+ + + + \ No newline at end of file diff --git a/plugins/jevix/inc/jevix.class.php b/plugins/jevix/inc/jevix.class.php new file mode 100644 index 0000000..316a477 --- /dev/null +++ b/plugins/jevix/inc/jevix.class.php @@ -0,0 +1,1481 @@ + $value) { + if ($value != '') { + $tag_string .= ' ' . $param . '="' . $value . '"'; + } + } + + $tag_string .= '>' . $content . ''; + return $tag_string; +} + +function sed_jevix($text, $filter = 'medium', $xhtml = false, $use_admin = true, $ext_link_enc = false) +{ + if ($use_admin == false) return $text; //Disable Jevix for Admin + + $jevix = new Jevix(); + + switch ($filter) { + /* -- Full settings -- */ + case 'full': + + $jevix->cfgAllowTags(array( + 'p', 'a', 'img', 'i', 'b', 'u', 's', 'em', 'strong', 'strike', 'small', + 'nobr', 'li', 'ol', 'ul', 'sup', 'abbr', 'sub', 'acronym', 'h1', 'h2', 'button', + 'h3', 'h4', 'h5', 'h6', 'br', 'hr', 'pre', 'code', 'object', 'param', 'embed', 'adabracut', + 'blockquote', 'iframe', 'span', 'div', 'table', 'tbody', 'thead', 'tfoot', 'tr', 'td', 'th' + )); + // Establish short tags. (Not having closing tag) + $jevix->cfgSetTagShort(array('br', 'img', 'hr')); + // Establish preformatted tags. (In all of them will be will be replaced on HTML essence) + $jevix->cfgSetTagPreformatted(array('pre', 'code')); + // Establish tags which are necessary for cutting out from the text together with a content. + $jevix->cfgSetTagCutWithContent(array('script', 'style', 'meta')); + // Establish the resolved parametres tags. Also it is possible to establish admissible values of these parametres. + $jevix->cfgAllowTagParams('p', array('style')); + $jevix->cfgAllowTagParams('i', array('class')); + $jevix->cfgAllowTagParams('span', array('style')); + $jevix->cfgAllowTagParams('a', array('title', 'href' => '#link', 'rel' => '#text', 'name' => '#text', 'target' => array('_blank'))); + $jevix->cfgAllowTagParams('img', array('src' => '#image', 'style' => '#text', 'alt' => '#text', 'title', 'align' => array('right', 'left', 'center'), 'width' => '#int', 'height' => '#int', 'hspace' => '#int', 'vspace' => '#int')); + $jevix->cfgAllowTagParams('object', array('width' => '#int', 'height' => '#int', 'data' => array('#domain' => array('youtube.com', 'rutube.ru', 'vimeo.com', 'player.vimeo.com')), 'type' => '#text', 'class' => '#text', 'frameborder' => '#int', 'title' => '#text')); + $jevix->cfgAllowTagParams('param', array('name' => '#text', 'value' => '#text')); + $jevix->cfgAllowTagParams('embed', array('src' => '#image', 'type' => '#text', 'allowscriptaccess' => '#text', 'allowfullscreen' => '#text', 'width' => '#int', 'height' => '#int', 'flashvars' => '#text', 'wmode' => '#text')); + $jevix->cfgAllowTagParams('iframe', array('width' => '#int', 'height' => '#int', 'src' => array('#domain' => array('youtube.com', 'rutube.ru', 'vimeo.com', 'player.vimeo.com')), 'type' => '#text', 'class' => '#text', 'frameborder' => '#int', 'title' => '#text')); + $jevix->cfgAllowTagParams('pre', array('class')); + $jevix->cfgAllowTagParams('acronym', array('title')); + $jevix->cfgAllowTagParams('abbr', array('title')); + $jevix->cfgAllowTagParams('hr', array('id' => '#text', 'class')); + $jevix->cfgAllowTagParams('div', array('class', 'id', 'style')); + $jevix->cfgAllowTagParams('button', array('class', 'id', 'style')); + $jevix->cfgAllowTagParams('h1', array('style')); + $jevix->cfgAllowTagParams('h2', array('style')); + $jevix->cfgAllowTagParams('h3', array('style')); + $jevix->cfgAllowTagParams('h4', array('style')); + $jevix->cfgAllowTagParams('h5', array('style')); + $jevix->cfgAllowTagParams('h6', array('style')); + $jevix->cfgAllowTagParams('span', array('class', 'id', 'style')); + $jevix->cfgAllowTagParams('table', array('border', 'class', 'width', 'align', 'valign', 'style')); + $jevix->cfgAllowTagParams('tr', array('height', 'class')); + $jevix->cfgAllowTagParams('td', array('colspan', 'rowspan', 'class', 'width', 'height', 'align', 'valign')); + $jevix->cfgAllowTagParams('th', array('colspan', 'rowspan', 'class', 'width', 'height', 'align', 'valign')); + // Establish the resolved parametres css styles for tags + $jevix->cfgSetTagStyleParams( + array('span'), + array( + 'text-decoration' => array('none', 'line-through', 'underline'), + 'font-style' => array('normal', 'italic'), + 'font-family', + 'font-weight' => array('normal', 'bold'), + 'font-size' => '#regexp:%^(8|10|12|14|16|18|20)px$%i', + 'color' => '#regexp:%^(#([a-f0-9]{6}|[a-f0-9]{3}))|(rgb\\((\\d{1,3}),\\s*(\\d{1,3}),\\s*(\\d{1,3})\\))$%i', + 'background-color' => '#regexp:%^(#([a-f0-9]{6}|[a-f0-9]{3}))|(rgb\\((\\d{1,3}),\\s*(\\d{1,3}),\\s*(\\d{1,3})\\))$%i' + ) + ); + // Allowed style for tags + $jevix->cfgSetTagStyleParams( + array('p'), + array( + 'padding-left' => '#regexp:%^(10|20|30|40|50|60|70|80|90|100|120|140|150|160|180)px$%i', + 'margin-left' => '#regexp:%^(10|20|30|40|50|60|70|80|90|100|120|140|150|160|180)px$%i', + 'text-align' => array('left', 'center', 'right', 'justify') + ) + ); + // Establish parametres tags being the obligatory. Without them cuts out tag leaving contents. + $jevix->cfgSetTagParamsRequired('img', 'src'); + $jevix->cfgSetTagParamsRequired('a', 'href'); + + if ($ext_link_enc) { + $jevix->cfgSetTagCallbackFull('a', 'sed_external_link_encode'); + } + + // Establish tags which can contain tag the container + $jevix->cfgSetTagChilds('ul', array('li'), false, true); + $jevix->cfgSetTagChilds('ol', array('li'), false, true); + $jevix->cfgSetTagChilds('object', 'param', false, true); + $jevix->cfgSetTagChilds('object', 'embed', false, false); + // Establish tags which can be empty + $jevix->cfgSetTagIsEmpty(array('param', 'embed', 'a', 'i', 'iframe')); + // Establish attributes tags which will be automatically added + $jevix->cfgSetTagParamDefault('embed', 'wmode', 'opaque', true); + // Establish autoreplacement + $jevix->cfgSetAutoReplace(array('+/-', '(c)', '(с)', '(r)', '(C)', '(С)', '(R)'), array('±', '©', '©', '®', '©', '©', '®')); + // Disconnect typografy in defined tag + $jevix->cfgSetTagNoTypography('code', 'video', 'object'); + + break; + /* ---- */ + + /* -- Medium settings -- */ + case 'medium': + + $jevix->cfgAllowTags(array( + 'p', 'a', 'img', 'i', 'b', 'u', 's', 'em', 'strong', 'strike', 'small', + 'nobr', 'li', 'ol', 'ul', 'sup', 'abbr', 'sub', 'acronym', 'h1', 'h2', + 'h3', 'h4', 'h5', 'h6', 'br', 'hr', 'pre', 'code', 'blockquote', 'span' + )); + $jevix->cfgSetTagShort(array('br', 'img', 'hr')); + $jevix->cfgSetTagPreformatted(array('pre', 'code')); + $jevix->cfgSetTagCutWithContent(array('script', 'style', 'meta')); + $jevix->cfgAllowTagParams('p', array('style')); + $jevix->cfgAllowTagParams('i', array('class')); + $jevix->cfgAllowTagParams('span', array('style')); + $jevix->cfgAllowTagParams('a', array('title', 'href' => '#link', 'rel' => '#text', 'name' => '#text', 'target' => array('_blank'))); + $jevix->cfgAllowTagParams('img', array('src' => '#image', 'style' => '#text', 'alt' => '#text', 'title', 'align' => array('right', 'left', 'center'), 'width' => '#int', 'height' => '#int', 'hspace' => '#int', 'vspace' => '#int')); + $jevix->cfgAllowTagParams('pre', array('class')); + $jevix->cfgAllowTagParams('acronym', array('title')); + $jevix->cfgAllowTagParams('abbr', array('title')); + $jevix->cfgAllowTagParams('hr', array('id' => '#text', 'class')); + $jevix->cfgAllowTagParams('h1', array('style')); + $jevix->cfgAllowTagParams('h2', array('style')); + $jevix->cfgAllowTagParams('h3', array('style')); + $jevix->cfgAllowTagParams('h4', array('style')); + $jevix->cfgAllowTagParams('h5', array('style')); + $jevix->cfgAllowTagParams('h6', array('style')); + $jevix->cfgSetTagStyleParams( + array('span'), + array( + 'text-decoration' => array('none', 'line-through', 'underline'), + 'font-style' => array('normal', 'italic'), + 'font-family', + 'font-weight' => array('normal', 'bold'), + 'font-size' => '#regexp:%^(8|10|12|14|16|18|20)px$%i', + 'color' => '#regexp:%^(#([a-f0-9]{6}|[a-f0-9]{3}))|(rgb\\((\\d{1,3}),\\s*(\\d{1,3}),\\s*(\\d{1,3})\\))$%i', + 'background-color' => '#regexp:%^(#([a-f0-9]{6}|[a-f0-9]{3}))|(rgb\\((\\d{1,3}),\\s*(\\d{1,3}),\\s*(\\d{1,3})\\))$%i' + ) + ); + $jevix->cfgSetTagStyleParams( + array('p'), + array( + 'padding-left' => '#regexp:%^(10|20|30|40|50|60|70|80|90|100|120|140|150|160|180)px$%i', + 'margin-left' => '#regexp:%^(10|20|30|40|50|60|70|80|90|100|120|140|150|160|180)px$%i', + 'text-align' => array('left', 'center', 'right', 'justify') + ) + ); + + // Establish tags which can be empty + $jevix->cfgSetTagIsEmpty(array('a', 'i')); + + $jevix->cfgSetTagParamsRequired('img', 'src'); + $jevix->cfgSetTagParamsRequired('a', 'href'); + + if ($ext_link_enc) { + $jevix->cfgSetTagCallbackFull('a', 'sed_external_link_encode'); + } + + $jevix->cfgSetTagChilds('ul', array('li'), false, true); + $jevix->cfgSetTagChilds('ol', array('li'), false, true); + $jevix->cfgSetAutoReplace(array('+/-', '(c)', '(с)', '(r)', '(C)', '(С)', '(R)'), array('±', '©', '©', '®', '©', '©', '®')); + $jevix->cfgSetTagNoTypography('code'); + + break; + /* ---- */ + + /* -- Micro settings - default -- */ + default: + + $jevix->cfgAllowTags(array('p', 'a', 'i', 'b', 'u', 's', 'em', 'strong', 'br', 'strike')); + $jevix->cfgSetTagShort(array('br')); + $jevix->cfgAllowTagParams('i', array('class')); + $jevix->cfgAllowTagParams('a', array('title', 'href' => '#link', 'rel' => '#text', 'name' => '#text', 'target' => array('_blank'))); + $jevix->cfgSetTagParamsRequired('a', 'href'); + $jevix->cfgSetTagIsEmpty(array('a', 'i')); + + if ($ext_link_enc) { + $jevix->cfgSetTagCallbackFull('a', 'sed_external_link_encode'); + } + + break; + /* ---- */ + } + + // Include or switch off mode XHTML. It (is by default included) + $jevix->cfgSetXHTMLMode($xhtml); + // Include or switch off a mode of replacement of carrying over of lines on тег
. It (is by default included) + $jevix->cfgSetAutoBrMode(false); + // Include or switch off a mode of automatic definition of references. It (is by default included) + $jevix->cfgSetAutoLinkMode(false); + // Variable in which will be write errors + $errors = null; + return $jevix->parse($text, $errors); +} + +/** + * Jevix — means of automatic application of rules of a set of texts, + * allocated with ability to unify marking HTML/XML of documents, + * to supervise the list admissible tags and attributes, + * to prevent possible XSS-attacks in a code of documents. + * http://code.google.com/p/jevix/ + * + * @author ur001 , http://ur001.habrahabr.ru + * @version 1.01 + */ + + +class Jevix +{ + const PRINATABLE = 0x1; + const ALPHA = 0x2; + const LAT = 0x4; + const RUS = 0x8; + const NUMERIC = 0x10; + const SPACE = 0x20; + const NAME = 0x40; + const URL = 0x100; + const NOPRINT = 0x200; + const PUNCTUATUON = 0x400; + //const = 0x800; + //const = 0x1000; + const HTML_QUOTE = 0x2000; + const TAG_QUOTE = 0x4000; + const QUOTE_CLOSE = 0x8000; + const NL = 0x10000; + const QUOTE_OPEN = 0; + + const STATE_TEXT = 0; + const STATE_TAG_PARAMS = 1; + const STATE_TAG_PARAM_VALUE = 2; + const STATE_INSIDE_TAG = 3; + const STATE_INSIDE_NOTEXT_TAG = 4; + const STATE_INSIDE_PREFORMATTED_TAG = 5; + const STATE_INSIDE_CALLBACK_TAG = 6; + + public $tagsRules = array(); + + public $tagsStyleAllowed = array( + 'font-family', 'font-size', 'font-weight', 'text-align', 'text-indent', 'text-decoration', 'line-height', 'color', + 'background-color', 'background-image', 'margin-left', 'margin-right', 'margin-top', 'margin-bottom', 'padding-left', 'padding-right', + 'padding-top', 'padding-bottom', 'border-width', 'border-style', 'border-color', 'padding', 'margin', 'width', 'height' + ); + + public $entities1 = array('"' => '"', "'" => ''', '&' => '&', '<' => '<', '>' => '>'); + public $entities2 = array('<' => '<', '>' => '>', '"' => '"'); + public $textQuotes = array(array('«', '»'), array('„', '“')); + public $dash = " — "; + public $apostrof = "’"; + public $dotes = "…"; + public $nl = "\r\n"; + public $defaultTagParamRules = array('href' => '#link', 'src' => '#image', 'width' => '#int', 'height' => '#int', 'text' => '#text', 'title' => '#text'); + + protected $text; + protected $textBuf; + protected $textLen = 0; + protected $curPos; + protected $curCh; + protected $curChOrd; + protected $curChClass; + protected $curParentTag; + protected $states; + protected $quotesOpened = 0; + protected $brAdded = 0; + protected $state; + protected $tagsStack; + protected $openedTag; + protected $autoReplace; + protected $isXHTMLMode = true; //
, + protected $isAutoBrMode = true; // \n =
+ protected $isAutoLinkMode = true; + protected $br = "
"; + + protected $noTypoMode = false; + + public $outBuffer = ''; + public $errors; + + + const TR_TAG_ALLOWED = 1; + const TR_PARAM_ALLOWED = 2; + const TR_PARAM_REQUIRED = 3; + const TR_TAG_SHORT = 4; + const TR_TAG_CUT = 5; + const TR_TAG_CHILD = 6; + const TR_TAG_CONTAINER = 7; + const TR_TAG_CHILD_TAGS = 8; + const TR_TAG_PARENT = 9; + const TR_TAG_PREFORMATTED = 10; + const TR_PARAM_AUTO_ADD = 11; + const TR_TAG_NO_TYPOGRAPHY = 12; + const TR_TAG_IS_EMPTY = 13; + const TR_TAG_NO_AUTO_BR = 14; + const TR_TAG_CALLBACK = 15; + const TR_TAG_BLOCK_TYPE = 16; + const TR_TAG_CALLBACK_FULL = 17; + const TR_TAG_PARSE_STYLE = 20; + + protected $chClasses = array(0 => 512, 1 => 512, 2 => 512, 3 => 512, 4 => 512, 5 => 512, 6 => 512, 7 => 512, 8 => 512, 9 => 32, 10 => 66048, 11 => 512, 12 => 512, 13 => 66048, 14 => 512, 15 => 512, 16 => 512, 17 => 512, 18 => 512, 19 => 512, 20 => 512, 21 => 512, 22 => 512, 23 => 512, 24 => 512, 25 => 512, 26 => 512, 27 => 512, 28 => 512, 29 => 512, 30 => 512, 31 => 512, 32 => 32, 97 => 71, 98 => 71, 99 => 71, 100 => 71, 101 => 71, 102 => 71, 103 => 71, 104 => 71, 105 => 71, 106 => 71, 107 => 71, 108 => 71, 109 => 71, 110 => 71, 111 => 71, 112 => 71, 113 => 71, 114 => 71, 115 => 71, 116 => 71, 117 => 71, 118 => 71, 119 => 71, 120 => 71, 121 => 71, 122 => 71, 65 => 71, 66 => 71, 67 => 71, 68 => 71, 69 => 71, 70 => 71, 71 => 71, 72 => 71, 73 => 71, 74 => 71, 75 => 71, 76 => 71, 77 => 71, 78 => 71, 79 => 71, 80 => 71, 81 => 71, 82 => 71, 83 => 71, 84 => 71, 85 => 71, 86 => 71, 87 => 71, 88 => 71, 89 => 71, 90 => 71, 1072 => 11, 1073 => 11, 1074 => 11, 1075 => 11, 1076 => 11, 1077 => 11, 1078 => 11, 1079 => 11, 1080 => 11, 1081 => 11, 1082 => 11, 1083 => 11, 1084 => 11, 1085 => 11, 1086 => 11, 1087 => 11, 1088 => 11, 1089 => 11, 1090 => 11, 1091 => 11, 1092 => 11, 1093 => 11, 1094 => 11, 1095 => 11, 1096 => 11, 1097 => 11, 1098 => 11, 1099 => 11, 1100 => 11, 1101 => 11, 1102 => 11, 1103 => 11, 1040 => 11, 1041 => 11, 1042 => 11, 1043 => 11, 1044 => 11, 1045 => 11, 1046 => 11, 1047 => 11, 1048 => 11, 1049 => 11, 1050 => 11, 1051 => 11, 1052 => 11, 1053 => 11, 1054 => 11, 1055 => 11, 1056 => 11, 1057 => 11, 1058 => 11, 1059 => 11, 1060 => 11, 1061 => 11, 1062 => 11, 1063 => 11, 1064 => 11, 1065 => 11, 1066 => 11, 1067 => 11, 1068 => 11, 1069 => 11, 1070 => 11, 1071 => 11, 48 => 337, 49 => 337, 50 => 337, 51 => 337, 52 => 337, 53 => 337, 54 => 337, 55 => 337, 56 => 337, 57 => 337, 34 => 57345, 39 => 16385, 46 => 1281, 44 => 1025, 33 => 1025, 63 => 1281, 58 => 1025, 59 => 1281, 1105 => 11, 1025 => 11, 47 => 257, 38 => 257, 37 => 257, 45 => 257, 95 => 257, 61 => 257, 43 => 257, 35 => 257, 124 => 257,); + + protected function _cfgSetTagsFlag($tags, $flag, $value, $createIfNoExists = true) + { + if (!is_array($tags)) $tags = array($tags); + foreach ($tags as $tag) { + if (!isset($this->tagsRules[$tag])) { + if ($createIfNoExists) { + $this->tagsRules[$tag] = array(); + } else { + throw new Exception("Tag $tag is not in the list of allowed tags"); + } + } + $this->tagsRules[$tag][$flag] = $value; + } + } + + function cfgAllowTags($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_ALLOWED, true); + } + + function cfgSetTagShort($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_SHORT, true, false); + } + + function cfgSetTagPreformatted($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_PREFORMATTED, true, false); + } + + function cfgSetTagNoTypography($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_NO_TYPOGRAPHY, true, false); + } + + function cfgSetTagIsEmpty($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_IS_EMPTY, true, false); + } + + function cfgSetTagNoAutoBr($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_NO_AUTO_BR, true, false); + } + + function cfgSetTagCutWithContent($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_CUT, true); + } + + function cfgSetTagBlockType($tags) + { + $this->_cfgSetTagsFlag($tags, self::TR_TAG_BLOCK_TYPE, true); + } + + function cfgAllowTagParams($tag, $params) + { + // if(!isset($this->tagsRules[$tag])) throw new Exception("Тег $tag отсутствует в списке разрешённых тегов"); + // ==================== + if (isset($this->tagsRules[$tag])) { + + if (!is_array($params)) $params = array($params); + if (!isset($this->tagsRules[$tag][self::TR_PARAM_ALLOWED])) { + $this->tagsRules[$tag][self::TR_PARAM_ALLOWED] = array(); + } + foreach ($params as $key => $value) { + if (is_string($key)) { + $this->tagsRules[$tag][self::TR_PARAM_ALLOWED][$key] = $value; + } else { + $this->tagsRules[$tag][self::TR_PARAM_ALLOWED][$value] = true; + } + } + } + // ==================== + } + + function cfgSetTagParamsRequired($tag, $params) + { + if (!isset($this->tagsRules[$tag])) throw new Exception("Tag $tag is not in the list of allowed tags"); + if (!is_array($params)) $params = array($params); + // Если ключа со списком разрешенных параметров не существует - создаём ео + if (!isset($this->tagsRules[$tag][self::TR_PARAM_REQUIRED])) { + $this->tagsRules[$tag][self::TR_PARAM_REQUIRED] = array(); + } + foreach ($params as $param) { + $this->tagsRules[$tag][self::TR_PARAM_REQUIRED][$param] = true; + } + } + + function cfgSetTagChilds($tag, $childs, $isContainerOnly = false, $isChildOnly = false) + { + if (!isset($this->tagsRules[$tag])) throw new Exception("Tag $tag is not in the list of allowed tags"); + if (!is_array($childs)) $childs = array($childs); + + if ($isContainerOnly) $this->tagsRules[$tag][self::TR_TAG_CONTAINER] = true; + + if (!isset($this->tagsRules[$tag][self::TR_TAG_CHILD_TAGS])) { + $this->tagsRules[$tag][self::TR_TAG_CHILD_TAGS] = array(); + } + foreach ($childs as $child) { + $this->tagsRules[$tag][self::TR_TAG_CHILD_TAGS][$child] = true; + + if (!isset($this->tagsRules[$child])) throw new Exception("Tag $child is not in the list of allowed tags"); + if (!isset($this->tagsRules[$child][self::TR_TAG_PARENT])) $this->tagsRules[$child][self::TR_TAG_PARENT] = array(); + $this->tagsRules[$child][self::TR_TAG_PARENT][$tag] = true; + + if ($isChildOnly) $this->tagsRules[$child][self::TR_TAG_CHILD] = true; + } + } + + function cfgSetTagParamsAutoAdd($tag, $params) + { + throw new Exception("cfgSetTagParamsAutoAdd() is Deprecated. Use cfgSetTagParamDefault() instead"); + } + + function cfgSetTagParamDefault($tag, $param, $value, $isRewrite = false) + { + if (!isset($this->tagsRules[$tag])) throw new Exception("Tag $tag is missing in allowed tags list"); + + if (!isset($this->tagsRules[$tag][self::TR_PARAM_AUTO_ADD])) { + $this->tagsRules[$tag][self::TR_PARAM_AUTO_ADD] = array(); + } + + $this->tagsRules[$tag][self::TR_PARAM_AUTO_ADD][$param] = array('value' => $value, 'rewrite' => $isRewrite); + } + + function cfgSetTagCallback($tag, $callback = null) + { + if (!isset($this->tagsRules[$tag])) throw new Exception("Tag $tag is not in the list of allowed tags"); + $this->tagsRules[$tag][self::TR_TAG_CALLBACK] = $callback; + } + + function cfgSetTagCallbackFull($tag, $callback = null) + { + if (!isset($this->tagsRules[$tag])) throw new Exception("Tag $tag is not in the list of allowed tags"); + $this->tagsRules[$tag][self::TR_TAG_CALLBACK_FULL] = $callback; + } + + function cfgSetAutoReplace($from, $to) + { + $this->autoReplace = array('from' => $from, 'to' => $to); + } + + function cfgSetXHTMLMode($isXHTMLMode) + { + $this->br = $isXHTMLMode ? '
' : '
'; + $this->isXHTMLMode = $isXHTMLMode; + } + + function cfgSetAutoBrMode($isAutoBrMode) + { + $this->isAutoBrMode = $isAutoBrMode; + } + + function cfgSetAutoLinkMode($isAutoLinkMode) + { + $this->isAutoLinkMode = $isAutoLinkMode; + } + + // ------- Set Tag Style params --------------- // + + function cfgSetTagStyleParams($tag, $params) + { + $tags = is_array($tag) ? $tag : array($tag); + if (!is_array($params)) $params = array($params); + + $this->_cfgSetTagsFlag($tags, self::TR_TAG_PARSE_STYLE, array()); + + foreach ($tags as $tag) { + //$this->cfgAllowTagParams($tag, array('style')); // Атрибует style для тега будет принудительно позволен + + if (!isset($this->tagsRules[$tag][self::TR_TAG_PARSE_STYLE])) { + $this->tagsRules[$tag][self::TR_TAG_PARSE_STYLE] = array(); + } + + foreach ($params as $key => $value) { + if (is_string($key)) { + $this->tagsRules[$tag][self::TR_TAG_PARSE_STYLE][$key] = $value; + } else { + $this->tagsRules[$tag][self::TR_TAG_PARSE_STYLE][$value] = true; + } + } + } + } + // -------------------------------------------- // + + + protected function &strToArray($str) + { + $chars = null; + preg_match_all('/./su', $str, $chars); + return $chars[0]; + } + + + function parse($text, &$errors) + { + $this->curPos = -1; + $this->curCh = null; + $this->curChOrd = 0; + $this->state = self::STATE_TEXT; + $this->states = array(); + $this->quotesOpened = 0; + $this->noTypoMode = false; + + if ($this->isAutoBrMode) { + $this->text = preg_replace('/(\r\n|\n\r|\n)?/ui', $this->nl, $text); + } else { + $this->text = $text; + } + + + if (!empty($this->autoReplace)) { + $this->text = str_ireplace($this->autoReplace['from'], $this->autoReplace['to'], $this->text); + } + $this->textBuf = $this->strToArray($this->text); + $this->textLen = count($this->textBuf); + $this->getCh(); + $content = ''; + $this->outBuffer = ''; + $this->brAdded = 0; + $this->tagsStack = array(); + $this->openedTag = null; + $this->errors = array(); + $this->skipSpaces(); + $this->anyThing($content); + $errors = $this->errors; + return $content; + } + + protected function getCh() + { + return $this->goToPosition($this->curPos + 1); + } + + protected function goToPosition($position) + { + $this->curPos = $position; + if ($this->curPos < $this->textLen) { + $this->curCh = $this->textBuf[$this->curPos]; + $this->curChOrd = uniord($this->curCh); + $this->curChClass = $this->getCharClass($this->curChOrd); + } else { + $this->curCh = null; + $this->curChOrd = 0; + $this->curChClass = 0; + } + return $this->curCh; + } + + protected function saveState() + { + $state = array( + 'pos' => $this->curPos, + 'ch' => $this->curCh, + 'ord' => $this->curChOrd, + 'class' => $this->curChClass, + ); + + $this->states[] = $state; + return count($this->states) - 1; + } + + protected function restoreState($index = null) + { + if (!count($this->states)) throw new Exception('End of stack'); + if ($index == null) { + $state = array_pop($this->states); + } else { + if (!isset($this->states[$index])) throw new Exception('Invalid stack index'); + $state = $this->states[$index]; + $this->states = array_slice($this->states, 0, $index); + } + + $this->curPos = $state['pos']; + $this->curCh = $state['ch']; + $this->curChOrd = $state['ord']; + $this->curChClass = $state['class']; + } + + protected function matchCh($ch, $skipSpaces = false) + { + if ($this->curCh == $ch) { + $this->getCh(); + if ($skipSpaces) $this->skipSpaces(); + return true; + } + + return false; + } + + protected function matchChClass($chClass, $skipSpaces = false) + { + if (($this->curChClass & $chClass) == $chClass) { + $ch = $this->curCh; + $this->getCh(); + if ($skipSpaces) $this->skipSpaces(); + return $ch; + } + + return false; + } + + protected function matchStr($str, $skipSpaces = false) + { + $this->saveState(); + $len = mb_strlen($str, 'UTF-8'); + $test = ''; + while ($len-- && $this->curChClass) { + $test .= $this->curCh; + $this->getCh(); + } + + if ($test == $str) { + if ($skipSpaces) $this->skipSpaces(); + return true; + } else { + $this->restoreState(); + return false; + } + } + + protected function skipUntilCh($ch) + { + $chPos = mb_strpos($this->text, $ch, $this->curPos, 'UTF-8'); + if ($chPos) { + return $this->goToPosition($chPos); + } else { + return false; + } + } + + protected function skipUntilStr($str) + { + $str = $this->strToArray($str); + $firstCh = $str[0]; + $len = count($str); + while ($this->curChClass) { + if ($this->curCh == $firstCh) { + $this->saveState(); + $this->getCh(); + $strOK = true; + for ($i = 1; $i < $len; $i++) { + if (!$this->curChClass) { + return false; + } + if ($this->curCh != $str[$i]) { + $strOK = false; + break; + } + $this->getCh(); + } + if (!$strOK) { + $this->restoreState(); + } else { + return true; + } + } + $this->getCh(); + } + return false; + } + + protected function getCharClass($ord) + { + return isset($this->chClasses[$ord]) ? $this->chClasses[$ord] : self::PRINATABLE; + } + + protected function skipSpaces(&$count = 0) + { + while ($this->curChClass == self::SPACE) { + $this->getCh(); + $count++; + } + return $count > 0; + } + + protected function name(&$name = '', $minus = false) + { + if (($this->curChClass & self::LAT) == self::LAT) { + $name .= $this->curCh; + $this->getCh(); + } else { + return false; + } + + while ((($this->curChClass & self::NAME) == self::NAME || ($minus && $this->curCh == '-'))) { + $name .= $this->curCh; + $this->getCh(); + } + + $this->skipSpaces(); + return true; + } + + protected function tag(&$tag, &$params, &$content, &$short) + { + $this->saveState(); + $params = array(); + $tag = ''; + $closeTag = ''; + $params = array(); + $short = false; + if (!$this->tagOpen($tag, $params, $short)) return false; + if ($short) return true; + + $oldState = $this->state; + $oldNoTypoMode = $this->noTypoMode; + //$this->quotesOpened = 0; + + if (!empty($this->tagsRules[$tag][self::TR_TAG_PREFORMATTED])) { + $this->state = self::STATE_INSIDE_PREFORMATTED_TAG; + } elseif (!empty($this->tagsRules[$tag][self::TR_TAG_CONTAINER])) { + $this->state = self::STATE_INSIDE_NOTEXT_TAG; + } elseif (!empty($this->tagsRules[$tag][self::TR_TAG_NO_TYPOGRAPHY])) { + $this->noTypoMode = true; + $this->state = self::STATE_INSIDE_TAG; + } elseif (array_key_exists($tag, $this->tagsRules) && array_key_exists(self::TR_TAG_CALLBACK, $this->tagsRules[$tag])) { + $this->state = self::STATE_INSIDE_CALLBACK_TAG; + } else { + $this->state = self::STATE_INSIDE_TAG; + } + + array_push($this->tagsStack, $tag); + $this->openedTag = $tag; + $content = ''; + if ($this->state == self::STATE_INSIDE_PREFORMATTED_TAG) { + $this->preformatted($content, $tag); + } elseif ($this->state == self::STATE_INSIDE_CALLBACK_TAG) { + $this->callback($content, $tag); + } else { + $this->anyThing($content, $tag); + } + + array_pop($this->tagsStack); + $this->openedTag = !empty($this->tagsStack) ? array_pop($this->tagsStack) : null; + + $isTagClose = $this->tagClose($closeTag); + if ($isTagClose && ($tag != $closeTag)) { + $this->eror("Invalid closing tag of $closeTag. Expected closing of $tag"); + //$this->restoreState(); + } + + $this->state = $oldState; + $this->noTypoMode = $oldNoTypoMode; + //$this->quotesOpened = $oldQuotesopen; + + return true; + } + + protected function preformatted(&$content = '', $insideTag = null) + { + while ($this->curChClass) { + if ($this->curCh == '<') { + $tag = ''; + $this->saveState(); + $isClosedTag = $this->tagClose($tag); + if ($isClosedTag) $this->restoreState(); + if ($isClosedTag && $tag == $insideTag) return; + } + $content .= isset($this->entities2[$this->curCh]) ? $this->entities2[$this->curCh] : $this->curCh; + $this->getCh(); + } + } + + protected function callback(&$content = '', $insideTag = null) + { + while ($this->curChClass) { + if ($this->curCh == '<') { + $tag = ''; + $this->saveState(); + $isClosedTag = $this->tagClose($tag); + if ($isClosedTag) $this->restoreState(); + if ($isClosedTag && $tag == $insideTag) { + if ($callback = $this->tagsRules[$tag][self::TR_TAG_CALLBACK]) { + $content = call_user_func($callback, $content); + } + return; + } + } + $content .= $this->curCh; + $this->getCh(); + } + } + + protected function tagOpen(&$name, &$params, &$short = false) + { + $restore = $this->saveState(); + + if (!$this->matchCh('<')) return false; + $this->skipSpaces(); + if (!$this->name($name)) { + $this->restoreState(); + return false; + } + $name = mb_strtolower($name, 'UTF-8'); + if ($this->curCh != '>' && $this->curCh != '/') $this->tagParams($params); + + $short = !empty($this->tagsRules[$name][self::TR_TAG_SHORT]); + + // Short && XHTML && !Slash || Short && !XHTML && !Slash = ERROR + $slash = $this->matchCh('/'); + //if(($short && $this->isXHTMLMode && !$slash) || (!$short && !$this->isXHTMLMode && $slash)){ + if (!$short && $slash) { + $this->restoreState(); + return false; + } + + $this->skipSpaces(); + + if (!$this->matchCh('>')) { + $this->restoreState($restore); + return false; + } + + $this->skipSpaces(); + return true; + } + + protected function tagParams(&$params = array()) + { + $name = null; + $value = null; + while ($this->tagParam($name, $value)) { + $params[$name] = $value; + $name = ''; + $value = ''; + } + return count($params) > 0; + } + + protected function tagParam(&$name, &$value) + { + $this->saveState(); + if (!$this->name($name, true)) return false; + + if (!$this->matchCh('=', true)) { + if (($this->curCh == '>' || ($this->curChClass & self::LAT) == self::LAT)) { + $value = $name; + return true; + } else { + $this->restoreState(); + return false; + } + } + + $quote = $this->matchChClass(self::TAG_QUOTE, true); + + if (!$this->tagParamValue($value, $quote)) { + $this->restoreState(); + return false; + } + + if ($quote && !$this->matchCh($quote, true)) { + $this->restoreState(); + return false; + } + + $this->skipSpaces(); + return true; + } + + protected function tagParamValue(&$value, $quote) + { + if ($quote !== false) { + $escape = false; + while ($this->curChClass && ($this->curCh != $quote || $escape)) { + $escape = false; + $value .= isset($this->entities1[$this->curCh]) ? $this->entities1[$this->curCh] : $this->curCh; + if ($this->curCh == '\\') $escape = true; + $this->getCh(); + } + } else { + while ($this->curChClass && !($this->curChClass & self::SPACE) && $this->curCh != '>') { + $value .= isset($this->entities1[$this->curCh]) ? $this->entities1[$this->curCh] : $this->curCh; + $this->getCh(); + } + } + + return true; + } + + protected function tagClose(&$name) + { + $this->saveState(); + if (!$this->matchCh('<')) return false; + $this->skipSpaces(); + if (!$this->matchCh('/')) { + $this->restoreState(); + return false; + } + $this->skipSpaces(); + if (!$this->name($name)) { + $this->restoreState(); + return false; + } + $name = mb_strtolower($name, 'UTF-8'); + $this->skipSpaces(); + if (!$this->matchCh('>')) { + $this->restoreState(); + return false; + } + return true; + } + + // ------- Check valid Style params --------------- // + protected function cssParamValid($cssAllowParamsArray, $cssParamArray) + { + if (!isset($cssAllowParamsArray[$cssParamArray[0]])) return false; + + $optionValue = $cssAllowParamsArray[$cssParamArray[0]]; + + if (is_array($optionValue)) { + if (!in_array($cssParamArray[1], $optionValue)) return false; + } elseif (preg_match('%#([a-z]+):*(.*)%i', $optionValue, $m)) { + $option = isset($m[1]) ? $m[1] : ''; + $value = isset($m[2]) ? $m[2] : ''; + + switch ($option) { + case 'regexp': + if (!preg_match($value, $cssParamArray[1])) { + return false; + } + break; + default: + return false; + break; + } + } else { + $optionValue = preg_replace('%[^a-z0-9,\.\s\+\-\_\(\)]%i', '', $optionValue); + if (!$optionValue) return false; + } + + return true; + } + // --------------------------------------------------- // + + protected function makeTag($tag, $params, $content, $short, $parentTag = null) + { + $this->curParentTag = $parentTag; + $tag = mb_strtolower($tag, 'UTF-8'); + + $tagRules = isset($this->tagsRules[$tag]) ? $this->tagsRules[$tag] : null; + + $parentTagIsContainer = $parentTag && isset($this->tagsRules[$parentTag][self::TR_TAG_CONTAINER]); + + if ($tagRules && isset($this->tagsRules[$tag][self::TR_TAG_CUT])) return ''; + + if (!$tagRules || empty($tagRules[self::TR_TAG_ALLOWED])) return $parentTagIsContainer ? '' : $content; + + if ($parentTagIsContainer) { + if (!isset($this->tagsRules[$parentTag][self::TR_TAG_CHILD_TAGS][$tag])) return ''; + } + + if (isset($tagRules[self::TR_TAG_CHILD])) { + if (!isset($tagRules[self::TR_TAG_PARENT][$parentTag])) return $content; + } + + // ------- Check Style params --------------- // + if (isset($tagRules[self::TR_TAG_PARSE_STYLE]) && isset($params['style'])) { + $cssParams = array_map('trim', explode(';', $params['style'])); + $cssValidParams = array(); + foreach ($cssParams as $cssParam) { + if (!$cssParam) continue; + $cssParamArray = array_map('trim', explode(':', $cssParam)); + if (!isset($cssParamArray[0], $cssParamArray[1]) || empty($cssParamArray[0]) || empty($cssParamArray[1])) continue; + if (!$this->cssParamValid($tagRules[self::TR_TAG_PARSE_STYLE], $cssParamArray)) continue; + if (!in_array($cssParamArray[0], $this->tagsStyleAllowed)) continue; //New v173 + $cssValidParams[] = $cssParamArray[0] . ':' . $cssParamArray[1] . ';'; + } + + $params['style'] = implode(' ', $cssValidParams); + } + // ------------------------------------------ // + + $resParams = array(); + foreach ($params as $param => $value) { + $param = mb_strtolower($param, 'UTF-8'); + $value = trim($value); + if ($value == '') continue; + $paramAllowedValues = isset($tagRules[self::TR_PARAM_ALLOWED][$param]) ? $tagRules[self::TR_PARAM_ALLOWED][$param] : false; + if (empty($paramAllowedValues)) continue; + + if (is_array($paramAllowedValues)) { + + if (isset($paramAllowedValues['#domain']) and is_array($paramAllowedValues['#domain'])) { + if (preg_match('/javascript:/ui', $value)) { + $this->eror('An attempt to insert JavaScript in a URI'); + continue; + } + $bOK = false; + foreach ($paramAllowedValues['#domain'] as $sDomain) { + $sDomain = preg_quote($sDomain); + if (preg_match("@^(http://|https://|ftp://|//)([\w\d]+\.)?{$sDomain}/@ui", $value)) { + $value = preg_replace('/&(amp;)+/ui', '&', $value); + $bOK = true; + break; + } + } + if (!$bOK) { + $this->eror("Invalid value for the attribute tag $tag $param=$value"); + continue; + } + } elseif (!in_array($value, $paramAllowedValues)) { + $this->eror("Invalid value for the attribute tag $tag $param=$value"); + continue; + } + } elseif ($paramAllowedValues === true && !empty($this->defaultTagParamRules[$param])) { + $paramAllowedValues = $this->defaultTagParamRules[$param]; + } + + if (is_string($paramAllowedValues)) { + switch ($paramAllowedValues) { + case '#int': + if (!is_numeric($value)) { + $this->eror("Invalid value for the attribute tag $tag $param=$value. Expected number."); + continue (2); + } + break; + + case '#text': + $value = htmlspecialchars($value); + break; + + case '#link': + if (preg_match('/javascript:/ui', $value)) { + $this->eror('An attempt to insert JavaScript in a URI.'); + continue (2); + } + if (!preg_match('/^[a-z0-9\/\#]/ui', $value)) { + $this->eror('URI: The first character of address must be a letter or digit.'); + continue (2); + } + /* + if(!preg_match('/^(http|https|ftp):\/\//ui', $value) && !preg_match('/^(\/|\#)/ui', $value) && !preg_match('/^(mailto):/ui', $value) ) $value = 'http://'.$value; + */ + + $value = preg_replace('/&(amp;)+/ui', '&', $value); + + break; + + case '#image': + if (preg_match('/javascript:/ui', $value)) { + $this->eror('An attempt to insert JavaScript in your path to the image.'); + continue (2); + } + // Not work in Seditio + /* if(!preg_match('/^(http|https):\/\//ui', $value) && !preg_match('/^\//ui', $value)) $value = 'http://'.$value; + */ + + $value = preg_replace('/&(amp;)+/ui', '&', $value); + + break; + + default: + $this->eror("Wrong description of attribute to configure the tag Jevix: $param => $paramAllowedValues"); + continue (2); + break; + } + } + + $resParams[$param] = $value; + } + + $requiredParams = isset($tagRules[self::TR_PARAM_REQUIRED]) ? array_keys($tagRules[self::TR_PARAM_REQUIRED]) : array(); + if ($requiredParams) { + foreach ($requiredParams as $requiredParam) { + if (!isset($resParams[$requiredParam])) return $content; + } + } + + if (!empty($tagRules[self::TR_PARAM_AUTO_ADD])) { + foreach ($tagRules[self::TR_PARAM_AUTO_ADD] as $name => $aValue) { + // If there isn't such attribute - setup it + if (!array_key_exists($name, $resParams) or ($aValue['rewrite'] and $resParams[$name] != $aValue['value'])) { + $resParams[$name] = $aValue['value']; + } + } + } + + if (!isset($tagRules[self::TR_TAG_IS_EMPTY]) or !$tagRules[self::TR_TAG_IS_EMPTY]) { + if (!$short && $content == '') return ''; + } + + if (isset($tagRules[self::TR_TAG_CALLBACK_FULL])) { + $text = call_user_func($tagRules[self::TR_TAG_CALLBACK_FULL], $tag, $resParams, $content); + } else { + $text = '<' . $tag; + + foreach ($resParams as $param => $value) { + if ($value != '') { + $text .= ' ' . $param . '="' . $value . '"'; + } + } + + $text .= $short && $this->isXHTMLMode ? ' />' : '>'; + if (isset($tagRules[self::TR_TAG_CONTAINER])) $text .= "\r\n"; + if (!$short) $text .= $content . ''; + if ($parentTagIsContainer) $text .= "\r\n"; + if ($tag == 'br') $text .= "\r\n"; + } + return $text; + } + + protected function comment() + { + if (!$this->matchStr(''); + } + + protected function anyThing(&$content = '', $parentTag = null) + { + $this->skipNL(); + while ($this->curChClass) { + $tag = ''; + $params = null; + $text = null; + $shortTag = false; + $name = null; + + if ($this->state == self::STATE_INSIDE_NOTEXT_TAG && $this->curCh != '<') { + $this->skipUntilCh('<'); + } + + if ($this->curCh == '<' && $this->tag($tag, $params, $text, $shortTag)) { + $tagText = $this->makeTag($tag, $params, $text, $shortTag, $parentTag); + $content .= $tagText; + if ($tag == 'br') { + $this->skipNL(); + } elseif (isset($this->tagsRules[$tag]) and isset($this->tagsRules[$tag][self::TR_TAG_BLOCK_TYPE])) { + $count = 0; + $this->skipNL($count, 2); + } elseif ($tagText == '') { + $this->skipSpaces(); + } + } elseif ($this->curCh == '<' && $this->comment()) { + continue; + } elseif ($this->curCh == '<') { + $this->saveState(); + if ($this->tagClose($name)) { + if ($this->state == self::STATE_INSIDE_TAG || $this->state == self::STATE_INSIDE_NOTEXT_TAG) { + $this->restoreState(); + return false; + } else { + $this->eror('Do not expect a closing tag ' . $name); + } + } else { + if ($this->state != self::STATE_INSIDE_NOTEXT_TAG) $content .= $this->entities2['<']; + $this->getCh(); + } + } elseif ($this->text($text)) { + $content .= $text; + } + } + + return true; + } + + protected function skipNL(&$count = 0, $limit = 0) + { + if (!($this->curChClass & self::NL)) return false; + $count++; + $firstNL = $this->curCh; + $nl = $this->getCh(); + while ($this->curChClass & self::NL) { + if ($limit > 0 and $count >= $limit) break; + if ($nl == $firstNL) $count++; + $nl = $this->getCh(); + $this->skipSpaces(); + } + return true; + } + + protected function dash(&$dash) + { + if ($this->curCh != '-') return false; + $dash = ''; + $this->saveState(); + $this->getCh(); + while ($this->curCh == '-') $this->getCh(); + if (!$this->skipNL() && !$this->skipSpaces()) { + $this->restoreState(); + return false; + } + $dash = $this->dash; + return true; + } + + protected function punctuation(&$punctuation) + { + if (!($this->curChClass & self::PUNCTUATUON)) return false; + $this->saveState(); + $punctuation = $this->curCh; + $this->getCh(); + + if ($punctuation == '.' && $this->curCh == '.') { + while ($this->curCh == '.') $this->getCh(); + $punctuation = $this->dotes; + } elseif ($punctuation == '!' && $this->curCh == '!') { + while ($this->curCh == '!') $this->getCh(); + $punctuation = '!!!'; + } elseif (($punctuation == '?' || $punctuation == '!') && $this->curCh == '.') { + while ($this->curCh == '.') $this->getCh(); + $punctuation .= '..'; + } + + if ($this->curChClass & self::RUS) { + if ($punctuation != '.') $punctuation .= ' '; + return true; + } elseif (($this->curChClass & self::SPACE) || ($this->curChClass & self::NL) || !$this->curChClass) { + return true; + } else { + $this->restoreState(); + return false; + } + } + + protected function number(&$num) + { + if (!(($this->curChClass & self::NUMERIC) == self::NUMERIC)) return false; + $num = $this->curCh; + $this->getCh(); + while (($this->curChClass & self::NUMERIC) == self::NUMERIC) { + $num .= $this->curCh; + $this->getCh(); + } + return true; + } + + protected function htmlEntity(&$entityCh) + { + if ($this->curCh <> '&') return false; + $this->saveState(); + $this->matchCh('&'); + if ($this->matchCh('#')) { + $entityCode = 0; + if (!$this->number($entityCode) || !$this->matchCh(';')) { + $this->restoreState(); + return false; + } + $entityCh = html_entity_decode("&#$entityCode;", ENT_COMPAT, 'UTF-8'); + return true; + } else { + $entityName = ''; + if (!$this->name($entityName) || !$this->matchCh(';')) { + $this->restoreState(); + return false; + } + $entityCh = html_entity_decode("&$entityName;", ENT_COMPAT, 'UTF-8'); + return true; + } + } + + protected function quote($spacesBefore, &$quote, &$closed) + { + $this->saveState(); + $quote = $this->curCh; + $this->getCh(); + if ($this->quotesOpened == 0 && !(($this->curChClass & self::ALPHA) || ($this->curChClass & self::NUMERIC))) { + $this->restoreState(); + return false; + } + $closed = ($this->quotesOpened >= 2) || + (($this->quotesOpened > 0) && + (!$spacesBefore || $this->curChClass & self::SPACE || $this->curChClass & self::PUNCTUATUON)); + return true; + } + + protected function makeQuote($closed, $level) + { + $levels = count($this->textQuotes); + if ($level > $levels) $level = $levels; + return $this->textQuotes[$level][$closed ? 1 : 0]; + } + + + protected function text(&$text) + { + $text = ''; + //$punctuation = ''; + $dash = ''; + $newLine = true; + $newWord = true; + $url = null; + $href = null; + + //$typoEnabled = true; + $typoEnabled = !$this->noTypoMode; + + while (($this->curCh != '<') && $this->curChClass) { + $brCount = 0; + $spCount = 0; + $quote = null; + $closed = false; + $punctuation = null; + $entity = null; + + $this->skipSpaces($spCount); + + if (!$spCount && $this->curCh == '&' && $this->htmlEntity($entity)) { + $text .= isset($this->entities2[$entity]) ? $this->entities2[$entity] : $entity; + } elseif ($typoEnabled && ($this->curChClass & self::PUNCTUATUON) && $this->punctuation($punctuation)) { + if ($spCount && $punctuation == '.' && ($this->curChClass & self::LAT)) $punctuation = ' ' . $punctuation; + $text .= $punctuation; + $newWord = true; + } elseif ($typoEnabled && ($spCount || $newLine) && $this->curCh == '-' && $this->dash($dash)) { + $text .= $dash; + $newWord = true; + } elseif ($typoEnabled && ($this->curChClass & self::HTML_QUOTE) && $this->quote($spCount, $quote, $closed)) { + $this->quotesOpened += $closed ? -1 : 1; + if ($this->quotesOpened < 0) { + $closed = false; + $this->quotesOpened = 1; + } + $quote = $this->makeQuote($closed, $closed ? $this->quotesOpened : $this->quotesOpened - 1); + if ($spCount) $quote = ' ' . $quote; + $text .= $quote; + $newWord = true; + } elseif ($spCount > 0) { + $text .= ' '; + $newWord = true; + } elseif ($this->isAutoBrMode && $this->skipNL($brCount)) { + if ( + $this->curParentTag + and isset($this->tagsRules[$this->curParentTag]) + and isset($this->tagsRules[$this->curParentTag][self::TR_TAG_NO_AUTO_BR]) + and (is_null($this->openedTag) or isset($this->tagsRules[$this->openedTag][self::TR_TAG_NO_AUTO_BR])) + ) { + } else { + $br = $this->br . $this->nl; + $text .= $brCount == 1 ? $br : $br . $br; + } + $newLine = true; + $newWord = true; + } elseif ($newWord && $this->isAutoLinkMode && ($this->curChClass & self::LAT) && $this->openedTag != 'a' && $this->url($url, $href)) { + $text .= $this->makeTag('a', array('href' => $href), $url, false); + } elseif ($this->curChClass & self::PRINATABLE) { + $text .= isset($this->entities2[$this->curCh]) ? $this->entities2[$this->curCh] : $this->curCh; + $this->getCh(); + $newWord = false; + $newLine = false; + } else { + $this->getCh(); + } + } + + $this->skipSpaces(); + return $text != ''; + } + + protected function url(&$url, &$href) + { + $this->saveState(); + $url = ''; + //$name = $this->name(); + //switch($name) + $urlChMask = self::URL | self::ALPHA | self::PUNCTUATUON; + + if ($this->matchStr('http://')) { + while ($this->curChClass & $urlChMask) { + $url .= $this->curCh; + $this->getCh(); + } + + if (!mb_strlen($url, 'UTF-8')) { + $this->restoreState(); + return false; + } + + $href = 'http://' . $url; + return true; + } elseif ($this->matchStr('https://')) { + while ($this->curChClass & $urlChMask) { + $url .= $this->curCh; + $this->getCh(); + } + + if (!mb_strlen($url, 'UTF-8')) { + $this->restoreState(); + return false; + } + + $href = 'https://' . $url; + return true; + } elseif ($this->matchStr('www.')) { + while ($this->curChClass & $urlChMask) { + $url .= $this->curCh; + $this->getCh(); + } + + if (!mb_strlen($url, 'UTF-8')) { + $this->restoreState(); + return false; + } + + $url = 'www.' . $url; + $href = 'http://' . $url; + return true; + } + $this->restoreState(); + return false; + } + + protected function eror($message) + { + $str = ''; + $strEnd = min($this->curPos + 8, $this->textLen); + for ($i = $this->curPos; $i < $strEnd; $i++) { + $str .= $this->textBuf[$i]; + } + + $this->errors[] = array( + 'message' => $message, + 'pos' => $this->curPos, + 'ch' => $this->curCh, + 'line' => 0, + 'str' => $str, + ); + } +} + +function uniord($c) +{ + $h = ord($c[0]); + if ($h <= 0x7F) { + return $h; + } else if ($h < 0xC2) { + return false; + } else if ($h <= 0xDF) { + return ($h & 0x1F) << 6 | (ord($c[1]) & 0x3F); + } else if ($h <= 0xEF) { + return ($h & 0x0F) << 12 | (ord($c[1]) & 0x3F) << 6 + | (ord($c[2]) & 0x3F); + } else if ($h <= 0xF4) { + return ($h & 0x0F) << 18 | (ord($c[1]) & 0x3F) << 12 + | (ord($c[2]) & 0x3F) << 6 + | (ord($c[3]) & 0x3F); + } else { + return false; + } +} + +function unichr($c) +{ + if ($c <= 0x7F) { + return chr($c); + } else if ($c <= 0x7FF) { + return chr(0xC0 | $c >> 6) . chr(0x80 | $c & 0x3F); + } else if ($c <= 0xFFFF) { + return chr(0xE0 | $c >> 12) . chr(0x80 | $c >> 6 & 0x3F) + . chr(0x80 | $c & 0x3F); + } else if ($c <= 0x10FFFF) { + return chr(0xF0 | $c >> 18) . chr(0x80 | $c >> 12 & 0x3F) + . chr(0x80 | $c >> 6 & 0x3F) + . chr(0x80 | $c & 0x3F); + } else { + return false; + } +} diff --git a/plugins/jevix/jevix.import.filter.php b/plugins/jevix/jevix.import.filter.php new file mode 100644 index 0000000..b1d8118 --- /dev/null +++ b/plugins/jevix/jevix.import.filter.php @@ -0,0 +1,64 @@ + 'full', + 'Private_Messages' => 'medium', + 'Polls' => 'micro', + 'Gallery' => 'micro', + 'PFS' => 'micro', + 'Users' => 'micro', + 'Plugins' => 'full', + 'Forums' => 'full', + 'Comments' => 'medium', + 'Administration' => 'full' +); + +$flocation = (empty($flocation)) ? $location : $flocation; + +if (array_key_exists($flocation, $jevix_filter_settings)) { + $filter = $jevix_filter_settings[$flocation]; +} else { + $filter = 'micro'; +} + +// Use XHTML ? +$use_xhtml = ($cfg['plugin']['jevix']['use_xhtml'] == "yes") ? true : false; + +// Use for Administrators ? +$use_admin = (($cfg['plugin']['jevix']['use_for_admin'] == "no") && ($usr['maingrp'] == 5)) ? false : true; + +$ext_link_enc = ($cfg['plugin']['jevix']['ext_link_enc'] == "yes") ? true : false; + +// Use jevix only html mode +$v = sed_jevix($v, $filter, $use_xhtml, $use_admin, $ext_link_enc); diff --git a/plugins/jevix/jevix.png b/plugins/jevix/jevix.png new file mode 100644 index 0000000..adaeabe Binary files /dev/null and b/plugins/jevix/jevix.png differ diff --git a/plugins/jevix/jevix.setup.php b/plugins/jevix/jevix.setup.php new file mode 100644 index 0000000..cfc5148 --- /dev/null +++ b/plugins/jevix/jevix.setup.php @@ -0,0 +1,42 @@ +"; + $select_target = ""; + $select_target .= ""; + + $plugin_body .= "
"; + $plugin_body .= "
"; + $plugin_body .= "Move all the topics and posts from the section :" . $select_source . "
"; + $plugin_body .= "... to the section :" . $select_target . "
"; + $plugin_body .= ""; + $plugin_body .= "
"; +} diff --git a/plugins/massmovetopics/massmovetopics.png b/plugins/massmovetopics/massmovetopics.png new file mode 100644 index 0000000..c2aa17b Binary files /dev/null and b/plugins/massmovetopics/massmovetopics.png differ diff --git a/plugins/massmovetopics/massmovetopics.setup.php b/plugins/massmovetopics/massmovetopics.setup.php new file mode 100644 index 0000000..b7b2f02 --- /dev/null +++ b/plugins/massmovetopics/massmovetopics.setup.php @@ -0,0 +1,38 @@ + 0 && !empty($cfg['plugin']['news']['category']) && !empty($sed_cat[$cfg['plugin']['news']['category']]['order'])) { + $jj = 0; + + /* --- Modified in v173 --- */ + + $mtch = $sed_cat[$cfg['plugin']['news']['category']]['path'] . "."; + $mtchlen = mb_strlen($mtch); + + if ($c != $cfg['plugin']['news']['category']) { + $c_mtch = $sed_cat[$c]['path']; + $c = (mb_substr($c_mtch, 0, $mtchlen) == $mtch && sed_auth('page', $c, 'R')) ? $c : $cfg['plugin']['news']['category']; + $mtch = $sed_cat[$c]['path'] . "."; + $mtchlen = mb_strlen($mtch); + } + + $catsub = array(); + $catsub[] = $c; + + foreach ($sed_cat as $i => $x) { + if (mb_substr($x['path'], 0, $mtchlen) == $mtch && sed_auth('page', $i, 'R')) { + $catsub[] = $i; + } + } + /* ------- */ + + /* ======= Pagination Sed 173 ======== */ + + $sql = sed_sql_query("SELECT COUNT(*) FROM $db_pages + WHERE page_state=0 AND page_cat NOT LIKE 'system' + AND page_begin<'" . $sys['now_offset'] . "' AND page_expire>'" . $sys['now_offset'] . "' + AND page_cat IN ('" . implode("','", $catsub) . "')"); + + $totallines = sed_sql_result($sql, 0, "COUNT(*)"); + $totalpages = ceil($totallines / $cfg['plugin']['news']['maxpages']); + $currentpage = ceil($d / $cfg['plugin']['news']['maxpages']) + 1; + + $pagination = sed_pagination(sed_url("index", "c=" . $c), $d, $totallines, $cfg['plugin']['news']['maxpages']); + list($pageprev, $pagenext) = sed_pagination_pn(sed_url("index", "c=" . $c), $d, $totallines, $cfg['plugin']['news']['maxpages'], TRUE); + + $news = new XTemplate(sed_skinfile('news')); + + if (!empty($pagination)) { + $news->assign(array( + "NEWS_PAGINATION" => $pagination, + "NEWS_PAGEPREV" => $pageprev, + "NEWS_PAGENEXT" => $pagenext + )); + + $news->parse("NEWS.NEWS_PAGINATION_TP"); + $news->parse("NEWS.NEWS_PAGINATION_BM"); + } + + $sql = sed_sql_query("SELECT p.*, u.user_name, user_avatar, u.user_maingrp FROM $db_pages AS p + LEFT JOIN $db_users AS u ON u.user_id=p.page_ownerid + WHERE page_state=0 AND page_cat NOT LIKE 'system' + AND page_begin<'" . $sys['now_offset'] . "' AND page_expire>'" . $sys['now_offset'] . "' + AND page_cat IN ('" . implode("','", $catsub) . "') ORDER BY page_" . $sed_cat[$cfg['plugin']['news']['category']]['order'] . " " . $sed_cat[$cfg['plugin']['news']['category']]['way'] . " LIMIT $d," . $cfg['plugin']['news']['maxpages']); + + /* === Hook - Part1 : Set === */ + $extpf = sed_getextplugins('news.loopfirst'); + $extp = sed_getextplugins('news.loop'); + /* ===== */ + + while ($pag = sed_sql_fetchassoc($sql)) { + + /* === Hook - Part2 : Include === */ + if (is_array($extpf)) { + foreach ($extpf as $k => $pl) { + include(SED_ROOT . '/plugins/' . $pl['pl_code'] . '/' . $pl['pl_file'] . '.php'); + } + } + /* ===== */ + + $jj++; + + $sys['catcode'] = $pag['page_cat']; //new in v175 + + $catpath = sed_build_catpath($pag['page_cat'], "%2\$s"); + $pag['page_pageurl'] = (empty($pag['page_alias'])) ? sed_url("page", "id=" . $pag['page_id']) : sed_url("page", "al=" . $pag['page_alias']); + $pag['page_fulltitle'] = $catpath . " " . $cfg['separator'] . " " . $pag['page_title'] . "";; + + $pag['page_comcount'] = (!$pag['page_comcount']) ? "0" : $pag['page_comcount']; + + $pcomments = ($cfg['showcommentsonpage']) ? "" : "&comments=1"; + + $pag['page_pageurlcom'] = (empty($pag['page_alias'])) ? sed_url("page", "id=" . $pag['page_id'] . $pcomments) : sed_url("page", "al=" . $pag['page_alias'] . $pcomments); + $pag['page_pageurlrat'] = (empty($pag['page_alias'])) ? sed_url("page", "id=" . $pag['page_id'] . "&ratings=1") : sed_url("page", "al=" . $pag['page_alias'] . "&ratings=1"); + + $pag['page_comments'] = "" . $out['ic_comment'] . " (" . $pag['page_comcount'] . ")"; + + $news->assign(array( + "PAGE_ROW_URL" => $pag['page_pageurl'], + "PAGE_ROW_ID" => $pag['page_id'], + "PAGE_ROW_TITLE" => $pag['page_fulltitle'], + "PAGE_ROW_SHORTTITLE" => $pag['page_title'], + "PAGE_ROW_CAT" => $pag['page_cat'], + "PAGE_ROW_CATTITLE" => $sed_cat[$pag['page_cat']]['title'], + "PAGE_ROW_CATPATH" => $catpath, + "PAGE_ROW_CATURL" => sed_url("list", "c=" . $pag['page_cat']), + "PAGE_ROW_CATDESC" => $sed_cat[$pag['page_cat']]['desc'], + "PAGE_ROW_CATICON" => $sed_cat[$pag['page_cat']]['icon'], + "PAGE_ROW_KEY" => sed_cc($pag['page_key']), + "PAGE_ROW_DESC" => sed_cc($pag['page_desc']), + "PAGE_ROW_AUTHOR" => (!empty($pag['page_author'])) ? sed_cc($pag['page_author']) : sed_cc($pag['user_name']), + "PAGE_ROW_OWNER" => sed_build_user($pag['page_ownerid'], sed_cc($pag['user_name']), $pag['user_maingrp']), + "PAGE_ROW_AVATAR" => sed_build_userimage($pag['user_avatar']), + "PAGE_ROW_USERURL" => sed_url("users", "m=details&id=" . $pag['page_ownerid']), + "PAGE_ROW_DATE" => sed_build_date($cfg['formatyearmonthday'], $pag['page_date']), + "PAGE_ROW_FILEURL" => $pag['page_url'], + "PAGE_ROW_SIZE" => $pag['page_size'], + "PAGE_ROW_COUNT" => $pag['page_count'], + "PAGE_ROW_FILECOUNT" => $pag['page_filecount'], + "PAGE_ROW_COMMENTS" => $pag['page_comments'], + "PAGE_ROW_COMMENTS_URL" => $pag['page_pageurlcom'], + "PAGE_ROW_COMMENTS_COUNT" => $pag['page_comcount'], + "PAGE_ROW_RATINGS" => "\"\"", + "PAGE_ROW_ODDEVEN" => sed_build_oddeven($jj) + )); + + if (!empty($pag['page_thumb'])) { + $page_thumbs_array = rtrim($pag['page_thumb']); + if ($page_thumbs_array[mb_strlen($page_thumbs_array) - 1] == ';') { + $page_thumbs_array = mb_substr($page_thumbs_array, 0, -1); + } + $page_thumbs_array = explode(";", $page_thumbs_array); + if (count($page_thumbs_array) > 0) { + $news->assign("PAGE_ROW_THUMB", $page_thumbs_array[0]); + $news->parse("NEWS.PAGE_ROW.PAGE_ROW_THUMB"); + } + } else { + $news->assign("PAGE_ROW_THUMB", "noimg.jpg"); + } + + // ---------- Extra fields - getting + if (count($extrafields) > 0) { + $extra_array = sed_build_extrafields_data('page', 'PAGE_ROW', $extrafields, $pag); + $news->assign($extra_array); + } + // ---------------------- + + $pag['page_text'] = sed_parse($pag['page_text']); + $pag['page_text'] = sed_cutreadmore($pag['page_text'], $pag['page_pageurl']); + + $news->assign("PAGE_ROW_TEXT", $pag['page_text']); + + /* === Hook - Part2 : Include === */ + if (is_array($extp)) { + foreach ($extp as $k => $pl) { + include(SED_ROOT . '/plugins/' . $pl['pl_code'] . '/' . $pl['pl_file'] . '.php'); + } + } + /* ===== */ + + $news->parse("NEWS.PAGE_ROW"); + } + + $news->parse("NEWS"); + $t->assign("INDEX_NEWS", $news->text("NEWS")); +} diff --git a/plugins/news/news.png b/plugins/news/news.png new file mode 100644 index 0000000..8b56c21 Binary files /dev/null and b/plugins/news/news.png differ diff --git a/plugins/news/news.setup.php b/plugins/news/news.setup.php new file mode 100644 index 0000000..4dcb8fc --- /dev/null +++ b/plugins/news/news.setup.php @@ -0,0 +1,42 @@ +{d-m-Y} {H:i}"; + +function sed_get_otherpages($pid, $cat, $limit) +{ + global $t, $L, $db_pages, $db_users, $sys, $usr, $cfg, $sed_cat, $plu_empty; + + $pcomments = ($cfg['showcommentsonpage']) ? "" : "&comments=1"; + + $sql = sed_sql_query("(SELECT p.page_id, p.page_alias, p.page_cat, p.page_title, p.page_desc, p.page_date, p.page_ownerid, p.page_count, p.page_comcount, + p.page_thumb, u.user_id, u.user_name, u.user_maingrp, u.user_avatar + FROM $db_pages AS p LEFT JOIN $db_users AS u ON u.user_id = p.page_ownerid + WHERE p.page_id < " . (int)$pid . " AND p.page_state = 0 AND p.page_cat = '" . $cat . "' + ORDER BY p.page_date DESC LIMIT $limit) + UNION + (SELECT p.page_id, p.page_alias, p.page_cat, p.page_title, p.page_desc, p.page_date, p.page_ownerid, p.page_count, p.page_comcount, + p.page_thumb, u.user_id, u.user_name, u.user_maingrp, u.user_avatar + FROM $db_pages AS p LEFT JOIN $db_users AS u ON u.user_id = p.page_ownerid + WHERE p.page_id > " . (int)$pid . " AND p.page_state = 0 AND p.page_cat = '" . $cat . "' + ORDER BY p.page_date DESC LIMIT $limit)"); + + if (sed_sql_numrows($sql) > 0) { + while ($row = sed_sql_fetchassoc($sql)) { + if (sed_auth('page', $row['page_cat'], 'R')) { + $sys['catcode'] = $row['page_cat']; //new in v175 + $row['page_pageurl'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id']) : sed_url("page", "al=" . $row['page_alias']); + $row['page_pageurlcom'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id'] . $pcomments) : sed_url("page", "al=" . $row['page_alias'] . $pcomments); + + $t->assign(array( + "OTHER_PAGES_ROW_URL" => $row['page_pageurl'], + "OTHER_PAGES_ROW_ID" => $row['page_id'], + "OTHER_PAGES_ROW_CAT" => $row['page_cat'], + "OTHER_PAGES_ROW_CATURL" => sed_url('list', 'c=' . $row['page_cat']), + "OTHER_PAGES_ROW_DESC" => $row['page_desc'], + "OTHER_PAGES_ROW_CATTITLE" => $sed_cat[$row['page_cat']]['title'], + "OTHER_PAGES_ROW_CATPATH" => sed_build_catpath($row['page_cat'], "%2\$s"), + "OTHER_PAGES_ROW_SHORTTITLE" => sed_cutstring($row['page_title'], 50), + "OTHER_PAGES_ROW_TITLE" => $row['page_title'], + "OTHER_PAGES_ROW_DATE" => sed_build_date($cfg['formatyearmonthday'], $row['page_date'], $cfg['plu_mask_pages_date']), + "OTHER_PAGES_ROW_AUTHOR" => sed_cc($row['user_name']), + "OTHER_PAGES_ROW_USERURL" => sed_url("users", "m=details&id=" . $row['page_ownerid']), + "OTHER_PAGES_ROW_USER" => sed_build_user($row['page_ownerid'], sed_cc($row['user_name']), $row['user_maingrp']), + "OTHER_PAGES_ROW_COUNT" => $row['page_count'], + "OTHER_PAGES_ROW_COMMENTS_URL" => $row['page_pageurlcom'], + "OTHER_PAGES_ROW_COMMENTS_COUNT" => $row['page_comcount'], + "OTHER_PAGES_ROW_AVATAR" => sed_build_userimage($row['user_avatar']) + )); + + // ------- thumb + + if (!empty($row['page_thumb'])) { + $page_thumbs_array = rtrim($row['page_thumb']); + if ($page_thumbs_array[mb_strlen($page_thumbs_array) - 1] == ';') { + $page_thumbs_array = mb_substr($page_thumbs_array, 0, -1); + } + $page_thumbs_array = explode(";", $page_thumbs_array); + if (count($page_thumbs_array) > 0) { + $t->assign("OTHER_PAGES_ROW_THUMB", $page_thumbs_array[0]); + $t->parse("MAIN.OTHER_PAGES.OTHER_PAGES_ROW.OTHER_PAGES_ROW_THUMB"); + } else { + $t->assign("OTHER_PAGES_ROW_THUMB", sed_cc($row['page_thumb'])); + } + } + + // ------- + + $t->parse("MAIN.OTHER_PAGES.OTHER_PAGES_ROW"); + } + } + + $t->parse("MAIN.OTHER_PAGES"); + } +} + +sed_get_otherpages($pag['page_id'], $pag['page_cat'], $maxotherpages); diff --git a/plugins/otherpages/otherpages.setup.php b/plugins/otherpages/otherpages.setup.php new file mode 100644 index 0000000..8c8a4f1 --- /dev/null +++ b/plugins/otherpages/otherpages.setup.php @@ -0,0 +1,41 @@ +In this case, please contact the webmaster with the contact form."; +$L['plu_mailsent'] = "Done, please check your mailbox in few minutes, and click the emergency link.
Then follow instructions."; +$L['plu_mailsent2'] = "Done, please check your mailbox in few minutes, and click the link to change your password.
Then follow instructions."; +$L['plu_youremail'] = "Your email : "; +$L['plu_request'] = "Request"; +$L['plu_loggedin1'] = "Welcome back, "; +$L['plu_loggedin2'] = "you're now logged in."; +$L['plu_loggedin3'] = "You may now go to your profile, and set yourself a new password."; +$L['plu_email1'] = "You are receiving this email because you have (or someone pretending to be you has) requested an emergency link to log in at a site powered by the Seditio engine. If you did not request this email then please ignore it, if you keep receiving it please contact the site administrator.\n\nYou may now log in with the link below, then follow instructions :"; +$L['plu_email2'] = "You're asked to enter the password recovery to our website. \r\nClick the link below to generate a new password. A new password will be sent to your e-mail."; +$L['plu_email3'] = "In your request a new password. Change it as soon as possible and delete this email.\r\n\r\nYour new password: "; +$L['plu_newpass'] = "Done!

Soon you will receive a new password to access the site."; diff --git a/plugins/passrecover/lang/passrecover.ru.lang.php b/plugins/passrecover/lang/passrecover.ru.lang.php new file mode 100644 index 0000000..ead78c4 --- /dev/null +++ b/plugins/passrecover/lang/passrecover.ru.lang.php @@ -0,0 +1,36 @@ +В этом случае обратись к администратору сайта."; +$L['plu_mailsent'] = "Готово. Скоро вы получите письмо со ссылкой для входа на сайт.
Затем следуйте дальнейшим инструкциям."; +$L['plu_mailsent2'] = "Готово. Скоро вы получите письмо со ссылкой для смены пароля.
Затем следуйте дальнейшим инструкциям."; +$L['plu_youremail'] = "Ваш E-mail : "; +$L['plu_request'] = "Запрос"; +$L['plu_loggedin1'] = "Здравствуйте, "; +$L['plu_loggedin2'] = "вы вошли на сайт."; +$L['plu_loggedin3'] = "Теперь зайдите в профиль и установите новый пароль."; +$L['plu_email1'] = "Вы запросили восстановление пароля для входа на наш сайт. \r\nПерейдите по ссылке ниже чтобы войти на сайт, и следуйте дальнейшим инструкциям :"; +$L['plu_email2'] = "Вы запросил восстановление пароля для входа на наш сайт. \r\nПерейдите по ссылке ниже чтобы сгенерировать новый пароль. Новый пароль будет выслан на e-mail :"; +$L['plu_email3'] = "По вашему запросу создан новый пароль. Измените его при первой возможности и удалите данное письмо.\r\n\r\nВаш новый пароль: "; +$L['plu_newpass'] = "Готово!\r\n\r\n Скоро вы получите письмо с новым паролем для входа на сайт"; + +$L['cfg_generate_password'] = array("Генерировать новый пароль и отсылать на e-mail?", ""); diff --git a/plugins/passrecover/passrecover.php b/plugins/passrecover/passrecover.php new file mode 100644 index 0000000..facc671 --- /dev/null +++ b/plugins/passrecover/passrecover.php @@ -0,0 +1,151 @@ +parse("MAIN.PLUGIN_PASSRECOVER_AUTH"); + } else { + $ractivate = $cfg['mainurl'] . "/" . sed_url("plug", "e=passrecover&a=newpassword&v=" . $validationkey, "", false, false); + $email_text = $L['plu_email2']; + $t->parse("MAIN.PLUGIN_PASSRECOVER_NEWPASSWORD"); + } + + $rbody = $L['Hi'] . " " . $rusername . ",\n\n" . $email_text . "\n\n" . $ractivate . "\n\n" . $L['aut_contactadmin']; + sed_mail($email, $rsubject, $rbody); + } else { + sed_shield_update(10, "Password recovery requested"); + sed_log("Pass recovery failed, user : " . $rusername); + sed_redirect(sed_url("message", "msg=151", "", true)); + exit; + } +} elseif (($a == 'auth' || $a == 'newpassword') && mb_strlen($v) == 32) { + sed_shield_protect(); + + $sql = sed_sql_query("SELECT user_name, user_id, user_secret, user_email, user_maingrp, user_banexpire, user_skin FROM $db_users WHERE user_lostpass='" . sed_sql_prep($v) . "'"); + + if ($row = sed_sql_fetchassoc($sql)) { + $rmdpass_secret = $row['user_secret']; + $rusername = $row['user_name']; + $ruserid = $row['user_id']; + $rdefskin = $row['user_skin']; + $remail = $row['user_email']; + + if ($row['user_maingrp'] == 2) { + sed_log("Password recovery failed, user inactive : " . $rusername); + sed_redirect(sed_url("message", "msg=152", "", true)); + exit; + } + + if ($row['user_maingrp'] == 3) { + sed_log("Password recovery failed, user banned : " . $rusername); + sed_redirect(sed_url("message", "msg=153&num=" . $row['user_banexpire'], "", true)); + exit; + } + + $validationkey = md5(microtime()); + $sql = sed_sql_query("UPDATE $db_users SET user_lostpass='$validationkey' WHERE user_id='$ruserid'"); + + if ($generate_password == "yes" && $a == 'newpassword') { + $newpassword = sed_unique(7); // New sed172 + $mdsalt = sed_unique(16); // New sed172 + $mdpass = sed_hash($newpassword, 1, $mdsalt); // New sed172 + + $sql = sed_sql_query("UPDATE $db_users SET user_password='$mdpass', user_salt='$mdsalt', user_passtype=1 WHERE user_id='$ruserid'"); + + $rsubject = $cfg['maintitle'] . " - " . $L['plu_title']; + + $rbody = $L['Hi'] . " " . $rusername . ",\n\n" . $L['plu_email3'] . $newpassword . "\n\n" . $L['aut_contactadmin']; + sed_mail($remail, $rsubject, $rbody); + + $t->parse("MAIN.PLUGIN_PASSRECOVER_GENERATEPASS"); + } else { + if ($cfg['authmode'] == 1 || $cfg['authmode'] == 3) { + $u = base64_encode("$ruserid:_:$rmdpass_secret:_:" . $cfg['defaultskin']); + sed_setcookie($sys['site_id'], $u, time() + 86400, $cfg['cookiepath'], $cfg['cookiedomain'], $sys['secure'], true); + } + + if ($cfg['authmode'] == 2 || $cfg['authmode'] == 3) { + $_SESSION[$sys['site_id'] . '_n'] = $ruserid; + $_SESSION[$sys['site_id'] . '_p'] = $rmdpass_secret; + $_SESSION[$sys['site_id'] . '_s'] = $rdefskin; + } + + $t->assign("PLUGIN_PASSRECOVER_LOGGED_USERNAME", $rusername); + + $t->parse("MAIN.PLUGIN_PASSRECOVER_LOGGED"); + } + } else { + sed_shield_update(7, "Log in"); + sed_log("Pass recovery failed, user : " . $rusername); + sed_redirect(sed_url("message", "msg=151", "", true)); + exit; + } +} else { + $t->assign(array( + "PLUGIN_PASSRECOVER_SEND" => sed_url("plug", "e=passrecover&a=request"), + "PLUGIN_PASSRECOVER_EMAIL" => sed_textbox('email', '', 22, 64) + )); + $t->parse("MAIN.PLUGIN_PASSRECOVER_RECOVER"); +} + +// ---------- Breadcrumbs +$urlpaths = array(); +$urlpaths[sed_url("plug", "e=passrecover")] = $L['plu_title']; + +$t->assign(array( + "PLUGIN_PASSRECOVER_TITLE" => $L['plu_title'], + "PLUGIN_PASSRECOVER_BREADCRUMBS" => sed_breadcrumbs($urlpaths), +)); diff --git a/plugins/passrecover/passrecover.png b/plugins/passrecover/passrecover.png new file mode 100644 index 0000000..515edc8 Binary files /dev/null and b/plugins/passrecover/passrecover.png differ diff --git a/plugins/passrecover/passrecover.setup.php b/plugins/passrecover/passrecover.setup.php new file mode 100644 index 0000000..f9c29f9 --- /dev/null +++ b/plugins/passrecover/passrecover.setup.php @@ -0,0 +1,40 @@ +assign(array( + "LATEST_PAGES_ROW_URL" => $row['page_pageurl'], + "LATEST_PAGES_ROW_ID" => $row['page_id'], + "LATEST_PAGES_ROW_CAT" => $row['page_cat'], + "LATEST_PAGES_ROW_CATTITLE" => $sed_cat[$row['page_cat']]['title'], + "LATEST_PAGES_ROW_CATPATH" => sed_build_catpath($row['page_cat'], "%2\$s"), + "LATEST_PAGES_ROW_SHORTTITLE" => sed_cutstring($row['page_title'], 50), + "LATEST_PAGES_ROW_TITLE" => $row['page_title'], + "LATEST_PAGES_ROW_DATE" => sed_build_date($cfg['formatyearmonthday'], $row['page_date'], $cfg['plu_mask_pages_date']), + "LATEST_PAGES_ROW_AUTHOR" => sed_cc($row['user_name']), + "LATEST_PAGES_ROW_USERURL" => sed_url("users", "m=details&id=" . $row['page_ownerid']), + "LATEST_PAGES_ROW_USER" => sed_build_user($row['page_ownerid'], sed_cc($row['user_name']), $row['user_maingrp']), + "LATEST_PAGES_ROW_COMMENTS_URL" => $row['page_pageurlcom'], + "LATEST_PAGES_ROW_COMMENTS_COUNT" => $row['page_comcount'], + "LATEST_PAGES_ROW_AVATAR" => sed_build_userimage($row['user_avatar']) + )); + + $t->parse("MAIN.LATEST_PAGES.LATEST_PAGES_ROW"); + + /* old result view use mask */ + $res .= sprintf( + $mask, + "" . $sed_cat[$row['page_cat']]['title'] . "", + "" . sed_cc(sed_cutstring(stripslashes($row['page_title']), 50)) . "", + sed_build_date($cfg['formatyearmonthday'], $row['page_date'], $cfg['plu_mask_pages_date']) + ); + } + } + + $t->parse("MAIN.LATEST_PAGES"); + + $res = (empty($res)) ? $plu_empty : $res; + + return ($res); +} + +/* ------------------ */ + +function sed_get_latestcomments($limit, $mask) +{ + global $t, $L, $db_com, $sys, $db_pages, $db_users, $usr, $cfg, $sed_cat, $plu_empty, $ishtml; + + $modal = ($cfg['enablemodal']) ? ',1' : ''; + + $res = ''; + + $sql = sed_sql_query("SELECT MAX(com_id) AS max_com_id, MAX(com_date) AS max_com_date FROM $db_com WHERE com_isspecial = 0 GROUP BY com_code ORDER BY max_com_date DESC LIMIT $limit"); + + $com_latest = array(); + + while ($row = sed_sql_fetchassoc($sql)) $com_latest[] = $row['max_com_id']; + + $sql = sed_sql_query("SELECT c.com_id, c.com_code, c.com_text_ishtml, c.com_date, c.com_text, c.com_author, c.com_authorid, u.user_id, u.user_avatar, u.user_maingrp + FROM $db_com AS c LEFT JOIN $db_users AS u ON u.user_id = c.com_authorid + WHERE c.com_id IN('" . implode("','", $com_latest) . "') + ORDER BY c.com_date DESC"); + + while ($row = sed_sql_fetchassoc($sql)) { + + $com_code = $row['com_code']; + + $com_text = sed_cutstring(strip_tags($row['com_text']), 100); + + $j = substr($com_code, 0, 1); + $k = substr($com_code, 1); + + switch ($j) { + case 'p': + $sql2 = sed_sql_query("SELECT page_id, page_title, page_cat, page_alias FROM sed_pages WHERE page_id = $k LIMIT 1"); + $row2 = sed_sql_fetchassoc($sql2); + $sys['catcode'] = $row2['page_cat']; //new in v175 + $row2['page_pageurl'] = (empty($row2['page_alias'])) ? sed_url("page", "id=" . $row2['page_id'] . "&comments=1", "#c" . $row['com_id']) : sed_url("page", "al=" . $row2['page_alias'] . "&comments=1", "#c" . $row['com_id']); + $lnk = "" . sed_cutstring(stripslashes($row2['page_title']), 60) . ""; + break; + + case 'v': + $lnk = "" . $L['Poll'] . " #" . $k . ""; + break; + + case 'g': + $lnk = "" . $L['Gallery'] . " #" . $k . ""; + break; + } + + $com_author = sed_cc($row['com_author']); + $com_authorlink = ($row['com_authorid'] > 0 && $row['user_id'] > 0) ? sed_build_user($row['com_authorid'], $com_author, $row['user_maingrp']) : $com_author; + + $t->assign(array( + "LATEST_COMMENTS_ROW_ID" => $row['com_id'], + "LATEST_COMMENTS_ROW_AUTHOR" => $com_author, + "LATEST_COMMENTS_ROW_AUTHORLINK" => $com_authorlink, + "LATEST_COMMENTS_ROW_LNK" => $lnk, + "LATEST_COMMENTS_ROW_DATE" => sed_build_date($cfg['formatyearmonthday'], $row['com_date'], $cfg['plu_mask_comments_date']), + "LATEST_COMMENTS_ROW_AVATAR" => sed_build_userimage($row['user_avatar']), + "LATEST_COMMENTS_ROW_TEXT" => $com_text + )); + + $t->parse("MAIN.LATEST_COMMENTS.LATEST_COMMENTS_ROW"); + + /* old result view use mask */ + $res .= sprintf( + $mask, + $lnk, + $com_authorlink, + sed_build_date($cfg['formatyearmonthday'], $row['com_date'], $cfg['plu_mask_comments_date']), + sed_build_userimage($row['user_avatar']), + $com_text + ); + } + + $t->parse("MAIN.LATEST_COMMENTS"); + + $res = (empty($res)) ? $plu_empty : $res; + return ($res); +} + +/* ------------------ */ + +function sed_get_latesttopics($limit, $mask) +{ + global $t, $L, $db_forum_topics, $db_forum_sections, $db_users, $usr, $cfg, $skin, $plu_empty, $out; + + $res = ''; + + $sql0 = sed_sql_query("SELECT fs_id, fs_title, fs_parentcat, fs_lt_id, fs_lt_title, fs_lt_date, fs_lt_posterid, fs_lt_postername + FROM $db_forum_sections WHERE fs_parentcat = 0 ORDER BY fs_order ASC"); + + while ($fsn_sub = sed_sql_fetchassoc($sql0)) { + $forum_parentcat[$fsn_sub['fs_id']] = $fsn_sub; + } + + $sql = sed_sql_query("SELECT t.ft_id, t.ft_sectionid, t.ft_title, t.ft_updated, t.ft_postcount, t.ft_lastposterid, t.ft_lastpostername, + s.fs_id, s.fs_title, s.fs_category, s.fs_parentcat, s.fs_lt_id, s.fs_lt_title, s.fs_lt_date, u.user_id, u.user_avatar, u.user_maingrp + FROM $db_forum_sections s, $db_forum_topics t + LEFT JOIN $db_users AS u ON u.user_id = t.ft_lastposterid + WHERE t.ft_sectionid=s.fs_id + AND t.ft_movedto=0 AND t.ft_mode=0 + ORDER by t.ft_updated DESC LIMIT $limit"); + + while ($row = sed_sql_fetchassoc($sql)) { + if (sed_auth('forums', $row['fs_id'], 'R')) { + $img = ($usr['id'] > 0 && $row['ft_updated'] > $usr['lastvisit']) ? "" . $out['ic_arrow_unread'] . "" : "" . $out['ic_arrow_follow'] . " "; + + if ($row['fs_parentcat'] > 0) { + $parentcat['sectionid'] = $forum_parentcat[$row['fs_parentcat']]['fs_id']; + $parentcat['title'] = $forum_parentcat[$row['fs_parentcat']]['fs_title']; + } else { + $parentcat = FALSE; + } + + /*Autogen avatar from first letter*/ + if (empty($row['user_avatar']) && $row['user_id'] > 0) { + sed_autogen_avatar($row['user_id']); + } + + //print_r($row); + + $t->assign(array( + "LATEST_TOPICS_ROW_ID" => $row['ft_id'], + "LATEST_TOPICS_ROW_FORUMPATH" => sed_build_forums($row['fs_id'], sed_cutstring($row['fs_title'], 30), sed_cutstring($row['fs_category'], 30), TRUE, $parentcat), + "LATEST_TOPICS_ROW_URL" => sed_url("forums", "m=posts&q=" . $row['ft_id'] . "&n=last", "#bottom"), + "LATEST_TOPICS_ROW_SHORTTITLE" => sed_cutstring($row['ft_title'], 50), + "LATEST_TOPICS_ROW_TITLE" => $row['ft_title'], + "LATEST_TOPICS_ROW_DATE" => sed_build_date($cfg['formatmonthdayhourmin'], $row['ft_updated'], $cfg['plu_mask_topics_date']), + "LATEST_TOPICS_ROW_AUTHOR" => sed_cc($row['ft_lastpostername']), + "LATEST_TOPICS_ROW_USERURL" => sed_url("users", "m=details&id=" . $row['ft_lastposterid']), + "LATEST_TOPICS_ROW_USER" => sed_build_user($row['ft_lastposterid'], sed_cc($row['ft_lastpostername']), $row['user_maingrp']), + "LATEST_TOPICS_ROW_TOPIC_COUNT" => $row['ft_postcount'] - 1, + "LATEST_TOPICS_ROW_AVATAR" => sed_build_userimage($row['user_avatar']) + )); + + $t->parse("MAIN.LATEST_TOPICS.LATEST_TOPICS_ROW"); + + /* old result view use mask */ + $res .= sprintf( + $mask, + $img, + sed_build_date($cfg['formatmonthdayhourmin'], $row['ft_updated'], $cfg['plu_mask_topics_date']), + sed_build_forums($row['fs_id'], sed_cutstring($row['fs_title'], 25), sed_cutstring($row['fs_category'], 16), TRUE, $parentcat), + "" . sed_cc(sed_cutstring(stripslashes($row['ft_title']), 50)) . "", + $row['ft_postcount'] - 1 + ); + } + } + + $t->parse("MAIN.LATEST_TOPICS"); + + $res = (empty($res)) ? $plu_empty : $res; + + return ($res); +} + +/* ------------------ */ + +function sed_get_latestpolls($limit, $mask) +{ + global $t, $L, $cfg, $db_polls, $db_polls_voters, $db_polls_options, $usr, $plu_empty; + + $res = ''; + + $sql_p = sed_sql_query("SELECT poll_id, poll_text FROM $db_polls WHERE 1 AND poll_state=0 AND poll_type=0 ORDER by poll_creationdate DESC LIMIT $limit"); + + $modal = ($cfg['enablemodal']) ? ',1' : ''; + + $ajax = sed_import('ajax', 'G', 'BOL'); + $a = sed_import('a', 'G', 'ALP'); + $id = sed_import('id', 'G', 'ALP', 8); + $vote = sed_import('vote', 'G', 'INT'); + + // -- AJAX Poll vote + if ($ajax && $cfg['ajax'] && $a == "send") { + if (!empty($id) && !empty($vote)) { + if ($usr['id'] > 0) { + $sql2 = sed_sql_query("SELECT pv_id FROM $db_polls_voters WHERE pv_pollid='$id' AND (pv_userid='" . $usr['id'] . "' OR pv_userip='" . $usr['ip'] . "') LIMIT 1"); + } else { + $sql2 = sed_sql_query("SELECT pv_id FROM $db_polls_voters WHERE pv_pollid='$id' AND pv_userip='" . $usr['ip'] . "' LIMIT 1"); + } + + $alreadyvoted = (sed_sql_numrows($sql2) > 0) ? 1 : 0; + + if (!$alreadyvoted) { + $sql2 = sed_sql_query("UPDATE $db_polls_options SET po_count=po_count+1 + WHERE po_pollid='$id' AND po_id='$vote'"); + if (sed_sql_affectedrows() == 1) { + $sql2 = sed_sql_query("INSERT INTO $db_polls_voters (pv_pollid, pv_userid, pv_userip) + VALUES (" . (int)$id . ", " . (int)$usr['id'] . ", '" . $usr['ip'] . "')"); + } + } + } + } else { + $ajax = false; + } + // -- + + $res_all = "
"; + while ($row_p = sed_sql_fetchassoc($sql_p)) { + $res = ''; + $poll_id = $row_p['poll_id']; + + if ($usr['id'] > 0) { + $sql2 = sed_sql_query("SELECT pv_id FROM $db_polls_voters WHERE pv_pollid='$poll_id' AND (pv_userid='" . $usr['id'] . "' OR pv_userip='" . $usr['ip'] . "') LIMIT 1"); + } else { + $sql2 = sed_sql_query("SELECT pv_id FROM $db_polls_voters WHERE pv_pollid='$poll_id' AND pv_userip='" . $usr['ip'] . "' LIMIT 1"); + } + + if (sed_sql_numrows($sql2) > 0) { + $alreadyvoted = 1; + $sql2 = sed_sql_query("SELECT SUM(po_count) FROM $db_polls_options WHERE po_pollid='$poll_id'"); + $totalvotes = sed_sql_result($sql2, 0, "SUM(po_count)"); + } else { + $alreadyvoted = 0; + $res .= "
"; // sed175 + } + + $res .= "
" . $row_p['poll_text'] . "
\n"; + $res .= "
\n"; + + $sql = sed_sql_query("SELECT po_id, po_text, po_count FROM $db_polls_options WHERE po_pollid='$poll_id' ORDER by po_id ASC"); + + while ($row = sed_sql_fetchassoc($sql)) { + if ($alreadyvoted) { + $percentbar = floor(($row['po_count'] / $totalvotes) * 100); + $res .= "
" . $row['po_text'] . " : $percentbar%
\n"; + } else { + $res .= "
\n"; + } + } + + if ($alreadyvoted) { + $res .= "\n"; + } else { + $res .= "\n"; + $res .= "\n"; + $res .= "\n"; + if ($cfg['ajax']) { + $onclick = "javascript:sedjs.ajax.bind({'url': '?ajax=1&a=send&id='+document.pollvote_" . $poll_id . ".id.value+'&vote='+document.pollvote_" . $poll_id . ".cvote_" . $poll_id . ".value, 'format': 'text', 'method': 'GET', 'update': 'pollajx', 'loading': 'pollajx', 'formid': 'pollajx_" . $poll_id . "'});"; + $res .= "
\n"; + } else { + $res .= "
\n"; + } + $res .= "\n"; + } + + $res .= "
"; + $res_all .= sprintf($mask, $res); + } + + $res_all .= "
"; + + sed_ajax_flush($res_all, $ajax); // AJAX Output + + $res_all = (empty($res_all)) ? $plu_empty : $res_all; + + return ($res_all); +} diff --git a/plugins/recentitems/lang/recentitems.ru.lang.php b/plugins/recentitems/lang/recentitems.ru.lang.php new file mode 100644 index 0000000..dd37af7 --- /dev/null +++ b/plugins/recentitems/lang/recentitems.ru.lang.php @@ -0,0 +1,20 @@ +" : $cfg['plu_mask_pages']; +// %1\$s = Link to the category +// %2\$s = Link to the page +// %3\$s = Date + +$cfg['plu_mask_pages_date'] = "{d-m} {H:i}"; + +$cfg['plu_mask_topics'] = empty($cfg['plu_mask_topics']) ? "%2\$s" . " " . "%3\$s" . " " . $cfg['separator'] . " " . "%4\$s" . " (" . "%5\$s" . ")
" : $cfg['plu_mask_topics']; +// %1\$s = "Follow" image +// %2\$s = Date +// %3\$s = Section +// %4\$s = Topic title +// %5\$s = Number of replies + +$cfg['plu_mask_topics_date'] = "{d-m} {H:i}"; + +$cfg['plu_mask_comments'] = empty($cfg['plu_mask_comments']) ? "%3\$s" . " " . "%1\$s" . " " . $cfg['separator'] . " " . "%5\$s" . " " . $cfg['separator'] . " %2\$s
" : $cfg['plu_mask_comments']; +// %1\$s = Link to the comment +// %2\$s = Author +// %3\$s = Date +// %4\$s = User Avatar +// %5\$s = Comments Text + +$cfg['plu_mask_comments_date'] = "{d-m} {H:i}"; + +$cfg['plu_mask_polls'] = empty($cfg['plu_mask_polls']) ? "
%1\$s
" : $cfg['plu_mask_polls']; + +$plu_empty = $L['None'] . "
"; + +if ($cfg['plugin']['recentitems']['maxpages'] > 0 && !$cfg['disable_page']) { + $latestpages = sed_get_latestpages($cfg['plugin']['recentitems']['maxpages'], $cfg['plu_mask_pages']); +} + +if ($cfg['plugin']['recentitems']['maxtopics'] > 0 && !$cfg['disable_forums']) { + $latesttopics = sed_get_latesttopics($cfg['plugin']['recentitems']['maxtopics'], $cfg['plu_mask_topics']); +} + +if ($cfg['plugin']['recentitems']['maxpolls'] > 0 && !$cfg['disable_polls']) { + $latestpoll = sed_get_latestpolls($cfg['plugin']['recentitems']['maxpolls'], $cfg['plu_mask_polls']); +} + +if ($cfg['plugin']['recentitems']['maxcomments'] > 0 && !$cfg['disable_comments']) { + $latestcomments = sed_get_latestcomments($cfg['plugin']['recentitems']['maxcomments'], $cfg['plu_mask_comments']); +} + +$t->assign(array( + "PLUGIN_LATESTPAGES" => $latestpages, + "PLUGIN_LATESTTOPICS" => $latesttopics, + "PLUGIN_LATESTPOLL" => $latestpoll, + "PLUGIN_LATESTCOMMENTS" => $latestcomments +)); diff --git a/plugins/recentitems/recentitems.png b/plugins/recentitems/recentitems.png new file mode 100644 index 0000000..b9d62eb Binary files /dev/null and b/plugins/recentitems/recentitems.png differ diff --git a/plugins/recentitems/recentitems.setup.php b/plugins/recentitems/recentitems.setup.php new file mode 100644 index 0000000..dad2422 --- /dev/null +++ b/plugins/recentitems/recentitems.setup.php @@ -0,0 +1,44 @@ +Keyword(s)"; + +$L['plu_querytooshort'] = "The query string is too short !"; +$L['plu_toomanywords'] = "Too many words, limit is set to"; +$L['plu_found'] = "Found"; +$L['plu_match'] = "match(es)"; + +$L['plu_nofound'] = "Matches not found"; + +$L['plu_allsections'] = "All sections"; +$L['plu_allcategories'] = "All categories"; diff --git a/plugins/search/lang/search.ru.lang.php b/plugins/search/lang/search.ru.lang.php new file mode 100644 index 0000000..40dd9ba --- /dev/null +++ b/plugins/search/lang/search.ru.lang.php @@ -0,0 +1,26 @@ +Ключевое слово (а)"; + +$L['plu_querytooshort'] = "Поисковый запрос слишком короткий !"; +$L['plu_toomanywords'] = "Слишком много слов, ограничение - "; +$L['plu_found'] = "Найдено"; +$L['plu_match'] = "совпадений"; + +$L['plu_nofound'] = "Совпадений не найдено"; + +$L['plu_allsections'] = "Все секции"; +$L['plu_allcategories'] = "Все категории"; diff --git a/plugins/search/search.php b/plugins/search/search.php new file mode 100644 index 0000000..47dd9ef --- /dev/null +++ b/plugins/search/search.php @@ -0,0 +1,206 @@ +"; + } else { + $sq = sed_sql_prep($sq); + $words = explode(" ", $sq); + $words_count = count($words); + if ($words_count > $cfg_maxwords) { + $error_string .= $L['plu_toomanywords'] . " " . $cfg_maxwords . "
"; + } + } + + if (empty($error_string)) { + $sqlsearch = (count($words) > 1) ? implode("%", $words) : $words[0]; + $sqlsearch = "%" . $sqlsearch . "%"; + + if (!$cfg['disable_page']) { + + $pag_sub = sed_import('pag_sub', 'P', 'ARR'); + if (!is_array($pag_sub) || $pag_sub[0] == 'all') { + $sqlsections = ''; + } else { + $sub = array(); + foreach ($pag_sub as $i => $k) { + $k = sed_import($k, 'D', 'TXT'); + $checked_catarr[] = $k; + $sub[] = "page_cat='" . sed_sql_prep($k) . "'"; + } + $sqlsections = "AND (" . implode(' OR ', $sub) . ")"; + } + + $pagsql = "(p.page_title LIKE '" . $sqlsearch . "' OR p.page_text LIKE '" . sed_sql_prep($sqlsearch) . "') AND "; + + $sql = sed_sql_query("SELECT page_id, page_ownerid, page_title, page_cat, page_alias, page_date from $db_pages p, $db_structure s + WHERE $pagsql (p.page_title LIKE '" . $sqlsearch . "' OR p.page_text LIKE '" . sed_sql_prep($sqlsearch) . "') AND p.page_cat = s.structure_code + AND p.page_cat NOT LIKE 'system' $sqlsections ORDER by page_date DESC + LIMIT $cfg_maxitems"); + + $items = sed_sql_numrows($sql); + + if ($items > 0) { + while ($row = sed_sql_fetchassoc($sql)) { + if (sed_auth('page', $row['page_cat'], 'R')) { + $sys['catcode'] = $row['page_cat']; + $row['page_pageurl'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id']) : sed_url("page", "al=" . $row['page_alias']); + $ownername = sed_sql_fetchassoc(sed_sql_query("SELECT user_name FROM $db_users WHERE user_id='" . $row['page_ownerid'] . "'")); + $t->assign(array( + "PLUGIN_SEARCH_ROW_PAGE_CATEGORY_URL" => sed_url("list", "c=" . $row['page_cat']), + "PLUGIN_SEARCH_ROW_PAGE_CATEGORY_TITLE" => $sed_cat[$row['page_cat']]['tpath'], + "PLUGIN_SEARCH_ROW_PAGE_URL" => $row['page_pageurl'], + "PLUGIN_SEARCH_ROW_PAGE_TITLE" => sed_cc($row['page_title']), + "PLUGIN_SEARCH_ROW_PAGE_DATE" => @date($cfg['dateformat'], $row['page_date'] + $usr['timezone'] * 3600), + "PLUGIN_SEARCH_ROW_PAGE_OWNER" => sed_build_user($row['page_ownerid'], $ownername['user_name']) + )); + $t->parse("MAIN.PLUGIN_SEARCH_PAGES.PLUGIN_SEARCH_PAGES_ROW"); + } + } + $total_items += $items; + $t->assign("PLUGIN_SEARCH_PAGE_FOUND", $items); + $t->parse("MAIN.PLUGIN_SEARCH_PAGES"); + } + } + + if (!$cfg['disable_forums']) { + $frm_sub = sed_import('frm_sub', 'P', 'ARR'); + + if (!is_array($frm_sub) || $frm_sub[0] == 9999) { + $sqlsections = ''; + } else { + foreach ($frm_sub as $i => $k) { + $sections1[] = "s.fs_id='" . sed_sql_prep($k) . "'"; + } + $sqlsections = "AND (" . implode(' OR ', $sections1) . ")"; + } + + $sql = sed_sql_query("SELECT p.fp_id, t.ft_firstposterid, t.ft_firstpostername, t.ft_title, t.ft_id, t.ft_updated, s.fs_id, s.fs_title, s.fs_category + FROM $db_forum_posts p, $db_forum_topics t, $db_forum_sections s + WHERE 1 AND (p.fp_text LIKE '" . sed_sql_prep($sqlsearch) . "' OR t.ft_title LIKE '" . sed_sql_prep($sqlsearch) . "') + AND p.fp_topicid=t.ft_id AND p.fp_sectionid=s.fs_id $sqlsections + GROUP BY t.ft_id ORDER BY ft_updated DESC + LIMIT $cfg_maxitems"); + + $items = sed_sql_numrows($sql); + + if ($items > 0) { + while ($row = sed_sql_fetchassoc($sql)) { + if (sed_auth('forums', $row['fs_id'], 'R')) { + $t->assign(array( + "PLUGIN_SEARCH_ROW_FORUM_SECTION" => sed_build_forums($row['fs_id'], $row['fs_title'], $row['fs_category'], TRUE), + "PLUGIN_SEARCH_ROW_FORUM_TOPIC_TITLE" => sed_cc($row['ft_title']), + "PLUGIN_SEARCH_ROW_FORUM_TOPIC_URL" => sed_url("forums", "m=posts&p=" . $row['fp_id'], "#" . $row['fp_id']), + "PLUGIN_SEARCH_ROW_FORUM_DATE" => @date($cfg['dateformat'], $row['ft_updated'] + $usr['timezone'] * 3600), + "PLUGIN_SEARCH_ROW_FORUM_POSTER" => sed_build_user($row['ft_firstposterid'], $row['ft_firstpostername']) + )); + $t->parse("MAIN.PLUGIN_SEARCH_FORUMS.PLUGIN_SEARCH_FORUMS_ROW"); + } + } + $total_items += $items; + $t->assign("PLUGIN_SEARCH_FORUM_FOUND", $items); + $t->parse("MAIN.PLUGIN_SEARCH_FORUMS"); + } + } + } +} + +if (!$cfg['disable_page']) { + $page_cats = ""; + + $t->assign("PLUGIN_SEARCH_FORM_PAGES", $page_cats); + $t->parse("MAIN.PLUGIN_SEARCH_FORM.PLUGIN_SEARCH_FORM_PAGES"); +} + +if (!$cfg['disable_forums']) { + $sql1 = sed_sql_query("SELECT s.fs_id, s.fs_title, s.fs_category FROM $db_forum_sections AS s + LEFT JOIN $db_forum_structure AS n ON n.fn_code=s.fs_category + ORDER by fn_path ASC, fs_order ASC"); + + $forums_sections = ""; + $t->assign("PLUGIN_SEARCH_FORM_FORUMS", $forums_sections); + $t->parse("MAIN.PLUGIN_SEARCH_FORM.PLUGIN_SEARCH_FORM_FORUMS"); +} + +$t->assign(array( + "PLUGIN_SEARCH_FORM_SEND" => sed_url("plug", "e=search&a=search"), + "PLUGIN_SEARCH_FORM_INPUT" => sed_textbox('sq', sed_cc($sq), 40, 64) +)); + +$t->parse("MAIN.PLUGIN_SEARCH_FORM"); + +if ($total_items == 0 && $a == 'search') { + $error_string .= $L['plu_nofound']; +} + +if (!empty($error_string)) { + $t->assign("PLUGIN_SEARCH_ERROR_BODY", sed_alert($error_string, 'e')); + $t->parse("MAIN.PLUGIN_SEARCH_ERROR"); +} + +$t->assign(array( + "PLUGIN_SEARCH_TITLE" => "" . $L['plu_title'] . "", + "PLUGIN_SEARCH_SHORTTITLE" => $L['plu_title'], + "PLUGIN_SEARCH_BREADCRUMBS" => sed_breadcrumbs($urlpaths), + "PLUGIN_SEARCH_URL" => sed_url("plug", "e=search") +)); diff --git a/plugins/search/search.png b/plugins/search/search.png new file mode 100644 index 0000000..400576b Binary files /dev/null and b/plugins/search/search.png differ diff --git a/plugins/search/search.setup.php b/plugins/search/search.setup.php new file mode 100644 index 0000000..db1ef67 --- /dev/null +++ b/plugins/search/search.setup.php @@ -0,0 +1,28 @@ +" : ""; +} diff --git a/plugins/sedcaptcha/sedcaptcha.auth.tags.php b/plugins/sedcaptcha/sedcaptcha.auth.tags.php new file mode 100644 index 0000000..43d2523 --- /dev/null +++ b/plugins/sedcaptcha/sedcaptcha.auth.tags.php @@ -0,0 +1,55 @@ +
"; + + $verifyimg .= "" . $L['plu_scaptcha_noties'] . ""; + $verifyimg .= ""; + $verifyinput = ""; + + $t->assign(array( + "USERS_AUTH_VERIFYIMG" => $verifyimg, + "USERS_AUTH_VERIFYINPUT" => $verifyinput + )); + + $t->parse("MAIN.USERS_AUTH_VERIFY"); +} diff --git a/plugins/sedcaptcha/sedcaptcha.register.add.first.php b/plugins/sedcaptcha/sedcaptcha.register.add.first.php new file mode 100644 index 0000000..24e3926 --- /dev/null +++ b/plugins/sedcaptcha/sedcaptcha.register.add.first.php @@ -0,0 +1,33 @@ +" : ""; +} diff --git a/plugins/sedcaptcha/sedcaptcha.register.tags.php b/plugins/sedcaptcha/sedcaptcha.register.tags.php new file mode 100644 index 0000000..d7f91ec --- /dev/null +++ b/plugins/sedcaptcha/sedcaptcha.register.tags.php @@ -0,0 +1,54 @@ +
"; + $verifyimg .= "" . $L['plu_scaptcha_noties'] . ""; + $verifyimg .= ""; + $verifyinput = ""; + + $t->assign(array( + "USERS_REGISTER_VERIFYIMG" => $verifyimg, + "USERS_REGISTER_VERIFYINPUT" => $verifyinput + )); + + $t->parse("MAIN.USERS_REGISTER_VERIFY"); +} diff --git a/plugins/sedcaptcha/sedcaptcha.setup.php b/plugins/sedcaptcha/sedcaptcha.setup.php new file mode 100644 index 0000000..69603ae --- /dev/null +++ b/plugins/sedcaptcha/sedcaptcha.setup.php @@ -0,0 +1,37 @@ +Cool PHP Captcha is licensed under the GPLv3. +Notes= +SQL= +Auth_guests=R +Lock_guests=12345A +Auth_members=RW +Lock_members=12345A +[END_SED_EXTPLUGIN] + +[BEGIN_SED_EXTPLUGIN_CONFIG] +captcha_auth=01:select:yes,no:yes:Enable captcha on login? +captcha_register=02:select:yes,no:yes:Enable captcha on registration? +[END_SED_EXTPLUGIN_CONFIG] + +==================== */ \ No newline at end of file diff --git a/plugins/sednews/lang/sednews.en.lang.php b/plugins/sednews/lang/sednews.en.lang.php new file mode 100644 index 0000000..fc71fd6 --- /dev/null +++ b/plugins/sednews/lang/sednews.en.lang.php @@ -0,0 +1,22 @@ +getName() => $rss_arr); + return $rss_arr; + } +} + +$sednews_maxitems = $cfg['plugin']['sednews']['maxitems']; +$sednews_rssfeed = $cfg['plugin']['sednews']['rssfeed']; + +$sednews_rssfeed = (!empty($sednews_rssfeed)) ? $sednews_rssfeed : "https://seditio.org/rss"; + +$t->assign(array( + "ADMIN_RSS_NEWS_TAB_TITLE" => $L['sednews_title'] +)); + +$t->parse("ADMIN_HOME.ADMIN_RSS_NEWS_TAB"); + +$sn = new XTemplate(SED_ROOT . '/plugins/sednews/sednews.tpl'); + +if (!isset($sed_rss_news)) { + $rss_content = @file_get_contents($sednews_rssfeed); + $sed_rss_news = sed_get_rss($rss_content); + sed_cache_store('sed_rss_news', $sed_rss_news, 3600); +} + +if (count($sed_rss_news) > 0) { + $ii = 0; + foreach ($sed_rss_news['rss']['channel']['item'] as $item) { + $ii++; + $sn->assign(array( + "RSS_NEWS_TITLE" => $item['title'], + "RSS_NEWS_URL" => $item['link'], + "RSS_NEWS_DATE" => sed_build_date($cfg['dateformat'], strtotime($item['pubDate'])), + "RSS_NEWS_DESC" => sed_cutstring(strip_tags($item['description']), 150), + )); + $sn->parse("ADMIN_RSS_NEWS.ADMIN_RSS_NEWS_ROW"); + if ($ii >= $sednews_maxitems) break; + } + $sn->parse("ADMIN_RSS_NEWS"); + + $t->assign("ADMIN_RSS_NEWS", $sn->text("ADMIN_RSS_NEWS")); + $t->parse("ADMIN_HOME.ADMIN_RSS_NEWS_TABBODY"); +} diff --git a/plugins/sednews/sednews.setup.php b/plugins/sednews/sednews.setup.php new file mode 100644 index 0000000..17402ff --- /dev/null +++ b/plugins/sednews/sednews.setup.php @@ -0,0 +1,42 @@ + + +
+ +
+ +
+ + +
+
+
{RSS_NEWS_DATE}
+
+
+ +
{RSS_NEWS_DESC}
+
+
+ + +
+ +
+ +
+ + \ No newline at end of file diff --git a/plugins/similarpages/similarpages.install.php b/plugins/similarpages/similarpages.install.php new file mode 100644 index 0000000..c0972cf --- /dev/null +++ b/plugins/similarpages/similarpages.install.php @@ -0,0 +1,25 @@ +"; +// %1\$s = Link to the category +// %2\$s = Link to the page +// %3\$s = Date + +$sim_relevance = $cfg['plugin']['similarpages']['sim_relevance']; +$sim_maxcount = $cfg['plugin']['similarpages']['sim_maxcount']; +$sim_category = $cfg['plugin']['similarpages']['sim_category']; + +$plu_empty = $L['None'] . "
"; + +/* ================== FUNCTIONS ================== */ + +function sed_get_similarpages($sim_relevance, $sim_maxcount, $sim_category, $mask) +{ + global $L, $t, $pag, $db_pages, $db_users, $usr, $cfg, $sed_cat, $plu_empty; + + $sql_cat = ""; + $res = ""; + + if (!empty($sim_category)) { + $sim_category = explode(',', $sim_category); + foreach ($sim_category as $k => $i) { + $i = rtrim(trim($i)); + $mtch = $sed_cat[$i]['path'] . "."; + $mtchlen = strlen($mtch); + $catsub = array(); + $catsub[] = $i; + @reset($sed_cat); + foreach ($sed_cat as $j => $x) { + if (substr($x['path'], 0, $mtchlen) == $mtch) { + $catsub[] = $j; + } + } + } + $sql_cat = "AND page_cat IN ('" . implode("','", $catsub) . "')"; + } + + $pcomments = ($cfg['showcommentsonpage']) ? "" : "&comments=1"; + + $sql = sed_sql_query("SELECT p.page_id, p.page_alias, p.page_cat, p.page_title, p.page_date, p.page_ownerid, p.page_count, + p.page_comcount, p.page_thumb, u.user_id, u.user_name, u.user_maingrp, u.user_avatar + FROM $db_pages AS p LEFT JOIN $db_users AS u ON u.user_id = p.page_ownerid + WHERE p.page_state=0 AND p.page_cat NOT LIKE 'system' " . $sql_cat . " AND p.page_id != " . $pag['page_id'] . " AND MATCH (p.page_title) + AGAINST ('" . sed_sql_prep($pag['page_title']) . "') > $sim_relevance + ORDER BY p.page_date DESC LIMIT $sim_maxcount"); + + if (sed_sql_numrows($sql) > 0) { + $jj = 0; + while ($row = sed_sql_fetchassoc($sql)) { + + if (sed_auth('page', $row['page_cat'], 'R')) { + $jj++; + $sys['catcode'] = $row['page_cat']; //new in v175 + $row['page_pageurl'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id']) : sed_url("page", "al=" . $row['page_alias']); + $row['page_pageurlcom'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id'] . $pcomments) : sed_url("page", "al=" . $row['page_alias'] . $pcomments); + + $t->assign(array( + "SIMILARPAGES_ROW_URL" => $row['page_pageurl'], + "SIMILARPAGES_ROW_ID" => $row['page_id'], + "SIMILARPAGES_ROW_CAT" => $row['page_cat'], + "SIMILARPAGES_ROW_CATTITLE" => $sed_cat[$row['page_cat']]['title'], + "SIMILARPAGES_ROW_CATPATH" => sed_build_catpath($row['page_cat'], "%2\$s"), + "SIMILARPAGES_ROW_SHORTTITLE" => sed_cutstring($row['page_title'], 50), + "SIMILARPAGES_ROW_TITLE" => $row['page_title'], + "SIMILARPAGES_ROW_DATE" => sed_build_date($cfg['formatyearmonthday'], $row['page_date'], $cfg['plu_mask_pages_date']), + "SIMILARPAGES_ROW_AUTHOR" => sed_cc($row['user_name']), + "SIMILARPAGES_ROW_OWNER" => sed_build_user($row['page_ownerid'], sed_cc($row['user_name']), $row['user_maingrp']), + "SIMILARPAGES_ROW_OWNER_AVATAR" => sed_build_userimage($row['user_avatar']), + "SIMILARPAGES_ROW_USERURL" => sed_url("users", "m=details&id=" . $row['page_ownerid']), + "SIMILARPAGES_ROW_USER" => sed_build_user($row['page_ownerid'], sed_cc($row['user_name']), $row['user_maingrp']), + "SIMILARPAGES_ROW_COUNT" => $row['page_count'], + "SIMILARPAGES_ROW_COMMENTS_URL" => $row['page_pageurlcom'], + "SIMILARPAGES_ROW_COMMENTS_COUNT" => $row['page_comcount'] + )); + + // ------- thumb + + if (!empty($row['page_thumb'])) { + $page_thumbs_array = rtrim($row['page_thumb']); + if ($page_thumbs_array[mb_strlen($page_thumbs_array) - 1] == ';') { + $page_thumbs_array = mb_substr($page_thumbs_array, 0, -1); + } + $page_thumbs_array = explode(";", $page_thumbs_array); + if (count($page_thumbs_array) > 0) { + $t->assign("SIMILARPAGES_ROW_THUMB", $page_thumbs_array[0]); + $t->parse("MAIN.SIMILARPAGES.SIMILARPAGES_ROW.SIMILARPAGES_ROW_THUMB"); + } + } else { + $t->assign("SIMILARPAGES_ROW_THUMB", sed_cc($row['page_thumb'])); + } + + // ------- + + $t->parse("MAIN.SIMILARPAGES.SIMILARPAGES_ROW"); + + /* old result view use mask */ + $res .= sprintf( + $mask, + "" . $sed_cat[$row['page_cat']]['title'] . "", + "" . sed_cc(sed_cutstring(stripslashes($row['page_title']), 36)) . "", + date($cfg['formatyearmonthday'], $row['page_date'] + $usr['timezone'] * 3600) + ); + } + } + + if ($jj > 0) $t->parse("MAIN.SIMILARPAGES"); + } + + $res = (empty($res)) ? $plu_empty : $res; + + return ($res); +} + +/* ============= */ + +if ($sim_maxcount > 0 && !$cfg['disable_page']) { + $t->assign(array( + "PLUGIN_SIMILAR_PAGES" => sed_get_similarpages($sim_relevance, $sim_maxcount, $sim_category, $cfg['plu_mask_similar_pages']) + )); +} diff --git a/plugins/similarpages/similarpages.setup.php b/plugins/similarpages/similarpages.setup.php new file mode 100644 index 0000000..1da5f96 --- /dev/null +++ b/plugins/similarpages/similarpages.setup.php @@ -0,0 +1,43 @@ +=0&&a=c.to||b.linee-400&&Z(zb.pos,d))return C(a),setTimeout(Ec,20),_c(d.line);if(yb&&yb.time>e-400&&Z(yb.pos,d))return zb={time:e,pos:d},C(a),$c(d);yb={time:e,pos:d};var g=d,h;if(f.dragDrop&&S&&!f.readOnly&&!Z(wb.from,wb.to)&&!$(d,wb.from)&&!$(wb.to,d)){P&&(jb.draggable=!0);var i=I(document,"mouseup",Ud(function(b){P&&(jb.draggable=!1),Bb=!1,i(),Math.abs(a.clientX-b.clientX)+Math.abs(a.clientY-b.clientY)<10&&(C(b),Sc(d.line,d.ch,!0),Ec())}),!0);Bb=!0,jb.dragDrop&&jb.dragDrop();return}C(a),Sc(d.line,d.ch,!0);var l=I(document,"mousemove",Ud(function(a){clearTimeout(h),C(a),!M&&!G(a)?k(a):j(a)}),!0),i=I(document,"mouseup",Ud(k),!0)}function bc(a){for(var b=F(a);b!=s;b=b.parentNode)if(b.parentNode==ib)return C(a);var c=Hd(a);if(!c)return;zb={time:+(new Date),pos:c},C(a),$c(c)}function cc(a){a.preventDefault();var b=Hd(a,!0),c=a.dataTransfer.files;if(!b||f.readOnly)return;if(c&&c.length&&window.FileReader&&window.File){function d(a,c){var d=new FileReader;d.onload=function(){g[c]=d.result,++h==e&&(b=Uc(b),Ud(function(){var a=tc(g.join(""),b,b);Pc(b,a)})())},d.readAsText(a)}if(f.onFileDrop&&!f.onFileDrop(Xb,a.dataTransfer))return;var e=c.length,g=Array(e),h=0;for(var i=0;i-1&&setTimeout(Ud(function(){bd(wb.to.line,"smart")}),75);if(gc(a,d))return;Ac()}function lc(a){if(f.onKeyEvent&&f.onKeyEvent(Xb,B(a)))return;H(a,"keyCode")==16&&(xb=null)}function mc(){if(f.readOnly=="nocursor")return;vb||(f.onFocus&&f.onFocus(Xb),vb=!0,s.className.search(/\bCodeMirror-focused\b/)==-1&&(s.className+=" CodeMirror-focused"),Jb||Dc(!0)),zc(),Jd()}function nc(){vb&&(f.onBlur&&f.onBlur(Xb),vb=!1,Qb&&Ud(function(){Qb&&(Qb(),Qb=null)})(),s.className=s.className.replace(" CodeMirror-focused","")),clearInterval(rb),setTimeout(function(){vb||(xb=null)},150)}function oc(a,b,c,d,e){if(Db)return;if(Ub){var g=[];tb.iter(a.line,b.line+1,function(a){g.push(a.text)}),Ub.addChange(a.line,c.length,g);while(Ub.done.length>f.undoDepth)Ub.done.shift()}sc(a,b,c,d,e)}function pc(a,b){if(!a.length)return;var c=a.pop(),d=[];for(var e=c.length-1;e>=0;e-=1){var f=c[e],g=[],h=f.start+f.added;tb.iter(f.start,h,function(a){g.push(a.text)}),d.push({start:f.start,added:f.old.length,old:g});var i=Uc({line:f.start+f.old.length-1,ch:cb(g[g.length-1],f.old[f.old.length-1])});sc({line:f.start,ch:0},{line:h-1,ch:Yb(h-1).text.length},f.old,i,i)}Eb=!0,b.push(d)}function qc(){pc(Ub.done,Ub.undone)}function rc(){pc(Ub.undone,Ub.done)}function sc(a,b,c,d,e){function y(a){return a<=Math.min(b.line,b.line+s)?a:a+s}if(Db)return;var g=!1,h=Rb.length;f.lineWrapping||tb.iter(a.line,b.line+1,function(a){if(a.text.length==h)return g=!0,!0});if(a.line!=b.line||c.length>1)Kb=!0;var i=b.line-a.line,j=Yb(a.line),k=Yb(b.line);if(a.ch==0&&b.ch==0&&c[c.length-1]==""){var l=[],m=null;a.line?(m=Yb(a.line-1),m.fixMarkEnds(k)):k.fixMarkStarts();for(var n=0,o=c.length-1;n1&&tb.remove(a.line+1,i-1,Lb),tb.insert(a.line+1,l)}if(f.lineWrapping){var p=Math.max(5,T.clientWidth/Ed()-3);tb.iter(a.line,a.line+c.length,function(a){if(a.hidden)return;var b=Math.ceil(a.text.length/p)||1;b!=a.height&&Zb(a,b)})}else tb.iter(a.line,n+c.length,function(a){var b=a.text;b.length>h&&(Rb=b,h=b.length,Sb=null,g=!1)}),g&&(h=0,Rb="",Sb=null,tb.iter(0,tb.size,function(a){var b=a.text;b.length>h&&(h=b.length,Rb=b)}));var q=[],s=c.length-i-1;for(var n=0,t=ub.length;nb.line&&q.push(u+s)}var v=a.line+Math.min(c.length,500);Od(a.line,v),q.push(v),ub=q,Qd(100),Gb.push({from:a.line,to:b.line+1,diff:s});var w={from:a,to:b,text:c};if(Hb){for(var x=Hb;x.next;x=x.next);x.next=w}else Hb=w;Qc(d,e,y(wb.from.line),y(wb.to.line)),T.clientHeight&&(U.style.height=tb.height*Bd()+2*Fd()+"px")}function tc(a,b,c){function d(d){if($(d,b))return d;if(!$(c,d))return e;var f=d.line+a.length-(c.line-b.line)-1,g=d.ch;return d.line==c.line&&(g+=a[a.length-1].length-(c.ch-(c.line==b.line?b.ch:0))),{line:f,ch:g}}b=Uc(b),c?c=Uc(c):c=b,a=fb(a);var e;return vc(a,b,c,function(a){return e=a,{from:d(wb.from),to:d(wb.to)}}),e}function uc(a,b){vc(fb(a),wb.from,wb.to,function(a){return b=="end"?{from:a,to:a}:b=="start"?{from:wb.from,to:wb.from}:{from:wb.from,to:a}})}function vc(a,b,c,d){var e=a.length==1?a[0].length+b.ch:a[a.length-1].length,f=d({line:b.line+a.length-1,ch:e});oc(b,c,a,f.from,f.to)}function wc(a,b){var c=a.line,d=b.line;if(c==d)return Yb(c).text.slice(a.ch,b.ch);var e=[Yb(c).text.slice(a.ch)];return tb.iter(c+1,d,function(a){e.push(a.text)}),e.push(Yb(d).text.slice(0,b.ch)),e.join("\n")}function xc(){return wc(wb.from,wb.to)}function zc(){if(yc)return;pb.set(f.pollInterval,function(){Rd(),Cc(),vb&&zc(),Sd()})}function Ac(){function b(){Rd();var c=Cc();!c&&!a?(a=!0,pb.set(60,b)):(yc=!1,zc()),Sd()}var a=!1;yc=!0,pb.set(20,b)}function Cc(){if(Jb||!vb||gb(D)||f.readOnly)return!1;var a=D.value;if(a==Bc)return!1;xb=null;var b=0,c=Math.min(Bc.length,a.length);while(bb)&&lb.scrollIntoView()}function Gc(){var a=vd(wb.inverted?wb.from:wb.to),b=f.lineWrapping?Math.min(a.x,jb.offsetWidth):a.x;return Hc(b,a.y,b,a.yBot)}function Hc(a,b,c,d){var e=Gd(),g=Fd();b+=g,d+=g,a+=e,c+=e;var h=T.clientHeight,i=T.scrollTop,j=!1,k=!0;bi+h&&(T.scrollTop=d-h,j=!0);var l=T.clientWidth,m=T.scrollLeft,n=f.fixedGutter?ab.clientWidth:0,o=al+m-3&&(T.scrollLeft=c+10-l,j=!0,c>U.clientWidth&&(k=!1)),j&&f.onScroll&&f.onScroll(Xb),k}function Ic(){var a=Bd(),b=T.scrollTop-Fd(),c=Math.max(0,Math.floor(b/a)),d=Math.ceil((b+T.clientHeight)/a);return{from:x(tb,c),to:x(tb,d)}}function Jc(a,b){function n(){Sb=T.clientWidth;var a=nb.firstChild,b=!1;return tb.iter(Nb,Ob,function(c){if(!c.hidden){var d=Math.round(a.offsetHeight/k)||1;c.height!=d&&(Zb(c,d),Kb=b=!0)}a=a.nextSibling}),b&&(U.style.height=tb.height*k+2*Fd()+"px"),b}if(!T.clientWidth){Nb=Ob=Mb=0;return}var c=Ic();if(a!==!0&&a.length==0&&c.from>Nb&&c.toe&&Ob-e<20&&(e=Math.min(tb.size,Ob));var g=a===!0?[]:Kc([{from:Nb,to:Ob,domStart:0}],a),h=0;for(var i=0;ie&&(j.to=e),j.from>=j.to?g.splice(i--,1):h+=j.to-j.from}if(h==e-d&&d==Nb&&e==Ob)return;g.sort(function(a,b){return a.domStart-b.domStart});var k=Bd(),l=ab.style.display;nb.style.display="none",Lc(d,e,g),nb.style.display=ab.style.display="";var m=d!=Nb||e!=Ob||Pb!=T.clientHeight+k;m&&(Pb=T.clientHeight+k),Nb=d,Ob=e,Mb=y(tb,d),V.style.top=Mb*k+"px",T.clientHeight&&(U.style.height=tb.height*k+2*Fd()+"px");if(nb.childNodes.length!=Ob-Nb)throw new Error("BAD PATCH! "+JSON.stringify(g)+" size="+(Ob-Nb)+" nodes="+nb.childNodes.length);return f.lineWrapping?n():(Sb==null&&(Sb=rd(Rb)),Sb>T.clientWidth?(jb.style.width=Sb+"px",U.style.width="",U.style.width=T.scrollWidth+"px"):jb.style.width=U.style.width=""),ab.style.display=l,(m||Kb)&&Mc()&&f.lineWrapping&&n()&&Mc(),Nc(),!b&&f.onUpdate&&f.onUpdate(Xb),!0}function Kc(a,b){for(var c=0,d=b.length||0;c=j.to?f.push(j):(e.from>j.from&&f.push({from:j.from,to:e.from,domStart:j.domStart}),e.toe)f=d(f),e++;for(var j=0,k=i.to-i.from;jj){if(a.hidden)var b=m.innerHTML="
";else{var b=""+a.getHTML(fd)+"
";a.bgClassName&&(b='
 
'+b+"
")}m.innerHTML=b,nb.insertBefore(m.firstChild,f)}else f=f.nextSibling;++j})}function Mc(){if(!f.gutter&&!f.lineNumbers)return;var a=V.offsetHeight,b=T.clientHeight;ab.style.height=(a-b<2?b:a)+"px";var c=[],d=Nb,e;tb.iter(Nb,Math.max(Ob,Nb+1),function(a){if(a.hidden)c.push("
");else{var b=a.gutterMarker,g=f.lineNumbers?d+f.firstLineNumber:null;b&&b.text?g=b.text.replace("%N%",g!=null?g:""):g==null&&(g="\u00a0"),c.push(b&&b.style?'
':"
",g);for(var h=1;h ");c.push("
"),b||(e=d)}++d}),ab.style.display="none",ib.innerHTML=c.join("");if(e!=null){var g=ib.childNodes[e-Nb],h=String(tb.size).length,i=X(g),j="";while(i.length+j.length2;return jb.style.marginLeft=ab.offsetWidth+"px",Kb=!1,k}function Nc(){var a=Z(wb.from,wb.to),b=vd(wb.from,!0),c=a?b:vd(wb.to,!0),d=wb.inverted?b:c,e=Bd(),g=W(s),h=W(nb);A.style.top=Math.max(0,Math.min(T.offsetHeight,d.y+h.top-g.top))+"px",A.style.left=Math.max(0,Math.min(T.offsetWidth,d.x+h.left-g.left))+"px";if(a)lb.style.top=d.y+"px",lb.style.left=(f.lineWrapping?Math.min(d.x,jb.offsetWidth):d.x)+"px",lb.style.display="",mb.style.display="none";else{var i=b.y==c.y,j="",k=jb.clientWidth||jb.offsetWidth,l=jb.clientHeight||jb.offsetHeight;function m(a,b,c,d){var e=O?"width: "+(c?k-c-a:k)+"px":"right: "+c+"px";j+='
'}if(wb.from.ch&&b.y>=0){var n=i?k-c.x:0;m(b.x,b.y,n,e)}var o=Math.max(0,b.y+(wb.from.ch?e:0)),p=Math.min(c.y,l)-o;p>.2*e&&m(0,o,0,p),(!i||!wb.from.ch)&&c.yc||h>g.text.length)h=g.text.length;return{line:d,ch:h}}d+=b}}var e=Yb(a.line),f=a.ch==e.text.length&&a.ch!=c;return e.hidden?a.line>=b?d(1)||d(-1):d(-1)||d(1):a}function Sc(a,b,c){var d=Uc({line:a,ch:b||0});(c?Pc:Qc)(d,d)}function Tc(a){return Math.max(0,Math.min(a,tb.size-1))}function Uc(a){if(a.line<0)return{line:0,ch:0};if(a.line>=tb.size)return{line:tb.size-1,ch:Yb(tb.size-1).text.length};var b=a.ch,c=Yb(a.line).text.length;return b==null||b>c?{line:a.line,ch:c}:b<0?{line:a.line,ch:0}:a}function Vc(a,b){function g(){for(var b=d+a,c=a<0?-1:tb.size;b!=c;b+=a){var e=Yb(b);if(!e.hidden)return d=b,f=e,!0}}function h(b){if(e==(a<0?0:f.text.length)){if(!!b||!g())return!1;e=a<0?f.text.length:0}else e+=a;return!0}var c=wb.inverted?wb.from:wb.to,d=c.line,e=c.ch,f=Yb(d);if(b=="char")h();else if(b=="column")h(!0);else if(b=="word"){var i=!1;for(;;){if(a<0&&!h())break;if(eb(f.text.charAt(e)))i=!0;else if(i){a<0&&(a=1,h());break}if(a>0&&!h())break}}return{line:d,ch:e}}function Wc(a,b){var c=a<0?wb.from:wb.to;if(xb||Z(wb.from,wb.to))c=Vc(a,b);Sc(c.line,c.ch,!0)}function Xc(a,b){Z(wb.from,wb.to)?a<0?tc("",Vc(a,b),wb.to):tc("",wb.from,Vc(a,b)):tc("",wb.from,wb.to),Fb=!0}function Zc(a,b){var c=0,d=vd(wb.inverted?wb.from:wb.to,!0);Yc!=null&&(d.x=Yc),b=="page"?c=Math.min(T.clientHeight,window.innerHeight||document.documentElement.clientHeight):b=="line"&&(c=Bd());var e=wd(d.x,d.y+c*a+2);b=="page"&&(T.scrollTop+=vd(e,!0).y-d.y),Sc(e.line,e.ch,!0),Yc=d.x}function $c(a){var b=Yb(a.line).text,c=a.ch,d=a.ch;while(c>0&&eb(b.charAt(c-1)))--c;while(dRb.length&&(Rb=a.text)});Gb.push({from:0,to:tb.size})}function fd(a){var b=f.tabSize-a%f.tabSize,c=Tb[b];if(c)return c;for(var d='',e=0;e",width:b}}function gd(){T.className=T.className.replace(/\s*cm-s-\S+/g,"")+f.theme.replace(/(^|\s)\s*/g," cm-s-")}function hd(){this.set=[]}function id(a,b,c){function e(a,b,c,e){Yb(a).addMark(new p(b,c,e,d))}a=Uc(a),b=Uc(b);var d=new hd;if(!$(a,b))return d;if(a.line==b.line)e(a.line,a.ch,b.ch,c);else{e(a.line,a.ch,null,c);for(var f=a.line+1,g=b.line;f=a.ch)&&b.push(f.marker||f)}return b}function ld(a,b,c){return typeof a=="number"&&(a=Yb(Tc(a))),a.gutterMarker={text:b,style:c},Kb=!0,a}function md(a){typeof a=="number"&&(a=Yb(Tc(a))),a.gutterMarker=null,Kb=!0}function nd(a,b){var c=a,d=a;return typeof a=="number"?d=Yb(Tc(a)):c=w(a),c==null?null:b(d,c)?(Gb.push({from:c,to:c+1}),d):null}function od(a,b,c){return nd(a,function(a){if(a.className!=b||a.bgClassName!=c)return a.className=b,a.bgClassName=c,!0})}function pd(a,b){return nd(a,function(a,c){if(a.hidden!=b){a.hidden=b,Zb(a,b?0:1);var d=wb.from.line,e=wb.to.line;if(b&&(d==c||e==c)){var f=d==c?Rc({line:d,ch:0},d,0):wb.from,g=e==c?Rc({line:e,ch:0},e,0):wb.to;if(!g)return;Qc(f,g)}return Kb=!0}})}function qd(a){if(typeof a=="number"){if(!Wb(a))return null;var b=a;a=Yb(a);if(!a)return null}else{var b=w(a);if(b==null)return null}var c=a.gutterMarker;return{line:b,handle:a,text:a.text,markerText:c&&c.text,markerClass:c&&c.style,lineClass:a.className,bgClass:a.bgClassName}}function rd(a){return kb.innerHTML="
x
",kb.firstChild.firstChild.firstChild.nodeValue=a,kb.firstChild.firstChild.offsetWidth||10}function sd(a,b){function e(a){return kb.innerHTML="
"+c.getHTML(fd,a)+"
",kb.firstChild.firstChild.offsetWidth}if(b<=0)return 0;var c=Yb(a),d=c.text,f=0,g=0,h=d.length,i,j=Math.min(h,Math.ceil(b/Ed()));for(;;){var k=e(j);if(!(k<=b&&ji)return h;j=Math.floor(h*.8),k=e(j),kb-g?f:h;var l=Math.ceil((f+h)/2),m=e(l);m>b?(h=l,i=m):(f=l,g=m)}}function ud(a,b){if(b==0)return{top:0,left:0};var c="";if(f.lineWrapping){var d=a.text.indexOf(" ",b+6);c=bb(a.text.slice(b+1,d<0?a.text.length:d+(M?5:0)))}kb.innerHTML="
"+a.getHTML(fd,b)+''+bb(a.text.charAt(b)||" ")+""+c+"
";var e=document.getElementById("CodeMirror-temp-"+td),g=e.offsetTop,h=e.offsetLeft;if(M&&g==0&&h==0){var i=document.createElement("span");i.innerHTML="x",e.parentNode.insertBefore(i,e.nextSibling),g=i.offsetTop}return{top:g,left:h}}function vd(a,b){var c,d=Bd(),e=d*(y(tb,a.line)-(b?Mb:0));if(a.ch==0)c=0;else{var g=ud(Yb(a.line),a.ch);c=g.left,f.lineWrapping&&(e+=Math.max(0,g.top))}return{x:c,y:e,yBot:e+d}}function wd(a,b){function l(a){var b=ud(h,a);if(j){var d=Math.round(b.top/c);return Math.max(0,b.left+(d-k)*T.clientWidth)}return b.left}b<0&&(b=0);var c=Bd(),d=Ed(),e=Mb+Math.floor(b/c),g=x(tb,e);if(g>=tb.size)return{line:tb.size-1,ch:Yb(tb.size-1).text.length};var h=Yb(g),i=h.text,j=f.lineWrapping,k=j?e-y(tb,g):0;if(a<=0&&k==0)return{line:g,ch:0};var m=0,n=0,o=i.length,p,q=Math.min(o,Math.ceil((a+k*T.clientWidth*.9)/d));for(;;){var r=l(q);if(!(r<=a&&qp)return{line:g,ch:o};q=Math.floor(o*.8),r=l(q),ra-n?m:o};var s=Math.ceil((m+o)/2),t=l(s);t>a?(o=s,p=t):(m=s,n=t)}}function xd(a){var b=vd(a,!0),c=W(jb);return{x:c.left+b.x,y:c.top+b.y,yBot:c.top+b.yBot}}function Bd(){if(Ad==null){Ad="
";for(var a=0;a<49;++a)Ad+="x
";Ad+="x
"}var b=nb.clientHeight;return b==zd?yd:(zd=b,kb.innerHTML=Ad,yd=kb.firstChild.offsetHeight/50||1,kb.innerHTML="",yd)}function Ed(){return T.clientWidth==Dd?Cd:(Dd=T.clientWidth,Cd=rd("x"))}function Fd(){return jb.offsetTop}function Gd(){return jb.offsetLeft}function Hd(a,b){var c=W(T,!0),d,e;try{d=a.clientX,e=a.clientY}catch(a){return null}if(!b&&(d-c.left>T.clientWidth||e-c.top>T.clientHeight))return null;var f=W(jb,!0);return wd(d-f.left,e-f.top)}function Id(a){function f(){var a=fb(D.value).join("\n");a!=e&&Ud(uc)(a,"end"),A.style.position="relative",D.style.cssText=d,N&&(T.scrollTop=c),Jb=!1,Dc(!0),zc()}var b=Hd(a),c=T.scrollTop;if(!b||window.opera)return;(Z(wb.from,wb.to)||$(b,wb.from)||!$(b,wb.to))&&Ud(Sc)(b.line,b.ch);var d=D.style.cssText;A.style.position="absolute",D.style.cssText="position: fixed; width: 30px; height: 30px; top: "+(a.clientY-5)+"px; left: "+(a.clientX-5)+"px; z-index: 1000; background: white; "+"border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",Jb=!0;var e=D.value=xc();Ec(),Y(D);if(L){E(a);var g=I(window,"mouseup",function(){g(),setTimeout(f,20)},!0)}else setTimeout(f,50)}function Jd(){clearInterval(rb);var a=!0;lb.style.visibility="",rb=setInterval(function(){lb.style.visibility=(a=!a)?"":"hidden"},650)}function Ld(a){function p(a,b,c){if(!a.text)return;var d=a.styles,e=g?0:a.text.length-1,f;for(var i=g?0:d.length-2,j=g?d.length:-2;i!=j;i+=2*h){var k=d[i];if(d[i+1]!=null&&d[i+1]!=m){e+=h*k.length;continue}for(var l=g?0:k.length-1,p=g?k.length:-1;l!=p;l+=h,e+=h)if(e>=b&&e"==g)n.push(f);else{if(n.pop()!=q.charAt(0))return{pos:e,match:!1};if(!n.length)return{pos:e,match:!0}}}}}var b=wb.inverted?wb.from:wb.to,c=Yb(b.line),d=b.ch-1,e=d>=0&&Kd[c.text.charAt(d)]||Kd[c.text.charAt(++d)];if(!e)return;var f=e.charAt(0),g=e.charAt(1)==">",h=g?1:-1,i=c.styles;for(var j=d+1,k=0,l=i.length;ke;--d){if(d==0)return 0;var g=Yb(d-1);if(g.stateAfter)return d;var h=g.indentation(f.tabSize);if(c==null||b>h)c=d-1,b=h}return c}function Nd(a){var b=Md(a),c=b&&Yb(b-1).stateAfter;return c?c=m(sb,c):c=n(sb),tb.iter(b,a,function(a){a.highlight(sb,c,f.tabSize),a.stateAfter=m(sb,c)}),b=tb.size)continue;var d=Md(c),e=d&&Yb(d-1).stateAfter;e?e=m(sb,e):e=n(sb);var g=0,h=sb.compareStates,i=!1,j=d,k=!1;tb.iter(j,tb.size,function(b){var d=b.stateAfter;if(+(new Date)>a)return ub.push(j),Qd(f.workDelay),i&&Gb.push({from:c,to:j+1}),k=!0;var l=b.highlight(sb,e,f.tabSize);l&&(i=!0),b.stateAfter=m(sb,e);var n=null;if(h){var o=d&&h(d,e);o!=K&&(n=!!o)}n==null&&(l!==!1||!d?g=0:++g>3&&(!sb.indent||sb.indent(d,"")==sb.indent(e,""))&&(n=!0));if(n)return!0;++j});if(k)return;i&&Gb.push({from:c,to:j+1})}b&&f.onHighlightComplete&&f.onHighlightComplete(Xb)}function Qd(a){if(!ub.length)return;qb.set(a,Ud(Pd))}function Rd(){Eb=Fb=Hb=null,Gb=[],Ib=!1,Lb=[]}function Sd(){var a=!1,b;Ib&&(a=!Gc()),Gb.length?b=Jc(Gb,!0):(Ib&&Nc(),Kb&&Mc()),a&&Gc(),Ib&&(Fc(),Jd()),vb&&!Jb&&(Eb===!0||Eb!==!1&&Ib)&&Dc(Fb),Ib&&f.matchBrackets&&setTimeout(Ud(function(){Qb&&(Qb(),Qb=null),Z(wb.from,wb.to)&&Ld(!1)}),20);var c=Hb,d=Lb;Ib&&f.onCursorActivity&&f.onCursorActivity(Xb),c&&f.onChange&&Xb&&f.onChange(Xb,c);for(var e=0;eh&&a.y>b.offsetHeight&&(f=a.y-b.offsetHeight),g+b.offsetWidth>i&&(g=i-b.offsetWidth)}b.style.top=f+Fd()+"px",b.style.left=b.style.right="",e=="right"?(g=U.clientWidth-b.offsetWidth,b.style.right="0px"):(e=="left"?g=0:e=="middle"&&(g=(U.clientWidth-b.offsetWidth)/2),b.style.left=g+Gd()+"px"),c&&Hc(g,f,g+b.offsetWidth,f+b.offsetHeight)},lineCount:function(){return tb.size},clipPos:Uc,getCursor:function(a){return a==null&&(a=wb.inverted),_(a?wb.from:wb.to)},somethingSelected:function(){return!Z(wb.from,wb.to)},setCursor:Ud(function(a,b,c){b==null&&typeof a.line=="number"?Sc(a.line,a.ch,c):Sc(a,b,c)}),setSelection:Ud(function(a,b,c){(c?Pc:Qc)(Uc(a),Uc(b||a))}),getLine:function(a){if(Wb(a))return Yb(a).text},getLineHandle:function(a){if(Wb(a))return Yb(a)},setLine:Ud(function(a,b){Wb(a)&&tc(b,{line:a,ch:0},{line:a,ch:Yb(a).text.length})}),removeLine:Ud(function(a){Wb(a)&&tc("",{line:a,ch:0},Uc({line:a+1,ch:0}))}),replaceRange:Ud(tc),getRange:function(a,b){return wc(Uc(a),Uc(b))},triggerOnKeyDown:Ud(jc),execCommand:function(a){return h[a](Xb)},moveH:Ud(Wc),deleteH:Ud(Xc),moveV:Ud(Zc),toggleOverwrite:function(){Cb?(Cb=!1,lb.className=lb.className.replace(" CodeMirror-overwrite","")):(Cb=!0,lb.className+=" CodeMirror-overwrite")},posFromIndex:function(a){var b=0,c;return tb.iter(0,tb.size,function(d){var e=d.text.length+1;if(e>a)return c=a,!0;a-=e,++b}),Uc({line:b,ch:c})},indexFromPos:function(a){if(a.line<0||a.ch<0)return 0;var b=a.ch;return tb.iter(0,a.line,function(a){b+=a.text.length+1}),b},scrollTo:function(a,b){a!=null&&(T.scrollLeft=a),b!=null&&(T.scrollTop=b),Jc([])},operation:function(a){return Ud(a)()},compoundChange:function(a){return Vd(a)},refresh:function(){Jc(!0),T.scrollHeight>Ab&&(T.scrollTop=Ab)},getInputField:function(){return D},getWrapperElement:function(){return s},getScrollerElement:function(){return T},getGutterElement:function(){return ab}},hc=null,ic,yc=!1,Bc="",Yc=null;hd.prototype.clear=Ud(function(){var a=Infinity,b=-Infinity;for(var c=0,d=this.set.length;c",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},Td=0;for(var Wd in g)g.propertyIsEnumerable(Wd)&&!Xb.propertyIsEnumerable(Wd)&&(Xb[Wd]=g[Wd]);return Xb}function j(a){return typeof a=="string"?i[a]:a}function k(a,b,c,d){function e(b){b=j(b);var c=b[a];if(c!=null&&d(c))return!0;if(b.catchall)return d(b.catchall);var f=b.fallthrough;if(f==null)return!1;if(Object.prototype.toString.call(f)!="[object Array]")return e(f);for(var g=0,h=f.length;ga&&d.push(h.slice(a-f,Math.min(h.length,b-f)),c[e+1]),i>=a&&(g=1)):g==1&&(i>b?d.push(h.slice(0,b-f),c[e+1]):d.push(h,c[e+1])),f=i}}function t(a){this.lines=a,this.parent=null;for(var b=0,c=a.length,d=0;b=0&&d>=0;--c,--d)if(a.charAt(c)!=b.charAt(d))break;return d+1}function db(a,b){if(a.indexOf)return a.indexOf(b);for(var c=0,d=a.length;c2){c.dependencies=[];for(var d=2;d0&&b.ch=this.string.length},sol:function(){return this.pos==0},peek:function(){return this.string.charAt(this.pos)},next:function(){if(this.posb},eatSpace:function(){var a=this.pos;while(/[\s\u00a0]/.test(this.string.charAt(this.pos)))++this.pos;return this.pos>a},skipToEnd:function(){this.pos=this.string.length},skipTo:function(a){var b=this.string.indexOf(a,this.pos);if(b>-1)return this.pos=b,!0},backUp:function(a){this.pos-=a},column:function(){return U(this.string,this.start,this.tabSize)},indentation:function(){return U(this.string,null,this.tabSize)},match:function(a,b,c){if(typeof a!="string"){var e=this.string.slice(this.pos).match(a);return e&&b!==!1&&(this.pos+=e[0].length),e}function d(a){return c?a.toLowerCase():a}if(d(this.string).indexOf(d(a),this.pos)==this.pos)return b!==!1&&(this.pos+=a.length),!0},current:function(){return this.string.slice(this.start,this.pos)}},a.StringStream=o,p.prototype={attach:function(a){this.marker.set.push(a)},detach:function(a){var b=db(this.marker.set,a);b>-1&&this.marker.set.splice(b,1)},split:function(a,b){if(this.to<=a&&this.to!=null)return null;var c=this.fromthis.from&&(d=b&&(this.from=Math.max(d,this.from)+e),c&&(bthis.from||this.from==null)?this.to=null:this.to!=null&&this.to>b&&(this.to=d=this.to},sameSet:function(a){return this.marker==a.marker}},q.prototype={attach:function(a){this.line=a},detach:function(a){this.line==a&&(this.line=null)},split:function(a,b){if(athis.to},clipTo:function(a,b,c,d,e){(a||bthis.to)?(this.from=0,this.to=-1):this.from>b&&(this.from=this.to=Math.max(d,this.from)+e)},sameSet:function(a){return!1},find:function(){return!this.line||!this.line.parent?null:{line:w(this.line),ch:this.from}},clear:function(){if(this.line){var a=db(this.line.marked,this);a!=-1&&this.line.marked.splice(a,1),this.line=null}}},r.inheritMarks=function(a,b){var c=new r(a),d=b&&b.marked;if(d)for(var e=0;e5e3){e[f++]=this.text.slice(d.pos),e[f++]=null;break}}return e.length!=f&&(e.length=f,g=!0),f&&e[f-2]!=i&&(g=!0),g||(e.length<5&&this.text.length<10?null:!1)},getTokenAt:function(a,b,c){var d=this.text,e=new o(d);while(e.pos',g,"
"):c.push(g)}function k(a){return a?"cm-"+a.replace(/ +/g," cm-"):null}var c=[],d=!0,e=0,g=this.styles,h=this.text,i=this.marked,j=h.length;b!=null&&(j=Math.min(b,j));if(!h&&b==null)f(" ");else if(!i||!i.length)for(var l=0,m=0;mj&&(n=n.slice(0,j-m)),m+=p,f(n,k(o))}else{var q=0,l=0,r="",o,s=0,t=i[0].from||0,u=[],v=0;function w(){var a;while(vy?r.slice(0,y-q):r,A);if(z>=y){r=r.slice(y-q),q=y;break}q=z}r=g[l++],o=k(g[l++])}}}return c.join("")},cleanUp:function(){this.parent=null;if(this.marked)for(var a=0,b=this.marked.length;a50){while(f.lines.length>50){var h=f.lines.splice(f.lines.length-25,25),i=new t(h);f.height-=i.height,this.children.splice(d+1,0,i),i.parent=this}this.maybeSpill()}break}a-=g}},maybeSpill:function(){if(this.children.length<=10)return;var a=this;do{var b=a.children.splice(a.children.length-5,5),c=new u(b);if(!a.parent){var d=new u(a.children);d.parent=a,a.children=[d,c],a=d}else{a.size-=c.size,a.height-=c.height;var e=db(a.parent.children,a);a.parent.children.splice(e+1,0,c)}c.parent=a.parent}while(a.children.length>10);a.parent.maybeSpill()},iter:function(a,b,c){this.iterN(a,b-a,c)},iterN:function(a,b,c){for(var d=0,e=this.children.length;d400||!f||this.closed||f.start>a+c.length||f.start+f.added0;--j)f.old.unshift(c[j-1]);for(var j=i;j>0;--j)f.old.push(c[c.length-j]);h&&(f.start=a),f.added+=b-(c.length-h-i)}this.time=d},startCompound:function(){this.compound++||(this.closed=!0)},endCompound:function(){--this.compound||(this.closed=!0)}},a.e_stop=E,a.e_preventDefault=C,a.e_stopPropagation=D,a.connect=I,J.prototype={set:function(a,b){clearTimeout(this.id),this.id=setTimeout(b,a)}};var K=a.Pass={toString:function(){return"CodeMirror.Pass"}},L=/gecko\/\d{7}/i.test(navigator.userAgent),M=/MSIE \d/.test(navigator.userAgent),N=/MSIE [1-8]\b/.test(navigator.userAgent),O=M&&document.documentMode==5,P=/WebKit\//.test(navigator.userAgent),Q=/Chrome\//.test(navigator.userAgent),R=/KHTML\//.test(navigator.userAgent),S=function(){if(N)return!1;var a=document.createElement("div");return"draggable"in a||"dragDrop"in a}(),T="\n";(function(){var a=document.createElement("textarea");a.className="noeditor";a.value="foo\nbar",a.value.indexOf("\r")>-1&&(T="\r\n")})(),document.documentElement.getBoundingClientRect!=null&&(W=function(a,b){try{var c=a.getBoundingClientRect();c={top:c.top,left:c.left}}catch(d){c={top:0,left:0}}if(!b)if(window.pageYOffset==null){var e=document.documentElement||document.body.parentNode;e.scrollTop==null&&(e=document.body),c.top+=e.scrollTop,c.left+=e.scrollLeft}else c.top+=window.pageYOffset,c.left+=window.pageXOffset;return c});var ab=document.createElement("pre");bb("a")=="\na"?bb=function(a){return ab.textContent=a,ab.innerHTML.slice(1)}:bb(" ")!=" "&&(bb=function(a){return ab.innerHTML="",ab.appendChild(document.createTextNode(a)),ab.innerHTML}),a.htmlEscape=bb;var fb="\n\nb".split(/\n/).length!=3?function(a){var b=0,c,d=[];while((c=a.indexOf("\n",b))>-1)d.push(a.slice(b,a.charAt(c-1)=="\r"?c-1:c)),b=c+1;return d.push(a.slice(b)),d}:function(a){return a.split(/\r?\n/)};a.splitLines=fb;var gb=window.getSelection?function(a){try{return a.selectionStart!=a.selectionEnd}catch(b){return!1}}:function(a){try{var b=a.ownerDocument.selection.createRange()}catch(c){}return!b||b.parentElement()!=a?!1:b.compareEndPoints("StartToEnd",b)!=0};a.defineMode("null",function(){return{token:function(a){a.skipToEnd()}}}),a.defineMIME("text/plain","null");var hb={3:"Enter",8:"Backspace",9:"Tab",13:"Enter",16:"Shift",17:"Ctrl",18:"Alt",19:"Pause",20:"CapsLock",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"PrintScrn",45:"Insert",46:"Delete",59:";",91:"Mod",92:"Mod",93:"Mod",127:"Delete",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",63276:"PageUp",63277:"PageDown",63275:"End",63273:"Home",63234:"Left",63232:"Up",63235:"Right",63233:"Down",63302:"Insert",63272:"Delete"};return a.keyNames=hb,function(){for(var a=0;a<10;a++)hb[a+48]=String(a);for(var a=65;a<=90;a++)hb[a]=String.fromCharCode(a);for(var a=1;a<=12;a++)hb[a+111]=hb[a+63235]="F"+a}(),a}();CodeMirror.defineMode("clike",function(a,b){function k(a,b){var c=a.next();if(g[c]){var h=g[c](a,b);if(h!==!1)return h}if(c=='"'||c=="'")return b.tokenize=l(c),b.tokenize(a,b);if(/[\[\]{}\(\),;\:\.]/.test(c))return j=c,null;if(/\d/.test(c))return a.eatWhile(/[\w\.]/),"number";if(c=="/"){if(a.eat("*"))return b.tokenize=m,m(a,b);if(a.eat("/"))return a.skipToEnd(),"comment"}if(i.test(c))return a.eatWhile(i),"operator";a.eatWhile(/[\w\$_]/);var k=a.current();return d.propertyIsEnumerable(k)?(e.propertyIsEnumerable(k)&&(j="newstatement"),"keyword"):f.propertyIsEnumerable(k)?"atom":"word"}function l(a){return function(b,c){var d=!1,e,f=!1;while((e=b.next())!=null){if(e==a&&!d){f=!0;break}d=!d&&e=="\\"}if(f||!d&&!h)c.tokenize=null;return"string"}}function m(a,b){var c=!1,d;while(d=a.next()){if(d=="/"&&c){b.tokenize=null;break}c=d=="*"}return"comment"}function n(a,b,c,d,e){this.indented=a,this.column=b,this.type=c,this.align=d,this.prev=e}function o(a,b,c){return a.context=new n(a.indented,b,c,null,a.context)}function p(a){var b=a.context.type;if(b==")"||b=="]"||b=="}")a.indented=a.context.indented;return a.context=a.context.prev}var c=a.indentUnit,d=b.keywords||{},e=b.blockKeywords||{},f=b.atoms||{},g=b.hooks||{},h=b.multiLineStrings,i=/[+\-*&%=<>!?|\/]/,j;return{startState:function(a){return{tokenize:null,context:new n((a||0)-c,0,"top",!1),indented:0,startOfLine:!0}},token:function(a,b){var c=b.context;a.sol()&&(c.align==null&&(c.align=!1),b.indented=a.indentation(),b.startOfLine=!0);if(a.eatSpace())return null;j=null;var d=(b.tokenize||k)(a,b);if(d=="comment"||d=="meta")return d;c.align==null&&(c.align=!0);if(j!=";"&&j!=":"||c.type!="statement")if(j=="{")o(b,a.column(),"}");else if(j=="[")o(b,a.column(),"]");else if(j=="(")o(b,a.column(),")");else if(j=="}"){while(c.type=="statement")c=p(b);c.type=="}"&&(c=p(b));while(c.type=="statement")c=p(b)}else j==c.type?p(b):(c.type=="}"||c.type=="top"||c.type=="statement"&&j=="newstatement")&&o(b,a.column(),"statement");else p(b);return b.startOfLine=!1,d},indent:function(a,b){if(a.tokenize!=k&&a.tokenize!=null)return 0;var d=a.context,e=b&&b.charAt(0);d.type=="statement"&&e=="}"&&(d=d.prev);var f=e==d.type;return d.type=="statement"?d.indented+(e=="{"?0:c):d.align?d.column+(f?0:1):d.indented+(f?0:c)},electricChars:"{}"}}),function(){function a(a){var b={},c=a.split(" ");for(var d=0;d*\/]/.test(c)?d(null,"select-op"):/[;{}:\[\]]/.test(c)?d(null,c):(a.eatWhile(/[\w\\\-]/),d("variable","variable")):d(null,"compare");d(null,"compare")}function f(a,b){var c=!1,f;while((f=a.next())!=null){if(c&&f=="/"){b.tokenize=e;break}c=f=="*"}return d("comment","comment")}function g(a,b){var c=0,f;while((f=a.next())!=null){if(c>=2&&f==">"){b.tokenize=e;break}c=f=="-"?c+1:0}return d("comment","comment")}function h(a){return function(b,c){var f=!1,g;while((g=b.next())!=null){if(g==a&&!f)break;f=!f&&g=="\\"}return f||(c.tokenize=e),d("string","string")}}var b=a.indentUnit,c;return{startState:function(a){return{tokenize:e,baseIndent:a||0,stack:[]}},token:function(a,b){if(a.eatSpace())return null;var d=b.tokenize(a,b),e=b.stack[b.stack.length-1];if(c=="hash"&&e!="rule")d="string-2";else if(d=="variable")if(e=="rule")d="number";else if(!e||e=="@media{")d="tag";return e=="rule"&&/^[\{\};]$/.test(c)&&b.stack.pop(),c=="{"?e=="@media"?b.stack[b.stack.length-1]="@media{":b.stack.push("{"):c=="}"?b.stack.pop():c=="@media"?b.stack.push("@media"):e=="{"&&c!="comment"&&b.stack.push("rule"),d},indent:function(a,c){var d=a.stack.length;return/^\}/.test(c)&&(d-=a.stack[a.stack.length-1]=="rule"?2:1),a.baseIndent+d*b},electricChars:"}"}}),CodeMirror.defineMIME("text/css","css"),CodeMirror.defineMode("htmlembedded",function(a,b){function g(a,b){return a.match(c,!1)?(b.token=h,e.token(a,b.scriptState)):f.token(a,b.htmlState)}function h(a,b){return a.match(d,!1)?(b.token=g,f.token(a,b.htmlState)):e.token(a,b.scriptState)}var c=b.scriptStartRegex||/^<%/i,d=b.scriptEndRegex||/^%>/i,e,f;return{startState:function(){return e=e||CodeMirror.getMode(a,b.scriptingModeSpec),f=f||CodeMirror.getMode(a,"htmlmixed"),{token:b.startOpen?h:g,htmlState:f.startState(),scriptState:e.startState()}},token:function(a,b){return b.token(a,b)},indent:function(a,b){return a.token==g?f.indent(a.htmlState,b):e.indent(a.scriptState,b)},copyState:function(a){return{token:a.token,htmlState:CodeMirror.copyState(f,a.htmlState),scriptState:CodeMirror.copyState(e,a.scriptState)}},electricChars:"/{}:"}},"htmlmixed"),CodeMirror.defineMIME("application/x-ejs",{name:"htmlembedded",scriptingModeSpec:"javascript"}),CodeMirror.defineMIME("application/x-aspx",{name:"htmlembedded",scriptingModeSpec:"text/x-csharp"}),CodeMirror.defineMIME("application/x-jsp",{name:"htmlembedded",scriptingModeSpec:"text/x-java"}),CodeMirror.defineMode("htmlmixed",function(a,b){function f(a,b){var f=c.token(a,b.htmlState);return f=="tag"&&a.current()==">"&&b.htmlState.context&&(/^script$/i.test(b.htmlState.context.tagName)?(b.token=h,b.localState=d.startState(c.indent(b.htmlState,"")),b.mode="javascript"):/^style$/i.test(b.htmlState.context.tagName)&&(b.token=i,b.localState=e.startState(c.indent(b.htmlState,"")),b.mode="css")),f}function g(a,b,c){var d=a.current(),e=d.search(b);return e>-1&&a.backUp(d.length-e),c}function h(a,b){return a.match(/^<\/\s*script\s*>/i,!1)?(b.token=f,b.localState=null,b.mode="html",f(a,b)):g(a,/<\/\s*script\s*>/,d.token(a,b.localState))}function i(a,b){return a.match(/^<\/\s*style\s*>/i,!1)?(b.token=f,b.localState=null,b.mode="html",f(a,b)):g(a,/<\/\s*style\s*>/,e.token(a,b.localState))}var c=CodeMirror.getMode(a,{name:"xml",htmlMode:!0}),d=CodeMirror.getMode(a,"javascript"),e=CodeMirror.getMode(a,"css");return{startState:function(){var a=c.startState();return{token:f,localState:null,mode:"html",htmlState:a}},copyState:function(a){if(a.localState)var b=CodeMirror.copyState(a.token==i?e:d,a.localState);return{token:a.token,localState:b,mode:a.mode,htmlState:CodeMirror.copyState(c,a.htmlState)}},token:function(a,b){return b.token(a,b)},indent:function(a,b){return a.token==f||/^\s*<\//.test(b)?c.indent(a.htmlState,b):a.token==h?d.indent(a.localState,b):e.indent(a.localState,b)},compareStates:function(a,b){return a.mode!=b.mode?!1:a.localState?CodeMirror.Pass:c.compareStates(a.htmlState,b.htmlState)},electricChars:"/{}:"}},"xml","javascript","css"),CodeMirror.defineMIME("text/html","htmlmixed"),CodeMirror.defineMode("javascript",function(a,b){function g(a,b,c){return b.tokenize=c,c(a,b)}function h(a,b){var c=!1,d;while((d=a.next())!=null){if(d==b&&!c)return!1;c=!c&&d=="\\"}return c}function k(a,b,c){return i=a,j=c,b}function l(a,b){var c=a.next();if(c=='"'||c=="'")return g(a,b,m(c));if(/[\[\]{}\(\),;\:\.]/.test(c))return k(c);if(c=="0"&&a.eat(/x/i))return a.eatWhile(/[\da-f]/i),k("number","number");if(/\d/.test(c))return a.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/),k("number","number");if(c=="/")return a.eat("*")?g(a,b,n):a.eat("/")?(a.skipToEnd(),k("comment","comment")):b.reAllowed?(h(a,"/"),a.eatWhile(/[gimy]/),k("regexp","string-2")):(a.eatWhile(f),k("operator",null,a.current()));if(c=="#")return a.skipToEnd(),k("error","error");if(f.test(c))return a.eatWhile(f),k("operator",null,a.current());a.eatWhile(/[\w\$_]/);var d=a.current(),i=e.propertyIsEnumerable(d)&&e[d];return i&&b.kwAllowed?k(i.type,i.style,d):k("variable","variable",d)}function m(a){return function(b,c){return h(b,a)||(c.tokenize=l),k("string","string")}}function n(a,b){var c=!1,d;while(d=a.next()){if(d=="/"&&c){b.tokenize=l;break}c=d=="*"}return k("comment","comment")}function p(a,b,c,d,e,f){this.indented=a,this.column=b,this.type=c,this.prev=e,this.info=f,d!=null&&(this.align=d)}function q(a,b){for(var c=a.localVars;c;c=c.next)if(c.name==b)return!0}function r(a,b,c,e,f){var g=a.cc;s.state=a,s.stream=f,s.marked=null,s.cc=g,a.lexical.hasOwnProperty("align")||(a.lexical.align=!0);for(;;){var h=g.length?g.pop():d?D:C;if(h(c,e)){while(g.length&&g[g.length-1].lex)g.pop()();return s.marked?s.marked:c=="variable"&&q(a,e)?"variable-2":b}}}function t(){for(var a=arguments.length-1;a>=0;a--)s.cc.push(arguments[a])}function u(){return t.apply(null,arguments),!0}function v(a){var b=s.state;if(b.context){s.marked="def";for(var c=b.localVars;c;c=c.next)if(c.name==a)return;b.localVars={name:a,next:b.localVars}}}function x(){s.state.context||(s.state.localVars=w),s.state.context={prev:s.state.context,vars:s.state.localVars}}function y(){s.state.localVars=s.state.context.vars,s.state.context=s.state.context.prev}function z(a,b){var c=function(){var c=s.state;c.lexical=new p(c.indented,s.stream.column(),a,null,c.lexical,b)};return c.lex=!0,c}function A(){var a=s.state;a.lexical.prev&&(a.lexical.type==")"&&(a.indented=a.lexical.indented),a.lexical=a.lexical.prev)}function B(a){return function(c){return c==a?u():a==";"?t():u(arguments.callee)}}function C(a){return a=="var"?u(z("vardef"),L,B(";"),A):a=="keyword a"?u(z("form"),D,C,A):a=="keyword b"?u(z("form"),C,A):a=="{"?u(z("}"),K,A):a==";"?u():a=="function"?u(R):a=="for"?u(z("form"),B("("),z(")"),N,B(")"),A,C,A):a=="variable"?u(z("stat"),G):a=="switch"?u(z("form"),D,z("}","switch"),B("{"),K,A,A):a=="case"?u(D,B(":")):a=="default"?u(B(":")):a=="catch"?u(z("form"),x,B("("),S,B(")"),C,A,y):t(z("stat"),D,B(";"),A)}function D(a){return o.hasOwnProperty(a)?u(F):a=="function"?u(R):a=="keyword c"?u(E):a=="("?u(z(")"),E,B(")"),A,F):a=="operator"?u(D):a=="["?u(z("]"),J(D,"]"),A,F):a=="{"?u(z("}"),J(I,"}"),A,F):u()}function E(a){return a.match(/[;\}\)\],]/)?t():t(D)}function F(a,b){if(a=="operator"&&/\+\+|--/.test(b))return u(F);if(a=="operator")return u(D);if(a==";")return;if(a=="(")return u(z(")"),J(D,")"),A,F);if(a==".")return u(H,F);if(a=="[")return u(z("]"),D,B("]"),A,F)}function G(a){return a==":"?u(A,C):t(F,B(";"),A)}function H(a){if(a=="variable")return s.marked="property",u()}function I(a){a=="variable"&&(s.marked="property");if(o.hasOwnProperty(a))return u(B(":"),D)}function J(a,b){function c(d){return d==","?u(a,c):d==b?u():u(B(b))}return function(e){return e==b?u():t(a,c)}}function K(a){return a=="}"?u():t(C,K)}function L(a,b){return a=="variable"?(v(b),u(M)):u()}function M(a,b){if(b=="=")return u(D,M);if(a==",")return u(L)}function N(a){return a=="var"?u(L,P):a==";"?t(P):a=="variable"?u(O):t(P)}function O(a,b){return b=="in"?u(D):u(F,P)}function P(a,b){return a==";"?u(Q):b=="in"?u(D):u(D,B(";"),Q)}function Q(a){a!=")"&&u(D)}function R(a,b){if(a=="variable")return v(b),u(R);if(a=="(")return u(z(")"),x,J(S,")"),A,C,y)}function S(a,b){if(a=="variable")return v(b),u()}var c=a.indentUnit,d=b.json,e=function(){function a(a){return{type:a,style:"keyword"}}var b=a("keyword a"),c=a("keyword b"),d=a("keyword c"),e=a("operator"),f={type:"atom",style:"atom"};return{"if":b,"while":b,"with":b,"else":c,"do":c,"try":c,"finally":c,"return":d,"break":d,"continue":d,"new":d,"delete":d,"throw":d,"var":a("var"),"const":a("var"),let:a("var"),"function":a("function"),"catch":a("catch"),"for":a("for"),"switch":a("switch"),"case":a("case"),"default":a("default"),"in":e,"typeof":e,"instanceof":e,"true":f,"false":f,"null":f,"undefined":f,NaN:f,Infinity:f}}(),f=/[+\-*&%=<>!?|]/,i,j,o={atom:!0,number:!0,variable:!0,string:!0,regexp:!0},s={state:null,column:null,marked:null,cc:null},w={name:"this",next:{name:"arguments"}};return A.lex=!0,{startState:function(a){return{tokenize:l,reAllowed:!0,kwAllowed:!0,cc:[],lexical:new p((a||0)-c,0,"block",!1),localVars:b.localVars,context:b.localVars&&{vars:b.localVars},indented:0}},token:function(a,b){a.sol()&&(b.lexical.hasOwnProperty("align")||(b.lexical.align=!1),b.indented=a.indentation());if(a.eatSpace())return null;var c=b.tokenize(a,b);return i=="comment"?c:(b.reAllowed=i=="operator"||i=="keyword c"||!!i.match(/^[\[{}\(,;:]$/),b.kwAllowed=i!=".",r(b,c,i,j,a))},indent:function(a,b){if(a.tokenize!=l)return 0;var d=b&&b.charAt(0),e=a.lexical,f=e.type,g=d==f;return f=="vardef"?e.indented+4:f=="form"&&d=="{"?e.indented:f=="stat"||f=="form"?e.indented+c:e.info=="switch"&&!g?e.indented+(/^(?:case|default)\b/.test(b)?c:2*c):e.align?e.column+(g?0:1):e.indented+(g?0:c)},electricChars:":{}"}}),CodeMirror.defineMIME("text/javascript","javascript"),CodeMirror.defineMIME("application/json",{name:"javascript",json:!0}),CodeMirror.defineMode("markdown",function(a,b){function s(a,b,c){return b.f=b.inline=c,c(a,b)}function t(a,b,c){return b.f=b.block=c,c(a,b)}function u(a){return a.em=!1,a.strong=!1,null}function v(a,b){var c;if(b.indentationDiff>=4)return b.indentation-=b.indentationDiff,a.skipToEnd(),e;if(a.eatSpace())return null;if(a.peek()==="#"||a.match(q))b.header=!0;else if(a.eat(">"))b.indentation++,b.quote=!0;else{if(a.peek()==="[")return s(a,b,C);if(a.match(n,!0))return h;if(c=a.match(o,!0)||a.match(p,!0))return b.indentation+=c[0].length,g}return s(a,b,b.inline)}function w(a,b){var d=c.token(a,b.htmlState);return d==="tag"&&b.htmlState.type!=="openTag"&&!b.htmlState.context&&(b.f=z,b.block=v),d}function x(a){var b=[];return a.strong?b.push(a.em?m:l):a.em&&b.push(k),a.header&&b.push(d),a.quote&&b.push(f),b.length?b.join(" "):null}function y(a,b){return a.match(r,!0)?x(b):undefined}function z(a,b){var c=b.text(a,b);if(typeof c!="undefined")return c;var d=a.next();if(d==="\\")return a.next(),x(b);if(d==="`")return s(a,b,F(e,"`"));if(d==="[")return s(a,b,A);if(d==="<"&&a.match(/^\w/,!1))return a.backUp(1),t(a,b,w);var f=x(b);return d==="*"||d==="_"?a.eat(d)?(b.strong=!b.strong)?x(b):f:(b.em=!b.em)?x(b):f:x(b)}function A(a,b){while(!a.eol()){var c=a.next();c==="\\"&&a.next();if(c==="]")return b.inline=b.f=B,i}return i}function B(a,b){a.eatSpace();var c=a.next();return c==="("||c==="["?s(a,b,F(j,c==="("?")":"]")):"error"}function C(a,b){return a.match(/^[^\]]*\]:/,!0)?(b.f=D,i):s(a,b,z)}function D(a,b){return a.eatSpace(),a.match(/^[^\s]+/,!0),b.f=b.inline=z,j}function E(a){return E[a]||(E[a]=new RegExp("^(?:[^\\\\\\"+a+"]|\\\\.)*(?:\\"+a+"|$)")),E[a]}function F(a,b,c){return c=c||z,function(d,e){return d.match(E(b)),e.inline=e.f=c,a}}var c=CodeMirror.getMode(a,{name:"xml",htmlMode:!0}),d="header",e="comment",f="quote",g="string",h="hr",i="link",j="string",k="em",l="strong",m="emstrong",n=/^([*\-=_])(?:\s*\1){2,}\s*$/,o=/^[*\-+]\s+/,p=/^[0-9]+\.\s+/,q=/^(?:\={3,}|-{3,})$/,r=/^[^\[*_\\<>`]+/;return{startState:function(){return{f:v,block:v,htmlState:c.startState(),indentation:0,inline:z,text:y,em:!1,strong:!1,header:!1,quote:!1}},copyState:function(a){return{f:a.f,block:a.block,htmlState:CodeMirror.copyState(c,a.htmlState),indentation:a.indentation,inline:a.inline,text:a.text,em:a.em,strong:a.strong,header:a.header,quote:a.quote}},token:function(a,b){if(a.sol()){if(a.match(/^\s*$/,!0))return u(b);b.header=!1,b.quote=!1,b.f=b.block;var c=a.match(/^\s*/,!0)[0].replace(/\t/g," ").length;b.indentationDiff=c-b.indentation,b.indentation=c;if(c>0)return null}return b.f(a,b)},blankLine:u,getType:x}},"xml"),CodeMirror.defineMIME("text/x-markdown","markdown"),function(){function a(a){var b={},c=a.split(" ");for(var d=0;d",!1))a.next();return"comment"},"/":function(a,b){if(a.eat("/")){while(!a.eol()&&!a.match("?>",!1))a.next();return"comment"}return!1}}};CodeMirror.defineMode("php",function(a,b){function h(a,b){var c=b.mode=="php";a.sol()&&b.pending!='"'&&(b.pending=null);if(b.curMode==d){if(a.match(/^<\?\w*/))return b.curMode=g,b.curState=b.php,b.curClose="?>",b.mode="php","meta";if(b.pending=='"'){while(!a.eol()&&a.next()!='"');var i="string"}else if(b.pending&&a.pos/.test(j)?b.pending='"':b.pending={end:a.pos,style:i},a.backUp(j.length-k)):i=="tag"&&a.current()==">"&&b.curState.context&&(/^script$/i.test(b.curState.context.tagName)?(b.curMode=e,b.curState=e.startState(d.indent(b.curState,"")),b.curClose=/^<\/\s*script\s*>/i,b.mode="javascript"):/^style$/i.test(b.curState.context.tagName)&&(b.curMode=f,b.curState=f.startState(d.indent(b.curState,"")),b.curClose=/^<\/\s*style\s*>/i,b.mode="css")),i}return(!c||b.php.tokenize==null)&&a.match(b.curClose,c)?(b.curMode=d,b.curState=b.html,b.curClose=null,b.mode="html",c?"meta":h(a,b)):b.curMode.token(a,b.curState)}var d=CodeMirror.getMode(a,{name:"xml",htmlMode:!0}),e=CodeMirror.getMode(a,"javascript"),f=CodeMirror.getMode(a,"css"),g=CodeMirror.getMode(a,c);return{startState:function(){var a=d.startState();return{html:a,php:g.startState(),curMode:b.startOpen?g:d,curState:b.startOpen?g.startState():a,curClose:b.startOpen?/^\?>/:null,mode:b.startOpen?"php":"html",pending:null}},copyState:function(a){var b=a.html,c=CodeMirror.copyState(d,b),e=a.php,f=CodeMirror.copyState(g,e),h;return a.curState==b?h=c:a.curState==e?h=f:h=CodeMirror.copyState(a.curMode,a.curState),{html:c,php:f,curMode:a.curMode,curState:h,curClose:a.curClose,mode:a.mode,pending:a.pending}},token:h,indent:function(a,b){return a.curMode!=g&&/^\s*<\//.test(b)||a.curMode==g&&/^\?>/.test(b)?d.indent(a.html,b):a.curMode.indent(a.curState,b)},electricChars:"/{}:"}},"xml","clike","javascript","css"),CodeMirror.defineMIME("application/x-httpd-php","php"),CodeMirror.defineMIME("application/x-httpd-php-open",{name:"php",startOpen:!0}),CodeMirror.defineMIME("text/x-php",c)}(),CodeMirror.defineMode("xml",function(a,b){function h(a,b){function c(c){return b.tokenize=c,c(a,b)}var d=a.next();if(d=="<"){if(a.eat("!"))return a.eat("[")?a.match("CDATA[")?c(k("atom","]]>")):null:a.match("--")?c(k("comment","-->")):a.match("DOCTYPE",!0,!0)?(a.eatWhile(/[\w\._\-]/),c(l(1))):null;if(a.eat("?"))return a.eatWhile(/[\w\._\-]/),b.tokenize=k("meta","?>"),"meta";g=a.eat("/")?"closeTag":"openTag",a.eatSpace(),f="";var e;while(e=a.eat(/[^\s\u00a0=<>\"\'\/?]/))f+=e;return b.tokenize=i,"tag"}if(d=="&"){var h;return a.eat("#")?a.eat("x")?h=a.eatWhile(/[a-fA-F\d]/)&&a.eat(";"):h=a.eatWhile(/[\d]/)&&a.eat(";"):h=a.eatWhile(/[\w\.\-:]/)&&a.eat(";"),h?"atom":"error"}return a.eatWhile(/[^&<]/),null}function i(a,b){var c=a.next();return c==">"||c=="/"&&a.eat(">")?(b.tokenize=h,g=c==">"?"endTag":"selfcloseTag","tag"):c=="="?(g="equals",null):/[\'\"]/.test(c)?(b.tokenize=j(c),b.tokenize(a,b)):(a.eatWhile(/[^\s\u00a0=<>\"\'\/?]/),"word")}function j(a){return function(b,c){while(!b.eol())if(b.next()==a){c.tokenize=i;break}return"string"}}function k(a,b){return function(c,d){while(!c.eol()){if(c.match(b)){d.tokenize=h;break}c.next()}return a}}function l(a){return function(b,c){var d;while((d=b.next())!=null){if(d=="<")return c.tokenize=l(a+1),c.tokenize(b,c);if(d==">"){if(a==1){c.tokenize=h;break}return c.tokenize=l(a-1),c.tokenize(b,c)}}return"meta"}}function o(){for(var a=arguments.length-1;a>=0;a--)m.cc.push(arguments[a])}function p(){return o.apply(null,arguments),!0}function q(a,b){var c=d.doNotIndent.hasOwnProperty(a)||m.context&&m.context.noIndent;m.context={prev:m.context,tagName:a,indent:m.indented,startOfLine:b,noIndent:c}}function r(){m.context&&(m.context=m.context.prev)}function s(a){if(a=="openTag")return m.tagName=f,p(w,t(m.startOfLine));if(a=="closeTag"){var b=!1;return m.context?m.context.tagName!=f&&(d.implicitlyClosed.hasOwnProperty(m.context.tagName.toLowerCase())&&r(),b=!m.context||m.context.tagName!=f):b=!0,b&&(n="error"),p(u(b))}return p()}function t(a){return function(b){return b=="selfcloseTag"||b=="endTag"&&d.autoSelfClosers.hasOwnProperty(m.tagName.toLowerCase())?(v(m.tagName.toLowerCase()),p()):b=="endTag"?(v(m.tagName.toLowerCase()),q(m.tagName,a),p()):p()}}function u(a){return function(b){return a&&(n="error"),b=="endTag"?(r(),p()):(n="error",p(arguments.callee))}}function v(a){var b;for(;;){if(!m.context)return;b=m.context.tagName.toLowerCase();if(!d.contextGrabbers.hasOwnProperty(b)||!d.contextGrabbers[b].hasOwnProperty(a))return;r()}}function w(a){return a=="word"?(n="attribute",p(x,w)):a=="endTag"||a=="selfcloseTag"?o():(n="error",p(w))}function x(a){return a=="equals"?p(y,w):(d.allowMissing||(n="error"),a=="endTag"||a=="selfcloseTag"?o():p())}function y(a){return a=="string"?p(z):a=="word"&&d.allowUnquoted?(n="string",p()):(n="error",a=="endTag"||a=="selfCloseTag"?o():p())}function z(a){return a=="string"?p(z):o()}var c=a.indentUnit,d=b.htmlMode?{autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!1}:{autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1},e=b.alignCDATA,f,g,m,n;return{startState:function(){return{tokenize:h,cc:[],indented:0,startOfLine:!0,tagName:null,context:null}},token:function(a,b){a.sol()&&(b.startOfLine=!0,b.indented=a.indentation());if(a.eatSpace())return null;n=g=f=null;var c=b.tokenize(a,b);b.type=g;if((c||g)&&c!="comment"){m=b;for(;;){var d=b.cc.pop()||s;if(d(g||c))break}}return b.startOfLine=!1,n||c},indent:function(a,b,d){var f=a.context;if(a.tokenize!=i&&a.tokenize!=h||f&&f.noIndent)return d?d.match(/^(\s*)/)[0].length:0;if(e&&/0);f=c(a,{line:d.line,ch:f.start});if(f.className!="variable")return;f.className="function"}if(!h)var h=[];h.push(f)}return{list:j(e,h,b),from:{line:d.line,ch:e.start},to:{line:d.line,ch:e.end}}}function d(a,b){var c=a.getTokenAt(b);return b.ch==c.start+1&&c.string.charAt(0)=="."?(c.end=c.start,c.string=".",c.className="property"):/^\.[\w$_]*$/.test(c.string)&&(c.className="property",c.start++,c.string=c.string.replace(/\./,"")),c}function j(c,d,h){function k(a){a.indexOf(j)==0&&!b(i,a)&&i.push(a)}function l(b){typeof b=="string"?a(e,k):b instanceof Array?a(f,k):b instanceof Function&&a(g,k);for(var c in b)k(c)}var i=[],j=c.string;if(d){var m=d.pop(),n;m.className=="variable"?n=window[m.string]:m.className=="string"?n="":m.className=="atom"?n=1:m.className=="function"&&(window.jQuery==null||m.string!="$"&&m.string!="jQuery"||typeof window.jQuery!="function"?window._!=null&&m.string=="_"&&typeof window._=="function"&&(n=window._()):n=window.jQuery());while(n!=null&&d.length)n=n[d.pop().string];n!=null&&l(n)}else{for(var o=c.state.localVars;o;o=o.next)k(o.name);l(window),a(h,k)}return i}CodeMirror.javascriptHint=function(a){return c(a,h,function(a,b){return a.getTokenAt(b)})},CodeMirror.coffeescriptHint=function(a){return c(a,i,d)};var e="charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight toUpperCase toLowerCase split concat match replace search".split(" "),f="length concat join splice push pop shift unshift slice reverse sort indexOf lastIndexOf every some filter forEach map reduce reduceRight ".split(" "),g="prototype apply call bind".split(" "),h="break case catch continue debugger default delete do else false finally for function if in instanceof new null return switch throw true try typeof var void while with".split(" "),i="and break catch class continue delete do else extends false finally for if in instanceof isnt new no not null of off on or return switch then throw true try typeof until void while with yes".split(" ")}(),CodeMirror.tagRangeFinder=function(a,b){var c="A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",d=c+"-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",e=new RegExp("^["+c+"]["+d+"]*"),f=a.getLine(b),g=!1,h=null,i=0;while(!g){i=f.indexOf("<",i);if(-1==i)return;if(i+1",i+1);if(-1==j){var k=b+1,l=!1,m=a.lineCount();while(k");if(-1!=o){l=!0;var p=n.lastIndexOf("/",o);if(-1!=p&&p/))return k+1}}k++}g=!0}else{var r=f.lastIndexOf("/",j);if(-1==r)g=!0;else{var q=f.substr(r,j-r+1);q.match(/\/\s*\>/)||(g=!0)}}if(g){var s=f.substr(i+1);h=s.match(e),h?(h=h[0],-1!=f.indexOf("",i)&&(g=!1)):g=!1}g||i++}if(g){var t="(\\<\\/"+h+"\\>)|(\\<"+h+"\\>)|(\\<"+h+"\\s)|(\\<"+h+"$)",u=new RegExp(t,"g"),v="",w=1,k=b+1,m=a.lineCount();while(kd)return;var e=a.getTokenAt({line:b,ch:d}).className,f=1,g=a.lineCount(),h;a:for(var i=b+1;i▼%N%'),function(f,g){f.operation(function(){var h=d(f,g);if(h)c.splice(h.pos,1),e(f,h.region);else{var i=a(f,g);if(i==null)return;var j=[];for(var k=g+1;k",d}CodeMirror.defineExtension("openDialog",function(b,c){function g(){if(e)return;e=!0,d.parentNode.removeChild(d)}var d=a(this,b),e=!1,f=this,h=d.getElementsByTagName("input")[0];return h&&(CodeMirror.connect(h,"keydown",function(a){if(a.keyCode==13||a.keyCode==27)CodeMirror.e_stop(a),g(),f.focus(),a.keyCode==13&&c(h.value)}),h.focus(),CodeMirror.connect(h,"blur",g)),g}),CodeMirror.defineExtension("openConfirm",function(b,c){function i(){if(f)return;f=!0,d.parentNode.removeChild(d),g.focus()}var d=a(this,b),e=d.getElementsByTagName("button"),f=!1,g=this,h=1;e[0].focus();for(var j=0;j=g&&(h=f.lastIndexOf(b,d.ch-g))!=-1:(h=f.indexOf(b,d.ch))!=-1)return{from:{line:d.line,ch:h},to:{line:d.line,ch:h+g}}}:this.matches=function(b,c){var d=c.line,g=b?f.length-1:0,h=f[g],i=e(a.getLine(d)),j=b?i.indexOf(h)+h.length:i.lastIndexOf(h);if(b?j>=c.ch||j!=h.length:j<=c.ch||j!=i.length-h.length)return;for(;;){if(b?!d:d==a.lineCount()-1)return;i=e(a.getLine(d+=b?-1:1)),h=f[b?--g:++g];if(g>0&&g-1&&h>-1&&h>g&&(f=f.substr(0,g)+f.substring(g+d.commentStart.length,h)+f.substr(h+d.commentEnd.length)),this.replaceRange(f,b,c)}}),CodeMirror.defineExtension("autoIndentRange",function(a,b){var c=this;this.operation(function(){for(var d=a.line;d<=b.line;d++)c.indentLine(d,"smart")})}),CodeMirror.defineExtension("autoFormatRange",function(a,b){var c=this.indexFromPos(a),d=this.indexFromPos(b),e=this.getModeExt().autoFormatLineBreaks(this.getValue(),c,d),f=this;this.operation(function(){f.replaceRange(e,a,b);var d=f.posFromIndex(c).line,g=f.posFromIndex(c+e.length).line;for(var h=d;h<=g;h++)f.indentLine(h,"smart")})}),CodeMirror.modeExtensions.css={commentStart:"/*",commentEnd:"*/",wordWrapChars:[";","\\{","\\}"],autoFormatLineBreaks:function(a){return a.replace(new RegExp("(;|\\{|\\})([^\r\n])","g"),"$1\n$2")}},CodeMirror.modeExtensions.javascript={commentStart:"/*",commentEnd:"*/",wordWrapChars:[";","\\{","\\}"],getNonBreakableBlocks:function(a){var b=[new RegExp("for\\s*?\\(([\\s\\S]*?)\\)"),new RegExp("'([\\s\\S]*?)('|$)"),new RegExp('"([\\s\\S]*?)("|$)'),new RegExp("//.*([\r\n]|$)")],c=new Array;for(var d=0;db&&(e+=a.substring(b,d[f].start).replace(c,"$1\n$2"),b=d[f].start),d[f].start<=b&&d[f].end>=b&&(e+=a.substring(b,d[f].end),b=d[f].end);return b",wordWrapChars:[">"],autoFormatLineBreaks:function(a){var b=a.split("\n"),c=new RegExp("(^\\s*?<|^[^<]*?)(.+)(>\\s*?$|[^>]*?$)"),d=new RegExp("<","g"),e=new RegExp("(>)([^\r\n])","g");for(var f=0;f3){b[f]=g[1]+g[2].replace(d,"\n$&").replace(e,"$1\n$2")+g[3];continue}}return b.join("\n")}},CodeMirror.modeExtensions.htmlmixed={commentStart:"",wordWrapChars:[">",";","\\{","\\}"],getModeInfos:function(a,b){var c=new Array;c[0]={pos:0,modeExt:CodeMirror.modeExtensions.xml,modeName:"xml"};var d=new Array;d[0]={regex:new RegExp("]*>([\\s\\S]*?)(]*>|$)","i"),modeExt:CodeMirror.modeExtensions.css,modeName:"css"},d[1]={regex:new RegExp("]*>([\\s\\S]*?)(]*>|$)","i"),modeExt:CodeMirror.modeExtensions.javascript,modeName:"javascript"};var e=typeof b!="undefined"?b:a.length-1;for(var f=0;f1&&h[1].length>0){var i=g+h.index+h[0].indexOf(h[1]);c.push({pos:i,modeExt:d[f].modeExt,modeName:d[f].modeName}),c.push({pos:i+h[1].length,modeExt:c[0].modeExt,modeName:c[0].modeName}),g+=h.index+h[0].length;continue}g+=h.index+Math.max(h[0].length,1)}}return c.sort(function(b,c){return b.pos-c.pos}),c},autoFormatLineBreaks:function(a,b,c){var d=this.getModeInfos(a),e=new RegExp("^\\s*?\n"),f=new RegExp("\n\\s*?$"),g="";if(d.length>1)for(var h=1;h<=d.length;h++){var i=d[h-1].pos,j=h=c)break;if(ic&&(j=c);var k=a.substring(i,j);d[h-1].modeName!="xml"&&(!e.test(k)&&i>0&&(k="\n"+k),!f.test(k)&&j=f){var g=c(b),h=b.getSelection();b.operation(function(){if(b.lineCount()<2e3)for(var a=b.getSearchCursor(h);a.findNext();)(a.from().line!==b.getCursor(!0).line||a.from().ch!==b.getCursor(!0).ch)&&g.marked.push(b.markText(a.from(),a.to(),e))})}}var a=2;CodeMirror.defineExtension("matchHighlight",function(a,b){e(this,a,b)})}(),function(){function a(a,c,d,e){b(a,c,e)?(a.replaceSelection("\n\n","end"),a.indentLine(d.line+1),a.indentLine(d.line+2),a.setCursor({line:d.line+1,ch:a.getLine(d.line+1).length})):(a.replaceSelection(""),a.setCursor(d))}function b(a,b,d){if(typeof b=="undefined"||b==null||b==1)b=a.getOption("closeTagIndent");return b||(b=[]),c(b,d.toLowerCase())!=-1}function c(a,b){if(a.indexOf)return a.indexOf(b);for(var c=0,d=a.length;c"),a.setCursor({line:b.line,ch:b.ch+c.length+2})}CodeMirror.defaults.closeTagEnabled=!0,CodeMirror.defaults.closeTagIndent=["applet","blockquote","body","button","div","dl","fieldset","form","frameset","h1","h2","h3","h4","h5","h6","head","html","iframe","layer","legend","object","ol","p","select","table","ul"],CodeMirror.defineExtension("closeTag",function(b,c,e){if(!b.getOption("closeTagEnabled"))throw CodeMirror.Pass;var f=b.getOption("mode");if(f=="text/html"){var g=b.getCursor(),h=b.getTokenAt(g),i=h.state;if(i.mode&&i.mode!="html")throw CodeMirror.Pass;if(c==">"){var j=i.htmlState?i.htmlState.type:i.type;if(h.className=="tag"&&j=="closeTag")throw CodeMirror.Pass;b.replaceSelection(">"),g={line:g.line,ch:g.ch+1},b.setCursor(g),h=b.getTokenAt(b.getCursor()),i=h.state,j=i.htmlState?i.htmlState.type:i.type;if(h.className=="tag"&&j!="selfcloseTag"){var k=i.htmlState?i.htmlState.context.tagName:i.tagName;k.length>0&&a(b,e,g,k);return}b.setSelection({line:g.line,ch:g.ch-1},g),b.replaceSelection("")}else if(c=="/"&&h.className=="tag"&&h.string=="<"){var k=i.htmlState?i.htmlState.context?i.htmlState.context.tagName:"":i.context.tagName;if(k.length>0){d(b,g,k);return}}}else if(f=="xmlpure"){var g=b.getCursor(),h=b.getTokenAt(g),k=h.state.context.tagName;if(c==">"){if(h.string==k){b.replaceSelection(">"),g={line:g.line,ch:g.ch+1},b.setCursor(g),a(b,e,g,k);return}}else if(c=="/"&&h.string=="<"){d(b,g,k);return}}throw CodeMirror.Pass})}(),function(){function b(a,b){var c=b;return function(){--c==0&&a()}}function c(a,c){var d=CodeMirror.modes[a].dependencies;if(!d)return c();var e=[];for(var f=0;f100)return clearInterval(i);CodeMirror.modes.hasOwnProperty(b)&&(clearInterval(i),a[b]=null,c(b,function(){for(var a=0;a 0)) { + $skinlist[] = $f; + } elseif (mb_strtolower($extension) == 'bak') { + $baklist[] = $f; + } + } + + closedir($handle); + sort($skinlist); + + if (isset($baklist) && is_array($baklist)) { + @sort($baklist); + foreach ($baklist as $i => $x) { + $backupfile[$x] = TRUE; + } + } + + $j = 0; + $total_size = 0; + + foreach ($skinlist as $i => $x) { + $file_size = @filesize($skindir . $x); + + $sx->assign(array( + "TPL_SKIN_LIST_ROW_EDIT" => "" . $out['ic_edit'] . "", + "TPL_SKIN_LIST_ROW_EDITURL" => sed_url("admin", "m=tools&p=skineditor&sk=" . $sk . "&f=" . $x), + "TPL_SKIN_LIST_ROW_TPLFILE" => $x, + "TPL_SKIN_LIST_ROW_TPLSIZE" => $file_size + )); + + $xbak = $x . ".bak"; + + $bcf = (isset($backupfile[$xbak]) && $backupfile[$xbak]) ? TRUE : FALSE; + + $sx->assign(array( + "TPL_SKIN_LIST_ROW_BACKUP" => ($bcf) ? "" : "" . $out['ic_checked'] . "", + "TPL_SKIN_LIST_ROW_BACKUPURL" => ($bcf) ? "" : sed_url("admin", "m=tools&p=skineditor&sk=" . $sk . "&fb=" . $x . "&a=makbak&" . sed_xg()), + "TPL_SKIN_LIST_ROW_DELETE_BACKUP" => ($bcf) ? "" . $out['ic_unchecked'] . "" : "", + "TPL_SKIN_LIST_ROW_DELETE_BACKUPURL" => ($bcf) ? sed_url("admin", "m=tools&p=skineditor&sk=" . $sk . "&fb=" . $x . "&a=delbak&" . sed_xg()) : "", + "TPL_SKIN_LIST_ROW_RESTORE_BACKUP" => ($bcf) ? "" . $out['ic_reset'] . "" : "", + "TPL_SKIN_LIST_ROW_RESTORE_BACKUPURL" => ($bcf) ? sed_url("admin", "m=tools&p=skineditor&sk=" . $sk . "&fb=" . $x . "&a=resbak&" . sed_xg()) : "", + "TPL_SKIN_LIST_ROW_XBACKUP" => ($bcf) ? $xbak : "" + )); + + $j++; + $total_size += $file_size; + + $sx->parse("SKINEDITOR.TPL_SKIN_LIST.TPL_SKIN_LIST_ROW"); + } + + $sx->assign(array( + "TPL_SKIN_LIST_TOTALSIZE" => $total_size, + "TPL_SKIN_LIST_FILES" => $j + )); + + $sx->parse("SKINEDITOR.TPL_SKIN_LIST"); + + break; + + case 'edit': + + $skininfo = SED_ROOT . "/skins/" . $sk . "/" . $sk . ".php"; + $skindir = SED_ROOT . "/skins/" . $sk . "/"; + + $b1 = sed_import('b1', 'P', 'ALP', 16); + + if (!file_exists($skininfo)) { + sed_die('Wrong file name'); + } + + $info = sed_infoget($skininfo); + $adminpath[] = array(sed_url("admin", "m=tools&p=skineditor&sk=" . $sk), $info['Name']); + + $editfile = SED_ROOT . "/skins/" . $sk . "/" . $f; + + $extension_arr = explode(".", $f); + $extension = end($extension_arr); + + if (in_array(mb_strtolower($extension), $allow_extensions) && (mb_strrpos($f, ".") > 0)) { + if ($a == 'update') { + $content = sed_import('content', 'P', 'HTR'); + $file_isup = TRUE; + + if (!($fp = @fopen($editfile, 'w'))) { + $file_isup = FALSE; + } + if (!(@fwrite($fp, $content))) { + $file_isup = FALSE; + } + + @fclose($fp); + + if ($file_isup) { + if ($b1) { + sed_redirect(sed_url("admin", "m=tools&p=skineditor&sk=" . $sk, "", true)); + exit; + } else { + sed_redirect(sed_url("admin", "m=tools&p=skineditor&sk=" . $sk . "&f=" . $f, "", true)); + exit; + } + } else { + $error_string .= "Error !
Could not write the file : " . $editfile; + } + } + + if (!($fp = @fopen($editfile, 'r'))) { + sed_die('Could not open the file'); + } + + $filecont = fread($fp, 256000); + @fclose($fp); + + switch ($extension) { + case 'css': + $hmode = 'text/css'; + break; + case 'js': + $hmode = 'text/javascript'; + break; + case 'php': + $hmode = 'application/x-httpd-php'; + break; + default: + $hmode = 'text/html'; + } + + $sx->assign(array( + "TPL_SKIN_EDIT_SEND" => sed_url("admin", "m=tools&p=skineditor&sk=" . $sk . "&f=" . $f . "&a=update&" . sed_xg()), + "TPL_SKIN_EDIT_FILE" => $editfile, + "TPL_SKIN_EDIT_CHANCEL_URL" => sed_url("admin", "m=tools&p=skineditor&sk=" . $sk), + "TPL_SKIN_EDIT_TEXTAREA" => "", + "TPL_SKIN_EDIT_HMODE" => $hmode + )); + + $sx->parse("SKINEDITOR.TPL_SKIN_EDIT"); + } else { + $error_string .= "Not allowed file extension : " . $editfile; + } + + break; + + default: + + $handle = opendir(SED_ROOT . "/skins/"); + + while ($f = readdir($handle)) { + if (mb_strpos($f, '.') === FALSE) { + $skinlist[] = $f; + } + } + closedir($handle); + sort($skinlist); + + foreach ($skinlist as $i => $x) { + + $skininfo = SED_ROOT . "/skins/" . $x . "/" . $x . ".php"; + $info = sed_infoget($skininfo); + + $sx->assign(array( + "SKIN_LIST_ROW_EDIT" => "" . $out['ic_edit'] . "", + "SKIN_LIST_ROW_EDITURL" => sed_url("admin", "m=tools&p=skineditor&sk=" . $x), + "SKIN_LIST_ROW_NAME" => $info['Name'], + "SKIN_LIST_ROW_CODE" => $x, + "SKIN_LIST_ROW_VERSION" => $info['Version'], + "SKIN_LIST_ROW_UPDATED" => $info['Updated'], + "SKIN_LIST_ROW_AUTHOR" => $info['Author'], + "SKIN_LIST_ROW_DEFAULT" => ($x == $cfg['defaultskin']) ? $out['ic_checked'] : '', + "SKIN_LIST_ROW_SET" => ($x == $skin) ? $out['ic_checked'] : '' + )); + + $sx->parse("SKINEDITOR.SKIN_LIST.SKIN_LIST_ROW"); + } + + $sx->parse("SKINEDITOR.SKIN_LIST"); + + break; +} + +if (!empty($error_string)) { + $sx->assign("SKINEDITOR_ERROR_BODY", sed_alert($error_string, 'e')); + $sx->parse("SKINEDITOR.SKINEDITOR_ERROR"); +} + +$sx->parse("SKINEDITOR"); +$plugin_body = $sx->text("SKINEDITOR"); diff --git a/plugins/skineditor/skineditor.codemirror.php b/plugins/skineditor/skineditor.codemirror.php new file mode 100644 index 0000000..d09e048 --- /dev/null +++ b/plugins/skineditor/skineditor.codemirror.php @@ -0,0 +1,34 @@ + + "; + $moremetas .= $init_codemirror; +} diff --git a/plugins/skineditor/skineditor.common.php b/plugins/skineditor/skineditor.common.php new file mode 100644 index 0000000..714104d --- /dev/null +++ b/plugins/skineditor/skineditor.common.php @@ -0,0 +1,30 @@ + + + + +{SKINEDITOR_ERROR_BODY} + + + + + +

{PHP.L.Skin}

+ +
+ +
+ +
+ +
{PHP.L.Edit}
+
{PHP.L.Skin}
+
{PHP.L.Code}
+
{PHP.L.Version}
+
{PHP.L.Updated}
+
{PHP.L.Author}
+
{PHP.L.Default}
+
{PHP.L.Set}
+ +
+ +
+ +
+ + + +
+ +
+ {SKIN_LIST_ROW_EDIT} +
+ +
+ {SKIN_LIST_ROW_NAME} +
+ +
+ {SKIN_LIST_ROW_CODE} +
+ +
+ {SKIN_LIST_ROW_VERSION} +
+ +
+ {SKIN_LIST_ROW_UPDATED} +
+ +
+ {SKIN_LIST_ROW_AUTHOR} +
+ +
+ {SKIN_LIST_ROW_DEFAULT} +
+ +
+ {SKIN_LIST_ROW_SET} +
+ +
+ + + +
+ +
+ + + + + +

{PHP.L.TPL}

+ +
+ +
+ +
+ +
{PHP.L.Edit}
+
{PHP.L.File}
+
{PHP.L.Size}
+
{PHP.L.plu_makbak}
+
{PHP.L.plu_delbak}
+
{PHP.L.plu_resbak}
+ +
+ +
+ +
+ + + +
+ +
+ {TPL_SKIN_LIST_ROW_EDIT} +
+ +
+ {TPL_SKIN_LIST_ROW_TPLFILE} +
+ +
+ {TPL_SKIN_LIST_ROW_TPLSIZE} +
+ +
+ {TPL_SKIN_LIST_ROW_BACKUP} {TPL_SKIN_LIST_ROW_XBACKUP} +
+ +
+ {TPL_SKIN_LIST_ROW_DELETE_BACKUP} +
+ +
+ {TPL_SKIN_LIST_ROW_RESTORE_BACKUP} +
+ +
+ + + +
+ +
+ +
+ +
+ {TPL_SKIN_LIST_FILES} {PHP.L.Files} +
+ +
+ {PHP.L.Total} : {TPL_SKIN_LIST_TOTALSIZE} +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + + +

{PHP.L.Edit} {PHP.L.TPL}

+ +
+ +
+ +
+ +
+
+ {PHP.L.File} : {TPL_SKIN_EDIT_FILE} +
+ +
+ +
+ +
+ +
+ + {TPL_SKIN_EDIT_TEXTAREA} + + + +
+ +
+ + + + +
+ +
+ + + + \ No newline at end of file diff --git a/plugins/slider/slider.install.php b/plugins/slider/slider.install.php new file mode 100644 index 0000000..4eea4c8 --- /dev/null +++ b/plugins/slider/slider.install.php @@ -0,0 +1,75 @@ +" : $cfg['plu_mask_slider']; +// %1\$s = Link to the category +// %2\$s = Link to the page +// %3\$s = Page title +// %4\$s = Page description +// %5\$s = Page first thumb +// %6\$s = Date + +$cfg['plu_mask_pages_date'] = "{d-m} {H:i}"; + +$slider = "
"; + +$pcomments = ($cfg['showcommentsonpage']) ? "" : "&comments=1"; + +$sql = sed_sql_query("SELECT p.page_id, p.page_alias, p.page_cat, p.page_title, p.page_desc, p.page_date, p.page_text, p.page_thumb, + p.page_ownerid, p.page_count, p.page_comcount, u.user_id, u.user_name, u.user_maingrp, u.user_avatar + FROM $db_pages AS p LEFT JOIN $db_users AS u ON u.user_id = p.page_ownerid + WHERE p.page_state = 0 AND p.page_cat NOT LIKE 'system' AND p.page_slider = 1 + ORDER BY p.page_date DESC LIMIT $sliderlimit"); + +if (sed_sql_numrows($sql) > 0) { + while ($row = sed_sql_fetchassoc($sql)) { + if (sed_auth('page', $row['page_cat'], 'R')) { + $sys['catcode'] = $row['page_cat']; //new in v175 + $row['page_pageurl'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id']) : sed_url("page", "al=" . $row['page_alias']); + $row['page_pageurlcom'] = (empty($row['page_alias'])) ? sed_url("page", "id=" . $row['page_id'] . $pcomments) : sed_url("page", "al=" . $row['page_alias'] . $pcomments); + + $t->assign(array( + "SLIDER_ROW_URL" => $row['page_pageurl'], + "SLIDER_ROW_ID" => $row['page_id'], + "SLIDER_ROW_CAT" => $row['page_cat'], + "SLIDER_ROW_CATTITLE" => $sed_cat[$row['page_cat']]['title'], + "SLIDER_ROW_CATPATH" => sed_build_catpath($row['page_cat'], "%2\$s"), + "SLIDER_ROW_SHORTTITLE" => sed_cutstring($row['page_title'], 50), + "SLIDER_ROW_TITLE" => $row['page_title'], + "SLIDER_ROW_DESC" => $row['page_desc'], + "SLIDER_ROW_TEXT" => $row['page_text'], + "SLIDER_ROW_DATE" => sed_build_date($cfg['formatyearmonthday'], $row['page_date'], $cfg['plu_mask_pages_date']), + "SLIDER_ROW_AUTHOR" => sed_cc($row['user_name']), + "SLIDER_ROW_USERURL" => sed_url("users", "m=details&id=" . $row['page_ownerid']), + "SLIDER_ROW_USER" => sed_build_user($row['page_ownerid'], sed_cc($row['user_name']), $row['user_maingrp']), + "SLIDER_ROW_COUNT" => $row['page_count'], + "SLIDER_ROW_COMMENTS_URL" => $row['page_pageurlcom'], + "SLIDER_ROW_COMMENTS_COUNT" => $row['page_comcount'], + "SLIDER_ROW_AVATAR" => sed_build_userimage($row['user_avatar']) + )); + + // ------- thumb + + $row['page_first_thumb'] = ""; + if (!empty($row['page_thumb'])) { + $page_thumbs_array = rtrim($row['page_thumb']); + if ($page_thumbs_array[mb_strlen($page_thumbs_array) - 1] == ';') { + $page_thumbs_array = mb_substr($page_thumbs_array, 0, -1); + } + $page_thumbs_array = explode(";", $page_thumbs_array); + if (count($page_thumbs_array) > 0) { + $row['page_first_thumb'] = $page_thumbs_array[0]; + $t->assign("SLIDER_ROW_THUMB", $page_thumbs_array[0]); + $t->parse("MAIN.SLIDER.SLIDER_ROW.SLIDER_ROW_THUMB"); + } + } else { + $row['page_first_thumb'] = sed_cc($row['page_thumb']); + $t->assign("SLIDER_ROW_THUMB", sed_cc($row['page_thumb'])); + } + + // ------- + + $t->parse("MAIN.SLIDER.SLIDER_ROW"); + + /* old result view use mask */ + $slider .= sprintf( + $cfg['plu_mask_slider'], + "" . $sed_cat[$row['page_cat']]['title'] . "", + "" . sed_cc(sed_cutstring(stripslashes($row['page_title']), 50)) . "", + sed_cc(sed_cutstring(stripslashes($row['page_title']), 50)), + strip_tags($row['page_desc']), + $row['page_first_thumb'], + sed_build_date($cfg['formatyearmonthday'], $row['page_date'], $cfg['plu_mask_pages_date']) + ); + } + } + + $t->parse("MAIN.SLIDER"); + + $slider .= "
"; + + $t->assign(array( + "PLUGIN_SLIDER" => $slider + )); +} else { + $t->assign(array( + "SLIDER_NOACTIVE" => "home-noslider" + )); +} diff --git a/plugins/slider/slider.png b/plugins/slider/slider.png new file mode 100644 index 0000000..b9d62eb Binary files /dev/null and b/plugins/slider/slider.png differ diff --git a/plugins/slider/slider.setup.php b/plugins/slider/slider.setup.php new file mode 100644 index 0000000..d394b56 --- /dev/null +++ b/plugins/slider/slider.setup.php @@ -0,0 +1,41 @@ + 0) { + $sql = sed_sql_query("DELETE FROM $db_dic WHERE dic_id = $did LIMIT 1"); + $sql = sed_sql_query("DELETE FROM $db_dic_items WHERE ditem_dicid = $did"); + $sql = sed_sql_query("ALTER TABLE $db_pages DROP page_slider"); +} diff --git a/plugins/smtp/inc/smtp.class.php b/plugins/smtp/inc/smtp.class.php new file mode 100644 index 0000000..953e918 --- /dev/null +++ b/plugins/smtp/inc/smtp.class.php @@ -0,0 +1,385 @@ +server = $server; + $this->port = $port; + $this->localhost = $server; + $this->connect_timeout = $connection_timeout; + $this->response_timeout = $response_timeout; + $this->from = array(); + $this->to = array(); + $this->cc = array(); + $this->bcc = array(); + $this->log = array(); + $this->reply_to = array(); + $this->is_html = false; + $this->protocol = $protocol; + $this->charset = 'utf-8'; + $this->boundary = sha1(microtime()); + $this->headers['MIME-Version'] = '1.0'; + } + + /** + * Add to recipient email address + * @param $address + * @param string $name + */ + public function addTo($address, $name = '') + { + $this->to[] = array($address, $name); + } + + /** + * Add carbon copy email address + * @param $address + * @param string $name + */ + public function addCc($address, $name = '') + { + $this->cc[] = array($address, $name); + } + + /** + * Add blind carbon copy email address + * @param $address + * @param string $name + */ + public function addBcc($address, $name = '') + { + $this->bcc[] = array($address, $name); + } + + /** + * Add email reply to address + * @param $address + * @param string $name + */ + public function addReplyTo($address, $name = '') + { + $this->reply_to[] = array($address, $name); + } + + /** + * Set SMTP Login authentication + * @param $username + * @param $password + */ + public function setLogin($username, $password) + { + $this->username = $username; + $this->password = $password; + } + + /** + * Get message character set + * @param $charset + */ + public function setCharset($charset) + { + $this->charset = $charset; + } + + /** + * Set STMP Server protocol + * -- default value is null (no secure protocol) + * @param string $protocol + */ + public function setProtocol($protocol = '') + { + if ($protocol == self::TLS) { + $this->tls = true; + } + + $this->protocol = $protocol; + } + + /** + * Set from email address and/or name + * @param $address + * @param string $name + */ + public function setFrom($address, $name = '') + { + $this->from = array($address, $name); + } + + /** + * Set email subject string + * @param $subject + */ + public function setSubject($subject) + { + $this->subject = $subject; + } + + /** + * Set main HTML body message + * @param $message + */ + public function setText($message) + { + $this->message_text = $message; + } + + /** + * Set main text body message + * @param $message + */ + public function setHTML($message) + { + $this->message_html = $message; + } + + /** + * Set main email body message + * @param $message + * @param bool $html + */ + public function setMessage($message, $html = false) + { + if ($html) { + $this->setHTML($message); + } else { + $this->setText($message); + } + } + + // Function used to attach files to the message + public function setAttach($attach) + { + + if (file_exists($attach['file'])) { + $fp = fopen($attach['file'], "r"); + $str = fread($fp, filesize($attach['file'])); + $str = chunk_split(base64_encode($str)); + + $attach_file = "Content-disposition: attachment; filename=\"" . $attach['name'] . "\"" . self::CRLF; + $attach_file .= "Content-Transfer-Encoding: base64" . self::CRLF; + $attach_file .= "Content-Type: " . $attach['type'] . "; name=\"" . $attach['name'] . "\"" . self::CRLF . self::CRLF; + + $attach_file .= $str; + + $this->message_attach = $attach_file; + } else { + $this->message_attach = false; + } + } + + + /** + * Get log array + * -- contains commands and responses from SMTP server + * @return array + */ + public function getLog() + { + return $this->log; + } + + /** + * Send email to recipient via mail server + * @return bool + */ + public function send() + { + $this->socket = fsockopen($this->getServer(), $this->port, $error_number, $error_string, $this->connect_timeout); + if (empty($this->socket)) { + return false; + } + + $this->log['SOCKET'] = $this->socket; + + $this->log['CONNECTION'] = $this->getResponse(); + $this->log['HELLO'] = $this->sendCMD('EHLO ' . $this->localhost); + + if ($this->tls) { + $this->log['STARTTLS'] = $this->sendCMD('STARTTLS'); + + stream_socket_enable_crypto($this->socket, true, STREAM_CRYPTO_METHOD_TLS_CLIENT); + + $this->log['HELLO 2'] = $this->sendCMD('EHLO ' . $this->localhost); + } + + $this->log['AUTH'] = $this->sendCMD('AUTH LOGIN'); + $this->log['USERNAME'] = $this->sendCMD(base64_encode($this->username)); + $this->log['PASSWORD'] = $this->sendCMD(base64_encode($this->password)); + $this->log['MAIL_FROM'] = $this->sendCMD('MAIL FROM: <' . $this->from[0] . '>'); + + foreach (array_merge($this->to, $this->cc) as $address) { + $this->log['RECIPIENTS'][] = $this->sendCMD('RCPT TO: <' . $address[0] . '>'); + } + + $this->log['DATA'][1] = $this->sendCMD('DATA'); + + + + if ($this->message_html && $this->message_attach) { + + $this->headers['Content-type'] = 'multipart/mixed; boundary="' . $this->boundary . '"'; + $data = '--' . $this->boundary . self::CRLF; + + $data .= 'Content-type: text/html; charset=' . $this->charset . self::CRLF . self::CRLF; + $data .= $this->message_html . self::CRLF . self::CRLF; + $data .= '--' . $this->boundary . self::CRLF; + + $data .= $this->message_attach . self::CRLF . self::CRLF; + $data .= '--' . $this->boundary . '--'; + } elseif ($this->message_html && $this->message_text) { + + $this->headers['Content-type'] = 'multipart/alternative; boundary="' . $this->boundary . '"'; + $data = '--' . $this->boundary . self::CRLF; + + $data .= 'Content-type: text/plain; charset=' . $this->charset . self::CRLF . self::CRLF; + $data .= $this->message_text . self::CRLF . self::CRLF; + $data .= '--' . $this->boundary . self::CRLF; + + $data .= 'Content-type: text/html; charset=' . $this->charset . self::CRLF . self::CRLF; + $data .= $this->message_html . self::CRLF . self::CRLF; + $data .= '--' . $this->boundary . '--'; + } elseif ($this->message_html) { + $this->headers['Content-type'] = 'text/html; charset=' . $this->charset; + $data = $this->message_html; + } else { + $this->headers['Content-type'] = 'text/plain; charset=' . $this->charset; + $data = $this->message_text; + } + + $this->headers['From'] = $this->formatAddress($this->from); + $this->headers['To'] = $this->formatAddressList($this->to); + if (!empty($this->cc)) { + $this->headers['Cc'] = $this->formatAddressList($this->cc); + } + + if (!empty($this->bcc)) { + $this->headers['Bcc'] = $this->formatAddressList($this->bcc); + } + + if (!empty($this->reply_to)) { + $this->headers['Reply-To'] = $this->formatAddressList($this->reply_to); + } + + $this->headers['Subject'] = $this->subject; + $this->headers['Date'] = date('r'); + $headers = ''; + foreach ($this->headers as $key => $val) { + $headers .= $key . ': ' . $val . self::CRLF; + } + + $this->log['DATA'][2] = $this->sendCMD($headers . self::CRLF . $data . self::CRLF . '.'); + $this->log['QUIT'] = $this->sendCMD('QUIT'); + fclose($this->socket); + return substr($this->log['DATA'][2], 0, 3) == self::OK; + } + + /** + * Get server url + * -- if set SMTP protocol then prepend it to server + * @return string + */ + protected function getServer() + { + return ($this->protocol) ? $this->protocol . '://' . $this->server : $this->server; + } + + /** + * Get Mail Server response + * @return string + */ + protected function getResponse() + { + stream_set_timeout($this->socket, $this->response_timeout); + $response = ''; + while (($line = fgets($this->socket, 515)) != false) { + $response .= trim($line) . "\n"; + if (substr($line, 3, 1) == ' ') { + break; + } + } + return trim($response); + } + + /** + * Send command to mail server + * @param $cmd + * @return string + */ + protected function sendCMD($cmd) + { + // TODO: Error checking + fputs($this->socket, $cmd . self::CRLF); + return $this->getResponse(); + } + + /** + * Format email address (with name) + * @param $address + * @return string + */ + protected function formatAddress($address) + { + return ($address[1] == '') ? $address[0] : '"' . $address[1] . '" <' . $address[0] . '>'; + } + + /** + * Format email address to list + * @param $addresses + * @return string + */ + protected function formatAddressList($addresses) + { + $list = ''; + foreach ($addresses as $address) { + if ($list) { + $list .= ', ' . self::CRLF . "\t"; + } + $list .= $this->formatAddress($address); + } + return $list; + } +} diff --git a/plugins/smtp/log/log.txt b/plugins/smtp/log/log.txt new file mode 100644 index 0000000..e69de29 diff --git a/plugins/smtp/smtp.mail.connector.php b/plugins/smtp/smtp.mail.connector.php new file mode 100644 index 0000000..b4062c1 --- /dev/null +++ b/plugins/smtp/smtp.mail.connector.php @@ -0,0 +1,83 @@ +" . $cfg['maintitle'] . " - " . $cfg['mainurl'] . "

" : "\n\n" . $cfg['maintitle'] . " - " . $cfg['mainurl']; + + $mail_type = ($c_content == 'plain') ? false : true; + + $mail = new Email($smtp_host, $smtp_port, $smtp_connection_timeout, $smtp_response_timeout, $smtp_ssl); + + $mail->setLogin($smtp_login, $smtp_pass); + $mail->addTo($c_fmail, $c_fmail); + + $mail->setFrom($smtp_from, $smtp_from_title); + $mail->setSubject($c_subject); + $mail->setMessage($c_body, $mail_type); + + if (is_array($c_attach)) $mail->setAttach($c_attach); + + if ($mail->send()) { + if ($smtp_debug == "yes") { + $log = $mail->getLog(); + file_put_contents(SED_ROOT . '/plugins/smtp/log/log.txt', $log, FILE_APPEND | LOCK_EX); + } + sed_stat_inc('totalmailsent'); + return (TRUE); + } else { + if ($smtp_debug == "yes") { + $log = $mail->getLog(); + file_put_contents(SED_ROOT . '/plugins/smtp/log/log.txt', $log, FILE_APPEND | LOCK_EX); + } + return (FALSE); + } +} diff --git a/plugins/smtp/smtp.setup.php b/plugins/smtp/smtp.setup.php new file mode 100644 index 0000000..a5c9c51 --- /dev/null +++ b/plugins/smtp/smtp.setup.php @@ -0,0 +1,49 @@ +Copyright Neocrome & Seditio Team
"; + $output .= "https://seditio.org
"; + $output .= " 
[BEGIN_SED]
Title=" . $cfg['maintitle'] . "
"; + $output .= "Subtitle=" . $cfg['subtitle'] . "
Version=" . $cfg['version'] . "
"; + $output .= "Pages=" . sed_sql_rowcount($db_pages) . "
Users=" . sed_sql_rowcount($db_users) . "
"; + $output .= "Pms=" . sed_stat_get('totalpms') . "
Forum_views=" . $totaldbviews . "
"; + $output .= "Forum_posts=" . $totaldbposts . "
Forum_topics=" . $totaldbtopics . "
[END_SED]
 "; + die($output); +} + +$plugin_title = $L['plu_title']; + +$totaldbpages = sed_sql_rowcount($db_pages); +$totaldbcomments = sed_sql_rowcount($db_com); +$totaldbratings = sed_sql_rowcount($db_ratings); +$totaldbratingsvotes = sed_sql_rowcount($db_rated); +$totaldbpolls = sed_sql_rowcount($db_polls); +$totaldbpollsvotes = sed_sql_rowcount($db_polls_voters); +$totaldbposts = sed_sql_rowcount($db_forum_posts); +$totaldbtopics = sed_sql_rowcount($db_forum_topics); +$totaldbfiles = sed_sql_rowcount($db_pfs); +$totaldbusers = sed_sql_rowcount($db_users); + +$totalpages = sed_stat_get('totalpages'); +$totalmailsent = sed_stat_get('totalmailsent'); +$totalpmsent = sed_stat_get('totalpms'); + +$totaldbviews = sed_sql_query("SELECT SUM(fs_viewcount) FROM $db_forum_sections"); +$totaldbviews = sed_sql_result($totaldbviews, 0, "SUM(fs_viewcount)"); + +$sql = sed_sql_query("SELECT SUM(fs_topiccount_pruned) FROM $db_forum_sections"); +$totaldbtopicspruned = sed_sql_result($sql, 0, "SUM(fs_topiccount_pruned)"); + +$sql = sed_sql_query("SELECT SUM(fs_postcount_pruned) FROM $db_forum_sections"); +$totaldbpostspruned = sed_sql_result($sql, 0, "SUM(fs_postcount_pruned)"); + +$totaldbfilesize = sed_sql_query("SELECT SUM(pfs_size) FROM $db_pfs"); +$totaldbfilesize = sed_sql_result($totaldbfilesize, 0, "SUM(pfs_size)"); + +$totalpmactive = sed_sql_query("SELECT COUNT(*) FROM $db_pm WHERE pm_state<2"); +$totalpmactive = sed_sql_result($totalpmactive, 0, "COUNT(*)"); + +$totalpmarchived = sed_sql_query("SELECT COUNT(*) FROM $db_pm WHERE pm_state=2"); +$totalpmarchived = sed_sql_result($totalpmarchived, 0, "COUNT(*)"); + +$totalpmold = sed_sql_query("SELECT COUNT(*) FROM $db_pm WHERE pm_state=3"); +$totalpmold = sed_sql_result($totalpmold, 0, "COUNT(*)"); + +$sql = sed_sql_query("SELECT stat_name FROM $db_stats WHERE stat_name LIKE '20%' ORDER BY stat_name ASC LIMIT 1"); +$row = sed_sql_fetchassoc($sql); +$since = $row['stat_name']; + +$sql = sed_sql_query("SELECT * FROM $db_stats WHERE stat_name LIKE '20%' ORDER BY stat_value DESC LIMIT 1"); +$row = sed_sql_fetchassoc($sql); +$max_date = $row['stat_name']; +$max_hits = $row['stat_value']; + +if ($usr['id'] > 0) { + $sql = sed_sql_query("SELECT COUNT(*) FROM $db_forum_posts WHERE fp_posterid='" . $usr['id'] . "'"); + $user_postscount = sed_sql_result($sql, 0, "COUNT(*)"); + $sql = sed_sql_query("SELECT COUNT(*) FROM $db_forum_topics WHERE ft_firstposterid='" . $usr['id'] . "'"); + $user_topicscount = sed_sql_result($sql, 0, "COUNT(*)"); + $sql = sed_sql_query("SELECT COUNT(*) FROM $db_com WHERE com_authorid='" . $usr['id'] . "'"); + $user_comments = sed_sql_result($sql, 0, "COUNT(*)"); + + $t->assign(array( + "PLUGIN_STATISTICS_USER_POSTSCOUNT" => $user_postscount, + "PLUGIN_STATISTICS_USER_TOPICSCOUNT" => $user_topicscount, + "PLUGIN_STATISTICS_USER_COMMENTS" => $user_comments + )); + $t->parse('MAIN.PLUGIN_STATISTICS_IS_USER'); +} else { + $t->parse('MAIN.PLUGIN_STATISTICS_IS_NOT_USER'); +} + +if ($s == 'usercount') { + $sql1 = sed_sql_query("DROP TEMPORARY TABLE IF EXISTS tmp1"); + $sql = sed_sql_query("CREATE TEMPORARY TABLE tmp1 SELECT user_country, COUNT(*) as usercount FROM $db_users GROUP BY user_country"); + $sql = sed_sql_query("SELECT * FROM tmp1 WHERE 1 ORDER by usercount DESC"); + $sql1 = sed_sql_query("DROP TEMPORARY TABLE IF EXISTS tmp1"); +} else { + $sql = sed_sql_query("SELECT user_country, COUNT(*) as usercount FROM $db_users GROUP BY user_country ASC"); +} + +$sqltotal = sed_sql_query("SELECT COUNT(*) FROM $db_users WHERE 1"); +$totalusers = sed_sql_result($sqltotal, 0, "COUNT(*)"); + +$ii = 0; + +while ($row = sed_sql_fetchassoc($sql)) { + $country_code = $row['user_country']; + + if (!empty($country_code) && $country_code != '00') { + $ii = $ii + $row['usercount']; + $t->assign(array( + "PLUGIN_STATISTICS_COUNTRY_FLAG" => sed_build_flag($country_code), + "PLUGIN_STATISTICS_COUNTRY_COUNT" => $row['usercount'], + "PLUGIN_STATISTICS_COUNTRY_NAME" => sed_build_country($country_code) + )); + $t->parse('MAIN.PLUGIN_STATISTICS_ROW_COUNTRY'); + } +} + +// ---------- Breadcrumbs +$urlpaths = array(); +$urlpaths[sed_url("plug", "e=statistics")] = $L['plu_title']; + +$t->assign(array( + "PLUGIN_STATISTICS_TITLE" => $L['plu_title'], + "PLUGIN_STATISTICS_BREADCRUMBS" => sed_breadcrumbs($urlpaths), + "PLUGIN_STATISTICS_PLU_URL" => sed_url('plug', 'e=statistics'), + "PLUGIN_STATISTICS_SORT_BY_USERCOUNT" => sed_url('plug', 'e=statistics&s=usercount'), + "PLUGIN_STATISTICS_MAX_DATE" => $max_date, + "PLUGIN_STATISTICS_MAX_HITS" => $max_hits, + "PLUGIN_STATISTICS_SINCE" => $since, + "PLUGIN_STATISTICS_TOTALPAGES" => $totalpages, + "PLUGIN_STATISTICS_TOTALDBUSERS" => $totaldbusers, + "PLUGIN_STATISTICS_TOTALDBPAGES" => $totaldbpages, + "PLUGIN_STATISTICS_TOTALDBCOMMENTS" => $totaldbcomments, + "PLUGIN_STATISTICS_TOTALMAILSENT" => $totalmailsent, + "PLUGIN_STATISTICS_TOTALPMSENT" => $totalpmsent, + "PLUGIN_STATISTICS_TOTALPMACTIVE" => $totalpmactive, + "PLUGIN_STATISTICS_TOTALPMARCHIVED" => $totalpmarchived, + "PLUGIN_STATISTICS_TOTALDBVIEWS" => $totaldbviews, + "PLUGIN_STATISTICS_TOTALDBPOSTS_AND_TOTALDBPOSTSPRUNED" => ($totaldbposts + $totaldbpostspruned), + "PLUGIN_STATISTICS_TOTALDBPOSTS" => $totaldbposts, + "PLUGIN_STATISTICS_TOTALDBPOSTSPRUNED" => $totaldbpostspruned, + "PLUGIN_STATISTICS_TOTALDBTOPICS_AND_TOTALDBTOPICSPRUNED" => ($totaldbtopics + $totaldbtopicspruned), + "PLUGIN_STATISTICS_TOTALDBTOPICS" => $totaldbtopics, + "PLUGIN_STATISTICS_TOTALDBTOPICSPRUNED" => $totaldbtopicspruned, + "PLUGIN_STATISTICS_TOTALDBRATINGS" => $totaldbratings, + "PLUGIN_STATISTICS_TOTALDBRATINGSVOTES" => $totaldbratingsvotes, + "PLUGIN_STATISTICS_TOTALDBPOLLS" => $totaldbpolls, + "PLUGIN_STATISTICS_TOTALDBPOLLSVOTES" => $totaldbpollsvotes, + "PLUGIN_STATISTICS_TOTALDBFILES" => $totaldbfiles, + "PLUGIN_STATISTICS_TOTALDBFILESIZE" => floor($totaldbfilesize / 1024), + "PLUGIN_STATISTICS_UNKNOWN_COUNT" => $totalusers - $ii, + "PLUGIN_STATISTICS_TOTALUSERS" => $totalusers +)); diff --git a/plugins/statistics/statistics.png b/plugins/statistics/statistics.png new file mode 100644 index 0000000..dfcbc86 Binary files /dev/null and b/plugins/statistics/statistics.png differ diff --git a/plugins/statistics/statistics.setup.php b/plugins/statistics/statistics.setup.php new file mode 100644 index 0000000..33e0994 --- /dev/null +++ b/plugins/statistics/statistics.setup.php @@ -0,0 +1,33 @@ + diff --git a/plugins/syntaxhighlight/lang/syntaxhighlight.ru.lang.php b/plugins/syntaxhighlight/lang/syntaxhighlight.ru.lang.php new file mode 100644 index 0000000..ceb725c --- /dev/null +++ b/plugins/syntaxhighlight/lang/syntaxhighlight.ru.lang.php @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/plugins/syntaxhighlight/scripts/clipboard.swf b/plugins/syntaxhighlight/scripts/clipboard.swf new file mode 100644 index 0000000..1b4d90a Binary files /dev/null and b/plugins/syntaxhighlight/scripts/clipboard.swf differ diff --git a/plugins/syntaxhighlight/scripts/shBrush.js b/plugins/syntaxhighlight/scripts/shBrush.js new file mode 100644 index 0000000..a64e034 --- /dev/null +++ b/plugins/syntaxhighlight/scripts/shBrush.js @@ -0,0 +1,959 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +SyntaxHighlighter.brushes.AS3 = function() +{ + // Created by Peter Atoria @ http://iAtoria.com + + var inits = 'class interface function package'; + + var keywords = '-Infinity ...rest Array as AS3 Boolean break case catch const continue Date decodeURI ' + + 'decodeURIComponent default delete do dynamic each else encodeURI encodeURIComponent escape ' + + 'extends false final finally flash_proxy for get if implements import in include Infinity ' + + 'instanceof int internal is isFinite isNaN isXMLName label namespace NaN native new null ' + + 'Null Number Object object_proxy override parseFloat parseInt private protected public ' + + 'return set static String super switch this throw true try typeof uint undefined unescape ' + + 'use void while with' + ; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers + { regex: new RegExp(this.getKeywords(inits), 'gm'), css: 'color3' }, // initializations + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp('var', 'gm'), css: 'variable' }, // variable + { regex: new RegExp('trace', 'gm'), css: 'color1' } // trace + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.scriptScriptTags); +}; + +SyntaxHighlighter.brushes.AS3.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.AS3.aliases = ['actionscript3', 'as3']; + +/* ========= */ + +SyntaxHighlighter.brushes.Bash = function() +{ + var keywords = 'if fi then elif else for do done until while break continue case function return in eq ne gt lt ge le'; + var commands = 'alias apropos awk basename bash bc bg builtin bzip2 cal cat cd cfdisk chgrp chmod chown chroot' + + 'cksum clear cmp comm command cp cron crontab csplit cut date dc dd ddrescue declare df ' + + 'diff diff3 dig dir dircolors dirname dirs du echo egrep eject enable env ethtool eval ' + + 'exec exit expand export expr false fdformat fdisk fg fgrep file find fmt fold format ' + + 'free fsck ftp gawk getopts grep groups gzip hash head history hostname id ifconfig ' + + 'import install join kill less let ln local locate logname logout look lpc lpr lprint ' + + 'lprintd lprintq lprm ls lsof make man mkdir mkfifo mkisofs mknod more mount mtools ' + + 'mv netstat nice nl nohup nslookup open op passwd paste pathchk ping popd pr printcap ' + + 'printenv printf ps pushd pwd quota quotacheck quotactl ram rcp read readonly renice ' + + 'remsync rm rmdir rsync screen scp sdiff sed select seq set sftp shift shopt shutdown ' + + 'sleep sort source split ssh strace su sudo sum symlink sync tail tar tee test time ' + + 'times touch top traceroute trap tr true tsort tty type ulimit umask umount unalias ' + + 'uname unexpand uniq units unset unshar useradd usermod users uuencode uudecode v vdir ' + + 'vi watch wc whereis which who whoami Wget xargs yes' + ; + + this.findMatches = function(regexList, code) + { + code = code.replace(/>/g, '>').replace(/</g, '<'); + this.code = code; + return SyntaxHighlighter.Highlighter.prototype.findMatches.apply(this, [regexList, code]); + }; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(this.getKeywords(commands), 'gm'), css: 'functions' } // commands + ]; +} + +SyntaxHighlighter.brushes.Bash.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Bash.aliases = ['bash', 'shell']; + +/* ========= */ + +SyntaxHighlighter.brushes.ColdFusion = function() +{ + // Contributed by Jen + // http://www.jensbits.com/2009/05/14/coldfusion-brush-for-syntaxhighlighter-plus + + var funcs = 'Abs ACos AddSOAPRequestHeader AddSOAPResponseHeader AjaxLink AjaxOnLoad ArrayAppend ArrayAvg ArrayClear ArrayDeleteAt ' + + 'ArrayInsertAt ArrayIsDefined ArrayIsEmpty ArrayLen ArrayMax ArrayMin ArraySet ArraySort ArraySum ArraySwap ArrayToList ' + + 'Asc ASin Atn BinaryDecode BinaryEncode BitAnd BitMaskClear BitMaskRead BitMaskSet BitNot BitOr BitSHLN BitSHRN BitXor ' + + 'Ceiling CharsetDecode CharsetEncode Chr CJustify Compare CompareNoCase Cos CreateDate CreateDateTime CreateObject ' + + 'CreateODBCDate CreateODBCDateTime CreateODBCTime CreateTime CreateTimeSpan CreateUUID DateAdd DateCompare DateConvert ' + + 'DateDiff DateFormat DatePart Day DayOfWeek DayOfWeekAsString DayOfYear DaysInMonth DaysInYear DE DecimalFormat DecrementValue ' + + 'Decrypt DecryptBinary DeleteClientVariable DeserializeJSON DirectoryExists DollarFormat DotNetToCFType Duplicate Encrypt ' + + 'EncryptBinary Evaluate Exp ExpandPath FileClose FileCopy FileDelete FileExists FileIsEOF FileMove FileOpen FileRead ' + + 'FileReadBinary FileReadLine FileSetAccessMode FileSetAttribute FileSetLastModified FileWrite Find FindNoCase FindOneOf ' + + 'FirstDayOfMonth Fix FormatBaseN GenerateSecretKey GetAuthUser GetBaseTagData GetBaseTagList GetBaseTemplatePath ' + + 'GetClientVariablesList GetComponentMetaData GetContextRoot GetCurrentTemplatePath GetDirectoryFromPath GetEncoding ' + + 'GetException GetFileFromPath GetFileInfo GetFunctionList GetGatewayHelper GetHttpRequestData GetHttpTimeString ' + + 'GetK2ServerDocCount GetK2ServerDocCountLimit GetLocale GetLocaleDisplayName GetLocalHostIP GetMetaData GetMetricData ' + + 'GetPageContext GetPrinterInfo GetProfileSections GetProfileString GetReadableImageFormats GetSOAPRequest GetSOAPRequestHeader ' + + 'GetSOAPResponse GetSOAPResponseHeader GetTempDirectory GetTempFile GetTemplatePath GetTickCount GetTimeZoneInfo GetToken ' + + 'GetUserRoles GetWriteableImageFormats Hash Hour HTMLCodeFormat HTMLEditFormat IIf ImageAddBorder ImageBlur ImageClearRect ' + + 'ImageCopy ImageCrop ImageDrawArc ImageDrawBeveledRect ImageDrawCubicCurve ImageDrawLine ImageDrawLines ImageDrawOval ' + + 'ImageDrawPoint ImageDrawQuadraticCurve ImageDrawRect ImageDrawRoundRect ImageDrawText ImageFlip ImageGetBlob ImageGetBufferedImage ' + + 'ImageGetEXIFTag ImageGetHeight ImageGetIPTCTag ImageGetWidth ImageGrayscale ImageInfo ImageNegative ImageNew ImageOverlay ImagePaste ' + + 'ImageRead ImageReadBase64 ImageResize ImageRotate ImageRotateDrawingAxis ImageScaleToFit ImageSetAntialiasing ImageSetBackgroundColor ' + + 'ImageSetDrawingColor ImageSetDrawingStroke ImageSetDrawingTransparency ImageSharpen ImageShear ImageShearDrawingAxis ImageTranslate ' + + 'ImageTranslateDrawingAxis ImageWrite ImageWriteBase64 ImageXORDrawingMode IncrementValue InputBaseN Insert Int IsArray IsBinary ' + + 'IsBoolean IsCustomFunction IsDate IsDDX IsDebugMode IsDefined IsImage IsImageFile IsInstanceOf IsJSON IsLeapYear IsLocalHost ' + + 'IsNumeric IsNumericDate IsObject IsPDFFile IsPDFObject IsQuery IsSimpleValue IsSOAPRequest IsStruct IsUserInAnyRole IsUserInRole ' + + 'IsUserLoggedIn IsValid IsWDDX IsXML IsXmlAttribute IsXmlDoc IsXmlElem IsXmlNode IsXmlRoot JavaCast JSStringFormat LCase Left Len ' + + 'ListAppend ListChangeDelims ListContains ListContainsNoCase ListDeleteAt ListFind ListFindNoCase ListFirst ListGetAt ListInsertAt ' + + 'ListLast ListLen ListPrepend ListQualify ListRest ListSetAt ListSort ListToArray ListValueCount ListValueCountNoCase LJustify Log ' + + 'Log10 LSCurrencyFormat LSDateFormat LSEuroCurrencyFormat LSIsCurrency LSIsDate LSIsNumeric LSNumberFormat LSParseCurrency LSParseDateTime ' + + 'LSParseEuroCurrency LSParseNumber LSTimeFormat LTrim Max Mid Min Minute Month MonthAsString Now NumberFormat ParagraphFormat ParseDateTime ' + + 'Pi PrecisionEvaluate PreserveSingleQuotes Quarter QueryAddColumn QueryAddRow QueryConvertForGrid QueryNew QuerySetCell QuotedValueList Rand ' + + 'Randomize RandRange REFind REFindNoCase ReleaseComObject REMatch REMatchNoCase RemoveChars RepeatString Replace ReplaceList ReplaceNoCase ' + + 'REReplace REReplaceNoCase Reverse Right RJustify Round RTrim Second SendGatewayMessage SerializeJSON SetEncoding SetLocale SetProfileString ' + + 'SetVariable Sgn Sin Sleep SpanExcluding SpanIncluding Sqr StripCR StructAppend StructClear StructCopy StructCount StructDelete StructFind ' + + 'StructFindKey StructFindValue StructGet StructInsert StructIsEmpty StructKeyArray StructKeyExists StructKeyList StructKeyList StructNew ' + + 'StructSort StructUpdate Tan TimeFormat ToBase64 ToBinary ToScript ToString Trim UCase URLDecode URLEncodedFormat URLSessionFormat Val ' + + 'ValueList VerifyClient Week Wrap Wrap WriteOutput XmlChildPos XmlElemNew XmlFormat XmlGetNodeType XmlNew XmlParse XmlSearch XmlTransform ' + + 'XmlValidate Year YesNoFormat'; + + var keywords = 'cfabort cfajaximport cfajaxproxy cfapplet cfapplication cfargument cfassociate cfbreak cfcache cfcalendar ' + + 'cfcase cfcatch cfchart cfchartdata cfchartseries cfcol cfcollection cfcomponent cfcontent cfcookie cfdbinfo ' + + 'cfdefaultcase cfdirectory cfdiv cfdocument cfdocumentitem cfdocumentsection cfdump cfelse cfelseif cferror ' + + 'cfexchangecalendar cfexchangeconnection cfexchangecontact cfexchangefilter cfexchangemail cfexchangetask ' + + 'cfexecute cfexit cffeed cffile cfflush cfform cfformgroup cfformitem cfftp cffunction cfgrid cfgridcolumn ' + + 'cfgridrow cfgridupdate cfheader cfhtmlhead cfhttp cfhttpparam cfif cfimage cfimport cfinclude cfindex ' + + 'cfinput cfinsert cfinterface cfinvoke cfinvokeargument cflayout cflayoutarea cfldap cflocation cflock cflog ' + + 'cflogin cfloginuser cflogout cfloop cfmail cfmailparam cfmailpart cfmenu cfmenuitem cfmodule cfNTauthenticate ' + + 'cfobject cfobjectcache cfoutput cfparam cfpdf cfpdfform cfpdfformparam cfpdfparam cfpdfsubform cfpod cfpop ' + + 'cfpresentation cfpresentationslide cfpresenter cfprint cfprocessingdirective cfprocparam cfprocresult ' + + 'cfproperty cfquery cfqueryparam cfregistry cfreport cfreportparam cfrethrow cfreturn cfsavecontent cfschedule ' + + 'cfscript cfsearch cfselect cfset cfsetting cfsilent cfslider cfsprydataset cfstoredproc cfswitch cftable ' + + 'cftextarea cfthread cfthrow cftimer cftooltip cftrace cftransaction cftree cftreeitem cftry cfupdate cfwddx ' + + 'cfwindow cfxml cfzip cfzipparam'; + + var operators = 'all and any between cross in join like not null or outer some'; + + this.regexList = [ + { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments + { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions + { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword + ]; +} + +SyntaxHighlighter.brushes.ColdFusion.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.ColdFusion.aliases = ['coldfusion','cf']; + +/* ========= */ + +SyntaxHighlighter.brushes.Cpp = function() +{ + // Copyright 2006 Shin, YoungJin + + var datatypes = 'ATOM BOOL BOOLEAN BYTE CHAR COLORREF DWORD DWORDLONG DWORD_PTR ' + + 'DWORD32 DWORD64 FLOAT HACCEL HALF_PTR HANDLE HBITMAP HBRUSH ' + + 'HCOLORSPACE HCONV HCONVLIST HCURSOR HDC HDDEDATA HDESK HDROP HDWP ' + + 'HENHMETAFILE HFILE HFONT HGDIOBJ HGLOBAL HHOOK HICON HINSTANCE HKEY ' + + 'HKL HLOCAL HMENU HMETAFILE HMODULE HMONITOR HPALETTE HPEN HRESULT ' + + 'HRGN HRSRC HSZ HWINSTA HWND INT INT_PTR INT32 INT64 LANGID LCID LCTYPE ' + + 'LGRPID LONG LONGLONG LONG_PTR LONG32 LONG64 LPARAM LPBOOL LPBYTE LPCOLORREF ' + + 'LPCSTR LPCTSTR LPCVOID LPCWSTR LPDWORD LPHANDLE LPINT LPLONG LPSTR LPTSTR ' + + 'LPVOID LPWORD LPWSTR LRESULT PBOOL PBOOLEAN PBYTE PCHAR PCSTR PCTSTR PCWSTR ' + + 'PDWORDLONG PDWORD_PTR PDWORD32 PDWORD64 PFLOAT PHALF_PTR PHANDLE PHKEY PINT ' + + 'PINT_PTR PINT32 PINT64 PLCID PLONG PLONGLONG PLONG_PTR PLONG32 PLONG64 POINTER_32 ' + + 'POINTER_64 PSHORT PSIZE_T PSSIZE_T PSTR PTBYTE PTCHAR PTSTR PUCHAR PUHALF_PTR ' + + 'PUINT PUINT_PTR PUINT32 PUINT64 PULONG PULONGLONG PULONG_PTR PULONG32 PULONG64 ' + + 'PUSHORT PVOID PWCHAR PWORD PWSTR SC_HANDLE SC_LOCK SERVICE_STATUS_HANDLE SHORT ' + + 'SIZE_T SSIZE_T TBYTE TCHAR UCHAR UHALF_PTR UINT UINT_PTR UINT32 UINT64 ULONG ' + + 'ULONGLONG ULONG_PTR ULONG32 ULONG64 USHORT USN VOID WCHAR WORD WPARAM WPARAM WPARAM ' + + 'char bool short int __int32 __int64 __int8 __int16 long float double __wchar_t ' + + 'clock_t _complex _dev_t _diskfree_t div_t ldiv_t _exception _EXCEPTION_POINTERS ' + + 'FILE _finddata_t _finddatai64_t _wfinddata_t _wfinddatai64_t __finddata64_t ' + + '__wfinddata64_t _FPIEEE_RECORD fpos_t _HEAPINFO _HFILE lconv intptr_t ' + + 'jmp_buf mbstate_t _off_t _onexit_t _PNH ptrdiff_t _purecall_handler ' + + 'sig_atomic_t size_t _stat __stat64 _stati64 terminate_function ' + + 'time_t __time64_t _timeb __timeb64 tm uintptr_t _utimbuf ' + + 'va_list wchar_t wctrans_t wctype_t wint_t signed'; + + var keywords = 'break case catch class const __finally __exception __try ' + + 'const_cast continue private public protected __declspec ' + + 'default delete deprecated dllexport dllimport do dynamic_cast ' + + 'else enum explicit extern if for friend goto inline ' + + 'mutable naked namespace new noinline noreturn nothrow ' + + 'register reinterpret_cast return selectany ' + + 'sizeof static static_cast struct switch template this ' + + 'thread throw true false try typedef typeid typename union ' + + 'using uuid virtual void volatile whcar_t while'; + + var functions = 'assert isalnum isalpha iscntrl isdigit isgraph islower isprint' + + 'ispunct isspace isupper isxdigit tolower toupper errno localeconv ' + + 'setlocale acos asin atan atan2 ceil cos cosh exp fabs floor fmod ' + + 'frexp ldexp log log10 modf pow sin sinh sqrt tan tanh jmp_buf ' + + 'longjmp setjmp raise signal sig_atomic_t va_arg va_end va_start ' + + 'clearerr fclose feof ferror fflush fgetc fgetpos fgets fopen ' + + 'fprintf fputc fputs fread freopen fscanf fseek fsetpos ftell ' + + 'fwrite getc getchar gets perror printf putc putchar puts remove ' + + 'rename rewind scanf setbuf setvbuf sprintf sscanf tmpfile tmpnam ' + + 'ungetc vfprintf vprintf vsprintf abort abs atexit atof atoi atol ' + + 'bsearch calloc div exit free getenv labs ldiv malloc mblen mbstowcs ' + + 'mbtowc qsort rand realloc srand strtod strtol strtoul system ' + + 'wcstombs wctomb memchr memcmp memcpy memmove memset strcat strchr ' + + 'strcmp strcoll strcpy strcspn strerror strlen strncat strncmp ' + + 'strncpy strpbrk strrchr strspn strstr strtok strxfrm asctime ' + + 'clock ctime difftime gmtime localtime mktime strftime time'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /^ *#.*/gm, css: 'preprocessor' }, + { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'color1 bold' }, + { regex: new RegExp(this.getKeywords(functions), 'gm'), css: 'functions bold' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword bold' } + ]; +}; + +SyntaxHighlighter.brushes.Cpp.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Cpp.aliases = ['cpp', 'c']; + +/* ========= */ + +SyntaxHighlighter.brushes.CSharp = function() +{ + var keywords = 'abstract as base bool break byte case catch char checked class const ' + + 'continue decimal default delegate do double else enum event explicit ' + + 'extern false finally fixed float for foreach get goto if implicit in int ' + + 'interface internal is lock long namespace new null object operator out ' + + 'override params private protected public readonly ref return sbyte sealed set ' + + 'short sizeof stackalloc static string struct switch this throw true try ' + + 'typeof uint ulong unchecked unsafe ushort using virtual void while'; + + function fixComments(match, regexInfo) + { + var css = (match[0].indexOf("///") == 0) + ? 'color1' + : 'comments' + ; + + return [new SyntaxHighlighter.Match(match[0], match.index, css)]; + } + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, func : fixComments }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword + { regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keyword: 'partial' + { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield' + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.CSharp.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.CSharp.aliases = ['c#', 'c-sharp', 'csharp']; + +/* ========= */ + +SyntaxHighlighter.brushes.CSS = function() +{ + function getKeywordsCSS(str) + { + return '\\b([a-z_]|)' + str.replace(/ /g, '(?=:)\\b|\\b([a-z_\\*]|\\*|)') + '(?=:)\\b'; + }; + + function getValuesCSS(str) + { + return '\\b' + str.replace(/ /g, '(?!-)(?!:)\\b|\\b()') + '\:\\b'; + }; + + var keywords = 'ascent azimuth background-attachment background-color background-image background-position ' + + 'background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top ' + + 'border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color ' + + 'border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width ' + + 'border-bottom-width border-left-width border-width border bottom cap-height caption-side centerline clear clip color ' + + 'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display ' + + 'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font ' + + 'height left letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top ' + + 'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width orphans ' + + 'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page ' + + 'page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position ' + + 'quotes right richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress ' + + 'table-layout text-align top text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em ' + + 'vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index'; + + var values = 'above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder '+ + 'both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed '+ + 'continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero default digits disc dotted double '+ + 'embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia '+ + 'gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic '+ + 'justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha '+ + 'lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower '+ + 'navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset '+ + 'outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side '+ + 'rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow '+ + 'small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize '+ + 'table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal '+ + 'text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin '+ + 'upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow'; + + var fonts = '[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif [cC]ourier mono sans serif'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors + { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes + { regex: /!important/g, css: 'color3' }, // !important + { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values + { regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts + ]; + + this.forHtmlScript({ + left: /(<|<)\s*style.*?(>|>)/gi, + right: /(<|<)\/\s*style\s*(>|>)/gi + }); +}; + +SyntaxHighlighter.brushes.CSS.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.CSS.aliases = ['css']; + +/* ========= */ + +SyntaxHighlighter.brushes.Delphi = function() +{ + var keywords = 'abs addr and ansichar ansistring array as asm begin boolean byte cardinal ' + + 'case char class comp const constructor currency destructor div do double ' + + 'downto else end except exports extended false file finalization finally ' + + 'for function goto if implementation in inherited int64 initialization ' + + 'integer interface is label library longint longword mod nil not object ' + + 'of on or packed pansichar pansistring pchar pcurrency pdatetime pextended ' + + 'pint64 pointer private procedure program property pshortstring pstring ' + + 'pvariant pwidechar pwidestring protected public published raise real real48 ' + + 'record repeat set shl shortint shortstring shr single smallint string then ' + + 'threadvar to true try type unit until uses val var varirnt while widechar ' + + 'widestring with word write writeln xor'; + + this.regexList = [ + { regex: /\(\*[\s\S]*?\*\)/gm, css: 'comments' }, // multiline comments (* *) + { regex: /{(?!\$)[\s\S]*?}/gm, css: 'comments' }, // multiline comments { } + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /\{\$[a-zA-Z]+ .+\}/g, css: 'color1' }, // compiler Directives and Region tags + { regex: /\b[\d\.]+\b/g, css: 'value' }, // numbers 12345 + { regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // numbers $F5D3 + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword + ]; +}; + +SyntaxHighlighter.brushes.Delphi.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Delphi.aliases = ['delphi', 'pascal', 'pas']; + +/* ========= */ + +SyntaxHighlighter.brushes.Diff = function() +{ + this.regexList = [ + { regex: /^\+\+\+.*$/gm, css: 'color2' }, + { regex: /^\-\-\-.*$/gm, css: 'color2' }, + { regex: /^\s.*$/gm, css: 'color1' }, + { regex: /^@@.*@@$/gm, css: 'variable' }, + { regex: /^\+[^\+]{1}.*$/gm, css: 'string' }, + { regex: /^\-[^\-]{1}.*$/gm, css: 'comments' } + ]; +}; + +SyntaxHighlighter.brushes.Diff.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Diff.aliases = ['diff', 'patch']; + +/* ========= */ + +SyntaxHighlighter.brushes.Erlang = function() +{ + // Contributed by Jean-Lou Dupont + // http://jldupont.blogspot.com/2009/06/erlang-syntax-highlighter.html + + // According to: http://erlang.org/doc/reference_manual/introduction.html#1.5 + var keywords = 'after and andalso band begin bnot bor bsl bsr bxor '+ + 'case catch cond div end fun if let not of or orelse '+ + 'query receive rem try when xor'+ + // additional + ' module export import define'; + + this.regexList = [ + { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' }, + { regex: new RegExp("\\%.+", 'gm'), css: 'comments' }, + { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' }, + { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' }, + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; +}; + +SyntaxHighlighter.brushes.Erlang.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Erlang.aliases = ['erl', 'erlang']; + +/* ========= */ + +SyntaxHighlighter.brushes.Groovy = function() +{ + // Contributed by Andres Almiray + // http://jroller.com/aalmiray/entry/nice_source_code_syntax_highlighter + + var keywords = 'as assert break case catch class continue def default do else extends finally ' + + 'if in implements import instanceof interface new package property return switch ' + + 'throw throws try while public protected private static'; + var types = 'void boolean byte char short int long float double'; + var constants = 'null'; + var methods = 'allProperties count get size '+ + 'collect each eachProperty eachPropertyName eachWithIndex find findAll ' + + 'findIndexOf grep inject max min reverseEach sort ' + + 'asImmutable asSynchronized flatten intersect join pop reverse subMap toList ' + + 'padRight padLeft contains eachMatch toCharacter toLong toUrl tokenize ' + + 'eachFile eachFileRecurse eachB yte eachLine readBytes readLine getText ' + + 'splitEachLine withReader append encodeBase64 decodeBase64 filterLine ' + + 'transformChar transformLine withOutputStream withPrintWriter withStream ' + + 'withStreams withWriter withWriterAppend write writeLine '+ + 'dump inspect invokeMethod print println step times upto use waitForOrKill '+ + 'getText'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /""".*"""/g, css: 'string' }, // GStrings + { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'value' }, // numbers + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // goovy keyword + { regex: new RegExp(this.getKeywords(types), 'gm'), css: 'color1' }, // goovy/java type + { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, // constants + { regex: new RegExp(this.getKeywords(methods), 'gm'), css: 'functions' } // methods + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +} + +SyntaxHighlighter.brushes.Groovy.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Groovy.aliases = ['groovy']; + +/* ========= */ + +SyntaxHighlighter.brushes.Java = function() +{ + var keywords = 'abstract assert boolean break byte case catch char class const ' + + 'continue default do double else enum extends ' + + 'false final finally float for goto if implements import ' + + 'instanceof int interface long native new null ' + + 'package private protected public return ' + + 'short static strictfp super switch synchronized this throw throws true ' + + 'transient try void volatile while'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: /\/\*([^\*][\s\S]*)?\*\//gm, css: 'comments' }, // multiline comments + { regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm, css: 'preprocessor' }, // documentation comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers + { regex: /(?!\@interface\b)\@[\$\w]+\b/g, css: 'color1' }, // annotation @anno + { regex: /\@interface\b/g, css: 'color2' }, // @interface keyword + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // java keyword + ]; + + this.forHtmlScript({ + left : /(<|<)%[@!=]?/g, + right : /%(>|>)/g + }); +}; + +SyntaxHighlighter.brushes.Java.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Java.aliases = ['java']; + +/* ========= */ + +SyntaxHighlighter.brushes.JavaFX = function() +{ + // Contributed by Patrick Webster + // http://patrickwebster.blogspot.com/2009/04/javafx-brush-for-syntaxhighlighter.html + var datatypes = 'Boolean Byte Character Double Duration ' + + 'Float Integer Long Number Short String Void' + ; + + var keywords = 'abstract after and as assert at before bind bound break catch class ' + + 'continue def delete else exclusive extends false finally first for from ' + + 'function if import in indexof init insert instanceof into inverse last ' + + 'lazy mixin mod nativearray new not null on or override package postinit ' + + 'protected public public-init public-read replace return reverse sizeof ' + + 'step super then this throw true try tween typeof var where while with ' + + 'attribute let private readonly static trigger' + ; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // numbers + { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.JavaFX.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.JavaFX.aliases = ['jfx', 'javafx']; + +/* ========= */ + +SyntaxHighlighter.brushes.JScript = function() +{ + var keywords = 'break case catch continue ' + + 'default delete do else false ' + + 'for function if in instanceof ' + + 'new null return super switch ' + + 'this throw true try typeof var while with' + ; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.scriptScriptTags); +}; + +SyntaxHighlighter.brushes.JScript.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.JScript.aliases = ['js', 'jscript', 'javascript']; + +/* ========= */ + +SyntaxHighlighter.brushes.Perl = function() +{ + // Contributed by David Simmons-Duffin and Marty Kube + + var funcs = + 'abs accept alarm atan2 bind binmode chdir chmod chomp chop chown chr ' + + 'chroot close closedir connect cos crypt defined delete each endgrent ' + + 'endhostent endnetent endprotoent endpwent endservent eof exec exists ' + + 'exp fcntl fileno flock fork format formline getc getgrent getgrgid ' + + 'getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr ' + + 'getnetbyname getnetent getpeername getpgrp getppid getpriority ' + + 'getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid ' + + 'getservbyname getservbyport getservent getsockname getsockopt glob ' + + 'gmtime grep hex index int ioctl join keys kill lc lcfirst length link ' + + 'listen localtime lock log lstat map mkdir msgctl msgget msgrcv msgsnd ' + + 'oct open opendir ord pack pipe pop pos print printf prototype push ' + + 'quotemeta rand read readdir readline readlink readpipe recv rename ' + + 'reset reverse rewinddir rindex rmdir scalar seek seekdir select semctl ' + + 'semget semop send setgrent sethostent setnetent setpgrp setpriority ' + + 'setprotoent setpwent setservent setsockopt shift shmctl shmget shmread ' + + 'shmwrite shutdown sin sleep socket socketpair sort splice split sprintf ' + + 'sqrt srand stat study substr symlink syscall sysopen sysread sysseek ' + + 'system syswrite tell telldir time times tr truncate uc ucfirst umask ' + + 'undef unlink unpack unshift utime values vec wait waitpid warn write'; + + var keywords = + 'bless caller continue dbmclose dbmopen die do dump else elsif eval exit ' + + 'for foreach goto if import last local my next no our package redo ref ' + + 'require return sub tie tied unless untie until use wantarray while'; + + this.regexList = [ + { regex: new RegExp('#[^!].*$', 'gm'), css: 'comments' }, + { regex: new RegExp('^\\s*#!.*$', 'gm'), css: 'preprocessor' }, // shebang + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, + { regex: new RegExp('(\\$|@|%)\\w+', 'g'), css: 'variable' }, + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.phpScriptTags); +} + +SyntaxHighlighter.brushes.Perl.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Perl.aliases = ['perl', 'Perl', 'pl']; + +/* ========= */ + +SyntaxHighlighter.brushes.Php = function() +{ + var funcs = 'abs acos acosh addcslashes addslashes ' + + 'array_change_key_case array_chunk array_combine array_count_values array_diff '+ + 'array_diff_assoc array_diff_key array_diff_uassoc array_diff_ukey array_fill '+ + 'array_filter array_flip array_intersect array_intersect_assoc array_intersect_key '+ + 'array_intersect_uassoc array_intersect_ukey array_key_exists array_keys array_map '+ + 'array_merge array_merge_recursive array_multisort array_pad array_pop array_product '+ + 'array_push array_rand array_reduce array_reverse array_search array_shift '+ + 'array_slice array_splice array_sum array_udiff array_udiff_assoc '+ + 'array_udiff_uassoc array_uintersect array_uintersect_assoc '+ + 'array_uintersect_uassoc array_unique array_unshift array_values array_walk '+ + 'array_walk_recursive atan atan2 atanh base64_decode base64_encode base_convert '+ + 'basename bcadd bccomp bcdiv bcmod bcmul bindec bindtextdomain bzclose bzcompress '+ + 'bzdecompress bzerrno bzerror bzerrstr bzflush bzopen bzread bzwrite ceil chdir '+ + 'checkdate checkdnsrr chgrp chmod chop chown chr chroot chunk_split class_exists '+ + 'closedir closelog copy cos cosh count count_chars date decbin dechex decoct '+ + 'deg2rad delete ebcdic2ascii echo empty end ereg ereg_replace eregi eregi_replace error_log '+ + 'error_reporting escapeshellarg escapeshellcmd eval exec exit exp explode extension_loaded '+ + 'feof fflush fgetc fgetcsv fgets fgetss file_exists file_get_contents file_put_contents '+ + 'fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype '+ + 'floatval flock floor flush fmod fnmatch fopen fpassthru fprintf fputcsv fputs fread fscanf '+ + 'fseek fsockopen fstat ftell ftok getallheaders getcwd getdate getenv gethostbyaddr gethostbyname '+ + 'gethostbynamel getimagesize getlastmod getmxrr getmygid getmyinode getmypid getmyuid getopt '+ + 'getprotobyname getprotobynumber getrandmax getrusage getservbyname getservbyport gettext '+ + 'gettimeofday gettype glob gmdate gmmktime ini_alter ini_get ini_get_all ini_restore ini_set '+ + 'interface_exists intval ip2long is_a is_array is_bool is_callable is_dir is_double '+ + 'is_executable is_file is_finite is_float is_infinite is_int is_integer is_link is_long '+ + 'is_nan is_null is_numeric is_object is_readable is_real is_resource is_scalar is_soap_fault '+ + 'is_string is_subclass_of is_uploaded_file is_writable is_writeable mkdir mktime nl2br '+ + 'parse_ini_file parse_str parse_url passthru pathinfo readlink realpath rewind rewinddir rmdir '+ + 'round str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split '+ + 'str_word_count strcasecmp strchr strcmp strcoll strcspn strftime strip_tags stripcslashes '+ + 'stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk '+ + 'strpos strptime strrchr strrev strripos strrpos strspn strstr strtok strtolower strtotime '+ + 'strtoupper strtr strval substr substr_compare'; + + var keywords = 'and or xor array as break case ' + + 'cfunction class const continue declare default die do else ' + + 'elseif enddeclare endfor endforeach endif endswitch endwhile ' + + 'extends for foreach function include include_once global if ' + + 'new old_function return static switch use require require_once ' + + 'var while abstract interface public implements extends private protected throw'; + + var constants = '__FILE__ __LINE__ __METHOD__ __FUNCTION__ __CLASS__'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\$\w+/g, css: 'variable' }, // variables + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // common functions + { regex: new RegExp(this.getKeywords(constants), 'gmi'), css: 'constants' }, // constants + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keyword + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.phpScriptTags); +}; + +SyntaxHighlighter.brushes.Php.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Php.aliases = ['php']; + +/* ========= */ + +SyntaxHighlighter.brushes.Plain = function() +{ +}; + +SyntaxHighlighter.brushes.Plain.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Plain.aliases = ['text', 'plain']; + +/* ========= */ + +SyntaxHighlighter.brushes.PowerShell = function() +{ + // Contributes by B.v.Zanten, Getronics + // http://confluence.atlassian.com/display/CONFEXT/New+Code+Macro + + var keywords = 'Add-Content Add-History Add-Member Add-PSSnapin Clear(-Content)? Clear-Item ' + + 'Clear-ItemProperty Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ' + + 'ConvertTo-Html ConvertTo-SecureString Copy(-Item)? Copy-ItemProperty Export-Alias ' + + 'Export-Clixml Export-Console Export-Csv ForEach(-Object)? Format-Custom Format-List ' + + 'Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command ' + + 'Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy ' + + 'Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member ' + + 'Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service ' + + 'Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object ' + + 'Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item ' + + 'Join-Path Measure-Command Measure-Object Move(-Item)? Move-ItemProperty New-Alias ' + + 'New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan ' + + 'New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location ' + + 'Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin ' + + 'Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service ' + + 'Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content ' + + 'Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug ' + + 'Set-Service Set-TraceSource Set(-Variable)? Sort-Object Split-Path Start-Service ' + + 'Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service ' + + 'Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where(-Object)? ' + + 'Write-Debug Write-Error Write(-Host)? Write-Output Write-Progress Write-Verbose Write-Warning'; + var alias = 'ac asnp clc cli clp clv cpi cpp cvpa diff epal epcsv fc fl ' + + 'ft fw gal gc gci gcm gdr ghy gi gl gm gp gps group gsv ' + + 'gsnp gu gv gwmi iex ihy ii ipal ipcsv mi mp nal ndr ni nv oh rdr ' + + 'ri rni rnp rp rsnp rv rvpa sal sasv sc select si sl sleep sort sp ' + + 'spps spsv sv tee cat cd cp h history kill lp ls ' + + 'mount mv popd ps pushd pwd r rm rmdir echo cls chdir del dir ' + + 'erase rd ren type % \\?'; + + this.regexList = [ + { regex: /#.*$/gm, css: 'comments' }, // one line comments + { regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // variables $Computer1 + { regex: /\-[a-zA-Z]+\b/g, css: 'keyword' }, // Operators -not -and -eq + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(alias), 'gmi'), css: 'keyword' } + ]; +}; + +SyntaxHighlighter.brushes.PowerShell.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.PowerShell.aliases = ['powershell', 'ps']; + +/* ========= */ + +SyntaxHighlighter.brushes.Python = function() +{ + // Contributed by Gheorghe Milas and Ahmad Sherif + + var keywords = 'and assert break class continue def del elif else ' + + 'except exec finally for from global if import in is ' + + 'lambda not or pass print raise return try yield while'; + + var funcs = '__import__ abs all any apply basestring bin bool buffer callable ' + + 'chr classmethod cmp coerce compile complex delattr dict dir ' + + 'divmod enumerate eval execfile file filter float format frozenset ' + + 'getattr globals hasattr hash help hex id input int intern ' + + 'isinstance issubclass iter len list locals long map max min next ' + + 'object oct open ord pow print property range raw_input reduce ' + + 'reload repr reversed round set setattr slice sorted staticmethod ' + + 'str sum super tuple type type unichr unicode vars xrange zip'; + + var special = 'None True False self cls class_'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, + { regex: /^\s*@\w+/gm, css: 'decorator' }, + { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' }, + { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' }, + { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' }, + { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' }, + { regex: /\b\d+\.?\w*/g, css: 'value' }, + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, + { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' } + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.Python.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Python.aliases = ['py', 'python']; + +/* ========= */ + +SyntaxHighlighter.brushes.Ruby = function() +{ + // Contributed by Erik Peterson. + + var keywords = 'alias and BEGIN begin break case class def define_method defined do each else elsif ' + + 'END end ensure false for if in module new next nil not or raise redo rescue retry return ' + + 'self super then throw true undef unless until when while yield'; + + var builtins = 'Array Bignum Binding Class Continuation Dir Exception FalseClass File::Stat File Fixnum Fload ' + + 'Hash Integer IO MatchData Method Module NilClass Numeric Object Proc Range Regexp String Struct::TMS Symbol ' + + 'ThreadGroup Thread Time TrueClass'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings + { regex: /\b[A-Z0-9_]+\b/g, css: 'constants' }, // constants + { regex: /:[a-z][A-Za-z0-9_]*/g, css: 'color2' }, // symbols + { regex: /(\$|@@|@)\w+/g, css: 'variable bold' }, // $global, @instance, and @@class variables + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(this.getKeywords(builtins), 'gm'), css: 'color1' } // builtins + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.Ruby.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Ruby.aliases = ['ruby', 'rails', 'ror', 'rb']; + +/* ========= */ + +SyntaxHighlighter.brushes.Scala = function() +{ + // Contributed by Yegor Jbanov and David Bernard. + + var keywords = 'val sealed case def true trait implicit forSome import match object null finally super ' + + 'override try lazy for var catch throw type extends class while with new final yield abstract ' + + 'else do if return protected private this package false'; + + var keyops = '[_:=><%#@]+'; + + this.regexList = [ + { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments + { regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // multi-line strings + { regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double-quoted string + { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings + { regex: /0x[a-f0-9]+|\d+(\.\d+)?/gi, css: 'value' }, // numbers + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords + { regex: new RegExp(keyops, 'gm'), css: 'keyword' } // scala keyword + ]; +} + +SyntaxHighlighter.brushes.Scala.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Scala.aliases = ['scala']; + +/* ========= */ + +SyntaxHighlighter.brushes.Sql = function() +{ + var funcs = 'abs avg case cast coalesce convert count current_timestamp ' + + 'current_user day isnull left lower month nullif replace right ' + + 'session_user space substring sum system_user upper user year'; + + var keywords = 'absolute action add after alter as asc at authorization begin bigint ' + + 'binary bit by cascade char character check checkpoint close collate ' + + 'column commit committed connect connection constraint contains continue ' + + 'create cube current current_date current_time cursor database date ' + + 'deallocate dec decimal declare default delete desc distinct double drop ' + + 'dynamic else end end-exec escape except exec execute false fetch first ' + + 'float for force foreign forward free from full function global goto grant ' + + 'group grouping having hour ignore index inner insensitive insert instead ' + + 'int integer intersect into is isolation key last level load local max min ' + + 'minute modify move name national nchar next no numeric of off on only ' + + 'open option order out output partial password precision prepare primary ' + + 'prior privileges procedure public read real references relative repeatable ' + + 'restrict return returns revoke rollback rollup rows rule schema scroll ' + + 'second section select sequence serializable set size smallint static ' + + 'statistics table temp temporary then time timestamp to top transaction ' + + 'translation trigger true truncate uncommitted union unique update values ' + + 'varchar varying view when where with work'; + + var operators = 'all and any between cross in join like not null or outer some'; + + this.regexList = [ + { regex: /--(.*)$/gm, css: 'comments' }, // one line and multiline comments + { regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings + { regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single quoted strings + { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functions + { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such + { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword + ]; +}; + +SyntaxHighlighter.brushes.Sql.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Sql.aliases = ['sql']; + +/* ========= */ + +SyntaxHighlighter.brushes.Vb = function() +{ + var keywords = 'AddHandler AddressOf AndAlso Alias And Ansi As Assembly Auto ' + + 'Boolean ByRef Byte ByVal Call Case Catch CBool CByte CChar CDate ' + + 'CDec CDbl Char CInt Class CLng CObj Const CShort CSng CStr CType ' + + 'Date Decimal Declare Default Delegate Dim DirectCast Do Double Each ' + + 'Else ElseIf End Enum Erase Error Event Exit False Finally For Friend ' + + 'Function Get GetType GoSub GoTo Handles If Implements Imports In ' + + 'Inherits Integer Interface Is Let Lib Like Long Loop Me Mod Module ' + + 'MustInherit MustOverride MyBase MyClass Namespace New Next Not Nothing ' + + 'NotInheritable NotOverridable Object On Option Optional Or OrElse ' + + 'Overloads Overridable Overrides ParamArray Preserve Private Property ' + + 'Protected Public RaiseEvent ReadOnly ReDim REM RemoveHandler Resume ' + + 'Return Select Set Shadows Shared Short Single Static Step Stop String ' + + 'Structure Sub SyncLock Then Throw To True Try TypeOf Unicode Until ' + + 'Variant When While With WithEvents WriteOnly Xor'; + + this.regexList = [ + { regex: /'.*$/gm, css: 'comments' }, // one line comments + { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings + { regex: /^\s*#.*$/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion + { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // vb keyword + ]; + + this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags); +}; + +SyntaxHighlighter.brushes.Vb.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Vb.aliases = ['vb', 'vbnet']; + +/* ========= */ + +SyntaxHighlighter.brushes.Xml = function() +{ + function process(match, regexInfo) + { + var constructor = SyntaxHighlighter.Match, + code = match[0], + tag = new XRegExp('(<|<)[\\s\\/\\?]*(?[:\\w-\\.]+)', 'xg').exec(code), + result = [] + ; + + if (match.attributes != null) + { + var attributes, + regex = new XRegExp('(? [\\w:\\-\\.]+)' + + '\\s*=\\s*' + + '(? ".*?"|\'.*?\'|\\w+)', + 'xg'); + + while ((attributes = regex.exec(code)) != null) + { + result.push(new constructor(attributes.name, match.index + attributes.index, 'color1')); + result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string')); + } + } + + if (tag != null) + result.push( + new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword') + ); + + return result; + } + + this.regexList = [ + { regex: new XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' }, // + { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // + { regex: new XRegExp('(<|<)[\\s\\/\\?]*(\\w+)(?.*?)[\\s\\/\\?]*(>|>)', 'sg'), func: process } + ]; +}; + +SyntaxHighlighter.brushes.Xml.prototype = new SyntaxHighlighter.Highlighter(); +SyntaxHighlighter.brushes.Xml.aliases = ['xml', 'xhtml', 'xslt', 'html']; + +/* ========= */ \ No newline at end of file diff --git a/plugins/syntaxhighlight/scripts/shCore.js b/plugins/syntaxhighlight/scripts/shCore.js new file mode 100644 index 0000000..4fae581 --- /dev/null +++ b/plugins/syntaxhighlight/scripts/shCore.js @@ -0,0 +1,30 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('c(!1k.2G){h 2G=l(){h p={6b:{"1o-U":"","84-2d":1,"83-2d-82":I,"1M":v,"8z-8H":I,"1H-2L":4,"3j":I,"1y":I,"67":N,"8B-8o":I,"7X":N,"5h-1n":I,"1F-1m":N},M:{4Q:I,6f:v,5o:16,5k:16,8s:N,8G:N,89:"58",1g:{5p:"54 1j",5b:"9O 1j",5j:"9P 6k 6q",76:"9N C 9M 26 9J 6q 9K",3o:"3o",6F:"?",1x:"2G\\n\\n",6M:"9L\'t 9Q 2V D: ",86:"9R 9W\'t 9X D 1F-1m 9V: ",78:"<1F 9r=\\"2o://5x.6J.6u/9y/9z\\"><6y><9F 2o-9G=\\"9E-9D\\" 60=\\"1X/1F; 9A=9B-8\\" /><39>9C 2G<2Z 1t=\\"3H-9Z:an,ao,am,al-ai;aj-43:#ak;43:#ap;3H-2L:aq;1X-6z:6A;\\">2G6O 2.1.a5 (a6 24 a4)2o://6G.3xa1 a2 a7 f 1m, a8 8P 6k 8N 8R 8S!8W C 8V 8U.8X 8J-8K 8O 9h."},8C:N},1q:{4U:v,9g:v,3D:v,6g:{}},2n:{},8l:{9f:/\\/\\*[\\s\\S]*?\\*\\//3v,9d:/\\/\\/.*$/3v,9e:/#.*$/3v,9j:/"([^\\\\"\\n]|\\\\.)*"/g,9o:/\'([^\\\\\'\\n]|\\\\.)*\'/g,8Y:/"([^\\\\"]|\\\\.)*"/g,9m:/\'([^\\\\\']|\\\\.)*\'/g,9k:/(&X;|<)!--[\\s\\S]*?--(&Y;|>)/3v,3Q:/&X;\\w+:\\/\\/[\\w-.\\/?%&=@:;]*&Y;|\\w+:\\/\\/[\\w-.\\/?%&=@:;]*/g,9c:{F:/(&X;|<)\\?=?/g,19:/\\?(&Y;|>)/g},92:{F:/(&X;|<)%=?/g,19:/%(&Y;|>)/g},91:{F:/(&X;|<)\\s*1m.*?(&Y;|>)/4v,19:/(&X;|<)\\/\\s*1m\\s*(&Y;|>)/4v}},1y:{18:l(3f){h 3C=Q.1N("3c"),5s=p.1y.7d;3C.L="1y";D(h 35 26 5s){h 6h=5s[35],5r=W 6h(3f),1U=5r.18();3f.6a[35]=5r;c(1U==v){1J}c(7I(1U)=="90"){1U=p.1y.6l(1U,3f.1h,35)}1U.L+="5v "+35;3C.2u(1U)}q 3C},6l:l(5K,6m,5D){h a=Q.1N("a"),5M=a.1t,5u=p.M,5L=5u.5o,5N=5u.5k;a.1Q="#"+5D;a.39=5K;a.5g=6m;a.75=5D;a.27=5K;c(38(5L)==N){5M.1W=5L+"73"}c(38(5N)==N){5M.2s=5N+"73"}a.96=l(e){9n{p.1y.7a(f,e||1k.6V,f.5g,f.75)}97(e){p.A.1x(e.77)}q N};q a},7a:l(7f,7e,7b,7h,7c){h 5G=p.1q.6g[7b],5H;c(5G==v||(5H=5G.6a[7h])==v){q v}q 5H.2B(7f,7e,7c)},7d:{5p:l(59){f.18=l(){c(59.T("67")!=I){q}q p.M.1g.5p};f.2B=l(5a,8T,8M){h B=59.B;5a.8v.4u(5a);B.L=B.L.E("5O","")}},5b:l(71){f.18=l(){q p.M.1g.5b};f.2B=l(aV,bV,bW){h 3Y=p.A.3E(71.5f).E(/"+3Y+"");2t.Q.4c()}},5j:l(65){h 3k,bY,5i=65.1h;f.18=l(){h 2Q=p.M;c(2Q.6f==v){q v}l 1I(52){h 5e="";D(h 56 26 52){5e+=""}q 5e};l 2q(5l){h 5n="";D(h 5m 26 5l){5n+=" "+5m+"=\'"+5l[5m]+"\'"}q 5n};h 68={1W:2Q.5o,2s:2Q.5k,1h:5i+"c0",4j:"bQ/x-6Z-6U",39:p.M.1g.5j},5V={bP:"ay",bG:"bH",bF:"5g="+5i,bD:"N"},5W=2Q.6f,3O;c(/bI/i.1R(7j.6B)){3O="<4d"+2q({bJ:"bO:bN-bM-bK-bL-c4",cl:"2o://cj.c7.3x/ce/6Z/ck/6U/c9.ci#6O=9,0,0,0"})+2q(68)+">"+1I(5V)+1I({c8:5W})+""}G{3O=""}3k=Q.1N("B");3k.27=3O;q 3k};f.2B=l(co,cn,63){h 72=63.bA;6S(72){2O"7l":h 64=p.A.2I(p.A.3E(65.5f).E(/&X;/g,"<").E(/&Y;/g,">").E(/&aT;/g,"&"));c(1k.74){1k.74.aU("1X",64)}G{q p.A.2I(64)}2O"aS":p.A.1x(p.M.1g.76);2y;2O"aP":p.A.1x(63.77);2y}}},bB:l(61){f.18=l(){q p.M.1g.3o};f.2B=l(aW,b1,b2){h 29=Q.1N("b0"),1G=v;c(p.1q.3D!=v){Q.2Z.4u(p.1q.3D)}p.1q.3D=29;29.1t.aX="aY:aO;1W:6w;2s:6w;F:-6o;4G:-6o;";Q.2Z.2u(29);1G=29.5Z.Q;6D(1G,1k.Q);1G.3I(""+61.B.27+"");1G.4c();29.5Z.4Y();29.5Z.3o();l 6D(6I,6C){h 2E=6C.4D("4e");D(h i=0;i<2E.u;i++){c(2E[i].6i.70()=="6P"&&/aC\\.1a$/.1R(2E[i].1Q)){6I.3I("<4e 4j=\\"1X/1a\\" 6i=\\"6P\\" 1Q=\\""+2E[i].1Q+"\\">")}}}}},az:l(aA){f.18=l(){q p.M.1g.6F};f.2B=l(aG,aL){h 2t=p.A.4M("","44",aK,aJ,"6s=0"),1G=2t.Q;1G.3I(p.M.1g.78);1G.4c();2t.4Y()}}}},A:{Z:l(4a,6L,3U){3U=3w.aH(3U||0,0);D(h i=3U;i<4a.u;i++){c(4a[i]==6L){q i}}q-1},6d:l(7g){q 7g+3w.aI(3w.b3()*b4).2h()},6c:l(47,46){h 3m={},28;D(28 26 47){3m[28]=47[28]}D(28 26 46){3m[28]=46[28]}q 3m},7t:l(4L){6S(4L){2O"I":q I;2O"N":q N}q 4L},4M:l(3Q,6W,4H,4O,2R){h x=(6T.1W-4H)/2,y=(6T.2s-4O)/2;2R+=", F="+x+", 4G="+y+", 1W="+4H+", 2s="+4O;2R=2R.E(/^,/,"");h 4V=1k.bn(3Q,6W,2R);4V.4Y();q 4V},7y:l(1E,1Y,1Z){c(1E.6X){1E["e"+1Y+1Z]=1Z;1E[1Y+1Z]=l(){1E["e"+1Y+1Z](1k.6V)};1E.6X("bt"+1Y,1E[1Y+1Z])}G{1E.by(1Y,1Z,N)}},1x:l(z){1x(p.M.1g.1x+z)},4P:l(4h,6N){h 2w=p.1q.4U,3W=v;c(2w==v){2w={};D(h 2W 26 p.2n){h 3g=p.2n[2W].bx;c(3g==v){1J}p.2n[2W].U=2W.70();D(h i=0;i<3g.u;i++){2w[3g[i]]=2W}}p.1q.4U=2w}3W=p.2n[2w[4h]];c(3W==v&&6N!=N){p.A.1x(p.M.1g.6M+4h)}q 3W},4x:l(z,6Q){h 2C=z.1O("\\n");D(h i=0;i<2C.u;i++){2C[i]=6Q(2C[i])}q 2C.5A("\\n")},7A:l(z){q z.E(/^[ ]*[\\n]+|[\\n]*[ ]*$/g,"")},8b:l(z){h 42,4E={},4S=W V("^\\\\[(?<4T>(.*?))\\\\]$"),6R=W V("(?[\\\\w-]+)"+"\\\\s*:\\\\s*"+"(?<23>"+"[\\\\w-%#]+|"+"\\\\[.*?\\\\]|"+"\\".*?\\"|"+"\'.*?\'"+")\\\\s*;?","g");2r((42=6R.R(z))!=v){h 2f=42.23.E(/^[\'"]|[\'"]$/g,"");c(2f!=v&&4S.1R(2f)){h m=4S.R(2f);2f=m.4T.u>0?m.4T.1O(/\\s*,\\s*/):[]}4E[42.U]=2f}q 4E},7Q:l(z,1a){c(z==v||z.u==0||z=="\\n"){q z}z=z.E(/"+2j+""})}q z},81:l(79,7i){h 34=79.2h();2r(34.u<7i){34="0"+34}q 34},6p:l(){h 40=Q.1N("B"),3J,3i=0,4y=Q.2Z,1h=p.A.6d("6p"),36="",4A="";40.27=36+"6e\\">"+36+"1n\\">"+36+"2d\\">"+36+"60"+"\\"><4t 1o=\\"b7\\"><4t 1h=\\""+1h+"\\">&2m;"+4A+4A+33+33+33+33;4y.2u(40);3J=Q.b6(1h);c(/bb/i.1R(7j.6B)){h 6v=1k.bh(3J,v);3i=80(6v.bg("1W"))}G{3i=3J.bd}4y.4u(40);q 3i},8c:l(6n,6K){h 1H="";D(h i=0;i<6K;i++){1H+=" "}q 6n.E(/\\t/g,1H)},8D:l(2F,4w){h be=2F.1O("\\n"),1H="\\t",62="";D(h i=0;i<50;i++){62+=" "}l 8u(3n,17,8y){q 3n.22(0,17)+62.22(0,8y)+3n.22(17+1,3n.u)};2F=p.A.4x(2F,l(21){c(21.Z(1H)==-1){q 21}h 17=0;2r((17=21.Z(1H))!=-1){h 8r=4w-17%4w;21=8u(21,17,8r)}q 21});q 2F},3E:l(z){h br=/|&X;br\\s*\\/?&Y;/4v;c(p.M.8s==I){z=z.E(br,"\\n")}c(p.M.8G==I){z=z.E(br,"")}q z},2J:l(z){q z.E(/^\\s+|\\s+$/g,"")},2I:l(z){h 2a=p.A.3E(z).1O("\\n"),bf=W bi(),8g=/^\\s*/,20=bc;D(h i=0;i<2a.u&&20>0;i++){h 4z=2a[i];c(p.A.2J(4z).u==0){1J}h 4C=8g.R(4z);c(4C==v){q z}20=3w.20(4C[0].u,20)}c(20>0){D(h i=0;i<2a.u;i++){2a[i]=2a[i].22(20)}}q 2a.5A("\\n")},7W:l(31,30){c(31.H<30.H){q-1}G{c(31.H>30.H){q 1}G{c(31.u<30.u){q-1}G{c(31.u>30.u){q 1}}}}q 0},2S:l(8i,2Y){l 8p(4B,87){q[W p.4W(4B[0],4B.H,87.1a)]};h b5=0,4s=v,3Z=[],8h=2Y.4K?2Y.4K:8p;2r((4s=2Y.3K.R(8i))!=v){3Z=3Z.2l(8h(4s,2Y))}q 3Z},8m:l(8k){h X="&X;",Y="&Y;";q 8k.E(p.8l.3Q,l(m){h 4k="",4l="";c(m.Z(X)==0){4l=X;m=m.3M(X.u)}c(m.Z(Y)==m.u-Y.u){m=m.3M(0,m.u-Y.u);4k=Y}q 4l+""+m+""+4k})},8a:l(){h 3G=Q.4D("1m"),4i=[];D(h i=0;i<3G.u;i++){c(3G[i].4j=="6e"){4i.K(3G[i])}}q 4i},8t:l(4n){h 4m="",1u=p.A.2J(4n),3L=N;c(1u.Z(4m)==0){1u=1u.3M(4m.u);3L=I}c(1u.Z(3P)==1u.u-3P.u){1u=1u.3M(0,1u.u-3P.u);3L=I}q 3L?1u:4n}},1M:l(8e,4p){l 8f(4r){h 4q=[];D(h i=0;i<4r.u;i++){4q.K(4r[i])}q 4q};h 2k=4p?[4p]:8f(Q.4D(p.M.89)),8q="27",2v=v,4R=p.M;c(4R.4Q){2k=2k.2l(p.A.8a())}c(2k.u===0){q}D(h i=0;i<2k.u;i++){h 2T=2k[i],1T=p.A.8b(2T.L),1L,2D,1P;1T=p.A.6c(8e,1T);1L=1T["2V"];c(1L==v){1J}c(1T["1F-1m"]=="I"||p.6b["1F-1m"]==I){2v=W p.4b(1L);1L="b9"}G{h 3S=p.A.4P(1L);c(3S){1L=3S.U;2v=W 3S()}G{1J}}2D=2T[8q];c(4R.4Q){2D=p.A.8t(2D)}1T["2V-U"]=1L;2v.1M(2D,1T);1P=2v.B;c(p.M.8C){1P=Q.1N("bk");1P.23=2v.B.27;1P.1t.1W="bu";1P.1t.2s="bw"}2T.8v.bz(1P,2T)}},bs:l(7x){p.A.7y(1k,"bm",l(){p.1M(7x)})}};p.4W=l(4X,7B,1a){f.23=4X;f.H=7B;f.u=4X.u;f.1a=1a;f.5S=v};p.4W.1c.2h=l(){q f.23};p.4b=l(4F){h 3t=p.A.4P(4F),2p,4J=W p.2n.bl(),bo=v;c(3t==v){q}2p=W 3t();f.49=4J;c(2p.3N==v){p.A.1x(p.M.1g.86+4F);q}4J.5c.K({3K:2p.3N.C,4K:7E});l 3l(4N,7F){D(h j=0;j<4N.u;j++){4N[j].H+=7F}};l 7E(15,bq){h 7w=15.C,1l=[],4Z=2p.5c,7v=15.H+15.F.u,2P=2p.3N,1p;D(h i=0;i<4Z.u;i++){1p=p.A.2S(7w,4Z[i]);3l(1p,7v);1l=1l.2l(1p)}c(2P.F!=v&&15.F!=v){1p=p.A.2S(15.F,2P.F);3l(1p,15.H);1l=1l.2l(1p)}c(2P.19!=v&&15.19!=v){1p=p.A.2S(15.19,2P.19);3l(1p,15.H+15[0].bp(15.19));1l=1l.2l(1p)}D(h j=0;j<1l.u;j++){1l[j].5S=3t.U}q 1l}};p.4b.1c.1M=l(7k,7p){f.49.1M(7k,7p);f.B=f.49.B};p.7q=l(){};p.7q.1c={T:l(7u,7s){h 48=f.1I[7u];q p.A.7t(48==v?7s:48)},18:l(7H){q Q.1N(7H)},8n:l(32,7Y){h 3A=[];c(32!=v){D(h i=0;i<32.u;i++){c(7I(32[i])=="4d"){3A=3A.2l(p.A.2S(7Y,32[i]))}}}q 3A.aM(p.A.7W)},8F:l(){h 1V=f.2X;D(h i=0;i<1V.u;i++){c(1V[i]===v){1J}h 2z=1V[i],45=2z.H+2z.u;D(h j=i+1;j<1V.u&&1V[i]!==v;j++){h 25=1V[j];c(25===v){1J}G{c(25.H>45){2y}G{c(25.H==2z.H&&25.u>2z.u){f.2X[i]=v}G{c(25.H>=2z.H&&25.H<45){f.2X[j]=v}}}}}}},7Z:l(2U){h 3h=2U.1O("\\n"),3X=80(f.T("84-2d")),2i=f.T("83-2d-82"),7U=f.T("1M",[]),7M=f.T("3j");2U="";c(2i==I){2i=(3X+3h.u-1).2h().u}G{c(38(2i)==I){2i=0}}D(h i=0;i<3h.u;i++){h 1A=3h[i],66=/^(&2m;|\\s)+/.R(1A),51="aE"+(i%2==0?1:2),7N=p.A.81(3X+i,2i),7T=p.A.Z(7U,(3X+i).2h())!=-1,2H=v;c(66!=v){2H=66[0].2h();1A=1A.22(2H.u)}1A=p.A.2J(1A);c(1A.u==0){1A="&2m;"}c(7T){51+=" aN"}2U+=""+"<7P>"+"<7R>"+(7M?"<3T 1o=\\"aZ\\">"+7N+"":"")+"<3T 1o=\\"60\\">"+(2H!=v?""+2H.E(" ","&2m;")+"":"")+1A+""+""+""+""}q 2U},88:l(69,5T){h 17=0,3p="",3r=p.A.7Q,5R=f.T("2V-U","");l 5X(5Y){h 5Q=5Y?(5Y.5S||5R):5R;q 5Q?5Q+" ":""};D(h i=0;i<5T.u;i++){h 1v=5T[i],3y;c(1v===v||1v.u===0){1J}3y=5X(1v);3p+=3r(69.22(17,1v.H-17),3y+"7K")+3r(1v.23,3y+1v.1a);17=1v.H+1v.u}3p+=3r(69.22(17),5X()+"7K");q 3p},1M:l(C,7V){h cg=p.M,1q=p.1q,B,ca,3e,cd="cm";f.1I={};f.B=v;f.1n=v;f.C=v;f.1e=v;f.6a={};f.1h=p.A.6d("ch");1q.6g[f.1h]=f;c(C===v){C=""}f.1I=p.A.6c(p.6b,7V||{});c(f.T("7X")==I){f.1I.1y=f.1I.3j=N}f.B=B=f.18("3c");f.1n=f.18("3c");f.1n.L="1n";L="6e";B.1h=f.1h;c(f.T("67")){L+=" 5O"}c(f.T("3j")==N){L+=" c5"}c(f.T("5h-1n")==N){f.1n.L+=" bC-5h"}L+=" "+f.T("1o-U");L+=" "+f.T("2V-U");B.L=L;f.5f=C;f.C=p.A.7A(C).E(/\\r/g," ");3e=f.T("1H-2L");f.C=f.T("8z-8H")==I?p.A.8D(f.C,3e):p.A.8c(f.C,3e);f.C=p.A.2I(f.C);c(f.T("1y")){f.1e=f.18("3c");f.1e.L="1e";f.1e.2u(p.1y.18(f));B.2u(f.1e);h 1e=f.1e;l 53(){1e.L=1e.L.E("54","")};B.c1=l(){53();1e.L+=" 54"};B.c2=l(){53()}}B.2u(f.1n);f.2X=f.8n(f.5c,f.C);f.8F();C=f.88(f.C,f.2X);C=f.7Z(p.A.2J(C));c(f.T("8B-8o")){C=p.A.8m(C)}f.1n.27=C},9i:l(z){z=z.E(/^\\s+|\\s+$/g,"").E(/\\s+/g,"|");q"\\\\b(?:"+z+")\\\\b"},9l:l(2K){f.3N={F:{3K:2K.F,1a:"1m"},19:{3K:2K.19,1a:"1m"},C:W V("(?"+2K.F.1j+")"+"(?.*?)"+"(?<19>"+2K.19.1j+")","99")}}};q p}()}c(!1k.V){(l(){h 2A={R:10.1c.R,8w:5I.1c.8w,E:5I.1c.E,1O:5I.1c.1O},1D={13:/(?:[^\\\\([#\\s.]+|\\\\(?!k<[\\w$]+>|[7z]{[^}]+})[\\S\\s]?|\\((?=\\?(?!#|<[\\w$]+>)))+|(\\()(?:\\?(?:(#)[^)]*\\)|<([$\\w]+)>))?|\\\\(?:k<([\\w$]+)>|[7z]{([^}]+)})|(\\[\\^?)|([\\S\\s])/g,98:/(?:[^$]+|\\$(?![1-9$&`\']|{[$\\w]+}))+|\\$(?:([1-9]\\d*|[$&`\'])|{([$\\w]+)})/g,3d:/^(?:\\s+|#.*)+/,5B:/^(?:[?*+]|{\\d+(?:,\\d*)?})/,7J:/&&\\[\\^?/g,7O:/]/g},7G=l(5C,5v,5t){D(h i=5t||0;i<5C.u;i++){c(5C[i]===5v){q i}}q-1},8I=/()??/.R("")[1]!==3a,3b={};V=l(1d,1S){c(1d 5U 10){c(1S!==3a){3q 7n("4g\'t 4I 9a 8A 95 7r 10 5t 94")}q 1d.3z()}h 1S=1S||"",7S=1S.Z("s")>-1,7L=1S.Z("x")>-1,5z=N,3R=[],14=[],13=1D.13,J,cc,3V,37,3u;13.O=0;2r(J=2A.R.2e(13,1d)){c(J[2]){c(!1D.5B.1R(1d.1b(13.O))){14.K("(?:)")}}G{c(J[1]){3R.K(J[3]||v);c(J[3]){5z=I}14.K("(")}G{c(J[4]){37=7G(3R,J[4]);14.K(37>-1?"\\\\"+(37+1)+(38(1d.5w(13.O))?"":"(?:)"):J[0])}G{c(J[5]){14.K(3b.7o?3b.7o.7l(J[5],J[0].5w(1)==="P"):J[0])}G{c(J[6]){c(1d.5w(13.O)==="]"){14.K(J[6]==="["?"(?!)":"[\\\\S\\\\s]");13.O++}G{cc=V.8d("&&"+1d.1b(J.H),1D.7J,1D.7O,"",{7D:"\\\\"})[0];14.K(J[6]+cc+"]");13.O+=cc.u+1}}G{c(J[7]){c(7S&&J[7]==="."){14.K("[\\\\S\\\\s]")}G{c(7L&&1D.3d.1R(J[7])){3V=2A.R.2e(1D.3d,1d.1b(13.O-1))[0].u;c(!1D.5B.1R(1d.1b(13.O-1+3V))){14.K("(?:)")}13.O+=3V-1}G{14.K(J[7])}}}G{14.K(J[0])}}}}}}}3u=10(14.5A(""),2A.E.2e(1S,/[9Y]+/g,""));3u.1B={1j:1d,2g:5z?3R:v};q 3u};V.9s=l(U,o){3b[U]=o};10.1c.R=l(z){h 1f=2A.R.2e(f,z),U,i,5y;c(1f){c(8I&&1f.u>1){5y=W 10("^"+f.1j+"$(?!\\\\s)",f.5J());2A.E.2e(1f[0],5y,l(){D(i=1;i<8j.u-2;i++){c(8j[i]===3a){1f[i]=3a}}})}c(f.1B&&f.1B.2g){D(i=1;i<1f.u;i++){U=f.1B.2g[i-1];c(U){1f[U]=1f[i]}}}c(f.3s&&f.O>(1f.H+1f[0].u)){f.O--}}q 1f}})()}10.1c.5J=l(){q(f.3s?"g":"")+(f.aw?"i":"")+(f.8E?"m":"")+(f.3d?"x":"")+(f.a0?"y":"")};10.1c.3z=l(7C){h 5E=W V(f.1j,(7C||"")+f.5J());c(f.1B){5E.1B={1j:f.1B.1j,2g:f.1B.2g?f.1B.2g.1b(0):v}}q 5E};10.1c.2e=l(93,z){q f.R(z)};10.1c.9b=l(9p,8x){q f.R(8x[0])};V.57=l(55,5d){h 5P="/"+55+"/"+(5d||"");q V.57[5P]||(V.57[5P]=W V(55,5d))};V.41=l(z){q z.E(/[-[\\]{}()*+?.\\\\^$|,#\\s]/g,"\\\\$&")};V.8d=l(z,F,11,1i,2N){h 2N=2N||{},2M=2N.7D,12=2N.cb,1i=1i||"",5F=1i.Z("g")>-1,6Y=1i.Z("i")>-1,7m=1i.Z("m")>-1,5q=1i.Z("y")>-1,1i=1i.E(/y/g,""),F=F 5U 10?(F.3s?F:F.3z("g")):W V(F,"g"+1i),11=11 5U 10?(11.3s?11:11.3z("g")):W V(11,"g"+1i),1K=[],2x=0,1s=0,1r=0,1w=0,2c,2b,1z,1C,3B,4f;c(2M){c(2M.u>1){3q aR("4g\'t 4I aB aF 7r 41 85")}c(7m){3q 7n("4g\'t 4I 41 85 8A bv bj 8E ba")}3B=V.41(2M);4f=W 10("^(?:"+3B+"[\\\\S\\\\s]|(?:(?!"+F.1j+"|"+11.1j+")[^"+3B+"])+)+",6Y?"i":"")}2r(I){F.O=11.O=1r+(2M?(4f.R(z.1b(1r))||[""])[0].u:0);1z=F.R(z);1C=11.R(z);c(1z&&1C){c(1z.H<=1C.H){1C=v}G{1z=v}}c(1z||1C){1s=(1z||1C).H;1r=(1z?F:11).O}G{c(!2x){2y}}c(5q&&!2x&&1s>1w){2y}c(1z){c(!2x++){2c=1s;2b=1r}}G{c(1C&&2x){c(!--2x){c(12){c(12[0]&&2c>1w){1K.K([12[0],z.1b(1w,2c),1w,2c])}c(12[1]){1K.K([12[1],z.1b(2c,2b),2c,2b])}c(12[2]){1K.K([12[2],z.1b(2b,1s),2b,1s])}c(12[3]){1K.K([12[3],z.1b(1s,1r),1s,1r])}}G{1K.K(z.1b(2b,1s))}1w=1r;c(!5F){2y}}}G{F.O=11.O=0;3q bE("bZ 8L av 9t as")}}c(1s===1r){1r++}}c(5F&&!5q&&12&&12[0]&&z.u>1w){1K.K([12[0],z.1b(1w),1w,z.u])}F.O=11.O=0;q 1K};',62,769,'||||||||||||if|||this||var||||function||||sh|return||||length|null||||str|utils|div|code|for|replace|left|else|index|true|_121|push|className|config|false|lastIndex||document|exec||getParam|name|XRegExp|new|lt|gt|indexOf|RegExp|_139|vN|part|_11f|_d3||pos|create|right|css|slice|prototype|_119|bar|_129|strings|id|_13a|source|window|_d6|script|lines|class|_da|vars|_145|_144|style|_b5|_103|_146|alert|toolbar|_149|_f4|_x|_14a|lib|obj|html|doc|tab|params|continue|_142|_c3|highlight|createElement|split|_c5|href|test|_11a|_c2|_8|_e7|width|text|_5a|_5b|min|_91|substr|value||_ec|in|innerHTML|_4f|_3c|_98|_148|_147|line|call|_6e|captureNames|toString|_f0|_75|_bc|concat|nbsp|brushes|http|_cd|attributes|while|height|wnd|appendChild|_be|_5f|_143|break|_e9|real|execute|_66|_c4|_40|_88|SyntaxHighlighter|_f9|unindent|trim|_10f|size|_13c|_13b|case|_d9|_28|_55|getMatches|_c1|_ed|brush|_61|matches|_a2|body|m2|m1|_e3|_81|_7a|_5|_80|_124|isNaN|title|undefined|_118|DIV|extended|_10b|_2|_62|_ee|_7d|gutter|_25|offsetMatches|_4e|_8e|print|_fd|throw|_fe|global|_cc|_125|gm|Math|com|_104|addFlags|_e5|_14b|_3|printFrame|fixInputString|_76|_af|font|write|_7c|regex|_b6|substring|htmlScript|_32|_b4|url|_11e|_c6|td|_49|len|_60|_ef|_22|_a7|_7b|escape|_6a|color|_blank|_ea|_4d|_4c|_e1|xmlBrush|_47|HtmlScript|close|object|link|esc|can|_5d|_b0|type|_ad|_ae|_b3|_b2|_73|_b8|_ba|_b9|_a6|span|removeChild|gi|_89|eachLine|_7e|_9d|_82|_a3|_9e|getElementsByTagName|_6b|_cb|top|_53|supply|_ce|func|_50|popup|_d0|_54|findBrush|useScriptTags|_bf|_6c|values|discoveredBrushes|win|Match|_c8|focus|_d7||_f6|_29|hide|show|_133|_2b|cache|pre|_19|_1a|viewSource|regexList|_134|_2a|originalCode|highlighterId|wrap|_27|copyToClipboard|toolbarItemHeight|_2c|_2e|_2d|toolbarItemWidth|expandSource|_141|_7|_4|from|_e|item|charAt|www|r2|_11d|join|quantifier|_113|_b|_12e|_13e|_17|_18|String|getNativeFlags|_9|_f|_d|_10|collapsed|key|_101|_ff|brushName|_fb|instanceof|_30|swf|getBrushNameCss|_100|contentWindow|content|_38|_8c|_35|_37|_24|_f5|collapse|_2f|_fa|toolbarCommands|defaults|merge|guid|syntaxhighlighter|clipboardSwf|highlighters|_6|rel|DTD|to|createButton|_a|_84|500px|measureSpace|clipboard|none|scrollbars|decoration|org|_83|0px|margin|head|align|center|userAgent|_3f|copyStyles|0099FF|help|alexgorbatchev|xhtml1|_3e|w3|_85|_48|noBrush|_5e|version|stylesheet|_65|_6d|switch|screen|flash|event|_52|attachEvent|_13f|shockwave|toLowerCase|_1e|_36|px|clipboardData|commandName|copyToClipboardConfirmation|message|aboutDialog|_78|executeCommand|_14|_16|items|_13|_12|_4b|_15|_79|navigator|_dd|get|_140|TypeError|unicode|_de|Highlighter|one|_e0|toBoolean|_df|_d8|_d5|_c7|addEvent|pP|trimFirstAndLastLines|_c9|_12d|escapeChar|process|_d1|_112|_e2|typeof|classLeft|plain|_11c|_f2|_f7|classRight|table|decorate|tr|_11b|_f8|_f1|_106|matchesSortCallback|light|_e4|createDisplayLines|parseInt|padNumber|numbers|pad|first|character|brushNotHtmlScript|_a4|processMatches|tagName|getSyntaxHighlighterScriptTags|parseParams|processTabs|matchRecursive|_b7|toArray|_9a|_a8|_a1|arguments|_a9|regexLib|processUrls|findMatches|links|defaultAdd|_bd|_93|bloggerMode|stripCData|insertSpaces|parentNode|match|args|_90|smart|when|auto|debug|processSmartTabs|multiline|removeNestedMatches|stripBrs|tabs|_117|2004|2009|data|_1c|keep|Alex|donate|2930402|development|active|_1b|highlighter|syntax|JavaScript|Copyright|multiLineDoubleQuotedString|hosted_button_id|string|scriptScriptTags|aspScriptTags|_12f|another|constructing|onclick|catch|replaceVar|sgi|flags|apply|phpScriptTags|singleLineCComments|singleLinePerlComments|multiLineCComments|spaceWidth|Gorbatchev|getKeywords|doubleQuotedString|xmlComments|forHtmlScript|multiLineSingleQuotedString|try|singleQuotedString|_131|bottom|xmlns|addPlugin|unbalanced|dtd|transitional|EN|TR|1999|xhtml|charset|utf|About|Type|Content|meta|equiv|Transitional|XHTML|your|now|Can|is|The|view|copy|find|Brush|PUBLIC|W3C|DOCTYPE|option|wasn|configured|sx|family|sticky|If|you|target|2010|382|June|like|please|webscr|cmd|_s|bin|cgi|https|paypal|4em|75em|serif|background|fff|sans|Helvetica|Geneva|Arial|000|1em|large|delimiters|xx|3em|contains|ignoreCase|xclick|always|about|_42|more|shCore|printing|alt|than|_43|max|round|250|500|_44|sort|highlighted|absolute|error|spaces|SyntaxError|ok|amp|setData|_1f|_39|cssText|position|number|IFRAME|_3a|_3b|random|1000000|_a5|getElementById|block|CDATA|htmlscript|flag|opera|1000|offsetWidth|_8a|_99|getPropertyValue|getComputedStyle|Array|the|textarea|Xml|load|open|_cf|lastIndexOf|_d4||all|on|70em|using|30em|aliases|addEventListener|replaceChild|command|printSource|no|menu|Error|flashVars|wmode|transparent|msie|classid|11cf|96b8|ae6d|d27cdb6e|clsid|allowScriptAccess|application|location|resizable|400|750|_20|_21|menubar|_26|subject|_clipboard|onmouseover|onmouseout|param|444553540000|nogutter|embed|macromedia|movie|swflash|_10a|valueNames||_10c|pub|src|conf|highlighter_|cab|download|cabs|codebase|important|_34|_33'.split('|'),0,{})) diff --git a/plugins/syntaxhighlight/scripts/shLegacy.js b/plugins/syntaxhighlight/scripts/shLegacy.js new file mode 100644 index 0000000..b6ad251 --- /dev/null +++ b/plugins/syntaxhighlight/scripts/shLegacy.js @@ -0,0 +1,30 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('1 y={d:{}};y.d={F:6(S,l,q,k,m,n){6 J(z,Y){1 V=16 15("^"+Y+"\\\\[(?\\\\w+)\\\\]$","14"),x=2;h(1 i=0;i. + */ +/************************************ + * Default Syntax Highlighter theme. + * + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #fff !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + color: black !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #e0e0e0 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #afafaf !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #6CE26C !important; + color: #000 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #fff !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #F8F8F8 !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #F8F8F8 !important; + border: #E7E5DC solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #a0a0a0 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: red !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #000 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #008200 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: blue !important; +} + +.syntaxhighlighter .keyword +{ + color: #069 !important; + font-weight: bold !important; +} + +.syntaxhighlighter .preprocessor +{ + color: gray !important; +} + +.syntaxhighlighter .variable +{ + color: #a70 !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .constants +{ + color: #0066CC !important; +} + +.syntaxhighlighter .script +{ + background-color: yellow !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #808080 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: red !important; +} diff --git a/plugins/syntaxhighlight/styles/Django.css b/plugins/syntaxhighlight/styles/Django.css new file mode 100644 index 0000000..7bd8787 --- /dev/null +++ b/plugins/syntaxhighlight/styles/Django.css @@ -0,0 +1,176 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Django SyntaxHighlighter theme + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #0B2F20 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #497958 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #41A83E !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #0a2b1d !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #336442 !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #336442 !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #245032 !important; + border: #0B2F20 solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #C4B14A !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #FFE862 !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #F8F8F8 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #336442 !important; + font-style: italic !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #9DF39F !important; +} + +.syntaxhighlighter .keyword +{ + color: #96DD3B !important; + font-weight: bold !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #91BB9E !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #F7E741 !important; +} + +.syntaxhighlighter .functions +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .constants +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .script +{ + background-color: #497958 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #EB939A !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #91BB9E !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #EDEF7D !important; +} diff --git a/plugins/syntaxhighlight/styles/Eclipse.css b/plugins/syntaxhighlight/styles/Eclipse.css new file mode 100644 index 0000000..053be84 --- /dev/null +++ b/plugins/syntaxhighlight/styles/Eclipse.css @@ -0,0 +1,190 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Eclipse IDE SyntaxHighlighter color theme + * (C) Code-House + * http://blog.code-house.org/2009/10/xml-i-adnotacje-kod-ogolnego-przeznaczenia-i-jpa/ + */ + +.syntaxhighlighter +{ + background-color: #fff !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #c3defe !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #c3defe !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #787878 !important; + background-color: #fff !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 1px solid #d4d0c8 !important; + color: #000 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #fff !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #fff !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #F8F8F8 !important; + border: #E7E5DC solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #a0a0a0 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: red !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #000 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #3f5fbf !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #2a00ff !important; +} + +.syntaxhighlighter .keyword +{ + color: #7f0055 !important; + font-weight: bold !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #646464 !important; +} + +.syntaxhighlighter .variable +{ + color: #a70 !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .constants +{ + color: #0066CC !important; +} + +.syntaxhighlighter .script +{ + background-color: yellow !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #808080 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: red !important; +} + + +.xml .keyword { + color: #3f7f7f !important; + font-weight: normal !important; +} + +.xml .color1, +.xml .color1 a{ + color: #7f007f !important; +} + +.xml .string { + font-style: italic !important; + color: #2a00ff !important; +} \ No newline at end of file diff --git a/plugins/syntaxhighlight/styles/Emacs.css b/plugins/syntaxhighlight/styles/Emacs.css new file mode 100644 index 0000000..e78ba88 --- /dev/null +++ b/plugins/syntaxhighlight/styles/Emacs.css @@ -0,0 +1,175 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Emacs SyntaxHighlighter theme based on theme by Joshua Emmons + * http://www.skia.net/ + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #000000 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #D3D3D3 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #990000 !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #0f0f0f !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #435A5F !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #435A5F !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #000000 !important; + border: #000000 solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #646763 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #9CCFF4 !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #D3D3D3 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #FF7D27 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #FF9E7B !important; +} + +.syntaxhighlighter .keyword +{ + color: #00FFFF !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #AEC4DE !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #81CEF9 !important; +} + +.syntaxhighlighter .constants +{ + color: #FF9E7B !important; +} + +.syntaxhighlighter .script +{ + background-color: #990000 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #EBDB8D !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #FF7D27 !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #AEC4DE !important; +} diff --git a/plugins/syntaxhighlight/styles/FadeToGrey.css b/plugins/syntaxhighlight/styles/FadeToGrey.css new file mode 100644 index 0000000..6779b90 --- /dev/null +++ b/plugins/syntaxhighlight/styles/FadeToGrey.css @@ -0,0 +1,177 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Fade to Grey SyntaxHighlighter theme based on theme by Brasten Sager + * http://www.ibrasten.com/ + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #121212 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #C3C3C3 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #3185B9 !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #000000 !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #3A3A00 !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #3A3A00 !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #000000 !important; + border: #000000 solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #808080 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #96DAFF !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #FFFFFF !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #696854 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #E3E658 !important; +} + +.syntaxhighlighter .keyword +{ + color: #D01D33 !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #435A5F !important; +} + +.syntaxhighlighter .variable +{ + color: #898989 !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #AAAAAA !important; + font-weight: bold !important; +} + +.syntaxhighlighter .constants +{ + color: #96DAFF !important; +} + +.syntaxhighlighter .script +{ + background-color: #C3C3C3 !important; + color: #000 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #FFC074 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #4A8CDB !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #96DAFF !important; +} diff --git a/plugins/syntaxhighlight/styles/Midnight.css b/plugins/syntaxhighlight/styles/Midnight.css new file mode 100644 index 0000000..1137449 --- /dev/null +++ b/plugins/syntaxhighlight/styles/Midnight.css @@ -0,0 +1,175 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Midnight SyntaxHighlighter theme based on theme by J.D. Myers + * http://webdesign.lsnjd.com/ + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #0F192A !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #38566F !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #435A5F !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #0F192A !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #0F192A !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #253E5A !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #253E5A !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #0F192A !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #38566F !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #8AA6C1 !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #D1EDFF !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #428BDD !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #1DC116 !important; +} + +.syntaxhighlighter .keyword +{ + color: #B43D3D !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #8AA6C1 !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #F7E741 !important; +} + +.syntaxhighlighter .functions +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .constants +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .script +{ + background-color: #404040 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #F8BB00 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #FFFFFF !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #FFAA3E !important; +} diff --git a/plugins/syntaxhighlight/styles/RDark.css b/plugins/syntaxhighlight/styles/RDark.css new file mode 100644 index 0000000..dd8d806 --- /dev/null +++ b/plugins/syntaxhighlight/styles/RDark.css @@ -0,0 +1,175 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * RDark SyntaxHighlighter theme based on theme by Radu Dineiu + * http://www.vim.org/scripts/script.php?script_id=1732 + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #1B2426 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #B9BDB6 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #435A5F !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #1B2426 !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #1B2426 !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #435A5F !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #435A5F !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #1B2426 !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #646763 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #E0E8FF !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #B9BDB6 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #878A85 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #5CE638 !important; +} + +.syntaxhighlighter .keyword +{ + color: #5BA1CF !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #435A5F !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .constants +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .script +{ + background-color: #435A5F !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #FFFFFF !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #FFAA3E !important; +} diff --git a/plugins/syntaxhighlight/styles/help.png b/plugins/syntaxhighlight/styles/help.png new file mode 100644 index 0000000..5c87017 Binary files /dev/null and b/plugins/syntaxhighlight/styles/help.png differ diff --git a/plugins/syntaxhighlight/styles/magnifier.png b/plugins/syntaxhighlight/styles/magnifier.png new file mode 100644 index 0000000..cf3d97f Binary files /dev/null and b/plugins/syntaxhighlight/styles/magnifier.png differ diff --git a/plugins/syntaxhighlight/styles/page_white_code.png b/plugins/syntaxhighlight/styles/page_white_code.png new file mode 100644 index 0000000..0c76bd1 Binary files /dev/null and b/plugins/syntaxhighlight/styles/page_white_code.png differ diff --git a/plugins/syntaxhighlight/styles/page_white_copy.png b/plugins/syntaxhighlight/styles/page_white_copy.png new file mode 100644 index 0000000..a9f31a2 Binary files /dev/null and b/plugins/syntaxhighlight/styles/page_white_copy.png differ diff --git a/plugins/syntaxhighlight/styles/printer.png b/plugins/syntaxhighlight/styles/printer.png new file mode 100644 index 0000000..a350d18 Binary files /dev/null and b/plugins/syntaxhighlight/styles/printer.png differ diff --git a/plugins/syntaxhighlight/styles/shCore.css b/plugins/syntaxhighlight/styles/shCore.css new file mode 100644 index 0000000..5b39ee1 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shCore.css @@ -0,0 +1,330 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +.syntaxhighlighter, +.syntaxhighlighter div, +.syntaxhighlighter code, +.syntaxhighlighter table, +.syntaxhighlighter table td, +.syntaxhighlighter table tr, +.syntaxhighlighter table tbody +{ + margin: 0 !important; + padding: 0 !important; + border: 0 !important; + outline: 0 !important; + background: none !important; + text-align: left !important; + float: none !important; + vertical-align: baseline !important; + position: static !important; + left: auto !important; + top: auto !important; + right: auto !important; + bottom: auto !important; + height: auto !important; + width: auto !important; + line-height: 1.5em !important; + font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; + font-weight: normal !important; + font-style: normal !important; + font-size: 1em !important; + min-height: inherit !important; /* For IE8, FF & WebKit */ + min-height: auto !important; /* For IE7 */ +} + +.syntaxhighlighter +{ + width: 99% !important; /* 99% fixes IE8 horizontal scrollbar */ + margin: 1em 0 1em 0 !important; + padding: 1px !important; /* adds a little border on top and bottom */ + position: relative !important; +} + +.syntaxhighlighter .bold +{ + font-weight: bold !important; +} + +.syntaxhighlighter .italic +{ + font-style: italic !important; +} + +.syntaxhighlighter .line +{ +} + +.syntaxhighlighter .no-wrap .line .content +{ + white-space: pre !important; +} + +.syntaxhighlighter .line table +{ + border-collapse: collapse !important; +} + +.syntaxhighlighter .line td +{ + vertical-align: top !important; +} + +.syntaxhighlighter .line .number +{ + width: 3em !important; +} + +.syntaxhighlighter .line .number code +{ + width: 2.7em !important; + padding-right: .3em !important; + text-align: right !important; + display: block !important; +} + +.syntaxhighlighter .line .content +{ + padding-left: .5em !important; +} + +.syntaxhighlighter .line .spaces +{ +} + +/* Disable border and margin on the lines when no gutter option is set */ +.syntaxhighlighter.nogutter .line .content +{ + border-left: none !important; +} + +.syntaxhighlighter .bar +{ + display: none !important; +} + +.syntaxhighlighter .bar.show +{ + display: block !important; +} + +.syntaxhighlighter.collapsed .bar +{ + display: block !important; +} + +/* Adjust some properties when collapsed */ + +.syntaxhighlighter.collapsed .lines +{ + display: none !important; +} + +.syntaxhighlighter .lines.no-wrap +{ + overflow: auto !important; + overflow-y: hidden !important; +} + +/* Styles for the toolbar */ + +.syntaxhighlighter .toolbar +{ + position: absolute !important; + right: 0px !important; + top: 0px !important; + font-size: 1px !important; + padding: 8px 8px 8px 0 !important; /* in px because images don't scale with ems */ +} + +.syntaxhighlighter.collapsed .toolbar +{ + font-size: 80% !important; + padding: .2em 0 .5em .5em !important; + position: static !important; +} + +.syntaxhighlighter .toolbar a.item, +.syntaxhighlighter .toolbar .item +{ + display: block !important; + float: left !important; + margin-left: 8px !important; + background-repeat: no-repeat !important; + overflow: hidden !important; + text-indent: -5000px !important; +} + +.syntaxhighlighter.collapsed .toolbar .item +{ + display: none !important; +} + +.syntaxhighlighter.collapsed .toolbar .item.expandSource +{ + background-image: url(magnifier.png) !important; + display: inline !important; + text-indent: 0 !important; + width: auto !important; + float: none !important; + height: 16px !important; + padding-left: 20px !important; +} + +.syntaxhighlighter .toolbar .item.viewSource +{ + background-image: url(page_white_code.png) !important; +} + +.syntaxhighlighter .toolbar .item.printSource +{ + background-image: url(printer.png) !important; +} + +.syntaxhighlighter .toolbar .item.copyToClipboard +{ + text-indent: 0 !important; + background: none !important; + overflow: visible !important; +} + +.syntaxhighlighter .toolbar .item.about +{ + background-image: url(help.png) !important; +} + +/** + * Print view. + * Colors are based on the default theme without background. + */ + +.syntaxhighlighter.printing, +.syntaxhighlighter.printing .line.alt1 .content, +.syntaxhighlighter.printing .line.alt2 .content, +.syntaxhighlighter.printing .line.highlighted .number, +.syntaxhighlighter.printing .line.highlighted.alt1 .content, +.syntaxhighlighter.printing .line.highlighted.alt2 .content, +{ + background: none !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter.printing .line .number +{ + color: #bbb !important; +} + +/* Add border to the lines */ +.syntaxhighlighter.printing .line .content +{ + color: #000 !important; +} + +/* Toolbar when visible */ +.syntaxhighlighter.printing .toolbar +{ + display: none !important; +} + +.syntaxhighlighter.printing a +{ + text-decoration: none !important; +} + +.syntaxhighlighter.printing .plain, +.syntaxhighlighter.printing .plain a +{ + color: #000 !important; +} + +.syntaxhighlighter.printing .comments, +.syntaxhighlighter.printing .comments a +{ + color: #008200 !important; +} + +.syntaxhighlighter.printing .string, +.syntaxhighlighter.printing .string a +{ + color: blue !important; +} + +.syntaxhighlighter.printing .keyword +{ + color: #069 !important; + font-weight: bold !important; +} + +.syntaxhighlighter.printing .preprocessor +{ + color: gray !important; +} + +.syntaxhighlighter.printing .variable +{ + color: #a70 !important; +} + +.syntaxhighlighter.printing .value +{ + color: #090 !important; +} + +.syntaxhighlighter.printing .functions +{ + color: #ff1493 !important; +} + +.syntaxhighlighter.printing .constants +{ + color: #0066CC !important; +} + +.syntaxhighlighter.printing .script +{ + font-weight: bold !important; +} + +.syntaxhighlighter.printing .color1, +.syntaxhighlighter.printing .color1 a +{ + color: #808080 !important; +} + +.syntaxhighlighter.printing .color2, +.syntaxhighlighter.printing .color2 a +{ + color: #ff1493 !important; +} + +.syntaxhighlighter.printing .color3, +.syntaxhighlighter.printing .color3 a +{ + color: red !important; +} diff --git a/plugins/syntaxhighlight/styles/shThemeDefault.css b/plugins/syntaxhighlight/styles/shThemeDefault.css new file mode 100644 index 0000000..210869d --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeDefault.css @@ -0,0 +1,173 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/************************************ + * Default Syntax Highlighter theme. + * + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #fff !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + color: black !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #e0e0e0 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #afafaf !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #6CE26C !important; + color: #000 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #fff !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #F8F8F8 !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #F8F8F8 !important; + border: #E7E5DC solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #a0a0a0 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: red !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #000 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #008200 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: blue !important; +} + +.syntaxhighlighter .keyword +{ + color: #069 !important; + font-weight: bold !important; +} + +.syntaxhighlighter .preprocessor +{ + color: gray !important; +} + +.syntaxhighlighter .variable +{ + color: #a70 !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .constants +{ + color: #0066CC !important; +} + +.syntaxhighlighter .script +{ + background-color: yellow !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #808080 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: red !important; +} diff --git a/plugins/syntaxhighlight/styles/shThemeDjango.css b/plugins/syntaxhighlight/styles/shThemeDjango.css new file mode 100644 index 0000000..7bd8787 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeDjango.css @@ -0,0 +1,176 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Django SyntaxHighlighter theme + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #0B2F20 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #497958 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #41A83E !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #0a2b1d !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #336442 !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #336442 !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #245032 !important; + border: #0B2F20 solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #C4B14A !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #FFE862 !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #F8F8F8 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #336442 !important; + font-style: italic !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #9DF39F !important; +} + +.syntaxhighlighter .keyword +{ + color: #96DD3B !important; + font-weight: bold !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #91BB9E !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #F7E741 !important; +} + +.syntaxhighlighter .functions +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .constants +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .script +{ + background-color: #497958 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #EB939A !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #91BB9E !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #EDEF7D !important; +} diff --git a/plugins/syntaxhighlight/styles/shThemeEclipse.css b/plugins/syntaxhighlight/styles/shThemeEclipse.css new file mode 100644 index 0000000..053be84 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeEclipse.css @@ -0,0 +1,190 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Eclipse IDE SyntaxHighlighter color theme + * (C) Code-House + * http://blog.code-house.org/2009/10/xml-i-adnotacje-kod-ogolnego-przeznaczenia-i-jpa/ + */ + +.syntaxhighlighter +{ + background-color: #fff !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #c3defe !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #c3defe !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #787878 !important; + background-color: #fff !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 1px solid #d4d0c8 !important; + color: #000 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #fff !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #fff !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #F8F8F8 !important; + border: #E7E5DC solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #a0a0a0 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: red !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #000 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #3f5fbf !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #2a00ff !important; +} + +.syntaxhighlighter .keyword +{ + color: #7f0055 !important; + font-weight: bold !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #646464 !important; +} + +.syntaxhighlighter .variable +{ + color: #a70 !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .constants +{ + color: #0066CC !important; +} + +.syntaxhighlighter .script +{ + background-color: yellow !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #808080 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #ff1493 !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: red !important; +} + + +.xml .keyword { + color: #3f7f7f !important; + font-weight: normal !important; +} + +.xml .color1, +.xml .color1 a{ + color: #7f007f !important; +} + +.xml .string { + font-style: italic !important; + color: #2a00ff !important; +} \ No newline at end of file diff --git a/plugins/syntaxhighlight/styles/shThemeEmacs.css b/plugins/syntaxhighlight/styles/shThemeEmacs.css new file mode 100644 index 0000000..e78ba88 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeEmacs.css @@ -0,0 +1,175 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Emacs SyntaxHighlighter theme based on theme by Joshua Emmons + * http://www.skia.net/ + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #000000 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #D3D3D3 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #990000 !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #0f0f0f !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #435A5F !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #435A5F !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #000000 !important; + border: #000000 solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #646763 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #9CCFF4 !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #D3D3D3 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #FF7D27 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #FF9E7B !important; +} + +.syntaxhighlighter .keyword +{ + color: #00FFFF !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #AEC4DE !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #81CEF9 !important; +} + +.syntaxhighlighter .constants +{ + color: #FF9E7B !important; +} + +.syntaxhighlighter .script +{ + background-color: #990000 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #EBDB8D !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #FF7D27 !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #AEC4DE !important; +} diff --git a/plugins/syntaxhighlight/styles/shThemeFadeToGrey.css b/plugins/syntaxhighlight/styles/shThemeFadeToGrey.css new file mode 100644 index 0000000..6779b90 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeFadeToGrey.css @@ -0,0 +1,177 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Fade to Grey SyntaxHighlighter theme based on theme by Brasten Sager + * http://www.ibrasten.com/ + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #121212 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #C3C3C3 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #3185B9 !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #000000 !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #3A3A00 !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #3A3A00 !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #000000 !important; + border: #000000 solid 1px !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #808080 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #96DAFF !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #FFFFFF !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #696854 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #E3E658 !important; +} + +.syntaxhighlighter .keyword +{ + color: #D01D33 !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #435A5F !important; +} + +.syntaxhighlighter .variable +{ + color: #898989 !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #AAAAAA !important; + font-weight: bold !important; +} + +.syntaxhighlighter .constants +{ + color: #96DAFF !important; +} + +.syntaxhighlighter .script +{ + background-color: #C3C3C3 !important; + color: #000 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #FFC074 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #4A8CDB !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #96DAFF !important; +} diff --git a/plugins/syntaxhighlight/styles/shThemeMidnight.css b/plugins/syntaxhighlight/styles/shThemeMidnight.css new file mode 100644 index 0000000..1137449 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeMidnight.css @@ -0,0 +1,175 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * Midnight SyntaxHighlighter theme based on theme by J.D. Myers + * http://webdesign.lsnjd.com/ + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #0F192A !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #38566F !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #435A5F !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #0F192A !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #0F192A !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #253E5A !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #253E5A !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #0F192A !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #38566F !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #8AA6C1 !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #D1EDFF !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #428BDD !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #1DC116 !important; +} + +.syntaxhighlighter .keyword +{ + color: #B43D3D !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #8AA6C1 !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #F7E741 !important; +} + +.syntaxhighlighter .functions +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .constants +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .script +{ + background-color: #404040 !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #F8BB00 !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #FFFFFF !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #FFAA3E !important; +} diff --git a/plugins/syntaxhighlight/styles/shThemeRDark.css b/plugins/syntaxhighlight/styles/shThemeRDark.css new file mode 100644 index 0000000..dd8d806 --- /dev/null +++ b/plugins/syntaxhighlight/styles/shThemeRDark.css @@ -0,0 +1,175 @@ +/** + * SyntaxHighlighter + * http://alexgorbatchev.com/ + * + * SyntaxHighlighter is donationware. If you are using it, please donate. + * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate + * + * @version + * 2.1.382 (June 24 2010) + * + * @copyright + * Copyright (C) 2004-2009 Alex Gorbatchev. + * + * @license + * This file is part of SyntaxHighlighter. + * + * SyntaxHighlighter is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * SyntaxHighlighter is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SyntaxHighlighter. If not, see . + */ +/** + * RDark SyntaxHighlighter theme based on theme by Radu Dineiu + * http://www.vim.org/scripts/script.php?script_id=1732 + */ + +/************************************ + * Interface elements. + ************************************/ + +.syntaxhighlighter +{ + background-color: #1B2426 !important; +} + +/* Gutter line numbers */ +.syntaxhighlighter .line .number +{ + color: #B9BDB6 !important; +} + +/* Add border to the lines */ +.syntaxhighlighter .line .content +{ + border-left: 3px solid #435A5F !important; + color: #B9BDB6 !important; +} + +.syntaxhighlighter.printing .line .content +{ + border: 0 !important; +} + +/* First line */ +.syntaxhighlighter .line.alt1 +{ + background-color: #1B2426 !important; +} + +/* Second line */ +.syntaxhighlighter .line.alt2 +{ + background-color: #1B2426 !important; +} + +/* Highlighed line number */ +.syntaxhighlighter .line.highlighted .number +{ + background-color: #435A5F !important; + color: #fff !important; +} + +/* Highlighed line */ +.syntaxhighlighter .line.highlighted.alt1, +.syntaxhighlighter .line.highlighted.alt2 +{ + background-color: #435A5F !important; +} + +.syntaxhighlighter .toolbar +{ + background-color: #1B2426 !important; +} + +.syntaxhighlighter .toolbar a +{ + color: #646763 !important; +} + +.syntaxhighlighter .toolbar a:hover +{ + color: #E0E8FF !important; +} + +/************************************ + * Actual syntax highlighter colors. + ************************************/ +.syntaxhighlighter .plain, +.syntaxhighlighter .plain a +{ + color: #B9BDB6 !important; +} + +.syntaxhighlighter .comments, +.syntaxhighlighter .comments a +{ + color: #878A85 !important; +} + +.syntaxhighlighter .string, +.syntaxhighlighter .string a +{ + color: #5CE638 !important; +} + +.syntaxhighlighter .keyword +{ + color: #5BA1CF !important; +} + +.syntaxhighlighter .preprocessor +{ + color: #435A5F !important; +} + +.syntaxhighlighter .variable +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .value +{ + color: #090 !important; +} + +.syntaxhighlighter .functions +{ + color: #FFAA3E !important; +} + +.syntaxhighlighter .constants +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .script +{ + background-color: #435A5F !important; +} + +.syntaxhighlighter .color1, +.syntaxhighlighter .color1 a +{ + color: #E0E8FF !important; +} + +.syntaxhighlighter .color2, +.syntaxhighlighter .color2 a +{ + color: #FFFFFF !important; +} + +.syntaxhighlighter .color3, +.syntaxhighlighter .color3 a +{ + color: #FFAA3E !important; +} diff --git a/plugins/syntaxhighlight/syntaxhighlight.php b/plugins/syntaxhighlight/syntaxhighlight.php new file mode 100644 index 0000000..9d76675 --- /dev/null +++ b/plugins/syntaxhighlight/syntaxhighlight.php @@ -0,0 +1,42 @@ + + + + + "; diff --git a/plugins/syntaxhighlight/syntaxhighlight.setup.php b/plugins/syntaxhighlight/syntaxhighlight.setup.php new file mode 100644 index 0000000..af7379a --- /dev/null +++ b/plugins/syntaxhighlight/syntaxhighlight.setup.php @@ -0,0 +1,41 @@ +"; +$table_header .= ""; +$table_header .= "File"; +$table_header .= "Type"; +$table_header .= "Description"; +$table_header .= "Version"; +$table_header .= "Date"; +$table_header .= ""; + +$color[0] = "#bc6262"; +$color[1] = "#62bc6a"; +$plugin_body = ''; + +foreach ($systemfiles as $file) { + if (mb_substr($file, 0, 1) == "*") { + $plugin_body .= "

" . mb_substr($file, 1, 255) . " :

"; + $plugin_body .= $table_header;; + } else { + $plugin_body .= ""; + $plugin_body .= "" . $file . ""; + + if (file_exists(SED_ROOT . "/" . $file)) { + $info = sed_infoget($file); + if (!empty($info['Error'])) { + $plugin_body .= "" . $info['Error'] . ""; + } else { + $bgcolor = ($info['Version'] == $cfg['version']) ? $color[1] : $color[0]; + $plugin_body .= "" . $info['Type'] . ""; + $plugin_body .= "" . $info['Description'] . ""; + $plugin_body .= "" . $info['Version'] . ""; + $plugin_body .= "" . $info['Updated'] . ""; + } + } else { + $plugin_body .= "File not found !"; + } + $plugin_body .= ""; + } +} + +$plugin_body .= ""; + +$plugin_body .= "

Skin files (templates) :

"; + +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; + +foreach ($skinfiles as $file) { + $file = "skins/" . $skin . "/" . $file; + $plugin_body .= ""; + $plugin_body .= ""; + + if (file_exists(SED_ROOT . "/" . $file)) { + $plugin_body .= ""; + $plugin_body .= ""; + } else { + $plugin_body .= ""; + $plugin_body .= ""; + } + $plugin_body .= ""; +} + +$plugin_body .= "
Skin fileFound ?Size (Bytes)
" . $file . "Present" . @filesize($file) . "Missing !0
"; + +$plugin_body .= "

Admin Skin files (templates) :

"; + +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; +$plugin_body .= ""; + +foreach ($admskinfiles as $file) { + $file = "system/adminskin/" . $skin . "/" . $file; + $plugin_body .= ""; + $plugin_body .= ""; + + if (file_exists(SED_ROOT . "/" . $file)) { + $plugin_body .= ""; + $plugin_body .= ""; + } else { + $plugin_body .= ""; + $plugin_body .= ""; + } + $plugin_body .= ""; +} + +$plugin_body .= "
Skin fileFound ?Size (Bytes)
" . $file . "Present" . @filesize($file) . "Missing !0
"; diff --git a/plugins/syscheck/syscheck.png b/plugins/syscheck/syscheck.png new file mode 100644 index 0000000..8000078 Binary files /dev/null and b/plugins/syscheck/syscheck.png differ diff --git a/plugins/syscheck/syscheck.setup.php b/plugins/syscheck/syscheck.setup.php new file mode 100644 index 0000000..bdf7acf --- /dev/null +++ b/plugins/syscheck/syscheck.setup.php @@ -0,0 +1,37 @@ +"))}function a(t){var i="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return t.delegate(i,"mouseout",function(){e(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&e(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).removeClass("ui-datepicker-next-hover")}).delegate(i,"mouseover",o)}function o(){e.datepicker._isDisabledDatepicker(v.inline?v.dpDiv.parent()[0]:v.input[0])||(e(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),e(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&e(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&e(this).addClass("ui-datepicker-next-hover"))}function r(t,i){e.extend(t,i);for(var s in i)null==i[s]&&(t[s]=i[s]);return t}function h(e){return function(){var t=this.element.val();e.apply(this,arguments),this._refresh(),t!==this.element.val()&&this._trigger("change")}}e.ui=e.ui||{},e.extend(e.ui,{version:"1.11.2",keyCode:{BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}}),e.fn.extend({scrollParent:function(t){var i=this.css("position"),s="absolute"===i,n=t?/(auto|scroll|hidden)/:/(auto|scroll)/,a=this.parents().filter(function(){var t=e(this);return s&&"static"===t.css("position")?!1:n.test(t.css("overflow")+t.css("overflow-y")+t.css("overflow-x"))}).eq(0);return"fixed"!==i&&a.length?a:e(this[0].ownerDocument||document)},uniqueId:function(){var e=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++e)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&e(this).removeAttr("id")})}}),e.extend(e.expr[":"],{data:e.expr.createPseudo?e.expr.createPseudo(function(t){return function(i){return!!e.data(i,t)}}):function(t,i,s){return!!e.data(t,s[3])},focusable:function(i){return t(i,!isNaN(e.attr(i,"tabindex")))},tabbable:function(i){var s=e.attr(i,"tabindex"),n=isNaN(s);return(n||s>=0)&&t(i,!n)}}),e("").outerWidth(1).jquery||e.each(["Width","Height"],function(t,i){function s(t,i,s,a){return e.each(n,function(){i-=parseFloat(e.css(t,"padding"+this))||0,s&&(i-=parseFloat(e.css(t,"border"+this+"Width"))||0),a&&(i-=parseFloat(e.css(t,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],a=i.toLowerCase(),o={innerWidth:e.fn.innerWidth,innerHeight:e.fn.innerHeight,outerWidth:e.fn.outerWidth,outerHeight:e.fn.outerHeight};e.fn["inner"+i]=function(t){return void 0===t?o["inner"+i].call(this):this.each(function(){e(this).css(a,s(this,t)+"px")})},e.fn["outer"+i]=function(t,n){return"number"!=typeof t?o["outer"+i].call(this,t):this.each(function(){e(this).css(a,s(this,t,!0,n)+"px")})}}),e.fn.addBack||(e.fn.addBack=function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}),e("").data("a-b","a").removeData("a-b").data("a-b")&&(e.fn.removeData=function(t){return function(i){return arguments.length?t.call(this,e.camelCase(i)):t.call(this)}}(e.fn.removeData)),e.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase()),e.fn.extend({focus:function(t){return function(i,s){return"number"==typeof i?this.each(function(){var t=this;setTimeout(function(){e(t).focus(),s&&s.call(t)},i)}):t.apply(this,arguments)}}(e.fn.focus),disableSelection:function(){var e="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.bind(e+".ui-disableSelection",function(e){e.preventDefault()})}}(),enableSelection:function(){return this.unbind(".ui-disableSelection")},zIndex:function(t){if(void 0!==t)return this.css("zIndex",t);if(this.length)for(var i,s,n=e(this[0]);n.length&&n[0]!==document;){if(i=n.css("position"),("absolute"===i||"relative"===i||"fixed"===i)&&(s=parseInt(n.css("zIndex"),10),!isNaN(s)&&0!==s))return s;n=n.parent()}return 0}}),e.ui.plugin={add:function(t,i,s){var n,a=e.ui[t].prototype;for(n in s)a.plugins[n]=a.plugins[n]||[],a.plugins[n].push([i,s[n]])},call:function(e,t,i,s){var n,a=e.plugins[t];if(a&&(s||e.element[0].parentNode&&11!==e.element[0].parentNode.nodeType))for(n=0;a.length>n;n++)e.options[a[n][0]]&&a[n][1].apply(e.element,i)}};var l=0,u=Array.prototype.slice;e.cleanData=function(t){return function(i){var s,n,a;for(a=0;null!=(n=i[a]);a++)try{s=e._data(n,"events"),s&&s.remove&&e(n).triggerHandler("remove")}catch(o){}t(i)}}(e.cleanData),e.widget=function(t,i,s){var n,a,o,r,h={},l=t.split(".")[0];return t=t.split(".")[1],n=l+"-"+t,s||(s=i,i=e.Widget),e.expr[":"][n.toLowerCase()]=function(t){return!!e.data(t,n)},e[l]=e[l]||{},a=e[l][t],o=e[l][t]=function(e,t){return this._createWidget?(arguments.length&&this._createWidget(e,t),void 0):new o(e,t)},e.extend(o,a,{version:s.version,_proto:e.extend({},s),_childConstructors:[]}),r=new i,r.options=e.widget.extend({},r.options),e.each(s,function(t,s){return e.isFunction(s)?(h[t]=function(){var e=function(){return i.prototype[t].apply(this,arguments)},n=function(e){return i.prototype[t].apply(this,e)};return function(){var t,i=this._super,a=this._superApply;return this._super=e,this._superApply=n,t=s.apply(this,arguments),this._super=i,this._superApply=a,t}}(),void 0):(h[t]=s,void 0)}),o.prototype=e.widget.extend(r,{widgetEventPrefix:a?r.widgetEventPrefix||t:t},h,{constructor:o,namespace:l,widgetName:t,widgetFullName:n}),a?(e.each(a._childConstructors,function(t,i){var s=i.prototype;e.widget(s.namespace+"."+s.widgetName,o,i._proto)}),delete a._childConstructors):i._childConstructors.push(o),e.widget.bridge(t,o),o},e.widget.extend=function(t){for(var i,s,n=u.call(arguments,1),a=0,o=n.length;o>a;a++)for(i in n[a])s=n[a][i],n[a].hasOwnProperty(i)&&void 0!==s&&(t[i]=e.isPlainObject(s)?e.isPlainObject(t[i])?e.widget.extend({},t[i],s):e.widget.extend({},s):s);return t},e.widget.bridge=function(t,i){var s=i.prototype.widgetFullName||t;e.fn[t]=function(n){var a="string"==typeof n,o=u.call(arguments,1),r=this;return n=!a&&o.length?e.widget.extend.apply(null,[n].concat(o)):n,a?this.each(function(){var i,a=e.data(this,s);return"instance"===n?(r=a,!1):a?e.isFunction(a[n])&&"_"!==n.charAt(0)?(i=a[n].apply(a,o),i!==a&&void 0!==i?(r=i&&i.jquery?r.pushStack(i.get()):i,!1):void 0):e.error("no such method '"+n+"' for "+t+" widget instance"):e.error("cannot call methods on "+t+" prior to initialization; "+"attempted to call method '"+n+"'")}):this.each(function(){var t=e.data(this,s);t?(t.option(n||{}),t._init&&t._init()):e.data(this,s,new i(n,this))}),r}},e.Widget=function(){},e.Widget._childConstructors=[],e.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{disabled:!1,create:null},_createWidget:function(t,i){i=e(i||this.defaultElement||this)[0],this.element=e(i),this.uuid=l++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=e(),this.hoverable=e(),this.focusable=e(),i!==this&&(e.data(i,this.widgetFullName,this),this._on(!0,this.element,{remove:function(e){e.target===i&&this.destroy()}}),this.document=e(i.style?i.ownerDocument:i.document||i),this.window=e(this.document[0].defaultView||this.document[0].parentWindow)),this.options=e.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:e.noop,_getCreateEventData:e.noop,_create:e.noop,_init:e.noop,destroy:function(){this._destroy(),this.element.unbind(this.eventNamespace).removeData(this.widgetFullName).removeData(e.camelCase(this.widgetFullName)),this.widget().unbind(this.eventNamespace).removeAttr("aria-disabled").removeClass(this.widgetFullName+"-disabled "+"ui-state-disabled"),this.bindings.unbind(this.eventNamespace),this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus")},_destroy:e.noop,widget:function(){return this.element},option:function(t,i){var s,n,a,o=t;if(0===arguments.length)return e.widget.extend({},this.options);if("string"==typeof t)if(o={},s=t.split("."),t=s.shift(),s.length){for(n=o[t]=e.widget.extend({},this.options[t]),a=0;s.length-1>a;a++)n[s[a]]=n[s[a]]||{},n=n[s[a]];if(t=s.pop(),1===arguments.length)return void 0===n[t]?null:n[t];n[t]=i}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=i}return this._setOptions(o),this},_setOptions:function(e){var t;for(t in e)this._setOption(t,e[t]);return this},_setOption:function(e,t){return this.options[e]=t,"disabled"===e&&(this.widget().toggleClass(this.widgetFullName+"-disabled",!!t),t&&(this.hoverable.removeClass("ui-state-hover"),this.focusable.removeClass("ui-state-focus"))),this},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_on:function(t,i,s){var n,a=this;"boolean"!=typeof t&&(s=i,i=t,t=!1),s?(i=n=e(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),e.each(s,function(s,o){function r(){return t||a.options.disabled!==!0&&!e(this).hasClass("ui-state-disabled")?("string"==typeof o?a[o]:o).apply(a,arguments):void 0}"string"!=typeof o&&(r.guid=o.guid=o.guid||r.guid||e.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+a.eventNamespace,u=h[2];u?n.delegate(u,l,r):i.bind(l,r)})},_off:function(t,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.unbind(i).undelegate(i),this.bindings=e(this.bindings.not(t).get()),this.focusable=e(this.focusable.not(t).get()),this.hoverable=e(this.hoverable.not(t).get())},_delay:function(e,t){function i(){return("string"==typeof e?s[e]:e).apply(s,arguments)}var s=this;return setTimeout(i,t||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){e(t.currentTarget).addClass("ui-state-hover")},mouseleave:function(t){e(t.currentTarget).removeClass("ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){e(t.currentTarget).addClass("ui-state-focus")},focusout:function(t){e(t.currentTarget).removeClass("ui-state-focus")}})},_trigger:function(t,i,s){var n,a,o=this.options[t];if(s=s||{},i=e.Event(i),i.type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),i.target=this.element[0],a=i.originalEvent)for(n in a)n in i||(i[n]=a[n]);return this.element.trigger(i,s),!(e.isFunction(o)&&o.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},e.each({show:"fadeIn",hide:"fadeOut"},function(t,i){e.Widget.prototype["_"+t]=function(s,n,a){"string"==typeof n&&(n={effect:n});var o,r=n?n===!0||"number"==typeof n?i:n.effect||i:t;n=n||{},"number"==typeof n&&(n={duration:n}),o=!e.isEmptyObject(n),n.complete=a,n.delay&&s.delay(n.delay),o&&e.effects&&e.effects.effect[r]?s[t](n):r!==t&&s[r]?s[r](n.duration,n.easing,a):s.queue(function(i){e(this)[t](),a&&a.call(s[0]),i()})}}),e.widget;var d=!1;e(document).mouseup(function(){d=!1}),e.widget("ui.mouse",{version:"1.11.2",options:{cancel:"input,textarea,button,select,option",distance:1,delay:0},_mouseInit:function(){var t=this;this.element.bind("mousedown."+this.widgetName,function(e){return t._mouseDown(e)}).bind("click."+this.widgetName,function(i){return!0===e.data(i.target,t.widgetName+".preventClickEvent")?(e.removeData(i.target,t.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.unbind("."+this.widgetName),this._mouseMoveDelegate&&this.document.unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(t){if(!d){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(t),this._mouseDownEvent=t;var i=this,s=1===t.which,n="string"==typeof this.options.cancel&&t.target.nodeName?e(t.target).closest(this.options.cancel).length:!1;return s&&!n&&this._mouseCapture(t)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=this._mouseStart(t)!==!1,!this._mouseStarted)?(t.preventDefault(),!0):(!0===e.data(t.target,this.widgetName+".preventClickEvent")&&e.removeData(t.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(e){return i._mouseMove(e)},this._mouseUpDelegate=function(e){return i._mouseUp(e)},this.document.bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate),t.preventDefault(),d=!0,!0)):!0}},_mouseMove:function(t){if(this._mouseMoved){if(e.ui.ie&&(!document.documentMode||9>document.documentMode)&&!t.button)return this._mouseUp(t);if(!t.which)return this._mouseUp(t)}return(t.which||t.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(t),t.preventDefault()):(this._mouseDistanceMet(t)&&this._mouseDelayMet(t)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,t)!==!1,this._mouseStarted?this._mouseDrag(t):this._mouseUp(t)),!this._mouseStarted)},_mouseUp:function(t){return this.document.unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,t.target===this._mouseDownEvent.target&&e.data(t.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(t)),d=!1,!1},_mouseDistanceMet:function(e){return Math.max(Math.abs(this._mouseDownEvent.pageX-e.pageX),Math.abs(this._mouseDownEvent.pageY-e.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),function(){function t(e,t,i){return[parseFloat(e[0])*(p.test(e[0])?t/100:1),parseFloat(e[1])*(p.test(e[1])?i/100:1)]}function i(t,i){return parseInt(e.css(t,i),10)||0}function s(t){var i=t[0];return 9===i.nodeType?{width:t.width(),height:t.height(),offset:{top:0,left:0}}:e.isWindow(i)?{width:t.width(),height:t.height(),offset:{top:t.scrollTop(),left:t.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:t.outerWidth(),height:t.outerHeight(),offset:t.offset()}}e.ui=e.ui||{};var n,a,o=Math.max,r=Math.abs,h=Math.round,l=/left|center|right/,u=/top|center|bottom/,d=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,p=/%$/,f=e.fn.position;e.position={scrollbarWidth:function(){if(void 0!==n)return n;var t,i,s=e("
"),a=s.children()[0];return e("body").append(s),t=a.offsetWidth,s.css("overflow","scroll"),i=a.offsetWidth,t===i&&(i=s[0].clientWidth),s.remove(),n=t-i},getScrollInfo:function(t){var i=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),s=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),n="scroll"===i||"auto"===i&&t.widthi?"left":t>0?"right":"center",vertical:0>a?"top":s>0?"bottom":"middle"};d>m&&m>r(t+i)&&(h.horizontal="center"),c>g&&g>r(s+a)&&(h.vertical="middle"),h.important=o(r(t),r(i))>o(r(s),r(a))?"horizontal":"vertical",n.using.call(this,e,h)}),u.offset(e.extend(M,{using:l}))})},e.ui.position={fit:{left:function(e,t){var i,s=t.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=e.left-t.collisionPosition.marginLeft,h=n-r,l=r+t.collisionWidth-a-n;t.collisionWidth>a?h>0&&0>=l?(i=e.left+h+t.collisionWidth-a-n,e.left+=h-i):e.left=l>0&&0>=h?n:h>l?n+a-t.collisionWidth:n:h>0?e.left+=h:l>0?e.left-=l:e.left=o(e.left-r,e.left)},top:function(e,t){var i,s=t.within,n=s.isWindow?s.scrollTop:s.offset.top,a=t.within.height,r=e.top-t.collisionPosition.marginTop,h=n-r,l=r+t.collisionHeight-a-n;t.collisionHeight>a?h>0&&0>=l?(i=e.top+h+t.collisionHeight-a-n,e.top+=h-i):e.top=l>0&&0>=h?n:h>l?n+a-t.collisionHeight:n:h>0?e.top+=h:l>0?e.top-=l:e.top=o(e.top-r,e.top)}},flip:{left:function(e,t){var i,s,n=t.within,a=n.offset.left+n.scrollLeft,o=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=e.left-t.collisionPosition.marginLeft,u=l-h,d=l+t.collisionWidth-o-h,c="left"===t.my[0]?-t.elemWidth:"right"===t.my[0]?t.elemWidth:0,p="left"===t.at[0]?t.targetWidth:"right"===t.at[0]?-t.targetWidth:0,f=-2*t.offset[0];0>u?(i=e.left+c+p+f+t.collisionWidth-o-a,(0>i||r(u)>i)&&(e.left+=c+p+f)):d>0&&(s=e.left-t.collisionPosition.marginLeft+c+p+f-h,(s>0||d>r(s))&&(e.left+=c+p+f))},top:function(e,t){var i,s,n=t.within,a=n.offset.top+n.scrollTop,o=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=e.top-t.collisionPosition.marginTop,u=l-h,d=l+t.collisionHeight-o-h,c="top"===t.my[1],p=c?-t.elemHeight:"bottom"===t.my[1]?t.elemHeight:0,f="top"===t.at[1]?t.targetHeight:"bottom"===t.at[1]?-t.targetHeight:0,m=-2*t.offset[1];0>u?(s=e.top+p+f+m+t.collisionHeight-o-a,e.top+p+f+m>u&&(0>s||r(u)>s)&&(e.top+=p+f+m)):d>0&&(i=e.top-t.collisionPosition.marginTop+p+f+m-h,e.top+p+f+m>d&&(i>0||d>r(i))&&(e.top+=p+f+m))}},flipfit:{left:function(){e.ui.position.flip.left.apply(this,arguments),e.ui.position.fit.left.apply(this,arguments)},top:function(){e.ui.position.flip.top.apply(this,arguments),e.ui.position.fit.top.apply(this,arguments)}}},function(){var t,i,s,n,o,r=document.getElementsByTagName("body")[0],h=document.createElement("div");t=document.createElement(r?"div":"body"),s={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},r&&e.extend(s,{position:"absolute",left:"-1000px",top:"-1000px"});for(o in s)t.style[o]=s[o];t.appendChild(h),i=r||document.documentElement,i.insertBefore(t,i.firstChild),h.style.cssText="position: absolute; left: 10.7432222px;",n=e(h).offset().left,a=n>10&&11>n,t.innerHTML="",i.removeChild(t)}()}(),e.ui.position,e.widget("ui.draggable",e.ui.mouse,{version:"1.11.2",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this.element.addClass("ui-draggable"),this.options.disabled&&this.element.addClass("ui-draggable-disabled"),this._setHandleClassName(),this._mouseInit()},_setOption:function(e,t){this._super(e,t),"handle"===e&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){return(this.helper||this.element).is(".ui-draggable-dragging")?(this.destroyOnClear=!0,void 0):(this.element.removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled"),this._removeHandleClassName(),this._mouseDestroy(),void 0)},_mouseCapture:function(t){var i=this.options;return this._blurActiveElement(t),this.helper||i.disabled||e(t.target).closest(".ui-resizable-handle").length>0?!1:(this.handle=this._getHandle(t),this.handle?(this._blockFrames(i.iframeFix===!0?"iframe":i.iframeFix),!0):!1)},_blockFrames:function(t){this.iframeBlocks=this.document.find(t).map(function(){var t=e(this);return e("
").css("position","absolute").appendTo(t.parent()).outerWidth(t.outerWidth()).outerHeight(t.outerHeight()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(t){var i=this.document[0];if(this.handleElement.is(t.target))try{i.activeElement&&"body"!==i.activeElement.nodeName.toLowerCase()&&e(i.activeElement).blur()}catch(s){}},_mouseStart:function(t){var i=this.options;return this.helper=this._createHelper(t),this.helper.addClass("ui-draggable-dragging"),this._cacheHelperProportions(),e.ui.ddmanager&&(e.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=this.helper.parents().filter(function(){return"fixed"===e(this).css("position")}).length>0,this.positionAbs=this.element.offset(),this._refreshOffsets(t),this.originalPosition=this.position=this._generatePosition(t,!1),this.originalPageX=t.pageX,this.originalPageY=t.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this._setContainment(),this._trigger("start",t)===!1?(this._clear(),!1):(this._cacheHelperProportions(),e.ui.ddmanager&&!i.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this._normalizeRightBottom(),this._mouseDrag(t,!0),e.ui.ddmanager&&e.ui.ddmanager.dragStart(this,t),!0)},_refreshOffsets:function(e){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:e.pageX-this.offset.left,top:e.pageY-this.offset.top}},_mouseDrag:function(t,i){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(t,!0),this.positionAbs=this._convertPositionTo("absolute"),!i){var s=this._uiHash();if(this._trigger("drag",t,s)===!1)return this._mouseUp({}),!1;this.position=s.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),!1},_mouseStop:function(t){var i=this,s=!1;return e.ui.ddmanager&&!this.options.dropBehaviour&&(s=e.ui.ddmanager.drop(this,t)),this.dropped&&(s=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!s||"valid"===this.options.revert&&s||this.options.revert===!0||e.isFunction(this.options.revert)&&this.options.revert.call(this.element,s)?e(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){i._trigger("stop",t)!==!1&&i._clear()}):this._trigger("stop",t)!==!1&&this._clear(),!1},_mouseUp:function(t){return this._unblockFrames(),e.ui.ddmanager&&e.ui.ddmanager.dragStop(this,t),this.handleElement.is(t.target)&&this.element.focus(),e.ui.mouse.prototype._mouseUp.call(this,t)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear(),this},_getHandle:function(t){return this.options.handle?!!e(t.target).closest(this.element.find(this.options.handle)).length:!0},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this.handleElement.addClass("ui-draggable-handle")},_removeHandleClassName:function(){this.handleElement.removeClass("ui-draggable-handle")},_createHelper:function(t){var i=this.options,s=e.isFunction(i.helper),n=s?e(i.helper.apply(this.element[0],[t])):"clone"===i.helper?this.element.clone().removeAttr("id"):this.element;return n.parents("body").length||n.appendTo("parent"===i.appendTo?this.element[0].parentNode:i.appendTo),s&&n[0]===this.element[0]&&this._setPositionRelative(),n[0]===this.element[0]||/(fixed|absolute)/.test(n.css("position"))||n.css("position","absolute"),n},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_isRootNode:function(e){return/(html|body)/i.test(e.tagName)||e===this.document[0]},_getParentOffset:function(){var t=this.offsetParent.offset(),i=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==i&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),this._isRootNode(this.offsetParent[0])&&(t={top:0,left:0}),{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var e=this.element.position(),t=this._isRootNode(this.scrollParent[0]);return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+(t?0:this.scrollParent.scrollTop()),left:e.left-(parseInt(this.helper.css("left"),10)||0)+(t?0:this.scrollParent.scrollLeft())}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,i,s,n=this.options,a=this.document[0];return this.relativeContainer=null,n.containment?"window"===n.containment?(this.containment=[e(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,e(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,e(window).scrollLeft()+e(window).width()-this.helperProportions.width-this.margins.left,e(window).scrollTop()+(e(window).height()||a.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):"document"===n.containment?(this.containment=[0,0,e(a).width()-this.helperProportions.width-this.margins.left,(e(a).height()||a.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):n.containment.constructor===Array?(this.containment=n.containment,void 0):("parent"===n.containment&&(n.containment=this.helper[0].parentNode),i=e(n.containment),s=i[0],s&&(t=/(scroll|auto)/.test(i.css("overflow")),this.containment=[(parseInt(i.css("borderLeftWidth"),10)||0)+(parseInt(i.css("paddingLeft"),10)||0),(parseInt(i.css("borderTopWidth"),10)||0)+(parseInt(i.css("paddingTop"),10)||0),(t?Math.max(s.scrollWidth,s.offsetWidth):s.offsetWidth)-(parseInt(i.css("borderRightWidth"),10)||0)-(parseInt(i.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(t?Math.max(s.scrollHeight,s.offsetHeight):s.offsetHeight)-(parseInt(i.css("borderBottomWidth"),10)||0)-(parseInt(i.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=i),void 0):(this.containment=null,void 0)},_convertPositionTo:function(e,t){t||(t=this.position);var i="absolute"===e?1:-1,s=this._isRootNode(this.scrollParent[0]);return{top:t.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:s?0:this.offset.scroll.top)*i,left:t.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:s?0:this.offset.scroll.left)*i}},_generatePosition:function(e,t){var i,s,n,a,o=this.options,r=this._isRootNode(this.scrollParent[0]),h=e.pageX,l=e.pageY;return r&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),t&&(this.containment&&(this.relativeContainer?(s=this.relativeContainer.offset(),i=[this.containment[0]+s.left,this.containment[1]+s.top,this.containment[2]+s.left,this.containment[3]+s.top]):i=this.containment,e.pageX-this.offset.click.lefti[2]&&(h=i[2]+this.offset.click.left),e.pageY-this.offset.click.top>i[3]&&(l=i[3]+this.offset.click.top)),o.grid&&(n=o.grid[1]?this.originalPageY+Math.round((l-this.originalPageY)/o.grid[1])*o.grid[1]:this.originalPageY,l=i?n-this.offset.click.top>=i[1]||n-this.offset.click.top>i[3]?n:n-this.offset.click.top>=i[1]?n-o.grid[1]:n+o.grid[1]:n,a=o.grid[0]?this.originalPageX+Math.round((h-this.originalPageX)/o.grid[0])*o.grid[0]:this.originalPageX,h=i?a-this.offset.click.left>=i[0]||a-this.offset.click.left>i[2]?a:a-this.offset.click.left>=i[0]?a-o.grid[0]:a+o.grid[0]:a),"y"===o.axis&&(h=this.originalPageX),"x"===o.axis&&(l=this.originalPageY)),{top:l-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:r?0:this.offset.scroll.top),left:h-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:r?0:this.offset.scroll.left)} +},_clear:function(){this.helper.removeClass("ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_normalizeRightBottom:function(){"y"!==this.options.axis&&"auto"!==this.helper.css("right")&&(this.helper.width(this.helper.width()),this.helper.css("right","auto")),"x"!==this.options.axis&&"auto"!==this.helper.css("bottom")&&(this.helper.height(this.helper.height()),this.helper.css("bottom","auto"))},_trigger:function(t,i,s){return s=s||this._uiHash(),e.ui.plugin.call(this,t,[i,s,this],!0),/^(drag|start|stop)/.test(t)&&(this.positionAbs=this._convertPositionTo("absolute"),s.offset=this.positionAbs),e.Widget.prototype._trigger.call(this,t,i,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),e.ui.plugin.add("draggable","connectToSortable",{start:function(t,i,s){var n=e.extend({},i,{item:s.element});s.sortables=[],e(s.options.connectToSortable).each(function(){var i=e(this).sortable("instance");i&&!i.options.disabled&&(s.sortables.push(i),i.refreshPositions(),i._trigger("activate",t,n))})},stop:function(t,i,s){var n=e.extend({},i,{item:s.element});s.cancelHelperRemoval=!1,e.each(s.sortables,function(){var e=this;e.isOver?(e.isOver=0,s.cancelHelperRemoval=!0,e.cancelHelperRemoval=!1,e._storedCSS={position:e.placeholder.css("position"),top:e.placeholder.css("top"),left:e.placeholder.css("left")},e._mouseStop(t),e.options.helper=e.options._helper):(e.cancelHelperRemoval=!0,e._trigger("deactivate",t,n))})},drag:function(t,i,s){e.each(s.sortables,function(){var n=!1,a=this;a.positionAbs=s.positionAbs,a.helperProportions=s.helperProportions,a.offset.click=s.offset.click,a._intersectsWith(a.containerCache)&&(n=!0,e.each(s.sortables,function(){return this.positionAbs=s.positionAbs,this.helperProportions=s.helperProportions,this.offset.click=s.offset.click,this!==a&&this._intersectsWith(this.containerCache)&&e.contains(a.element[0],this.element[0])&&(n=!1),n})),n?(a.isOver||(a.isOver=1,a.currentItem=i.helper.appendTo(a.element).data("ui-sortable-item",!0),a.options._helper=a.options.helper,a.options.helper=function(){return i.helper[0]},t.target=a.currentItem[0],a._mouseCapture(t,!0),a._mouseStart(t,!0,!0),a.offset.click.top=s.offset.click.top,a.offset.click.left=s.offset.click.left,a.offset.parent.left-=s.offset.parent.left-a.offset.parent.left,a.offset.parent.top-=s.offset.parent.top-a.offset.parent.top,s._trigger("toSortable",t),s.dropped=a.element,e.each(s.sortables,function(){this.refreshPositions()}),s.currentItem=s.element,a.fromOutside=s),a.currentItem&&(a._mouseDrag(t),i.position=a.position)):a.isOver&&(a.isOver=0,a.cancelHelperRemoval=!0,a.options._revert=a.options.revert,a.options.revert=!1,a._trigger("out",t,a._uiHash(a)),a._mouseStop(t,!0),a.options.revert=a.options._revert,a.options.helper=a.options._helper,a.placeholder&&a.placeholder.remove(),s._refreshOffsets(t),i.position=s._generatePosition(t,!0),s._trigger("fromSortable",t),s.dropped=!1,e.each(s.sortables,function(){this.refreshPositions()}))})}}),e.ui.plugin.add("draggable","cursor",{start:function(t,i,s){var n=e("body"),a=s.options;n.css("cursor")&&(a._cursor=n.css("cursor")),n.css("cursor",a.cursor)},stop:function(t,i,s){var n=s.options;n._cursor&&e("body").css("cursor",n._cursor)}}),e.ui.plugin.add("draggable","opacity",{start:function(t,i,s){var n=e(i.helper),a=s.options;n.css("opacity")&&(a._opacity=n.css("opacity")),n.css("opacity",a.opacity)},stop:function(t,i,s){var n=s.options;n._opacity&&e(i.helper).css("opacity",n._opacity)}}),e.ui.plugin.add("draggable","scroll",{start:function(e,t,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(t,i,s){var n=s.options,a=!1,o=s.scrollParentNotHidden[0],r=s.document[0];o!==r&&"HTML"!==o.tagName?(n.axis&&"x"===n.axis||(s.overflowOffset.top+o.offsetHeight-t.pageY=0;c--)h=s.snapElements[c].left-s.margins.left,l=h+s.snapElements[c].width,u=s.snapElements[c].top-s.margins.top,d=u+s.snapElements[c].height,h-m>v||g>l+m||u-m>b||y>d+m||!e.contains(s.snapElements[c].item.ownerDocument,s.snapElements[c].item)?(s.snapElements[c].snapping&&s.options.snap.release&&s.options.snap.release.call(s.element,t,e.extend(s._uiHash(),{snapItem:s.snapElements[c].item})),s.snapElements[c].snapping=!1):("inner"!==f.snapMode&&(n=m>=Math.abs(u-b),a=m>=Math.abs(d-y),o=m>=Math.abs(h-v),r=m>=Math.abs(l-g),n&&(i.position.top=s._convertPositionTo("relative",{top:u-s.helperProportions.height,left:0}).top),a&&(i.position.top=s._convertPositionTo("relative",{top:d,left:0}).top),o&&(i.position.left=s._convertPositionTo("relative",{top:0,left:h-s.helperProportions.width}).left),r&&(i.position.left=s._convertPositionTo("relative",{top:0,left:l}).left)),p=n||a||o||r,"outer"!==f.snapMode&&(n=m>=Math.abs(u-y),a=m>=Math.abs(d-b),o=m>=Math.abs(h-g),r=m>=Math.abs(l-v),n&&(i.position.top=s._convertPositionTo("relative",{top:u,left:0}).top),a&&(i.position.top=s._convertPositionTo("relative",{top:d-s.helperProportions.height,left:0}).top),o&&(i.position.left=s._convertPositionTo("relative",{top:0,left:h}).left),r&&(i.position.left=s._convertPositionTo("relative",{top:0,left:l-s.helperProportions.width}).left)),!s.snapElements[c].snapping&&(n||a||o||r||p)&&s.options.snap.snap&&s.options.snap.snap.call(s.element,t,e.extend(s._uiHash(),{snapItem:s.snapElements[c].item})),s.snapElements[c].snapping=n||a||o||r||p)}}),e.ui.plugin.add("draggable","stack",{start:function(t,i,s){var n,a=s.options,o=e.makeArray(e(a.stack)).sort(function(t,i){return(parseInt(e(t).css("zIndex"),10)||0)-(parseInt(e(i).css("zIndex"),10)||0)});o.length&&(n=parseInt(e(o[0]).css("zIndex"),10)||0,e(o).each(function(t){e(this).css("zIndex",n+t)}),this.css("zIndex",n+o.length))}}),e.ui.plugin.add("draggable","zIndex",{start:function(t,i,s){var n=e(i.helper),a=s.options;n.css("zIndex")&&(a._zIndex=n.css("zIndex")),n.css("zIndex",a.zIndex)},stop:function(t,i,s){var n=s.options;n._zIndex&&e(i.helper).css("zIndex",n._zIndex)}}),e.ui.draggable,e.widget("ui.droppable",{version:"1.11.2",widgetEventPrefix:"drop",options:{accept:"*",activeClass:!1,addClasses:!0,greedy:!1,hoverClass:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var t,i=this.options,s=i.accept;this.isover=!1,this.isout=!0,this.accept=e.isFunction(s)?s:function(e){return e.is(s)},this.proportions=function(){return arguments.length?(t=arguments[0],void 0):t?t:t={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight}},this._addToManager(i.scope),i.addClasses&&this.element.addClass("ui-droppable")},_addToManager:function(t){e.ui.ddmanager.droppables[t]=e.ui.ddmanager.droppables[t]||[],e.ui.ddmanager.droppables[t].push(this)},_splice:function(e){for(var t=0;e.length>t;t++)e[t]===this&&e.splice(t,1)},_destroy:function(){var t=e.ui.ddmanager.droppables[this.options.scope];this._splice(t),this.element.removeClass("ui-droppable ui-droppable-disabled")},_setOption:function(t,i){if("accept"===t)this.accept=e.isFunction(i)?i:function(e){return e.is(i)};else if("scope"===t){var s=e.ui.ddmanager.droppables[this.options.scope];this._splice(s),this._addToManager(i)}this._super(t,i)},_activate:function(t){var i=e.ui.ddmanager.current;this.options.activeClass&&this.element.addClass(this.options.activeClass),i&&this._trigger("activate",t,this.ui(i))},_deactivate:function(t){var i=e.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass),i&&this._trigger("deactivate",t,this.ui(i))},_over:function(t){var i=e.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this.options.hoverClass&&this.element.addClass(this.options.hoverClass),this._trigger("over",t,this.ui(i)))},_out:function(t){var i=e.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("out",t,this.ui(i)))},_drop:function(t,i){var s=i||e.ui.ddmanager.current,n=!1;return s&&(s.currentItem||s.element)[0]!==this.element[0]?(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var i=e(this).droppable("instance");return i.options.greedy&&!i.options.disabled&&i.options.scope===s.options.scope&&i.accept.call(i.element[0],s.currentItem||s.element)&&e.ui.intersect(s,e.extend(i,{offset:i.element.offset()}),i.options.tolerance,t)?(n=!0,!1):void 0}),n?!1:this.accept.call(this.element[0],s.currentItem||s.element)?(this.options.activeClass&&this.element.removeClass(this.options.activeClass),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass),this._trigger("drop",t,this.ui(s)),this.element):!1):!1},ui:function(e){return{draggable:e.currentItem||e.element,helper:e.helper,position:e.position,offset:e.positionAbs}}}),e.ui.intersect=function(){function e(e,t,i){return e>=t&&t+i>e}return function(t,i,s,n){if(!i.offset)return!1;var a=(t.positionAbs||t.position.absolute).left+t.margins.left,o=(t.positionAbs||t.position.absolute).top+t.margins.top,r=a+t.helperProportions.width,h=o+t.helperProportions.height,l=i.offset.left,u=i.offset.top,d=l+i.proportions().width,c=u+i.proportions().height;switch(s){case"fit":return a>=l&&d>=r&&o>=u&&c>=h;case"intersect":return a+t.helperProportions.width/2>l&&d>r-t.helperProportions.width/2&&o+t.helperProportions.height/2>u&&c>h-t.helperProportions.height/2;case"pointer":return e(n.pageY,u,i.proportions().height)&&e(n.pageX,l,i.proportions().width);case"touch":return(o>=u&&c>=o||h>=u&&c>=h||u>o&&h>c)&&(a>=l&&d>=a||r>=l&&d>=r||l>a&&r>d);default:return!1}}}(),e.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(t,i){var s,n,a=e.ui.ddmanager.droppables[t.options.scope]||[],o=i?i.type:null,r=(t.currentItem||t.element).find(":data(ui-droppable)").addBack();e:for(s=0;a.length>s;s++)if(!(a[s].options.disabled||t&&!a[s].accept.call(a[s].element[0],t.currentItem||t.element))){for(n=0;r.length>n;n++)if(r[n]===a[s].element[0]){a[s].proportions().height=0;continue e}a[s].visible="none"!==a[s].element.css("display"),a[s].visible&&("mousedown"===o&&a[s]._activate.call(a[s],i),a[s].offset=a[s].element.offset(),a[s].proportions({width:a[s].element[0].offsetWidth,height:a[s].element[0].offsetHeight}))}},drop:function(t,i){var s=!1;return e.each((e.ui.ddmanager.droppables[t.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&e.ui.intersect(t,this,this.options.tolerance,i)&&(s=this._drop.call(this,i)||s),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],t.currentItem||t.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,i)))}),s},dragStart:function(t,i){t.element.parentsUntil("body").bind("scroll.droppable",function(){t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,i)})},drag:function(t,i){t.options.refreshPositions&&e.ui.ddmanager.prepareOffsets(t,i),e.each(e.ui.ddmanager.droppables[t.options.scope]||[],function(){if(!this.options.disabled&&!this.greedyChild&&this.visible){var s,n,a,o=e.ui.intersect(t,this,this.options.tolerance,i),r=!o&&this.isover?"isout":o&&!this.isover?"isover":null;r&&(this.options.greedy&&(n=this.options.scope,a=this.element.parents(":data(ui-droppable)").filter(function(){return e(this).droppable("instance").options.scope===n}),a.length&&(s=e(a[0]).droppable("instance"),s.greedyChild="isover"===r)),s&&"isover"===r&&(s.isover=!1,s.isout=!0,s._out.call(s,i)),this[r]=!0,this["isout"===r?"isover":"isout"]=!1,this["isover"===r?"_over":"_out"].call(this,i),s&&"isout"===r&&(s.isout=!1,s.isover=!0,s._over.call(s,i)))}})},dragStop:function(t,i){t.element.parentsUntil("body").unbind("scroll.droppable"),t.options.refreshPositions||e.ui.ddmanager.prepareOffsets(t,i)}},e.ui.droppable,e.widget("ui.resizable",e.ui.mouse,{version:"1.11.2",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(e){return parseInt(e,10)||0},_isNumber:function(e){return!isNaN(parseInt(e,10))},_hasScroll:function(t,i){if("hidden"===e(t).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return t[s]>0?!0:(t[s]=1,n=t[s]>0,t[s]=0,n)},_create:function(){var t,i,s,n,a,o=this,r=this.options;if(this.element.addClass("ui-resizable"),e.extend(this,{_aspectRatio:!!r.aspectRatio,aspectRatio:r.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:r.helper||r.ghost||r.animate?r.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)&&(this.element.wrap(e("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")}),this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0}),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css({margin:this.originalElement.css("margin")}),this._proportionallyResize()),this.handles=r.handles||(e(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),t=this.handles.split(","),this.handles={},i=0;t.length>i;i++)s=e.trim(t[i]),a="ui-resizable-"+s,n=e("
"),n.css({zIndex:r.zIndex}),"se"===s&&n.addClass("ui-icon ui-icon-gripsmall-diagonal-se"),this.handles[s]=".ui-resizable-"+s,this.element.append(n);this._renderAxis=function(t){var i,s,n,a;t=t||this.element;for(i in this.handles)this.handles[i].constructor===String&&(this.handles[i]=this.element.children(this.handles[i]).first().show()),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)&&(s=e(this.handles[i],this.element),a=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),t.css(n,a),this._proportionallyResize()),e(this.handles[i]).length},this._renderAxis(this.element),this._handles=e(".ui-resizable-handle",this.element).disableSelection(),this._handles.mouseover(function(){o.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),o.axis=n&&n[1]?n[1]:"se")}),r.autoHide&&(this._handles.hide(),e(this.element).addClass("ui-resizable-autohide").mouseenter(function(){r.disabled||(e(this).removeClass("ui-resizable-autohide"),o._handles.show())}).mouseleave(function(){r.disabled||o.resizing||(e(this).addClass("ui-resizable-autohide"),o._handles.hide())})),this._mouseInit()},_destroy:function(){this._mouseDestroy();var t,i=function(t){e(t).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").removeData("ui-resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),t=this.element,this.originalElement.css({position:t.css("position"),width:t.outerWidth(),height:t.outerHeight(),top:t.css("top"),left:t.css("left")}).insertAfter(t),t.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_mouseCapture:function(t){var i,s,n=!1;for(i in this.handles)s=e(this.handles[i])[0],(s===t.target||e.contains(s,t.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(t){var i,s,n,a=this.options,o=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),a.containment&&(i+=e(a.containment).scrollLeft()||0,s+=e(a.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:o.width(),height:o.height()},this.originalSize=this._helper?{width:o.outerWidth(),height:o.outerHeight()}:{width:o.width(),height:o.height()},this.sizeDiff={width:o.outerWidth()-o.width(),height:o.outerHeight()-o.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof a.aspectRatio?a.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=e(".ui-resizable-"+this.axis).css("cursor"),e("body").css("cursor","auto"===n?this.axis+"-resize":n),o.addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var i,s,n=this.originalMousePosition,a=this.axis,o=t.pageX-n.left||0,r=t.pageY-n.top||0,h=this._change[a];return this._updatePrevProperties(),h?(i=h.apply(this,[t,o,r]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(i=this._updateRatio(i,t)),i=this._respectSize(i,t),this._updateCache(i),this._propagate("resize",t),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),e.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(t){this.resizing=!1;var i,s,n,a,o,r,h,l=this.options,u=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:u.sizeDiff.height,a=s?0:u.sizeDiff.width,o={width:u.helper.width()-a,height:u.helper.height()-n},r=parseInt(u.element.css("left"),10)+(u.position.left-u.originalPosition.left)||null,h=parseInt(u.element.css("top"),10)+(u.position.top-u.originalPosition.top)||null,l.animate||this.element.css(e.extend(o,{top:h,left:r})),u.helper.height(u.size.height),u.helper.width(u.size.width),this._helper&&!l.animate&&this._proportionallyResize()),e("body").css("cursor","auto"),this.element.removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var e={};return this.position.top!==this.prevPosition.top&&(e.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(e.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(e.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(e.height=this.size.height+"px"),this.helper.css(e),e},_updateVirtualBoundaries:function(e){var t,i,s,n,a,o=this.options;a={minWidth:this._isNumber(o.minWidth)?o.minWidth:0,maxWidth:this._isNumber(o.maxWidth)?o.maxWidth:1/0,minHeight:this._isNumber(o.minHeight)?o.minHeight:0,maxHeight:this._isNumber(o.maxHeight)?o.maxHeight:1/0},(this._aspectRatio||e)&&(t=a.minHeight*this.aspectRatio,s=a.minWidth/this.aspectRatio,i=a.maxHeight*this.aspectRatio,n=a.maxWidth/this.aspectRatio,t>a.minWidth&&(a.minWidth=t),s>a.minHeight&&(a.minHeight=s),a.maxWidth>i&&(a.maxWidth=i),a.maxHeight>n&&(a.maxHeight=n)),this._vBoundaries=a},_updateCache:function(e){this.offset=this.helper.offset(),this._isNumber(e.left)&&(this.position.left=e.left),this._isNumber(e.top)&&(this.position.top=e.top),this._isNumber(e.height)&&(this.size.height=e.height),this._isNumber(e.width)&&(this.size.width=e.width)},_updateRatio:function(e){var t=this.position,i=this.size,s=this.axis;return this._isNumber(e.height)?e.width=e.height*this.aspectRatio:this._isNumber(e.width)&&(e.height=e.width/this.aspectRatio),"sw"===s&&(e.left=t.left+(i.width-e.width),e.top=null),"nw"===s&&(e.top=t.top+(i.height-e.height),e.left=t.left+(i.width-e.width)),e},_respectSize:function(e){var t=this._vBoundaries,i=this.axis,s=this._isNumber(e.width)&&t.maxWidth&&t.maxWidthe.width,o=this._isNumber(e.height)&&t.minHeight&&t.minHeight>e.height,r=this.originalPosition.left+this.originalSize.width,h=this.position.top+this.size.height,l=/sw|nw|w/.test(i),u=/nw|ne|n/.test(i);return a&&(e.width=t.minWidth),o&&(e.height=t.minHeight),s&&(e.width=t.maxWidth),n&&(e.height=t.maxHeight),a&&l&&(e.left=r-t.minWidth),s&&l&&(e.left=r-t.maxWidth),o&&u&&(e.top=h-t.minHeight),n&&u&&(e.top=h-t.maxHeight),e.width||e.height||e.left||!e.top?e.width||e.height||e.top||!e.left||(e.left=null):e.top=null,e},_getPaddingPlusBorderDimensions:function(e){for(var t=0,i=[],s=[e.css("borderTopWidth"),e.css("borderRightWidth"),e.css("borderBottomWidth"),e.css("borderLeftWidth")],n=[e.css("paddingTop"),e.css("paddingRight"),e.css("paddingBottom"),e.css("paddingLeft")];4>t;t++)i[t]=parseInt(s[t],10)||0,i[t]+=parseInt(n[t],10)||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var e,t=0,i=this.helper||this.element;this._proportionallyResizeElements.length>t;t++)e=this._proportionallyResizeElements[t],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(e)),e.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var t=this.element,i=this.options;this.elementOffset=t.offset(),this._helper?(this.helper=this.helper||e("
"),this.helper.addClass(this._helper).css({width:this.element.outerWidth()-1,height:this.element.outerHeight()-1,position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(e,t){return{width:this.originalSize.width+t}},w:function(e,t){var i=this.originalSize,s=this.originalPosition;return{left:s.left+t,width:i.width-t}},n:function(e,t,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(e,t,i){return{height:this.originalSize.height+i}},se:function(t,i,s){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,i,s]))},sw:function(t,i,s){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,i,s]))},ne:function(t,i,s){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,i,s]))},nw:function(t,i,s){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,i,s]))}},_propagate:function(t,i){e.ui.plugin.call(this,t,[i,this.ui()]),"resize"!==t&&this._trigger(t,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),e.ui.plugin.add("resizable","animate",{stop:function(t){var i=e(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,a=n.length&&/textarea/i.test(n[0].nodeName),o=a&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=a?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-o},l=parseInt(i.element.css("left"),10)+(i.position.left-i.originalPosition.left)||null,u=parseInt(i.element.css("top"),10)+(i.position.top-i.originalPosition.top)||null;i.element.animate(e.extend(h,u&&l?{top:u,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseInt(i.element.css("width"),10),height:parseInt(i.element.css("height"),10),top:parseInt(i.element.css("top"),10),left:parseInt(i.element.css("left"),10)};n&&n.length&&e(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",t)}})}}),e.ui.plugin.add("resizable","containment",{start:function(){var t,i,s,n,a,o,r,h=e(this).resizable("instance"),l=h.options,u=h.element,d=l.containment,c=d instanceof e?d.get(0):/parent/.test(d)?u.parent().get(0):d;c&&(h.containerElement=e(c),/document/.test(d)||d===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}):(t=e(c),i=[],e(["Top","Right","Left","Bottom"]).each(function(e,s){i[e]=h._num(t.css("padding"+s))}),h.containerOffset=t.offset(),h.containerPosition=t.position(),h.containerSize={height:t.innerHeight()-i[3],width:t.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,a=h.containerSize.width,o=h._hasScroll(c,"left")?c.scrollWidth:a,r=h._hasScroll(c)?c.scrollHeight:n,h.parentData={element:c,left:s.left,top:s.top,width:o,height:r}))},resize:function(t){var i,s,n,a,o=e(this).resizable("instance"),r=o.options,h=o.containerOffset,l=o.position,u=o._aspectRatio||t.shiftKey,d={top:0,left:0},c=o.containerElement,p=!0;c[0]!==document&&/static/.test(c.css("position"))&&(d=h),l.left<(o._helper?h.left:0)&&(o.size.width=o.size.width+(o._helper?o.position.left-h.left:o.position.left-d.left),u&&(o.size.height=o.size.width/o.aspectRatio,p=!1),o.position.left=r.helper?h.left:0),l.top<(o._helper?h.top:0)&&(o.size.height=o.size.height+(o._helper?o.position.top-h.top:o.position.top),u&&(o.size.width=o.size.height*o.aspectRatio,p=!1),o.position.top=o._helper?h.top:0),n=o.containerElement.get(0)===o.element.parent().get(0),a=/relative|absolute/.test(o.containerElement.css("position")),n&&a?(o.offset.left=o.parentData.left+o.position.left,o.offset.top=o.parentData.top+o.position.top):(o.offset.left=o.element.offset().left,o.offset.top=o.element.offset().top),i=Math.abs(o.sizeDiff.width+(o._helper?o.offset.left-d.left:o.offset.left-h.left)),s=Math.abs(o.sizeDiff.height+(o._helper?o.offset.top-d.top:o.offset.top-h.top)),i+o.size.width>=o.parentData.width&&(o.size.width=o.parentData.width-i,u&&(o.size.height=o.size.width/o.aspectRatio,p=!1)),s+o.size.height>=o.parentData.height&&(o.size.height=o.parentData.height-s,u&&(o.size.width=o.size.height*o.aspectRatio,p=!1)),p||(o.position.left=o.prevPosition.left,o.position.top=o.prevPosition.top,o.size.width=o.prevSize.width,o.size.height=o.prevSize.height)},stop:function(){var t=e(this).resizable("instance"),i=t.options,s=t.containerOffset,n=t.containerPosition,a=t.containerElement,o=e(t.helper),r=o.offset(),h=o.outerWidth()-t.sizeDiff.width,l=o.outerHeight()-t.sizeDiff.height;t._helper&&!i.animate&&/relative/.test(a.css("position"))&&e(this).css({left:r.left-n.left-s.left,width:h,height:l}),t._helper&&!i.animate&&/static/.test(a.css("position"))&&e(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),e.ui.plugin.add("resizable","alsoResize",{start:function(){var t=e(this).resizable("instance"),i=t.options,s=function(t){e(t).each(function(){var t=e(this);t.data("ui-resizable-alsoresize",{width:parseInt(t.width(),10),height:parseInt(t.height(),10),left:parseInt(t.css("left"),10),top:parseInt(t.css("top"),10)})})};"object"!=typeof i.alsoResize||i.alsoResize.parentNode?s(i.alsoResize):i.alsoResize.length?(i.alsoResize=i.alsoResize[0],s(i.alsoResize)):e.each(i.alsoResize,function(e){s(e)})},resize:function(t,i){var s=e(this).resizable("instance"),n=s.options,a=s.originalSize,o=s.originalPosition,r={height:s.size.height-a.height||0,width:s.size.width-a.width||0,top:s.position.top-o.top||0,left:s.position.left-o.left||0},h=function(t,s){e(t).each(function(){var t=e(this),n=e(this).data("ui-resizable-alsoresize"),a={},o=s&&s.length?s:t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(o,function(e,t){var i=(n[t]||0)+(r[t]||0);i&&i>=0&&(a[t]=i||null)}),t.css(a)})};"object"!=typeof n.alsoResize||n.alsoResize.nodeType?h(n.alsoResize):e.each(n.alsoResize,function(e,t){h(e,t)})},stop:function(){e(this).removeData("resizable-alsoresize")}}),e.ui.plugin.add("resizable","ghost",{start:function(){var t=e(this).resizable("instance"),i=t.options,s=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:s.height,width:s.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass("string"==typeof i.ghost?i.ghost:""),t.ghost.appendTo(t.helper)},resize:function(){var t=e(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=e(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),e.ui.plugin.add("resizable","grid",{resize:function(){var t,i=e(this).resizable("instance"),s=i.options,n=i.size,a=i.originalSize,o=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,u=h[1]||1,d=Math.round((n.width-a.width)/l)*l,c=Math.round((n.height-a.height)/u)*u,p=a.width+d,f=a.height+c,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,v=s.minWidth&&s.minWidth>p,y=s.minHeight&&s.minHeight>f;s.grid=h,v&&(p+=l),y&&(f+=u),m&&(p-=l),g&&(f-=u),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=o.top-c):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=o.left-d):((0>=f-u||0>=p-l)&&(t=i._getPaddingPlusBorderDimensions(this)),f-u>0?(i.size.height=f,i.position.top=o.top-c):(f=u-t.height,i.size.height=f,i.position.top=o.top+a.height-f),p-l>0?(i.size.width=p,i.position.left=o.left-d):(p=u-t.height,i.size.width=p,i.position.left=o.left+a.width-p))}}),e.ui.resizable,e.widget("ui.selectable",e.ui.mouse,{version:"1.11.2",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var t,i=this; +this.element.addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){t=e(i.options.filter,i.element[0]),t.addClass("ui-selectee"),t.each(function(){var t=e(this),i=t.offset();e.data(this,"selectable-item",{element:this,$element:t,left:i.left,top:i.top,right:i.left+t.outerWidth(),bottom:i.top+t.outerHeight(),startselected:!1,selected:t.hasClass("ui-selected"),selecting:t.hasClass("ui-selecting"),unselecting:t.hasClass("ui-unselecting")})})},this.refresh(),this.selectees=t.addClass("ui-selectee"),this._mouseInit(),this.helper=e("
")},_destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item"),this.element.removeClass("ui-selectable ui-selectable-disabled"),this._mouseDestroy()},_mouseStart:function(t){var i=this,s=this.options;this.opos=[t.pageX,t.pageY],this.options.disabled||(this.selectees=e(s.filter,this.element[0]),this._trigger("start",t),e(s.appendTo).append(this.helper),this.helper.css({left:t.pageX,top:t.pageY,width:0,height:0}),s.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var s=e.data(this,"selectable-item");s.startselected=!0,t.metaKey||t.ctrlKey||(s.$element.removeClass("ui-selected"),s.selected=!1,s.$element.addClass("ui-unselecting"),s.unselecting=!0,i._trigger("unselecting",t,{unselecting:s.element}))}),e(t.target).parents().addBack().each(function(){var s,n=e.data(this,"selectable-item");return n?(s=!t.metaKey&&!t.ctrlKey||!n.$element.hasClass("ui-selected"),n.$element.removeClass(s?"ui-unselecting":"ui-selected").addClass(s?"ui-selecting":"ui-unselecting"),n.unselecting=!s,n.selecting=s,n.selected=s,s?i._trigger("selecting",t,{selecting:n.element}):i._trigger("unselecting",t,{unselecting:n.element}),!1):void 0}))},_mouseDrag:function(t){if(this.dragged=!0,!this.options.disabled){var i,s=this,n=this.options,a=this.opos[0],o=this.opos[1],r=t.pageX,h=t.pageY;return a>r&&(i=r,r=a,a=i),o>h&&(i=h,h=o,o=i),this.helper.css({left:a,top:o,width:r-a,height:h-o}),this.selectees.each(function(){var i=e.data(this,"selectable-item"),l=!1;i&&i.element!==s.element[0]&&("touch"===n.tolerance?l=!(i.left>r||a>i.right||i.top>h||o>i.bottom):"fit"===n.tolerance&&(l=i.left>a&&r>i.right&&i.top>o&&h>i.bottom),l?(i.selected&&(i.$element.removeClass("ui-selected"),i.selected=!1),i.unselecting&&(i.$element.removeClass("ui-unselecting"),i.unselecting=!1),i.selecting||(i.$element.addClass("ui-selecting"),i.selecting=!0,s._trigger("selecting",t,{selecting:i.element}))):(i.selecting&&((t.metaKey||t.ctrlKey)&&i.startselected?(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.$element.addClass("ui-selected"),i.selected=!0):(i.$element.removeClass("ui-selecting"),i.selecting=!1,i.startselected&&(i.$element.addClass("ui-unselecting"),i.unselecting=!0),s._trigger("unselecting",t,{unselecting:i.element}))),i.selected&&(t.metaKey||t.ctrlKey||i.startselected||(i.$element.removeClass("ui-selected"),i.selected=!1,i.$element.addClass("ui-unselecting"),i.unselecting=!0,s._trigger("unselecting",t,{unselecting:i.element})))))}),!1}},_mouseStop:function(t){var i=this;return this.dragged=!1,e(".ui-unselecting",this.element[0]).each(function(){var s=e.data(this,"selectable-item");s.$element.removeClass("ui-unselecting"),s.unselecting=!1,s.startselected=!1,i._trigger("unselected",t,{unselected:s.element})}),e(".ui-selecting",this.element[0]).each(function(){var s=e.data(this,"selectable-item");s.$element.removeClass("ui-selecting").addClass("ui-selected"),s.selecting=!1,s.selected=!0,s.startselected=!0,i._trigger("selected",t,{selected:s.element})}),this._trigger("stop",t),this.helper.remove(),!1}}),e.widget("ui.sortable",e.ui.mouse,{version:"1.11.2",widgetEventPrefix:"sort",ready:!1,options:{appendTo:"parent",axis:!1,connectWith:!1,containment:!1,cursor:"auto",cursorAt:!1,dropOnEmpty:!0,forcePlaceholderSize:!1,forceHelperSize:!1,grid:!1,handle:!1,helper:"original",items:"> *",opacity:!1,placeholder:!1,revert:!1,scroll:!0,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1e3,activate:null,beforeStop:null,change:null,deactivate:null,out:null,over:null,receive:null,remove:null,sort:null,start:null,stop:null,update:null},_isOverAxis:function(e,t,i){return e>=t&&t+i>e},_isFloating:function(e){return/left|right/.test(e.css("float"))||/inline|table-cell/.test(e.css("display"))},_create:function(){var e=this.options;this.containerCache={},this.element.addClass("ui-sortable"),this.refresh(),this.floating=this.items.length?"x"===e.axis||this._isFloating(this.items[0].item):!1,this.offset=this.element.offset(),this._mouseInit(),this._setHandleClassName(),this.ready=!0},_setOption:function(e,t){this._super(e,t),"handle"===e&&this._setHandleClassName()},_setHandleClassName:function(){this.element.find(".ui-sortable-handle").removeClass("ui-sortable-handle"),e.each(this.items,function(){(this.instance.options.handle?this.item.find(this.instance.options.handle):this.item).addClass("ui-sortable-handle")})},_destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").find(".ui-sortable-handle").removeClass("ui-sortable-handle"),this._mouseDestroy();for(var e=this.items.length-1;e>=0;e--)this.items[e].item.removeData(this.widgetName+"-item");return this},_mouseCapture:function(t,i){var s=null,n=!1,a=this;return this.reverting?!1:this.options.disabled||"static"===this.options.type?!1:(this._refreshItems(t),e(t.target).parents().each(function(){return e.data(this,a.widgetName+"-item")===a?(s=e(this),!1):void 0}),e.data(t.target,a.widgetName+"-item")===a&&(s=e(t.target)),s?!this.options.handle||i||(e(this.options.handle,s).find("*").addBack().each(function(){this===t.target&&(n=!0)}),n)?(this.currentItem=s,this._removeCurrentsFromItems(),!0):!1:!1)},_mouseStart:function(t,i,s){var n,a,o=this.options;if(this.currentContainer=this,this.refreshPositions(),this.helper=this._createHelper(t),this._cacheHelperProportions(),this._cacheMargins(),this.scrollParent=this.helper.scrollParent(),this.offset=this.currentItem.offset(),this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left},e.extend(this.offset,{click:{left:t.pageX-this.offset.left,top:t.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()}),this.helper.css("position","absolute"),this.cssPosition=this.helper.css("position"),this.originalPosition=this._generatePosition(t),this.originalPageX=t.pageX,this.originalPageY=t.pageY,o.cursorAt&&this._adjustOffsetFromHelper(o.cursorAt),this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]},this.helper[0]!==this.currentItem[0]&&this.currentItem.hide(),this._createPlaceholder(),o.containment&&this._setContainment(),o.cursor&&"auto"!==o.cursor&&(a=this.document.find("body"),this.storedCursor=a.css("cursor"),a.css("cursor",o.cursor),this.storedStylesheet=e("").appendTo(a)),o.opacity&&(this.helper.css("opacity")&&(this._storedOpacity=this.helper.css("opacity")),this.helper.css("opacity",o.opacity)),o.zIndex&&(this.helper.css("zIndex")&&(this._storedZIndex=this.helper.css("zIndex")),this.helper.css("zIndex",o.zIndex)),this.scrollParent[0]!==document&&"HTML"!==this.scrollParent[0].tagName&&(this.overflowOffset=this.scrollParent.offset()),this._trigger("start",t,this._uiHash()),this._preserveHelperProportions||this._cacheHelperProportions(),!s)for(n=this.containers.length-1;n>=0;n--)this.containers[n]._trigger("activate",t,this._uiHash(this));return e.ui.ddmanager&&(e.ui.ddmanager.current=this),e.ui.ddmanager&&!o.dropBehaviour&&e.ui.ddmanager.prepareOffsets(this,t),this.dragging=!0,this.helper.addClass("ui-sortable-helper"),this._mouseDrag(t),!0},_mouseDrag:function(t){var i,s,n,a,o=this.options,r=!1;for(this.position=this._generatePosition(t),this.positionAbs=this._convertPositionTo("absolute"),this.lastPositionAbs||(this.lastPositionAbs=this.positionAbs),this.options.scroll&&(this.scrollParent[0]!==document&&"HTML"!==this.scrollParent[0].tagName?(this.overflowOffset.top+this.scrollParent[0].offsetHeight-t.pageY=0;i--)if(s=this.items[i],n=s.item[0],a=this._intersectsWithPointer(s),a&&s.instance===this.currentContainer&&n!==this.currentItem[0]&&this.placeholder[1===a?"next":"prev"]()[0]!==n&&!e.contains(this.placeholder[0],n)&&("semi-dynamic"===this.options.type?!e.contains(this.element[0],n):!0)){if(this.direction=1===a?"down":"up","pointer"!==this.options.tolerance&&!this._intersectsWithSides(s))break;this._rearrange(t,s),this._trigger("change",t,this._uiHash());break}return this._contactContainers(t),e.ui.ddmanager&&e.ui.ddmanager.drag(this,t),this._trigger("sort",t,this._uiHash()),this.lastPositionAbs=this.positionAbs,!1},_mouseStop:function(t,i){if(t){if(e.ui.ddmanager&&!this.options.dropBehaviour&&e.ui.ddmanager.drop(this,t),this.options.revert){var s=this,n=this.placeholder.offset(),a=this.options.axis,o={};a&&"x"!==a||(o.left=n.left-this.offset.parent.left-this.margins.left+(this.offsetParent[0]===document.body?0:this.offsetParent[0].scrollLeft)),a&&"y"!==a||(o.top=n.top-this.offset.parent.top-this.margins.top+(this.offsetParent[0]===document.body?0:this.offsetParent[0].scrollTop)),this.reverting=!0,e(this.helper).animate(o,parseInt(this.options.revert,10)||500,function(){s._clear(t)})}else this._clear(t,i);return!1}},cancel:function(){if(this.dragging){this._mouseUp({target:null}),"original"===this.options.helper?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var t=this.containers.length-1;t>=0;t--)this.containers[t]._trigger("deactivate",null,this._uiHash(this)),this.containers[t].containerCache.over&&(this.containers[t]._trigger("out",null,this._uiHash(this)),this.containers[t].containerCache.over=0)}return this.placeholder&&(this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]),"original"!==this.options.helper&&this.helper&&this.helper[0].parentNode&&this.helper.remove(),e.extend(this,{helper:null,dragging:!1,reverting:!1,_noFinalSort:null}),this.domPosition.prev?e(this.domPosition.prev).after(this.currentItem):e(this.domPosition.parent).prepend(this.currentItem)),this},serialize:function(t){var i=this._getItemsAsjQuery(t&&t.connected),s=[];return t=t||{},e(i).each(function(){var i=(e(t.item||this).attr(t.attribute||"id")||"").match(t.expression||/(.+)[\-=_](.+)/);i&&s.push((t.key||i[1]+"[]")+"="+(t.key&&t.expression?i[1]:i[2]))}),!s.length&&t.key&&s.push(t.key+"="),s.join("&")},toArray:function(t){var i=this._getItemsAsjQuery(t&&t.connected),s=[];return t=t||{},i.each(function(){s.push(e(t.item||this).attr(t.attribute||"id")||"")}),s},_intersectsWith:function(e){var t=this.positionAbs.left,i=t+this.helperProportions.width,s=this.positionAbs.top,n=s+this.helperProportions.height,a=e.left,o=a+e.width,r=e.top,h=r+e.height,l=this.offset.click.top,u=this.offset.click.left,d="x"===this.options.axis||s+l>r&&h>s+l,c="y"===this.options.axis||t+u>a&&o>t+u,p=d&&c;return"pointer"===this.options.tolerance||this.options.forcePointerForContainers||"pointer"!==this.options.tolerance&&this.helperProportions[this.floating?"width":"height"]>e[this.floating?"width":"height"]?p:t+this.helperProportions.width/2>a&&o>i-this.helperProportions.width/2&&s+this.helperProportions.height/2>r&&h>n-this.helperProportions.height/2},_intersectsWithPointer:function(e){var t="x"===this.options.axis||this._isOverAxis(this.positionAbs.top+this.offset.click.top,e.top,e.height),i="y"===this.options.axis||this._isOverAxis(this.positionAbs.left+this.offset.click.left,e.left,e.width),s=t&&i,n=this._getDragVerticalDirection(),a=this._getDragHorizontalDirection();return s?this.floating?a&&"right"===a||"down"===n?2:1:n&&("down"===n?2:1):!1},_intersectsWithSides:function(e){var t=this._isOverAxis(this.positionAbs.top+this.offset.click.top,e.top+e.height/2,e.height),i=this._isOverAxis(this.positionAbs.left+this.offset.click.left,e.left+e.width/2,e.width),s=this._getDragVerticalDirection(),n=this._getDragHorizontalDirection();return this.floating&&n?"right"===n&&i||"left"===n&&!i:s&&("down"===s&&t||"up"===s&&!t)},_getDragVerticalDirection:function(){var e=this.positionAbs.top-this.lastPositionAbs.top;return 0!==e&&(e>0?"down":"up")},_getDragHorizontalDirection:function(){var e=this.positionAbs.left-this.lastPositionAbs.left;return 0!==e&&(e>0?"right":"left")},refresh:function(e){return this._refreshItems(e),this._setHandleClassName(),this.refreshPositions(),this},_connectWith:function(){var e=this.options;return e.connectWith.constructor===String?[e.connectWith]:e.connectWith},_getItemsAsjQuery:function(t){function i(){r.push(this)}var s,n,a,o,r=[],h=[],l=this._connectWith();if(l&&t)for(s=l.length-1;s>=0;s--)for(a=e(l[s]),n=a.length-1;n>=0;n--)o=e.data(a[n],this.widgetFullName),o&&o!==this&&!o.options.disabled&&h.push([e.isFunction(o.options.items)?o.options.items.call(o.element):e(o.options.items,o.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),o]);for(h.push([e.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):e(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]),s=h.length-1;s>=0;s--)h[s][0].each(i);return e(r)},_removeCurrentsFromItems:function(){var t=this.currentItem.find(":data("+this.widgetName+"-item)");this.items=e.grep(this.items,function(e){for(var i=0;t.length>i;i++)if(t[i]===e.item[0])return!1;return!0})},_refreshItems:function(t){this.items=[],this.containers=[this];var i,s,n,a,o,r,h,l,u=this.items,d=[[e.isFunction(this.options.items)?this.options.items.call(this.element[0],t,{item:this.currentItem}):e(this.options.items,this.element),this]],c=this._connectWith();if(c&&this.ready)for(i=c.length-1;i>=0;i--)for(n=e(c[i]),s=n.length-1;s>=0;s--)a=e.data(n[s],this.widgetFullName),a&&a!==this&&!a.options.disabled&&(d.push([e.isFunction(a.options.items)?a.options.items.call(a.element[0],t,{item:this.currentItem}):e(a.options.items,a.element),a]),this.containers.push(a));for(i=d.length-1;i>=0;i--)for(o=d[i][1],r=d[i][0],s=0,l=r.length;l>s;s++)h=e(r[s]),h.data(this.widgetName+"-item",o),u.push({item:h,instance:o,width:0,height:0,left:0,top:0})},refreshPositions:function(t){this.offsetParent&&this.helper&&(this.offset.parent=this._getParentOffset());var i,s,n,a;for(i=this.items.length-1;i>=0;i--)s=this.items[i],s.instance!==this.currentContainer&&this.currentContainer&&s.item[0]!==this.currentItem[0]||(n=this.options.toleranceElement?e(this.options.toleranceElement,s.item):s.item,t||(s.width=n.outerWidth(),s.height=n.outerHeight()),a=n.offset(),s.left=a.left,s.top=a.top);if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(i=this.containers.length-1;i>=0;i--)a=this.containers[i].element.offset(),this.containers[i].containerCache.left=a.left,this.containers[i].containerCache.top=a.top,this.containers[i].containerCache.width=this.containers[i].element.outerWidth(),this.containers[i].containerCache.height=this.containers[i].element.outerHeight();return this},_createPlaceholder:function(t){t=t||this;var i,s=t.options;s.placeholder&&s.placeholder.constructor!==String||(i=s.placeholder,s.placeholder={element:function(){var s=t.currentItem[0].nodeName.toLowerCase(),n=e("<"+s+">",t.document[0]).addClass(i||t.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper");return"tr"===s?t.currentItem.children().each(function(){e(" ",t.document[0]).attr("colspan",e(this).attr("colspan")||1).appendTo(n)}):"img"===s&&n.attr("src",t.currentItem.attr("src")),i||n.css("visibility","hidden"),n},update:function(e,n){(!i||s.forcePlaceholderSize)&&(n.height()||n.height(t.currentItem.innerHeight()-parseInt(t.currentItem.css("paddingTop")||0,10)-parseInt(t.currentItem.css("paddingBottom")||0,10)),n.width()||n.width(t.currentItem.innerWidth()-parseInt(t.currentItem.css("paddingLeft")||0,10)-parseInt(t.currentItem.css("paddingRight")||0,10)))}}),t.placeholder=e(s.placeholder.element.call(t.element,t.currentItem)),t.currentItem.after(t.placeholder),s.placeholder.update(t,t.placeholder)},_contactContainers:function(t){var i,s,n,a,o,r,h,l,u,d,c=null,p=null;for(i=this.containers.length-1;i>=0;i--)if(!e.contains(this.currentItem[0],this.containers[i].element[0]))if(this._intersectsWith(this.containers[i].containerCache)){if(c&&e.contains(this.containers[i].element[0],c.element[0]))continue;c=this.containers[i],p=i}else this.containers[i].containerCache.over&&(this.containers[i]._trigger("out",t,this._uiHash(this)),this.containers[i].containerCache.over=0);if(c)if(1===this.containers.length)this.containers[p].containerCache.over||(this.containers[p]._trigger("over",t,this._uiHash(this)),this.containers[p].containerCache.over=1);else{for(n=1e4,a=null,u=c.floating||this._isFloating(this.currentItem),o=u?"left":"top",r=u?"width":"height",d=u?"clientX":"clientY",s=this.items.length-1;s>=0;s--)e.contains(this.containers[p].element[0],this.items[s].item[0])&&this.items[s].item[0]!==this.currentItem[0]&&(h=this.items[s].item.offset()[o],l=!1,t[d]-h>this.items[s][r]/2&&(l=!0),n>Math.abs(t[d]-h)&&(n=Math.abs(t[d]-h),a=this.items[s],this.direction=l?"up":"down"));if(!a&&!this.options.dropOnEmpty)return;if(this.currentContainer===this.containers[p])return this.currentContainer.containerCache.over||(this.containers[p]._trigger("over",t,this._uiHash()),this.currentContainer.containerCache.over=1),void 0;a?this._rearrange(t,a,null,!0):this._rearrange(t,null,this.containers[p].element,!0),this._trigger("change",t,this._uiHash()),this.containers[p]._trigger("change",t,this._uiHash(this)),this.currentContainer=this.containers[p],this.options.placeholder.update(this.currentContainer,this.placeholder),this.containers[p]._trigger("over",t,this._uiHash(this)),this.containers[p].containerCache.over=1}},_createHelper:function(t){var i=this.options,s=e.isFunction(i.helper)?e(i.helper.apply(this.element[0],[t,this.currentItem])):"clone"===i.helper?this.currentItem.clone():this.currentItem;return s.parents("body").length||e("parent"!==i.appendTo?i.appendTo:this.currentItem[0].parentNode)[0].appendChild(s[0]),s[0]===this.currentItem[0]&&(this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}),(!s[0].style.width||i.forceHelperSize)&&s.width(this.currentItem.width()),(!s[0].style.height||i.forceHelperSize)&&s.height(this.currentItem.height()),s},_adjustOffsetFromHelper:function(t){"string"==typeof t&&(t=t.split(" ")),e.isArray(t)&&(t={left:+t[0],top:+t[1]||0}),"left"in t&&(this.offset.click.left=t.left+this.margins.left),"right"in t&&(this.offset.click.left=this.helperProportions.width-t.right+this.margins.left),"top"in t&&(this.offset.click.top=t.top+this.margins.top),"bottom"in t&&(this.offset.click.top=this.helperProportions.height-t.bottom+this.margins.top)},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var t=this.offsetParent.offset();return"absolute"===this.cssPosition&&this.scrollParent[0]!==document&&e.contains(this.scrollParent[0],this.offsetParent[0])&&(t.left+=this.scrollParent.scrollLeft(),t.top+=this.scrollParent.scrollTop()),(this.offsetParent[0]===document.body||this.offsetParent[0].tagName&&"html"===this.offsetParent[0].tagName.toLowerCase()&&e.ui.ie)&&(t={top:0,left:0}),{top:t.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:t.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"===this.cssPosition){var e=this.currentItem.position();return{top:e.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:e.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var t,i,s,n=this.options;"parent"===n.containment&&(n.containment=this.helper[0].parentNode),("document"===n.containment||"window"===n.containment)&&(this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,e("document"===n.containment?document:window).width()-this.helperProportions.width-this.margins.left,(e("document"===n.containment?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]),/^(document|window|parent)$/.test(n.containment)||(t=e(n.containment)[0],i=e(n.containment).offset(),s="hidden"!==e(t).css("overflow"),this.containment=[i.left+(parseInt(e(t).css("borderLeftWidth"),10)||0)+(parseInt(e(t).css("paddingLeft"),10)||0)-this.margins.left,i.top+(parseInt(e(t).css("borderTopWidth"),10)||0)+(parseInt(e(t).css("paddingTop"),10)||0)-this.margins.top,i.left+(s?Math.max(t.scrollWidth,t.offsetWidth):t.offsetWidth)-(parseInt(e(t).css("borderLeftWidth"),10)||0)-(parseInt(e(t).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,i.top+(s?Math.max(t.scrollHeight,t.offsetHeight):t.offsetHeight)-(parseInt(e(t).css("borderTopWidth"),10)||0)-(parseInt(e(t).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top])},_convertPositionTo:function(t,i){i||(i=this.position);var s="absolute"===t?1:-1,n="absolute"!==this.cssPosition||this.scrollParent[0]!==document&&e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,a=/(html|body)/i.test(n[0].tagName);return{top:i.top+this.offset.relative.top*s+this.offset.parent.top*s-("fixed"===this.cssPosition?-this.scrollParent.scrollTop():a?0:n.scrollTop())*s,left:i.left+this.offset.relative.left*s+this.offset.parent.left*s-("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():a?0:n.scrollLeft())*s}},_generatePosition:function(t){var i,s,n=this.options,a=t.pageX,o=t.pageY,r="absolute"!==this.cssPosition||this.scrollParent[0]!==document&&e.contains(this.scrollParent[0],this.offsetParent[0])?this.scrollParent:this.offsetParent,h=/(html|body)/i.test(r[0].tagName);return"relative"!==this.cssPosition||this.scrollParent[0]!==document&&this.scrollParent[0]!==this.offsetParent[0]||(this.offset.relative=this._getRelativeOffset()),this.originalPosition&&(this.containment&&(t.pageX-this.offset.click.leftthis.containment[2]&&(a=this.containment[2]+this.offset.click.left),t.pageY-this.offset.click.top>this.containment[3]&&(o=this.containment[3]+this.offset.click.top)),n.grid&&(i=this.originalPageY+Math.round((o-this.originalPageY)/n.grid[1])*n.grid[1],o=this.containment?i-this.offset.click.top>=this.containment[1]&&i-this.offset.click.top<=this.containment[3]?i:i-this.offset.click.top>=this.containment[1]?i-n.grid[1]:i+n.grid[1]:i,s=this.originalPageX+Math.round((a-this.originalPageX)/n.grid[0])*n.grid[0],a=this.containment?s-this.offset.click.left>=this.containment[0]&&s-this.offset.click.left<=this.containment[2]?s:s-this.offset.click.left>=this.containment[0]?s-n.grid[0]:s+n.grid[0]:s)),{top:o-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.scrollParent.scrollTop():h?0:r.scrollTop()),left:a-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.scrollParent.scrollLeft():h?0:r.scrollLeft())}},_rearrange:function(e,t,i,s){i?i[0].appendChild(this.placeholder[0]):t.item[0].parentNode.insertBefore(this.placeholder[0],"down"===this.direction?t.item[0]:t.item[0].nextSibling),this.counter=this.counter?++this.counter:1;var n=this.counter;this._delay(function(){n===this.counter&&this.refreshPositions(!s)})},_clear:function(e,t){function i(e,t,i){return function(s){i._trigger(e,s,t._uiHash(t))}}this.reverting=!1;var s,n=[];if(!this._noFinalSort&&this.currentItem.parent().length&&this.placeholder.before(this.currentItem),this._noFinalSort=null,this.helper[0]===this.currentItem[0]){for(s in this._storedCSS)("auto"===this._storedCSS[s]||"static"===this._storedCSS[s])&&(this._storedCSS[s]="");this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();for(this.fromOutside&&!t&&n.push(function(e){this._trigger("receive",e,this._uiHash(this.fromOutside))}),!this.fromOutside&&this.domPosition.prev===this.currentItem.prev().not(".ui-sortable-helper")[0]&&this.domPosition.parent===this.currentItem.parent()[0]||t||n.push(function(e){this._trigger("update",e,this._uiHash())}),this!==this.currentContainer&&(t||(n.push(function(e){this._trigger("remove",e,this._uiHash())}),n.push(function(e){return function(t){e._trigger("receive",t,this._uiHash(this))}}.call(this,this.currentContainer)),n.push(function(e){return function(t){e._trigger("update",t,this._uiHash(this))}}.call(this,this.currentContainer)))),s=this.containers.length-1;s>=0;s--)t||n.push(i("deactivate",this,this.containers[s])),this.containers[s].containerCache.over&&(n.push(i("out",this,this.containers[s])),this.containers[s].containerCache.over=0);if(this.storedCursor&&(this.document.find("body").css("cursor",this.storedCursor),this.storedStylesheet.remove()),this._storedOpacity&&this.helper.css("opacity",this._storedOpacity),this._storedZIndex&&this.helper.css("zIndex","auto"===this._storedZIndex?"":this._storedZIndex),this.dragging=!1,t||this._trigger("beforeStop",e,this._uiHash()),this.placeholder[0].parentNode.removeChild(this.placeholder[0]),this.cancelHelperRemoval||(this.helper[0]!==this.currentItem[0]&&this.helper.remove(),this.helper=null),!t){for(s=0;n.length>s;s++)n[s].call(this,e);this._trigger("stop",e,this._uiHash())}return this.fromOutside=!1,!this.cancelHelperRemoval},_trigger:function(){e.Widget.prototype._trigger.apply(this,arguments)===!1&&this.cancel()},_uiHash:function(t){var i=t||this;return{helper:i.helper,placeholder:i.placeholder||e([]),position:i.position,originalPosition:i.originalPosition,offset:i.positionAbs,item:i.currentItem,sender:t?t.element:null}}}),e.widget("ui.accordion",{version:"1.11.2",options:{active:0,animate:{},collapsible:!1,event:"click",header:"> li > :first-child,> :not(li):even",heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var t=this.options;this.prevShow=this.prevHide=e(),this.element.addClass("ui-accordion ui-widget ui-helper-reset").attr("role","tablist"),t.collapsible||t.active!==!1&&null!=t.active||(t.active=0),this._processPanels(),0>t.active&&(t.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():e()}},_createIcons:function(){var t=this.options.icons;t&&(e("").addClass("ui-accordion-header-icon ui-icon "+t.header).prependTo(this.headers),this.active.children(".ui-accordion-header-icon").removeClass(t.header).addClass(t.activeHeader),this.headers.addClass("ui-accordion-icons"))},_destroyIcons:function(){this.headers.removeClass("ui-accordion-icons").children(".ui-accordion-header-icon").remove()},_destroy:function(){var e;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"),this.headers.removeClass("ui-accordion-header ui-accordion-header-active ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("aria-controls").removeAttr("tabIndex").removeUniqueId(),this._destroyIcons(),e=this.headers.next().removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-state-disabled").css("display","").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&e.css("height","")},_setOption:function(e,t){return"active"===e?(this._activate(t),void 0):("event"===e&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(t)),this._super(e,t),"collapsible"!==e||t||this.options.active!==!1||this._activate(0),"icons"===e&&(this._destroyIcons(),t&&this._createIcons()),"disabled"===e&&(this.element.toggleClass("ui-state-disabled",!!t).attr("aria-disabled",t),this.headers.add(this.headers.next()).toggleClass("ui-state-disabled",!!t)),void 0)},_keydown:function(t){if(!t.altKey&&!t.ctrlKey){var i=e.ui.keyCode,s=this.headers.length,n=this.headers.index(t.target),a=!1;switch(t.keyCode){case i.RIGHT:case i.DOWN:a=this.headers[(n+1)%s];break;case i.LEFT:case i.UP:a=this.headers[(n-1+s)%s];break;case i.SPACE:case i.ENTER:this._eventHandler(t);break;case i.HOME:a=this.headers[0];break;case i.END:a=this.headers[s-1]}a&&(e(t.target).attr("tabIndex",-1),e(a).attr("tabIndex",0),a.focus(),t.preventDefault())}},_panelKeyDown:function(t){t.keyCode===e.ui.keyCode.UP&&t.ctrlKey&&e(t.currentTarget).prev().focus()},refresh:function(){var t=this.options;this._processPanels(),t.active===!1&&t.collapsible===!0||!this.headers.length?(t.active=!1,this.active=e()):t.active===!1?this._activate(0):this.active.length&&!e.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(t.active=!1,this.active=e()):this._activate(Math.max(0,t.active-1)):t.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var e=this.headers,t=this.panels;this.headers=this.element.find(this.options.header).addClass("ui-accordion-header ui-state-default ui-corner-all"),this.panels=this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom").filter(":not(.ui-accordion-content-active)").hide(),t&&(this._off(e.not(this.headers)),this._off(t.not(this.panels)))},_refresh:function(){var t,i=this.options,s=i.heightStyle,n=this.element.parent();this.active=this._findActive(i.active).addClass("ui-accordion-header-active ui-state-active ui-corner-top").removeClass("ui-corner-all"),this.active.next().addClass("ui-accordion-content-active").show(),this.headers.attr("role","tab").each(function(){var t=e(this),i=t.uniqueId().attr("id"),s=t.next(),n=s.uniqueId().attr("id"); +t.attr("aria-controls",n),s.attr("aria-labelledby",i)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(i.event),"fill"===s?(t=n.height(),this.element.siblings(":visible").each(function(){var i=e(this),s=i.css("position");"absolute"!==s&&"fixed"!==s&&(t-=i.outerHeight(!0))}),this.headers.each(function(){t-=e(this).outerHeight(!0)}),this.headers.next().each(function(){e(this).height(Math.max(0,t-e(this).innerHeight()+e(this).height()))}).css("overflow","auto")):"auto"===s&&(t=0,this.headers.next().each(function(){t=Math.max(t,e(this).css("height","").height())}).height(t))},_activate:function(t){var i=this._findActive(t)[0];i!==this.active[0]&&(i=i||this.active[0],this._eventHandler({target:i,currentTarget:i,preventDefault:e.noop}))},_findActive:function(t){return"number"==typeof t?this.headers.eq(t):e()},_setupEvents:function(t){var i={keydown:"_keydown"};t&&e.each(t.split(" "),function(e,t){i[t]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(t){var i=this.options,s=this.active,n=e(t.currentTarget),a=n[0]===s[0],o=a&&i.collapsible,r=o?e():n.next(),h=s.next(),l={oldHeader:s,oldPanel:h,newHeader:o?e():n,newPanel:r};t.preventDefault(),a&&!i.collapsible||this._trigger("beforeActivate",t,l)===!1||(i.active=o?!1:this.headers.index(n),this.active=a?e():n,this._toggle(l),s.removeClass("ui-accordion-header-active ui-state-active"),i.icons&&s.children(".ui-accordion-header-icon").removeClass(i.icons.activeHeader).addClass(i.icons.header),a||(n.removeClass("ui-corner-all").addClass("ui-accordion-header-active ui-state-active ui-corner-top"),i.icons&&n.children(".ui-accordion-header-icon").removeClass(i.icons.header).addClass(i.icons.activeHeader),n.next().addClass("ui-accordion-content-active")))},_toggle:function(t){var i=t.newPanel,s=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=i,this.prevHide=s,this.options.animate?this._animate(i,s,t):(s.hide(),i.show(),this._toggleComplete(t)),s.attr({"aria-hidden":"true"}),s.prev().attr("aria-selected","false"),i.length&&s.length?s.prev().attr({tabIndex:-1,"aria-expanded":"false"}):i.length&&this.headers.filter(function(){return 0===e(this).attr("tabIndex")}).attr("tabIndex",-1),i.attr("aria-hidden","false").prev().attr({"aria-selected":"true",tabIndex:0,"aria-expanded":"true"})},_animate:function(e,t,i){var s,n,a,o=this,r=0,h=e.length&&(!t.length||e.index()",delay:300,options:{icons:{submenu:"ui-icon-carat-1-e"},items:"> *",menus:"ul",position:{my:"left-1 top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().addClass("ui-menu ui-widget ui-widget-content").toggleClass("ui-menu-icons",!!this.element.find(".ui-icon").length).attr({role:this.options.role,tabIndex:0}),this.options.disabled&&this.element.addClass("ui-state-disabled").attr("aria-disabled","true"),this._on({"mousedown .ui-menu-item":function(e){e.preventDefault()},"click .ui-menu-item":function(t){var i=e(t.target);!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&e(this.document[0].activeElement).closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(t){if(!this.previousFilter){var i=e(t.currentTarget);i.siblings(".ui-state-active").removeClass("ui-state-active"),this.focus(t,i)}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(e,t){var i=this.active||this.element.find(this.options.items).eq(0);t||this.focus(e,i)},blur:function(t){this._delay(function(){e.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(e){this._closeOnDocumentClick(e)&&this.collapseAll(e),this.mouseHandled=!1}})},_destroy:function(){this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeClass("ui-menu ui-widget ui-widget-content ui-menu-icons ui-front").removeAttr("role").removeAttr("tabIndex").removeAttr("aria-labelledby").removeAttr("aria-expanded").removeAttr("aria-hidden").removeAttr("aria-disabled").removeUniqueId().show(),this.element.find(".ui-menu-item").removeClass("ui-menu-item").removeAttr("role").removeAttr("aria-disabled").removeUniqueId().removeClass("ui-state-hover").removeAttr("tabIndex").removeAttr("role").removeAttr("aria-haspopup").children().each(function(){var t=e(this);t.data("ui-menu-submenu-carat")&&t.remove()}),this.element.find(".ui-menu-divider").removeClass("ui-menu-divider ui-widget-content")},_keydown:function(t){var i,s,n,a,o=!0;switch(t.keyCode){case e.ui.keyCode.PAGE_UP:this.previousPage(t);break;case e.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case e.ui.keyCode.HOME:this._move("first","first",t);break;case e.ui.keyCode.END:this._move("last","last",t);break;case e.ui.keyCode.UP:this.previous(t);break;case e.ui.keyCode.DOWN:this.next(t);break;case e.ui.keyCode.LEFT:this.collapse(t);break;case e.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case e.ui.keyCode.ENTER:case e.ui.keyCode.SPACE:this._activate(t);break;case e.ui.keyCode.ESCAPE:this.collapse(t);break;default:o=!1,s=this.previousFilter||"",n=String.fromCharCode(t.keyCode),a=!1,clearTimeout(this.filterTimer),n===s?a=!0:n=s+n,i=this._filterMenuItems(n),i=a&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(t.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(t,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}o&&t.preventDefault()},_activate:function(e){this.active.is(".ui-state-disabled")||(this.active.is("[aria-haspopup='true']")?this.expand(e):this.select(e))},refresh:function(){var t,i,s=this,n=this.options.icons.submenu,a=this.element.find(this.options.menus);this.element.toggleClass("ui-menu-icons",!!this.element.find(".ui-icon").length),a.filter(":not(.ui-menu)").addClass("ui-menu ui-widget ui-widget-content ui-front").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=e(this),i=t.parent(),s=e("").addClass("ui-menu-icon ui-icon "+n).data("ui-menu-submenu-carat",!0);i.attr("aria-haspopup","true").prepend(s),t.attr("aria-labelledby",i.attr("id"))}),t=a.add(this.element),i=t.find(this.options.items),i.not(".ui-menu-item").each(function(){var t=e(this);s._isDivider(t)&&t.addClass("ui-widget-content ui-menu-divider")}),i.not(".ui-menu-item, .ui-menu-divider").addClass("ui-menu-item").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!e.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(e,t){"icons"===e&&this.element.find(".ui-menu-icon").removeClass(this.options.icons.submenu).addClass(t.submenu),"disabled"===e&&this.element.toggleClass("ui-state-disabled",!!t).attr("aria-disabled",t),this._super(e,t)},focus:function(e,t){var i,s;this.blur(e,e&&"focus"===e.type),this._scrollIntoView(t),this.active=t.first(),s=this.active.addClass("ui-state-focus").removeClass("ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),this.active.parent().closest(".ui-menu-item").addClass("ui-state-active"),e&&"keydown"===e.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=t.children(".ui-menu"),i.length&&e&&/^mouse/.test(e.type)&&this._startOpening(i),this.activeMenu=t.parent(),this._trigger("focus",e,{item:t})},_scrollIntoView:function(t){var i,s,n,a,o,r;this._hasScroll()&&(i=parseFloat(e.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(e.css(this.activeMenu[0],"paddingTop"))||0,n=t.offset().top-this.activeMenu.offset().top-i-s,a=this.activeMenu.scrollTop(),o=this.activeMenu.height(),r=t.outerHeight(),0>n?this.activeMenu.scrollTop(a+n):n+r>o&&this.activeMenu.scrollTop(a+n-o+r))},blur:function(e,t){t||clearTimeout(this.timer),this.active&&(this.active.removeClass("ui-state-focus"),this.active=null,this._trigger("blur",e,{item:this.active}))},_startOpening:function(e){clearTimeout(this.timer),"true"===e.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(e)},this.delay))},_open:function(t){var i=e.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(t,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:e(t&&t.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(t),this.activeMenu=s},this.delay)},_close:function(e){e||(e=this.active?this.active.parent():this.element),e.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false").end().find(".ui-state-active").not(".ui-state-focus").removeClass("ui-state-active")},_closeOnDocumentClick:function(t){return!e(t.target).closest(".ui-menu").length},_isDivider:function(e){return!/[^\-\u2014\u2013\s]/.test(e.text())},collapse:function(e){var t=this.active&&this.active.parent().closest(".ui-menu-item",this.element);t&&t.length&&(this._close(),this.focus(e,t))},expand:function(e){var t=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();t&&t.length&&(this._open(t.parent()),this._delay(function(){this.focus(e,t)}))},next:function(e){this._move("next","first",e)},previous:function(e){this._move("prev","last",e)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(e,t,i){var s;this.active&&(s="first"===e||"last"===e?this.active["first"===e?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[e+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[t]()),this.focus(i,s)},nextPage:function(t){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=e(this),0>i.offset().top-s-n}),this.focus(t,i)):this.focus(t,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(t),void 0)},previousPage:function(t){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=e(this),i.offset().top-s+n>0}),this.focus(t,i)):this.focus(t,this.activeMenu.find(this.options.items).first())),void 0):(this.next(t),void 0)},_hasScroll:function(){return this.element.outerHeight()",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var t,i,s,n=this.element[0].nodeName.toLowerCase(),a="textarea"===n,o="input"===n;this.isMultiLine=a?!0:o?!1:this.element.prop("isContentEditable"),this.valueMethod=this.element[a||o?"val":"text"],this.isNewMenu=!0,this.element.addClass("ui-autocomplete-input").attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return t=!0,s=!0,i=!0,void 0;t=!1,s=!1,i=!1;var a=e.ui.keyCode;switch(n.keyCode){case a.PAGE_UP:t=!0,this._move("previousPage",n);break;case a.PAGE_DOWN:t=!0,this._move("nextPage",n);break;case a.UP:t=!0,this._keyEvent("previous",n);break;case a.DOWN:t=!0,this._keyEvent("next",n);break;case a.ENTER:this.menu.active&&(t=!0,n.preventDefault(),this.menu.select(n));break;case a.TAB:this.menu.active&&this.menu.select(n);break;case a.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(t)return t=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=e.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(e){return s?(s=!1,e.preventDefault(),void 0):(this._searchTimeout(e),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(e){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(e),this._change(e),void 0)}}),this._initSource(),this.menu=e("
    ").addClass("ui-autocomplete ui-front").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur});var i=this.menu.element[0];e(t.target).closest(".ui-menu-item").length||this._delay(function(){var t=this;this.document.one("mousedown",function(s){s.target===t.element[0]||s.target===i||e.contains(i,s.target)||t.close()})})},menufocus:function(t,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){e(t.target).trigger(t.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:n})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&e.trim(s).length&&(this.liveRegion.children().hide(),e("
    ").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,t){var i=t.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==this.document[0].activeElement&&(this.element.focus(),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",e,{item:i})&&this._value(i.value),this.term=this._value(),this.close(e),this.selectedItem=i}}),this.liveRegion=e("",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).addClass("ui-helper-hidden-accessible").appendTo(this.document[0].body),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(e,t){this._super(e,t),"source"===e&&this._initSource(),"appendTo"===e&&this.menu.element.appendTo(this._appendTo()),"disabled"===e&&t&&this.xhr&&this.xhr.abort()},_appendTo:function(){var t=this.options.appendTo;return t&&(t=t.jquery||t.nodeType?e(t):this.document.find(t).eq(0)),t&&t[0]||(t=this.element.closest(".ui-front")),t.length||(t=this.document[0].body),t},_initSource:function(){var t,i,s=this;e.isArray(this.options.source)?(t=this.options.source,this.source=function(i,s){s(e.ui.autocomplete.filter(t,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(t,n){s.xhr&&s.xhr.abort(),s.xhr=e.ajax({url:i,data:t,dataType:"json",success:function(e){n(e)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(e){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),i=this.menu.element.is(":visible"),s=e.altKey||e.ctrlKey||e.metaKey||e.shiftKey;(!t||t&&!i&&!s)&&(this.selectedItem=null,this.search(null,e))},this.options.delay)},search:function(e,t){return e=null!=e?e:this._value(),this.term=this._value(),e.length").text(i.label).appendTo(t)},_move:function(e,t){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(e)||this.menu.isLastItem()&&/^next/.test(e)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[e](t),void 0):(this.search(null,t),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(e,t){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(e,t),t.preventDefault())}}),e.extend(e.ui.autocomplete,{escapeRegex:function(e){return e.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,i){var s=RegExp(e.ui.autocomplete.escapeRegex(i),"i");return e.grep(t,function(e){return s.test(e.label||e.value||e)})}}),e.widget("ui.autocomplete",e.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(e){return e+(e>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,this.liveRegion.children().hide(),e("
    ").text(i).appendTo(this.liveRegion))}}),e.ui.autocomplete;var c,p="ui-button ui-widget ui-state-default ui-corner-all",f="ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",m=function(){var t=e(this);setTimeout(function(){t.find(":ui-button").button("refresh")},1)},g=function(t){var i=t.name,s=t.form,n=e([]);return i&&(i=i.replace(/'/g,"\\'"),n=s?e(s).find("[name='"+i+"'][type=radio]"):e("[name='"+i+"'][type=radio]",t.ownerDocument).filter(function(){return!this.form})),n};e.widget("ui.button",{version:"1.11.2",defaultElement:"").addClass(this._triggerClass).html(a?e("").attr({src:a,alt:n,title:n}):n)),t[r?"before":"after"](i.trigger),i.trigger.click(function(){return e.datepicker._datepickerShowing&&e.datepicker._lastInput===t[0]?e.datepicker._hideDatepicker():e.datepicker._datepickerShowing&&e.datepicker._lastInput!==t[0]?(e.datepicker._hideDatepicker(),e.datepicker._showDatepicker(t[0])):e.datepicker._showDatepicker(t[0]),!1}))},_autoSize:function(e){if(this._get(e,"autoSize")&&!e.inline){var t,i,s,n,a=new Date(2009,11,20),o=this._get(e,"dateFormat");o.match(/[DM]/)&&(t=function(e){for(i=0,s=0,n=0;e.length>n;n++)e[n].length>i&&(i=e[n].length,s=n);return s},a.setMonth(t(this._get(e,o.match(/MM/)?"monthNames":"monthNamesShort"))),a.setDate(t(this._get(e,o.match(/DD/)?"dayNames":"dayNamesShort"))+20-a.getDay())),e.input.attr("size",this._formatDate(e,a).length)}},_inlineDatepicker:function(t,i){var s=e(t);s.hasClass(this.markerClassName)||(s.addClass(this.markerClassName).append(i.dpDiv),e.data(t,"datepicker",i),this._setDate(i,this._getDefaultDate(i),!0),this._updateDatepicker(i),this._updateAlternate(i),i.settings.disabled&&this._disableDatepicker(t),i.dpDiv.css("display","block"))},_dialogDatepicker:function(t,i,s,n,a){var o,h,l,u,d,c=this._dialogInst;return c||(this.uuid+=1,o="dp"+this.uuid,this._dialogInput=e(""),this._dialogInput.keydown(this._doKeyDown),e("body").append(this._dialogInput),c=this._dialogInst=this._newInst(this._dialogInput,!1),c.settings={},e.data(this._dialogInput[0],"datepicker",c)),r(c.settings,n||{}),i=i&&i.constructor===Date?this._formatDate(c,i):i,this._dialogInput.val(i),this._pos=a?a.length?a:[a.pageX,a.pageY]:null,this._pos||(h=document.documentElement.clientWidth,l=document.documentElement.clientHeight,u=document.documentElement.scrollLeft||document.body.scrollLeft,d=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[h/2-100+u,l/2-150+d]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),c.settings.onSelect=s,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),e.blockUI&&e.blockUI(this.dpDiv),e.data(this._dialogInput[0],"datepicker",c),this},_destroyDatepicker:function(t){var i,s=e(t),n=e.data(t,"datepicker");s.hasClass(this.markerClassName)&&(i=t.nodeName.toLowerCase(),e.removeData(t,"datepicker"),"input"===i?(n.append.remove(),n.trigger.remove(),s.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)):("div"===i||"span"===i)&&s.removeClass(this.markerClassName).empty()) +},_enableDatepicker:function(t){var i,s,n=e(t),a=e.data(t,"datepicker");n.hasClass(this.markerClassName)&&(i=t.nodeName.toLowerCase(),"input"===i?(t.disabled=!1,a.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().removeClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=e.map(this._disabledInputs,function(e){return e===t?null:e}))},_disableDatepicker:function(t){var i,s,n=e(t),a=e.data(t,"datepicker");n.hasClass(this.markerClassName)&&(i=t.nodeName.toLowerCase(),"input"===i?(t.disabled=!0,a.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().addClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=e.map(this._disabledInputs,function(e){return e===t?null:e}),this._disabledInputs[this._disabledInputs.length]=t)},_isDisabledDatepicker:function(e){if(!e)return!1;for(var t=0;this._disabledInputs.length>t;t++)if(this._disabledInputs[t]===e)return!0;return!1},_getInst:function(t){try{return e.data(t,"datepicker")}catch(i){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(t,i,s){var n,a,o,h,l=this._getInst(t);return 2===arguments.length&&"string"==typeof i?"defaults"===i?e.extend({},e.datepicker._defaults):l?"all"===i?e.extend({},l.settings):this._get(l,i):null:(n=i||{},"string"==typeof i&&(n={},n[i]=s),l&&(this._curInst===l&&this._hideDatepicker(),a=this._getDateDatepicker(t,!0),o=this._getMinMaxDate(l,"min"),h=this._getMinMaxDate(l,"max"),r(l.settings,n),null!==o&&void 0!==n.dateFormat&&void 0===n.minDate&&(l.settings.minDate=this._formatDate(l,o)),null!==h&&void 0!==n.dateFormat&&void 0===n.maxDate&&(l.settings.maxDate=this._formatDate(l,h)),"disabled"in n&&(n.disabled?this._disableDatepicker(t):this._enableDatepicker(t)),this._attachments(e(t),l),this._autoSize(l),this._setDate(l,a),this._updateAlternate(l),this._updateDatepicker(l)),void 0)},_changeDatepicker:function(e,t,i){this._optionDatepicker(e,t,i)},_refreshDatepicker:function(e){var t=this._getInst(e);t&&this._updateDatepicker(t)},_setDateDatepicker:function(e,t){var i=this._getInst(e);i&&(this._setDate(i,t),this._updateDatepicker(i),this._updateAlternate(i))},_getDateDatepicker:function(e,t){var i=this._getInst(e);return i&&!i.inline&&this._setDateFromField(i,t),i?this._getDate(i):null},_doKeyDown:function(t){var i,s,n,a=e.datepicker._getInst(t.target),o=!0,r=a.dpDiv.is(".ui-datepicker-rtl");if(a._keyEvent=!0,e.datepicker._datepickerShowing)switch(t.keyCode){case 9:e.datepicker._hideDatepicker(),o=!1;break;case 13:return n=e("td."+e.datepicker._dayOverClass+":not(."+e.datepicker._currentClass+")",a.dpDiv),n[0]&&e.datepicker._selectDay(t.target,a.selectedMonth,a.selectedYear,n[0]),i=e.datepicker._get(a,"onSelect"),i?(s=e.datepicker._formatDate(a),i.apply(a.input?a.input[0]:null,[s,a])):e.datepicker._hideDatepicker(),!1;case 27:e.datepicker._hideDatepicker();break;case 33:e.datepicker._adjustDate(t.target,t.ctrlKey?-e.datepicker._get(a,"stepBigMonths"):-e.datepicker._get(a,"stepMonths"),"M");break;case 34:e.datepicker._adjustDate(t.target,t.ctrlKey?+e.datepicker._get(a,"stepBigMonths"):+e.datepicker._get(a,"stepMonths"),"M");break;case 35:(t.ctrlKey||t.metaKey)&&e.datepicker._clearDate(t.target),o=t.ctrlKey||t.metaKey;break;case 36:(t.ctrlKey||t.metaKey)&&e.datepicker._gotoToday(t.target),o=t.ctrlKey||t.metaKey;break;case 37:(t.ctrlKey||t.metaKey)&&e.datepicker._adjustDate(t.target,r?1:-1,"D"),o=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&e.datepicker._adjustDate(t.target,t.ctrlKey?-e.datepicker._get(a,"stepBigMonths"):-e.datepicker._get(a,"stepMonths"),"M");break;case 38:(t.ctrlKey||t.metaKey)&&e.datepicker._adjustDate(t.target,-7,"D"),o=t.ctrlKey||t.metaKey;break;case 39:(t.ctrlKey||t.metaKey)&&e.datepicker._adjustDate(t.target,r?-1:1,"D"),o=t.ctrlKey||t.metaKey,t.originalEvent.altKey&&e.datepicker._adjustDate(t.target,t.ctrlKey?+e.datepicker._get(a,"stepBigMonths"):+e.datepicker._get(a,"stepMonths"),"M");break;case 40:(t.ctrlKey||t.metaKey)&&e.datepicker._adjustDate(t.target,7,"D"),o=t.ctrlKey||t.metaKey;break;default:o=!1}else 36===t.keyCode&&t.ctrlKey?e.datepicker._showDatepicker(this):o=!1;o&&(t.preventDefault(),t.stopPropagation())},_doKeyPress:function(t){var i,s,n=e.datepicker._getInst(t.target);return e.datepicker._get(n,"constrainInput")?(i=e.datepicker._possibleChars(e.datepicker._get(n,"dateFormat")),s=String.fromCharCode(null==t.charCode?t.keyCode:t.charCode),t.ctrlKey||t.metaKey||" ">s||!i||i.indexOf(s)>-1):void 0},_doKeyUp:function(t){var i,s=e.datepicker._getInst(t.target);if(s.input.val()!==s.lastVal)try{i=e.datepicker.parseDate(e.datepicker._get(s,"dateFormat"),s.input?s.input.val():null,e.datepicker._getFormatConfig(s)),i&&(e.datepicker._setDateFromField(s),e.datepicker._updateAlternate(s),e.datepicker._updateDatepicker(s))}catch(n){}return!0},_showDatepicker:function(t){if(t=t.target||t,"input"!==t.nodeName.toLowerCase()&&(t=e("input",t.parentNode)[0]),!e.datepicker._isDisabledDatepicker(t)&&e.datepicker._lastInput!==t){var i,n,a,o,h,l,u;i=e.datepicker._getInst(t),e.datepicker._curInst&&e.datepicker._curInst!==i&&(e.datepicker._curInst.dpDiv.stop(!0,!0),i&&e.datepicker._datepickerShowing&&e.datepicker._hideDatepicker(e.datepicker._curInst.input[0])),n=e.datepicker._get(i,"beforeShow"),a=n?n.apply(t,[t,i]):{},a!==!1&&(r(i.settings,a),i.lastVal=null,e.datepicker._lastInput=t,e.datepicker._setDateFromField(i),e.datepicker._inDialog&&(t.value=""),e.datepicker._pos||(e.datepicker._pos=e.datepicker._findPos(t),e.datepicker._pos[1]+=t.offsetHeight),o=!1,e(t).parents().each(function(){return o|="fixed"===e(this).css("position"),!o}),h={left:e.datepicker._pos[0],top:e.datepicker._pos[1]},e.datepicker._pos=null,i.dpDiv.empty(),i.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),e.datepicker._updateDatepicker(i),h=e.datepicker._checkOffset(i,h,o),i.dpDiv.css({position:e.datepicker._inDialog&&e.blockUI?"static":o?"fixed":"absolute",display:"none",left:h.left+"px",top:h.top+"px"}),i.inline||(l=e.datepicker._get(i,"showAnim"),u=e.datepicker._get(i,"duration"),i.dpDiv.css("z-index",s(e(t))+1),e.datepicker._datepickerShowing=!0,e.effects&&e.effects.effect[l]?i.dpDiv.show(l,e.datepicker._get(i,"showOptions"),u):i.dpDiv[l||"show"](l?u:null),e.datepicker._shouldFocusInput(i)&&i.input.focus(),e.datepicker._curInst=i))}},_updateDatepicker:function(t){this.maxRows=4,v=t,t.dpDiv.empty().append(this._generateHTML(t)),this._attachHandlers(t);var i,s=this._getNumberOfMonths(t),n=s[1],a=17,r=t.dpDiv.find("."+this._dayOverClass+" a");r.length>0&&o.apply(r.get(0)),t.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),n>1&&t.dpDiv.addClass("ui-datepicker-multi-"+n).css("width",a*n+"em"),t.dpDiv[(1!==s[0]||1!==s[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),t.dpDiv[(this._get(t,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),t===e.datepicker._curInst&&e.datepicker._datepickerShowing&&e.datepicker._shouldFocusInput(t)&&t.input.focus(),t.yearshtml&&(i=t.yearshtml,setTimeout(function(){i===t.yearshtml&&t.yearshtml&&t.dpDiv.find("select.ui-datepicker-year:first").replaceWith(t.yearshtml),i=t.yearshtml=null},0))},_shouldFocusInput:function(e){return e.input&&e.input.is(":visible")&&!e.input.is(":disabled")&&!e.input.is(":focus")},_checkOffset:function(t,i,s){var n=t.dpDiv.outerWidth(),a=t.dpDiv.outerHeight(),o=t.input?t.input.outerWidth():0,r=t.input?t.input.outerHeight():0,h=document.documentElement.clientWidth+(s?0:e(document).scrollLeft()),l=document.documentElement.clientHeight+(s?0:e(document).scrollTop());return i.left-=this._get(t,"isRTL")?n-o:0,i.left-=s&&i.left===t.input.offset().left?e(document).scrollLeft():0,i.top-=s&&i.top===t.input.offset().top+r?e(document).scrollTop():0,i.left-=Math.min(i.left,i.left+n>h&&h>n?Math.abs(i.left+n-h):0),i.top-=Math.min(i.top,i.top+a>l&&l>a?Math.abs(a+r):0),i},_findPos:function(t){for(var i,s=this._getInst(t),n=this._get(s,"isRTL");t&&("hidden"===t.type||1!==t.nodeType||e.expr.filters.hidden(t));)t=t[n?"previousSibling":"nextSibling"];return i=e(t).offset(),[i.left,i.top]},_hideDatepicker:function(t){var i,s,n,a,o=this._curInst;!o||t&&o!==e.data(t,"datepicker")||this._datepickerShowing&&(i=this._get(o,"showAnim"),s=this._get(o,"duration"),n=function(){e.datepicker._tidyDialog(o)},e.effects&&(e.effects.effect[i]||e.effects[i])?o.dpDiv.hide(i,e.datepicker._get(o,"showOptions"),s,n):o.dpDiv["slideDown"===i?"slideUp":"fadeIn"===i?"fadeOut":"hide"](i?s:null,n),i||n(),this._datepickerShowing=!1,a=this._get(o,"onClose"),a&&a.apply(o.input?o.input[0]:null,[o.input?o.input.val():"",o]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),e.blockUI&&(e.unblockUI(),e("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(e){e.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(t){if(e.datepicker._curInst){var i=e(t.target),s=e.datepicker._getInst(i[0]);(i[0].id!==e.datepicker._mainDivId&&0===i.parents("#"+e.datepicker._mainDivId).length&&!i.hasClass(e.datepicker.markerClassName)&&!i.closest("."+e.datepicker._triggerClass).length&&e.datepicker._datepickerShowing&&(!e.datepicker._inDialog||!e.blockUI)||i.hasClass(e.datepicker.markerClassName)&&e.datepicker._curInst!==s)&&e.datepicker._hideDatepicker()}},_adjustDate:function(t,i,s){var n=e(t),a=this._getInst(n[0]);this._isDisabledDatepicker(n[0])||(this._adjustInstDate(a,i+("M"===s?this._get(a,"showCurrentAtPos"):0),s),this._updateDatepicker(a))},_gotoToday:function(t){var i,s=e(t),n=this._getInst(s[0]);this._get(n,"gotoCurrent")&&n.currentDay?(n.selectedDay=n.currentDay,n.drawMonth=n.selectedMonth=n.currentMonth,n.drawYear=n.selectedYear=n.currentYear):(i=new Date,n.selectedDay=i.getDate(),n.drawMonth=n.selectedMonth=i.getMonth(),n.drawYear=n.selectedYear=i.getFullYear()),this._notifyChange(n),this._adjustDate(s)},_selectMonthYear:function(t,i,s){var n=e(t),a=this._getInst(n[0]);a["selected"+("M"===s?"Month":"Year")]=a["draw"+("M"===s?"Month":"Year")]=parseInt(i.options[i.selectedIndex].value,10),this._notifyChange(a),this._adjustDate(n)},_selectDay:function(t,i,s,n){var a,o=e(t);e(n).hasClass(this._unselectableClass)||this._isDisabledDatepicker(o[0])||(a=this._getInst(o[0]),a.selectedDay=a.currentDay=e("a",n).html(),a.selectedMonth=a.currentMonth=i,a.selectedYear=a.currentYear=s,this._selectDate(t,this._formatDate(a,a.currentDay,a.currentMonth,a.currentYear)))},_clearDate:function(t){var i=e(t);this._selectDate(i,"")},_selectDate:function(t,i){var s,n=e(t),a=this._getInst(n[0]);i=null!=i?i:this._formatDate(a),a.input&&a.input.val(i),this._updateAlternate(a),s=this._get(a,"onSelect"),s?s.apply(a.input?a.input[0]:null,[i,a]):a.input&&a.input.trigger("change"),a.inline?this._updateDatepicker(a):(this._hideDatepicker(),this._lastInput=a.input[0],"object"!=typeof a.input[0]&&a.input.focus(),this._lastInput=null)},_updateAlternate:function(t){var i,s,n,a=this._get(t,"altField");a&&(i=this._get(t,"altFormat")||this._get(t,"dateFormat"),s=this._getDate(t),n=this.formatDate(i,s,this._getFormatConfig(t)),e(a).each(function(){e(this).val(n)}))},noWeekends:function(e){var t=e.getDay();return[t>0&&6>t,""]},iso8601Week:function(e){var t,i=new Date(e.getTime());return i.setDate(i.getDate()+4-(i.getDay()||7)),t=i.getTime(),i.setMonth(0),i.setDate(1),Math.floor(Math.round((t-i)/864e5)/7)+1},parseDate:function(t,i,s){if(null==t||null==i)throw"Invalid arguments";if(i="object"==typeof i?""+i:i+"",""===i)return null;var n,a,o,r,h=0,l=(s?s.shortYearCutoff:null)||this._defaults.shortYearCutoff,u="string"!=typeof l?l:(new Date).getFullYear()%100+parseInt(l,10),d=(s?s.dayNamesShort:null)||this._defaults.dayNamesShort,c=(s?s.dayNames:null)||this._defaults.dayNames,p=(s?s.monthNamesShort:null)||this._defaults.monthNamesShort,f=(s?s.monthNames:null)||this._defaults.monthNames,m=-1,g=-1,v=-1,y=-1,b=!1,_=function(e){var i=t.length>n+1&&t.charAt(n+1)===e;return i&&n++,i},x=function(e){var t=_(e),s="@"===e?14:"!"===e?20:"y"===e&&t?4:"o"===e?3:2,n="y"===e?s:1,a=RegExp("^\\d{"+n+","+s+"}"),o=i.substring(h).match(a);if(!o)throw"Missing number at position "+h;return h+=o[0].length,parseInt(o[0],10)},w=function(t,s,n){var a=-1,o=e.map(_(t)?n:s,function(e,t){return[[t,e]]}).sort(function(e,t){return-(e[1].length-t[1].length)});if(e.each(o,function(e,t){var s=t[1];return i.substr(h,s.length).toLowerCase()===s.toLowerCase()?(a=t[0],h+=s.length,!1):void 0}),-1!==a)return a+1;throw"Unknown name at position "+h},k=function(){if(i.charAt(h)!==t.charAt(n))throw"Unexpected literal at position "+h;h++};for(n=0;t.length>n;n++)if(b)"'"!==t.charAt(n)||_("'")?k():b=!1;else switch(t.charAt(n)){case"d":v=x("d");break;case"D":w("D",d,c);break;case"o":y=x("o");break;case"m":g=x("m");break;case"M":g=w("M",p,f);break;case"y":m=x("y");break;case"@":r=new Date(x("@")),m=r.getFullYear(),g=r.getMonth()+1,v=r.getDate();break;case"!":r=new Date((x("!")-this._ticksTo1970)/1e4),m=r.getFullYear(),g=r.getMonth()+1,v=r.getDate();break;case"'":_("'")?k():b=!0;break;default:k()}if(i.length>h&&(o=i.substr(h),!/^\s+/.test(o)))throw"Extra/unparsed characters found in date: "+o;if(-1===m?m=(new Date).getFullYear():100>m&&(m+=(new Date).getFullYear()-(new Date).getFullYear()%100+(u>=m?0:-100)),y>-1)for(g=1,v=y;;){if(a=this._getDaysInMonth(m,g-1),a>=v)break;g++,v-=a}if(r=this._daylightSavingAdjust(new Date(m,g-1,v)),r.getFullYear()!==m||r.getMonth()+1!==g||r.getDate()!==v)throw"Invalid date";return r},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:1e7*60*60*24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925)),formatDate:function(e,t,i){if(!t)return"";var s,n=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,a=(i?i.dayNames:null)||this._defaults.dayNames,o=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,r=(i?i.monthNames:null)||this._defaults.monthNames,h=function(t){var i=e.length>s+1&&e.charAt(s+1)===t;return i&&s++,i},l=function(e,t,i){var s=""+t;if(h(e))for(;i>s.length;)s="0"+s;return s},u=function(e,t,i,s){return h(e)?s[t]:i[t]},d="",c=!1;if(t)for(s=0;e.length>s;s++)if(c)"'"!==e.charAt(s)||h("'")?d+=e.charAt(s):c=!1;else switch(e.charAt(s)){case"d":d+=l("d",t.getDate(),2);break;case"D":d+=u("D",t.getDay(),n,a);break;case"o":d+=l("o",Math.round((new Date(t.getFullYear(),t.getMonth(),t.getDate()).getTime()-new Date(t.getFullYear(),0,0).getTime())/864e5),3);break;case"m":d+=l("m",t.getMonth()+1,2);break;case"M":d+=u("M",t.getMonth(),o,r);break;case"y":d+=h("y")?t.getFullYear():(10>t.getYear()%100?"0":"")+t.getYear()%100;break;case"@":d+=t.getTime();break;case"!":d+=1e4*t.getTime()+this._ticksTo1970;break;case"'":h("'")?d+="'":c=!0;break;default:d+=e.charAt(s)}return d},_possibleChars:function(e){var t,i="",s=!1,n=function(i){var s=e.length>t+1&&e.charAt(t+1)===i;return s&&t++,s};for(t=0;e.length>t;t++)if(s)"'"!==e.charAt(t)||n("'")?i+=e.charAt(t):s=!1;else switch(e.charAt(t)){case"d":case"m":case"y":case"@":i+="0123456789";break;case"D":case"M":return null;case"'":n("'")?i+="'":s=!0;break;default:i+=e.charAt(t)}return i},_get:function(e,t){return void 0!==e.settings[t]?e.settings[t]:this._defaults[t]},_setDateFromField:function(e,t){if(e.input.val()!==e.lastVal){var i=this._get(e,"dateFormat"),s=e.lastVal=e.input?e.input.val():null,n=this._getDefaultDate(e),a=n,o=this._getFormatConfig(e);try{a=this.parseDate(i,s,o)||n}catch(r){s=t?"":s}e.selectedDay=a.getDate(),e.drawMonth=e.selectedMonth=a.getMonth(),e.drawYear=e.selectedYear=a.getFullYear(),e.currentDay=s?a.getDate():0,e.currentMonth=s?a.getMonth():0,e.currentYear=s?a.getFullYear():0,this._adjustInstDate(e)}},_getDefaultDate:function(e){return this._restrictMinMax(e,this._determineDate(e,this._get(e,"defaultDate"),new Date))},_determineDate:function(t,i,s){var n=function(e){var t=new Date;return t.setDate(t.getDate()+e),t},a=function(i){try{return e.datepicker.parseDate(e.datepicker._get(t,"dateFormat"),i,e.datepicker._getFormatConfig(t))}catch(s){}for(var n=(i.toLowerCase().match(/^c/)?e.datepicker._getDate(t):null)||new Date,a=n.getFullYear(),o=n.getMonth(),r=n.getDate(),h=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,l=h.exec(i);l;){switch(l[2]||"d"){case"d":case"D":r+=parseInt(l[1],10);break;case"w":case"W":r+=7*parseInt(l[1],10);break;case"m":case"M":o+=parseInt(l[1],10),r=Math.min(r,e.datepicker._getDaysInMonth(a,o));break;case"y":case"Y":a+=parseInt(l[1],10),r=Math.min(r,e.datepicker._getDaysInMonth(a,o))}l=h.exec(i)}return new Date(a,o,r)},o=null==i||""===i?s:"string"==typeof i?a(i):"number"==typeof i?isNaN(i)?s:n(i):new Date(i.getTime());return o=o&&"Invalid Date"==""+o?s:o,o&&(o.setHours(0),o.setMinutes(0),o.setSeconds(0),o.setMilliseconds(0)),this._daylightSavingAdjust(o)},_daylightSavingAdjust:function(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null},_setDate:function(e,t,i){var s=!t,n=e.selectedMonth,a=e.selectedYear,o=this._restrictMinMax(e,this._determineDate(e,t,new Date));e.selectedDay=e.currentDay=o.getDate(),e.drawMonth=e.selectedMonth=e.currentMonth=o.getMonth(),e.drawYear=e.selectedYear=e.currentYear=o.getFullYear(),n===e.selectedMonth&&a===e.selectedYear||i||this._notifyChange(e),this._adjustInstDate(e),e.input&&e.input.val(s?"":this._formatDate(e))},_getDate:function(e){var t=!e.currentYear||e.input&&""===e.input.val()?null:this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return t},_attachHandlers:function(t){var i=this._get(t,"stepMonths"),s="#"+t.id.replace(/\\\\/g,"\\");t.dpDiv.find("[data-handler]").map(function(){var t={prev:function(){e.datepicker._adjustDate(s,-i,"M")},next:function(){e.datepicker._adjustDate(s,+i,"M")},hide:function(){e.datepicker._hideDatepicker()},today:function(){e.datepicker._gotoToday(s)},selectDay:function(){return e.datepicker._selectDay(s,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return e.datepicker._selectMonthYear(s,this,"M"),!1},selectYear:function(){return e.datepicker._selectMonthYear(s,this,"Y"),!1}};e(this).bind(this.getAttribute("data-event"),t[this.getAttribute("data-handler")])})},_generateHTML:function(e){var t,i,s,n,a,o,r,h,l,u,d,c,p,f,m,g,v,y,b,_,x,w,k,T,D,S,M,C,N,A,P,I,z,H,F,E,O,j,W,L=new Date,R=this._daylightSavingAdjust(new Date(L.getFullYear(),L.getMonth(),L.getDate())),Y=this._get(e,"isRTL"),B=this._get(e,"showButtonPanel"),J=this._get(e,"hideIfNoPrevNext"),q=this._get(e,"navigationAsDateFormat"),K=this._getNumberOfMonths(e),V=this._get(e,"showCurrentAtPos"),U=this._get(e,"stepMonths"),Q=1!==K[0]||1!==K[1],G=this._daylightSavingAdjust(e.currentDay?new Date(e.currentYear,e.currentMonth,e.currentDay):new Date(9999,9,9)),X=this._getMinMaxDate(e,"min"),$=this._getMinMaxDate(e,"max"),Z=e.drawMonth-V,et=e.drawYear;if(0>Z&&(Z+=12,et--),$)for(t=this._daylightSavingAdjust(new Date($.getFullYear(),$.getMonth()-K[0]*K[1]+1,$.getDate())),t=X&&X>t?X:t;this._daylightSavingAdjust(new Date(et,Z,1))>t;)Z--,0>Z&&(Z=11,et--);for(e.drawMonth=Z,e.drawYear=et,i=this._get(e,"prevText"),i=q?this.formatDate(i,this._daylightSavingAdjust(new Date(et,Z-U,1)),this._getFormatConfig(e)):i,s=this._canAdjustMonth(e,-1,et,Z)?""+i+"":J?"":""+i+"",n=this._get(e,"nextText"),n=q?this.formatDate(n,this._daylightSavingAdjust(new Date(et,Z+U,1)),this._getFormatConfig(e)):n,a=this._canAdjustMonth(e,1,et,Z)?""+n+"":J?"":""+n+"",o=this._get(e,"currentText"),r=this._get(e,"gotoCurrent")&&e.currentDay?G:R,o=q?this.formatDate(o,r,this._getFormatConfig(e)):o,h=e.inline?"":"",l=B?"
    "+(Y?h:"")+(this._isInRange(e,r)?"":"")+(Y?"":h)+"
    ":"",u=parseInt(this._get(e,"firstDay"),10),u=isNaN(u)?0:u,d=this._get(e,"showWeek"),c=this._get(e,"dayNames"),p=this._get(e,"dayNamesMin"),f=this._get(e,"monthNames"),m=this._get(e,"monthNamesShort"),g=this._get(e,"beforeShowDay"),v=this._get(e,"showOtherMonths"),y=this._get(e,"selectOtherMonths"),b=this._getDefaultDate(e),_="",w=0;K[0]>w;w++){for(k="",this.maxRows=4,T=0;K[1]>T;T++){if(D=this._daylightSavingAdjust(new Date(et,Z,e.selectedDay)),S=" ui-corner-all",M="",Q){if(M+="
    "}for(M+="
    "+(/all|left/.test(S)&&0===w?Y?a:s:"")+(/all|right/.test(S)&&0===w?Y?s:a:"")+this._generateMonthYearHeader(e,Z,et,X,$,w>0||T>0,f,m)+"
    "+"",C=d?"":"",x=0;7>x;x++)N=(x+u)%7,C+="";for(M+=C+"",A=this._getDaysInMonth(et,Z),et===e.selectedYear&&Z===e.selectedMonth&&(e.selectedDay=Math.min(e.selectedDay,A)),P=(this._getFirstDayOfMonth(et,Z)-u+7)%7,I=Math.ceil((P+A)/7),z=Q?this.maxRows>I?this.maxRows:I:I,this.maxRows=z,H=this._daylightSavingAdjust(new Date(et,Z,1-P)),F=0;z>F;F++){for(M+="",E=d?"":"",x=0;7>x;x++)O=g?g.apply(e.input?e.input[0]:null,[H]):[!0,""],j=H.getMonth()!==Z,W=j&&!y||!O[0]||X&&X>H||$&&H>$,E+="",H.setDate(H.getDate()+1),H=this._daylightSavingAdjust(H);M+=E+""}Z++,Z>11&&(Z=0,et++),M+="
    "+this._get(e,"weekHeader")+"=5?" class='ui-datepicker-week-end'":"")+">"+""+p[N]+"
    "+this._get(e,"calculateWeek")(H)+""+(j&&!v?" ":W?""+H.getDate()+"":""+H.getDate()+"")+"
    "+(Q?"
    "+(K[0]>0&&T===K[1]-1?"
    ":""):""),k+=M}_+=k}return _+=l,e._keyEvent=!1,_},_generateMonthYearHeader:function(e,t,i,s,n,a,o,r){var h,l,u,d,c,p,f,m,g=this._get(e,"changeMonth"),v=this._get(e,"changeYear"),y=this._get(e,"showMonthAfterYear"),b="
    ",_="";if(a||!g)_+=""+o[t]+"";else{for(h=s&&s.getFullYear()===i,l=n&&n.getFullYear()===i,_+=""}if(y||(b+=_+(!a&&g&&v?"":" ")),!e.yearshtml)if(e.yearshtml="",a||!v)b+=""+i+"";else{for(d=this._get(e,"yearRange").split(":"),c=(new Date).getFullYear(),p=function(e){var t=e.match(/c[+\-].*/)?i+parseInt(e.substring(1),10):e.match(/[+\-].*/)?c+parseInt(e,10):parseInt(e,10);return isNaN(t)?c:t},f=p(d[0]),m=Math.max(f,p(d[1]||"")),f=s?Math.max(f,s.getFullYear()):f,m=n?Math.min(m,n.getFullYear()):m,e.yearshtml+="",b+=e.yearshtml,e.yearshtml=null}return b+=this._get(e,"yearSuffix"),y&&(b+=(!a&&g&&v?"":" ")+_),b+="
    "},_adjustInstDate:function(e,t,i){var s=e.drawYear+("Y"===i?t:0),n=e.drawMonth+("M"===i?t:0),a=Math.min(e.selectedDay,this._getDaysInMonth(s,n))+("D"===i?t:0),o=this._restrictMinMax(e,this._daylightSavingAdjust(new Date(s,n,a)));e.selectedDay=o.getDate(),e.drawMonth=e.selectedMonth=o.getMonth(),e.drawYear=e.selectedYear=o.getFullYear(),("M"===i||"Y"===i)&&this._notifyChange(e)},_restrictMinMax:function(e,t){var i=this._getMinMaxDate(e,"min"),s=this._getMinMaxDate(e,"max"),n=i&&i>t?i:t;return s&&n>s?s:n},_notifyChange:function(e){var t=this._get(e,"onChangeMonthYear");t&&t.apply(e.input?e.input[0]:null,[e.selectedYear,e.selectedMonth+1,e])},_getNumberOfMonths:function(e){var t=this._get(e,"numberOfMonths");return null==t?[1,1]:"number"==typeof t?[1,t]:t},_getMinMaxDate:function(e,t){return this._determineDate(e,this._get(e,t+"Date"),null)},_getDaysInMonth:function(e,t){return 32-this._daylightSavingAdjust(new Date(e,t,32)).getDate()},_getFirstDayOfMonth:function(e,t){return new Date(e,t,1).getDay()},_canAdjustMonth:function(e,t,i,s){var n=this._getNumberOfMonths(e),a=this._daylightSavingAdjust(new Date(i,s+(0>t?t:n[0]*n[1]),1));return 0>t&&a.setDate(this._getDaysInMonth(a.getFullYear(),a.getMonth())),this._isInRange(e,a)},_isInRange:function(e,t){var i,s,n=this._getMinMaxDate(e,"min"),a=this._getMinMaxDate(e,"max"),o=null,r=null,h=this._get(e,"yearRange");return h&&(i=h.split(":"),s=(new Date).getFullYear(),o=parseInt(i[0],10),r=parseInt(i[1],10),i[0].match(/[+\-].*/)&&(o+=s),i[1].match(/[+\-].*/)&&(r+=s)),(!n||t.getTime()>=n.getTime())&&(!a||t.getTime()<=a.getTime())&&(!o||t.getFullYear()>=o)&&(!r||r>=t.getFullYear())},_getFormatConfig:function(e){var t=this._get(e,"shortYearCutoff");return t="string"!=typeof t?t:(new Date).getFullYear()%100+parseInt(t,10),{shortYearCutoff:t,dayNamesShort:this._get(e,"dayNamesShort"),dayNames:this._get(e,"dayNames"),monthNamesShort:this._get(e,"monthNamesShort"),monthNames:this._get(e,"monthNames")}},_formatDate:function(e,t,i,s){t||(e.currentDay=e.selectedDay,e.currentMonth=e.selectedMonth,e.currentYear=e.selectedYear);var n=t?"object"==typeof t?t:this._daylightSavingAdjust(new Date(s,i,t)):this._daylightSavingAdjust(new Date(e.currentYear,e.currentMonth,e.currentDay));return this.formatDate(this._get(e,"dateFormat"),n,this._getFormatConfig(e))}}),e.fn.datepicker=function(t){if(!this.length)return this;e.datepicker.initialized||(e(document).mousedown(e.datepicker._checkExternalClick),e.datepicker.initialized=!0),0===e("#"+e.datepicker._mainDivId).length&&e("body").append(e.datepicker.dpDiv);var i=Array.prototype.slice.call(arguments,1);return"string"!=typeof t||"isDisabled"!==t&&"getDate"!==t&&"widget"!==t?"option"===t&&2===arguments.length&&"string"==typeof arguments[1]?e.datepicker["_"+t+"Datepicker"].apply(e.datepicker,[this[0]].concat(i)):this.each(function(){"string"==typeof t?e.datepicker["_"+t+"Datepicker"].apply(e.datepicker,[this].concat(i)):e.datepicker._attachDatepicker(this,t)}):e.datepicker["_"+t+"Datepicker"].apply(e.datepicker,[this[0]].concat(i))},e.datepicker=new n,e.datepicker.initialized=!1,e.datepicker.uuid=(new Date).getTime(),e.datepicker.version="1.11.2",e.datepicker,e.widget("ui.dialog",{version:"1.11.2",options:{appendTo:"body",autoOpen:!0,buttons:[],closeOnEscape:!0,closeText:"Close",dialogClass:"",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(t){var i=e(this).css(t).offset().top;0>i&&e(this).css("top",t.top-i)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),this.options.title=this.options.title||this.originalTitle,this._createWrapper(),this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(this.uiDialog),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&e.fn.draggable&&this._makeDraggable(),this.options.resizable&&e.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var t=this.options.appendTo;return t&&(t.jquery||t.nodeType)?e(t):this.document.find(t||"body").eq(0)},_destroy:function(){var e,t=this.originalPosition;this._destroyOverlay(),this.element.removeUniqueId().removeClass("ui-dialog-content ui-widget-content").css(this.originalCss).detach(),this.uiDialog.stop(!0,!0).remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),e=t.parent.children().eq(t.index),e.length&&e[0]!==this.element[0]?e.before(this.element):t.parent.append(this.element)},widget:function(){return this.uiDialog},disable:e.noop,enable:e.noop,close:function(t){var i,s=this;if(this._isOpen&&this._trigger("beforeClose",t)!==!1){if(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),!this.opener.filter(":focusable").focus().length)try{i=this.document[0].activeElement,i&&"body"!==i.nodeName.toLowerCase()&&e(i).blur()}catch(n){}this._hide(this.uiDialog,this.options.hide,function(){s._trigger("close",t)})}},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(t,i){var s=!1,n=this.uiDialog.siblings(".ui-front:visible").map(function(){return+e(this).css("z-index")}).get(),a=Math.max.apply(null,n);return a>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",a+1),s=!0),s&&!i&&this._trigger("focus",t),s},open:function(){var t=this;return this._isOpen?(this._moveToTop()&&this._focusTabbable(),void 0):(this._isOpen=!0,this.opener=e(this.document[0].activeElement),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){t._focusTabbable(),t._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"),void 0)},_focusTabbable:function(){var e=this._focusedElement; +e||(e=this.element.find("[autofocus]")),e.length||(e=this.element.find(":tabbable")),e.length||(e=this.uiDialogButtonPane.find(":tabbable")),e.length||(e=this.uiDialogTitlebarClose.filter(":tabbable")),e.length||(e=this.uiDialog),e.eq(0).focus()},_keepFocus:function(t){function i(){var t=this.document[0].activeElement,i=this.uiDialog[0]===t||e.contains(this.uiDialog[0],t);i||this._focusTabbable()}t.preventDefault(),i.call(this),this._delay(i)},_createWrapper:function(){this.uiDialog=e("
    ").addClass("ui-dialog ui-widget ui-widget-content ui-corner-all ui-front "+this.options.dialogClass).hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._on(this.uiDialog,{keydown:function(t){if(this.options.closeOnEscape&&!t.isDefaultPrevented()&&t.keyCode&&t.keyCode===e.ui.keyCode.ESCAPE)return t.preventDefault(),this.close(t),void 0;if(t.keyCode===e.ui.keyCode.TAB&&!t.isDefaultPrevented()){var i=this.uiDialog.find(":tabbable"),s=i.filter(":first"),n=i.filter(":last");t.target!==n[0]&&t.target!==this.uiDialog[0]||t.shiftKey?t.target!==s[0]&&t.target!==this.uiDialog[0]||!t.shiftKey||(this._delay(function(){n.focus()}),t.preventDefault()):(this._delay(function(){s.focus()}),t.preventDefault())}},mousedown:function(e){this._moveToTop(e)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var t;this.uiDialogTitlebar=e("
    ").addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(this.uiDialog),this._on(this.uiDialogTitlebar,{mousedown:function(t){e(t.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.focus()}}),this.uiDialogTitlebarClose=e("").button({label:this.options.closeText,icons:{primary:"ui-icon-closethick"},text:!1}).addClass("ui-dialog-titlebar-close").appendTo(this.uiDialogTitlebar),this._on(this.uiDialogTitlebarClose,{click:function(e){e.preventDefault(),this.close(e)}}),t=e("").uniqueId().addClass("ui-dialog-title").prependTo(this.uiDialogTitlebar),this._title(t),this.uiDialog.attr({"aria-labelledby":t.attr("id")})},_title:function(e){this.options.title||e.html(" "),e.text(this.options.title)},_createButtonPane:function(){this.uiDialogButtonPane=e("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),this.uiButtonSet=e("
    ").addClass("ui-dialog-buttonset").appendTo(this.uiDialogButtonPane),this._createButtons()},_createButtons:function(){var t=this,i=this.options.buttons;return this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),e.isEmptyObject(i)||e.isArray(i)&&!i.length?(this.uiDialog.removeClass("ui-dialog-buttons"),void 0):(e.each(i,function(i,s){var n,a;s=e.isFunction(s)?{click:s,text:i}:s,s=e.extend({type:"button"},s),n=s.click,s.click=function(){n.apply(t.element[0],arguments)},a={icons:s.icons,text:s.showText},delete s.icons,delete s.showText,e("",s).button(a).appendTo(t.uiButtonSet)}),this.uiDialog.addClass("ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog),void 0)},_makeDraggable:function(){function t(e){return{position:e.position,offset:e.offset}}var i=this,s=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(s,n){e(this).addClass("ui-dialog-dragging"),i._blockFrames(),i._trigger("dragStart",s,t(n))},drag:function(e,s){i._trigger("drag",e,t(s))},stop:function(n,a){var o=a.offset.left-i.document.scrollLeft(),r=a.offset.top-i.document.scrollTop();s.position={my:"left top",at:"left"+(o>=0?"+":"")+o+" "+"top"+(r>=0?"+":"")+r,of:i.window},e(this).removeClass("ui-dialog-dragging"),i._unblockFrames(),i._trigger("dragStop",n,t(a))}})},_makeResizable:function(){function t(e){return{originalPosition:e.originalPosition,originalSize:e.originalSize,position:e.position,size:e.size}}var i=this,s=this.options,n=s.resizable,a=this.uiDialog.css("position"),o="string"==typeof n?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:s.maxWidth,maxHeight:s.maxHeight,minWidth:s.minWidth,minHeight:this._minHeight(),handles:o,start:function(s,n){e(this).addClass("ui-dialog-resizing"),i._blockFrames(),i._trigger("resizeStart",s,t(n))},resize:function(e,s){i._trigger("resize",e,t(s))},stop:function(n,a){var o=i.uiDialog.offset(),r=o.left-i.document.scrollLeft(),h=o.top-i.document.scrollTop();s.height=i.uiDialog.height(),s.width=i.uiDialog.width(),s.position={my:"left top",at:"left"+(r>=0?"+":"")+r+" "+"top"+(h>=0?"+":"")+h,of:i.window},e(this).removeClass("ui-dialog-resizing"),i._unblockFrames(),i._trigger("resizeStop",n,t(a))}}).css("position",a)},_trackFocus:function(){this._on(this.widget(),{focusin:function(t){this._makeFocusTarget(),this._focusedElement=e(t.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var t=this._trackingInstances(),i=e.inArray(this,t);-1!==i&&t.splice(i,1)},_trackingInstances:function(){var e=this.document.data("ui-dialog-instances");return e||(e=[],this.document.data("ui-dialog-instances",e)),e},_minHeight:function(){var e=this.options;return"auto"===e.height?e.minHeight:Math.min(e.minHeight,e.height)},_position:function(){var e=this.uiDialog.is(":visible");e||this.uiDialog.show(),this.uiDialog.position(this.options.position),e||this.uiDialog.hide()},_setOptions:function(t){var i=this,s=!1,n={};e.each(t,function(e,t){i._setOption(e,t),e in i.sizeRelatedOptions&&(s=!0),e in i.resizableRelatedOptions&&(n[e]=t)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(e,t){var i,s,n=this.uiDialog;"dialogClass"===e&&n.removeClass(this.options.dialogClass).addClass(t),"disabled"!==e&&(this._super(e,t),"appendTo"===e&&this.uiDialog.appendTo(this._appendTo()),"buttons"===e&&this._createButtons(),"closeText"===e&&this.uiDialogTitlebarClose.button({label:""+t}),"draggable"===e&&(i=n.is(":data(ui-draggable)"),i&&!t&&n.draggable("destroy"),!i&&t&&this._makeDraggable()),"position"===e&&this._position(),"resizable"===e&&(s=n.is(":data(ui-resizable)"),s&&!t&&n.resizable("destroy"),s&&"string"==typeof t&&n.resizable("option","handles",t),s||t===!1||this._makeResizable()),"title"===e&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var e,t,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),e=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),t=Math.max(0,s.minHeight-e),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-e):"none","auto"===s.height?this.element.css({minHeight:t,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-e)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var t=e(this);return e("
    ").css({position:"absolute",width:t.outerWidth(),height:t.outerHeight()}).appendTo(t.parent()).offset(t.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(t){return e(t.target).closest(".ui-dialog").length?!0:!!e(t.target).closest(".ui-datepicker").length},_createOverlay:function(){if(this.options.modal){var t=!0;this._delay(function(){t=!1}),this.document.data("ui-dialog-overlays")||this._on(this.document,{focusin:function(e){t||this._allowInteraction(e)||(e.preventDefault(),this._trackingInstances()[0]._focusTabbable())}}),this.overlay=e("
    ").addClass("ui-widget-overlay ui-front").appendTo(this._appendTo()),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1)}},_destroyOverlay:function(){if(this.options.modal&&this.overlay){var e=this.document.data("ui-dialog-overlays")-1;e?this.document.data("ui-dialog-overlays",e):this.document.unbind("focusin").removeData("ui-dialog-overlays"),this.overlay.remove(),this.overlay=null}}}),e.widget("ui.progressbar",{version:"1.11.2",options:{max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min}),this.valueDiv=e("
    ").appendTo(this.element),this._refreshValue()},_destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.valueDiv.remove()},value:function(e){return void 0===e?this.options.value:(this.options.value=this._constrainedValue(e),this._refreshValue(),void 0)},_constrainedValue:function(e){return void 0===e&&(e=this.options.value),this.indeterminate=e===!1,"number"!=typeof e&&(e=0),this.indeterminate?!1:Math.min(this.options.max,Math.max(this.min,e))},_setOptions:function(e){var t=e.value;delete e.value,this._super(e),this.options.value=this._constrainedValue(t),this._refreshValue()},_setOption:function(e,t){"max"===e&&(t=Math.max(this.min,t)),"disabled"===e&&this.element.toggleClass("ui-state-disabled",!!t).attr("aria-disabled",t),this._super(e,t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var t=this.options.value,i=this._percentage();this.valueDiv.toggle(this.indeterminate||t>this.min).toggleClass("ui-corner-right",t===this.options.max).width(i.toFixed(0)+"%"),this.element.toggleClass("ui-progressbar-indeterminate",this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=e("
    ").appendTo(this.valueDiv))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":t}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==t&&(this.oldValue=t,this._trigger("change")),t===this.options.max&&this._trigger("complete")}}),e.widget("ui.selectmenu",{version:"1.11.2",defaultElement:"",widgetEventPrefix:"spin",options:{culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var t={},i=this.element;return e.each(["min","max","step"],function(e,s){var n=i.attr(s);void 0!==n&&n.length&&(t[s]=n)}),t},_events:{keydown:function(e){this._start(e)&&this._keydown(e)&&e.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(e){return this.cancelBlur?(delete this.cancelBlur,void 0):(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",e),void 0)},mousewheel:function(e,t){if(t){if(!this.spinning&&!this._start(e))return!1;this._spin((t>0?1:-1)*this.options.step,e),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(e)},100),e.preventDefault()}},"mousedown .ui-spinner-button":function(t){function i(){var e=this.element[0]===this.document[0].activeElement;e||(this.element.focus(),this.previous=s,this._delay(function(){this.previous=s}))}var s;s=this.element[0]===this.document[0].activeElement?this.previous:this.element.val(),t.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),this._start(t)!==!1&&this._repeat(null,e(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(t){return e(t.currentTarget).hasClass("ui-state-active")?this._start(t)===!1?!1:(this._repeat(null,e(t.currentTarget).hasClass("ui-spinner-up")?1:-1,t),void 0):void 0},"mouseleave .ui-spinner-button":"_stop"},_draw:function(){var e=this.uiSpinner=this.element.addClass("ui-spinner-input").attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml());this.element.attr("role","spinbutton"),this.buttons=e.find(".ui-spinner-button").attr("tabIndex",-1).button().removeClass("ui-corner-all"),this.buttons.height()>Math.ceil(.5*e.height())&&e.height()>0&&e.height(e.height()),this.options.disabled&&this.disable()},_keydown:function(t){var i=this.options,s=e.ui.keyCode;switch(t.keyCode){case s.UP:return this._repeat(null,1,t),!0;case s.DOWN:return this._repeat(null,-1,t),!0;case s.PAGE_UP:return this._repeat(null,i.page,t),!0;case s.PAGE_DOWN:return this._repeat(null,-i.page,t),!0}return!1},_uiSpinnerHtml:function(){return""},_buttonHtml:function(){return""+""+""+""+"" +},_start:function(e){return this.spinning||this._trigger("start",e)!==!1?(this.counter||(this.counter=1),this.spinning=!0,!0):!1},_repeat:function(e,t,i){e=e||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,t,i)},e),this._spin(t*this.options.step,i)},_spin:function(e,t){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+e*this._increment(this.counter)),this.spinning&&this._trigger("spin",t,{value:i})===!1||(this._value(i),this.counter++)},_increment:function(t){var i=this.options.incremental;return i?e.isFunction(i)?i(t):Math.floor(t*t*t/5e4-t*t/500+17*t/200+1):1},_precision:function(){var e=this._precisionOf(this.options.step);return null!==this.options.min&&(e=Math.max(e,this._precisionOf(this.options.min))),e},_precisionOf:function(e){var t=""+e,i=t.indexOf(".");return-1===i?0:t.length-i-1},_adjustValue:function(e){var t,i,s=this.options;return t=null!==s.min?s.min:0,i=e-t,i=Math.round(i/s.step)*s.step,e=t+i,e=parseFloat(e.toFixed(this._precision())),null!==s.max&&e>s.max?s.max:null!==s.min&&s.min>e?s.min:e},_stop:function(e){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",e))},_setOption:function(e,t){if("culture"===e||"numberFormat"===e){var i=this._parse(this.element.val());return this.options[e]=t,this.element.val(this._format(i)),void 0}("max"===e||"min"===e||"step"===e)&&"string"==typeof t&&(t=this._parse(t)),"icons"===e&&(this.buttons.first().find(".ui-icon").removeClass(this.options.icons.up).addClass(t.up),this.buttons.last().find(".ui-icon").removeClass(this.options.icons.down).addClass(t.down)),this._super(e,t),"disabled"===e&&(this.widget().toggleClass("ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable"))},_setOptions:h(function(e){this._super(e)}),_parse:function(e){return"string"==typeof e&&""!==e&&(e=window.Globalize&&this.options.numberFormat?Globalize.parseFloat(e,10,this.options.culture):+e),""===e||isNaN(e)?null:e},_format:function(e){return""===e?"":window.Globalize&&this.options.numberFormat?Globalize.format(e,this.options.numberFormat,this.options.culture):e},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var e=this.value();return null===e?!1:e===this._adjustValue(e)},_value:function(e,t){var i;""!==e&&(i=this._parse(e),null!==i&&(t||(i=this._adjustValue(i)),e=this._format(i))),this.element.val(e),this._refresh()},_destroy:function(){this.element.removeClass("ui-spinner-input").prop("disabled",!1).removeAttr("autocomplete").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:h(function(e){this._stepUp(e)}),_stepUp:function(e){this._start()&&(this._spin((e||1)*this.options.step),this._stop())},stepDown:h(function(e){this._stepDown(e)}),_stepDown:function(e){this._start()&&(this._spin((e||1)*-this.options.step),this._stop())},pageUp:h(function(e){this._stepUp((e||1)*this.options.page)}),pageDown:h(function(e){this._stepDown((e||1)*this.options.page)}),value:function(e){return arguments.length?(h(this._value).call(this,e),void 0):this._parse(this.element.val())},widget:function(){return this.uiSpinner}}),e.widget("ui.tabs",{version:"1.11.2",delay:300,options:{active:null,collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:function(){var e=/#.*$/;return function(t){var i,s;t=t.cloneNode(!1),i=t.href.replace(e,""),s=location.href.replace(e,"");try{i=decodeURIComponent(i)}catch(n){}try{s=decodeURIComponent(s)}catch(n){}return t.hash.length>1&&i===s}}(),_create:function(){var t=this,i=this.options;this.running=!1,this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all").toggleClass("ui-tabs-collapsible",i.collapsible),this._processTabs(),i.active=this._initialActive(),e.isArray(i.disabled)&&(i.disabled=e.unique(i.disabled.concat(e.map(this.tabs.filter(".ui-state-disabled"),function(e){return t.tabs.index(e)}))).sort()),this.active=this.options.active!==!1&&this.anchors.length?this._findActive(i.active):e(),this._refresh(),this.active.length&&this.load(i.active)},_initialActive:function(){var t=this.options.active,i=this.options.collapsible,s=location.hash.substring(1);return null===t&&(s&&this.tabs.each(function(i,n){return e(n).attr("aria-controls")===s?(t=i,!1):void 0}),null===t&&(t=this.tabs.index(this.tabs.filter(".ui-tabs-active"))),(null===t||-1===t)&&(t=this.tabs.length?0:!1)),t!==!1&&(t=this.tabs.index(this.tabs.eq(t)),-1===t&&(t=i?!1:0)),!i&&t===!1&&this.anchors.length&&(t=0),t},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):e()}},_tabKeydown:function(t){var i=e(this.document[0].activeElement).closest("li"),s=this.tabs.index(i),n=!0;if(!this._handlePageNav(t)){switch(t.keyCode){case e.ui.keyCode.RIGHT:case e.ui.keyCode.DOWN:s++;break;case e.ui.keyCode.UP:case e.ui.keyCode.LEFT:n=!1,s--;break;case e.ui.keyCode.END:s=this.anchors.length-1;break;case e.ui.keyCode.HOME:s=0;break;case e.ui.keyCode.SPACE:return t.preventDefault(),clearTimeout(this.activating),this._activate(s),void 0;case e.ui.keyCode.ENTER:return t.preventDefault(),clearTimeout(this.activating),this._activate(s===this.options.active?!1:s),void 0;default:return}t.preventDefault(),clearTimeout(this.activating),s=this._focusNextTab(s,n),t.ctrlKey||(i.attr("aria-selected","false"),this.tabs.eq(s).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",s)},this.delay))}},_panelKeydown:function(t){this._handlePageNav(t)||t.ctrlKey&&t.keyCode===e.ui.keyCode.UP&&(t.preventDefault(),this.active.focus())},_handlePageNav:function(t){return t.altKey&&t.keyCode===e.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):t.altKey&&t.keyCode===e.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(t,i){function s(){return t>n&&(t=0),0>t&&(t=n),t}for(var n=this.tabs.length-1;-1!==e.inArray(s(),this.options.disabled);)t=i?t+1:t-1;return t},_focusNextTab:function(e,t){return e=this._findNextTab(e,t),this.tabs.eq(e).focus(),e},_setOption:function(e,t){return"active"===e?(this._activate(t),void 0):"disabled"===e?(this._setupDisabled(t),void 0):(this._super(e,t),"collapsible"===e&&(this.element.toggleClass("ui-tabs-collapsible",t),t||this.options.active!==!1||this._activate(0)),"event"===e&&this._setupEvents(t),"heightStyle"===e&&this._setupHeightStyle(t),void 0)},_sanitizeSelector:function(e){return e?e.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var t=this.options,i=this.tablist.children(":has(a[href])");t.disabled=e.map(i.filter(".ui-state-disabled"),function(e){return i.index(e)}),this._processTabs(),t.active!==!1&&this.anchors.length?this.active.length&&!e.contains(this.tablist[0],this.active[0])?this.tabs.length===t.disabled.length?(t.active=!1,this.active=e()):this._activate(this._findNextTab(Math.max(0,t.active-1),!1)):t.active=this.tabs.index(this.active):(t.active=!1,this.active=e()),this._refresh()},_refresh:function(){this._setupDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.addClass("ui-tabs-active ui-state-active").attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var t=this,i=this.tabs,s=this.anchors,n=this.panels;this.tablist=this._getList().addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").attr("role","tablist").delegate("> li","mousedown"+this.eventNamespace,function(t){e(this).is(".ui-state-disabled")&&t.preventDefault()}).delegate(".ui-tabs-anchor","focus"+this.eventNamespace,function(){e(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").addClass("ui-state-default ui-corner-top").attr({role:"tab",tabIndex:-1}),this.anchors=this.tabs.map(function(){return e("a",this)[0]}).addClass("ui-tabs-anchor").attr({role:"presentation",tabIndex:-1}),this.panels=e(),this.anchors.each(function(i,s){var n,a,o,r=e(s).uniqueId().attr("id"),h=e(s).closest("li"),l=h.attr("aria-controls");t._isLocal(s)?(n=s.hash,o=n.substring(1),a=t.element.find(t._sanitizeSelector(n))):(o=h.attr("aria-controls")||e({}).uniqueId()[0].id,n="#"+o,a=t.element.find(n),a.length||(a=t._createPanel(o),a.insertAfter(t.panels[i-1]||t.tablist)),a.attr("aria-live","polite")),a.length&&(t.panels=t.panels.add(a)),l&&h.data("ui-tabs-aria-controls",l),h.attr({"aria-controls":o,"aria-labelledby":r}),a.attr("aria-labelledby",r)}),this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").attr("role","tabpanel"),i&&(this._off(i.not(this.tabs)),this._off(s.not(this.anchors)),this._off(n.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol,ul").eq(0)},_createPanel:function(t){return e("
    ").attr("id",t).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").data("ui-tabs-destroy",!0)},_setupDisabled:function(t){e.isArray(t)&&(t.length?t.length===this.anchors.length&&(t=!0):t=!1);for(var i,s=0;i=this.tabs[s];s++)t===!0||-1!==e.inArray(s,t)?e(i).addClass("ui-state-disabled").attr("aria-disabled","true"):e(i).removeClass("ui-state-disabled").removeAttr("aria-disabled");this.options.disabled=t},_setupEvents:function(t){var i={};t&&e.each(t.split(" "),function(e,t){i[t]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(e){e.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(t){var i,s=this.element.parent();"fill"===t?(i=s.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var t=e(this),s=t.css("position");"absolute"!==s&&"fixed"!==s&&(i-=t.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=e(this).outerHeight(!0)}),this.panels.each(function(){e(this).height(Math.max(0,i-e(this).innerHeight()+e(this).height()))}).css("overflow","auto")):"auto"===t&&(i=0,this.panels.each(function(){i=Math.max(i,e(this).height("").height())}).height(i))},_eventHandler:function(t){var i=this.options,s=this.active,n=e(t.currentTarget),a=n.closest("li"),o=a[0]===s[0],r=o&&i.collapsible,h=r?e():this._getPanelForTab(a),l=s.length?this._getPanelForTab(s):e(),u={oldTab:s,oldPanel:l,newTab:r?e():a,newPanel:h};t.preventDefault(),a.hasClass("ui-state-disabled")||a.hasClass("ui-tabs-loading")||this.running||o&&!i.collapsible||this._trigger("beforeActivate",t,u)===!1||(i.active=r?!1:this.tabs.index(a),this.active=o?e():a,this.xhr&&this.xhr.abort(),l.length||h.length||e.error("jQuery UI Tabs: Mismatching fragment identifier."),h.length&&this.load(this.tabs.index(a),t),this._toggle(t,u))},_toggle:function(t,i){function s(){a.running=!1,a._trigger("activate",t,i)}function n(){i.newTab.closest("li").addClass("ui-tabs-active ui-state-active"),o.length&&a.options.show?a._show(o,a.options.show,s):(o.show(),s())}var a=this,o=i.newPanel,r=i.oldPanel;this.running=!0,r.length&&this.options.hide?this._hide(r,this.options.hide,function(){i.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),n()}):(i.oldTab.closest("li").removeClass("ui-tabs-active ui-state-active"),r.hide(),n()),r.attr("aria-hidden","true"),i.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),o.length&&r.length?i.oldTab.attr("tabIndex",-1):o.length&&this.tabs.filter(function(){return 0===e(this).attr("tabIndex")}).attr("tabIndex",-1),o.attr("aria-hidden","false"),i.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(t){var i,s=this._findActive(t);s[0]!==this.active[0]&&(s.length||(s=this.active),i=s.find(".ui-tabs-anchor")[0],this._eventHandler({target:i,currentTarget:i,preventDefault:e.noop}))},_findActive:function(t){return t===!1?e():this.tabs.eq(t)},_getIndex:function(e){return"string"==typeof e&&(e=this.anchors.index(this.anchors.filter("[href$='"+e+"']"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.element.removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible"),this.tablist.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all").removeAttr("role"),this.anchors.removeClass("ui-tabs-anchor").removeAttr("role").removeAttr("tabIndex").removeUniqueId(),this.tablist.unbind(this.eventNamespace),this.tabs.add(this.panels).each(function(){e.data(this,"ui-tabs-destroy")?e(this).remove():e(this).removeClass("ui-state-default ui-state-active ui-state-disabled ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel").removeAttr("tabIndex").removeAttr("aria-live").removeAttr("aria-busy").removeAttr("aria-selected").removeAttr("aria-labelledby").removeAttr("aria-hidden").removeAttr("aria-expanded").removeAttr("role")}),this.tabs.each(function(){var t=e(this),i=t.data("ui-tabs-aria-controls");i?t.attr("aria-controls",i).removeData("ui-tabs-aria-controls"):t.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(t){var i=this.options.disabled;i!==!1&&(void 0===t?i=!1:(t=this._getIndex(t),i=e.isArray(i)?e.map(i,function(e){return e!==t?e:null}):e.map(this.tabs,function(e,i){return i!==t?i:null})),this._setupDisabled(i))},disable:function(t){var i=this.options.disabled;if(i!==!0){if(void 0===t)i=!0;else{if(t=this._getIndex(t),-1!==e.inArray(t,i))return;i=e.isArray(i)?e.merge([t],i).sort():[t]}this._setupDisabled(i)}},load:function(t,i){t=this._getIndex(t);var s=this,n=this.tabs.eq(t),a=n.find(".ui-tabs-anchor"),o=this._getPanelForTab(n),r={tab:n,panel:o};this._isLocal(a[0])||(this.xhr=e.ajax(this._ajaxSettings(a,i,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(n.addClass("ui-tabs-loading"),o.attr("aria-busy","true"),this.xhr.success(function(e){setTimeout(function(){o.html(e),s._trigger("load",i,r)},1)}).complete(function(e,t){setTimeout(function(){"abort"===t&&s.panels.stop(!1,!0),n.removeClass("ui-tabs-loading"),o.removeAttr("aria-busy"),e===s.xhr&&delete s.xhr},1)})))},_ajaxSettings:function(t,i,s){var n=this;return{url:t.attr("href"),beforeSend:function(t,a){return n._trigger("beforeLoad",i,e.extend({jqXHR:t,ajaxSettings:a},s))}}},_getPanelForTab:function(t){var i=e(t).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+i))}}),e.widget("ui.tooltip",{version:"1.11.2",options:{content:function(){var t=e(this).attr("title")||"";return e("").text(t).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,tooltipClass:null,track:!1,close:null,open:null},_addDescribedBy:function(t,i){var s=(t.attr("aria-describedby")||"").split(/\s+/);s.push(i),t.data("ui-tooltip-id",i).attr("aria-describedby",e.trim(s.join(" ")))},_removeDescribedBy:function(t){var i=t.data("ui-tooltip-id"),s=(t.attr("aria-describedby")||"").split(/\s+/),n=e.inArray(i,s);-1!==n&&s.splice(n,1),t.removeData("ui-tooltip-id"),s=e.trim(s.join(" ")),s?t.attr("aria-describedby",s):t.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.options.disabled&&this._disable(),this.liveRegion=e("
    ").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).addClass("ui-helper-hidden-accessible").appendTo(this.document[0].body)},_setOption:function(t,i){var s=this;return"disabled"===t?(this[i?"_disable":"_enable"](),this.options[t]=i,void 0):(this._super(t,i),"content"===t&&e.each(this.tooltips,function(e,t){s._updateContent(t.element)}),void 0)},_disable:function(){var t=this;e.each(this.tooltips,function(i,s){var n=e.Event("blur");n.target=n.currentTarget=s.element[0],t.close(n,!0)}),this.element.find(this.options.items).addBack().each(function(){var t=e(this);t.is("[title]")&&t.data("ui-tooltip-title",t.attr("title")).removeAttr("title")})},_enable:function(){this.element.find(this.options.items).addBack().each(function(){var t=e(this);t.data("ui-tooltip-title")&&t.attr("title",t.data("ui-tooltip-title"))})},open:function(t){var i=this,s=e(t?t.target:this.element).closest(this.options.items);s.length&&!s.data("ui-tooltip-id")&&(s.attr("title")&&s.data("ui-tooltip-title",s.attr("title")),s.data("ui-tooltip-open",!0),t&&"mouseover"===t.type&&s.parents().each(function(){var t,s=e(this);s.data("ui-tooltip-open")&&(t=e.Event("blur"),t.target=t.currentTarget=this,i.close(t,!0)),s.attr("title")&&(s.uniqueId(),i.parents[this.id]={element:this,title:s.attr("title")},s.attr("title",""))}),this._updateContent(s,t))},_updateContent:function(e,t){var i,s=this.options.content,n=this,a=t?t.type:null;return"string"==typeof s?this._open(t,e,s):(i=s.call(e[0],function(i){e.data("ui-tooltip-open")&&n._delay(function(){t&&(t.type=a),this._open(t,e,i)})}),i&&this._open(t,e,i),void 0)},_open:function(t,i,s){function n(e){u.of=e,o.is(":hidden")||o.position(u)}var a,o,r,h,l,u=e.extend({},this.options.position);if(s){if(a=this._find(i))return a.tooltip.find(".ui-tooltip-content").html(s),void 0;i.is("[title]")&&(t&&"mouseover"===t.type?i.attr("title",""):i.removeAttr("title")),a=this._tooltip(i),o=a.tooltip,this._addDescribedBy(i,o.attr("id")),o.find(".ui-tooltip-content").html(s),this.liveRegion.children().hide(),s.clone?(l=s.clone(),l.removeAttr("id").find("[id]").removeAttr("id")):l=s,e("
    ").html(l).appendTo(this.liveRegion),this.options.track&&t&&/^mouse/.test(t.type)?(this._on(this.document,{mousemove:n}),n(t)):o.position(e.extend({of:i},this.options.position)),o.hide(),this._show(o,this.options.show),this.options.show&&this.options.show.delay&&(h=this.delayedShow=setInterval(function(){o.is(":visible")&&(n(u.of),clearInterval(h))},e.fx.interval)),this._trigger("open",t,{tooltip:o}),r={keyup:function(t){if(t.keyCode===e.ui.keyCode.ESCAPE){var s=e.Event(t);s.currentTarget=i[0],this.close(s,!0)}}},i[0]!==this.element[0]&&(r.remove=function(){this._removeTooltip(o)}),t&&"mouseover"!==t.type||(r.mouseleave="close"),t&&"focusin"!==t.type||(r.focusout="close"),this._on(!0,i,r)}},close:function(t){var i,s=this,n=e(t?t.currentTarget:this.element),a=this._find(n);a&&(i=a.tooltip,a.closing||(clearInterval(this.delayedShow),n.data("ui-tooltip-title")&&!n.attr("title")&&n.attr("title",n.data("ui-tooltip-title")),this._removeDescribedBy(n),a.hiding=!0,i.stop(!0),this._hide(i,this.options.hide,function(){s._removeTooltip(e(this))}),n.removeData("ui-tooltip-open"),this._off(n,"mouseleave focusout keyup"),n[0]!==this.element[0]&&this._off(n,"remove"),this._off(this.document,"mousemove"),t&&"mouseleave"===t.type&&e.each(this.parents,function(t,i){e(i.element).attr("title",i.title),delete s.parents[t]}),a.closing=!0,this._trigger("close",t,{tooltip:i}),a.hiding||(a.closing=!1)))},_tooltip:function(t){var i=e("
    ").attr("role","tooltip").addClass("ui-tooltip ui-widget ui-corner-all ui-widget-content "+(this.options.tooltipClass||"")),s=i.uniqueId().attr("id");return e("
    ").addClass("ui-tooltip-content").appendTo(i),i.appendTo(this.document[0].body),this.tooltips[s]={element:t,tooltip:i}},_find:function(e){var t=e.data("ui-tooltip-id");return t?this.tooltips[t]:null},_removeTooltip:function(e){e.remove(),delete this.tooltips[e.attr("id")]},_destroy:function(){var t=this;e.each(this.tooltips,function(i,s){var n=e.Event("blur"),a=s.element;n.target=n.currentTarget=a[0],t.close(n,!0),e("#"+i).remove(),a.data("ui-tooltip-title")&&(a.attr("title")||a.attr("title",a.data("ui-tooltip-title")),a.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}});var y="ui-effects-",b=e;e.effects={effect:{}},function(e,t){function i(e,t,i){var s=d[t.type]||{};return null==e?i||!t.def?null:t.def:(e=s.floor?~~e:parseFloat(e),isNaN(e)?t.def:s.mod?(e+s.mod)%s.mod:0>e?0:e>s.max?s.max:e)}function s(i){var s=l(),n=s._rgba=[];return i=i.toLowerCase(),f(h,function(e,a){var o,r=a.re.exec(i),h=r&&a.parse(r),l=a.space||"rgba";return h?(o=s[l](h),s[u[l].cache]=o[u[l].cache],n=s._rgba=o._rgba,!1):t}),n.length?("0,0,0,0"===n.join()&&e.extend(n,a.transparent),s):a[i]}function n(e,t,i){return i=(i+1)%1,1>6*i?e+6*(t-e)*i:1>2*i?t:2>3*i?e+6*(t-e)*(2/3-i):e}var a,o="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",r=/^([\-+])=\s*(\d+\.?\d*)/,h=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(e){return[e[1],e[2],e[3],e[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(e){return[2.55*e[1],2.55*e[2],2.55*e[3],e[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(e){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(e){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(e){return[e[1],e[2]/100,e[3]/100,e[4]]}}],l=e.Color=function(t,i,s,n){return new e.Color.fn.parse(t,i,s,n)},u={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},d={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},c=l.support={},p=e("

    ")[0],f=e.each;p.style.cssText="background-color:rgba(1,1,1,.5)",c.rgba=p.style.backgroundColor.indexOf("rgba")>-1,f(u,function(e,t){t.cache="_"+e,t.props.alpha={idx:3,type:"percent",def:1}}),l.fn=e.extend(l.prototype,{parse:function(n,o,r,h){if(n===t)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=e(n).css(o),o=t);var d=this,c=e.type(n),p=this._rgba=[];return o!==t&&(n=[n,o,r,h],c="array"),"string"===c?this.parse(s(n)||a._default):"array"===c?(f(u.rgba.props,function(e,t){p[t.idx]=i(n[t.idx],t)}),this):"object"===c?(n instanceof l?f(u,function(e,t){n[t.cache]&&(d[t.cache]=n[t.cache].slice())}):f(u,function(t,s){var a=s.cache;f(s.props,function(e,t){if(!d[a]&&s.to){if("alpha"===e||null==n[e])return;d[a]=s.to(d._rgba)}d[a][t.idx]=i(n[e],t,!0)}),d[a]&&0>e.inArray(null,d[a].slice(0,3))&&(d[a][3]=1,s.from&&(d._rgba=s.from(d[a])))}),this):t},is:function(e){var i=l(e),s=!0,n=this;return f(u,function(e,a){var o,r=i[a.cache];return r&&(o=n[a.cache]||a.to&&a.to(n._rgba)||[],f(a.props,function(e,i){return null!=r[i.idx]?s=r[i.idx]===o[i.idx]:t})),s}),s},_space:function(){var e=[],t=this;return f(u,function(i,s){t[s.cache]&&e.push(i)}),e.pop()},transition:function(e,t){var s=l(e),n=s._space(),a=u[n],o=0===this.alpha()?l("transparent"):this,r=o[a.cache]||a.to(o._rgba),h=r.slice();return s=s[a.cache],f(a.props,function(e,n){var a=n.idx,o=r[a],l=s[a],u=d[n.type]||{};null!==l&&(null===o?h[a]=l:(u.mod&&(l-o>u.mod/2?o+=u.mod:o-l>u.mod/2&&(o-=u.mod)),h[a]=i((l-o)*t+o,n)))}),this[n](h)},blend:function(t){if(1===this._rgba[3])return this;var i=this._rgba.slice(),s=i.pop(),n=l(t)._rgba;return l(e.map(i,function(e,t){return(1-s)*n[t]+s*e}))},toRgbaString:function(){var t="rgba(",i=e.map(this._rgba,function(e,t){return null==e?t>2?1:0:e});return 1===i[3]&&(i.pop(),t="rgb("),t+i.join()+")"},toHslaString:function(){var t="hsla(",i=e.map(this.hsla(),function(e,t){return null==e&&(e=t>2?1:0),t&&3>t&&(e=Math.round(100*e)+"%"),e});return 1===i[3]&&(i.pop(),t="hsl("),t+i.join()+")"},toHexString:function(t){var i=this._rgba.slice(),s=i.pop();return t&&i.push(~~(255*s)),"#"+e.map(i,function(e){return e=(e||0).toString(16),1===e.length?"0"+e:e}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}}),l.fn.parse.prototype=l.fn,u.hsla.to=function(e){if(null==e[0]||null==e[1]||null==e[2])return[null,null,null,e[3]];var t,i,s=e[0]/255,n=e[1]/255,a=e[2]/255,o=e[3],r=Math.max(s,n,a),h=Math.min(s,n,a),l=r-h,u=r+h,d=.5*u;return t=h===r?0:s===r?60*(n-a)/l+360:n===r?60*(a-s)/l+120:60*(s-n)/l+240,i=0===l?0:.5>=d?l/u:l/(2-u),[Math.round(t)%360,i,d,null==o?1:o]},u.hsla.from=function(e){if(null==e[0]||null==e[1]||null==e[2])return[null,null,null,e[3]];var t=e[0]/360,i=e[1],s=e[2],a=e[3],o=.5>=s?s*(1+i):s+i-s*i,r=2*s-o;return[Math.round(255*n(r,o,t+1/3)),Math.round(255*n(r,o,t)),Math.round(255*n(r,o,t-1/3)),a]},f(u,function(s,n){var a=n.props,o=n.cache,h=n.to,u=n.from;l.fn[s]=function(s){if(h&&!this[o]&&(this[o]=h(this._rgba)),s===t)return this[o].slice();var n,r=e.type(s),d="array"===r||"object"===r?s:arguments,c=this[o].slice();return f(a,function(e,t){var s=d["object"===r?e:t.idx];null==s&&(s=c[t.idx]),c[t.idx]=i(s,t)}),u?(n=l(u(c)),n[o]=c,n):l(c)},f(a,function(t,i){l.fn[t]||(l.fn[t]=function(n){var a,o=e.type(n),h="alpha"===t?this._hsla?"hsla":"rgba":s,l=this[h](),u=l[i.idx];return"undefined"===o?u:("function"===o&&(n=n.call(this,u),o=e.type(n)),null==n&&i.empty?this:("string"===o&&(a=r.exec(n),a&&(n=u+parseFloat(a[2])*("+"===a[1]?1:-1))),l[i.idx]=n,this[h](l)))})})}),l.hook=function(t){var i=t.split(" ");f(i,function(t,i){e.cssHooks[i]={set:function(t,n){var a,o,r="";if("transparent"!==n&&("string"!==e.type(n)||(a=s(n)))){if(n=l(a||n),!c.rgba&&1!==n._rgba[3]){for(o="backgroundColor"===i?t.parentNode:t;(""===r||"transparent"===r)&&o&&o.style;)try{r=e.css(o,"backgroundColor"),o=o.parentNode}catch(h){}n=n.blend(r&&"transparent"!==r?r:"_default")}n=n.toRgbaString()}try{t.style[i]=n}catch(h){}}},e.fx.step[i]=function(t){t.colorInit||(t.start=l(t.elem,i),t.end=l(t.end),t.colorInit=!0),e.cssHooks[i].set(t.elem,t.start.transition(t.end,t.pos))}})},l.hook(o),e.cssHooks.borderColor={expand:function(e){var t={};return f(["Top","Right","Bottom","Left"],function(i,s){t["border"+s+"Color"]=e}),t}},a=e.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(b),function(){function t(t){var i,s,n=t.ownerDocument.defaultView?t.ownerDocument.defaultView.getComputedStyle(t,null):t.currentStyle,a={};if(n&&n.length&&n[0]&&n[n[0]])for(s=n.length;s--;)i=n[s],"string"==typeof n[i]&&(a[e.camelCase(i)]=n[i]);else for(i in n)"string"==typeof n[i]&&(a[i]=n[i]);return a}function i(t,i){var s,a,o={};for(s in i)a=i[s],t[s]!==a&&(n[s]||(e.fx.step[s]||!isNaN(parseFloat(a)))&&(o[s]=a));return o}var s=["add","remove","toggle"],n={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};e.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(t,i){e.fx.step[i]=function(e){("none"!==e.end&&!e.setAttr||1===e.pos&&!e.setAttr)&&(b.style(e.elem,i,e.end),e.setAttr=!0)}}),e.fn.addBack||(e.fn.addBack=function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}),e.effects.animateClass=function(n,a,o,r){var h=e.speed(a,o,r);return this.queue(function(){var a,o=e(this),r=o.attr("class")||"",l=h.children?o.find("*").addBack():o;l=l.map(function(){var i=e(this);return{el:i,start:t(this)}}),a=function(){e.each(s,function(e,t){n[t]&&o[t+"Class"](n[t])})},a(),l=l.map(function(){return this.end=t(this.el[0]),this.diff=i(this.start,this.end),this}),o.attr("class",r),l=l.map(function(){var t=this,i=e.Deferred(),s=e.extend({},h,{queue:!1,complete:function(){i.resolve(t)}});return this.el.animate(this.diff,s),i.promise()}),e.when.apply(e,l.get()).done(function(){a(),e.each(arguments,function(){var t=this.el;e.each(this.diff,function(e){t.css(e,"")})}),h.complete.call(o[0])})})},e.fn.extend({addClass:function(t){return function(i,s,n,a){return s?e.effects.animateClass.call(this,{add:i},s,n,a):t.apply(this,arguments)}}(e.fn.addClass),removeClass:function(t){return function(i,s,n,a){return arguments.length>1?e.effects.animateClass.call(this,{remove:i},s,n,a):t.apply(this,arguments)}}(e.fn.removeClass),toggleClass:function(t){return function(i,s,n,a,o){return"boolean"==typeof s||void 0===s?n?e.effects.animateClass.call(this,s?{add:i}:{remove:i},n,a,o):t.apply(this,arguments):e.effects.animateClass.call(this,{toggle:i},s,n,a)}}(e.fn.toggleClass),switchClass:function(t,i,s,n,a){return e.effects.animateClass.call(this,{add:i,remove:t},s,n,a)}})}(),function(){function t(t,i,s,n){return e.isPlainObject(t)&&(i=t,t=t.effect),t={effect:t},null==i&&(i={}),e.isFunction(i)&&(n=i,s=null,i={}),("number"==typeof i||e.fx.speeds[i])&&(n=s,s=i,i={}),e.isFunction(s)&&(n=s,s=null),i&&e.extend(t,i),s=s||i.duration,t.duration=e.fx.off?0:"number"==typeof s?s:s in e.fx.speeds?e.fx.speeds[s]:e.fx.speeds._default,t.complete=n||i.complete,t}function i(t){return!t||"number"==typeof t||e.fx.speeds[t]?!0:"string"!=typeof t||e.effects.effect[t]?e.isFunction(t)?!0:"object"!=typeof t||t.effect?!1:!0:!0}e.extend(e.effects,{version:"1.11.2",save:function(e,t){for(var i=0;t.length>i;i++)null!==t[i]&&e.data(y+t[i],e[0].style[t[i]])},restore:function(e,t){var i,s;for(s=0;t.length>s;s++)null!==t[s]&&(i=e.data(y+t[s]),void 0===i&&(i=""),e.css(t[s],i))},setMode:function(e,t){return"toggle"===t&&(t=e.is(":hidden")?"show":"hide"),t},getBaseline:function(e,t){var i,s;switch(e[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=e[0]/t.height}switch(e[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=e[1]/t.width}return{x:s,y:i}},createWrapper:function(t){if(t.parent().is(".ui-effects-wrapper"))return t.parent();var i={width:t.outerWidth(!0),height:t.outerHeight(!0),"float":t.css("float")},s=e("

    ").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),n={width:t.width(),height:t.height()},a=document.activeElement;try{a.id}catch(o){a=document.body}return t.wrap(s),(t[0]===a||e.contains(t[0],a))&&e(a).focus(),s=t.parent(),"static"===t.css("position")?(s.css({position:"relative"}),t.css({position:"relative"})):(e.extend(i,{position:t.css("position"),zIndex:t.css("z-index")}),e.each(["top","left","bottom","right"],function(e,s){i[s]=t.css(s),isNaN(parseInt(i[s],10))&&(i[s]="auto")}),t.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),t.css(n),s.css(i).show()},removeWrapper:function(t){var i=document.activeElement;return t.parent().is(".ui-effects-wrapper")&&(t.parent().replaceWith(t),(t[0]===i||e.contains(t[0],i))&&e(i).focus()),t},setTransition:function(t,i,s,n){return n=n||{},e.each(i,function(e,i){var a=t.cssUnit(i);a[0]>0&&(n[i]=a[0]*s+a[1])}),n}}),e.fn.extend({effect:function(){function i(t){function i(){e.isFunction(a)&&a.call(n[0]),e.isFunction(t)&&t()}var n=e(this),a=s.complete,r=s.mode;(n.is(":hidden")?"hide"===r:"show"===r)?(n[r](),i()):o.call(n[0],s,i)}var s=t.apply(this,arguments),n=s.mode,a=s.queue,o=e.effects.effect[s.effect];return e.fx.off||!o?n?this[n](s.duration,s.complete):this.each(function(){s.complete&&s.complete.call(this)}):a===!1?this.each(i):this.queue(a||"fx",i)},show:function(e){return function(s){if(i(s))return e.apply(this,arguments);var n=t.apply(this,arguments);return n.mode="show",this.effect.call(this,n)}}(e.fn.show),hide:function(e){return function(s){if(i(s))return e.apply(this,arguments); +var n=t.apply(this,arguments);return n.mode="hide",this.effect.call(this,n)}}(e.fn.hide),toggle:function(e){return function(s){if(i(s)||"boolean"==typeof s)return e.apply(this,arguments);var n=t.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)}}(e.fn.toggle),cssUnit:function(t){var i=this.css(t),s=[];return e.each(["em","px","%","pt"],function(e,t){i.indexOf(t)>0&&(s=[parseFloat(i),t])}),s}})}(),function(){var t={};e.each(["Quad","Cubic","Quart","Quint","Expo"],function(e,i){t[i]=function(t){return Math.pow(t,e+2)}}),e.extend(t,{Sine:function(e){return 1-Math.cos(e*Math.PI/2)},Circ:function(e){return 1-Math.sqrt(1-e*e)},Elastic:function(e){return 0===e||1===e?e:-Math.pow(2,8*(e-1))*Math.sin((80*(e-1)-7.5)*Math.PI/15)},Back:function(e){return e*e*(3*e-2)},Bounce:function(e){for(var t,i=4;((t=Math.pow(2,--i))-1)/11>e;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*t-2)/22-e,2)}}),e.each(t,function(t,i){e.easing["easeIn"+t]=i,e.easing["easeOut"+t]=function(e){return 1-i(1-e)},e.easing["easeInOut"+t]=function(e){return.5>e?i(2*e)/2:1-i(-2*e+2)/2}})}(),e.effects,e.effects.effect.blind=function(t,i){var s,n,a,o=e(this),r=/up|down|vertical/,h=/up|left|vertical|horizontal/,l=["position","top","bottom","left","right","height","width"],u=e.effects.setMode(o,t.mode||"hide"),d=t.direction||"up",c=r.test(d),p=c?"height":"width",f=c?"top":"left",m=h.test(d),g={},v="show"===u;o.parent().is(".ui-effects-wrapper")?e.effects.save(o.parent(),l):e.effects.save(o,l),o.show(),s=e.effects.createWrapper(o).css({overflow:"hidden"}),n=s[p](),a=parseFloat(s.css(f))||0,g[p]=v?n:0,m||(o.css(c?"bottom":"right",0).css(c?"top":"left","auto").css({position:"absolute"}),g[f]=v?a:n+a),v&&(s.css(p,0),m||s.css(f,a+n)),s.animate(g,{duration:t.duration,easing:t.easing,queue:!1,complete:function(){"hide"===u&&o.hide(),e.effects.restore(o,l),e.effects.removeWrapper(o),i()}})},e.effects.effect.bounce=function(t,i){var s,n,a,o=e(this),r=["position","top","bottom","left","right","height","width"],h=e.effects.setMode(o,t.mode||"effect"),l="hide"===h,u="show"===h,d=t.direction||"up",c=t.distance,p=t.times||5,f=2*p+(u||l?1:0),m=t.duration/f,g=t.easing,v="up"===d||"down"===d?"top":"left",y="up"===d||"left"===d,b=o.queue(),_=b.length;for((u||l)&&r.push("opacity"),e.effects.save(o,r),o.show(),e.effects.createWrapper(o),c||(c=o["top"===v?"outerHeight":"outerWidth"]()/3),u&&(a={opacity:1},a[v]=0,o.css("opacity",0).css(v,y?2*-c:2*c).animate(a,m,g)),l&&(c/=Math.pow(2,p-1)),a={},a[v]=0,s=0;p>s;s++)n={},n[v]=(y?"-=":"+=")+c,o.animate(n,m,g).animate(a,m,g),c=l?2*c:c/2;l&&(n={opacity:0},n[v]=(y?"-=":"+=")+c,o.animate(n,m,g)),o.queue(function(){l&&o.hide(),e.effects.restore(o,r),e.effects.removeWrapper(o),i()}),_>1&&b.splice.apply(b,[1,0].concat(b.splice(_,f+1))),o.dequeue()},e.effects.effect.clip=function(t,i){var s,n,a,o=e(this),r=["position","top","bottom","left","right","height","width"],h=e.effects.setMode(o,t.mode||"hide"),l="show"===h,u=t.direction||"vertical",d="vertical"===u,c=d?"height":"width",p=d?"top":"left",f={};e.effects.save(o,r),o.show(),s=e.effects.createWrapper(o).css({overflow:"hidden"}),n="IMG"===o[0].tagName?s:o,a=n[c](),l&&(n.css(c,0),n.css(p,a/2)),f[c]=l?a:0,f[p]=l?0:a/2,n.animate(f,{queue:!1,duration:t.duration,easing:t.easing,complete:function(){l||o.hide(),e.effects.restore(o,r),e.effects.removeWrapper(o),i()}})},e.effects.effect.drop=function(t,i){var s,n=e(this),a=["position","top","bottom","left","right","opacity","height","width"],o=e.effects.setMode(n,t.mode||"hide"),r="show"===o,h=t.direction||"left",l="up"===h||"down"===h?"top":"left",u="up"===h||"left"===h?"pos":"neg",d={opacity:r?1:0};e.effects.save(n,a),n.show(),e.effects.createWrapper(n),s=t.distance||n["top"===l?"outerHeight":"outerWidth"](!0)/2,r&&n.css("opacity",0).css(l,"pos"===u?-s:s),d[l]=(r?"pos"===u?"+=":"-=":"pos"===u?"-=":"+=")+s,n.animate(d,{queue:!1,duration:t.duration,easing:t.easing,complete:function(){"hide"===o&&n.hide(),e.effects.restore(n,a),e.effects.removeWrapper(n),i()}})},e.effects.effect.explode=function(t,i){function s(){b.push(this),b.length===d*c&&n()}function n(){p.css({visibility:"visible"}),e(b).remove(),m||p.hide(),i()}var a,o,r,h,l,u,d=t.pieces?Math.round(Math.sqrt(t.pieces)):3,c=d,p=e(this),f=e.effects.setMode(p,t.mode||"hide"),m="show"===f,g=p.show().css("visibility","hidden").offset(),v=Math.ceil(p.outerWidth()/c),y=Math.ceil(p.outerHeight()/d),b=[];for(a=0;d>a;a++)for(h=g.top+a*y,u=a-(d-1)/2,o=0;c>o;o++)r=g.left+o*v,l=o-(c-1)/2,p.clone().appendTo("body").wrap("
    ").css({position:"absolute",visibility:"visible",left:-o*v,top:-a*y}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:v,height:y,left:r+(m?l*v:0),top:h+(m?u*y:0),opacity:m?0:1}).animate({left:r+(m?0:l*v),top:h+(m?0:u*y),opacity:m?1:0},t.duration||500,t.easing,s)},e.effects.effect.fade=function(t,i){var s=e(this),n=e.effects.setMode(s,t.mode||"toggle");s.animate({opacity:n},{queue:!1,duration:t.duration,easing:t.easing,complete:i})},e.effects.effect.fold=function(t,i){var s,n,a=e(this),o=["position","top","bottom","left","right","height","width"],r=e.effects.setMode(a,t.mode||"hide"),h="show"===r,l="hide"===r,u=t.size||15,d=/([0-9]+)%/.exec(u),c=!!t.horizFirst,p=h!==c,f=p?["width","height"]:["height","width"],m=t.duration/2,g={},v={};e.effects.save(a,o),a.show(),s=e.effects.createWrapper(a).css({overflow:"hidden"}),n=p?[s.width(),s.height()]:[s.height(),s.width()],d&&(u=parseInt(d[1],10)/100*n[l?0:1]),h&&s.css(c?{height:0,width:u}:{height:u,width:0}),g[f[0]]=h?n[0]:u,v[f[1]]=h?n[1]:0,s.animate(g,m,t.easing).animate(v,m,t.easing,function(){l&&a.hide(),e.effects.restore(a,o),e.effects.removeWrapper(a),i()})},e.effects.effect.highlight=function(t,i){var s=e(this),n=["backgroundImage","backgroundColor","opacity"],a=e.effects.setMode(s,t.mode||"show"),o={backgroundColor:s.css("backgroundColor")};"hide"===a&&(o.opacity=0),e.effects.save(s,n),s.show().css({backgroundImage:"none",backgroundColor:t.color||"#ffff99"}).animate(o,{queue:!1,duration:t.duration,easing:t.easing,complete:function(){"hide"===a&&s.hide(),e.effects.restore(s,n),i()}})},e.effects.effect.size=function(t,i){var s,n,a,o=e(this),r=["position","top","bottom","left","right","width","height","overflow","opacity"],h=["position","top","bottom","left","right","overflow","opacity"],l=["width","height","overflow"],u=["fontSize"],d=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],c=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],p=e.effects.setMode(o,t.mode||"effect"),f=t.restore||"effect"!==p,m=t.scale||"both",g=t.origin||["middle","center"],v=o.css("position"),y=f?r:h,b={height:0,width:0,outerHeight:0,outerWidth:0};"show"===p&&o.show(),s={height:o.height(),width:o.width(),outerHeight:o.outerHeight(),outerWidth:o.outerWidth()},"toggle"===t.mode&&"show"===p?(o.from=t.to||b,o.to=t.from||s):(o.from=t.from||("show"===p?b:s),o.to=t.to||("hide"===p?b:s)),a={from:{y:o.from.height/s.height,x:o.from.width/s.width},to:{y:o.to.height/s.height,x:o.to.width/s.width}},("box"===m||"both"===m)&&(a.from.y!==a.to.y&&(y=y.concat(d),o.from=e.effects.setTransition(o,d,a.from.y,o.from),o.to=e.effects.setTransition(o,d,a.to.y,o.to)),a.from.x!==a.to.x&&(y=y.concat(c),o.from=e.effects.setTransition(o,c,a.from.x,o.from),o.to=e.effects.setTransition(o,c,a.to.x,o.to))),("content"===m||"both"===m)&&a.from.y!==a.to.y&&(y=y.concat(u).concat(l),o.from=e.effects.setTransition(o,u,a.from.y,o.from),o.to=e.effects.setTransition(o,u,a.to.y,o.to)),e.effects.save(o,y),o.show(),e.effects.createWrapper(o),o.css("overflow","hidden").css(o.from),g&&(n=e.effects.getBaseline(g,s),o.from.top=(s.outerHeight-o.outerHeight())*n.y,o.from.left=(s.outerWidth-o.outerWidth())*n.x,o.to.top=(s.outerHeight-o.to.outerHeight)*n.y,o.to.left=(s.outerWidth-o.to.outerWidth)*n.x),o.css(o.from),("content"===m||"both"===m)&&(d=d.concat(["marginTop","marginBottom"]).concat(u),c=c.concat(["marginLeft","marginRight"]),l=r.concat(d).concat(c),o.find("*[width]").each(function(){var i=e(this),s={height:i.height(),width:i.width(),outerHeight:i.outerHeight(),outerWidth:i.outerWidth()};f&&e.effects.save(i,l),i.from={height:s.height*a.from.y,width:s.width*a.from.x,outerHeight:s.outerHeight*a.from.y,outerWidth:s.outerWidth*a.from.x},i.to={height:s.height*a.to.y,width:s.width*a.to.x,outerHeight:s.height*a.to.y,outerWidth:s.width*a.to.x},a.from.y!==a.to.y&&(i.from=e.effects.setTransition(i,d,a.from.y,i.from),i.to=e.effects.setTransition(i,d,a.to.y,i.to)),a.from.x!==a.to.x&&(i.from=e.effects.setTransition(i,c,a.from.x,i.from),i.to=e.effects.setTransition(i,c,a.to.x,i.to)),i.css(i.from),i.animate(i.to,t.duration,t.easing,function(){f&&e.effects.restore(i,l)})})),o.animate(o.to,{queue:!1,duration:t.duration,easing:t.easing,complete:function(){0===o.to.opacity&&o.css("opacity",o.from.opacity),"hide"===p&&o.hide(),e.effects.restore(o,y),f||("static"===v?o.css({position:"relative",top:o.to.top,left:o.to.left}):e.each(["top","left"],function(e,t){o.css(t,function(t,i){var s=parseInt(i,10),n=e?o.to.left:o.to.top;return"auto"===i?n+"px":s+n+"px"})})),e.effects.removeWrapper(o),i()}})},e.effects.effect.scale=function(t,i){var s=e(this),n=e.extend(!0,{},t),a=e.effects.setMode(s,t.mode||"effect"),o=parseInt(t.percent,10)||(0===parseInt(t.percent,10)?0:"hide"===a?0:100),r=t.direction||"both",h=t.origin,l={height:s.height(),width:s.width(),outerHeight:s.outerHeight(),outerWidth:s.outerWidth()},u={y:"horizontal"!==r?o/100:1,x:"vertical"!==r?o/100:1};n.effect="size",n.queue=!1,n.complete=i,"effect"!==a&&(n.origin=h||["middle","center"],n.restore=!0),n.from=t.from||("show"===a?{height:0,width:0,outerHeight:0,outerWidth:0}:l),n.to={height:l.height*u.y,width:l.width*u.x,outerHeight:l.outerHeight*u.y,outerWidth:l.outerWidth*u.x},n.fade&&("show"===a&&(n.from.opacity=0,n.to.opacity=1),"hide"===a&&(n.from.opacity=1,n.to.opacity=0)),s.effect(n)},e.effects.effect.puff=function(t,i){var s=e(this),n=e.effects.setMode(s,t.mode||"hide"),a="hide"===n,o=parseInt(t.percent,10)||150,r=o/100,h={height:s.height(),width:s.width(),outerHeight:s.outerHeight(),outerWidth:s.outerWidth()};e.extend(t,{effect:"scale",queue:!1,fade:!0,mode:n,complete:i,percent:a?o:100,from:a?h:{height:h.height*r,width:h.width*r,outerHeight:h.outerHeight*r,outerWidth:h.outerWidth*r}}),s.effect(t)},e.effects.effect.pulsate=function(t,i){var s,n=e(this),a=e.effects.setMode(n,t.mode||"show"),o="show"===a,r="hide"===a,h=o||"hide"===a,l=2*(t.times||5)+(h?1:0),u=t.duration/l,d=0,c=n.queue(),p=c.length;for((o||!n.is(":visible"))&&(n.css("opacity",0).show(),d=1),s=1;l>s;s++)n.animate({opacity:d},u,t.easing),d=1-d;n.animate({opacity:d},u,t.easing),n.queue(function(){r&&n.hide(),i()}),p>1&&c.splice.apply(c,[1,0].concat(c.splice(p,l+1))),n.dequeue()},e.effects.effect.shake=function(t,i){var s,n=e(this),a=["position","top","bottom","left","right","height","width"],o=e.effects.setMode(n,t.mode||"effect"),r=t.direction||"left",h=t.distance||20,l=t.times||3,u=2*l+1,d=Math.round(t.duration/u),c="up"===r||"down"===r?"top":"left",p="up"===r||"left"===r,f={},m={},g={},v=n.queue(),y=v.length;for(e.effects.save(n,a),n.show(),e.effects.createWrapper(n),f[c]=(p?"-=":"+=")+h,m[c]=(p?"+=":"-=")+2*h,g[c]=(p?"-=":"+=")+2*h,n.animate(f,d,t.easing),s=1;l>s;s++)n.animate(m,d,t.easing).animate(g,d,t.easing);n.animate(m,d,t.easing).animate(f,d/2,t.easing).queue(function(){"hide"===o&&n.hide(),e.effects.restore(n,a),e.effects.removeWrapper(n),i()}),y>1&&v.splice.apply(v,[1,0].concat(v.splice(y,u+1))),n.dequeue()},e.effects.effect.slide=function(t,i){var s,n=e(this),a=["position","top","bottom","left","right","width","height"],o=e.effects.setMode(n,t.mode||"show"),r="show"===o,h=t.direction||"left",l="up"===h||"down"===h?"top":"left",u="up"===h||"left"===h,d={};e.effects.save(n,a),n.show(),s=t.distance||n["top"===l?"outerHeight":"outerWidth"](!0),e.effects.createWrapper(n).css({overflow:"hidden"}),r&&n.css(l,u?isNaN(s)?"-"+s:-s:s),d[l]=(r?u?"+=":"-=":u?"-=":"+=")+s,n.animate(d,{queue:!1,duration:t.duration,easing:t.easing,complete:function(){"hide"===o&&n.hide(),e.effects.restore(n,a),e.effects.removeWrapper(n),i()}})},e.effects.effect.transfer=function(t,i){var s=e(this),n=e(t.to),a="fixed"===n.css("position"),o=e("body"),r=a?o.scrollTop():0,h=a?o.scrollLeft():0,l=n.offset(),u={top:l.top-r,left:l.left-h,height:n.innerHeight(),width:n.innerWidth()},d=s.offset(),c=e("
    ").appendTo(document.body).addClass(t.className).css({top:d.top-r,left:d.left-h,height:s.innerHeight(),width:s.innerWidth(),position:a?"fixed":"absolute"}).animate(u,t.duration,t.easing,function(){c.remove(),i()})}}); \ No newline at end of file diff --git a/plugins/uploader/js/uploader.js b/plugins/uploader/js/uploader.js new file mode 100644 index 0000000..5a81bec --- /dev/null +++ b/plugins/uploader/js/uploader.js @@ -0,0 +1,276 @@ +(function ( $ ) { + + $.fn.sed_uploader = function( options ) { + + var settings = $.extend({ + + sed_uploader : true, + sed_uploader_use_main : false, + sed_uploader_use_sortable : false, + sed_uploader_use_dragndrop : false, + sed_uploader_use_rotation : false, + sed_uploader_hide_on_exceed : true, + sed_uploader_hide_in_progress : false, + sed_uploader_attach_images : [], + sed_uploader_path : 'plugins/uploader', + sed_uploader_main_path : 'datas/users', + sed_uploader_thumbnail_path : 'datas/thumbs', + sed_uploader_file_delete_label : "", + sed_uploader_file_rotation_label : "", + sed_uploader_field_name : $(this).attr('id'), + sed_uploader_add_image : '', + sed_uploader_add_label : 'Browser for images', + sed_uploader_main_changed : "", + sed_uploader_finished : "", + sed_uploader_picture_deleted : "", + sed_uploader_maximum_uploads : 100, + sed_uploader_max_exceeded : "", + + }, options); + + var holdername = this; + + if ($(this).attr('sed_uploader') == 'on') { + var imageHolderId = '#'+$(this).attr('id'); + holdername = $(this).replaceWith(getHtml($(this).attr('id'), settings.sed_uploader_add_image, settings.sed_uploader_add_label, settings.sed_uploader_path)); + holdername = $("body").find(imageHolderId); + } + + jQuery.data(holdername, 'already_uploaded', 1); + jQuery.data(holdername, 'count', 0); + jQuery.data(holdername, 'counter', 0); + + if (settings.sed_uploader_attach_images.length == parseInt(settings.sed_uploader_maximum_uploads)) { + $(holdername).parent().find('.uploadButton').hide(); + $(holdername).parent().find('.uploadPfs').hide(); + jQuery.data(holdername, 'already_uploaded', 2); + } + + if (settings.sed_uploader_use_sortable) + { + $(holdername).sortable({ + update: function(event, ui) { + if (typeof settings.sed_uploader_rearranged == 'function') { + settings.sed_uploader_rearranged(); + } + changeMain(holdername, settings); + } + }); + + $("#"+holdername.attr("id") + "_to_clone").find(".file").css("cursor", "move"); + $("#"+holdername.attr("id") + "_to_clone").find(".multibox .file").css("cursor", "move"); + } + else + { + $("#"+holdername.attr("id") + "_to_clone").find(".file").css("cursor", "auto"); + $("#"+holdername.attr("id") + "_to_clone").find(".multibox .file").css("cursor", "auto"); + } + + $(holdername).disableSelection(); + + $(document).on("change", "."+$(holdername).attr("id")+"Input", function() { + if(settings.sed_uploader_hide_in_progress == true) { + if(parseInt(jQuery.data(holdername, 'currently_uploading')) == 1) return false; + jQuery.data(holdername, 'currently_uploading', 1); + $(holdername).parent().find('.uploadButton').hide(); + } + jQuery.data(holdername, 'count', 0); + sed_uploaderHandle(this.files,holdername,settings); + }); + + + for (i = 0; i < settings.sed_uploader_attach_images.length; i++) { + var image = settings.sed_uploader_attach_images[i]; + + var clone = $("#"+$(holdername).attr("id")+"_to_clone").find(".multibox").clone(); + $(holdername).append($(clone)); + $(clone).html("
    "+settings.sed_uploader_file_delete_label+"
    "); + $(clone).attr('id', image); + $(clone).attr('filename', image); + } + + if(settings.sed_uploader_attach_images.length > 0) { + changeMain(holdername, settings); + } + + $(holdername).on("click", ".picture_insert", function() { + if (CKEDITOR.instances['rpagetext']) + { + var html = '\"\"'; + CKEDITOR.instances['rpagetext'].insertHtml(html); + } + if (CKEDITOR.instances['newpagetext']) + { + var html = '\"\"'; + CKEDITOR.instances['newpagetext'].insertHtml(html); + } + if (CKEDITOR.instances['rstext']) + { + var html = '\"\"'; + CKEDITOR.instances['rstext'].insertHtml(html); + } + }); + + $(holdername).on("click", ".picture_delete", function() { + + jQuery.data(holdername, "already_uploaded", jQuery.data(holdername, "already_uploaded")-1); + + $.ajax({ + url: "plug/?ajx=uploader&upl_delete=" + encodeURIComponent($(this).parent().attr('filename')) + }); + + $(this).parent().fadeOut("slow", function() { + + $(this).remove(); + $(holdername).parent().find('.upl_errors').text(""); + + if(jQuery.data(holdername, "already_uploaded")-1 > 0) { + changeMain(holdername, settings); + } + + if(settings.sed_uploader_hide_on_exceed == true) { + $(holdername).parent().find('.uploadButton').show(); + } + }); + + if (typeof settings.sed_uploader_picture_deleted == 'function') { + settings.sed_uploader_picture_deleted($(this).parent().attr('filename')); + } + }); + + $(holdername).on("click", ".rotate_picture", function() { + var context = this; + + $.ajax({ + url: "plug/?ajx=uploader&upl_rotate=" + encodeURIComponent($(this).parent().attr('filename'))+"&upl_degree_lvl=" + $(this).closest('.rotate_picture').attr('degree-lvl') + }).done(function(file_name) { + $img = $('html,body').find("input[value^='"+file_name+"']").prev('img'); + if (parseInt($(context).closest('.rotate_picture').attr('degree-lvl')) > 3) { + $(context).closest('.rotate_picture').attr('degree-lvl', 1) + } else { + $(context).closest('.rotate_picture').attr('degree-lvl', parseInt($(context).closest('.rotate_picture').attr('degree-lvl'))+1) + } + $img.attr('src', $img.attr('src') +"?"+ new Date().getTime()); + }); + }); + + if (settings.sed_uploader_use_dragndrop) + { + var holder = document.getElementById($(holdername).attr("id")+"DDArea"); + holder.ondragover = function () { $(".uploadButton").addClass("DragAndDropHover"); return false; }; + holder.ondragend = function () { $(".uploadButton").removeClass("DragAndDropHover"); return false; }; + + holder.ondrop = function (e) { + $(".uploadButton").removeClass("DragAndDropHover"); + e.preventDefault(); + sed_uploaderHandle(e.dataTransfer.files, holdername, settings); + } + } + + }; + + function changeMain(holder, settings) { + if (settings.sed_uploader_use_main) + { + $(holder).find(".multibox").removeClass("main"); + $(holder).find(".multibox").first().addClass("main"); + + if (typeof settings.sed_uploader_main_changed == 'function') { + settings.sed_uploader_main_changed($(holder).find(".multibox").first().attr('filename')); + } + } + } + + function sed_uploaderHandle(files, holder, settings) { + var i = 0; + var msg_alert = false; + for(i=0; i settings.sed_uploader_maximum_uploads && (typeof settings.sed_uploader_max_exceeded == 'function')) { + if (msg_alert == false) settings.sed_uploader_max_exceeded(); + msg_alert = true; + if (settings.sed_uploader_hide_on_exceed == true) $(holder).closest('.uploadButton').hide(); + } + var re = /(?:\.([^.]+))?$/; + var ext = re.exec(files[i].name)[1].toLowerCase(); + + if((ext == 'jpg' || ext == 'jpeg' || ext == 'png' || ext == 'gif') && jQuery.data(holder, "already_uploaded") <= settings.sed_uploader_maximum_uploads) + { + var clone = $("#"+$(holder).attr("id")+"_to_clone").find(".multibox").clone(); + + $(holder).append($(clone)); + upload(files[i], clone, i, holder, settings); + jQuery.data(holder, "already_uploaded", jQuery.data(holder, "already_uploaded")+1); + jQuery.data(holder, "count", jQuery.data(holder, "count")+1); + } + } + } + + window.counter = 0; + function upload(file, clone, place, holder, settings) + { + if(settings.sed_uploader_hide_on_exceed == true && parseInt(jQuery.data(holder, 'already_uploaded')) == parseInt(settings.sed_uploader_maximum_uploads)) { + $(holder).parent().find('.uploadButton').hide(); + } + var xhr = new XMLHttpRequest(); + xhr.open("POST", "plug/?ajx=uploader&upl_filename="+encodeURIComponent(file.name), true); + xhr.send(file); + xhr.onreadystatechange = function() + { + var rotation_html = ""; + if (xhr.readyState == 4) + { + var response = JSON.parse(xhr.responseText); + if (response.error == "" || response.error == null) + { + if (settings.sed_uploader_use_rotation == true) { + rotation_html = "
    "+settings.sed_uploader_file_rotation_label+"
    "; + } + $(clone).html("
    "+settings.sed_uploader_file_delete_label+"
    "+rotation_html+" "); + $(clone).attr('id', response.filename); + $(clone).attr('filename', response.filename); + jQuery.data(holder, "counter", jQuery.data(holder, "counter")+1); + if(jQuery.data(holder, "count") == jQuery.data(holder, "counter")) + { + if (typeof settings.sed_uploader_finished == 'function') { + settings.sed_uploader_finished(); + } + changeMain(holder, settings); + jQuery.data(holder, "counter", 0); + if (settings.sed_uploader_hide_in_progress == true) { + jQuery.data(holder, 'currently_uploading', 0); + $(holder).parent().find('.uploadButton').show(); + } + } + } else { + $(clone).remove(); + $(holder).parent().find(".upl_errors").text(response.error); + } + } + } + } + +}( jQuery )); + +window.initialized = 0; + +function sed_uploaderLoad(name) { + $('.'+(name)+'Input').click(); + window.initialized++; +} + +function getHtml(name, add_image, add_label, path) +{ + return '
    loader
    \ +
    \ +
    \ +
    \ +
    \ + \ +

    '+add_label+'\ +
    \ + \ +
    \ +
    \ +
    '; +} diff --git a/plugins/uploader/lang/uploader.en.lang.php b/plugins/uploader/lang/uploader.en.lang.php new file mode 100644 index 0000000..85f00aa --- /dev/null +++ b/plugins/uploader/lang/uploader.en.lang.php @@ -0,0 +1,22 @@ + \ No newline at end of file diff --git a/plugins/uploader/lang/uploader.ru.lang.php b/plugins/uploader/lang/uploader.ru.lang.php new file mode 100644 index 0000000..4d0afc1 --- /dev/null +++ b/plugins/uploader/lang/uploader.ru.lang.php @@ -0,0 +1,22 @@ + \ No newline at end of file diff --git a/plugins/uploader/uploader.admin.page.structure.edit.first.php b/plugins/uploader/uploader.admin.page.structure.edit.first.php new file mode 100644 index 0000000..3a00138 --- /dev/null +++ b/plugins/uploader/uploader.admin.page.structure.edit.first.php @@ -0,0 +1,39 @@ + 0) { + foreach ($imageuploader as $imagename) { + $rextra_arr[] = sed_import($imagename, 'D', 'TXT'); + } + $_POST[$rextra] = implode(';', $rextra_arr); +} diff --git a/plugins/uploader/uploader.admin.page.structure.edit.tags.php b/plugins/uploader/uploader.admin.page.structure.edit.tags.php new file mode 100644 index 0000000..81d03a5 --- /dev/null +++ b/plugins/uploader/uploader.admin.page.structure.edit.tags.php @@ -0,0 +1,76 @@ + 0) ? "sed_uploader_attach_images: [" . $preload_images . "]," : ""; +} + +$uploader->assign(array( + "UPLOADER_PRELOAD_IMAGES" => $preload_images, + "UPLOADER_PRELOAD_USE_SORTABLE" => $use_sortable, + "UPLOADER_PRELOAD_USE_DRAGNDROP" => $use_dragndrop, + "UPLOADER_PRELOAD_USE_ROTATION" => $use_rotation, + "UPLOADER_PRELOAD_MAXIMUM_UPLOADS" => 1, + "UPLOADER_PRELOAD_USERID" => $usr['id'], + "UPLOADER_PRELOAD_ACTION" => 'savestructure', + "UPLOADER_PRELOAD_EXTRA" => $extraslot, + "UPLOADER_PRELOAD_ISMODAL" => ($cfg['enablemodal']) ? 1 : 0 +)); + +$uploader->parse("UPLOADER"); + +$t->assign("STRUCTURE_UPDATE_THUMB", "
    "); + +$out['uploader_footer_admin'] = ""; +$out['uploader_footer_admin'] .= $uploader->text("UPLOADER"); //в подвал diff --git a/plugins/uploader/uploader.ajax.php b/plugins/uploader/uploader.ajax.php new file mode 100644 index 0000000..562b67d --- /dev/null +++ b/plugins/uploader/uploader.ajax.php @@ -0,0 +1,196 @@ + $maxtotal * 1024) || ($u_size > ($maxfile * 1024))) { + $disp_errors = $L['pfs_filetoobigorext']; + unlink($cfg['pfs_dir'] . $filename); + } else { + $u_size = filesize($cfg['pfs_dir'] . $filename); + + $u_sqlname = $filename; + $u_title = $filename; + + @chmod($cfg['pfs_dir'] . $filename, 0644); + + $folder_title = $L[date('F')] . " " . date('Y'); + + $sql = sed_sql_query("SELECT pff_id FROM $db_pfs_folders WHERE pff_userid = '" . $usr['id'] . "' AND pff_title = '" . $folder_title . "' LIMIT 1"); + if (sed_sql_numrows($sql) > 0) { + $folderid = sed_sql_result($sql, 0, "pff_id"); + } else { + $sql = sed_sql_query("INSERT INTO $db_pfs_folders + (pff_userid, + pff_title, + pff_date, + pff_updated, + pff_desc, + pff_type, + pff_count) + VALUES + (" . (int)$usr['id'] . ", + '" . sed_sql_prep($folder_title) . "', + " . (int)$sys['now'] . ", + " . (int)$sys['now'] . ", + '', + 0, + 0)"); + $folderid = sed_sql_insertid(); + } + + $sql = sed_sql_query("INSERT INTO $db_pfs + (pfs_userid, + pfs_date, + pfs_file, + pfs_extension, + pfs_folderid, + pfs_title, + pfs_desc, + pfs_size, + pfs_count) + VALUES + (" . (int)$usr['id'] . ", + " . (int)$sys['now_offset'] . ", + '" . sed_sql_prep($u_sqlname) . "', + '" . sed_sql_prep($f_extension) . "', + " . (int)$folderid . ", + '" . sed_sql_prep($u_title) . "', + '', + " . (int)$u_size . ", + 0) "); + + $sql = sed_sql_query("UPDATE $db_pfs_folders SET pff_updated='" . $sys['now'] . "' WHERE pff_id='$folderid'"); + sed_sm_createthumb($cfg['pfs_dir'] . $filename, $cfg['th_dir'] . $filename, $cfg['th_x'], $cfg['th_y'], $cfg['th_jpeg_quality'], "resize", TRUE); + } +} + +$res = new stdClass; +$res->filename = $filename; +$res->error = $disp_errors; +header("Content-type: application/json; charset=UTF-8"); +header("Cache-Control: must-revalidate"); +header("Pragma: no-cache"); +header("Expires: -1"); +print json_encode($res); diff --git a/plugins/uploader/uploader.header.php b/plugins/uploader/uploader.header.php new file mode 100644 index 0000000..fd9df74 --- /dev/null +++ b/plugins/uploader/uploader.header.php @@ -0,0 +1,38 @@ + 0) { + $out['uploader_header'] = ""; + $t->assign("HEADER_UPLOADER", $out['uploader_header']); +} diff --git a/plugins/uploader/uploader.list.loop.php b/plugins/uploader/uploader.list.loop.php new file mode 100644 index 0000000..bb8c370 --- /dev/null +++ b/plugins/uploader/uploader.list.loop.php @@ -0,0 +1,31 @@ + 0) { + foreach ($imageuploader as $imagename) { + $newpageextra_arr[] = sed_import($imagename, 'D', 'TXT'); + } + $_POST[$newpageextra] = implode(';', $newpageextra_arr); +} diff --git a/plugins/uploader/uploader.page.add.tags.php b/plugins/uploader/uploader.page.add.tags.php new file mode 100644 index 0000000..254a581 --- /dev/null +++ b/plugins/uploader/uploader.page.add.tags.php @@ -0,0 +1,82 @@ + 0) ? "sed_uploader_attach_images: [" . $preload_images . "]," : ""; +} + +$uploader->assign(array( + "UPLOADER_PRELOAD_IMAGES" => $preload_images, + "UPLOADER_PRELOAD_USE_SORTABLE" => $use_sortable, + "UPLOADER_PRELOAD_USE_DRAGNDROP" => $use_dragndrop, + "UPLOADER_PRELOAD_USE_ROTATION" => $use_rotation, + "UPLOADER_PRELOAD_MAXIMUM_UPLOADS" => $maximum_uploads, + "UPLOADER_PRELOAD_USERID" => $usr['id'], + "UPLOADER_PRELOAD_ACTION" => 'newpage', + "UPLOADER_PRELOAD_EXTRA" => $newpageextra, + "UPLOADER_PRELOAD_ISMODAL" => ($cfg['enablemodal']) ? 1 : 0 +)); + +$uploader->parse("UPLOADER"); + +$t->assign("PAGEADD_FORM_" . mb_strtoupper($extraslot), "
    "); + +$out['uploader_footer'] = ""; +$out['uploader_footer'] .= $uploader->text("UPLOADER"); //in footer + +$out['uploader_footer_admin'] = ""; +$out['uploader_footer_admin'] .= $uploader->text("UPLOADER"); //in footer diff --git a/plugins/uploader/uploader.page.edit.first.php b/plugins/uploader/uploader.page.edit.first.php new file mode 100644 index 0000000..16d3043 --- /dev/null +++ b/plugins/uploader/uploader.page.edit.first.php @@ -0,0 +1,42 @@ + 0) { + foreach ($imageuploader as $imagename) { + $rpageextra_arr[] = sed_import($imagename, 'D', 'TXT'); + } + $_POST[$rpageextra] = implode(';', $rpageextra_arr); +} diff --git a/plugins/uploader/uploader.page.edit.tags.php b/plugins/uploader/uploader.page.edit.tags.php new file mode 100644 index 0000000..066d174 --- /dev/null +++ b/plugins/uploader/uploader.page.edit.tags.php @@ -0,0 +1,84 @@ + 0) ? "sed_uploader_attach_images: [" . $preload_images . "]," : ""; +} + +$uploader->assign(array( + "UPLOADER_PRELOAD_IMAGES" => $preload_images, + "UPLOADER_PRELOAD_USE_SORTABLE" => $use_sortable, + "UPLOADER_PRELOAD_USE_DRAGNDROP" => $use_dragndrop, + "UPLOADER_PRELOAD_USE_ROTATION" => $use_rotation, + "UPLOADER_PRELOAD_MAXIMUM_UPLOADS" => $maximum_uploads, + "UPLOADER_PRELOAD_USERID" => $usr['id'], + "UPLOADER_PRELOAD_ACTION" => 'updatepage', + "UPLOADER_PRELOAD_EXTRA" => $rpageextra, + "UPLOADER_PRELOAD_ISMODAL" => ($cfg['enablemodal']) ? 1 : 0 +)); + +$uploader->parse("UPLOADER"); + +$t->assign("PAGEEDIT_FORM_" . mb_strtoupper($extraslot), "
    "); + +$out['uploader_footer'] = ""; +$out['uploader_footer'] .= $uploader->text("UPLOADER"); //in footer + +$out['uploader_footer_admin'] = ""; +$out['uploader_footer_admin'] .= $uploader->text("UPLOADER"); //in footer diff --git a/plugins/uploader/uploader.page.tags.php b/plugins/uploader/uploader.page.tags.php new file mode 100644 index 0000000..270d33b --- /dev/null +++ b/plugins/uploader/uploader.page.tags.php @@ -0,0 +1,31 @@ +" . $out['ic_pastefile'] . "
    "; + $add_thumbnail = ""; + $add_image = ""; + $pfs_icon = "\"""; +} diff --git a/plugins/uploader/uploader.pfs.stndl.php b/plugins/uploader/uploader.pfs.stndl.php new file mode 100644 index 0000000..2f73036 --- /dev/null +++ b/plugins/uploader/uploader.pfs.stndl.php @@ -0,0 +1,48 @@ + + + +"; diff --git a/plugins/uploader/uploader.setup.php b/plugins/uploader/uploader.setup.php new file mode 100644 index 0000000..c17a6be --- /dev/null +++ b/plugins/uploader/uploader.setup.php @@ -0,0 +1,48 @@ + + + \ No newline at end of file diff --git a/plugins/whosonline/img/blank.gif b/plugins/whosonline/img/blank.gif new file mode 100644 index 0000000..52e53eb Binary files /dev/null and b/plugins/whosonline/img/blank.gif differ diff --git a/plugins/whosonline/lang/whosonline.en.lang.php b/plugins/whosonline/lang/whosonline.en.lang.php new file mode 100644 index 0000000..1215215 --- /dev/null +++ b/plugins/whosonline/lang/whosonline.en.lang.php @@ -0,0 +1,24 @@ +parse("MAIN.PLUGIN_WHOSONLINE_HEAD_ONLINE"); +} + +$t->assign(array( + "PLUGIN_WHOSONLINE_MOST_ONLINE" => $maxusers, + "PLUGIN_WHOSONLINE_TOTAL_VISITORS" => $total1, + "PLUGIN_WHOSONLINE_THERESCURRENTLY" => $total2 +)); + +while ($row = sed_sql_fetchassoc($sql1)) { + if ($cfg_showavatars) { + $user_avatar = ""; + $user_avatar .= (!empty($row['user_avatar'])) ? "\"\"" : "\"\""; + } + + if ($usr['isadmin']) { + $sublock = (!empty($row['online_subloc'])) ? " " . $cfg['separator'] . " " . sed_cc($row['online_subloc']) : ''; + $t->assign(array( + "PLUGIN_WHOSONLINE_ROW_ONLINE_LOCATION" => $L[$row['online_location']] . $sublock, + "PLUGIN_WHOSONLINE_ROW_ONLINE_IP" => $row['online_ip'] + )); + $t->parse("MAIN.PLUGIN_WHOSONLINE_USERS_ROW.PLUGIN_WHOSONLINE_USERS_ROW_ONLINE"); + } + + $t->assign(array( + "PLUGIN_WHOSONLINE_ROW_USER" => sed_build_user($row['online_userid'], sed_cc($row['online_name'])), + "PLUGIN_WHOSONLINE_ROW_AVATAR" => $user_avatar, + "PLUGIN_WHOSONLINE_ROW_MAINGRP_URL" => sed_url('users', 'g=' . $row['user_maingrp']), + "PLUGIN_WHOSONLINE_ROW_MAINGRP_TITLE" => $sed_groups[$row['user_maingrp']]['title'], + "PLUGIN_WHOSONLINE_ROW_MAINGRP" => sed_build_group($row['user_maingrp']), + "PLUGIN_WHOSONLINE_ROW_MAINGRPID" => $row['user_maingrp'], + "PLUGIN_WHOSONLINE_ROW_MAINGRPSTARS" => sed_build_stars($sed_groups[$row['user_maingrp']]['level']), + "PLUGIN_WHOSONLINE_ROW_MAINGRPICON" => sed_build_userimage($sed_groups[$row['user_maingrp']]['icon']), + "PLUGIN_WHOSONLINE_ROW_LASTSEEN" => sed_build_timegap($row['online_lastseen'], $sys['now']), + "PLUGIN_WHOSONLINE_ROW_GROUPS" => sed_build_groupsms($row['user_id'], FALSE, $row['user_maingrp']), + "PLUGIN_WHOSONLINE_ROW_COUNTRY" => sed_build_country($row['user_country']), + "PLUGIN_WHOSONLINE_ROW_COUNTRYFLAG" => sed_build_flag($row['user_country']) + )); + + $t->parse("MAIN.PLUGIN_WHOSONLINE_USERS_ROW"); +} + +while ($row = sed_sql_fetchassoc($sql2)) { + $visitornum++; + $sublock = (!empty($row['online_subloc'])) ? " " . $cfg['separator'] . " " . sed_cc($row['online_subloc']) : ''; + + if ($usr['isadmin']) { + $t->assign(array( + "PLUGIN_WHOSONLINE_ROW_ONLINE_LOCATION" => $L[$row['online_location']] . $sublock, + "PLUGIN_WHOSONLINE_ROW_ONLINE_IP" => $row['online_ip'] + )); + $t->parse("MAIN.PLUGIN_WHOSONLINE_GUESTS_ROW.PLUGIN_WHOSONLINE_GUESTS_ROW_ONLINE"); + } + + $t->assign(array( + "PLUGIN_WHOSONLINE_ROW_USER" => $L['plu_visitor'] . " #" . $visitornum, + "PLUGIN_WHOSONLINE_ROW_LASTSEEN" => sed_build_timegap($row['online_lastseen'], $sys['now']) + )); + + $t->parse("MAIN.PLUGIN_WHOSONLINE_GUESTS_ROW"); +} + +$t->assign(array( + "PLUGIN_WHOSONLINE_TITLE" => $L['plu_title'], + "PLUGIN_WHOSONLINE_URL" => sed_url("plug", "e=whosonline"), + "PLUGIN_WHOSONLINE_BREADCRUMBS" => sed_breadcrumbs($urlpaths) +)); diff --git a/plugins/whosonline/whosonline.png b/plugins/whosonline/whosonline.png new file mode 100644 index 0000000..317b8c5 Binary files /dev/null and b/plugins/whosonline/whosonline.png differ diff --git a/plugins/whosonline/whosonline.setup.php b/plugins/whosonline/whosonline.setup.php new file mode 100644 index 0000000..37c2f57 --- /dev/null +++ b/plugins/whosonline/whosonline.setup.php @@ -0,0 +1,37 @@ + + + \ No newline at end of file diff --git a/skins/sympfy/comments.tpl b/skins/sympfy/comments.tpl new file mode 100644 index 0000000..621f1af --- /dev/null +++ b/skins/sympfy/comments.tpl @@ -0,0 +1,94 @@ + + + + +
    + {COMMENTS_EMPTYTEXT} +
    + + + +
    + + + +
    + +
    + +
    + +
    + {COMMENTS_ROW_AVATAR} +
    + +
    + + {COMMENTS_ROW_AUTHOR} + {COMMENTS_ROW_DATE} + {COMMENTS_ROW_ADMIN} +
    + +
    + +
    + {COMMENTS_ROW_TEXT} +
    + +
    + +
    + + + +
    + +
    +
      + + {COMMENTS_PAGINATION} + +
    +
    + + + +{COMMENTS_ERROR_BODY} + + + + + +
    +
    +

    {PHP.skinlang.comments.Newcomment}

    + + {COMMENTS_FORM_TEXT} +

    +
    +
    + + + + + +
    +
    +

    {PHP.skinlang.comments.Commentedit}:

    + + {COMMENTS_EDIT_FORM_TEXT} +

    +
    +
    + + + + + +
    + {COMMENTS_DISABLETEXT} +
    + + + + \ No newline at end of file diff --git a/skins/sympfy/css/cms.css b/skins/sympfy/css/cms.css new file mode 100644 index 0000000..b5f2f0c --- /dev/null +++ b/skins/sympfy/css/cms.css @@ -0,0 +1,1173 @@ +/*-------------------------*/ + + +/***** USER MENU *****/ + + +/*-------------------------*/ + +#user ul, +ul.systemlist { + list-style: none; + padding: 25px; + margin: 0 0 0 15px; +} + +#user ul li, +ul.systemlist li { + padding: 3px 0; + position: relative; +} + +#user ul li::before, +ul.systemlist li::before { + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 2.1em; + content: "\ea61"; + color: #636369; + font-weight: bold; + display: inline-block; + width: 0.8em; + font-size: 0.6em; + vertical-align: bottom; + position: absolute; + left: -15px; +} + + +/*-------------------------*/ + + +/***** USERPANEL *****/ + + +/*-------------------------*/ + +.userpanel { + color: #ffffff; + position: fixed; + width: 250px; + left: -250px; + top: 118px; + background-color: #333; + -webkit-transition: left .5s ease 0s; + -moz-transition: left .5s ease 0s; + -o-transition: left .5s ease 0s; + transition: left .5s ease 0s; + z-index: 9999; + border: 0.0625rem solid rgba(255, 255, 255, 0.2); +} + +.userpanel.open { + left: -3px; +} + +.userpanel a { + color: #ccd5e8; +} + +.userpanel p { + margin: 0.625rem; + line-height: 1.2em; + color: #fff; +} + +.userpanel .panel-descr { + color: #8d8c8c; + font-size: 11px; + line-height: 12px; +} + +.userpanel .notices { + padding: 25px 25px 0 25px; +} + +.userpanel .panel-title { + background-color: #484848; + margin: 0.625rem 0; + padding: 0.4375rem 0; + text-align: center; + text-transform: uppercase; + border-top: 0.0625rem solid #6d6d6d; + border-bottom: 0.0625rem solid #6d6d6d; +} + +.openuserpanel { + background: #333; + display: inline-block; + vertical-align: middle; + text-decoration: none; + width: 50px; + line-height: 55px; + height: 50px; + color: #ffffff; + position: absolute; + font-size: 22px; + text-align: center; + top: -1px; + right: -50px; + border: 1px solid rgba(255, 255, 255, 0.2); + border-left: none; +} + +.openuserpanel:hover, +.openuserpanel:active, +.openuserpanel:focus { + text-decoration: none; + color: #ffffff; +} + + +/*-------------------------*/ + + +/***** TOOLTIP *****/ + + +/*-------------------------*/ + +.adm-tooltip { + width: 210px; + display: none; + position: absolute; + opacity: .8; + padding: 0.5125rem; + font-size: 0.9em; + line-height: 1em; + background-color: #fff1f2; + border: 1px solid #b8b8b8; + z-index: 9999; + border-radius: 0 0.125rem 0.125rem; +} + +.adm-tooltip:before, +.adm-tooltip:after { + display: block; + position: absolute; + content: ""; + border: 0.3125rem solid transparent; +} + +.adm-tooltip:before { + top: -0.625rem; + left: -0.0625rem; + border-left-color: #b8b8b8; + border-bottom-color: #b8b8b8; +} + +.adm-tooltip:after { + top: -0.4375rem; + left: 0; + border-left-color: #fff1f2; + border-bottom-color: #fff1f2; +} + +.adm-tooltip a { + display: block; + color: #000; + padding: 0.1875rem 0.125rem 0.3125rem 1.8625rem; + background: no-repeat 0.3125rem center; +} + +.adm-tooltip a:hover { + background-color: #b5b5b5; +} + +.adm-tooltip .admin_tooltip_edit { + background-image: url("../img/adm_edit.png"); +} + +.adm-tooltip .admin_tooltip_add { + background-image: url("../img/adm_add.png"); +} + + +/*-------------------------*/ + + +/***** FORMS *****/ + + +/*-------------------------*/ + +.form { + display: block; + margin: 0; + padding: 0; +} + +.form img { + margin: 0; +} + +.form .form-row { + display: flex; + flex-direction: row; + align-items: center; + width: 100%; + position: relative; + clear: both; +} + +.form .form-row:after, +.form .form-row:before { + content: " "; + display: table; + clear: both; +} + +.form-field { + margin-bottom: 0; +} + +.form .form-field { + display: block; + padding: 12px; + float: left; + width: 70%; +} + +.form .form-field-2col { + display: block; + float: left; + width: 50%; + padding-right: 10px; +} + +.form-group { + margin-bottom: 15px; +} + +.form .form-field>span { + padding: 6px 0; +} + +.form .form-field-help { + color: #929191; + font-size: 0.8em; + font-style: italic; +} + +.form .form-field-100 { + display: block; + padding: 12px 0; + width: 100%; +} + +.form .form-label { + display: block; + padding: 12px; + color: #7d7878; + font-weight: 300; + float: left; + width: 30%; + max-width: 200px; +} + +.form .form-label label { + font-weight: 300; +} + +.form .form-legend { + font-size: 0.95em; + color: #8e8f90; +} + +.auth-form { + max-width: 700px; +} + + +/*-------------------------*/ + + +/***** ALERTS *****/ + + +/*-------------------------*/ + +.alert-icon { + position: absolute; + left: 15px; + top: 15px; +} + +.alert-close { + position: absolute; + right: 5px; + top: 5px; + margin: 0; + line-height: 1em; + border: 0; + padding: 0; + background: none; +} + +.alert { + position: relative; + padding: 15px 15px 15px 40px; + margin-bottom: 15px; + border: 1px solid transparent; + border-radius: 3px; + line-height: 1.35em; +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb; +} + +.alert-error { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb; +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba; +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb; +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff; +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db; +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca; +} + +.error { + background: #fff6f6; + border: 1px solid #ffc3c3; + padding: 15px; + border-radius: 3px; + color: #ea0202; +} + +.okmess { + background: #fcfff6; + border: 1px solid #9bdba6; + padding: 15px; + border-radius: 3px; + color: #1d280a; +} + +.mess { + padding: 15px; + text-align: center; + font-size: 1.2em; + color: #ea0202; +} + + +/*----------------------------------*/ + + +/***** TABLE & EMULATION TABLES *****/ + + +/*----------------------------------*/ + +.coltop { + background: #4c4c50; + color: #ffffff; +} + +.coltop a { + color: #ffffff; +} + +table { + margin: 0.5em 0; +} + +tfoot th, +tfoot td { + background-color: #f2f2f2; +} + +th, +td { + padding: 0.5em 0.8em; +} + +table caption { + text-transform: uppercase; + padding: 0 1em; + color: #999999; + font-size: 0.85em; +} + +table.flat { + width: 100%; +} + +table.flat th, +table.flat td { + border: 0; +} + +table.main { + width: 100%; +} + +table.cells { + width: 100%; +} + +table.cells td { + vertical-align: middle; +} + +table.list { + width: 100%; +} + +table.cells tr:nth-child(even) { + background-color: #f2f2f2; +} + +.table, +.table-cells { + display: table; + margin: 0.5em 0; + width: 100%; + position: relative; +} + +.table-tr, +.table-row { + display: table-row; + position: relative; +} + +.table-row:nth-child(odd) {} + +.table-row:nth-child(even) { + background: #f3f3f3; +} + +.table-cells .table-tr:nth-child(even) { + background-color: #f2f2f2; +} + +.table-th { + display: table-cell; + padding: 10px; + vertical-align: middle; + position: relative; +} + +.table-td { + display: table-cell; + vertical-align: middle; + padding: 0.5em 0.8em; + line-height: 1.35em; +} + +.td-top { + vertical-align: top; +} + +.table-thead { + display: table-header-group; +} + +.table-tfoot { + display: table-footer-group; +} + +.table-head { + font-weight: bold; + font-size: 13px; + border-bottom: 1px solid #f3f3f3; + color: #000; + text-align: center; + line-height: 1.3em; + vertical-align: middle; + display: table-header-group; +} + +.table-foot { + background-color: #EEE; + display: table-footer-group; + font-weight: bold; +} + +.table-tbody, +.table-body { + display: table-row-group; +} + +.table-colspan-100 { + display: block; + width: 100%; + position: absolute; + vertical-align: middle; + padding: 0.5em 0.8em; +} + + +/*-------------------------*/ + + +/***** TABS *****/ + + +/*-------------------------*/ + +.sedtabs div.tabs { + display: none; +} + +.sedtabs div.tabs:first-child { + display: block; +} + +.tab-box { + background: #ffffff; + border: 1px solid #ccc; + min-height: 100px; + clear: both; + padding: 15px 15px 15px 15px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.noborder { + border: none; + border-top: 1px solid #ccc; +} + +ul.tabs { + margin: 0px; + padding: 0px; +} + +ul.tabs li { + list-style: none; + display: inline; +} + +ul.tabs li a { + float: left; + padding: 8px 25px 8px 25px; + text-decoration: none; + margin-right: 3px; + margin-bottom: -1px; +} + +ul.tabs li a:hover { + color: #212121; +} + +ul.tabs li a.selected { + background-color: #ffffff; + color: #282e32; + border: 1px solid #ccc; + border-bottom: 1px solid #ffffff; + -webkit-border-top-left-radius: 3px; + -webkit-border-top-right-radius: 3px; + -moz-border-radius-topleft: 3px; + -moz-border-radius-topright: 3px; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + background: rgba(237, 237, 237, 1); + background: -moz-linear-gradient(top, rgba(237, 237, 237, 1) 0%, rgba(246, 246, 246, 1) 53%, rgba(255, 255, 255, 1) 100%); + background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237, 237, 237, 1)), color-stop(53%, rgba(246, 246, 246, 1)), color-stop(100%, rgba(255, 255, 255, 1))); + background: -webkit-linear-gradient(top, rgba(237, 237, 237, 1) 0%, rgba(246, 246, 246, 1) 53%, rgba(255, 255, 255, 1) 100%); + background: -o-linear-gradient(top, rgba(237, 237, 237, 1) 0%, rgba(246, 246, 246, 1) 53%, rgba(255, 255, 255, 1) 100%); + background: -ms-linear-gradient(top, rgba(237, 237, 237, 1) 0%, rgba(246, 246, 246, 1) 53%, rgba(255, 255, 255, 1) 100%); + background: linear-gradient(to bottom, rgba(237, 237, 237, 1) 0%, rgba(246, 246, 246, 1) 53%, rgba(255, 255, 255, 1) 100%); + filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0); +} + + +/*-------------------------*/ + + +/***** AJAX LOADING *****/ + + +/*-------------------------*/ + +#loading-holder { + height: 32px; +} + +#loading { + display: none; + text-align: center; +} + +.loading-indicator { + width: 32px; + height: 32px; + background: url("/system/img/vars/loading.gif") center center no-repeat; +} + + +/*-------------------------*/ + + +/***** RATINGS *****/ + + +/*-------------------------*/ + +.rating-box { + display: inline-block; + width: 160px; + height: 16px; +} + +.rating { + width: 160px; + height: 16px; + margin: 0; + display: inline-block; + padding: 0; + list-style: none; + position: relative; + background: url("../img/system/vote.gif") no-repeat 0 0; +} + +.s0 { + background-position: 0 0; +} + +.s1 { + background-position: 0 -16px; +} + +.s2 { + background-position: 0 -32px; +} + +.s3 { + background-position: 0 -48px; +} + +.s4 { + background-position: 0 -64px; +} + +.s5 { + background-position: 0 -80px; +} + +.s6 { + background-position: 0 -96px; +} + +.s7 { + background-position: 0 -112px; +} + +.s8 { + background-position: 0 -128px; +} + +.s9 { + background-position: 0 -144px; +} + +.s10 { + background-position: 0 -160px; +} + +ul.rating li { + cursor: pointer; + float: left; + text-indent: -999em; +} + +ul.rating li a { + position: absolute; + left: 0; + top: 0; + width: 16px; + height: 16px; + text-decoration: none; + z-index: 200; +} + +ul.rating li.s1 a { + left: 0 +} + +ul.rating li.s2 a { + left: 16px; +} + +ul.rating li.s3 a { + left: 32px; +} + +ul.rating li.s4 a { + left: 48px; +} + +ul.rating li.s5 a { + left: 64px; +} + +ul.rating li.s6 a { + left: 80px; +} + +ul.rating li.s7 a { + left: 96px; +} + +ul.rating li.s8 a { + left: 112px; +} + +ul.rating li.s9 a { + left: 128px; +} + +ul.rating li.s10 a { + left: 144px; +} + +ul.rating li a:hover { + z-index: 2; + width: 160px; + height: 16px; + overflow: hidden; + left: 0; + background: url("../img/system/vote.gif") no-repeat 0 0; +} + +ul.rating li.s1 a:hover { + background-position: 0 -176px; +} + +ul.rating li.s2 a:hover { + background-position: 0 -192px; +} + +ul.rating li.s3 a:hover { + background-position: 0 -208px; +} + +ul.rating li.s4 a:hover { + background-position: 0 -224px; +} + +ul.rating li.s5 a:hover { + background-position: 0 -240px; +} + +ul.rating li.s6 a:hover { + background-position: 0 -256px; +} + +ul.rating li.s7 a:hover { + background-position: 0 -272px; +} + +ul.rating li.s8 a:hover { + background-position: 0 -288px; +} + +ul.rating li.s9 a:hover { + background-position: 0 -304px; +} + +ul.rating li.s10 a:hover { + background-position: 0 -320px; +} + + +/*-------------------------*/ + + +/***** SPOILER *****/ + + +/*-------------------------*/ + +.spoiler-jump:focus, +.spoiler-jump:active, +.spoiler-jump:hover { + text-decoration: none; +} + +.spoiler-jump { + border: none; + display: inline-block; + outline: none; + text-decoration: none; + cursor: pointer; + position: absolute; + top: 2px; + right: 0; + text-decoration: none; + padding: 5px 5px; + width: 40px; + height: 40px; + color: #ffffff; + font-size: 1em; + line-height: 1em; + -webkit-transition: .2s ease-out; + -o-transition: .2s ease-out; + transition: .2s ease-out; + text-transform: uppercase; +} + +.spoiler-jump:after { + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 30px; + width: 30px; + display: block; + content: "\eb55"; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -o-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + font-size: 30px; + color: #010101; + -webkit-transition: .2s ease-out; + -o-transition: .2s ease-out; + transition: .2s ease-out; +} + +.active .spoiler-jump:after { + -webkit-transform: rotate(0); + -moz-transform: rotate(0); + -o-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); +} + + +/*-------------------------*/ + + +/***** MODAL WINDOWS *****/ + + +/*-------------------------*/ + +.sed_modal { + position: absolute; + -moz-border-radius: 5px; + border-radius: 5px; + border: 1px solid #ccc; + visibility: hidden; + background-color: white; + box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2); +} + +.modal-handle { + /*CSS for Drag Handle*/ + padding: 7px; + text-indent: 3px; + font: bold 14px Arial; + background-color: #303030; + color: white; + cursor: move; + overflow: hidden; + width: auto; + filter: progid: DXImageTransform.Microsoft.alpha(opacity=100); + -moz-opacity: 1; + opacity: 1; + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; +} + +.modal-handle .modal-controls { + /*CSS for controls (min, close etc) within Drag Handle*/ + position: absolute; + right: 1px; + top: 2px; + cursor: hand; + cursor: pointer; + margin: 5px 5px 0 0; +} + +* html .modal-handle { + /*IE6 and below CSS hack. Width must be set to 100% in order for opaque title bar to render*/ + width: 100%; +} + +.modal-contentarea { + /*CSS for Content Display Area div*/ + background-color: white; + color: black; + height: 150px; + padding: 2px; + overflow: auto; + visibility: visible!important; + /* sed178 */ +} + +.modal-contentarea iframe { + border: 0; +} + +.modal-statusarea { + /*CSS for Status Bar div (includes resizearea)*/ + background-color: #F8F8F8; + height: 13px; + /*height of resize image*/ + -webkit-border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomright: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} + +.modal-resizearea { + /*CSS for Resize Area itself*/ + float: right; + width: 13px; + height: 13px; + cursor: nw-resize; + font-size: 0; + margin-right: 5px; + margin-bottom: 5px; +} + + +/*-------------------------*/ + + +/***** OVERAL *****/ + + +/*-------------------------*/ + +.descr { + font-size: 0.9em; + line-height: 1.2em; + color: #ccc; +} + +.user-groups { + line-height: 1.5em; +} + +.bar_front { + background-color: #72b626; + border-right: 0px solid #333333; + padding: 0; + color: #DDDDDD; + height: 13px; +} + +.bar_back { + background-color: #EBECF1; + border: 1px solid #333333; + margin: 2px 0px 2px 0px; + height: 15px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + overflow: hidden; +} + +.btn-adm { + font-size: 0.9em; + padding: 3px 8px; +} + +.box { + border: 1px dotted #ccc; + padding: 15px; + background: #f3f3f3; +} + +.odd { + background-color: #f3f3f3; +} + +.even { + background-color: #f9f9f9; +} + +.cattop { + background: #dcdcdc; +} + +.centered { + text-align: center; +} + +.signature { + color: #cccccc; + font-size: 0.9em; +} + +.img-list_file { + list-style: none; + margin: 0; + padding: 0; + float: left; + width: 100%; +} + +.img-list_file li { + display: inline-block; + vertical-align: top; + margin: 0 2px 5px 2px; + text-align: center; + width: 100px; + height: 100px; +} + +.img-list_file li img { + width: 100px; + height: 100px; +} + +.btn-delete-img { + width: 16px; + height: 16px; + background-color: #cc0000; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + display: block; + text-align: center; + color: #ffffff; + font-size: 10px; + line-height: 18px; + text-decoration: none; + position: relative; + margin-top: -105px; + margin-left: 90px; +} + +.btn-delete-img:hover { + color: #ffffff; + text-decoration: none; + background-color: #ff0000; +} + +.img-list_file li:first-child a { + display: block; + width: 100px; + height: 100px; + text-indent: -9999px; + background: url("../img/addimg.png") top left no-repeat; +} + +.img-list_file li:first-child a:hover { + display: block; + width: 100px; + height: 100px; + text-indent: -9999px; + background: url("../img/addimg.png") bottom left no-repeat; +} + +.maingrp-table { + display: table; + width: 100%; +} + +.maingrp-td-icon, +.maingrp-td-title { + display: table-cell; + vertical-align: middle; +} + +.maingrp-td-icon { + width: 30px; +} + +ul.admin-buttons { + list-style: none; + margin: 0; + padding: 0; +} + +ul.admin-buttons li { + display: inline; + display: inline-block; + margin-right: 6px; + vertical-align: top; +} + +#subtitle { + font-style: italic; + padding: 0 0 25px 0; +} + +.help { + font-style: italic; + padding: 15px 0; + color: #ccc; +} + +.filters { + padding: 15px; + border: 1px dotted #cccccc; + background: #fbfbfb; + margin-bottom: 15px; +} + +.filters .filters-form div { + display: inline-block; + padding: 5px; +} + +.pfs-stats { + color: #cccccc; + padding-bottom: 15px; +} + +.pfs-td-stndl a { + background: none!important; + border: 1px solid #cccccc!important; + color: #2f59a9; +} + +.pfs-td-stndl a:hover { + color: #5980cb; + border: 1px solid #5980cb!important; +} \ No newline at end of file diff --git a/skins/sympfy/css/fonts.css b/skins/sympfy/css/fonts.css new file mode 100644 index 0000000..0ef4c53 --- /dev/null +++ b/skins/sympfy/css/fonts.css @@ -0,0 +1,711 @@ +@font-face { + font-family: 'Seditio'; + src: url('../fonts/Seditio/Seditio.eot?f9faem'); + src: url('../fonts/Seditio/Seditio.eot?f9faem#iefix') format('embedded-opentype'), + url('../fonts/Seditio/Seditio.ttf?f9faem') format('truetype'), + url('../fonts/Seditio/Seditio.woff?f9faem') format('woff'), + url('../fonts/Seditio/Seditio.svg?f9faem#Seditio') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="ic-"], [class*=" ic-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'Seditio' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ic-2x { + font-size: 1.8em; +} +.ic-3x { + font-size: 2.5em; +} +.ic-arrow-left:before { + content: "\ea19"; +} +.ic-arrow-up:before { + content: "\e901"; +} +.ic-arrow-down:before { + content: "\ea16"; +} +.ic-arrow-right:before { + content: "\ea1f"; +} +.ic-arrow-down-right:before { + content: "\ea15"; +} +.ic-arrow-down-left:before { + content: "\ea13"; +} +.ic-arrow-up-left:before { + content: "\e902"; +} +.ic-arrow-up-right:before { + content: "\e903"; +} +.ic-arrow-l:before { + content: "\e912"; +} +.ic-arrow-t:before { + content: "\e920"; +} +.ic-arrow-b:before { + content: "\e91f"; +} +.ic-arrow-r:before { + content: "\e913"; +} +.ic-arr-left:before { + content: "\e91c"; +} +.ic-arr-up:before { + content: "\e91e"; +} +.ic-arr-down:before { + content: "\e91b"; +} +.ic-arr-right:before { + content: "\e91d"; +} +.ic-arrow-up-left-circle:before { + content: "\ea21"; +} +.ic-arrow-down-left-circle:before { + content: "\ea12"; +} +.ic-arrow-down-right-circle:before { + content: "\ea14"; +} +.ic-arrow-up-right-circle:before { + content: "\ea23"; +} +.ic-arrow-up-circle:before { + content: "\ea20"; +} +.ic-arrow-down-circle:before { + content: "\ea11"; +} +.ic-arrow-narrow-left:before { + content: "\ea1b"; +} +.ic-arrow-narrow-up:before { + content: "\ea1d"; +} +.ic-arrow-narrow-down:before { + content: "\ea1a"; +} +.ic-arrow-narrow-right:before { + content: "\ea1c"; +} +.ic-chevron-left:before { + content: "\ea60"; +} +.ic-chevron-up:before { + content: "\ea62"; +} +.ic-chevron-down:before { + content: "\ea5f"; +} +.ic-chevron-right:before { + content: "\ea61"; +} +.ic-chevrons-left:before { + content: "\ea64"; +} +.ic-chevrons-up:before { + content: "\ea66"; +} +.ic-chevrons-down:before { + content: "\ea63"; +} +.ic-chevrons-right:before { + content: "\ea65"; +} +.ic-corner-up-left:before { + content: "\ea82"; +} +.ic-corner-left-up:before { + content: "\ea7f"; +} +.ic-corner-right-down:before { + content: "\ea80"; +} +.ic-corner-left-down:before { + content: "\ea7e"; +} +.ic-corner-right-up:before { + content: "\ea81"; +} +.ic-corner-up-right:before { + content: "\ea83"; +} +.ic-arrows-sort:before { + content: "\eb5a"; +} +.ic-arrows-horizontal:before { + content: "\eb59"; +} +.ic-arrows-vertical:before { + content: "\eb5b"; +} +.ic-arrows-maximize:before { + content: "\ea28"; +} +.ic-check-circle:before { + content: "\e904"; +} +.ic-check:before { + content: "\ea5e"; +} +.ic-at:before { + content: "\ea2b"; +} +.ic-award:before { + content: "\ea2c"; +} +.ic-adjustments:before { + content: "\ea03"; +} +.ic-alarm:before { + content: "\ea04"; +} +.ic-alert-circle:before { + content: "\ea05"; +} +.ic-alert-triangle:before { + content: "\ea06"; +} +.ic-banlist:before { + content: "\ea2e"; +} +.ic-pages:before { + content: "\ea39"; +} +.ic-bookmark:before { + content: "\ea3a"; +} +.ic-briefcase:before { + content: "\ea46"; +} +.ic-calendar-time:before { + content: "\ee21"; +} +.ic-calendar-event:before { + content: "\ea52"; +} +.ic-calendar:before { + content: "\ea53"; +} +.ic-camera:before { + content: "\ea54"; +} +.ic-chart-area-line:before { + content: "\ea57"; +} +.ic-hits:before { + content: "\ea59"; +} +.ic-settings:before { + content: "\eb20"; +} +.ic-tool:before { + content: "\eb40"; +} +.ic-chart-candle:before { + content: "\ea5a"; +} +.ic-circle-check:before { + content: "\ea67"; +} +.ic-circle-minus:before { + content: "\ea68"; +} +.ic-circle-plus:before { + content: "\ea69"; +} +.ic-circle-x:before { + content: "\ea6a"; +} +.ic-clock:before { + content: "\ea70"; +} +.ic-cloud-download:before { + content: "\ea71"; +} +.ic-cloud-upload:before { + content: "\ea75"; +} +.ic-code:before { + content: "\ea77"; +} +.ic-compass:before { + content: "\ea79"; +} +.ic-copy:before { + content: "\ea7a"; +} +.ic-credit-card:before { + content: "\ea84"; +} +.ic-cache:before { + content: "\ea88"; +} +.ic-device-desktop:before { + content: "\ea89"; +} +.ic-directions:before { + content: "\ea8e"; +} +.ic-dots:before { + content: "\ea95"; +} +.ic-download:before { + content: "\ea96"; +} +.ic-edit:before { + content: "\ea98"; +} +.ic-external-link:before { + content: "\ea99"; +} +.ic-eye:before { + content: "\ea9a"; +} +.ic-eye-off:before { + content: "\ecf0"; +} +.ic-filter:before { + content: "\eaa5"; +} +.ic-flag:before { + content: "\eaa6"; +} +.ic-folder:before { + content: "\eaad"; +} +.ic-folders:before { + content: "\eaae"; +} +.ic-heart:before { + content: "\eabe"; +} +.ic-home:before { + content: "\eac0"; +} +.ic-home-2:before { + content: "\eac1"; +} +.ic-id:before { + content: "\eac3"; +} +.ic-key:before { + content: "\eac7"; +} +.ic-location:before { + content: "\eae0"; +} +.ic-lock:before { + content: "\eae2"; +} +.ic-unlock:before { + content: "\eae1"; +} +.ic-lock-off:before { + content: "\ed1e"; +} +.ic-mail-opened:before { + content: "\eae4"; +} +.ic-mail:before { + content: "\eae5"; +} +.ic-map-2:before { + content: "\eae7"; +} +.ic-map-pin:before { + content: "\eae8"; +} +.ic-message-2:before { + content: "\eaec"; +} +.ic-message-circle:before { + content: "\eaed"; +} +.ic-message:before { + content: "\eaef"; +} +.ic-mood-happy:before { + content: "\eaf4"; +} +.ic-smilies:before { + content: "\eaf7"; +} +.ic-news:before { + content: "\eafd"; +} +.ic-pencil:before { + content: "\eb04"; +} +.ic-phone-call:before { + content: "\eb05"; +} +.ic-phone-incoming:before { + content: "\eb06"; +} +.ic-image:before { + content: "\e905"; +} +.ic-photo:before { + content: "\eb0a"; +} +.ic-plus:before { + content: "\eb0b"; +} +.ic-power:before { + content: "\eb0d"; +} +.ic-refresh:before { + content: "\eb13"; +} +.ic-rotate-clockwise:before { + content: "\eb15"; +} +.ic-search:before { + content: "\eb1c"; +} +.ic-server:before { + content: "\eb1f"; +} +.ic-share:before { + content: "\eb21"; +} +.ic-shield-check:before { + content: "\eb22"; +} +.ic-shopping-cart:before { + content: "\eb25"; +} +.ic-star:before { + content: "\eb2e"; +} +.ic-tag:before { + content: "\eb34"; +} +.ic-thumb-down:before { + content: "\eb3b"; +} +.ic-thumb-up:before { + content: "\eb3c"; +} +.ic-trash-off:before { + content: "\ed65"; +} +.ic-trash:before { + content: "\eb41"; +} +.ic-unlink:before { + content: "\eb46"; +} +.ic-paperclip:before { + content: "\eb02"; +} +.ic-link:before { + content: "\eade"; +} +.ic-upload:before { + content: "\eb47"; +} +.ic-user-check:before { + content: "\eb49"; +} +.ic-user-minus:before { + content: "\eb4a"; +} +.ic-user-plus:before { + content: "\eb4b"; +} +.ic-user-x:before { + content: "\eb4c"; +} +.ic-user:before { + content: "\eb4d"; +} +.ic-referers:before { + content: "\eb54"; +} +.ic-close:before { + content: "\eb55"; +} +.ic-zoom-in:before { + content: "\eb56"; +} +.ic-zoom-out:before { + content: "\eb57"; +} +.ic-polls:before { + content: "\eb6a"; +} +.ic-comments:before { + content: "\eb6c"; +} +.ic-repeat:before { + content: "\eb72"; +} +.ic-anchor:before { + content: "\eb76"; +} +.ic-calculator:before { + content: "\eb80"; +} +.ic-notebook:before { + content: "\eb96"; +} +.ic-login:before { + content: "\eba7"; +} +.ic-logout:before { + content: "\eba8"; +} +.ic-rotate-clockwise-2:before { + content: "\ebb5"; +} +.ic-brush:before { + content: "\ebb8"; +} +.ic-gallery:before { + content: "\ebc9"; +} +.ic-tools:before { + content: "\ebca"; +} +.ic-wand:before { + content: "\ebcb"; +} +.ic-plug:before { + content: "\ebd9"; +} +.ic-color-picker:before { + content: "\ebe6"; +} +.ic-users:before { + content: "\ebf2"; +} +.ic-phone-check:before { + content: "\ec05"; +} +.ic-camera-minus:before { + content: "\ec3a"; +} +.ic-camera-plus:before { + content: "\ec3b"; +} +.ic-menu:before { + content: "\ec42"; +} +.ic-ratings:before { + content: "\ec78"; +} +.ic-separator-vertical:before { + content: "\ec7a"; +} +.ic-page-break:before { + content: "\ec81"; +} +.ic-select:before { + content: "\ec9e"; +} +.ic-forums:before { + content: "\ec9f"; +} +.ic-index:before { + content: "\ecde"; +} +.ic-brand-discord:before { + content: "\ece3"; +} +.ic-brand-pocket:before { + content: "\ed00"; +} +.ic-bookmarks:before { + content: "\ed08"; +} +.ic-stars:before { + content: "\ed38"; +} +.ic-message-circle-2:before { + content: "\ed3f"; +} +.ic-speakerphone:before { + content: "\ed61"; +} +.ic-star-off:before { + content: "\ed62"; +} +.ic-manual-gearbox:before { + content: "\ed7b"; +} +.ic-admin:before { + content: "\edcc"; +} +.ic-pm:before { + content: "\edcd"; +} +.ic-page:before { + content: "\edef"; +} +.ic-chart-pie:before { + content: "\ee32"; +} +.ic-discount:before { + content: "\ee7c"; +} +.ic-edit-circle:before { + content: "\ee85"; +} +.ic-list-search:before { + content: "\eea9"; +} +.ic-pacman:before { + content: "\eebc"; +} +.ic-settings-automation:before { + content: "\eed6"; +} +.ic-shopping-cart-discount:before { + content: "\eedb"; +} +.ic-shopping-cart-plus:before { + content: "\eedd"; +} +.ic-hand-move:before { + content: "\ef50"; +} +.ic-user-circle:before { + content: "\ef68"; +} +.ic-report-search:before { + content: "\ef84"; +} +.ic-trash-x:before { + content: "\ef88"; +} +.ic-world-upload:before { + content: "\ef8b"; +} +.ic-shield-checkered:before { + content: "\ef9a"; +} +.ic-quote:before { + content: "\efbe"; +} +.ic-dic:before { + content: "\eff2"; +} +.ic-plug-connected:before { + content: "\f00a"; +} +.ic-paper-bag:before { + content: "\f02f"; +} +.ic-file-pencil:before { + content: "\f039"; +} +.ic-file-typography:before { + content: "\f041"; +} +.ic-pfs:before { + content: "\f07c"; +} +.ic-clock-2:before { + content: "\f099"; +} +.ic-typography:before { + content: "\ebc5"; +} +.ic-typography-off:before { + content: "\f1ba"; +} +.ic-cloud-computing:before { + content: "\f1d0"; +} +.ic-cloud-data-connection:before { + content: "\f1d1"; +} +.ic-rss:before { + content: "\e906"; +} +.ic-zap:before { + content: "\e907"; +} +.ic-zap-off:before { + content: "\e908"; +} +.ic-brand-youtube:before { + content: "\ec90"; +} +.ic-movie:before { + content: "\eafa"; +} +.ic-github:before { + content: "\e900"; +} +.ic-brand-telegram:before { + content: "\ec26"; +} +.ic-brand-google-drive:before { + content: "\ec1e"; +} +.ic-brand-instagram:before { + content: "\ec20"; +} +.ic-brand-github:before { + content: "\ec1c"; +} +.ic-facebook:before { + content: "\e90a"; +} +.ic-ok:before { + content: "\e90b"; +} +.ic-twitter:before { + content: "\e90c"; +} +.ic-socialbtn:before { + content: "\e90d"; +} +.ic-vk:before { + content: "\e90e"; +} +.ic-whatsapp:before { + content: "\e90f"; +} +.ic-telegram:before { + content: "\e910"; +} +.ic-youtube:before { + content: "\e911"; +} +.ic-phoneblack:before { + content: "\e914"; +} +.ic-instagram:before { + content: "\e909"; +} +.ic-brand-twitter:before { + content: "\ec27"; +} +.ic-brand-whatsapp:before { + content: "\ec74"; +} diff --git a/skins/sympfy/css/framework.css b/skins/sympfy/css/framework.css new file mode 100644 index 0000000..313f530 --- /dev/null +++ b/skins/sympfy/css/framework.css @@ -0,0 +1,1532 @@ +/*! + * Style & Grid based on Bootstrap v3.3.7 (http://getbootstrap.com) + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +html { + font-family: Arial, Tahoma; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + font-weight: normal; + font-style: normal; +} +html.disable-scrolling { + overflow: hidden; +} +body { + margin: 0; + font-size:15px; + color: #212121; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + font-size: 2em; + margin: 0.67em 0; +} +mark { + background: #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-appearance: textfield; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +legend { + border: 0; + padding: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +.text-right { text-align:right;} +table { + border-collapse: collapse; + border-spacing: 0; +} +td, +th { + padding: 0; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:focus { + outline: none; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 14px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #007cc2; + text-decoration: none; + -webkit-transition: color 0.5s; + -moz-transition: color 0.5s; + -o-transition: color 0.5s; + transition: color 0.5s; +} +a:hover, +a:focus { + color: #7CD1ED; + text-decoration: underline; +} +a:focus { + outline: 0; + outline-offset: 0; +} +figure { + margin: 0; +} +img { + vertical-align: middle; + margin: 0; +} +.img-responsive { + display: inline-block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} + +.embed-responsive.embed-responsive-16by9 { + padding-bottom: 56.25%; +} + +.embed-responsive.embed-responsive-4by3 { + padding-bottom: 75%; +} + +.embed-responsive{ + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; + width:100%; +} + +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.img-thumbnail { + padding: 4px; + line-height: 1.42857143; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +[role="button"] { + cursor: pointer; +} +.container { + margin-right: auto; + margin-left: auto; + padding-left: 12px; + padding-right: 12px; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +@media (min-width: 1300px) { + .container { + width: 1270px; + } +} + +/* +@media (min-width: 1400px) { + .container { + width: 1360px; + } +} +*/ + +.container-fluid { + margin-right: auto; + margin-left: auto; + padding-left: 0; + padding-right: 0; +} +.row { + margin-left: -12px; + margin-right: -12px; +} +.split-row {margin-left: 0!important; margin-right: 0!important;} +.split-col {padding-left: 0!important; padding-right:0!important;} +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 12px; + padding-right: 12px; +} +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0%; +} +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0%; + } +} +.clearfix:before, +.clearfix:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after { + content: " "; + display: block; +} +.clearfix:after, +.container:after, +.container-fluid:after, +.row:after { + clear: both; +} +.center-block { + display: block; + margin-left: auto; + margin-right: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table !important; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table !important; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table !important; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table !important; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} + +.text-justify { + text-align: justify !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +.row-flex, +.layout-row, +.row-flex-mobile { + display: -webkit-flex; + -webkit-flex-flow: row wrap; + display: flex; + flex-flow: row wrap; +} + +/*-------------------------*/ +/***** CHECKBOX STYLING *****/ +/*-------------------------*/ + +.checkbox { + position: absolute; + z-index: -1; + opacity: 0; + margin: 10px 0 0 7px; +} +.checkbox + label { + position: relative; + padding: 0 0 0 24px; + cursor: pointer; +} +.checkbox + label:before { + content: ''; + position: absolute; + top: -1px; + left: 0; + width: 18px; + height: 18px; + border: 1px solid #CDD1DA; + border-radius: 2px; + background: #FFF; +} +.checkbox + label:after { + content: ''; + position: absolute; + top: 0px; + left: 0px; + width: 18px; + height: 18px; + background: url("../img/input_icons.svg") 50% 3px no-repeat; + opacity: 0; + transition: .2s; +} +.checkbox:checked + label:after { + opacity: 1; +} + +.checkbox:checked + label:before { + background: #5ba7bf; + border: 1px solid #5ba7bf; +} + +.checkbox[disabled] + label:before { + background: #ababab; + border: 1px solid #ababab; +} + +.checkbox + label span { + color:#cccccc; +} + +/*-------------------------*/ +/***** RADIO STYLING *****/ +/*-------------------------*/ + +.radio { + position: absolute; + z-index: -1; + opacity: 0; + margin: 10px 0 0 7px; +} +.radio + label { + position: relative; + padding: 0 0 0 24px; + margin-right: 10px; + cursor: pointer; +} +.radio + label:before { + content: ''; + position: absolute; + top: -1px; + left: 0; + width: 18px; + height: 18px; + border: 1px solid #CDD1DA; + border-radius: 100%; + background: #FFF; +} +.radio + label:after { + content: ''; + position: absolute; + top: 0px; + left: 0px; + width: 18px; + height: 18px; + border-radius: 100%; + background: url("../img/input_icons.svg") 50% -18px no-repeat; + opacity: 0; + transition: .2s; +} +.radio:checked + label:after { + opacity: 1; +} + +.radio:checked + label:before { + background: #5ba7bf; + border: 1px solid #5ba7bf; +} + +.radio[disabled] + label:before { + background: #ababab; + border: 1px solid #ababab; +} + +.radio + label span { + color:#cccccc; +} + +/*----------------------------------------*/ +/***** INPUT, TEXTAREA, SELECT STYLES *****/ +/*----------------------------------------*/ + +input[type="email"], +input[type="password"], +input[type="tel"], +input[type="text"], +textarea { + background: #ffffff; + border: 1px solid #e4e2e2; + border-radius: 2px; + box-shadow: none; + color: #383838; + height: auto; + font-size: 1em; + padding: 9px 13px 9px 13px; + outline: 0; + max-width:100%; +} + +select { + background: #ffffff; + border: 1px solid #e4e2e2; + border-radius: 2px; + box-shadow: none; + color: #383838; + height: auto; + font-size: 1em; + padding: 8px 13px 8px 13px; + outline: 0; + max-width:100%; +} + +input[type="text"]:focus, +input[type="text"]:hover, +input[type="password"]:focus, +input[type="password"]:hover, +textarea:focus, +textarea:hover { + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); + box-shadow: none; + z-index: 3; + border-color: #9da3b1; + background: #fff; + outline: 0; +} + +input::-webkit-input-placeholder { color: #bbbdbf; } +input:-ms-input-placeholder { color: #bbbdbf; } +input::-ms-input-placeholder { color: #bbbdbf; } +input::placeholder { color: #bbbdbf; } + +.btn { + background: #313139; + background: -moz-linear-gradient(0deg, #313139 0%, #737373 100%); + background: -webkit-linear-gradient(0deg, #313139 0%, #737373 100%); + background: linear-gradient(0deg, #313139 0%, #737373 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#313139",endColorstr="#737373",GradientType=1); + color: #ffffff; + box-shadow: inset 0px 1px 0px 0px #000000; + border: 0; + border-left: 1px solid #1b1b1b; + border-right: 1px solid #1b1b1b; + display: inline-block; + outline: none; + cursor: pointer; + text-decoration: none; + font-size: 1em; + padding: 10px 30px; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + border-radius: 0px; +} + +.btn:hover, +.btn:focus, +.btn:active { + text-decoration: none; + color: #ffffff; + background: #448aa1; + background: -moz-linear-gradient(0deg, #04394a 0%, #7CD1ED 100%); + background: -webkit-linear-gradient(0deg, #04394a 0%, #7CD1ED 100%); + background: linear-gradient(0deg, #04394a 0%, #7CD1ED 100%); + border-left: 1px solid #3f849a; + border-right: 1px solid #3f849a; + box-shadow: inset 0px 1px 0px 0px #448aa1; +} + +.filters .btn { + padding: 9px 30px 10px 30px; + vertical-align: bottom; +} + +.btn-icon { + width: 24px; + height: 24px; + padding: 4px 0px; + text-align: center; + display: inline-block; + font-size: 14px; + line-height: 12px; + border-radius: 2px; + background-color: #315eb4; + color: #ffffff; + border: 1px solid #133d8d; + text-decoration: none; +} + +.btn-icon:hover, +.btn-icon:focus, +.btn-icon:active { + background-color: #5980cb; + border: 1px solid #2f59a9; + text-decoration:none; + color: #ffffff; +} + +.dsl-icon { + width: 24px; + height: 24px; + padding: 4px 0px; + text-align: center; + display: inline-block; + font-size: 14px; + line-height: 12px; + border-radius: 2px; + color: #315eb4; + border: 1px solid #cccccc; + text-decoration:none; +} + +blockquote { + color: #999999; + font-style: italic; + margin: 0.5em 0 1em; + padding: 0.25em 50px; + line-height: 1.45; + position: relative; +} + +blockquote:before { + display: block; + content: "\201C"; + font-size: 80px; + position: absolute; + left: -10px; + top: -20px; + color: #cccccc; +} + +blockquote cite { + color: #333333; + display: block; + margin-top: 10px; +} + +blockquote cite:before { + content: "\2014 \2009"; +} \ No newline at end of file diff --git a/skins/sympfy/css/plugins.css b/skins/sympfy/css/plugins.css new file mode 100644 index 0000000..81fb68f --- /dev/null +++ b/skins/sympfy/css/plugins.css @@ -0,0 +1,1221 @@ +/** +* 1. Slick slider (use in top slider & carousel) +* 2. Fancybox +* 3. Slinky Menu (mobile menu) +*/ + + +/*-------------------------*/ +/***** 1. SLICK SLIDER *****/ +/*-------------------------*/ + +.slick-slider { + position: relative; + display: none; + box-sizing: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-touch-callout: none; + -khtml-user-select: none; + -ms-touch-action: pan-y; + touch-action: pan-y; + -webkit-tap-highlight-color: transparent; +} +.slick-list { + position: relative; + display: block; + overflow: hidden; + margin: 0; + padding: 0; +} +.slick-list:focus { + outline: none; +} +.slick-list.dragging { + cursor: pointer; + cursor: hand; +} +.slick-slider .slick-track, +.slick-slider .slick-list { + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} +.slick-track { + position: relative; + top: 0; + left: 0; + display: block; + margin-left: auto; + margin-right: auto; +} +.slick-track:before, +.slick-track:after { + display: table; + content: ''; +} +.slick-track:after { + clear: both; +} +.slick-loading .slick-track { + visibility: hidden; +} +.slick-slide { + display: none; + float: left; + height: 100%; + min-height: 1px; +} +[dir='rtl'] .slick-slide { + float: right; +} +.slick-slide img { + display: block; +} +.slick-slide.slick-loading img { + display: none; +} +.slick-slide.dragging img { + pointer-events: none; +} +.slick-initialized { + display:block; +} +.slick-initialized .slick-slide { + display: block; + outline: 0; + outline-offset: 0; +} +.slick-loading .slick-slide { + visibility: hidden; +} +.slick-vertical .slick-slide { + display: block; + height: auto; + border: 1px solid transparent; +} +.slick-arrow.slick-hidden { + display: none; +} +/* Arrows */ +.slick-prev, +.slick-next { + font-size: 0; + line-height: 0; + position: absolute; + top: 50%; + z-index: 10; + display: block; + width: 42px; + height: 42px; + padding: 0; + -webkit-transform: translate(0, -50%); + -ms-transform: translate(0, -50%); + transform: translate(0, -50%); + cursor: pointer; + color: transparent; + border: none; + outline: none; + background: transparent; +} +.slick-down { + display: block; + position: relative; + margin: 0 auto; + font-size: 0; + line-height: 0; + width: 42px; + height: 42px; + padding: 0; + -webkit-transform: translate(0, -50%); + -ms-transform: translate(0, -50%); + transform: translate(0, -50%); + cursor: pointer; + color: transparent; + border: none; + outline: none; + background: transparent; +} +.slick-prev:hover, +.slick-prev:focus, +.slick-next:hover, +.slick-next:focus, +.slick-down:hover, +.slick-down:focus { + opacity:0.8; +} +.slick-prev:hover:before, +.slick-prev:focus:before, +.slick-next:hover:before, +.slick-next:focus:before, +.slick-down:hover:before, +.slick-down:focus:before { + opacity: 1; +} +.slick-prev.slick-disabled:before, +.slick-next.slick-disabled:before { + opacity: .25; +} +.slick-prev { + left: 0px; + width: 50px; + height: 50px; +} +.slick-prev:before, +[dir='rtl'] .slick-prev:before { + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + content: "\e91c"; + font-size: 40px; + color: #010101; +} +[dir='rtl'] .slick-prev { + right: 0px; + left: auto; + width: 50px; + height: 50px; +} +.slick-next { + right: 0px; + width: 50px; + height: 50px; +} +.slick-next:before, +[dir='rtl'] .slick-next:before { + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + content: "\e91d"; + font-size: 40px; + color: #010101; +} +.slick-down:before, +[dir='rtl'] .slick-down:before { + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + content: "\e91b"; + font-size: 40px; + color: #010101; +} + +[dir='rtl'] .slick-next { + right: auto; + left: 0px; + width: 50px; + height: 50px; +} + +.slick-dots { + position: absolute; + bottom: 40px; + display: block; + width: 100%; + padding: 0; + margin: 0; + z-index: 100; + list-style: none; + text-align: center; +} +.slick-dots li { + position: relative; + display: inline-block; + width: 12px; + height: 12px; + margin: 0 5px; + padding: 0; + cursor: pointer; +} +.slick-dots li button { + font-size: 0; + line-height: 0; + display: block; + width: 5px; + height: 5px; + padding: 6px; + cursor: pointer; + color: transparent; + border:none; + border-radius: 100%; + outline: none; + background: rgba(68, 81, 92, 0.30); +} +.slick-dots li button:hover, +.slick-dots li button:focus { + outline: none; +} +.slick-dots li button:hover:before, +.slick-dots li button:focus:before { + opacity: 1; +} +.slick-dots li.slick-active button { + background: #f99302; +} +.slick-track { + display: flex !important; +} +.slick-slide { + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + -ms-flex-align: center; + -webkit-align-items: center; + -webkit-box-align: center; + align-items: center; + position:relative; + background-size: cover; +} +.slick-slide img { + margin:0; + padding:0; +} + +/*-------------------------*/ +/***** 2. FANCYBOX *****/ +/*-------------------------*/ + +body.compensate-for-scrollbar { + overflow: hidden; +} +.fancybox-active { + height: auto; +} +.fancybox-is-hidden { + left: -9999px; + margin: 0; + position: absolute !important; + top: -9999px; + visibility: hidden; +} +.fancybox-container { + -webkit-backface-visibility: hidden; + height: 100%; + left: 0; + outline: none; + position: fixed; + -webkit-tap-highlight-color: transparent; + top: 0; + -ms-touch-action: manipulation; + touch-action: manipulation; + transform: translateZ(0); + width: 100%; + z-index: 99992; +} +.fancybox-container * { + box-sizing: border-box; +} +.fancybox-outer, +.fancybox-inner, +.fancybox-bg, +.fancybox-stage { + bottom: 0; + left: 0; + position: absolute; + right: 0; + top: 0; +} +.fancybox-outer { + -webkit-overflow-scrolling: touch; + overflow-y: auto; +} +.fancybox-bg { + background: rgb(30, 30, 30); + opacity: 0; + transition-duration: inherit; + transition-property: opacity; + transition-timing-function: cubic-bezier(.47, 0, .74, .71); +} +.fancybox-is-open .fancybox-bg { + opacity: .9; + transition-timing-function: cubic-bezier(.22, .61, .36, 1); +} +.fancybox-infobar, +.fancybox-toolbar, +.fancybox-caption, +.fancybox-navigation .fancybox-button { + direction: ltr; + opacity: 0; + position: absolute; + transition: opacity .25s ease, visibility 0s ease .25s; + visibility: hidden; + z-index: 99997; +} +.fancybox-show-infobar .fancybox-infobar, +.fancybox-show-toolbar .fancybox-toolbar, +.fancybox-show-caption .fancybox-caption, +.fancybox-show-nav .fancybox-navigation .fancybox-button { + opacity: 1; + transition: opacity .25s ease 0s, visibility 0s ease 0s; + visibility: visible; +} +.fancybox-infobar { + color: #ccc; + font-size: 13px; + -webkit-font-smoothing: subpixel-antialiased; + height: 44px; + left: 0; + line-height: 44px; + min-width: 44px; + mix-blend-mode: difference; + padding: 0 10px; + pointer-events: none; + top: 0; + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.fancybox-toolbar { + right: 0; + top: 0; +} +.fancybox-stage { + direction: ltr; + overflow: visible; + transform: translateZ(0); + z-index: 99994; +} +.fancybox-is-open .fancybox-stage { + overflow: hidden; +} +.fancybox-slide { + -webkit-backface-visibility: hidden; /* Using without prefix would break IE11 */ + display: none; + height: 100%; + left: 0; + outline: none; + overflow: auto; + -webkit-overflow-scrolling: touch; + padding: 44px; + position: absolute; + text-align: center; + top: 0; + transition-property: transform, opacity; + white-space: normal; + width: 100%; + z-index: 99994; +} +.fancybox-slide::before { + content: ''; + display: inline-block; + font-size: 0; + height: 100%; + vertical-align: middle; + width: 0; +} +.fancybox-is-sliding .fancybox-slide, +.fancybox-slide--previous, +.fancybox-slide--current, +.fancybox-slide--next { + display: block; +} +.fancybox-slide--image { + overflow: hidden; + padding: 44px 0; +} +.fancybox-slide--image::before { + display: none; +} +.fancybox-slide--html { + padding: 6px; +} +.fancybox-content { + background: #fff; + display: inline-block; + margin: 0; + max-width: 100%; + overflow: auto; + -webkit-overflow-scrolling: touch; + padding: 44px; + position: relative; + text-align: left; + vertical-align: middle; +} +.fancybox-slide--image .fancybox-content { + animation-timing-function: cubic-bezier(.5, 0, .14, 1); + -webkit-backface-visibility: hidden; + background: transparent; + background-repeat: no-repeat; + background-size: 100% 100%; + left: 0; + max-width: none; + overflow: visible; + padding: 0; + position: absolute; + top: 0; + -ms-transform-origin: top left; + transform-origin: top left; + transition-property: transform, opacity; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + z-index: 99995; +} +.fancybox-can-zoomOut .fancybox-content { + cursor: zoom-out; +} +.fancybox-can-zoomIn .fancybox-content { + cursor: zoom-in; +} +.fancybox-can-swipe .fancybox-content, +.fancybox-can-pan .fancybox-content { + cursor: -webkit-grab; + cursor: grab; +} +.fancybox-is-grabbing .fancybox-content { + cursor: -webkit-grabbing; + cursor: grabbing; +} +.fancybox-container [data-selectable='true'] { + cursor: text; +} +.fancybox-image, +.fancybox-spaceball { + background: transparent; + border: 0; + height: 100%; + left: 0; + margin: 0; + max-height: none; + max-width: none; + padding: 0; + position: absolute; + top: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + width: 100%; +} +.fancybox-spaceball { + z-index: 1; +} +.fancybox-slide--video .fancybox-content, +.fancybox-slide--map .fancybox-content, +.fancybox-slide--pdf .fancybox-content, +.fancybox-slide--iframe .fancybox-content { + height: 100%; + overflow: visible; + padding: 0; + width: 100%; +} +.fancybox-slide--video .fancybox-content { + background: #000; +} +.fancybox-slide--map .fancybox-content { + background: #e5e3df; +} +.fancybox-slide--iframe .fancybox-content { + background: #fff; +} +.fancybox-video, +.fancybox-iframe { + background: transparent; + border: 0; + display: block; + height: 100%; + margin: 0; + overflow: hidden; + padding: 0; + width: 100%; +} +/* Fix iOS */ +.fancybox-iframe { + left: 0; + position: absolute; + top: 0; +} +.fancybox-error { + background: #fff; + cursor: default; + max-width: 400px; + padding: 40px; + width: 100%; +} +.fancybox-error p { + color: #444; + font-size: 16px; + line-height: 20px; + margin: 0; + padding: 0; +} +/* Buttons */ +.fancybox-button { + background: rgba(30, 30, 30, .6); + border: 0; + border-radius: 0; + box-shadow: none; + cursor: pointer; + display: inline-block; + height: 44px; + margin: 0; + padding: 10px; + position: relative; + transition: color .2s; + vertical-align: top; + visibility: inherit; + width: 44px; +} +.fancybox-button, +.fancybox-button:visited, +.fancybox-button:link { + color: #ccc; +} +.fancybox-button:hover { + color: #fff; +} +.fancybox-button:focus { + outline: none; +} +.fancybox-button.fancybox-focus { + outline: 1px dotted; +} +.fancybox-button[disabled], +.fancybox-button[disabled]:hover { + color: #888; + cursor: default; + outline: none; +} +/* Fix IE11 */ +.fancybox-button div { + height: 100%; +} +.fancybox-button svg { + display: block; + height: 100%; + overflow: visible; + position: relative; + width: 100%; +} +.fancybox-button svg path { + fill: currentColor; + stroke-width: 0; +} +.fancybox-button--play svg:nth-child(2), +.fancybox-button--fsenter svg:nth-child(2) { + display: none; +} +.fancybox-button--pause svg:nth-child(1), +.fancybox-button--fsexit svg:nth-child(1) { + display: none; +} +.fancybox-progress { + background: #ff5268; + height: 2px; + left: 0; + position: absolute; + right: 0; + top: 0; + -ms-transform: scaleX(0); + transform: scaleX(0); + -ms-transform-origin: 0; + transform-origin: 0; + transition-property: transform; + transition-timing-function: linear; + z-index: 99998; +} +/* Close button on the top right corner of html content */ +.fancybox-close-small { + background: transparent; + border: 0; + border-radius: 0; + color: #ccc; + cursor: pointer; + opacity: .8; + padding: 8px; + position: absolute; + right: -12px; + top: -44px; + z-index: 401; +} +.fancybox-close-small:hover { + color: #fff; + opacity: 1; +} +.fancybox-slide--html .fancybox-close-small { + color: currentColor; + padding: 10px; + right: 0; + top: 0; +} +.fancybox-slide--image.fancybox-is-scaling .fancybox-content { + overflow: hidden; +} +.fancybox-is-scaling .fancybox-close-small, +.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small { + display: none; +} +/* Navigation arrows */ +.fancybox-navigation .fancybox-button { + background-clip: content-box; + height: 100px; + opacity: 0; + position: absolute; + top: calc(50% - 50px); + width: 70px; +} +.fancybox-navigation .fancybox-button div { + padding: 7px; +} +.fancybox-navigation .fancybox-button--arrow_left { + left: 0; + left: env(safe-area-inset-left); + padding: 31px 26px 31px 6px; +} +.fancybox-navigation .fancybox-button--arrow_right { + padding: 31px 6px 31px 26px; + right: 0; + right: env(safe-area-inset-right); +} +/* Caption */ +.fancybox-caption { + background: linear-gradient( + to top, + rgba(0, 0, 0, .85) 0%, + rgba(0, 0, 0, .3) 50%, + rgba(0, 0, 0, .15) 65%, + rgba(0, 0, 0, .075) 75.5%, + rgba(0, 0, 0, .037) 82.85%, + rgba(0, 0, 0, .019) 88%, + rgba(0, 0, 0, 0) 100% + ); + bottom: 0; + color: #eee; + font-size: 14px; + font-weight: 400; + left: 0; + line-height: 1.5; + padding: 75px 44px 25px 44px; + pointer-events: none; + right: 0; + text-align: center; + z-index: 99996; +} +@supports (padding: max(0px)) { + .fancybox-caption { + padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left)); + } +} +.fancybox-caption--separate { + margin-top: -50px; +} +.fancybox-caption__body { + max-height: 50vh; + overflow: auto; + pointer-events: all; +} +.fancybox-caption a, +.fancybox-caption a:link, +.fancybox-caption a:visited { + color: #ccc; + text-decoration: none; +} +.fancybox-caption a:hover { + color: #fff; + text-decoration: underline; +} +/* Loading indicator */ +.fancybox-loading { + animation: fancybox-rotate 1s linear infinite; + background: transparent; + border: 4px solid #888; + border-bottom-color: #fff; + border-radius: 50%; + height: 50px; + left: 50%; + margin: -25px 0 0 -25px; + opacity: .7; + padding: 0; + position: absolute; + top: 50%; + width: 50px; + z-index: 99999; +} +@keyframes fancybox-rotate { + 100% { + transform: rotate(360deg); + } +} +/* Transition effects */ +.fancybox-animated { + transition-timing-function: cubic-bezier(0, 0, .25, 1); +} +/* transitionEffect: slide */ +.fancybox-fx-slide.fancybox-slide--previous { + opacity: 0; + transform: translate3d(-100%, 0, 0); +} +.fancybox-fx-slide.fancybox-slide--next { + opacity: 0; + transform: translate3d(100%, 0, 0); +} +.fancybox-fx-slide.fancybox-slide--current { + opacity: 1; + transform: translate3d(0, 0, 0); +} +/* transitionEffect: fade */ +.fancybox-fx-fade.fancybox-slide--previous, +.fancybox-fx-fade.fancybox-slide--next { + opacity: 0; + transition-timing-function: cubic-bezier(.19, 1, .22, 1); +} +.fancybox-fx-fade.fancybox-slide--current { + opacity: 1; +} +/* transitionEffect: zoom-in-out */ +.fancybox-fx-zoom-in-out.fancybox-slide--previous { + opacity: 0; + transform: scale3d(1.5, 1.5, 1.5); +} +.fancybox-fx-zoom-in-out.fancybox-slide--next { + opacity: 0; + transform: scale3d(.5, .5, .5); +} +.fancybox-fx-zoom-in-out.fancybox-slide--current { + opacity: 1; + transform: scale3d(1, 1, 1); +} +/* transitionEffect: rotate */ + +.fancybox-fx-rotate.fancybox-slide--previous { + opacity: 0; + -ms-transform: rotate(-360deg); + transform: rotate(-360deg); +} +.fancybox-fx-rotate.fancybox-slide--next { + opacity: 0; + -ms-transform: rotate(360deg); + transform: rotate(360deg); +} +.fancybox-fx-rotate.fancybox-slide--current { + opacity: 1; + -ms-transform: rotate(0deg); + transform: rotate(0deg); +} +/* transitionEffect: circular */ +.fancybox-fx-circular.fancybox-slide--previous { + opacity: 0; + transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); +} +.fancybox-fx-circular.fancybox-slide--next { + opacity: 0; + transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); +} +.fancybox-fx-circular.fancybox-slide--current { + opacity: 1; + transform: scale3d(1, 1, 1) translate3d(0, 0, 0); +} +/* transitionEffect: tube */ +.fancybox-fx-tube.fancybox-slide--previous { + transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg); +} +.fancybox-fx-tube.fancybox-slide--next { + transform: translate3d(100%, 0, 0) scale(.1) skew(10deg); +} +.fancybox-fx-tube.fancybox-slide--current { + transform: translate3d(0, 0, 0) scale(1); +} +/* Styling for Small-Screen Devices */ +@media all and (max-height: 576px) { + .fancybox-slide { + padding-left: 6px; + padding-right: 6px; + } + .fancybox-slide--image { + padding: 6px 0; + } + .fancybox-close-small { + right: -6px; + } + .fancybox-slide--image .fancybox-close-small { + background: #4e4e4e; + color: #f2f4f6; + height: 36px; + opacity: 1; + padding: 6px; + right: 0; + top: 0; + width: 36px; + } + .fancybox-caption { + padding-left: 12px; + padding-right: 12px; + } + @supports (padding: max(0px)) { + .fancybox-caption { + padding-left: max(12px, env(safe-area-inset-left)); + padding-right: max(12px, env(safe-area-inset-right)); + } + } +} +/* Share */ +.fancybox-share { + background: #f4f4f4; + border-radius: 3px; + max-width: 90%; + padding: 30px; + text-align: center; +} +.fancybox-share h1 { + color: #222; + font-size: 35px; + font-weight: 700; + margin: 0 0 20px 0; +} +.fancybox-share p { + margin: 0; + padding: 0; +} +.fancybox-share__button { + border: 0; + border-radius: 3px; + display: inline-block; + font-size: 14px; + font-weight: 700; + line-height: 40px; + margin: 0 5px 10px 5px; + min-width: 130px; + padding: 0 15px; + text-decoration: none; + transition: all .2s; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + white-space: nowrap; +} +.fancybox-share__button:visited, +.fancybox-share__button:link { + color: #fff; +} +.fancybox-share__button:hover { + text-decoration: none; +} +.fancybox-share__button--fb { + background: #3b5998; +} +.fancybox-share__button--fb:hover { + background: #344e86; +} +.fancybox-share__button--pt { + background: #bd081d; +} +.fancybox-share__button--pt:hover { + background: #aa0719; +} +.fancybox-share__button--tw { + background: #1da1f2; +} +.fancybox-share__button--tw:hover { + background: #0d95e8; +} +.fancybox-share__button svg { + height: 25px; + margin-right: 7px; + position: relative; + top: -1px; + vertical-align: middle; + width: 25px; +} +.fancybox-share__button svg path { + fill: #fff; +} +.fancybox-share__input { + background: transparent; + border: 0; + border-bottom: 1px solid #d7d7d7; + border-radius: 0; + color: #5d5b5b; + font-size: 14px; + margin: 10px 0 0 0; + outline: none; + padding: 10px 15px; + width: 100%; +} +/* Thumbs */ +.fancybox-thumbs { + background: #ddd; + bottom: 0; + display: none; + margin: 0; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar; + padding: 2px 2px 4px 2px; + position: absolute; + right: 0; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); + top: 0; + width: 212px; + z-index: 99995; +} +.fancybox-thumbs-x { + overflow-x: auto; + overflow-y: hidden; +} +.fancybox-show-thumbs .fancybox-thumbs { + display: block; +} +.fancybox-show-thumbs .fancybox-inner { + right: 212px; +} +.fancybox-thumbs__list { + font-size: 0; + height: 100%; + list-style: none; + margin: 0; + overflow-x: hidden; + overflow-y: auto; + padding: 0; + position: absolute; + position: relative; + white-space: nowrap; + width: 100%; +} +.fancybox-thumbs-x .fancybox-thumbs__list { + overflow: hidden; +} +.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar { + width: 7px; +} +.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track { + background: #fff; + border-radius: 10px; + box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); +} +.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb { + background: #2a2a2a; + border-radius: 10px; +} +.fancybox-thumbs__list a { + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + background-color: rgba(0, 0, 0, .1); + background-position: center center; + background-repeat: no-repeat; + background-size: cover; + cursor: pointer; + float: left; + height: 75px; + margin: 2px; + max-height: calc(100% - 8px); + max-width: calc(50% - 4px); + outline: none; + overflow: hidden; + padding: 0; + position: relative; + -webkit-tap-highlight-color: transparent; + width: 100px; +} +.fancybox-thumbs__list a::before { + border: 6px solid #ff5268; + bottom: 0; + content: ''; + left: 0; + opacity: 0; + position: absolute; + right: 0; + top: 0; + transition: all .2s cubic-bezier(.25, .46, .45, .94); + z-index: 99991; +} +.fancybox-thumbs__list a:focus::before { + opacity: .5; +} +.fancybox-thumbs__list a.fancybox-thumbs-active::before { + opacity: 1; +} + +/*-------------------------*/ +/***** 3. SLINKY MENU *****/ +/*-------------------------*/ + +.slinky-menu { + overflow: hidden; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.slinky-menu>ul { + left: 0; + position: relative; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.slinky-menu ul, .slinky-menu li { + list-style: none; + margin: 0; +} + +.slinky-menu ul { + width: 100%; +} + +.slinky-menu a { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + /* width: 100%;*/ +} + +.slinky-menu a.back { + width: 50px; + background: #eaeaea; + text-align: center; +} + +.slinky-menu a span { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + line-height: 1.4; +} + +.slinky-menu li ul { + display: none; + left: 100%; + position: absolute; + top: 0; +} + +.slinky-menu .header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +.slinky-menu .header .title { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + line-height: 1.4; + margin: 0; + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; +} + +.slinky-theme-default { + background: #f6f7f8; +} + +.slinky-theme-default .title { + color: #d8d8d8; + padding: 1em; +} + +.slinky-theme-default li { + line-height: 1; + font-weight:600; + border-bottom: 1px solid #f7f2f2; +} + +.slinky-theme-default li.sub { + font-weight:600; +} + + +.slinky-theme-default a:not(.back) { + color: #333; + padding: 1em; +} + +.slinky-theme-default li.sub>a +{ + color: #014e9f!important; +} + +.slinky-theme-default a:not(.back):hover { + background: rgba(90, 200, 250, 0.25); +} + +.slinky-theme-default a:not(.back):active { + background: rgba(90, 200, 250, 0.5); +} + +.slinky-theme-default .next::after, +.slinky-theme-default .back::before { + background: url("img/next.svg") center center no-repeat; + background-size: 1em; + content: ''; + height: 1em; + opacity: 0.25; + -webkit-transition: 200ms; + transition: 200ms; + width: 1em; +} + +.slinky-theme-default .next::after { + margin-left: 1em; +} + +.slinky-theme-default .back::before { + padding: 1.7em; + -webkit-transform: scaleX(-1); + transform: scaleX(-1); +} + +.slinky-theme-default .next:hover::after, +.slinky-theme-default .back:hover::before { + opacity: 0.75; +} + +.slinky-theme-default .next:active::after, +.slinky-theme-default .back:active::before { + opacity: 1; +} + +/* custom theme menu */ +.slinky-menu{ + text-align: left; +} +.slinky-theme-default{ + background-color: #fff; +} +.slinky-menu .header{ + background-color: #f2f2f2; +} +.slinky-menu ul { + padding-left: 0; + font-size: 1em; +} +.slinky-menu ul a{ + text-decoration: none; +} +.slinky-menu ul a:focus{ + outline: none; +} +.slinky-theme-default .next::after, +.slinky-theme-default .back::before { + background-image: url("../img/next.svg"); +} +.slinky-theme-default a:not(.back):hover{ + background-color: #ff8c0b; + color: #ffffff!important; +} +.slinky-theme-default a:not(.back):hover::after, +.slinky-theme-default a:not(.back):hover::before{ + background-image: url("../img/next.svg"); +} diff --git a/skins/sympfy/css/responsive.css b/skins/sympfy/css/responsive.css new file mode 100644 index 0000000..64c4d73 --- /dev/null +++ b/skins/sympfy/css/responsive.css @@ -0,0 +1,521 @@ +@media (max-width: 992px) { + + #header, + #header.header-sticky { + height: 62px!important; + } + + #header .menu-col .menu-wrapper { + display: none; + } + + #header .trigger-col { + display:table-cell; + } + + #header .logo-col, + #header .menu-col { + padding:0; + height: 62px!important; + } + + #header.header-sticky .logo-col, + #header.header-sticky .menu-col { + padding:0; + height: 62px!important; + } + + #header.header-sticky .logo-col, + #header .logo-col { + width:150px!important; + } + + #header .logo, + #header.header-sticky .logo { + max-width: 134px!important; + max-height: 50px!important; + } + + .menu-wrapper { + max-width: 550px; + float: right; + width: 100%; + font-size: 1.1em; + } + + #sidebar, #primary { + float:none; + width:100%; + } + + .sidebar-box { + border: 0; + border-top: 1px solid #d4d4d4; + padding: 24px 0 0 0; + border-radius: 3px; + margin-bottom: 24px; + } + + .sidebar-box .sidebar-title h3 { + font-weight: 300; + font-size: 2.5em; + } + + .footer-wrapper { + display: block; + width:100%; + } + + .footer-about-col, + .footer-menu-col, + .footer-social-col { + width:100%; + display:block; + } + + .footer-menu-table { + margin: 0; + } + + .footer-menu-col { + padding-top: 10px; + } + + .footer-social-col { + padding-top: 25px; + } + + #list, + #page, + #system, + #plugins, + #forums, + .home-noslider { + padding-top: 104px!important; + } + + .post-sidebar-small-item .post-title h3 { + font-size: 1em; + } + + .forums-topics-viewers { + display: none; + } + + .forums-main-table, + .forums-topics-table, + .forums-post-table { + display: block; + } + + .table-cells-subtable { + margin:0; + } + + .forums-main-table .table-thead, + .forums-topics-table .table-thead, + .forums-post-table .table-thead { + display: none; + } + + .forums-main-table .cattop-tr { + height: 34px; + position: relative; + width: 100%; + display: block; + } + + .forums-post-table .cattop-tr { + display: block; + height: auto; + } + + .forums-main-table .table-tbody, + .forums-topics-table .table-tbody, + .forums-post-table .table-tbody { + display: block; + } + + .forums-main-table .table-tbody .table-tr, + .forums-topics-table .table-tbody .table-tr, + .forums-post-table .table-tbody .table-tr { + display: block; + clear: both; + } + + .forums-main-table .table-tbody .table-tr:before, + .forums-main-table .table-tbody .table-tr:after, + .forums-topics-table .table-tbody .table-tr:before, + .forums-topics-table .table-tbody .table-tr:after, + .forums-post-table .table-tbody .table-tr:before, + .forums-post-table .table-tbody .table-tr:after { + content: " "; + display: block; + } + + .forums-main-table .table-tbody .table-tr:after, + .forums-topics-table .table-tbody .table-tr:after, + .forums-post-table .table-tbody .table-tr:after { + clear: both; + } + + .forums-main-table .table-tbody .table-tr .table-td, + .forums-topics-table .table-tbody .table-tr .table-td, + .forums-post-table .table-tbody .table-tr .table-td { + display: block; + clear: both; + } + + .forums-main-table .table-cells-subtable, + .forums-topics-table .table-cells-subtable { + display: table; + margin: 0; + } + + .forums-main-table .table-cells-subtable .table-tr, + .forums-topics-table .table-cells-subtable .table-tr { + display: table-row; + } + + .forums-main-table .table-cells-subtable .table-tr .table-td, + .forums-topics-table .table-cells-subtable .table-tr .table-td { + display: table-cell; + } + + .forums-main-table .table-tbody .table-tr .forums-main-info, + .forums-topics-table .table-tbody .table-tr .forums-topics-info { + padding: 0; + } + + .forums-main-table .table-tbody .table-tr .forums-lastpost { + width:82%; + float:left; + clear: none; + padding-top:0; + color: #afaaaa; + } + + .forums-topics-table .table-tbody .table-tr .forums-lastpost { + padding-top:0; + padding-left: 50px; + color: #afaaaa; + } + + .forums-main-table .table-tbody .table-tr .forums-topiccount { + display: none; + } + + .forums-main-table .table-tbody .table-tr .forums-postcount, + .forums-topics-table .table-tbody .table-tr .forums-postcount { + display: none; + } + + .forums-main-table .table-tbody .table-tr .forums-viewcount, + .forums-topics-table .table-tbody .table-tr .forums-viewcount { + display: none; + } + + .forums-topics-table .table-tbody .table-tr .forums-firstposter { + display: none; + } + + .forums-main-table .table-tbody .table-tr .forums-activity { + width:18%; + clear: none; + float: left; + padding-top:0; + } + + .forums-post-table .table-tbody .table-tr .forums-post-author { + padding-bottom:0; + border-bottom:0; + padding-top: 8px; + } + + .forums-post-table .table-tbody .table-tr .forums-post-date { + text-align:left!important; + padding-top:0; + border-top:0; + padding-bottom: 8px; + color: #afaaaa; + font-size:0.9em; + } + + .forums-post-table .forums-post-infoposter { + display: table; + width:100%; + } + + .forums-post-table .forums-post-avatar { + display:table-cell; + width:100px; + vertical-align:top; + } + + .forums-post-table .forums-post-avatar .avatar { + width:80px; + height:80px; + } + + .forums-post-table .forums-post-userinfo { + display:table-cell; + vertical-align:top; + } + + .forums-post-table .forums-post-userinfo p { + margin: 0 0 0.2em 0; + } + + .forums-post-table .forums-post-message { + margin:0; + } + + .forums-post-table .forums-post-infoposter-td { + padding-bottom: 0; + } + + .odd.forums-message-td { + background: #f3f3f3; + } + + .even.forums-message-td { + background: #f9f9f9; + } + + .forums-post-message p:last-child { + padding-bottom:0; + margin-bottom:0; + } + + .brnomobile { + display:none; + } + + .commentlist .comment .comment-container .comment-entry { + margin-left: 0; + } + +} + +@media (max-width: 768px) { + .footer-bottom-table { + display:block; + width:100%; + } + .footer-bottom-copyright, + .footer-bottom-dev { + display:block; + width:100%; + text-align:center; + } + + .responsive-form .form-row { + display: block!important; + } + + .responsive-form .form-label, + .responsive-form .form-field { + width: 100%; + float: none; + max-width: 100%; + padding: 10px 0 0 0px; + } + + .responsive-form .form-label { + padding: 20px 0 0 0px; + } + + .responsive-form .form-field { + border-bottom: 1px solid #f1efef; + padding-bottom:15px; + } + + .responsive-form .form-label label { + font-weight:600; + color: #555555; + } + + .resp-table { + display: block; + width: 100%; + } + + .resp-hide { + display: none!important; + } + + .resp-table-head { + display: none; + } + + .resp-table-body { + display: block; + width: 100%; + } + + .resp-table-row { + display: block; + width: 100%; + clear: both; + padding: 10px 0; + } + + .resp-table-row:before, + .resp-table-row:after { + content: " "; + display: block; + } + + .resp-table-row:after { + clear: both; + } + + .resp-table-td { + display: block; + padding: 5px 10px; + } + + .resp-table-td::before { + content: attr(data-label); + clear: both; + display: block; + color: #ccc; + } + + .resp-table-td::after { + content: attr(data-afterlabel); + clear: both; + display: inline-block; + color: #ccc; + } + + .users-maingrp, + .users-country, + .users-regdate { + width: 33%!important; + float:left!important; + text-align:left!important; + padding-bottom:5px; + } + + .users-pm { + position: absolute; + right:0; + top: 10px; + width: auto!important; + z-index: 10; + } + + .pfs-td-delete, + .pfs-td-edit, + .pfs-td-viewcounts, + .pfs-td-setasample { + text-align: left!important; + } + + .pfs-td-stndl { + position: absolute; + top: 5px; + right: 0px; + text-align: right!important; + } + + .pfs-td-delete, + .pfs-td-edit, + .pfs-td-setasample { + width: 33%!important; + float:left!important; + text-align:center!important; + padding-bottom:5px; + } + + .pfs-td-size, + .pfs-td-update { + width: 50%!important; + float:left!important; + text-align:left!important; + } + + .pfs-td-title { + clear: both; + } + + .pff-td-folder, + .pff-td-type, + .pff-td-files, + .pff-td-size, + .pff-td-updates, + .pff-td-hits, + .pff-td-delete, + .pff-td-edit { + text-align: left!important; + } + + .pff-td-delete, + .pff-td-edit { + width: 40px!important; + float:left!important; + text-align:left!important; + padding-bottom:5px; + } + + .maingrp-table { + display: block; + width:100%; + } + + .maingrp-td-icon, + .maingrp-td-title { + display: block; + width:100%; + } + + .search-form select { + width:100%; + } + + .pl-search-date, + .pl-search-poster, + .pl-search-owner { + width: 50%!important; + float:left!important; + text-align:left!important; + } + .pl-search-poster, + .pl-search-owner { + text-align:right!important; + } + + .pl-whosonline-guest { + display: none; + } + + +} + +@media (max-width: 570px) { + + body { + font-size:14px; + } + + #slider .slide-body h1, + #slider .slide-body h2, + #slider .slide-body h3 { + font-size: 2em; + } + + .section-title h2, + .section-title h1 { + font-size: 2.3em; + } + + ul.tabs li a { + padding: 8px 15px 8px 15px; + } +} + +@media (max-width: 400px) { + +} + \ No newline at end of file diff --git a/skins/sympfy/css/service.message.css b/skins/sympfy/css/service.message.css new file mode 100644 index 0000000..e373b56 --- /dev/null +++ b/skins/sympfy/css/service.message.css @@ -0,0 +1,98 @@ +html, body, div, span, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +abbr, address, cite, code, +del, dfn, em, img, ins, kbd, q, samp, +small, strong, sub, sup, var, +b, i, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, figcaption, figure, +footer, header, hgroup, menu, nav, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + outline: 0; + font-size: 100%; + vertical-align: baseline; + background: transparent; +} +body { + line-height: 1.6em; + font-size:14px; + font-family: Tahoma, Arial; +} +a { + margin: 0; + padding: 0; + font-size: 100%; + vertical-align: baseline; + background: transparent; +} +h1, +h2, +h3, +h4, +h5, +h6 { + color: #333333; + font-weight: 700; + line-height: 1.6em; +} +h1 { + font-size: 6em; +} +h2 { + font-size: 1.8em; +} +h3 { + font-size: 1.6em; +} +h4 { + font-size: 1.4em; +} +h5 { + font-size: 1.2em; +} +h6 { + font-size: 1em; +} +strong { + font-weight: 700; +} + +.message-block { + width:100%; + margin:0 auto; + margin-top:100px; + text-align:center; +} + +.main-btn { + display: inline-block; + vertical-align: middle; + /* width: 144px; */ + height: 46px; + padding: 0 25px; + text-align: center; + text-decoration: none; + border-radius: 25px; + border: 2px solid #296eb0; + font-family: Roboto, Tahoma, sans-serif; + font-size: 16px; + line-height: 45px; + color: #296eb0; + -webkit-transition-duration: 0.2s; + transition-duration: 0.2s; +} + +.main-btn:hover { + background: #296eb0; + color:#ffffff; +} + +.message-go-home { + margin-top:30px; +} + diff --git a/skins/sympfy/css/sympfy.css b/skins/sympfy/css/sympfy.css new file mode 100644 index 0000000..e8c9b6f --- /dev/null +++ b/skins/sympfy/css/sympfy.css @@ -0,0 +1,2287 @@ +html { + height: 100%; +} + +body { + min-height: 100%; + font-weight: 300; + overflow-x: hidden; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: 300; + line-height: 1.15em; + margin: 0.6em 0; + color: #313139; +} + +h1 { + font-size: 3em; +} + +h2 { + font-size: 2.5em; +} + +h3 { + font-size: 2em; +} + +h4 { + font-size: 1.5em; +} + +h5 { + font-size: 1.2em; +} + +p { + line-height: 1.45em; + margin: 0 0 0.6em 0; +} + +ul { + list-style: none; +} + +.section-title h2, +.section-title h1 { + padding: 0; + font-size: 2.5em; + margin: 0; + display: inline-block; +} + +.section-title h2 a, +.section-title h1 a { + color: #010101; + text-decoration: none; +} + +.section-title { + padding-bottom: 20px; + position: relative; +} + +.section-title { + color: #cccccc; +} + +.section-desc { + position: relative; + margin-top: 15px; +} + +.section-admin { + padding-bottom: 20px; + position: relative; +} + + +/*-------------------------*/ + + +/***** HEADER *****/ + + +/*-------------------------*/ + +#header .header-wrapper, +#header .logo-col, +#header .menu-col, +#header.header-sticky .logo-col, +#header .logo { + -webkit-transition: all .5s; + -moz-transition: all .5s; + transition: all .5s; +} + +#header, +.header-sticky { + -webkit-transition: all .4s; + -moz-transition: all .4s; + transition: all .4s; +} + +#header { + background: #ffffff; + position: fixed; + z-index: 999; + left: 0; + top: 0; + width: 100%; + /* height:120px; */ +} + +#header { + -webkit-box-shadow: 0px 2px 92px 0px rgb(0 0 0 / 10%); + -moz-box-shadow: 0px 2px 92px 0px rgba(0, 0, 0, 0.10); + box-shadow: 0px 2px 92px 0px rgb(0 0 0 / 10%); +} + +#header.header-sticky { + /* height:72px!important; */ +} + +#header.header-sticky .logo { + max-width: 156px; + max-height: 58px; +} + +#header.header-sticky .menu-col .menu ul>li>ul { + padding-top: 40px; +} + +#header .header-wrapper { + display: table; + width: 100%; + position: relative; +} + +#header .logo-col { + display: table-cell; + vertical-align: middle; + width: 250px; + padding: 24px 0; +} + +#header.header-sticky .logo-col { + width: 200px; + padding: 10px 0; +} + +#header .menu-col { + display: table-cell; + vertical-align: middle; + text-align: right; + padding: 24px 0 24px 50px; +} + +#header.header-sticky .menu-col { + padding: 10px 0; +} + +#header .trigger-col { + display: none; + vertical-align: middle; + padding: 0; + width: 40px; +} + +#header .social-col { + display: table-cell; + vertical-align: middle; + padding: 0; + width: 110px; +} + +#header .logo { + height: auto; + width: auto; + display: block; + max-width: 220px; + max-height: 71px; + vertical-align: middle; +} + + +/*-------------------------*/ + + +/***** MENU *****/ + + +/*-------------------------*/ + +.menu-col .menu-wrapper { + max-width: 930px; + float: right; + width: 100%; + font-size: 1em; +} + +.menu-col .menu-wrapper .menu>ul { + margin: 0; + padding: 0; + float: right; + display: table; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 100%; + font-weight: 500; +} + +.menu-col .menu-wrapper .menu>ul li { + position: relative; + display: table-cell; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + flex-basis: auto; + flex-grow: 1; + max-height: none; + vertical-align: middle; + text-transform: uppercase; + text-align: left; +} + +.menu-col .menu-wrapper .menu>ul li a { + color: #313139; + cursor: pointer; + text-decoration: none; +} + +.menu-col .menu-wrapper .menu>ul li a:hover { + color: #7CD1ED; +} + +.menu-col .menu-wrapper .menu>ul>li>ul { + display: none; + position: absolute; + top: 100%; + width: 200px; + left: -20px; + padding: 60px 0px 10px 0px; + background-color: #fff; + z-index: 100; + /*visibility: hidden; + opacity: 0;*/ +} + +.menu-col .menu-wrapper .menu>ul>li>ul>li>ul { + display: none; + position: absolute; + padding-top: 0px; + margin-top: 0px; + padding-bottom: 0px; + margin-bottom: 0px; + padding: 10px 0px 10px 0px; + background-color: #fff; + left: 200px; + width: 200px; + top: -10px; + font-size: 1.1em; +} + +.menu-col .menu-wrapper .menu ul>li ul li.has-children::before { + padding-right: 0.25em; + padding-left: 0.25em; + color: #d6d7d8; + font-family: 'Seditio' !important; + content: "\ea61"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + position: absolute; + right: 6px; + top: calc(50% - 7px); +} + +.visib { + visibility: visible!important; + opacity: 1!important; + -webkit-transition: all .5s; + -moz-transition: all .5s; + transition: all .5s; +} + +.menu-col .menu-wrapper .menu>ul>li>ul li { + display: block; + text-align: left; + font-size: 0.9em; + padding-left: 20px; + padding-right: 20px; +} + +.menu-col .menu-wrapper .menu>ul>li>ul a { + display: block; + line-height: 20px; + padding: 5px 0; +} + + +/*-------------------------*/ + + +/***** BREADCRUMBS *****/ + + +/*-------------------------*/ + +.breadcrumbs { + text-align: left; +} + +.breadcrumbs ol { + margin: 0 0 0.5em 0; + padding: 0; + color: #bbbbbb; + list-style: none; + font-size: 0.85em; + line-height: 17px; +} + +.breadcrumbs ol::after { + content: ""; + display: table; + clear: both; +} + +.breadcrumbs ol>li { + display: inline-block; +} + +.breadcrumbs ol>li+li::before { + padding-right: 0.25em; + padding-left: 0.25em; + color: #d6d7d8; + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + content: "\ea61"; + vertical-align: middle; +} + +.breadcrumbs ol>li:first-child { + padding-left: 0; +} + +.breadcrumbs ol>.active { + color: #818a91; +} + +.breadcrumbs ol a { + color: #627075; +} + +.breadcrumbs ol a:hover { + text-decoration: underline; +} + + +/*-------------------------*/ + + +/***** PAGINATION *****/ + + +/*-------------------------*/ + +.pagination-box { + padding: 20px 0; +} + +.pagination { + padding: 0; + margin: 0; + list-style: none; + text-align: left; +} + +.pagination .page-item, +.pagination .prev, +.pagination .next { + display: inline-block; + text-align: center; + margin: 0 2px; +} + +.pagination .page-item:first-child .page-link { + margin-left: 0; + border: none; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.pagination .page-item:last-child .page-link { + border: none; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.pagination .page-item.active .page-link, +.pagination .page-item.active .page-link:focus, +.pagination .page-item.active .page-link:hover { + color: #ffffff; + background: #448aa1; + background: -moz-linear-gradient(0deg, #04394a 0%, #7CD1ED 100%); + background: -webkit-linear-gradient(0deg, #04394a 0%, #7CD1ED 100%); + background: linear-gradient(0deg, #04394a 0%, #7CD1ED 100%); + box-shadow: inset 0px 4px 7px 0px #58a4bd; + border-bottom: 1px solid #063b4c; + border-top: 1px solid #55a7c1; + border-left: 1px solid #42889f; + border-right: 1px solid #42889e; + outline: none; + cursor: pointer; + text-decoration: none; + -webkit-transition-duration: 0.2s; + transition-duration: 0.2s; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +.pagination .page-item.disabled .page-link, +.pagination .page-item.disabled .page-link:focus, +.pagination .page-item.disabled .page-link:hover { + color: #818a91; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} + +.pagination .page-link { + position: relative; + display: block; + padding: 6px; + min-width: 36px; + line-height: 1.5; + text-decoration: none; + background-color: #fff; + border: 1px solid #ececec; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.pagination .page-link i { + vertical-align: middle; +} + +.pagination .page-link:focus, +.page-link:hover { + color: #010101; + background-color: #eceeef; + border: 1px solid #ddd; + text-decoration: none; +} + + +/*-------------------------*/ + + +/***** MOBILE TRIGGER *****/ + + +/*-------------------------*/ + +.nav-trigger { + position: relative; + display: inline-block; + width: 20px; + height: 30px; + font-size: 30px; + float: right; + white-space: nowrap; + color: transparent; +} + +.nav-trigger span, +.nav-trigger span::before, +.nav-trigger span::after { + position: absolute; + display: inline-block; + height: 2px; + width: 20px; + border-radius: 1px; + background: #313139; +} + +.nav-trigger span { + /* line in the center */ + position: absolute; + top: 44%; + -webkit-transition: background 0.2s; + -moz-transition: background 0.2s; + transition: background 0.2s; +} + +.nav-trigger span::before, +.nav-trigger span::after { + /* other 2 lines */ + content: ''; + right: 0; + -webkit-transform: translateZ(0); + -moz-transform: translateZ(0); + -ms-transform: translateZ(0); + -o-transform: translateZ(0); + transform: translateZ(0); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transform-origin: 0% 50%; + -moz-transform-origin: 0% 50%; + -ms-transform-origin: 0% 50%; + -o-transform-origin: 0% 50%; + transform-origin: 0% 50%; + -webkit-transition: -webkit-transform 0.2s; + -moz-transition: -moz-transform 0.2s; + transition: transform 0.2s; +} + +.nav-trigger span::before { + /* menu icon top line */ + top: -6px; +} + +.nav-trigger span::after { + /* menu icon bottom line */ + top: 6px; +} + +.nav-trigger.nav-is-visible span::after { + top: 5px; +} + +.nav-trigger.nav-is-visible span { + /* hide line in the center */ + background: rgba(255, 255, 255, 0); +} + +.nav-trigger.nav-is-visible span::before, +.nav-trigger.nav-is-visible span::after { + /* keep visible other 2 lines */ + background: #313139; +} + +.nav-trigger.nav-is-visible span::before { + -webkit-transform: translateX(4px) translateY(-1px) rotate(45deg); + -moz-transform: translateX(4px) translateY(-1px) rotate(45deg); + -ms-transform: translateX(4px) translateY(-1px) rotate(45deg); + -o-transform: translateX(4px) translateY(-1px) rotate(45deg); + transform: translateX(4px) translateY(-1px) rotate(45deg); +} + +.nav-trigger.nav-is-visible span::after { + -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg); + -moz-transform: translateX(4px) translateY(2px) rotate(-45deg); + -ms-transform: translateX(4px) translateY(2px) rotate(-45deg); + -o-transform: translateX(4px) translateY(2px) rotate(-45deg); + transform: translateX(4px) translateY(2px) rotate(-45deg); +} + +.mobile-menu { + display: none; + position: fixed; + left: 0; + margin-top: 0px; + width: 100%; + overflow-y: scroll; + height: 100%; + background: #ffffff; + z-index: 8000; + border-top: 1px solid #e0e0e0; +} + +.js-menu { + flex: 1 0 auto; +} + +.js-box { + display: flex; + flex-direction: column; + min-height: calc(100% - 62px); + margin-bottom: 62px; +} + +.nav-is-visible { + display: block; +} + +.slinky-menu { + overflow: hidden; + -webkit-transform: translateZ(0); + transform: translateZ(0); +} + +.socialmedia { + list-style: none; + margin: 0; + padding: 0; +} + +.socialmedia li { + display: inline-block; + padding: 0 8px; + text-align: center; + font-size: 1.05em; +} + +.socialmedia li a { + color: #313139; + text-decoration: none; +} + +.socialmedia li a i, +.socialmedia li a span { + vertical-align: bottom; + margin-top: 5px; + line-height: 1em; + display: inline-block; +} + +.socialmedia li a:hover, +.socialmedia li a:active { + color: #7CD1ED; +} + + +/*-------------------------*/ + + +/***** TOP SLIDER *****/ + + +/*-------------------------*/ + +#slider-section { + /* padding-top:72px; */ + position: relative; + height: calc(100vh - 120px); +} + +#slider { + height: 100%; + min-height: 300px; +} + +#slider .slide-body .slider-container { + padding: 0 20px; + max-width: 1000px; + /*margin:0 auto;*/ + position: relative; +} + +#slider .slide-body { + display: block; + text-align: center; + /*position: absolute;*/ + font-size: 1em; + color: #ffffff; + display: flex; + width: 100%; + height: 100%; + align-items: center; + justify-content: center; + /*-webkit-transition: all .2s .8s; + -moz-transition: all .2s .8s; + transition: all .2s .8s; + -webkit-transform: translateX(260px); + -moz-transform: translateX(260px); + transform: translateX(260px); + opacity: 0; */ +} + +#slider .slick-active .slide-body { + display: flex; + align-items: center; + justify-content: center; + /* opacity: 1; + -webkit-transform: translateX(0); + -moz-transform: translateX(0); + transform: translateX(0);*/ +} + +#slider .slide-body h1, +#slider .slide-body h2, +#slider .slide-body h3 { + margin: 0; + padding: 0; + font-size: 3em; + font-weight: 400; + color: #ffffff; +} + +#slider-section .slide-item { + height: 100%; + position: relative; + background-size: cover; + background-position: center center; +} + +#slider-section .slide-item:before { + content: " "; + position: absolute; + background: rgb(0 0 0 / 33%); + height: 100%; + width: 100%; +} + +#slider-section .slick-list, +#slider-section .slick-track { + height: 100%; +} + +#slider-section .home-slider-arrows { + width: 300px; + margin: auto; + position: relative; + margin-top: -50px; +} + +#slider-section .slick-prev:before, +#slider-section [dir='rtl'] .slick-prev:before, +#slider-section .slick-down:before, +#slider-section [dir='rtl'] .slick-down:before, +#slider-section .slick-next:before, +#slider-section [dir='rtl'] .slick-next:before { + color: #ffffff; +} + +#slider-section .slick-prev, +#slider-section .slick-next { + top: 0; + opacity: 0; + -webkit-transition: all .5s; + -moz-transition: all .5s; + -o-transition: all .5s; + transition: all .5s; +} + +#slider-section:hover .slick-prev, +#slider-section:hover .slick-next { + opacity: 1; +} + +#slider-section:hover .slick-prev:hover, +#slider-section:hover .slick-prev:focus, +#slider-section:hover .slick-next:hover, +#slider-section:hover .slick-next:focus { + opacity: 0.8; +} + +.slider-content { + font-size: 1.2em; +} + +.slider-info { + display: block; + width: 100%; + margin: 0 auto; + text-align: center; +} + +.slider-category { + display: inline-block; + vertical-align: bottom; + padding: 15px 15px 15px 0; + font-size: 0.9em; + font-weight: 600; +} + +.slider-category a { + color: #dca2a2; +} + +.slider-date { + display: inline-block; + vertical-align: bottom; + padding: 15px 0; + color: #cccccc; + font-size: 0.9em; + font-weight: 300; +} + +.slider-title { + padding-bottom: 15px; +} + +.slider-title h3 { + font-size: 1.2em; + font-weight: 600; + margin: 0; +} + +.slider-title a { + color: #ffffff; +} + +.slider-desc { + padding-bottom: 15px; +} + +.slider-desc p { + margin: 0; + padding: 0; +} + +.slider-info-bottom { + display: inline-block; + vertical-align: bottom; + text-align: center; + padding: 15px 15px 15px 0; +} + +.slider-author { + display: inline-block; + vertical-align: middle; + padding-right: 15px; +} + +.slider-author-avatar { + display: inline-block!important; + width: 24px; + height: 24px; + border-radius: 100%; + margin-right: 10px!important; +} + +.slider-author a { + text-decoration: underline; + color: #cccccc; + font-size: 0.9em; +} + +.slider-comments { + display: inline-block; + vertical-align: middle; + color: #cccccc; +} + +.slider-comments a { + color: #cccccc; + padding-left: 4px; + font-size: 0.9em; + text-decoration: underline; +} + +#home { + padding: 40px 0; +} + +.home-noslider { + padding: 160px 0 40px 0!important; +} + +#list { + padding: 160px 0 40px 0; +} + +#page { + padding: 160px 0 40px 0; +} + +#system { + padding: 160px 0 40px 0; +} + +#plugins { + padding: 160px 0 40px 0; +} + +#forums { + padding: 160px 0 40px 0; +} + +#standalone { + padding: 15px; +} + +#primary-container { + display: block; + margin-left: -12px; + margin-right: -12px; + display: -webkit-flex; + -webkit-flex-flow: row wrap; + display: flex; + flex-flow: row wrap; +} + +#primary-container:before, +#primary-container:after { + content: " "; + display: block; +} + +#primary-container:after { + clear: both; +} + +#sidebar, +#primary { + position: relative; + min-height: 1px; + padding-left: 12px; + padding-right: 12px; + float: left; +} + +#sidebar { + display: block; + width: 30%; +} + +#primary { + display: block; + width: 70%; +} + + +/*-------------------------*/ + + +/***** INLINE MENU *****/ + + +/*-------------------------*/ + +.section-menu { + padding-bottom: 25px; +} + +.inline-menu ul { + margin: 0; + padding: 0; +} + +.inline-menu ul li { + display: inline-block; + padding: 7px 0; + margin-right: 3px; +} + +.inline-menu ul li:last-child { + margin-right: 0; +} + +.inline-menu ul li a { + color: #010101; + background: #f2f2f2; + border: 1px solid #f2f2f2; + padding: 3px 7px; + position: relative; + border-radius: 3px; +} + +.inline-menu ul li>span { + color: #010101; + padding: 3px 7px; +} + +.inline-menu ul li a span { + position: relative; + top: -1px; + right: 0px; + background: #b1afaf; + border-radius: 100%; + width: 16px; + height: 16px; + line-height: 18px; + color: #fff; + text-align: center; + font-size: 10px; + display: inline-block; + margin-left: 0px; +} + +.inline-menu ul li.active a { + color: #333; + border: 1px solid #c1c9d8; + background: #ccd5e8; + border-radius: 3px; +} + + +/*-------------------------*/ + + +/***** CATEGORY MENU *****/ + + +/*-------------------------*/ + +.section-category-menu {} + +.category-menu ul { + margin: 0; + padding: 0; + list-style: none; +} + +.category-menu ul li { + display: block; + width: 100%; + padding: 10px; + border: 1px solid #f2f2f2; + margin: 0 0 10px 0; + font-size: 1.3em; + font-weight: 500; + border-radius: 3px; +} + +.category-menu ul li a { + display: block; +} + +.category-menu ul li a span { + position: relative; + top: -1px; + right: 0px; + background: #b1afaf; + border-radius: 100%; + width: 27px; + height: 27px; + line-height: 28px; + color: #fff; + text-align: center; + font-size: 15px; + display: inline-block; + margin-left: 0px; + float: right; +} + +.category-menu ul li a:hover span { + background: #ccd5e8; +} + +.post-col { + padding-bottom: 24px; +} + + +/*-------------------------*/ + + +/***** POST & GALLERY ITEMS *****/ + + +/*-------------------------*/ + +.post-item {} + +.gallery-item { + margin-bottom: 1.65em; +} + +.post-container, +.gallery-container { + width: 100%; + height: 100%; + overflow: hidden; + position: relative; +} + +.post-img-link, +.gallery-img-link { + position: relative; + display: block; + overflow: hidden; +} + +.post-container img.post-img, +.gallery-container img.gallery-img { + width: 100%; + height: 100%; + -o-object-fit: cover; + object-fit: cover; + transform: scale(1.01); + transition: all 0.3s ease-in-out; + -webkit-transition-duration: 0.5s; + -moz-transition-duration: 0.5s; + -ms-transition-duration: 0.5s; + -o-transition-duration: 0.5s; + transition-duration: 0.5s; +} + +.post-container img.post-img:hover, +.gallery-container img.gallery-img:hover { + transform: scale(1.2); +} + +.post-content, +.gallery-content {} + +.post-info { + display: table; +} + +.gallery-info { + display: table; + width: 100%; +} + +.gallery-arrows { + display: table; + width: 100%; +} + +.gallery-arrows-col { + display: table-cell; + width: 25%; + text-align: center; + vertical-align: middle; +} + +.post-category { + display: table-cell; + vertical-align: bottom; + padding: 15px 15px 15px 0; + font-size: 0.9em; + font-weight: 600; +} + +.post-category a { + color: #b50c0c; +} + +.post-date, +.gallery-date { + display: table-cell; + vertical-align: bottom; + padding: 15px 0; + color: #cccccc; + font-size: 0.9em; + font-weight: 300; +} + +.gallery-admin { + display: table-cell; + vertical-align: bottom; + padding: 15px 0; + color: #cccccc; + text-align: right; +} + +.post-file { + display: table-cell; + vertical-align: bottom; + padding: 15px 0 15px 10px; + color: #b60c0c; + font-size: 1.2em; + font-weight: 300; +} + +.post-title, +.gallery-title { + padding-bottom: 15px; +} + +.post-title h3, +.gallery-title h3 { + font-size: 1.4em; + font-weight: 600; + margin: 0; +} + +.post-title a, +.gallery-title a { + color: #010101; +} + +.post-desc, +.gallery-desc { + padding-bottom: 15px; +} + +.post-desc p, +.gallery-desc p { + margin: 0; + padding: 0; +} + +.post-info-bottom { + display: table-cell; + vertical-align: bottom; + padding: 15px 15px 15px 0; +} + +.post-author, +.gallery-author { + display: table-cell; + vertical-align: middle; + padding-right: 15px; +} + +.post-author-avatar, +.gallery-author-avatar { + width: 24px; + height: 24px; + border-radius: 100%; + margin-right: 10px!important; + display: inline-block!important; +} + +.post-author a, +.gallery-author a { + text-decoration: underline; + color: #010101; + font-size: 0.9em; +} + +.post-author a:hover, +.gallery-author a:hover { + text-decoration: none; +} + +.post-comments, +.gallery-count { + display: table-cell; + vertical-align: middle; + color: #90a4ae; +} + +.post-comments a, +.gallery-count a { + color: #90a4ae; + padding-left: 4px; + font-size: 0.9em; + text-decoration: underline; +} + +.post-comments a:hover, +.gallery-count a:hover { + text-decoration: none; +} + + +/*-------------------------*/ + + +/***** NEWS *****/ + + +/*-------------------------*/ + +.news-item { + margin-bottom: 25px; + border: 1px solid #ececec; + padding: 20px; + border-radius: 3px; +} + +.news-item .post-title h2 { + margin: 0 0 0 0; +} + +.news-item .post-info { + width: 100%; + margin-top: 25px; +} + +.news-item .post-author, +.news-item .post-comments { + padding: 10px; +} + +.news-item .post-comments { + width: 50px; +} + +.news-item .readmore { + margin-top: 35px; +} + +.news-item .readmore a { + padding: 10px 20px; + border: 1px solid #90a4ae; + border-radius: 3px; +} + +.news-item .readmore a:hover { + text-decoration: none; +} + + +/*-------------------------*/ + + +/***** OTHER_PAGE *****/ + + +/*-------------------------*/ + +.page-other { + padding-top: 30px; + border-top: 1px solid #ececec; + border-bottom: 1px solid #ececec; + margin-top: 25px; + padding-bottom: 25px; +} + +.page-other .similar-arrows { + width: 45px; + position: absolute; + float: none; + top: 0; + right: 0; + margin-top: 20px; +} + +.page-other .post-title h3 { + font-size: 1.15em; + font-weight: 500; + margin: 0; +} + +@media (min-width: 1200px) { + .first-post-item .post-container { + position: relative; + } + .first-post-item .post-content { + padding: 20px; + position: absolute; + bottom: 20px; + color: #ffffff; + } + .first-post-item .post-content .post-desc { + display: none; + } + .first-post-item .post-title a { + color: #ffffff; + } + .first-post-item .post-title h3 { + font-size: 2em; + } + .first-post-item .post-author a { + color: #cccccc; + } + .first-post-item .post-comments { + color: #cccccc; + } + .first-post-item .post-comments a { + color: #cccccc; + } + .first-post-item .post-category a { + color: #dca2a2; + } + .first-post-item .post-img-link:after { + content: " "; + position: absolute; + background: rgb(0 0 0 / 33%); + height: 100%; + width: 100%; + left: 0; + } + .first-post-item .post-img-link:hover img.post-img, + .first-post-item .post-container:hover img.post-img { + transform: scale(1.2); + } +} + +.sidebar-box { + border: 1px solid #ececec; + padding: 20px; + border-radius: 3px; + margin-bottom: 24px; +} + +.sidebar-box .sidebar-title h3 { + margin: 0; + font-size: 1.5em; + font-weight: 500; +} + +.sidebar-menu { + padding: 5px 0 10px 0; +} + +.sidebar-title { + padding-bottom: 15px; +} + + +/*-----------------------------------------*/ + + +/***** COMMENTS, RATINGS AND OTHER BOX *****/ + + +/*-----------------------------------------*/ + +.page-comments { + margin-top: 24px; +} + +.comments-box-title .spoiler-jump { + top: 10px; + right: 8px; +} + +.comments-box-title { + background: #e4e7e7; + padding: 20px; + cursor: pointer; + margin-bottom: 1.3em; + position: relative; +} + +.comments-box-title a { + color: #010101; + text-decoration: none; +} + +.comments-box-title h3 { + margin: 0; + font-size: 1.3em; + font-weight: 600; +} + +.commentlist .comment { + margin-bottom: 1.3em; + padding: 20px; + position: relative; + list-style: none; +} + +.commentlist .comment img.avatar { + border-radius: 50%; + height: auto; + float: left; + width: 52px; +} + +.commentlist .comment .comments-header { + display: table; + width: 100%; + margin-bottom: 0.618em; +} + +.commentlist .comment .comments-avatar { + width: 80px; + display: table-cell; + vertical-align: top; +} + +.commentlist .comment .comment-head { + display: table-cell; + vertical-align: top; + margin-left: 10px; +} + +.commentlist .comment .comment-head .name { + font-size: 20px; + font-weight: 500; +} + +.commentlist .comment .comment-head .name a { + color: #010101; +} + +.commentlist .comment .comment-head span { + display: block; +} + +.commentlist .comment .comment-head .edit {} + +.commentlist .comment .comment-container .comment-entry { + clear: both; + margin-left: 80px; +} + +.ratings-box-title { + padding: 20px; + cursor: pointer; + margin-bottom: 1.3em; + position: relative; + border-bottom: 1px solid #e4e7e7; +} + +.ratings-box-title a { + color: #010101; + text-decoration: none; +} + +.ratings-box-title h3 { + margin: 0; + font-size: 1.3em; + font-weight: 600; +} + +.page-ratings { + margin-top: 24px; +} + +.box-title { + padding-bottom: 15px; + position: relative; +} + +.box-title h3 { + margin: 0; + font-size: 1.5em; + font-weight: 500; +} + + +/*-----------------------------------------*/ + + +/***** RECENT ITEMS - COMMENTS & POSTS *****/ + + +/*-----------------------------------------*/ + +.recent-items { + margin: 0; + padding: 0; +} + +.recent-item { + list-style-type: none; + border-bottom: 1px solid #ececec; + padding-bottom: 12px; +} + +.recent-item:last-child { + border-bottom: 0; + padding-bottom: 0; +} + +.recent-info { + display: table; + padding: 15px 15px 10px 0; +} + +.recent-date { + display: table-cell; + vertical-align: middle; + color: #cccccc; + font-size: 0.9em; + font-weight: 300; +} + +.recent-author { + display: table-cell; + vertical-align: middle; + padding-right: 15px; +} + +.recent-author-avatar { + width: 24px; + height: 24px; + border-radius: 100%; + margin-right: 10px; +} + +.recent-author a { + text-decoration: underline; + color: #010101; + font-size: 0.9em; +} + +.recent-comments { + color: #90a4ae; + padding-left: 5px; +} + +.recent-comments a { + color: #90a4ae; + padding-left: 4px; + font-size: 0.9em; + text-decoration: underline; +} + + +/*-------------------------*/ + + +/***** ALFABETICAL *****/ + + +/*-------------------------*/ + +a.alfabeta { + background: #f0f0f0; + padding: 5px 8px; + text-align: center; + margin: 2px 1px; + display: inline-block; + color: #333333; + border-radius: 4px; + font-weight: 400; + text-decoration: none; +} + +a.alfabeta:focus, +a.alfabeta:hover { + text-decoration: none; + background-color: #333; + color: #ffffff; +} + + +/*-------------------------*/ + + +/***** SIMILAR SLIDER *****/ + + +/*-------------------------*/ + +#video-section { + padding: 40px 0 40px 0; + background: #f5f5f5; +} + +.section-slider-body { + overflow: hidden; +} + +.similar-arrows { + width: 45px; + position: relative; + float: right; + margin-top: 20px; +} + +.similar-arrows .slick-prev, +.similar-arrows .slick-next { + width: 20px; + height: 20px; + border: 1px solid #cccccc; + border-radius: 4px; +} + +.similar-arrows .slick-next:before, +.similar-arrows [dir='rtl'] .slick-next:before { + content: "\ea61"; + font-size: 16px; +} + +.similar-arrows .slick-prev:before, +.similar-arrows [dir='rtl'] .slick-prev:before { + content: "\ea60"; + font-size: 16px; +} + +.similar-item .post-desc { + display: none; +} + + +/*-------------------------*/ + + +/***** POLLS *****/ + + +/*-------------------------*/ + +.poll-item { + padding: 7px 0; +} + +.poll-title { + font-size: 1em; + font-weight: 500; +} + +.poll-title h5 { + font-weight: 500; + line-height: 1.35em; + font-size: 1em; + margin-top: 0; + padding-top: 0; +} + +.poll-submit { + text-align: center; + padding-top: 10px; +} + +.poll-box { + border: 1px solid #d4d4d4; + padding: 20px; + margin-bottom: 24px; +} + +.forum-poll-form { + padding-bottom: 20px; +} + +.poll-info { + color: #cccccc; +} + +.poll-btn { + padding-top: 15px; +} + +.poll-head-table { + width: 100%; + display: table; +} + +.poll-title-td { + display: table-cell; + vertical-align: middle; + padding: 5px; +} + +.poll-count-td { + display: table-cell; + vertical-align: middle; + width: 30px; + text-align: right; + padding: 5px; +} + +.poll-bar { + width: 100%; +} + +#pollvotes, +#pollajx { + position: relative; +} + +.add-poll-label { + display: block; + padding: 12px 0 5px 0; + color: #7d7878; + font-weight: 300; +} + +.add-poll-title {} + +.add-poll-options { + display: block; + padding: 12px; + border: 1px dotted #e4e2e2; +} + +.add-poll-option { + padding: 5px 0; +} + +.add-poll-option>span { + color: #7d7878; + font-weight: 300; +} + +.poll-addoption { + overflow: hidden; + border: none; + background: none; + border-bottom: 1px dotted #010101; +} + +.poll-option-delete { + overflow: hidden; + border: none; + background: none; + border: 1px solid #e4e2e2; + width: 26px; + line-height: 0.8em; + margin-left: 10px; + color: #ff0000; + border-radius: 2px; + height: 26px; +} + +.poll-option-delete:hover { + color: #ffffff; + border: 1px solid #010101; + background: #010101; +} + + +/*-------------------------*/ + + +/***** POST IN SIDEBAR *****/ + + +/*-------------------------*/ + +.post-sidebar-big-item { + padding: 12px 0; +} + +.post-sidebar-small-item { + padding: 6px 0; +} + +.post-sidebar-small-item .post-container { + width: 100%; + height: 100%; + overflow: hidden; + position: relative; + display: table; +} + +.post-sidebar-small-item .post-img-link { + display: table-cell; + vertical-align: top; + width: 80px; + height: auto; +} + +.post-sidebar-small-item .post-content { + display: table-cell; + vertical-align: top; + padding-left: 15px; +} + +.post-sidebar-small-item .post-container img.post-img { + height: auto; + transform: scale(1); +} + +.post-sidebar-small-item .post-container img.post-img:hover { + transform: scale(1); +} + +.post-sidebar-small-item .post-title { + padding-bottom: 4px; +} + +.post-sidebar-small-item .post-title h3 { + font-size: 0.9em; + line-height: 1.3em; +} + +.post-sidebar-small-item .post-author-avatar { + width: 16px; + height: 16px; +} + +.post-sidebar-first { + padding-top: 5px; +} + + +/*-------------------------*/ + + +/***** PAGE & OTHER TEXT *****/ + + +/*-------------------------*/ + +.page-text { + font-size: 1.1em; + padding: 20px 0 10px 0; +} + +.forum-text { + font-size: 1.1em; + line-height: 1.45em; +} + +.forum-text table td img, +.page-text table td img { + margin: 0px; +} + +.forum-text table td, +.page-text table td { + border: 1px solid #e8e4e3; + padding: 1em; + vertical-align: top; + text-align: left; +} + +.forum-text table .page-text table { + margin: 0 5px 15px 5px; + width: auto !important; +} + +.forum-text table[align="center"], +.page-text table[align="center"] { + margin: 0 auto 15px auto; +} + +.forum-text ul, +.page-text ul, +.page-textol { + margin: 0 0 20px 20px; +} + +.forum-text ul li, +.page-text ul li { + list-style: disc; + margin: 10px 0; +} + +.forum-text ol li, +.page-text ol li { + list-style: decimal; + margin: 10px 0; +} + +.forum-text blockquote, +.page-text blockquote { + color: #999999; + font-style: italic; + margin: 0.5em 0 1em; + padding: 0.25em 50px; + line-height: 1.45; + position: relative; +} + +.forum-text blockquote:before, +.page-text blockquote:before { + display: block; + content: "\201C"; + font-size: 80px; + position: absolute; + left: -10px; + top: -20px; + color: #cccccc; +} + +.forum-text blockquote cite, +.page-text blockquote cite { + color: #333333; + display: block; + margin-top: 10px; +} + +.forum-text blockquote cite:before, +.page-text blockquote cite:before { + content: "\2014 \2009"; +} + +.forum-text img, +.page-text img { + max-width: 100%; + height: auto !important; +} + +#page .section-title h2, +#page .section-title h1 { + padding: 0 0 10px 0; + font-weight: 600; +} + +.page-date { + padding: 0; + color: #cccccc; + font-size: 0.9em; + font-weight: 300; + display: inline-block; +} + +.page-rating { + padding: 0; + color: #cccccc; + font-size: 0.9em; + font-weight: 300; + display: inline-block; +} + +.page-rating a { + color: #cccccc; + text-decoration: none; +} + +.page-download { + text-align: center; + display: block; + text-decoration: none; + color: #000; + background-color: #f2f2f2; + padding: 15px; + margin-top: 15px; + border: 1px dashed #ddd; + border-radius: 5px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + word-wrap: break-word; +} + + +/*-------------------------*/ + + +/***** FORUMS *****/ + + +/*-------------------------*/ + +.forums-table h4 { + margin: 0 0 10px 0; + font-weight: 500; +} + +.forums-table .avatar { + width: 100px; + height: 100px; + border-radius: 0; + margin-right: 0!important; + display: inline-block!important; +} + +.forums-table .table-td { + padding: 1em 0.8em; + vertical-align: middle; +} + +.forums-table .table-td.forums-topics-info { + padding: 0; +} + +.forums-topics-viewers { + text-align: right; +} + +.forums-post-table .table-td { + vertical-align: top; +} + +.forums-post-message { + overflow-x: auto; + overflow-y: visible; + margin-bottom: 8px; +} + +.forums-table .cattop h4 { + margin: 0; + font-weight: 600; + font-size: 1.4em; +} + +.forums-table .cattop { + vertical-align: middle; + border-top: 1px solid #ccc; + border-bottom: 1px solid #fff; +} + +.forums-main-table .cattop-tr { + height: 34px; + position: relative; +} + +.table-cells-subtable { + margin: 0; + padding: 0; +} + +.even.forums-message-td { + background: #f3f3f3; +} + +.odd.forums-message-td { + background: #f9f9f9; +} + +ul.subforums-list { + list-style: none; + padding: 25px 0 0 25px; + margin: 0 0 0 15px; +} + +ul.subforums-list li { + position: relative; + padding: 5px 0 5px 10px; + line-height: 1em; +} + +ul.subforums-list li a { + vertical-align: middle; +} + +ul.subforums-list li::before { + background: url("/system/img/vars/subforums.svg") center center no-repeat; + background-size: 16px; + line-height: 2.1em; + content: ""; + color: #636369; + display: inline-block; + width: 16px; + height: 16px; + vertical-align: middle; + position: absolute; + left: -15px; +} + +.forum-lastpost {} + +.forum-lastposter { + font-size: 0.9em; + color: #8c8c8c; +} + +.forum-timeago { + font-size: 0.9em; +} + +.forums-main-table .desc { + color: #8c8c8c; + font-size: 0.9em; +} + + +/*-------------------------*/ + + +/***** FOOTER *****/ + + +/*-------------------------*/ + +#footer { + background: #313139; + display: block; + color: #ffffff; +} + +#footer a { + color: #ccd5e8; +} + +.footer-top { + padding: 30px 0 30px 0; +} + +#footer h3 { + color: #ffffff; + font-weight: 500; + font-size: 1.5em; +} + +.footer-wrapper { + display: table; + width: 100%; +} + +.footer-about-col { + display: table-cell; + width: 40%; + padding-right: 30px; + vertical-align: top; +} + +.footer-menu-col { + display: table-cell; + width: 36%; + vertical-align: top; + padding-top: 50px; +} + +.footer-menu-table { + display: table; + width: 100%; + max-width: 350px; + margin: 0 auto; +} + +.footer-menu-table-col { + display: table-cell; + width: 50%; + vertical-align: top; +} + +.footer-social-col { + display: table-cell; + vertical-align: top; + padding-top: 50px; +} + +.footer-social-col .socialmedia li a { + color: #ffffff; +} + +.footer-social-col .socialmedia li { + padding: 0; + margin-right: 3px; +} + +.footer-social-col .socialmedia li a { + display: inline-block; + padding: 8px 10px; + text-align: center; + line-height: 1; + font-size: 1.05em; + border: 1px solid #494952; + background: #41414a; + border-radius: 3px; +} + +.footer-social-col .socialmedia li a:hover { + background: #2e2e33; +} + +.footer-menu ul, +.footer-auth { + list-style: none; + padding: 0; + margin: 0; +} + +.footer-menu ul { + margin-left: 15px; +} + +.footer-menu ul li, +.footer-auth li { + padding: 3px 0; + position: relative; +} + +.footer-menu ul li::before { + font-family: 'Seditio' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 2.1em; + content: "\ea61"; + color: #636369; + font-weight: bold; + display: inline-block; + width: 0.8em; + font-size: 0.6em; + vertical-align: bottom; + position: absolute; + left: -15px; +} + +.footer-menu a, +.footer-auth a { + color: #f5f5f5; +} + +.footer-auth { + margin: 20px 0 0 0; + color: #ccd5e8; +} + +.footer-bottom { + background: #41414a; + padding: 15px 0; +} + +.footer-bottom p { + margin: 0; + padding: 0; +} + +.footer-bottom-table { + display: table; + width: 100%; +} + +.footer-bottom-copyright { + display: table-cell; + vertical-align: midlle; + width: 60%; +} + +.footer-bottom-dev { + display: table-cell; + vertical-align: midlle; + text-align: right; +} + +.footer-stat { + font-size: 0.8em; + color: #7d7d81; +} \ No newline at end of file diff --git a/skins/sympfy/fonts/Seditio/Read Me.txt b/skins/sympfy/fonts/Seditio/Read Me.txt new file mode 100644 index 0000000..8491652 --- /dev/null +++ b/skins/sympfy/fonts/Seditio/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/skins/sympfy/fonts/Seditio/Seditio.eot b/skins/sympfy/fonts/Seditio/Seditio.eot new file mode 100644 index 0000000..0b7e10d Binary files /dev/null and b/skins/sympfy/fonts/Seditio/Seditio.eot differ diff --git a/skins/sympfy/fonts/Seditio/Seditio.svg b/skins/sympfy/fonts/Seditio/Seditio.svg new file mode 100644 index 0000000..247b261 --- /dev/null +++ b/skins/sympfy/fonts/Seditio/Seditio.svg @@ -0,0 +1,236 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/skins/sympfy/fonts/Seditio/Seditio.ttf b/skins/sympfy/fonts/Seditio/Seditio.ttf new file mode 100644 index 0000000..7a04384 Binary files /dev/null and b/skins/sympfy/fonts/Seditio/Seditio.ttf differ diff --git a/skins/sympfy/fonts/Seditio/Seditio.woff b/skins/sympfy/fonts/Seditio/Seditio.woff new file mode 100644 index 0000000..126da6a Binary files /dev/null and b/skins/sympfy/fonts/Seditio/Seditio.woff differ diff --git a/skins/sympfy/fonts/Seditio/demo-files/demo.css b/skins/sympfy/fonts/Seditio/demo-files/demo.css new file mode 100644 index 0000000..a91b92b --- /dev/null +++ b/skins/sympfy/fonts/Seditio/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 24px; +} + diff --git a/skins/sympfy/fonts/Seditio/demo-files/demo.js b/skins/sympfy/fonts/Seditio/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/skins/sympfy/fonts/Seditio/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/skins/sympfy/fonts/Seditio/demo.html b/skins/sympfy/fonts/Seditio/demo.html new file mode 100644 index 0000000..7b340fe --- /dev/null +++ b/skins/sympfy/fonts/Seditio/demo.html @@ -0,0 +1,3202 @@ + + + + + IcoMoon Demo + + + + + +
    +

    Font Name: Seditio (Glyphs: 226)

    +
    +
    +

    Grid Size: Unknown

    +
    +
    + + ic-arrow-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-l +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-t +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-b +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-r +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arr-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arr-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arr-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arr-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-left-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-left-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-right-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-right-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-up-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-left-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-right-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-left-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-right-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-up-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-sort +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-horizontal +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-vertical +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-maximize +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-check-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-at +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-award +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-adjustments +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-alarm +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-alert-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-alert-triangle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-banlist +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pages +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-bookmark +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-briefcase +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calendar-time +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calendar-event +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calendar +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-camera +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chart-area-line +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-hits +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-settings +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-tool +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chart-candle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-minus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-x +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-clock +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-download +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-upload +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-code +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-compass +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-copy +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-credit-card +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cache +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-device-desktop +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-directions +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-dots +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-download +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-edit +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-external-link +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-eye +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-eye-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-filter +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-flag +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-folder +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-folders +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-heart +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-home +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-home-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-id +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-key +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-location +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-lock +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-unlock +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-lock-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-mail-opened +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-mail +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-map-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-map-pin +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-mood-happy +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-smilies +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-news +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pencil +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phone-call +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phone-incoming +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-image +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-photo +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-power +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-refresh +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-rotate-clockwise +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-search +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-server +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-share +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shield-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shopping-cart +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-star +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-tag +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-thumb-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-thumb-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-trash-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-trash +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-unlink +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-paperclip +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-link +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-upload +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-minus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-x +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-referers +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-close +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-zoom-in +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-zoom-out +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-polls +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-comments +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-repeat +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-anchor +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calculator +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-notebook +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-login +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-logout +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-rotate-clockwise-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brush +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-gallery +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-tools +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-wand +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-plug +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-color-picker +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-users +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phone-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-camera-minus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-camera-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-menu +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-ratings +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-separator-vertical +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-page-break +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-select +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-forums +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-index +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-discord +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-pocket +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-bookmarks +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-stars +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message-circle-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-speakerphone +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-star-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-manual-gearbox +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-admin +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pm +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-page +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chart-pie +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-discount +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-edit-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-list-search +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pacman +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-settings-automation +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shopping-cart-discount +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shopping-cart-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-hand-move +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-report-search +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-trash-x +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-world-upload +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shield-checkered +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-quote +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-dic +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-plug-connected +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-paper-bag +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-file-pencil +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-file-typography +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pfs +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-clock-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-typography +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-typography-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-computing +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-data-connection +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-rss +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-zap +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-zap-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-youtube +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-movie +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-github +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-telegram +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-google-drive +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-instagram +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-github +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-facebook +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-ok +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-twitter +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-socialbtn +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-vk +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-whatsapp +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-telegram +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-youtube +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phoneblack +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-instagram +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-twitter +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-whatsapp +
    +
    + + +
    +
    + liga: + +
    +
    +
    + + +
    +

    Font Test Drive

    + + +
      +
    +
    + +
    +

    Generated by IcoMoon

    +
    + + + + diff --git a/skins/sympfy/fonts/Seditio/selection.json b/skins/sympfy/fonts/Seditio/selection.json new file mode 100644 index 0000000..f8749f6 --- /dev/null +++ b/skins/sympfy/fonts/Seditio/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M541.423 182.973c-2.314 0-6.942 1.157-9.255 1.157s-9.255 2.314-12.725 4.628c-11.937 5.97-300.742 295.697-310.046 311.202-7.011 10.516-7.174 30.886 0 41.648 9.304 15.506 298.109 305.234 310.046 311.202 23.989 15.993 56.744-3.582 64.785-19.667 2.882-5.764 5.785-14.045 5.785-23.138s-2.894-17.357-5.785-23.138c-2.314-3.47-32.393-34.707-108.747-111.061l-105.277-106.434h279.966c182.788 0 281.124 0 285.751-1.157 17.708-5.904 26.541-13.782 35.863-27.765 3.47-5.785 2.314-6.942 2.314-19.667 0-29.928-15.725-39.948-38.177-47.432-4.628-1.157-102.963-1.157-285.751-1.157h-279.966l105.277-106.434c76.355-76.355 106.434-107.59 108.747-111.061 2.882-5.764 5.785-14.045 5.785-23.138 0-28.4-17.952-40.304-39.334-47.432-3.47-1.157-6.942-1.157-9.255-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-left"],"defaultCode":59929,"grid":0},"properties":{"id":38,"order":232,"ligatures":"","prevSize":24,"code":59929,"name":"arrow-left"},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M243.737 535.020l226.056-226.056v494.819c0 23.575 19.134 42.709 42.709 42.709s42.709-19.134 42.709-42.709v-494.819l226.056 226.056c16.699 16.699 43.734 16.699 60.39 0s16.699-43.734 0-60.39l-298.959-298.959c-3.929-3.929-8.627-7.090-13.838-9.268s-10.806-3.246-16.357-3.246c-10.934 0-21.866 4.185-30.194 12.513l-298.959 298.959c-16.699 16.699-16.699 43.734 0 60.39s43.734 16.699 60.39 0z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up"],"defaultCode":59649,"grid":0},"properties":{"id":2,"order":196,"ligatures":"","prevSize":24,"code":59649,"name":"arrow-up"},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M592.325 135.54c-30.861 0-42.023 16.165-49.747 39.334-1.157 3.47-1.157 102.963-1.157 285.751v279.966l-106.434-105.277c-76.355-76.355-107.59-106.434-111.061-108.747-5.764-2.882-14.045-5.785-23.138-5.785-27.198 0-41.855 18.183-47.432 40.491-2.029 10.146 0.283 23.562 4.628 30.079 5.97 11.937 295.697 300.742 311.202 310.046 10.516 7.011 30.886 7.174 41.648 0 15.506-9.304 305.234-298.109 311.202-310.046 4.035-8.071 6.843-19.002 4.628-30.079l-4.628-13.883c-4.953-14.861-23.352-26.608-42.805-26.608-9.094 0-17.357 2.894-23.138 5.785-3.47 2.314-34.707 32.393-111.061 108.747l-106.434 105.277v-279.966c0-182.788 0-281.124-1.157-285.751-5.904-17.708-13.782-26.541-27.765-35.863-5.785-2.314-8.098-3.47-17.353-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down"],"defaultCode":59926,"grid":0},"properties":{"id":37,"order":231,"ligatures":"","prevSize":24,"code":59926,"name":"arrow-down"},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M640.915 184.13c-29.679 0-50.903 17.515-50.903 47.432 0 9.094 2.894 17.357 5.785 23.138 2.314 3.47 32.393 34.707 108.747 111.061l105.277 106.434h-279.966c-182.788 0-281.124 0-285.751 1.157-17.708 5.904-26.541 13.782-35.863 27.765-3.47 5.785-2.314 6.942-2.314 19.667 0 29.928 15.725 39.948 38.177 47.432 4.628 1.157 102.963 1.157 285.751 1.157h279.966l-105.277 106.434c-76.355 76.355-106.434 107.59-108.747 111.061-2.882 5.764-5.785 14.045-5.785 23.138 0 19.757 11.689 37.831 26.608 42.805l13.883 4.628c11.097 2.219 22.003-0.59 30.079-4.628 11.937-5.97 300.742-295.697 310.046-311.202 7.011-10.516 7.174-30.886 0-41.648-9.012-15.018-298.959-305.081-306.574-308.889-6.051-3.025-13.202-6.942-23.138-6.942z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-right"],"defaultCode":59935,"grid":0},"properties":{"id":43,"order":237,"ligatures":"","prevSize":24,"code":59935,"name":"arrow-right"},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M348.223 231.562c-27.222 0-47.432 20.53-47.432 47.432 0 9.019 3.909 19.387 6.942 25.452 2.314 3.47 75.197 77.512 203.612 207.082l201.299 201.299h-157.337c-87.923 0-159.65 0-164.277 1.157-22.638 7.545-41.648 17.464-41.648 47.432 0 24.605 14.048 41.4 33.55 46.275 6.942 2.314 11.569 2.314 233.691 2.314h225.592c8.52-4.261 15.007-5.752 23.138-13.883s9.62-14.615 13.883-23.138v-225.592c0-222.122 0-226.749-2.314-233.691-4.889-19.552-21.611-33.55-46.275-33.55-23.212 0-34.821 11.796-42.805 27.765-2.314 4.628-4.628 10.412-4.628 15.040s-1.157 77.512-1.157 164.277v156.18l-201.299-201.299c-129.572-129.572-203.612-201.299-207.082-203.612-6.416-3.207-15.587-6.942-25.452-6.942z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-right"],"defaultCode":59925,"grid":0},"properties":{"id":36,"order":230,"ligatures":"","prevSize":24,"code":59925,"name":"arrow-down-right"},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M830.644 231.562c-9.878 0-19.014 3.722-25.452 6.942-2.314 1.157-94.865 92.55-205.926 203.612l-201.299 201.299v-156.18c0-86.767-1.157-159.65-1.157-164.277 0-24.602-23.019-42.805-47.432-42.805-24.183 0-41.391 14.016-46.275 33.55-2.314 8.098-2.314 10.412-2.314 233.691v225.592c4.261 8.52 5.752 15.007 13.883 23.138s14.615 9.62 23.138 13.883h225.592c222.122 0 226.749 0 233.691-2.314 19.797-4.949 33.55-21.246 33.55-46.275 0-29.468-19.022-39.889-41.648-47.432-4.628-1.157-76.355-1.157-164.277-1.157h-157.337l201.299-201.299c129.572-129.572 201.299-203.612 203.612-207.082 3.031-6.062 6.942-16.416 6.942-25.452 0-27.771-20.831-47.432-48.589-47.432z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-left"],"defaultCode":59923,"grid":0},"properties":{"id":34,"order":228,"ligatures":"","prevSize":24,"code":59923,"name":"arrow-down-left"},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M341.667 718.368v-323.985l354.181 354.181c16.699 16.699 43.734 16.699 60.39 0s16.699-43.734 0-60.39l-354.181-354.181h323.985c23.575 0 42.709-19.134 42.709-42.709s-19.134-42.709-42.709-42.709h-427.084c-23.575 0-42.709 19.134-42.709 42.709v427.084c0 23.575 19.134 42.709 42.709 42.709s42.709-19.134 42.709-42.709z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-left"],"defaultCode":59650,"grid":0},"properties":{"id":3,"order":197,"ligatures":"","prevSize":24,"code":59650,"name":"arrow-up-left"},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M298.959 333.992h323.985l-354.181 354.181c-16.699 16.699-16.699 43.734 0 60.39s43.734 16.699 60.39 0l354.181-354.181v323.985c0 23.575 19.134 42.709 42.709 42.709s42.709-19.134 42.709-42.709v-427.084c0-5.809-1.153-11.318-3.246-16.357s-5.168-9.738-9.225-13.794c-0.043-0.043-0.043-0.043-0.085-0.085-3.929-3.929-8.627-7.090-13.794-9.225-5.040-2.093-10.549-3.246-16.357-3.246h-427.084c-23.575 0-42.709 19.134-42.709 42.709s19.134 42.709 42.709 42.709z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-right"],"defaultCode":59651,"grid":0},"properties":{"id":4,"order":198,"ligatures":"","prevSize":24,"code":59651,"name":"arrow-up-right"},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M794.643 62.81l-457.728 459.222 457.728 459.222-53.454 53.278-510.833-512.5 510.833-512.5z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-l"],"defaultCode":59666,"grid":0},"properties":{"id":19,"order":213,"ligatures":"","prevSize":24,"code":59666,"name":"arrow-l"},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M540.627 235.572l472.782 474.093c15.481 15.533 15.455 40.682-0.080 56.189-15.533 15.495-40.696 15.455-56.189-0.080l-444.642-445.873-444.64 445.889c-15.495 15.533-40.642 15.573-56.177 0.080-7.788-7.774-11.681-17.958-11.681-28.141 0-10.158 3.868-20.302 11.601-28.061l472.77-474.095c7.443-7.481 17.573-11.679 28.127-11.679s20.672 4.21 28.129 11.679z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-t"],"defaultCode":59680,"grid":0},"properties":{"id":27,"order":221,"ligatures":"","prevSize":24,"code":59680,"name":"arrow-t"},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M540.627 765.786l472.782-474.093c15.481-15.533 15.455-40.682-0.080-56.189-15.533-15.495-40.696-15.455-56.189 0.080l-444.642 445.873-444.64-445.889c-15.495-15.533-40.642-15.573-56.177-0.080-7.788 7.774-11.681 17.958-11.681 28.141 0 10.158 3.868 20.302 11.601 28.061l472.77 474.095c7.443 7.481 17.573 11.679 28.127 11.679s20.672-4.21 28.129-11.679z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-b"],"defaultCode":59679,"grid":0},"properties":{"id":26,"order":220,"ligatures":"","prevSize":24,"code":59679,"name":"arrow-b"},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M283.81 9.532l-53.454 53.278 457.728 459.222-457.728 459.222 53.454 53.278 510.833-512.5z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-r"],"defaultCode":59667,"grid":0},"properties":{"id":20,"order":214,"ligatures":"","prevSize":24,"code":59667,"name":"arrow-r"},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M273.286 338.563v151.549h754.278v25.625h-754.278v155.352l-270.723-166.263 135.361-83.13z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arr-left"],"defaultCode":59676,"grid":0},"properties":{"id":23,"order":217,"ligatures":"","prevSize":24,"code":59676,"name":"arr-left"},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M681.325 263.049h-151.549v754.278h-25.625v-754.278h-155.352l166.263-270.723 83.13 135.361z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arr-up"],"defaultCode":59678,"grid":0},"properties":{"id":25,"order":219,"ligatures":"","prevSize":24,"code":59678,"name":"arr-up"},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M681.325 746.603h-151.549v-754.278h-25.625v754.278h-155.352l166.263 270.723 83.13-135.361z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arr-down"],"defaultCode":59675,"grid":0},"properties":{"id":22,"order":216,"ligatures":"","prevSize":24,"code":59675,"name":"arr-down"},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M756.84 338.563v151.549h-754.278v25.625h754.278v155.352l270.723-166.263-135.361-83.13z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arr-right"],"defaultCode":59677,"grid":0},"properties":{"id":24,"order":218,"ligatures":"","prevSize":24,"code":59677,"name":"arr-right"},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M586.541 38.362c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM587.698 135.54c-11.569 0-26.608 1.157-32.393 1.157-15.122 0-33.721 5.62-48.589 8.098-34.682 5.78-58.192 16.37-87.923 31.236-45.116 24.608-82.604 48.361-114.532 85.61-18.381 21.443-35.956 41.833-48.589 67.1l-10.412 20.824c-23.627 47.255-40.491 100.863-40.491 171.219 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c42.901-28.601 77.075-72.928 104.12-118.002 14.378-23.963 25.023-55.403 34.707-84.452 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM588.855 327.584c-127.257 0-150.395 1.157-156.18 2.314-18.588 6.195-27.244 14.632-33.55 33.55-1.157 5.785-2.314 25.452-2.314 156.18 0 106.434 0 150.395 1.157 155.022 6.817 20.448 24.451 44.393 55.53 38.177 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-33.55 1.157-93.708v-86.767l105.277 105.277c92.55 92.55 107.59 105.277 113.375 108.747 16.995 11.329 45.442 1.99 55.53-8.098 10.86-10.86 22.003-37.564 9.255-56.687-3.47-5.785-16.197-20.824-108.747-113.375l-105.277-105.277h86.767c78.028 0 84.007 1.692 106.434-5.785 18.256-6.085 36.4-41.424 20.824-64.785-4.885-7.325-11.949-17.864-20.824-20.824-3.47-1.157-9.255-3.47-12.725-4.628-4.628-1.157-49.747-1.157-155.022-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-left-circle"],"defaultCode":59937,"grid":0},"properties":{"id":45,"order":239,"ligatures":"","prevSize":24,"code":59937,"name":"arrow-up-left-circle"},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M586.541 38.362c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM587.698 135.54c-11.569 0-26.608 1.157-32.393 1.157-15.122 0-33.721 5.62-48.589 8.098-34.682 5.78-58.192 16.37-87.923 31.236-45.116 24.608-82.604 48.361-114.532 85.61-18.381 21.443-35.956 41.833-48.589 67.1l-10.412 20.824c-23.627 47.255-40.491 100.863-40.491 171.219 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c42.901-28.601 77.075-72.928 104.12-118.002 14.378-23.963 25.023-55.403 34.707-84.452 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM444.244 327.584c-26.626 0-39.419 19.926-46.275 40.491-1.157 4.628-1.157 47.432-1.157 157.337l1.157 150.395c6.838 20.508 16.125 30.056 37.020 37.020l150.395 1.157c109.904 0 152.709 0 157.337-1.157l13.883-4.628c18.256-6.085 36.4-41.424 20.824-64.785-4.885-7.325-11.949-17.864-20.824-20.824-22.633-7.544-28.187-5.785-106.434-5.785h-86.767l105.277-105.277c92.55-92.55 105.277-107.59 108.747-113.375 15.463-23.196-2.816-58.783-20.824-64.785-12.025-4.009-31.248-8.475-43.962 0-5.785 3.47-20.824 16.197-113.375 108.747l-105.277 105.277v-86.767c0-60.158 0-89.080-1.157-93.708-7.152-21.454-20.639-39.334-48.589-39.334z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-left-circle"],"defaultCode":59922,"grid":0},"properties":{"id":33,"order":227,"ligatures":"","prevSize":24,"code":59922,"name":"arrow-down-left-circle"},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M586.541 17.009c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM587.698 114.187c-11.569 0-26.608 1.157-32.393 1.157-15.122 0-33.721 5.62-48.589 8.098-34.682 5.78-58.192 16.37-87.923 31.236-45.116 24.608-82.604 48.361-114.532 85.61-18.381 21.443-35.956 41.833-48.589 67.1l-10.412 20.824c-23.627 47.255-40.491 100.863-40.491 171.219 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c42.901-28.601 77.075-72.928 104.12-118.002 14.378-23.963 25.023-55.403 34.707-84.452 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM444.244 306.23c-26.99 0-52.41 26.016-46.275 56.687 1.157 4.628 2.314 10.412 4.628 13.883 3.47 5.785 16.197 20.824 108.747 113.375l105.277 105.277h-86.767c-60.158 0-89.080 0-93.708 1.157-20.448 6.817-44.393 24.451-38.177 55.53 4.158 16.63 12.948 26.371 25.452 34.707 3.47 2.314 10.412 3.47 13.883 4.628 4.628 1.157 47.432 1.157 157.337 1.157l150.395-1.157c20.508-6.838 30.056-16.125 37.020-37.020l1.157-150.395c0-109.904 0-152.709-1.157-157.337-4.702-14.106-11.384-30.016-25.452-34.707-12.025-4.009-31.248-8.475-43.962 0-12.272 8.182-20.324 18.17-25.452 33.55-1.157 4.628-1.157 33.55-1.157 93.708v86.767l-106.434-105.277c-90.237-90.237-106.434-106.434-112.218-108.747-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-right-circle"],"defaultCode":59924,"grid":0},"properties":{"id":35,"order":229,"ligatures":"","prevSize":24,"code":59924,"name":"arrow-down-right-circle"},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M586.541 38.362c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM587.698 135.54c-11.569 0-26.608 1.157-32.393 1.157-15.122 0-33.721 5.62-48.589 8.098-34.682 5.78-58.192 16.37-87.923 31.236-45.116 24.608-82.604 48.361-114.532 85.61-18.381 21.443-35.956 41.833-48.589 67.1l-10.412 20.824c-23.627 47.255-40.491 100.863-40.491 171.219 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c42.901-28.601 77.075-72.928 104.12-118.002 14.378-23.963 25.023-55.403 34.707-84.452 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM592.325 327.584c-139.349 0-144.141-2.857-170.062 5.785-17.735 5.912-34.389 42.704-19.667 64.785 8.182 12.272 18.17 20.324 33.55 25.452 4.628 1.157 33.55 1.157 93.708 1.157h86.767l-105.277 105.277c-92.55 92.55-105.277 107.59-108.747 113.375-6.899 10.347-7.212 33.142 0 43.962 9.105 13.657 25.454 30.542 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 5.785-2.314 20.824-18.51 112.218-108.747l106.434-105.277v86.767c0 60.158 0 89.080 1.157 93.708 6.817 20.448 24.451 44.393 55.53 38.177 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-47.432 1.157-157.337l-1.157-150.395c-6.838-20.508-16.125-30.056-37.020-37.020l-152.709-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-right-circle"],"defaultCode":59939,"grid":0},"properties":{"id":46,"order":240,"ligatures":"","prevSize":24,"code":59939,"name":"arrow-up-right-circle"},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M599.267 39.52c13.883 0 31.236 0 40.491 1.157 143.879 17.985 245.278 83.509 320.457 171.219 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 87.889-18.763 153.216-48.589 212.867-22.134 44.267-45.51 81.374-78.668 114.532l-26.608 26.608c-23.216 23.216-49.658 42.423-78.668 59.002-67.568 38.611-142.265 68.257-248.731 68.257-44.169 0-70.007-0.666-104.12-10.412-40.884-11.682-72.227-19.916-108.747-38.177-44.267-22.134-81.374-45.51-114.532-78.668l-26.608-26.608c-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c34.998-69.996 86.228-125.883 148.082-170.062 56.448-40.319 123.325-72.487 207.082-84.452 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 135.54c-12.725 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.236 10.412-69.754 36.41-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-21.524 32.285-34.481 69.777-46.275 111.061-8.266 28.929-11.569 55.623-11.569 92.55 0 48.193 7.83 81.776 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 15.887 47.662 45.335 82.399 74.040 116.845 11.678 14.015 32.493 31.31 46.275 41.648 26.914 20.186 67.759 43.253 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 64.944 0 112.938-10.238 159.65-28.922 91.108-36.443 152.812-102.574 197.827-185.102 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-32.584-21.721-69.337-34.354-111.061-46.275-29.939-8.555-56.259-11.569-94.865-11.569zM593.483 280.152c-11.047 0-16.349-0.671-24.295 4.628-14.779 8.868-210.317 204.298-212.867 209.396-4.241 8.482-6.942 15.467-6.942 28.922 0 27.044 18.334 39.58 40.491 45.118 5.785 1.157 9.255 1.157 15.040 0l13.883-4.628c5.785-2.314 16.197-11.569 64.785-60.158l57.844-57.844v135.355c0 85.61 0 137.669 1.157 141.14 5.904 17.708 13.782 26.541 27.765 35.863 5.785 3.47 6.942 3.47 19.667 3.47 29.362 0 40.144-17.468 47.432-39.334 1.157-3.47 1.157-55.53 1.157-141.14v-135.355l57.844 57.844c48.589 48.589 59.002 57.844 64.785 60.158 11.913 3.972 31.196 8.51 43.962 0 9.595-4.797 16.383-14.739 21.98-23.138 3.47-5.785 3.47-6.942 3.47-19.667s0-13.883-3.47-20.824c-3.47-5.785-16.197-17.353-104.12-106.434l-105.277-105.277c-4.612-4.612-15.901-8.098-24.295-8.098z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-circle"],"defaultCode":59936,"grid":0},"properties":{"id":44,"order":238,"ligatures":"","prevSize":24,"code":59936,"name":"arrow-up-circle"},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M599.267 39.52c13.883 0 31.236 0 40.491 1.157 143.879 17.985 245.278 83.509 320.457 171.219 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 87.889-18.763 153.216-48.589 212.867-22.134 44.267-45.51 81.374-78.668 114.532l-26.608 26.608c-23.216 23.216-49.658 42.423-78.668 59.002-67.568 38.611-142.265 68.257-248.731 68.257-44.169 0-70.007-0.666-104.12-10.412-40.884-11.682-72.227-19.916-108.747-38.177-44.267-22.134-81.374-45.51-114.532-78.668l-26.608-26.608c-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c34.998-69.996 86.228-125.883 148.082-170.062 56.448-40.319 123.325-72.487 207.082-84.452 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 135.54c-12.725 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.236 10.412-69.754 36.41-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-21.524 32.285-34.481 69.777-46.275 111.061-8.266 28.929-11.569 55.623-11.569 92.55 0 48.193 7.83 81.776 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 15.887 47.662 45.335 82.399 74.040 116.845 11.678 14.015 32.493 31.31 46.275 41.648 26.914 20.186 67.759 43.253 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 64.944 0 112.938-10.238 159.65-28.922 91.108-36.443 152.812-102.574 197.827-185.102 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-32.584-21.721-69.337-34.354-111.061-46.275-29.939-8.555-56.259-11.569-94.865-11.569zM592.325 280.152c-30.861 0-42.023 16.165-49.747 39.334-1.157 3.47-1.157 55.53-1.157 141.14v135.355l-57.844-57.844c-48.589-48.589-59.002-57.844-64.785-60.158-11.913-3.972-31.196-8.51-43.962 0-9.595 4.797-16.383 14.739-21.98 23.138-3.47 5.785-3.47 6.942-3.47 19.667s0 13.883 3.47 20.824c3.47 5.785 16.197 17.353 104.12 106.434l105.277 105.277c5.899 5.899 16.298 8.098 27.765 8.098 11.504 0 21.845-2.178 27.765-8.098l105.277-105.277c87.923-89.080 100.649-100.649 104.12-106.434 3.47-6.942 3.47-8.098 3.47-20.824 0-18.534-3.73-23.397-12.725-32.393-8.706-8.706-23.419-18.917-42.805-15.040l-13.883 4.628c-5.785 2.314-16.197 11.569-64.785 60.158l-57.844 57.844v-135.355c0-85.61 0-137.669-1.157-141.14-5.904-17.708-13.782-26.541-27.765-35.863-5.785-2.314-8.098-3.47-17.353-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-circle"],"defaultCode":59921,"grid":0},"properties":{"id":32,"order":226,"ligatures":"","prevSize":24,"code":59921,"name":"arrow-down-circle"},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M446.558 280.152c-14.518 0-19.199 2.658-27.765 6.942-5.098 2.549-200.529 198.087-209.396 212.867-7.011 10.516-7.174 30.886 0 41.648 8.868 14.779 204.298 210.317 209.396 212.867 8.482 4.241 15.467 6.942 28.922 6.942 27.044 0 39.58-18.334 45.118-40.491 1.157-5.785 1.157-9.255 0-15.040l-4.628-13.883c-2.314-5.785-11.569-16.197-60.158-64.785l-57.844-57.844h281.124c245.26 0 281.124 0 286.908-1.157 20.546-6.849 35.863-18.655 35.863-47.432 0-29.2-14.38-40.271-35.863-47.432-5.785-1.157-41.648-1.157-286.908-1.157h-281.124l57.844-57.844c48.589-48.589 57.844-59.002 60.158-64.785 3.989-11.968 8.726-30.875 0-43.962-6.853-13.704-21.237-25.452-41.648-25.452z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-left"],"defaultCode":59931,"grid":0},"properties":{"id":40,"order":234,"ligatures":"","prevSize":24,"code":59931,"name":"arrow-narrow-left"},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M593.483 135.54c-11.047 0-16.349-0.671-24.295 4.628-14.779 8.868-210.317 204.298-212.867 209.396-4.241 8.482-6.942 15.467-6.942 28.922 0 19.847 11.935 33.733 25.452 40.491 12.93 8.618 31.197 4.255 43.962 0 5.785-2.314 16.197-11.569 64.785-60.158l57.844-57.844v281.124c0 270.871-3.166 269.309 6.942 299.634 2.757 8.268 15.029 16.19 21.98 20.824 5.785 3.47 6.942 2.314 19.667 2.314 29.928 0 39.948-15.725 47.432-38.177 1.157-4.628 1.157-102.963 1.157-285.751v-279.966l57.844 57.844c48.589 48.589 59.002 57.844 64.785 60.158 13.318 4.439 27.327 6.316 42.805 1.157 8.046-2.682 18.028-15.231 21.98-23.138 3.47-6.942 4.628-8.098 4.628-20.824s0-12.725-3.47-19.667c-3.47-5.785-16.197-18.51-104.12-107.59l-105.277-105.277c-4.612-4.612-15.901-8.098-24.295-8.098z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-up"],"defaultCode":59933,"grid":0},"properties":{"id":42,"order":236,"ligatures":"","prevSize":24,"code":59933,"name":"arrow-narrow-up"},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M592.325 135.54c-29.056 0-42.544 15.413-49.747 37.020-1.157 5.785-1.157 41.648-1.157 286.908v281.124l-57.844-57.844c-48.589-48.589-59.002-57.844-64.785-60.158-11.968-3.989-30.875-8.726-43.962 0-13.148 6.574-25.452 21.164-25.452 40.491 0 13.549 2.658 20.353 6.942 28.922 2.549 5.098 198.087 200.529 212.867 209.396 10.516 7.011 30.886 7.174 41.648 0 11.619-6.972 209.164-203.146 215.181-215.181 3.47-8.098 4.628-8.098 4.628-20.824 0-18.291-6.115-25.782-15.040-34.707-9.374-9.374-22.243-16.376-40.491-12.725-4.628 1.157-10.412 3.47-13.883 4.628-5.785 2.314-16.197 11.569-64.785 60.158l-57.844 57.844v-281.124c0-270.871 3.166-269.309-6.942-299.634-2.757-8.268-15.029-16.19-21.98-20.824-5.785-2.314-8.098-3.47-17.353-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-down"],"defaultCode":59930,"grid":0},"properties":{"id":39,"order":233,"ligatures":"","prevSize":24,"code":59930,"name":"arrow-narrow-down"},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M735.78 280.152c-20.393 0-27.123 6.299-37.020 16.197-7.515 7.515-14.801 23.173-11.569 39.334 1.157 4.628 3.47 10.412 4.628 13.883 2.314 5.785 11.569 16.197 60.158 64.785l57.844 57.844h-281.124c-270.871 0-269.309-3.166-299.634 6.942-8.268 2.757-16.19 15.029-20.824 21.98-3.47 5.785-2.314 6.942-2.314 19.667 0 28.887 14.519 39.16 35.863 46.275 5.785 1.157 38.177 2.314 286.908 2.314h281.124l-57.844 57.844c-48.589 48.589-57.844 59.002-60.158 64.785-3.989 11.968-8.726 30.875 0 43.962 4.797 9.595 14.739 16.383 23.138 21.98 5.785 3.47 6.942 3.47 19.667 3.47s12.725 0 19.667-3.47c5.785-3.47 18.51-16.197 107.59-104.12l105.277-105.277c5.899-5.899 8.098-16.298 8.098-27.765 0-11.504-2.178-21.845-8.098-27.765l-105.277-105.277c-89.080-89.080-101.806-100.649-107.59-104.12-5.785-2.314-9.255-3.47-18.51-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-right"],"defaultCode":59932,"grid":0},"properties":{"id":41,"order":235,"ligatures":"","prevSize":24,"code":59932,"name":"arrow-narrow-right"},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M733.465 182.973c-7.288 0-16.58 2.184-21.98 5.785-10.548 4.219-300.077 295.357-308.889 310.046-6.899 10.347-7.212 33.142 0 43.962 10.943 18.238 296.367 301.839 310.046 310.046 16.995 11.329 45.442 1.99 55.53-8.098 10.86-10.86 22.003-37.564 9.255-56.687-3.47-5.785-18.51-23.138-133.042-137.669l-129.572-129.572 129.572-129.572c114.532-114.532 129.572-131.885 133.042-137.669 15.463-23.196-2.816-58.783-20.824-64.785-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-left"],"defaultCode":60000,"grid":0},"properties":{"id":62,"order":187,"ligatures":"","prevSize":24,"code":60000,"name":"chevron-left"},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M588.855 327.584c-7.913 0-16.368 2.043-21.98 5.785-10.548 4.219-300.077 295.357-308.889 310.046-6.899 10.347-7.212 33.142 0 43.962 9.105 13.657 25.454 30.542 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 5.785-2.314 24.295-20.824 136.512-133.042l130.728-129.572 129.572 129.572c114.532 114.532 131.885 129.572 137.669 133.042 16.995 11.329 45.442 1.99 55.53-8.098 10.86-10.86 22.003-37.564 9.255-56.687-6.594-10.99-299.387-305.782-310.046-310.046-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-up"],"defaultCode":60002,"grid":0},"properties":{"id":64,"order":185,"ligatures":"","prevSize":24,"code":60002,"name":"chevron-up"},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M299.634 348.938c-27.112 0-52.422 25.956-46.275 56.687 1.157 4.628 2.314 10.412 4.628 13.883 10.943 18.238 296.367 301.839 310.046 310.046 12.443 8.295 31.016 4.315 43.962 0 10.658-4.264 303.452-299.056 310.046-310.046 15.463-23.196-2.816-58.783-20.824-64.785-12.025-4.009-31.248-8.475-43.962 0-5.785 3.47-23.138 18.51-137.669 133.042l-129.572 129.572-130.728-129.572c-112.218-112.218-130.728-130.728-136.512-133.042-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-down"],"defaultCode":59999,"grid":0},"properties":{"id":61,"order":188,"ligatures":"","prevSize":24,"code":59999,"name":"chevron-down"},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M444.244 182.973c-26.99 0-52.41 26.016-46.275 56.687 1.157 4.628 2.314 10.412 4.628 13.883 3.47 5.785 18.51 23.138 133.042 137.669l129.572 129.572-129.572 129.572c-114.532 114.532-129.572 131.885-133.042 137.669-6.899 10.347-7.212 33.142 0 43.962 9.105 13.657 25.454 30.542 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 10.658-4.264 303.452-299.056 310.046-310.046 6.899-10.347 7.212-33.142 0-43.962-6.594-10.99-299.387-305.782-310.046-310.046-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-right"],"defaultCode":60001,"grid":0},"properties":{"id":63,"order":186,"ligatures":"","prevSize":24,"code":60001,"name":"chevron-right"},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M590.012 764.887c0 23.086-22.459 45.118-45.118 45.118-12.83 0-23.762-2.781-32.393-9.255-0.451-0.3-245.665-243.235-254.515-257.986-6.899-10.347-7.212-33.142 0-43.962 8.797-14.663 253.498-256.151 254.515-256.829 8.846-5.898 16.526-10.412 31.236-10.412 21.545 0 34.358 14.343 41.648 28.922 2.314 5.785 4.628 9.255 4.628 16.197 0 14.037-2.85 19.581-6.942 27.765-2.314 3.47-41.648 45.118-107.59 111.061l-105.277 105.277 105.277 105.277c65.942 65.942 105.277 107.59 107.59 111.061 4.064 8.128 6.942 13.766 6.942 27.765zM832.957 231.562c-14.765 0-22.344 4.484-31.236 10.412-1.017 0.678-245.718 242.165-254.515 256.829-6.899 10.347-7.212 33.142 0 43.962 8.851 14.751 254.064 257.685 254.515 257.986 8.622 6.467 19.586 9.255 32.393 9.255 23.369 0 45.118-22.065 45.118-45.118 0-14.037-2.85-19.581-6.942-27.765-2.314-3.47-41.648-45.118-107.59-111.061l-105.277-105.277 105.277-105.277c65.942-65.942 105.277-107.59 107.59-111.061 4.064-8.128 6.942-13.766 6.942-27.765 0-24.059-22.122-45.118-46.275-45.118z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-left"],"defaultCode":60004,"grid":0},"properties":{"id":66,"order":183,"ligatures":"","prevSize":24,"code":60004,"name":"chevrons-left"},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M345.909 520.784c-22.67 0-45.118-22.039-45.118-45.118 0-13.608 2.63-23.559 9.255-32.393 0.049-0.073 249.276-251.495 256.829-254.515 5.637-3.758 14.026-5.785 21.98-5.785 8.61 0 16.437 3.551 23.138 5.785 12.61 5.044 255.684 251.061 257.986 254.515 6.467 8.622 9.255 19.586 9.255 32.393 0 23.086-22.459 45.118-45.118 45.118-14.037 0-19.581-2.85-27.765-6.942-3.47-2.314-45.118-41.648-111.061-107.59l-105.277-105.277-105.277 105.277c-65.942 65.942-107.59 105.277-111.061 107.59-8.128 4.064-13.766 6.942-27.765 6.942zM588.855 472.194c-7.913 0-16.368 2.043-21.98 5.785-7.616 3.047-256.805 254.478-256.829 254.515-6.62 8.827-9.255 18.8-9.255 32.393 0 22.906 22.595 45.118 45.118 45.118 14.037 0 19.581-2.85 27.765-6.942 3.47-2.314 45.118-41.648 111.061-107.59l105.277-105.277 105.277 105.277c65.942 65.942 107.59 105.277 111.061 107.59 8.128 4.064 13.766 6.942 27.765 6.942 23.369 0 45.118-22.065 45.118-45.118 0-12.83-2.781-23.762-9.255-32.393-2.302-3.453-245.377-249.472-257.986-254.515-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-up"],"defaultCode":60006,"grid":0},"properties":{"id":68,"order":181,"ligatures":"","prevSize":24,"code":60006,"name":"chevrons-up"},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M834.115 231.562c23.086 0 45.118 22.459 45.118 45.118 0 12.83-2.781 23.762-9.255 32.393-2.302 3.453-245.377 249.472-257.986 254.515-12.025 4.009-31.248 8.475-43.962 0-14.751-8.851-257.685-254.064-257.986-254.515-6.62-8.827-9.255-18.8-9.255-32.393 0-19.431 13.572-31.416 25.452-39.334 6.902-4.602 13.246-5.785 23.138-5.785 8.472 0 18.533 4.061 24.295 6.942 3.47 2.314 45.118 41.648 111.061 107.59l105.277 105.277 105.277-105.277c65.942-65.942 107.59-105.277 111.061-107.59 8.128-4.064 13.766-6.942 27.765-6.942zM349.379 520.784c-23.693 0-35.663 12.327-43.962 28.922-2.314 5.785-4.628 9.255-4.628 16.197 0 13.608 2.63 23.559 9.255 32.393 0.3 0.451 243.235 245.665 257.986 254.515 12.443 8.295 31.016 4.315 43.962 0 12.61-5.044 255.684-251.061 257.986-254.515 6.467-8.622 9.255-19.586 9.255-32.393 0-23.369-22.065-45.118-45.118-45.118-14.037 0-19.581 2.85-27.765 6.942-3.47 2.314-45.118 41.648-111.061 107.59l-105.277 105.277-105.277-105.277c-65.942-65.942-107.59-105.277-111.061-107.59-5.75-2.875-15.82-6.942-24.295-6.942z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-down"],"defaultCode":60003,"grid":0},"properties":{"id":65,"order":184,"ligatures":"","prevSize":24,"code":60003,"name":"chevrons-down"},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M345.909 810.005c-22.67 0-45.118-22.039-45.118-45.118 0-14.037 2.85-19.581 6.942-27.765 2.314-3.47 41.648-45.118 107.59-111.061l105.277-105.277-105.277-105.277c-65.942-65.942-105.277-107.59-107.59-111.061-3.887-7.775-6.942-14.597-6.942-27.765 0-19.431 13.572-31.416 25.452-39.334 6.902-4.602 13.246-5.785 23.138-5.785 11.083 0 21.329 3.559 28.922 9.255 0.451 0.3 245.665 243.235 254.515 257.986 6.899 10.347 7.212 33.142 0 43.962-8.851 14.751-254.064 257.685-254.515 257.986-8.622 6.467-19.586 9.255-32.393 9.255zM638.601 231.562c-23.693 0-35.663 12.327-43.962 28.922-2.314 5.785-4.628 9.255-4.628 16.197 0 13.177 3.037 19.956 6.942 27.765 2.314 3.47 41.648 45.118 107.59 111.061l105.277 105.277-105.277 105.277c-65.942 65.942-105.277 107.59-107.59 111.061-4.064 8.128-6.942 13.766-6.942 27.765 0 22.906 22.595 45.118 45.118 45.118 12.83 0 23.762-2.781 32.393-9.255 0.451-0.3 245.665-243.235 254.515-257.986 6.899-10.347 7.212-33.142 0-43.962-8.851-14.751-254.064-257.685-254.515-257.986-7.601-5.703-17.831-9.255-28.922-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-right"],"defaultCode":60005,"grid":0},"properties":{"id":67,"order":182,"ligatures":"","prevSize":24,"code":60005,"name":"chevrons-right"},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M446.558 135.54c-13.835 0-21.236 1.569-27.765 8.098-24.192 24.192-196.027 188.658-210.554 212.867-3.47 6.942-2.314 6.942-2.314 19.667s-1.157 12.725 2.314 19.667c11.514 19.191 204.701 209.818 217.494 217.494 6.942 3.47 6.942 2.314 19.667 2.314 19.059 0 22.708-1.885 32.393-11.569 8.706-8.706 18.917-23.419 15.040-42.805l-4.628-13.883c-2.314-5.785-11.569-16.197-60.158-64.785l-57.844-57.844h187.416c166.592 0 188.572 1.157 196.671 2.314 13.297 3.325 23.722 6.512 33.55 13.883 4.628 3.47 12.725 8.098 16.197 12.725 11.34 15.121 18.861 25.701 24.295 47.432 1.157 8.098 2.314 26.608 2.314 160.807 0 107.59 0 152.709 1.157 157.337 6.817 20.448 24.451 44.393 55.53 38.177 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-48.589 1.157-163.121 0-153.866-1.157-156.18-3.47-168.905-7.298-43.786-26.504-75.093-53.217-101.806-18.163-18.163-32.887-24.822-53.217-37.020-18.132-10.879-41.57-13.867-64.785-18.51-6.942-1.157-83.295-1.157-196.671-1.157h-186.259l57.844-57.844c48.589-48.589 57.844-59.002 60.158-64.785 3.989-11.968 8.726-30.875 0-43.962-6.853-13.704-21.237-25.452-41.648-25.452z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["corner-up-left"],"defaultCode":60034,"grid":0},"properties":{"id":83,"order":166,"ligatures":"","prevSize":24,"code":60034,"name":"corner-up-left"},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M446.558 135.54c-13.835 0-21.236 1.569-27.765 8.098-24.192 24.192-196.027 188.658-210.554 212.867-3.47 6.942-2.314 6.942-2.314 19.667 0 19.059 1.885 22.708 11.569 32.393 3.47 3.47 8.098 8.098 12.725 10.412 12.93 8.618 31.197 4.255 43.962 0 5.785-2.314 16.197-11.569 64.785-60.158l57.844-57.844v186.259c0 178.188-11.342 186.825 18.51 261.456 5.226 13.063 17.486 27.557 25.452 38.177 7.006 9.341 19.632 23.885 28.922 30.079 21.827 14.551 49.138 30.882 79.825 37.020 38.18 7.635 58.036 4.628 182.788 4.628 105.277 0 151.552 0 156.18-1.157 9.907-3.302 17.137-5.568 24.295-12.725 10.86-10.86 22.003-37.564 9.255-56.687-4.885-7.325-11.949-17.864-20.824-20.824-3.47-1.157-9.255-3.47-12.725-4.628-4.628-1.157-49.747-1.157-157.337-1.157-134.199 0-152.709-1.157-160.807-2.314-21.547-5.386-32.215-12.882-47.432-24.295-14.218-10.664-21.776-30.419-26.608-49.747-1.157-8.098-2.314-30.079-2.314-196.671v-187.416l57.844 57.844c48.589 48.589 59.002 57.844 64.785 60.158 13.318 4.439 27.327 6.316 42.805 1.157 8.046-2.682 18.028-15.231 21.98-23.138 3.47-6.942 3.47-8.098 3.47-20.824s0-13.883-3.47-20.824c-6.051-12.1-204.753-209.385-216.337-216.337-5.785-2.314-9.255-3.47-18.51-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["corner-left-up"],"defaultCode":60031,"grid":0},"properties":{"id":80,"order":169,"ligatures":"","prevSize":24,"code":60031,"name":"corner-left-up"},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M446.558 182.973c-115.689 0-152.709 0-157.337 1.157-19.314 6.438-41.755 26.079-35.863 55.53 5.319 21.279 18.017 32.614 38.177 39.334 4.628 1.157 49.747 1.157 157.337 1.157 134.199 0 152.709 1.157 160.807 2.314 21.547 5.386 32.215 12.882 47.432 24.295 14.218 10.664 21.776 30.419 26.608 49.747 1.157 8.098 2.314 30.079 2.314 196.671v187.416l-57.844-57.844c-48.589-48.589-59.002-57.844-64.785-60.158-11.968-3.989-30.875-8.726-43.962 0-9.595 4.797-16.383 14.739-21.98 23.138-3.47 5.785-2.314 6.942-2.314 19.667s-1.157 12.725 2.314 19.667c11.514 19.191 204.701 209.818 217.494 217.494 6.942 3.47 6.942 2.314 19.667 2.314s12.725 1.157 19.667-2.314c11.528-6.918 210.288-204.237 216.337-216.337 3.47-6.942 3.47-8.098 3.47-20.824 0-19.262-4.604-25.429-13.883-34.707-9.374-9.374-22.243-16.376-40.491-12.725-4.628 1.157-10.412 3.47-13.883 4.628-5.785 2.314-16.197 11.569-64.785 60.158l-57.844 57.844v-193.2c0-192.044-1.157-193.2-3.47-205.926-7.298-43.786-26.504-75.093-53.217-101.806-18.163-18.163-32.887-24.822-53.217-37.020-18.428-11.057-41.061-13.764-64.785-18.51-6.942-1.157-70.57-1.157-161.964-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["corner-right-down"],"defaultCode":60032,"grid":0},"properties":{"id":81,"order":168,"ligatures":"","prevSize":24,"code":60032,"name":"corner-right-down"},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M731.152 182.973c-83.295 0-156.18 1.157-161.964 1.157-34.142 0-65.546 17.475-87.923 32.393-9.255 5.785-17.353 12.725-27.765 23.138-18.163 18.163-24.822 32.887-37.020 53.217-10.879 18.132-13.867 41.57-18.51 64.785-1.157 6.942-1.157 83.295-1.157 196.671v186.259l-57.844-57.844c-48.589-48.589-59.002-57.844-64.785-60.158-11.968-3.989-30.875-8.726-43.962 0-9.595 4.797-16.383 14.739-21.98 23.138-3.47 5.785-2.314 6.942-2.314 19.667s-1.157 12.725 2.314 19.667c11.514 19.191 204.701 209.818 217.494 217.494 6.942 3.47 6.942 2.314 19.667 2.314s12.725 1.157 19.667-2.314c11.528-6.918 210.288-204.237 216.337-216.337 3.47-6.942 3.47-8.098 3.47-20.824 0-19.262-4.604-25.429-13.883-34.707-9.374-9.374-22.243-16.376-40.491-12.725-4.628 1.157-10.412 3.47-13.883 4.628-5.785 2.314-16.197 11.569-64.785 60.158l-57.844 57.844v-187.416c0-166.592 1.157-188.572 2.314-196.671 5.386-21.547 12.882-32.215 24.295-47.432 10.664-14.218 30.419-21.776 49.747-26.608 8.098-1.157 26.608-2.314 160.807-2.314 107.59 0 152.709 0 157.337-1.157 9.907-3.302 17.137-5.568 24.295-12.725 10.86-10.86 22.003-37.564 9.255-56.687-4.885-7.325-11.949-17.864-20.824-20.824-3.47-1.157-9.255-3.47-12.725-4.628-4.628-1.157-49.747-1.157-157.337-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["corner-left-down"],"defaultCode":60030,"grid":0},"properties":{"id":79,"order":170,"ligatures":"","prevSize":24,"code":60030,"name":"corner-left-down"},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M735.78 135.54c-13.835 0-21.236 1.569-27.765 8.098-24.192 24.192-196.027 188.658-210.554 212.867-3.47 6.942-2.314 6.942-2.314 19.667 0 19.059 1.885 22.708 11.569 32.393 3.47 3.47 8.098 8.098 12.725 10.412 12.93 8.618 31.197 4.255 43.962 0 5.785-2.314 16.197-11.569 64.785-60.158l57.844-57.844v187.416c0 166.592-1.157 188.572-2.314 196.671-3.325 13.297-6.512 23.722-13.883 33.55-3.47 4.628-8.098 12.725-12.725 16.197-15.121 11.34-25.701 18.861-47.432 24.295-8.098 1.157-26.608 2.314-160.807 2.314-107.59 0-152.709 0-157.337 1.157-20.448 6.817-44.393 24.451-38.177 55.53 4.158 16.63 12.948 26.371 25.452 34.707 3.47 2.314 10.412 3.47 13.883 4.628 4.628 1.157 48.589 1.157 163.121 1.157 153.866 0 156.18-1.157 168.905-3.47 29.459-4.91 51.518-15.835 72.884-30.079 9.255-6.942 17.353-11.569 28.922-23.138 22.787-22.787 33.741-43.86 46.275-75.197 5.284-13.212 6.189-27.474 9.255-42.805 1.157-6.942 1.157-75.197 1.157-197.827v-185.102l57.844 57.844c48.589 48.589 59.002 57.844 64.785 60.158 13.318 4.439 27.327 6.316 42.805 1.157 8.046-2.682 18.028-15.231 21.98-23.138 3.47-6.942 3.47-8.098 3.47-20.824s0-13.883-3.47-20.824c-6.051-12.1-204.753-209.385-216.337-216.337-5.785-2.314-9.255-3.47-18.51-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["corner-right-up"],"defaultCode":60033,"grid":0},"properties":{"id":82,"order":167,"ligatures":"","prevSize":24,"code":60033,"name":"corner-right-up"},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M735.78 135.54c-20.393 0-27.123 6.299-37.020 16.197-7.515 7.515-14.801 23.173-11.569 39.334 1.157 4.628 3.47 10.412 4.628 13.883 2.314 5.785 11.569 16.197 60.158 64.785l57.844 57.844h-185.102c-149.719 0-181.235-3.087-219.809 4.628-40.175 8.035-70.571 26.61-96.022 52.060-18.163 18.163-24.822 32.887-37.020 53.217-11.057 18.428-13.764 41.061-18.51 64.785-1.157 6.942-1.157 70.57-1.157 160.807 0 106.434 0 151.552 1.157 156.18 6.817 20.448 24.451 44.393 55.53 38.177 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-49.747 1.157-157.337 0-134.199 1.157-152.709 2.314-160.807 3.325-13.297 6.512-23.722 13.883-33.55 3.47-4.628 8.098-12.725 12.725-16.197 15.121-11.34 25.701-18.861 47.432-24.295 8.098-1.157 30.079-2.314 196.671-2.314h187.416l-57.844 57.844c-48.589 48.589-57.844 59.002-60.158 64.785-3.989 11.968-8.726 30.875 0 43.962 4.797 9.595 14.739 16.383 23.138 21.98 5.785 3.47 6.942 2.314 19.667 2.314s12.725 1.157 19.667-2.314c11.528-6.918 210.288-204.237 216.337-216.337 3.47-6.942 3.47-8.098 3.47-20.824s0-13.883-3.47-20.824c-6.051-12.1-204.753-209.385-216.337-216.337-5.785-2.314-9.255-3.47-18.51-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["corner-up-right"],"defaultCode":60035,"grid":0},"properties":{"id":84,"order":165,"ligatures":"","prevSize":24,"code":60035,"name":"corner-up-right"},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M354.007 114.187c7.323 0 12.853 2.013 18.51 5.785 8.565 4.283 206.189 199.51 214.024 215.181 3.47 6.942 2.314 9.255 2.314 19.667 0 16.798-4.381 25.205-12.725 33.55-3.47 3.47-9.255 8.098-12.725 9.255l-13.883 4.628c-9.829 1.967-19.808-0.818-27.765-3.47-5.785-2.314-12.725-9.255-64.785-61.315l-59.002-57.844v277.652c0 160.807 0 281.124-1.157 285.751-7.545 22.638-17.464 41.648-47.432 41.648-24.183 0-41.391-14.016-46.275-33.55-2.314-6.942-2.314-10.412-2.314-289.221v-282.281l-57.844 57.844c-48.589 48.589-59.002 57.844-64.785 60.158-12.025 4.009-31.248 8.475-43.962 0-3.47-2.314-9.255-5.785-12.725-9.255-10.681-10.681-20.068-37.577-8.098-55.53 4.668-11.67 199.885-206.955 214.024-214.024 4.628-2.314 11.569-4.628 15.040-4.628h11.569zM834.115 114.187h-10.412c-13.941 0-30.873 15.471-35.863 25.452-2.314 4.628-3.47 11.569-4.628 16.197s-1.157 119.159-1.157 285.751v277.652l-59.002-57.844c-63.085-63.085-48.814-54.835-78.668-64.785-5.785-1.157-8.098-1.157-13.883 0l-13.883 4.628c-14.788 4.929-25.452 22.185-25.452 42.805 0 10.412-1.157 12.725 2.314 19.667 6.657 13.313 202.468 210.393 216.337 216.337 4.628 2.314 10.412 4.628 13.883 4.628h13.883c3.47 0 10.412-2.314 15.040-4.628 14.333-7.166 209.44-202.563 214.024-214.024 2.672-8.013 6.992-18.258 4.628-30.079-3.037-12.147-5.97-17.538-13.883-25.452-10.766-10.766-36.059-22.236-55.53-9.255-5.785 3.47-15.040 12.725-64.785 61.315l-57.844 56.687v-282.281c0-276.496 0-282.281-2.314-289.221-5.984-17.95-19.607-33.55-42.805-33.55z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-sort"],"defaultCode":60250,"grid":0},"properties":{"id":151,"order":98,"ligatures":"","prevSize":24,"code":60250,"name":"arrows-sort"},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M350.536 280.152c-14.214 0-20.539 2.509-28.922 8.098-3.47 2.314-52.060 49.747-106.434 104.12-85.61 85.61-99.492 100.649-101.806 106.434-2.672 8.013-6.992 18.258-4.628 30.079 1.157 4.628 3.47 10.412 4.628 13.883 4.194 10.483 199.821 207.936 214.024 214.024 8.098 3.47 9.255 4.628 20.824 4.628 29.511 0 47.432-18.744 47.432-48.589 0-11.569 0-12.725-3.47-20.824-3.47-6.942-8.098-11.569-61.315-64.785l-56.687-57.844h631.66l-56.687 57.844c-53.217 53.217-57.844 57.844-61.315 64.785-3.47 8.098-3.47 9.255-3.47 20.824 0 29.807 18.004 48.589 47.432 48.589 11.569 0 12.725-1.157 20.824-4.628 14.304-6.13 209.83-203.54 214.024-214.024 2.672-8.013 6.992-18.258 4.628-30.079-1.157-4.628-3.47-10.412-4.628-13.883-4.194-10.483-199.821-207.936-214.024-214.024-8.098-3.47-9.255-4.628-20.824-4.628-29.511 0-47.432 18.744-47.432 48.589 0 11.569 0 12.725 3.47 20.824 3.47 6.942 8.098 11.569 61.315 64.785l56.687 57.844h-631.66l56.687-57.844c53.217-53.217 57.844-57.844 61.315-64.785 3.47-8.098 3.47-9.255 3.47-20.824 0-24.711-10.151-35.733-26.608-43.962-6.942-3.47-9.255-4.628-18.51-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-horizontal"],"defaultCode":60249,"grid":0},"properties":{"id":150,"order":99,"ligatures":"","prevSize":24,"code":60249,"name":"arrows-horizontal"},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M592.325 38.362c-10.392 0-19.788 3.532-26.608 6.942-3.238 2.159-205.82 199.124-211.71 212.867-3.47 8.098-4.628 9.255-4.628 20.824 0 29.511 18.744 47.432 48.589 47.432 11.569 0 12.725 0 20.824-3.47 6.942-3.47 11.569-8.098 64.785-61.315l57.844-56.687v631.66l-57.844-56.687c-53.217-53.217-57.844-57.844-64.785-61.315-8.098-3.47-9.255-3.47-20.824-3.47-29.807 0-48.589 18.004-48.589 47.432 0 11.569 1.157 12.725 4.628 20.824 6.13 14.304 203.54 209.83 214.024 214.024 8.013 2.672 18.258 6.992 30.079 4.628 4.628-1.157 10.412-3.47 13.883-4.628 10.483-4.194 207.936-199.821 214.024-214.024 3.47-8.098 4.628-9.255 4.628-20.824 0-29.511-18.744-47.432-48.589-47.432-11.569 0-12.725 0-20.824 3.47-6.942 3.47-11.569 8.098-64.785 61.315l-57.844 56.687v-631.66l57.844 56.687c53.217 53.217 57.844 57.844 64.785 61.315 8.098 3.47 9.255 3.47 20.824 3.47 29.807 0 48.589-18.004 48.589-47.432 0-11.569-1.157-12.725-4.628-20.824-4.458-10.401-207.078-210.551-207.082-210.554-6.918-4.612-16.149-9.255-26.608-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-vertical"],"defaultCode":60251,"grid":0},"properties":{"id":152,"order":97,"ligatures":"","prevSize":24,"code":60251,"name":"arrows-vertical"},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M252.201 340.309c-9.665 19.332-21.888 35.863-50.903 35.863-23.947 0-35.795-19.53-43.962-35.863l-1.157-106.434c0-94.865 1.157-106.434 2.314-112.218 5.859-17.578 13.443-26.462 31.236-32.393 5.785-2.314 13.883-2.314 113.375-2.314l106.434 1.157c16.667 8.333 35.863 19.671 35.863 43.962 0 29.014-16.532 41.237-35.863 50.903h-87.923l105.277 106.434c99.492 99.492 106.434 105.277 109.904 113.375s4.628 9.255 4.628 20.824c0 28.649-19.96 48.589-48.589 48.589-11.569 0-12.725-1.157-20.824-4.628s-13.883-10.412-113.375-109.904l-106.434-105.277v87.923zM770.486 182.973c-19.332-9.665-35.863-21.888-35.863-50.903 0-19.431 13.572-31.416 25.452-39.334 15.317-10.211 44.643-5.785 121.473-5.785l106.434 1.157c16.724 5.573 29.011 17.62 34.707 34.707v217.494c-8.274 16.548-19.785 35.863-43.962 35.863-29.014 0-41.237-16.532-50.903-35.863v-87.923l-106.434 105.277c-99.492 99.492-105.277 106.434-113.375 109.904s-9.255 4.628-20.824 4.628c-28.649 0-48.589-19.96-48.589-48.589 0-11.569 1.157-12.725 4.628-20.824s10.412-13.883 109.904-113.375l105.277-106.434h-87.923zM201.299 665.395c29.014 0 41.237 16.532 50.903 35.863v87.923l105.277-105.277c68.257-68.257 107.59-105.277 111.061-107.59 8.812-5.875 11.68-6.942 26.608-6.942 26.685 0 46.275 21.241 46.275 48.589 0 11.569-1.157 12.725-4.628 20.824s-10.412 13.883-109.904 113.375l-105.277 106.434h87.923c19.332 9.665 35.863 21.888 35.863 50.903 0 23.947-19.53 35.795-35.863 43.962l-106.434 1.157c-94.865 0-106.434-1.157-112.218-2.314-16.405-5.468-26.851-15.768-32.393-32.393-1.157-5.785-2.314-17.353-2.314-112.218l1.157-106.434c8.333-16.667 19.671-35.863 43.962-35.863zM688.347 569.373c-27.862 0-35.038 12.067-46.275 28.922-3.47 5.785-3.47 8.098-3.47 19.667s1.157 12.725 4.628 20.824 10.412 13.883 109.904 113.375l105.277 106.434h-87.923c-19.598 9.799-35.863 21.518-35.863 50.903 0 23.947 19.53 35.795 35.863 43.962h217.494c16.724-5.573 29.011-17.62 34.707-34.707v-217.494c-8.333-16.667-19.671-35.863-43.962-35.863-28.277 0-41.385 16.828-50.903 35.863v87.923l-106.434-105.277c-99.492-99.492-105.277-106.434-113.375-109.904-6.942-3.47-9.255-4.628-19.667-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-maximize"],"defaultCode":59944,"grid":0},"properties":{"id":47,"order":241,"ligatures":"","prevSize":24,"code":59944,"name":"arrows-maximize"},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M896.876 465.535v39.291c-0.043 106.131-43.093 202.138-112.75 271.71s-165.709 112.494-271.838 112.409-202.181-43.093-271.71-112.75-112.494-165.666-112.451-271.838 43.093-202.138 112.75-271.71 165.709-112.494 271.838-112.451c56.802 0.043 110.444 12.343 155.843 33.099 21.44 9.823 46.809 0.341 56.588-21.098s0.341-46.809-21.098-56.588c-56.674-25.881-122.403-40.787-191.291-40.829-129.706-0.085-247.238 52.488-332.271 137.393s-137.691 202.438-137.778 332.143 52.488 247.238 137.393 332.271 202.395 137.735 332.1 137.778 247.238-52.488 332.271-137.393 137.735-202.395 137.82-332.143v-39.291c0-23.575-19.134-42.709-42.709-42.709s-42.709 19.134-42.709 42.709zM909.389 132.964l-396.889 397.273-97.931-97.888c-16.699-16.699-43.734-16.699-60.39 0s-16.699 43.734 0 60.39l128.125 128.125c16.699 16.699 43.734 16.656 60.432 0l427.084-427.51c16.656-16.699 16.656-43.734-0.043-60.39s-43.734-16.656-60.39 0.043z"],"isMulticolor":false,"isMulticolor2":false,"tags":["check-circle"],"defaultCode":59652,"grid":0},"properties":{"id":5,"order":199,"ligatures":"","prevSize":24,"code":59652,"name":"check-circle"},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M977.569 231.562c-14.765 0-22.344 4.484-31.236 10.412-3.47 2.314-106.434 105.277-229.064 227.907l-223.279 223.279-106.434-106.434c-91.394-91.394-107.59-106.434-113.375-108.747-11.913-3.972-31.196-8.51-43.962 0-9.595 4.797-16.383 14.739-21.98 23.138-3.47 5.785-2.314 6.942-2.314 19.667s-1.157 13.883 2.314 20.824c6.803 11.337 251.039 257.818 264.927 263.77 6.942 3.47 10.412 4.628 17.353 4.628 14.037 0 19.581-2.85 27.765-6.942 3.783-2.522 491.612-486.952 496.304-493.99 6.467-8.622 9.255-19.586 9.255-32.393 0-24.059-22.122-45.118-46.275-45.118z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["check"],"defaultCode":59998,"grid":0},"properties":{"id":60,"order":189,"ligatures":"","prevSize":24,"code":59998,"name":"check"},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M903.528 760.259c-71.584 0-106.179-31.394-138.827-70.57-8.495 3.399-21.728 17.615-30.079 24.295-30.272 24.217-65.303 37.299-112.218 45.118-8.098 1.157-20.824 2.314-32.393 2.314-69.058 0-115.928-24.256-155.022-55.53-37.634-30.105-63.814-72.948-78.668-124.944-5.658-19.802-6.942-36.378-6.942-60.158 0-43.445 10.944-72.481 23.138-102.963 9.785-24.462 25.089-44.754 42.805-62.472 5.785-5.785 13.883-15.040 19.667-19.667 41.504-33.202 87.275-55.53 161.964-55.53 30 0 38.271 5.109 59.002 9.255 20.88 4.176 43.815 14.061 59.002 25.452 4.628 3.47 13.883 8.098 19.667 12.725 27.297 21.837 52.068 48.605 68.257 80.982 23.517 47.033 27.765 65.973 27.765 144.611 0 61.362-2.994 48.385 9.255 72.884 10.243 20.485 30.452 39.334 60.158 39.334 42.2 0 64.618-23.71 74.040-56.687l1.157-52.060c0-66.278-3.786-81.719-11.569-128.414-7.206-43.235-30.45-83.075-49.747-116.845-35.505-62.134-94.819-103.102-157.337-138.827-27.25-15.57-56.259-21.585-90.237-30.079-25.069-6.268-43.526-6.942-76.355-6.942-43.141 0-73.136 3.17-105.277 13.883l-24.295 8.098c-25.87 8.623-44.211 19.791-67.1 31.236-17.093 8.547-29.405 20.76-45.118 31.236-15.518 10.345-46.462 43.618-57.844 57.844-17.314 21.643-37.643 50.145-48.589 77.512-19.263 48.16-37.020 95.713-37.020 164.277 0 34.464 2.531 62.657 10.412 90.237 34.228 119.801 100.819 204.274 203.612 255.672 11.569 5.785 27.765 12.725 35.863 15.040 36.305 10.373 77.412 25.452 123.787 25.452 70.717 0 121.394-16.17 173.532-33.55 22.96-5.741 42.023 10.004 49.747 25.452 7.116 10.675 7.444 32.797 0 43.962-9.311 18.621-26.705 22.352-47.432 31.236-48.528 20.797-92.998 27.765-163.121 27.765-76.251 0-119.239-7.306-172.376-30.079-117.216-50.237-204.324-125.209-260.299-237.162-21.167-42.332-37.429-87.315-45.118-141.14-3.014-21.1-5.785-36.151-5.785-60.158 0-110.53 29.111-189.772 69.413-260.299 27.391-47.933 64.251-88.635 106.434-123.787 6.942-5.785 18.51-15.040 25.452-19.667l24.295-16.197c23.747-15.832 53.384-29.452 80.982-40.491 52.49-20.996 107.818-33.55 182.788-33.55 51.905 0 71.907 5.252 111.061 15.040 56.841 14.21 103.665 35.561 145.767 63.629 62.71 41.808 113.281 95.096 152.709 160.807 8.579 14.299 20.878 36.025 26.608 53.217 5.992 17.973 15.764 37.611 20.824 57.844 14.557 58.227 18.51 97.716 18.51 175.847 0 43.962-1.157 49.747-3.47 60.158-13.176 65.875-54.362 104.577-111.061 127.257-18.93 7.573-23.642 8.098-54.374 8.098zM594.64 377.329h-18.51c-56.102 0-93.085 40.611-114.532 76.355-11.772 19.621-15.040 36.486-15.040 67.1 0 23.258 0.882 31.124 6.942 46.275 21.745 54.362 61.006 97.179 136.512 97.179 31.449 0 43.56-6.549 64.785-15.040 41.869-16.748 65.651-56.677 77.512-104.12 1.157-4.628 1.157-16.197 1.157-24.295 0-68.176-34.201-102.427-77.512-128.414-17.026-10.215-35.182-15.040-61.315-15.040z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["at"],"defaultCode":59947,"grid":0},"properties":{"id":48,"order":242,"ligatures":"","prevSize":24,"code":59947,"name":"at"},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M320.457 843.555c-2.754 0.19-140.465 9.255-143.454 9.255-24.491 0-36.761-12.21-45.118-28.922-3.47-6.942-4.628-8.098-4.628-18.51s1.157-12.725 4.628-19.667c2.314-4.628 35.863-65.942 77.512-136.512l75.197-129.572c-18.423-42.99-36.236-98.112-31.236-163.121 1.157-11.569 2.314-26.608 3.47-34.707 2.845-19.912 8.546-34.536 13.883-53.217 21.561-75.461 71.363-128.141 127.257-170.062 37.206-27.905 85.946-46.332 141.14-55.53 6.942-1.157 17.353-3.47 24.295-3.47s17.353-1.157 24.295-1.157c78.645 0 142.95 24.43 189.729 57.844 18.949 13.535 39.345 28.933 55.53 45.118 32.953 32.953 58.088 76.231 76.355 124.944 16.421 43.788 23.478 106.709 13.883 164.277-5.205 31.233-16.308 63.299-27.765 89.080l75.197 129.572c40.491 70.57 75.197 131.885 77.512 136.512 3.47 6.942 4.628 9.255 4.628 19.667 0 27.477-21.637 47.432-48.589 47.432-36.771 0-109.284-6.82-144.611-9.255 0 0-13.883 30.079-32.393 67.1-30.079 60.158-33.55 67.1-39.334 72.884-6.625 6.625-18.988 13.883-31.236 13.883-18.374 0-30.758-5.067-38.177-16.197-6.988-10.481-0.139-0.109-128.414-218.652-66.509 109.074-113.339 199.707-128.414 219.809-10.238 10.238-18.022 15.040-38.177 15.040-12.269 0-24.606-7.252-31.236-13.883-12.003-12.003-71.506-140-71.727-139.984zM587.698 135.54c-9.255 0-20.824 1.157-25.452 1.157-23.11 0-45.008 11.147-63.629 17.353-25.56 8.519-43.964 22.445-63.629 38.177-26.777 21.423-46.437 48.913-62.472 80.982-14.285 28.569-23.138 61.184-23.138 102.963 0 52.22 16.058 87.65 33.55 122.63 9.803 19.604 20.731 31.143 37.020 47.432 15.954 15.954 30.652 28.629 49.747 38.177l25.452 12.725c20.627 10.312 43.215 13.501 68.257 18.51 5.785 1.157 18.51 1.157 26.608 1.157 92.691 0 151.469-45.014 193.2-97.179 30.21-37.763 47.432-85.461 47.432-151.552 0-40.746-12.54-67.792-24.295-97.179-9.411-23.528-26.655-41.416-41.648-60.158-11.314-14.143-27.25-25.493-42.805-35.863-35.154-23.436-76.89-39.334-134.199-39.334zM343.596 609.864c0 1.786-0.575 1.486-80.982 141.14 1.936-0.157 87.407-5.785 91.394-5.785 13.628 0 22.392 8.507 30.079 16.197 5.785 5.785 9.255 11.569 25.452 45.118 10.412 21.98 19.667 39.334 19.667 39.334 79.295-135.934 80.982-138.266 80.982-139.984 0-3.995-17.374-5.793-23.138-8.098-27.987-11.195-59.181-23.265-83.295-40.491-18.652-13.324-31.962-22.707-47.432-38.177-8.098-8.098-11.569-10.412-12.725-9.255zM835.272 609.864c-8.958 6.398-16.736 15.007-28.922 25.452-20.586 17.645-41.453 31.778-68.257 43.962-20.78 10.39-37.722 17.724-59.002 21.98-5.785 1.157-9.255 3.47-9.255 4.628 0 1.717 80.582 139.298 80.982 139.984 0 0 9.255-17.353 19.667-39.334 16.197-33.55 19.667-39.334 25.452-45.118 7.703-7.703 16.431-16.197 30.079-16.197 4.125 0 89.34 5.617 91.394 5.785-64.813-113.425-73.839-127.077-82.139-141.14z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["award"],"defaultCode":59948,"grid":0},"properties":{"id":49,"order":243,"ligatures":"","prevSize":24,"code":59948,"name":"award"},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M303.104 108.306c26.265 0 38.566 19.677 45.118 39.334 1.157 3.47 1.157 35.863 1.157 83.295v78.668c29.241 9.747 51.198 28.158 68.257 50.903 16.918 22.556 26.608 44.662 26.608 84.452 0 64.099-29.541 104.43-72.884 126.1-8.214 4.107-13.788 7.682-21.98 10.412v174.69c0 113.375 0 177.004-1.157 180.474-6.946 20.837-18.678 38.177-47.432 38.177-29.14 0-40.291-16.754-47.432-38.177-1.157-3.47-1.157-67.1-1.157-180.474v-174.69c-28.647-9.549-52.615-29.663-69.413-52.060-16.416-21.888-25.452-45.439-25.452-84.452 0-50.21 17.249-77.408 42.805-102.963 10.766-10.766 25.655-21.83 40.491-27.765l11.569-4.628v-78.668c0-47.432 0-79.825 1.157-83.295 7.38-22.14 20.391-39.334 49.747-39.334zM592.325 108.306c26.265 0 38.566 19.677 45.118 39.334 1.157 4.628 1.157 82.139 1.157 227.907v223.279c29.241 9.747 51.198 28.158 68.257 50.903 16.918 22.556 26.608 44.662 26.608 84.452 0 64.099-29.541 104.43-72.884 126.1-8.214 4.107-13.788 7.682-21.98 10.412v30.079c0 42.674-2.655 57.437-28.922 70.57-6.942 3.47-8.098 3.47-19.667 3.47-16.798 0-25.205-4.381-33.55-12.725-15.603-15.603-15.040-25.524-15.040-61.315v-30.079c-28.647-9.549-52.615-29.663-69.413-52.060-16.416-21.888-25.452-45.439-25.452-84.452 0-50.21 17.249-77.408 42.805-102.963 10.766-10.766 25.655-21.83 40.491-27.765l11.569-4.628v-223.279c0-145.767 0-223.279 1.157-227.907 7.38-22.14 20.391-39.334 49.747-39.334zM830.644 159.208c0-29.925 20.624-50.903 50.903-50.903 27.46 0 46.275 23.967 46.275 50.903v5.785c29.241 9.747 51.198 28.158 68.257 50.903 17.187 22.915 26.608 45.061 26.608 85.61 0 63.068-30.221 103.612-72.884 124.944-8.214 4.107-13.788 7.682-21.98 10.412v247.574c0 161.964 0 247.574-1.157 252.201-6.946 20.837-18.678 38.177-47.432 38.177-29.14 0-40.291-16.754-47.432-38.177-1.157-4.628-1.157-90.237-1.157-252.201v-247.574c-28.647-9.549-52.615-29.663-69.413-52.060-16.497-21.997-25.452-46.335-25.452-85.61 0-49.446 17.584-76.586 42.805-101.806 10.766-10.766 25.655-21.83 40.491-27.765l11.569-4.628v-5.785zM926.666 300.348c0-28.142-20.508-47.432-48.589-47.432-2.314 0-6.942 1.157-9.255 1.157-16.67 0-37.020 23.547-37.020 40.491v13.883c0 22.588 23.607 39.334 47.432 39.334 29.57 0 47.432-18.837 47.432-47.432zM348.223 444.96c0-28.142-20.508-47.432-48.589-47.432-2.314 0-6.942 1.157-9.255 1.157-16.67 0-37.020 23.547-37.020 40.491v13.883c0 22.009 24.324 40.491 47.432 40.491 28.506 0 47.432-20.536 47.432-48.589zM588.855 686.749c-2.314 0-6.942 1.157-9.255 1.157-16.67 0-37.020 23.547-37.020 40.491v13.883c0 22.009 24.324 40.491 47.432 40.491 29.080 0 47.432-20.055 47.432-48.589 0-28.628-20.269-47.432-48.589-47.432z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["adjustments"],"defaultCode":59907,"grid":0},"properties":{"id":28,"order":222,"ligatures":"","prevSize":24,"code":59907,"name":"adjustments"},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M349.379 108.306c17.845 0 28.14 9.63 37.020 18.51 7.494 7.494 9.255 12.653 9.255 28.922 0 16.289-4.003 25.983-11.569 33.55-3.321 3.321-141.509 104.629-146.924 106.434-11.664 3.888-30.163 8.428-42.805 0-6.666-4.442-19.376-14.164-21.98-21.98-7.098-21.292-2.498-42.62 10.412-55.53 3.705-3.705 138.831-101.808 143.454-104.12 6.854-3.426 12.475-5.785 23.138-5.785zM784.369 155.738c0-30.209 19.002-47.432 48.589-47.432 8.098 0 11.569 2.314 17.353 4.628 3.47 2.314 38.177 25.452 75.197 52.060 49.801 35.794 67.111 46.294 80.982 67.1 7.559 11.34 5.568 28.413 1.157 41.648-5.11 15.331-29.362 31.148-52.060 26.608-21.767-5.442-37.763-21.048-86.767-56.687-38.177-27.765-70.57-52.060-72.884-54.374-7.509-7.509-11.569-17.349-11.569-33.55zM587.698 204.327c105.107 0 184.38 36.673 244.103 84.452 14.729 11.783 51.040 48.78 62.472 64.785 47.068 65.896 80.982 132.349 80.982 245.26 0 85.262-27.988 136.962-56.687 194.357-8.586 17.173-21.072 30.145-33.55 45.118-20.931 25.116-46.623 49.978-74.040 68.257l-24.295 16.197c-15.562 10.376-31.908 16.65-49.747 24.295-45.744 19.603-80.531 27.765-146.924 27.765-75.737 0-119.846-13.647-171.219-39.334-6.942-3.47-18.51-8.098-25.452-12.725l-24.295-16.197c-26.354-17.569-53.275-42.588-72.884-67.1-4.628-5.785-12.725-16.197-18.51-23.138-13.819-16.584-21.374-35.088-32.393-54.374-14.332-25.078-25.831-55.496-31.236-87.923-4.159-24.954-9.255-38.626-9.255-74.040 0-57.898 7.284-89.698 19.667-133.042 11.839-41.435 34.176-74.919 56.687-106.434 38.703-54.184 93.677-99.712 159.65-126.1 35.319-14.128 79.94-28.922 127.257-28.922 3.47 0 12.725-1.157 19.667-1.157zM588.855 301.505c-65.283 0-110.302 19.211-151.552 43.962-56.17 33.702-98.921 86.209-121.473 153.866-6.809 18.155-9.015 38.131-12.725 56.687-1.157 5.785-1.157 20.824-1.157 34.707 0 57.618 12.822 89.304 30.079 129.572 20.945 48.873 58.814 84.329 100.649 112.218 29.674 19.782 67.551 36.754 109.904 42.805 8.098 1.157 21.98 3.47 31.236 3.47h32.393c22.582 0 42.584-5.060 61.315-10.412 29.545-8.442 57.11-21.541 80.982-35.863 5.785-3.47 15.040-12.725 21.98-17.353 14.735-9.825 32.126-29.813 43.962-41.648 17.93-17.93 35.278-52.911 45.118-77.512 12.679-31.702 18.51-60.839 18.51-105.277 0-77.797-24.072-127.871-56.687-173.532-18.759-26.263-43.025-48.35-69.413-65.942-42.408-28.274-92.4-49.747-163.121-49.747zM590.012 397.527c-27.94 0-40.389 18.204-47.432 39.334-1.157 3.47-1.157 34.707-1.157 80.982 0 45.118 0 77.512 1.157 80.982 6.224 18.674 15.84 31.093 33.55 38.177h122.63c20.999-6.999 35.863-21.969 35.863-49.747 0-24.272-20.153-36.141-35.863-45.118h-60.158v-49.747c0-44.645 0.262-50.116-5.785-68.257-4.953-14.861-23.352-26.608-42.805-26.608z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["alarm"],"defaultCode":59908,"grid":0},"properties":{"id":29,"order":223,"ligatures":"","prevSize":24,"code":59908,"name":"alarm"},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 89.178-18.878 160.585-52.060 218.652-4.628 8.098-10.412 21.98-15.040 28.922-18.212 27.318-36.749 56.415-60.158 79.825l-26.608 26.608c-23.381 23.381-52.243 41.77-79.825 60.158-6.942 4.628-20.824 10.412-28.922 15.040-48.988 27.993-106.588 41.173-174.69 50.903-8.098 1.157-26.608 1.157-43.962 1.157-166.498 0-270.296-70.154-354.007-153.866-15.533-15.533-30.733-36.266-42.805-54.374-49.149-73.725-85.61-162.96-85.61-286.908 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314h40.491zM587.698 135.54c-11.569 0-25.452 1.157-32.393 1.157-39.478 0-76.183 14.982-107.59 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.21 35.734-18.51 72.358-18.51 119.159 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098s19.667-8.098 26.608-10.412c27.972-9.324 57.709-26.036 78.668-42.805 27.546-22.038 57.004-46.311 78.668-75.197 20.59-27.453 44.546-70.391 59.002-104.12 3.47-8.098 5.785-21.98 8.098-28.922 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM592.325 280.152c25.646 0 37.594 17.917 43.962 37.020 1.157 5.785 2.314 19.667 2.314 106.434 0 69.413 0 101.806-1.157 106.434-6.989 20.967-16.832 32.553-39.334 38.177-30.377 6.075-48.057-15.754-55.53-38.177-1.157-4.628-1.157-37.020-1.157-106.434 0-85.61 0-100.649 1.157-106.434 4.804-14.412 11.335-19.433 20.824-28.922 6.687-6.687 14.644-8.098 28.922-8.098zM592.325 665.395c-28.739 0-43.874 16.999-49.747 40.491-5.338 26.689 12.225 41.7 27.765 52.060 5.785 2.314 9.255 3.47 17.353 3.47 30.253 0 50.903-17.997 50.903-47.432 0-22.864-13.124-36.062-28.922-43.962-6.942-3.47-9.255-4.628-17.353-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["alert-circle"],"defaultCode":59909,"grid":0},"properties":{"id":30,"order":224,"ligatures":"","prevSize":24,"code":59909,"name":"alert-circle"},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M587.698 79.913c64.076 0 104.199 33.682 128.414 74.040 18.021 30.032 330.514 569.636 345.909 600.423 7.696 15.393 8.098 24.063 8.098 49.747 0 58.955-24.929 92.449-59.002 118.002-15.73 11.797-35.891 19.673-59.002 24.295-9.255 1.157-49.747 2.314-363.262 2.314-315.829 0-354.007-1.157-362.106-2.314-69.85-13.97-119.159-63.15-119.159-146.924 0-27.722 7.478-42.722 17.353-62.472 0.096-0.191 345.901-594.626 345.909-594.64 7.711-12.85 24.184-29.319 37.020-37.020 20.847-12.509 45.791-25.452 79.825-25.452zM595.796 177.092h-12.725c-8.978 0-22.415 8.532-27.765 13.883-9.116 9.116-342.253 589.734-347.066 596.953-3.47 5.785-3.47 8.098-3.47 18.51 0 24.601 16.245 37.807 34.707 43.962 5.785 1.157 43.962 2.314 349.379 2.314 226.749 0 344.752 0 348.223-1.157 18.329-9.163 44.648-23.866 37.020-54.374-2.461-14.77-343.955-599.627-350.536-606.208-5.773-5.773-17.758-13.883-27.765-13.883zM588.855 370.292c27.148 0 41.642 18.493 48.589 39.334 1.157 3.47 1.157 23.138 1.157 56.687 0 46.036 0.326 52.236-5.785 70.57-4.953 14.861-23.352 26.608-42.805 26.608-28.4 0-40.304-17.952-47.432-39.334-1.157-3.47-1.157-27.765-1.157-57.844 0-33.55 0-53.217 1.157-56.687 6.548-19.645 20.473-39.334 46.275-39.334zM588.855 659.513c-27.112 0-52.422 25.956-46.275 56.687 5.568 22.269 19.058 39.334 47.432 39.334 28.46 0 41.729-16.52 47.432-39.334 6.075-30.377-15.754-48.057-38.177-55.53-3.47-1.157-8.098-1.157-10.412-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["alert-triangle"],"defaultCode":59910,"grid":0},"properties":{"id":31,"order":225,"ligatures":"","prevSize":24,"code":59910,"name":"alert-triangle"},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M586.541 38.362c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM587.698 135.54c-11.569 0-26.608 1.157-32.393 1.157-15.122 0-33.721 5.62-48.589 8.098-48.381 8.064-91.848 31.104-128.414 54.374-13.204 8.804-20.364 13.422-24.295 17.353 186.74 185.737 363.179 361.81 539.33 538.17l2.093 2.096c14.811-23.698 30.759-43.622 42.805-71.727 15.075-35.17 28.506-72.279 34.707-115.689 1.157-11.569 1.157-21.98 1.157-48.589 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM555.305 555.49l-270.711-270.711-8.098 11.569c-12.105 15.132-19.655 31.506-30.079 49.747-14.394 25.19-20.553 51.245-30.079 79.825-9.086 27.258-11.569 60.637-11.569 94.865 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725 9.256-6.943 27.235-14.508 34.707-21.98 2.314-2.314 5.785-4.628 5.785-4.628s-120.316-121.473-269.554-270.711z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["banlist"],"defaultCode":59950,"grid":0},"properties":{"id":50,"order":244,"ligatures":"","prevSize":24,"code":59950,"name":"banlist"},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M1071.276 870.164c-10.644 21.29-20.24 35.863-52.060 35.863-12.055 0-14.731-4.473-26.608-10.412-53.313-26.656-105.596-46.275-185.102-46.275-76.976 0-127.040 17.245-178.16 42.805-15.766 7.882-24.006 13.883-43.962 13.883-12.055 0-14.731-4.473-26.608-10.412-53.701-26.85-106.033-46.275-186.259-46.275-54.318 0-86.429 7.6-126.1 20.824-6.942 2.314-19.667 6.942-26.608 10.412l-23.138 11.569c-13.444 6.722-20.655 9.583-33.55 13.883-29.579 7.395-44.825-16.766-54.374-35.863l-1.157-321.614c0-286.908 1.157-322.771 2.314-328.556 6.773-20.315 13.365-26.927 33.55-37.020 42.773-24.442 93.923-43.699 151.552-50.903 14.846-1.856 35.36-5.785 49.747-5.785h35.863c82.571 0 135.863 18.233 193.2 42.805l16.197 6.942 18.51-8.098c58.134-25.837 115.077-41.648 198.984-41.648 74.989 0 125.056 9.633 178.16 32.393 13.553 5.808 53.668 24.981 64.785 32.393 8.39 4.195 16.631 15.189 19.667 24.295 2.314 5.785 1.157 19.667 1.157 330.869v323.928zM371.361 222.307c-40.22 0-60.421 6.407-91.394 11.569-18.794 3.133-43.827 12.668-60.158 19.667l-13.883 5.785-1.157 261.456v261.456l15.040-5.785c30.057-8.587 63.313-17.746 97.179-21.98 12.725-1.157 24.295-1.157 56.687-1.157 62.539 0 81.653 4.506 128.414 16.197 15.881 3.971 27.904 7.644 39.334 12.725v-521.756l-12.725-5.785c-44.026-22.013-92.869-32.393-157.337-32.393zM805.192 222.307c-63.228 0-107.215 11.737-152.709 31.236l-13.883 5.785v522.913l15.040-5.785c51.705-14.773 83.351-23.138 153.866-23.138 62.539 0 81.653 4.506 128.414 16.197 15.881 3.971 27.904 7.644 39.334 12.725v-261.456l-1.157-260.299-11.569-5.785c-43.946-21.972-93.077-32.393-157.337-32.393z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["pages"],"defaultCode":59961,"grid":0},"properties":{"id":51,"order":245,"ligatures":"","prevSize":24,"code":59961,"name":"pages"},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M594.64 86.952c192.589 0 143.321-2.348 189.729 9.255 21.298 5.325 37.406 18.895 52.060 33.55 21.531 21.531 33.191 44.839 41.648 78.668l1.157 352.851c0 320.457-1.157 352.851-2.314 358.634-6.841 20.523-20.616 34.707-48.589 34.707-5.785 0-11.569-2.314-15.040-3.47-2.314-1.157-54.374-31.236-114.532-67.1l-108.747-65.942-108.747 65.942c-60.158 35.863-112.218 65.942-114.532 67.1-3.47 1.157-9.255 3.47-15.040 3.47-27.881 0-41.653-13.898-48.589-34.707-1.157-5.785-2.314-37.020-2.314-352.851 0-240.632 0-350.536 1.157-356.321 2.788-11.155 5.456-27.108 10.412-37.020 9.963-19.926 23.203-35.928 38.177-50.903 14.214-14.214 33.691-25.479 56.687-30.079 5.785-1.157 12.725-4.628 16.197-4.628s80.982-1.157 171.219-1.157zM592.325 184.13c-150.395 0-157.337 0-163.121 2.314-15.537 5.179-23.629 18.559-31.236 31.236v301.947c0 165.435 1.157 300.791 1.157 300.791 89.457-53.673 169.784-103.183 178.16-105.277 3.47-1.157 9.255-1.157 12.725-1.157s9.255 0 12.725 1.157c8.377 2.094 88.703 51.603 178.16 105.277 0 0 1.157-135.355 1.157-300.791v-301.947c-7.117-14.234-18.438-26.97-34.707-32.393l-155.022-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["bookmark"],"defaultCode":59962,"grid":0},"properties":{"id":52,"order":246,"ligatures":"","prevSize":24,"code":59962,"name":"bookmark"},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M594.64 38.362c127.539 0 98.84-1.609 137.669 8.098 29.362 7.34 54.489 29.461 70.57 50.903 21.164 28.219 28.922 51.666 28.922 102.963v31.236h54.374c42.805 0 56.687 1.157 64.785 2.314 33.052 6.61 56.128 17.951 76.355 38.177 20.677 20.677 36.060 43.788 42.805 77.512 2.314 9.255 1.157 23.138 1.157 242.946s1.157 234.848-1.157 244.103c-3.062 15.311-9.937 27.734-15.040 40.491-16 40-57.796 65.933-104.12 75.197-10.412 1.157-45.118 2.314-360.948 2.314-316.987 0-350.536-1.157-360.948-2.314-62.986-12.597-106.562-52.701-119.159-115.689-2.314-9.255-1.157-24.295-1.157-244.103s-1.157-233.691 1.157-242.946c3.062-15.311 9.937-27.734 15.040-40.491 16-40 57.796-65.933 104.12-75.197 9.255-1.157 21.98-2.314 64.785-2.314h54.374v-32.393c0-39.631 3.33-39.929 9.255-63.629 2.764-11.057 9.583-23.576 16.197-32.393 12.801-17.069 29.315-36.639 48.589-46.275 13.952-6.976 33.923-17.353 53.217-17.353 4.628 0 57.844-1.157 119.159-1.157zM592.325 135.54c-98.335 0-107.59 0-113.375 2.314-17.44 5.814-26.459 16.907-32.393 34.707-1.157 4.628-1.157 12.725-1.157 32.393v26.608h289.221v-26.608c0-30.607-1.544-28.923-6.942-45.118-4.102-12.307-17.463-17.409-28.922-23.138zM939.391 328.741h-696.445c-18.911 6.305-29.668 16.329-37.020 34.707l-1.157 87.923v87.923l20.824 8.098c26.877 10.75 45.417 20.335 74.040 28.922 52.725 15.818 103.859 32.020 165.435 38.177l80.982 8.098c11.569 1.157 32.393 1.157 43.962 1.157 45.369 0 84.452-5.206 124.944-9.255 90.102-9.010 163.295-34.973 234.848-64.785l25.452-10.412v-87.923l-1.157-87.923c-8.888-17.773-17.557-24.907-34.707-34.707zM588.855 472.194c60.285 0 68.339 97.179 1.157 97.179-21.738 0-38.65-11.828-43.962-27.765-9.673-29.021 3.302-51.175 21.98-63.629 3.47-2.314 9.255-4.628 11.569-4.628s6.942-1.157 9.255-1.157zM205.926 644.57c-1.157 0-1.157 17.353-1.157 89.080l1.157 87.923c7.842 18.297 16.134 26.747 34.707 34.707h698.759c18.297-7.842 26.747-16.134 34.707-34.707l1.157-87.923c0-71.727 0-89.080-1.157-89.080s-6.942 3.47-13.883 5.785c-38.246 12.748-76.771 30.625-120.316 39.334-68.973 13.794-135.476 24.954-217.494 30.079-54.487 2.724-109.683-1.647-157.337-6.942-10.412-1.157-27.765-3.47-39.334-5.785l-40.491-8.098c-56.476-11.296-106.399-25.207-156.18-45.118-11.569-4.628-21.98-9.255-23.138-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["briefcase"],"defaultCode":59974,"grid":0},"properties":{"id":53,"order":247,"ligatures":"","prevSize":24,"code":59974,"name":"briefcase"},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M300.791 31.518c11.168-16.751 20.398-35.863 47.432-35.863 14.722 0 27.658 7.991 35.863 16.197 13.411 13.411 13.883 26.827 13.883 56.687v23.138h288.064v-25.452c0-39.76 4.321-49.928 26.608-64.785 12.443-8.295 31.016-4.315 43.962 0 13.133 4.377 21.162 20.681 25.452 33.55 1.157 3.47 1.157 17.353 1.157 31.236v25.452h31.236c77.372 0 120.087 29.621 145.767 80.982 3.47 6.942 8.098 16.197 9.255 20.824l4.628 18.51c1.157 8.098 2.314 23.138 2.314 113.375 0 74.040 0 106.434-1.157 112.218-5.635 22.535-17.646 30.081-35.863 40.491h-734.622v172.376c0 168.905 0 172.376 2.314 179.317 3.706 14.823 16.439 27.537 31.236 31.236 6.942 2.314 10.412 2.314 177.004 2.314 146.924 0 170.062 0 175.847 1.157 21.345 7.115 35.863 19.015 35.863 47.432 0 30.23-15.315 39.812-38.177 47.432-3.47 1.157-61.315 1.157-180.474 1.157-163.121 0-175.847 0-183.945-2.314-51.527-12.882-83.759-43.731-105.277-86.767-5.51-11.021-7.715-27.004-10.412-40.491-1.157-8.098-1.157-99.492-1.157-312.359 0-284.594 0-301.947 2.314-310.046 14.57-58.281 57.096-102.35 118.002-114.532 6.942-1.157 20.824-2.314 41.648-2.314h31.236v-60.158zM274.182 188.854c-44.716 0-55.473 7.192-68.257 37.020l-1.157 77.512v77.512h674.465v-77.512c0-77.512-1.157-77.512-3.47-83.295-3.857-11.572-16.289-23.939-27.765-27.765-5.785-2.314-9.255-3.47-35.863-3.47h-28.922v26.608c0 30.607-1.544 28.923-6.942 45.118-3.774 11.321-20.367 24.295-34.707 24.295h-13.883c-11.497 0-18.784-6.059-25.452-12.725-14.833-14.833-16.197-22.33-16.197-56.687v-26.608h-288.064v23.138c0 12.725-1.157 25.452-1.157 30.079 0 24.602-23.019 42.805-47.432 42.805-24.183 0-41.391-14.016-46.275-33.55-2.314-6.942-2.314-10.412-2.314-34.707v-27.765h-26.608zM888.489 526.665c51.748 0 90.799 19.54 123.787 39.334 21.809 13.085 43.725 35.161 59.002 55.53 26.679 35.572 48.589 82.14 48.589 144.611 0 93.603-43.348 152.219-96.022 194.357-5.785 4.628-15.040 10.412-19.667 12.725-19.233 9.617-42.139 23.605-67.1 27.765-19.4 3.233-32.969 6.942-57.844 6.942-59.094 0-95.956-17.083-133.042-39.334-21.809-13.085-43.725-35.161-59.002-55.53-26.932-35.91-48.589-82.615-48.589-145.767 0-58.624 17.072-95.94 39.334-133.042 13.085-21.809 35.161-43.725 55.53-59.002 28.502-21.376 63.896-38 105.277-46.275 5.785-1.157 17.353-2.314 25.452-2.314h24.295zM883.861 623.843h-18.51c-46.732 0-80.424 29.957-101.806 56.687-18.022 22.528-27.765 47.144-27.765 86.767 0 46.071 14.899 75.056 38.177 98.335 24.572 24.572 56.22 45.118 105.277 45.118 39.009 0 64.523-9.973 86.767-27.765 31.849-25.478 56.687-58.774 56.687-115.689 0-56.967-24.627-90.041-56.687-115.689-20.226-16.18-47.326-27.765-82.139-27.765zM882.704 646.982h-10.412c-21.562 0-33.816 20.464-39.334 37.020-1.157 5.785-2.314 13.883-2.314 46.275 0 40.173-0.11 41.318 5.785 59.002 2.314 4.628 9.255 12.725 32.393 35.863 25.452 25.452 30.079 30.079 37.020 33.55 4.628 2.314 11.569 4.628 15.040 4.628h13.883c17.027 0 29.728-15.495 35.863-27.765 2.314-4.628 4.628-10.412 4.628-13.883v-12.725c0-3.47-2.314-10.412-4.628-15.040-3.47-5.785-6.942-11.569-23.138-27.765l-19.667-19.667v-27.765c0-31.107 1.242-32.221-5.785-46.275-6.216-12.432-21.438-25.452-39.334-25.452z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["calendar-time"],"defaultCode":60961,"grid":0},"properties":{"id":201,"order":71,"ligatures":"","prevSize":24,"code":60961,"name":"calendar-time"},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M396.812 38.362c27.179 0 38.949 16.069 47.432 35.863l1.157 30.079v30.079h289.221v-30.079l1.157-30.079c5.943-11.885 12.537-26.932 25.452-31.236 12.669-4.223 32.333-6.595 43.962 1.157 6.666 4.442 19.376 14.164 21.98 21.98 4.407 13.227 4.628 22.395 4.628 45.118v23.138h23.138c96.399 0 150.5 41.015 166.592 121.473 1.157 9.255 2.314 46.275 2.314 312.359 0 261.456 0 304.261-1.157 313.516-10.1 50.498-37.715 84.8-78.668 105.277-11.14 5.569-20.056 10.285-34.707 12.725l-11.569 2.314h-307.732c-292.692 0-307.732 1.157-316.987-1.157-61.757-12.352-103.259-57.009-115.689-119.159-1.157-9.255-1.157-52.060-1.157-313.516 0-266.084 1.157-303.104 2.314-312.359 6.932-34.66 19.177-57.354 40.491-78.668 19.929-19.929 42.039-29.824 70.57-39.334 3.47-1.157 12.725-1.157 19.667-2.314s23.138-1.157 35.863-1.157h23.138v-23.138c0-43.549 6.427-61.144 38.177-71.727 3.47-1.157 8.098-1.157 10.412-1.157zM321.614 231.562c-42.99 0-55.737 6.3-67.1 34.707l-1.157 78.668v78.668h673.308v-78.668l-1.157-78.668c-6.72-16.796-18.93-27.52-37.020-33.55-3.47-1.157-17.353-1.157-31.236-1.157h-25.452v24.295c0 30.588-1.109 43.914-15.040 57.844-10.897 10.897-36.070 22.23-55.53 9.255-12.129-8.087-19.159-16.555-25.452-31.236l-1.157-30.079v-30.079h-289.221v30.079l-1.157 30.079c-8.753 20.425-18.241 28.447-40.491 35.863-29.117 7.279-48.72-17.877-54.374-40.491-1.157-4.628-1.157-18.51-1.157-31.236v-24.295h-26.608zM926.666 520.784h-673.308v174.69l1.157 174.69c7.685 17.929 14.515 28.363 33.55 34.707 5.785 1.157 49.747 1.157 301.947 1.157 286.908 0 296.163 0 303.104-2.314 17.921-5.973 26.329-15.357 32.393-33.55l1.157-174.69v-174.69zM444.244 616.805c-37.020 0-53.217 0-57.844 1.157-11.052 3.685-16.651 7.396-24.295 15.040-18.381 18.381-13.883 31.961-13.883 80.982 0 26.608 0 50.903 1.157 54.374 6.010 18.030 11.393 28.834 27.765 37.020l6.942 4.628h122.63c11.946-7.964 23.392-13.236 30.079-26.608 8.766-17.531 5.785-28.447 5.785-70.57 0-57.826 3.997-69.833-26.608-90.237-3.47-2.314-9.255-3.47-12.725-4.628s-24.295-1.157-59.002-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["calendar-event"],"defaultCode":59986,"grid":0},"properties":{"id":54,"order":248,"ligatures":"","prevSize":24,"code":59986,"name":"calendar-event"},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M396.812 38.362c26.759 0 39.126 16.483 47.432 35.863l1.157 30.079v30.079h289.221v-30.079l1.157-30.079c5.734-11.466 13.056-25.947 25.452-30.079l13.883-4.628c19.775-3.956 33.116 5.35 42.805 15.040 13.583 13.583 13.883 26.369 13.883 56.687v23.138h21.98c48.050 0 78.712 4.199 105.277 25.452 5.785 4.628 16.197 11.569 21.98 17.353 20.916 20.916 33.593 44.176 40.491 78.668 1.157 9.255 2.314 46.275 2.314 312.359s-1.157 304.261-2.314 313.516c-12.431 62.156-52.367 106.726-114.532 119.159-9.255 2.314-21.98 1.157-316.987 1.157s-307.732 1.157-316.987-1.157c-13.109-2.623-26.707-8.726-37.020-13.883-40.652-20.327-68.561-54.735-78.668-105.277-1.157-9.255-1.157-52.060-1.157-313.516 0-266.084 1.157-303.104 2.314-312.359 1.157-5.785 2.314-15.040 3.47-19.667 3.278-13.116 12.822-26.769 19.667-38.177 17.66-29.431 51.014-50.93 87.923-60.158 16.444-4.112 33.721-3.47 56.687-3.47h21.98v-23.138c0-43.549 6.427-61.144 38.177-71.727 3.47-1.157 8.098-1.157 10.412-1.157zM321.614 231.562c-42.99 0-55.737 6.3-67.1 34.707l-1.157 78.668v78.668h673.308v-78.668l-1.157-78.668c-11.344-28.363-26.143-34.707-68.257-34.707h-25.452v24.295c0 30.588-1.109 43.914-15.040 57.844-6.247 6.247-16.489 13.883-26.608 13.883h-13.883c-19.854 0-34.179-18.086-39.334-33.55-2.314-5.785-2.314-10.412-2.314-34.707v-27.765h-289.221v27.765c0 24.295 0 28.922-2.314 34.707-5.466 16.397-18.339 33.55-39.334 33.55h-13.883c-22.091 0-35.906-22.152-40.491-40.491-1.157-4.628-1.157-18.51-1.157-31.236v-24.295h-26.608zM926.666 520.784h-673.308v174.69l1.157 174.69c7.685 17.929 14.515 28.363 33.55 34.707 5.785 1.157 49.747 1.157 301.947 1.157s296.163 0 301.947-1.157c18.762-6.254 25.817-16.664 33.55-34.707l1.157-174.69v-174.69zM569.188 616.805c-42.784 0-43.924-2.352-62.472 16.197-3.47 3.47-8.098 8.098-9.255 11.569-4.5 13.503-4.71 27.519 0 41.648 5.23 15.693 25.35 25.107 43.962 27.765v50.903c0 30.079 0 52.060 1.157 55.53 6.782 13.564 12.804 23.961 25.452 32.393 26.083 17.388 54.524-5.432 64.785-20.824 2.314-3.47 3.47-9.255 4.628-12.725s1.157-33.55 1.157-85.61v-78.668c-14.723-29.445-18.724-38.177-69.413-38.177z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["calendar"],"defaultCode":59987,"grid":0},"properties":{"id":55,"order":194,"ligatures":"","prevSize":24,"code":59987,"name":"calendar"},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M593.483 108.306l158.494 1.157 11.569 3.47c5.785 2.314 15.040 5.785 19.667 8.098 18.077 9.039 27.496 25.625 38.177 41.648 10.931 16.397 7.207 51.301 18.51 68.257 14.326 21.488 26.336 21.98 68.257 21.98 50.95 0 72.364 4.236 100.649 25.452 29.066 21.8 52.861 50.278 61.315 92.55 2.314 9.255 1.157 23.138 1.157 242.946s1.157 234.848-1.157 244.103c-6.65 33.255-19.759 54.466-40.491 75.197-21.472 21.472-44.327 33.624-78.668 40.491-10.412 1.157-45.118 2.314-360.948 2.314-316.987 0-350.536-1.157-360.948-2.314-62.986-12.597-106.562-52.701-119.159-115.689-2.314-9.255-1.157-24.295-1.157-244.103s-1.157-233.691 1.157-242.946c3.062-15.311 9.937-27.734 15.040-40.491 16.084-40.212 57.415-65.857 104.12-75.197 8.098-1.157 18.51-2.314 42.805-2.314 38.031 0 45.086 2.346 61.315-13.883 17.442-17.442 10.319-53.656 25.452-76.355 13.687-20.53 27.832-41.666 55.53-48.589 4.628-1.157 10.412-4.628 13.883-4.628s77.512-1.157 165.435-1.157zM974.098 384.801c-5.97-16.992-18.835-27.623-34.707-34.707h-37.020c-51.562 0-54.934-3.463-86.767-16.197-15.198-6.079-26.116-14.546-37.020-25.452-17.841-17.841-32.141-38.332-39.334-67.1-2.314-6.942-4.628-19.667-4.628-25.452v-10.412h-289.221v10.412c0 30.834-16.042 54.501-27.765 74.040-17.885 29.812-54.080 50.151-92.55 57.844-8.098 1.157-19.667 2.314-47.432 2.314h-38.177c-16.407 7.157-26.71 18.082-33.55 34.707v458.126c5.615 17.345 17.356 29.096 34.707 34.707h698.759c17.345-5.615 29.096-17.356 34.707-34.707v-458.126zM588.855 397.527c80.109 0 128.441 40.527 163.121 86.767 3.47 4.628 6.942 15.040 10.412 20.824 12.064 20.107 15.702 42.823 19.667 70.57 6.334 63.334-19.354 107.199-47.432 142.297-23.918 29.897-62.252 52.478-106.434 61.315-5.785 1.157-16.197 3.47-24.295 3.47h-27.765c-54.505 0-96.938-30.995-124.944-59.002-22.612-22.612-42.175-54.698-49.747-92.55-8.938-44.689-1.314-96.917 16.197-126.1 3.47-5.785 6.942-16.197 10.412-20.824 29.483-39.311 66.714-73.591 124.944-83.295 6.942-1.157 13.883-2.314 16.197-2.314s11.569-1.157 19.667-1.157zM588.855 494.705c-43.337 0-68.626 21.564-83.295 50.903-7.086 11.811-11.569 22.463-11.569 39.334 0 45.283 19.289 73.852 49.747 89.080 4.628 2.314 11.569 6.942 16.197 8.098 9.767 2.441 25.031 4.628 37.020 4.628 26.36 0 57.118-19.157 68.257-35.863 11.528-17.292 20.824-36.141 20.824-65.942 0-34.963-21.874-59.499-42.805-75.197-13.614-10.21-31.681-15.040-54.374-15.040z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["camera"],"defaultCode":59988,"grid":0},"properties":{"id":56,"order":193,"ligatures":"","prevSize":24,"code":59988,"name":"camera"},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M1023.844 331.054c0 22.67-22.039 45.118-45.118 45.118-14.037 0-19.581-2.85-27.765-6.942-3.47-2.314-37.020-33.55-85.61-82.139l-79.825-79.825-104.12 124.944c-56.687 68.257-105.277 126.1-107.59 128.414-7.004 7.004-17.083 11.569-32.393 11.569h-12.725c63.119 27.19 8.887-0.596-45.48-28.151l-119.954-55.144-61.315 82.139c-33.55 45.118-63.629 83.295-65.942 85.61-28.302 28.302-79.825 4.038-79.825-35.863 0-7.92 2.032-16.788 4.628-21.98 0.128-0.258 155.959-206.863 156.18-207.082 7.004-7.004 17.083-11.569 32.393-11.569h12.725l166.592 83.295s211.074-252.722 223.279-264.927c4.041-4.041 12.729-10.412 19.667-10.412 2.314 0 8.098-1.157 11.569-1.157 10.003 0 23.085 3.417 28.922 9.255 5.84 3.893 200.743 201.042 204.769 207.082 4.064 8.128 6.942 13.766 6.942 27.765zM192.044 904.87c-20.592-6.865-35.863-22.372-35.863-49.747 0-5.785 1.157-10.412 3.47-15.040 1.157-3.47 47.432-72.884 101.806-153.866s100.649-149.239 102.963-151.552c9.137-9.137 16.795-13.883 35.863-13.883l9.255 1.157 83.295 40.491c45.118 23.138 82.139 41.648 83.295 41.648 3.105 0 161.966-202.458 175.847-216.337 4.041-4.041 12.729-10.412 19.667-10.412 2.314 0 8.098-1.157 11.569-1.157 8.472 0 18.533 4.061 24.295 6.942 6.039 4.026 203.189 198.929 207.082 204.769 3.47 3.47 5.785 10.412 6.942 15.040 2.314 6.942 2.314 10.412 2.314 135.355s0 127.257-2.314 134.199c-4.077 16.309-18.37 27.333-33.55 32.393h-795.937zM786.682 497.646c-109.755 136.796-154.139 193.473-163.121 202.455-7.968 7.968-24.279 16.2-41.648 12.725-7.977-1.596-2.317-0.631-167.749-80.982-1.864 2.675-112.832 168.671-119.159 178.16h632.817v-172.376c-49.342-48.55-95.324-94.165-141.122-139.965l-0.019-0.019z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chart-area-line"],"defaultCode":59991,"grid":0},"properties":{"id":57,"order":192,"ligatures":"","prevSize":24,"code":59991,"name":"chart-area-line"},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M882.704 86.952c102.963 0 109.904 0 116.845 2.314 39.007 13.004 61.188 38.825 71.727 80.982 1.157 5.785 1.157 115.689 1.157 350.536s0 344.752-1.157 350.536c-9.186 36.738-24.921 58.735-55.53 74.040-4.628 2.314-11.569 5.785-16.197 6.942-6.942 2.314-23.138 1.157-409.538 1.157-340.124 0-401.439 0-407.224-1.157-31.38-10.459-61.005-29.997-69.413-63.629-8.521-34.086-5.785-48.844-5.785-181.631 0-152.709 1.157-153.866 3.47-161.964 9.055-36.219 35.481-61.508 71.727-70.57 6.942-2.314 16.197-2.314 111.061-2.314h102.963v-55.53c0-52.060 1.157-55.53 3.47-64.785 9.478-37.915 35.936-59.887 74.040-69.413 6.942-1.157 24.295-2.314 109.904-2.314h101.806v-49.747c0-57.284-1.591-65.075 13.883-96.022 9.33-18.663 32.182-37.547 53.217-42.805 4.628-1.157 9.255-3.47 12.725-3.47s55.53-1.157 116.845-1.157zM975.254 182.973h-192.044v674.465h27.765c15.040 0 59.002 1.157 96.022 1.157h68.257v-675.622zM686.033 376.173h-192.044v481.265h192.044v-481.265zM300.791 569.373h-96.022v288.064h192.044v-288.064h-96.022z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["hits"],"defaultCode":59993,"grid":0},"properties":{"id":58,"order":191,"ligatures":"","prevSize":24,"code":59993,"name":"hits"},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M594.64 39.52c31.321 0 51.208 8.327 69.413 21.98 4.628 3.47 11.569 6.942 15.040 10.412 13.675 13.675 31.352 37.599 35.863 60.158 2.062 10.311 5.954 16.365 11.569 21.98 7.152 7.152 10.329 10.412 25.452 10.412 11.043 0 42.855-16.214 53.217-19.667 8.098-2.314 15.040-3.47 26.608-3.47 64.295 0 103.282 30.718 124.944 74.040 7.597 15.197 12.725 33.932 12.725 56.687 0 31.306-10.346 51.931-20.824 72.884-2.314 3.47-2.314 6.942-2.314 13.883 0 35.363 31.619 34.32 55.53 46.275 37.135 18.567 56.107 45.112 67.1 89.080 1.157 4.628 3.47 13.883 3.47 19.667 0 45.24-14.839 77.311-38.177 100.649-16.534 13.228-34.377 27.699-57.844 32.393-11.667 2.333-13.451 4.196-19.667 10.412-7.152 7.152-10.412 10.329-10.412 25.452 0 11.391 16.060 42.394 19.667 53.217 2.314 8.098 3.47 15.040 3.47 26.608 0 65.709-30.148 98.84-71.727 123.787-16.195 9.717-35.258 13.883-60.158 13.883-31.273 0-48.906-9.413-69.413-19.667-6.942-3.47-8.098-3.47-16.197-3.47-35.363 0-34.32 31.619-46.275 55.53-20.609 41.217-54.883 69.413-115.689 69.413-39.904 0-68.848-13.318-89.080-33.55-13.669-13.669-31.301-36.187-35.863-59.002-2.062-10.311-5.954-16.365-11.569-21.98-7.152-7.152-10.329-10.412-25.452-10.412-11.391 0-42.394 16.060-53.217 19.667-8.098 2.314-15.040 3.47-26.608 3.47-65.249 0-101.769-30.004-123.787-74.040-8.402-16.803-13.883-32.079-13.883-57.844 0-31.273 9.413-48.906 19.667-69.413 3.47-6.942 3.47-8.098 3.47-16.197 0-35.363-31.619-34.32-55.53-46.275-41.298-20.65-69.413-54.883-69.413-115.689 0-32.853 8.118-55.557 21.98-74.040 3.47-4.628 6.942-11.569 10.412-15.040 13.675-13.675 37.599-31.352 60.158-35.863 10.311-2.062 16.365-5.954 21.98-11.569 7.152-7.152 10.412-10.329 10.412-25.452 0-11.391-16.060-42.394-19.667-53.217-2.314-8.098-3.47-15.040-3.47-26.608 0-54.822 22.721-88.478 54.374-112.218 20.653-15.489 42.299-25.452 77.512-25.452 31.273 0 48.906 9.413 69.413 19.667 6.942 3.47 8.098 3.47 16.197 3.47 36.21 0 32.734-30.762 45.118-55.53 18.549-37.099 49.194-57.127 93.708-68.257 4.628-1.157 10.412-1.157 11.569-1.157h16.197zM872.292 273.21c0-21.541-13.171-34.707-34.707-34.707-8.098 0-9.255 0-23.138 6.942-14.208 8.119-21.289 9.41-34.707 13.883-3.47 1.157-11.569 2.314-17.353 2.314-62.619 10.436-108.905-33.865-129.572-75.197-5.237-10.477-8.5-37.8-18.51-42.805-7.311-3.656-10.43-8.098-21.98-8.098-24.174 0-34.21 12.559-38.177 32.393-4.748 23.734-20.107 42.087-34.707 56.687-21.038 21.038-48.804 37.020-91.394 37.020-30.577 0-41.571-6.743-63.629-16.197-12.725-6.942-13.883-6.942-21.98-6.942-21.541 0-34.707 13.171-34.707 34.707 0 8.098 0 9.255 6.942 23.138 8.119 14.208 9.41 21.289 13.883 34.707 1.157 3.47 2.314 11.569 2.314 17.353 7.441 44.647-16.63 82.573-39.334 105.277-16.548 16.548-32.491 24.327-56.687 32.393-18.845 6.282-30.079 12.36-30.079 37.020 0 30.299 30.339 30.207 50.903 40.491 34.227 17.114 58.684 45.322 71.727 84.452 3.47 10.412 2.314 13.883 2.314 34.707 0 33.007-0.939 38.015-13.883 61.315-8.098 16.197-8.098 16.197-8.098 24.295 0 21.541 13.171 34.707 34.707 34.707 16.616 0 29.619-13.766 43.962-17.353 12.425-3.106 24.080-5.785 41.648-5.785 62.795 0 98.116 33.11 119.159 75.197 5.237 10.477 8.5 37.8 18.51 42.805 8.674 4.337 8.96 6.942 24.295 6.942 24.109 0 30.652-9.804 34.707-30.079 7.64-38.202 38.105-65.33 69.413-80.982 14.482-7.241 26.702-13.883 47.432-13.883h21.98c20.898 0 31.689 6.011 49.747 15.040 16.197 8.098 16.197 8.098 24.295 8.098 21.541 0 34.707-13.171 34.707-34.707 0-16.616-13.766-29.619-17.353-43.962-3.106-12.425-5.785-24.080-5.785-41.648 0-45.622 15.977-71.507 39.334-94.865 14.91-14.91 32.319-26.593 55.53-31.236 19.849-3.971 30.079-12.358 30.079-35.863 0-34.6-26.192-32.92-50.903-42.805-27.86-11.144-46.776-34.547-60.158-61.315-9.146-18.294-13.883-31.346-13.883-57.844 0-27.23 5.183-43.198 16.197-62.472 6.942-13.883 6.942-15.040 6.942-23.138zM594.64 328.741c45.149 0 75.128 13.837 102.963 32.393 9.255 6.942 17.353 11.569 28.922 23.138 22.787 22.787 33.741 43.86 46.275 75.197 36.002 90.002-19.555 186.912-74.040 220.965-21.765 14.511-45.261 25.091-75.197 30.079-6.942 1.157-18.51 3.47-25.452 3.47-62.317 0-108.389-21.622-139.984-53.217-5.785-5.785-13.883-12.725-17.353-17.353-18.563-24.751-34.242-51.589-40.491-89.080-1.157-6.942-3.47-19.667-3.47-26.608 0-67.709 25.112-111.878 59.002-145.767 31.421-31.421 76.029-53.217 138.827-53.217zM588.855 424.762c-31.598 0-47.664 12.9-65.942 26.608-16.993 12.745-28.922 41.086-28.922 69.413 0 22.407 6.101 39.757 16.197 53.217 3.47 4.628 8.098 12.725 12.725 16.197 17.653 13.238 35.774 26.608 67.1 26.608 32.102 0 48.561-12.703 67.1-26.608 16.993-12.745 28.922-41.086 28.922-69.413 0-22.407-6.101-39.757-16.197-53.217-3.47-4.628-8.098-12.725-12.725-16.197-18.032-13.524-36.106-26.608-68.257-26.608z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["settings"],"defaultCode":60192,"grid":0},"properties":{"id":129,"order":120,"ligatures":"","prevSize":24,"code":60192,"name":"settings"},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M447.715 34.892c38.729 0 66.432 3.248 94.865 12.725l24.295 8.098c56.751 18.917 106.413 56.372 139.984 98.335 42.226 52.783 79.825 115.208 79.825 209.396 0 46.458-3.654 73.434-15.040 107.59l-3.47 13.883 137.669 137.669c101.806 101.806 138.827 141.14 143.454 148.082 14.538 19.386 28.922 47.328 28.922 79.825 0 37.253-9.882 61.413-21.98 85.61-13.065 26.131-35.518 40.746-60.158 55.53-19.181 11.507-38.095 16.197-68.257 16.197-38.293 0-65.994-11.319-87.923-27.765-6.942-4.628-46.275-41.648-148.082-143.454l-137.669-137.669-13.883 3.47c-29.98 9.995-59.071 15.040-99.492 15.040-11.569 0-28.922 0-37.020-1.157s-20.824-4.628-28.922-5.785c-97.927-13.991-163.426-74.446-211.71-138.827-9.921-13.227-18.050-27.846-25.452-45.118-3.47-8.098-10.412-19.667-12.725-26.608-12.035-36.106-20.824-70.449-20.824-119.159 0-59.086 14.565-100.62 31.236-142.297 7.36-17.174 25.494-35.393 52.060-30.079 3.47 1.157 11.569 2.314 15.040 4.628 5.785 2.314 15.040 11.569 86.767 83.295l80.982 79.825h75.197v-75.197l-79.825-80.982c-70.57-70.57-80.982-80.982-83.295-86.767-18.475-27.712 6.263-58.876 25.452-67.1 40.369-16.148 82.492-31.236 139.984-31.236zM446.558 130.913c-4.628 0-9.255 1.157-11.569 1.157s-6.942 1.157-11.569 1.157h-6.942l57.844 59.002c62.451 62.451 54.865 52.628 67.1 74.040v171.219c-8.457 12.684-13.478 22.935-27.765 30.079l-6.942 4.628h-171.219c-21.645-12.369-11.303-5.696-74.040-67.1l-59.002-57.844v4.628c0 2.314-2.314 11.569-2.314 18.51 0 44.285 9.237 83.26 24.295 113.375 37.556 75.113 99.234 123.899 200.141 136.512 43.215 3.929 83.871-4.916 113.375-19.667 11.272-5.636 22.23-10.060 34.707-6.942l13.883 4.628c17.457 8.73 305.281 304.216 315.829 307.732 7.715 3.857 14.511 5.785 27.765 5.785 29.608 0 50.903-23.713 50.903-53.217 0-9.189-2.742-19.364-5.785-25.452-3.499-10.5-300.122-299.453-307.732-314.673-12.96-25.919 4.189-53.058 11.569-75.197 7.846-23.54 13.368-55.409 10.412-87.923-4.195-33.558-10.623-61.737-23.138-86.767-20.188-40.375-46.111-74.173-84.452-97.179-35.618-21.371-78.339-40.491-135.355-40.491z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["tool"],"defaultCode":60224,"grid":0},"properties":{"id":137,"order":112,"ligatures":"","prevSize":24,"code":60224,"name":"tool"},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M303.104 86.952c24.273 0 37.776 17.306 43.962 35.863 1.157 5.785 2.314 13.883 2.314 33.55v26.608h8.098c26.034 0 46.474 16.395 60.158 30.079 11.564 11.564 20.812 24.247 25.452 42.805 2.314 6.942 1.157 13.883 1.157 96.022 0 87.923 0 87.923-2.314 97.179-4.515 18.062-12.919 32.586-24.295 43.962-13.221 13.221-38.819 27.765-63.629 27.765h-4.628v195.514c0 172.376-1.157 196.671-2.314 202.455-6.623 19.867-19.221 34.707-46.275 34.707-27.8 0-39.337-13.895-46.275-34.707-1.157-5.785-2.314-30.079-2.314-202.455v-195.514h-8.098c-12.529 0-24.164-5.719-33.55-10.412-12.529-6.264-17.134-9.035-26.608-18.51-3.47-3.47-10.412-10.412-12.725-15.040l-8.098-16.197c-2.314-4.628-3.47-13.883-4.628-18.51-1.157-8.098-2.314-19.667-2.314-94.865 0-77.512 0-86.767 2.314-92.55 6.002-18.004 18.27-39.173 32.393-48.589 8.785-5.858 19.312-15.53 31.236-18.51 8.284-2.071 20.384-3.549 30.079-4.628v-26.608c0-34.035 1.811-42.301 16.197-56.687 8.57-8.57 17.642-12.725 34.707-12.725zM590.012 953.459c-31.443 0-44.676-20.038-48.589-47.432h-9.255c-27.466 0-46.736-16.657-61.315-31.236-13.094-13.094-19.279-28.524-24.295-48.589-1.157-4.628-1.157-37.020-1.157-87.923s0-84.452 1.157-89.080c6.472-25.891 18.401-48.132 38.177-61.315 12.121-8.080 28.241-18.51 47.432-18.51h9.255v-219.809c0-194.357 1.157-220.965 2.314-226.749 3.297-9.895 7.595-16.85 13.883-23.138 8.57-8.57 17.642-12.725 34.707-12.725 24.273 0 37.776 17.306 43.962 35.863 1.157 5.785 2.314 32.393 2.314 226.749v219.809h9.255c20.513 0 34.81 10.095 47.432 18.51 17.439 11.626 26.239 27.418 34.707 48.589l3.47 11.569v180.474c-3.239 9.717-7.41 21.762-11.569 30.079-9.039 18.077-25.625 27.496-41.648 38.177-7.099 4.732-21.503 9.255-32.393 9.255h-9.255c-3.914 27.395-17.158 47.432-48.589 47.432zM830.644 135.54c4.051-28.356 19.109-48.589 50.903-48.589 28.327 0 42.678 23.404 46.275 48.589h9.255c19.948 0 35.090 10.284 47.432 18.51 19.998 13.331 29.668 33.476 38.177 59.002v226.749c-5.49 21.961-12.863 39.471-26.608 53.217-13.221 13.221-38.819 27.765-63.629 27.765h-4.628v195.514c0 172.376-1.157 196.671-2.314 202.455-6.623 19.867-19.221 34.707-46.275 34.707-27.8 0-39.337-13.895-46.275-34.707-1.157-5.785-2.314-30.079-2.314-202.455v-195.514h-8.098c-12.529 0-24.164-5.719-33.55-10.412-12.529-6.264-17.134-9.035-26.608-18.51-3.47-3.47-10.412-10.412-12.725-15.040l-8.098-16.197c-2.314-4.628-3.47-12.725-4.628-17.353-1.157-8.098-2.314-23.138-2.314-114.532 0-67.1 0-108.747 1.157-113.375 6.472-25.891 18.401-48.132 38.177-61.315 12.121-8.080 28.241-18.51 47.432-18.51h9.255zM926.666 231.562h-94.865v192.044h94.865v-192.044zM348.223 280.152h-94.865v143.454h94.865v-143.454zM590.012 665.395h-47.432v144.611h94.865v-144.611h-47.432z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chart-candle"],"defaultCode":59994,"grid":0},"properties":{"id":59,"order":190,"ligatures":"","prevSize":24,"code":59994,"name":"chart-candle"},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M599.267 39.52c13.883 0 31.236 0 40.491 1.157 143.879 17.985 245.278 83.509 320.457 171.219 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 87.889-18.763 153.216-48.589 212.867-22.134 44.267-45.51 81.374-78.668 114.532l-26.608 26.608c-23.216 23.216-49.658 42.423-78.668 59.002-67.568 38.611-142.265 68.257-248.731 68.257-44.169 0-70.007-0.666-104.12-10.412-40.884-11.682-72.227-19.916-108.747-38.177-44.267-22.134-81.374-45.51-114.532-78.668l-26.608-26.608c-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c34.998-69.996 86.228-125.883 148.082-170.062 56.448-40.319 123.325-72.487 207.082-84.452 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 135.54c-12.725 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.236 10.412-69.754 36.41-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-21.524 32.285-34.481 69.777-46.275 111.061-8.266 28.929-11.569 55.623-11.569 92.55 0 48.193 7.83 81.776 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 15.887 47.662 45.335 82.399 74.040 116.845 11.678 14.015 32.493 31.31 46.275 41.648 26.914 20.186 67.759 43.253 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 64.944 0 112.938-10.238 159.65-28.922 91.108-36.443 152.812-102.574 197.827-185.102 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-32.584-21.721-69.337-34.354-111.061-46.275-29.939-8.555-56.259-11.569-94.865-11.569zM733.465 376.173c-10.030 0-15.406 2.496-21.98 5.785-3.47 2.314-28.922 26.608-86.767 84.452l-83.295 82.139-32.393-33.55c-27.765-27.765-35.863-33.55-41.648-37.020-10.347-6.899-33.142-7.212-43.962 0-15.121 10.080-38.581 38.15-20.824 64.785 3.47 5.785 11.569 15.040 56.687 60.158 31.236 31.236 54.374 53.217 57.844 55.53 8.128 4.064 13.766 6.942 27.765 6.942 5.785 0 11.569-2.314 16.197-4.628 12.18-6.091 209.308-202.309 216.337-214.024 21.53-32.295-11.58-70.57-43.962-70.57z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["circle-check"],"defaultCode":60007,"grid":0},"properties":{"id":69,"order":180,"ligatures":"","prevSize":24,"code":60007,"name":"circle-check"},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 89.178-18.878 160.585-52.060 218.652-4.628 8.098-10.412 21.98-15.040 28.922-18.212 27.318-36.749 56.415-60.158 79.825l-26.608 26.608c-23.381 23.381-52.243 41.77-79.825 60.158-6.942 4.628-20.824 10.412-28.922 15.040-48.988 27.993-106.588 41.173-174.69 50.903-8.098 1.157-26.608 1.157-43.962 1.157-166.498 0-270.296-70.154-354.007-153.866-15.533-15.533-30.733-36.266-42.805-54.374-49.149-73.725-85.61-162.96-85.61-286.908 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314h40.491zM587.698 135.54c-11.569 0-25.452 1.157-32.393 1.157-39.478 0-76.183 14.982-107.59 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.21 35.734-18.51 72.358-18.51 119.159 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098s19.667-8.098 26.608-10.412c27.972-9.324 57.709-26.036 78.668-42.805 27.546-22.038 57.004-46.311 78.668-75.197 20.59-27.453 44.546-70.391 59.002-104.12 3.47-8.098 5.785-21.98 8.098-28.922 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM588.855 472.194c-134.537 0-141.040-2.733-166.592 5.785-17.735 5.912-34.389 42.704-19.667 64.785 8.182 12.272 18.17 20.324 33.55 25.452 4.628 1.157 48.589 1.157 153.866 1.157 104.12 0 149.239 0 153.866-1.157 9.907-3.302 17.137-5.568 24.295-12.725 10.86-10.86 22.003-37.564 9.255-56.687-4.885-7.325-11.949-17.864-20.824-20.824-3.47-1.157-9.255-3.47-12.725-4.628-4.628-1.157-49.747-1.157-155.022-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["circle-minus"],"defaultCode":60008,"grid":0},"properties":{"id":70,"order":179,"ligatures":"","prevSize":24,"code":60008,"name":"circle-minus"},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M586.541 38.362c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM587.698 135.54c-11.569 0-26.608 1.157-32.393 1.157-15.122 0-33.721 5.62-48.589 8.098-34.682 5.78-58.192 16.37-87.923 31.236-45.116 24.608-82.604 48.361-114.532 85.61-18.381 21.443-35.956 41.833-48.589 67.1l-10.412 20.824c-23.627 47.255-40.491 100.863-40.491 171.219 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c42.901-28.601 77.075-72.928 104.12-118.002 14.378-23.963 25.023-55.403 34.707-84.452 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM588.855 327.584c-25.899 0-39.647 19.451-46.275 39.334-1.157 3.47-1.157 23.138-1.157 55.53v49.747h-49.747c-32.393 0-52.060 0-55.53 1.157-20.448 6.817-44.393 24.451-38.177 55.53 5.319 21.279 18.017 32.614 38.177 39.334 3.47 1.157 23.138 1.157 55.53 1.157h49.747v49.747c0 32.393 0 52.060 1.157 55.53 6.817 20.448 24.451 44.393 55.53 38.177 21.868-5.467 32.37-17.284 39.334-38.177 1.157-3.47 1.157-23.138 1.157-55.53v-49.747h49.747c48.346 0 48.997 0.636 68.257-5.785 18.256-6.085 36.4-41.424 20.824-64.785-19.669-29.504-28.196-26.608-89.080-26.608h-49.747v-49.747c0-32.393 0-52.060-1.157-55.53-7.152-21.454-20.639-39.334-48.589-39.334z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["circle-plus"],"defaultCode":60009,"grid":0},"properties":{"id":71,"order":178,"ligatures":"","prevSize":24,"code":60009,"name":"circle-plus"},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 120.431-37.191 202.711-85.61 275.339-12.039 18.059-25.966 36.379-41.648 52.060l-26.608 26.608c-23.216 23.216-49.658 42.423-78.668 59.002-67.997 38.855-141.674 68.257-248.731 68.257-61.931 0-102.929-9.575-150.395-23.138-58.128-16.607-106.538-49.655-150.395-80.982-18.745-13.39-37.101-33.631-53.217-49.747-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c29.76-59.519 70.548-106.415 119.159-148.082 60.273-51.661 139.032-92.579 236.004-106.434 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 135.54c-11.569 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.4 36.401-18.51 71.869-18.51 119.159 0 47.34 8.057 82.572 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 15.887 47.662 45.335 82.399 74.040 116.845 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098s19.667-8.098 26.608-10.412c47.662-15.887 82.399-45.335 116.845-74.040 14.015-11.678 31.31-32.493 41.648-46.275 13.298-17.73 29.325-42.194 41.648-64.785 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM493.99 376.173c-23.693 0-35.663 12.327-43.962 28.922-2.314 5.785-4.628 9.255-4.628 16.197 0 14.037 2.85 19.581 6.942 27.765 1.157 2.314 17.353 19.667 35.863 38.177l32.393 33.55-32.393 33.55c-18.51 18.51-34.707 35.863-35.863 38.177-4.064 8.128-6.942 13.766-6.942 27.765 0 23.369 22.065 45.118 45.118 45.118 14.037 0 19.581-2.85 27.765-6.942 2.314-1.157 19.667-17.353 38.177-35.863l33.55-32.393 33.55 32.393c18.51 18.51 35.863 34.707 38.177 35.863 8.128 4.064 13.766 6.942 27.765 6.942 22.906 0 45.118-22.595 45.118-45.118 0-14.037-2.85-19.581-6.942-27.765-1.157-2.314-17.353-19.667-35.863-38.177l-32.393-33.55 32.393-33.55c18.51-18.51 34.707-35.863 35.863-38.177 4.064-8.128 6.942-13.766 6.942-27.765 0-22.906-22.595-45.118-45.118-45.118-14.037 0-19.581 2.85-27.765 6.942-2.314 1.157-19.667 17.353-38.177 35.863l-33.55 32.393-33.55-32.393c-26.886-26.886-31.234-34.321-49.747-40.491-3.47-1.157-9.255-2.314-12.725-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["circle-x"],"defaultCode":60010,"grid":0},"properties":{"id":72,"order":177,"ligatures":"","prevSize":24,"code":60010,"name":"circle-x"},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 89.178-18.878 160.585-52.060 218.652-4.628 8.098-10.412 21.98-15.040 28.922-18.212 27.318-36.749 56.415-60.158 79.825l-26.608 26.608c-23.381 23.381-52.243 41.77-79.825 60.158-6.942 4.628-20.824 10.412-28.922 15.040-48.988 27.993-106.588 41.173-174.69 50.903-8.098 1.157-26.608 1.157-43.962 1.157-166.498 0-270.296-70.154-354.007-153.866-15.533-15.533-30.733-36.266-42.805-54.374-49.149-73.725-85.61-162.96-85.61-286.908 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314h40.491zM587.698 135.54c-11.569 0-25.452 1.157-32.393 1.157-39.478 0-76.183 14.982-107.59 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.21 35.734-18.51 72.358-18.51 119.159 0 47.553 6.327 84.743 19.667 120.316 14.463 38.569 28.337 74.467 52.060 104.12 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098s19.667-8.098 26.608-10.412c27.972-9.324 57.709-26.036 78.668-42.805 27.546-22.038 57.004-46.311 78.668-75.197 20.59-27.453 44.546-70.391 59.002-104.12 3.47-8.098 5.785-21.98 8.098-28.922 11.849-35.548 13.883-54.601 13.883-105.277 0-51.033-1.93-69.419-13.883-105.277-2.314-6.942-4.628-20.824-8.098-28.922-15.086-35.201-37.109-74.159-57.844-101.806-26.632-35.51-63.024-66.311-100.649-91.394-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM592.325 231.562c-21.074 0-39.832 10.748-45.118 26.608-1.157 3.47-3.47 9.255-4.628 12.725s-1.157 50.903-1.157 129.572c0 86.767 0 124.944 1.157 129.572 1.157 3.47 2.314 10.412 4.628 13.883 5.782 9.638 153.188 156.929 165.435 164.277 16.995 11.329 45.442 1.99 55.53-8.098 10.86-10.86 22.003-37.564 9.255-56.687-3.47-5.785-13.883-16.197-71.727-75.197l-67.1-68.257v-111.061c0-70.57 0-114.532-1.157-118.002-6.328-18.987-19.651-39.334-45.118-39.334z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["clock"],"defaultCode":60016,"grid":0},"properties":{"id":73,"order":176,"ligatures":"","prevSize":24,"code":60016,"name":"clock"},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M879.234 724.59c0-30.283 23.168-48.589 53.217-48.589 44.415 0 74.356-26.257 93.708-52.060 14.437-19.248 20.824-42.759 20.824-75.197 0-36.558-18.296-61.101-37.020-79.825-28.39-28.39-42.064-31.647-102.963-33.55h-39.334c-11.398-6.513-26.908-13.624-31.236-26.608l-4.628-13.883c-2.488-12.442 3.47-40.185 3.47-56.687 0-53.529-19.693-83.718-42.805-114.532-24.718-32.957-61.404-51.631-102.963-68.257-20.23-8.091-50.501-11.569-76.355-11.569-37.579 0-71.752 9.727-99.492 20.824-5.785 2.314-13.883 6.942-18.51 10.412s-12.725 6.942-16.197 9.255c-16.25 10.832-35.216 28.832-47.432 45.118-8.638 11.517-17.383 20.321-23.138 34.707-3.594 8.985-12.725 27.971-12.725 37.020 0 17.336-19.379 29.935-31.236 35.863-8.838 2.946-53.658 3.79-63.629 5.785-8.098 1.157-18.51 5.785-24.295 8.098-43.932 17.573-79.721 46.591-97.179 90.237-8.407 21.016-12.725 37.615-12.725 68.257 0 21.157 5.641 32.973 9.255 47.432 10.643 42.572 50.934 74.635 86.767 92.55 19.279 9.639 27.059 16.84 32.393 38.177 6.184 30.914-15.337 49.532-39.334 55.53-23.287 4.657-39.846-10.091-56.687-18.51-19.158-9.579-34.529-22.959-49.747-38.177-6.942-6.942-17.353-17.353-21.98-24.295s-12.725-15.040-16.197-20.824c-24.071-40.117-41.648-85.8-41.648-149.239 0-40.973 14.007-71.247 26.608-100.649 7.204-16.807 20.367-34.484 30.079-47.432 21.749-28.999 52.24-53.307 86.767-70.57 25.784-12.893 58-28.922 94.865-28.922 10.116-2.528 9.416-13.045 16.197-26.608 25.533-51.065 63.548-91.809 111.061-120.316 13.434-8.061 37.723-21.444 53.217-26.608l24.295-8.098c24.91-8.304 49.572-15.040 80.982-15.040 8.098 0 16.197-1.157 17.353-1.157 48.828 0 92.872 12.447 128.414 24.295 28.893 9.631 54.238 26.181 77.512 42.805 28.116 20.084 57.622 54.004 75.197 83.295 16.639 27.733 30.647 58.938 37.020 97.179 1.157 6.942 3.47 20.824 3.47 28.922v15.040l11.569 1.157c50.492 0 90.586 26.292 120.316 48.589 11.527 8.645 27.193 25.459 35.863 37.020 23.808 31.745 43.962 75.212 43.962 130.728 0 36.505-8.358 57.467-17.353 84.452-11.988 35.964-37.626 63.882-64.785 85.61-31.668 25.334-66.809 39.877-118.002 46.275-33.564 3.356-49.224-5.899-60.158-27.765-3.47-6.942-4.628-8.098-4.628-19.667zM592.325 435.368c-21.074 0-39.832 10.748-45.118 26.608-1.157 3.47-3.47 9.255-4.628 12.725s-1.157 62.472-1.157 165.435v159.65l-33.55-33.55c-30.079-30.079-35.863-33.55-42.805-37.020-8.098-3.47-8.098-4.628-19.667-4.628-36.745 0-55.138 34.727-43.962 68.257 5.512 13.779 154.25 159.649 167.749 167.749 10.46 6.974 30.656 7.328 41.648 0 13.498-8.099 162.235-153.968 167.749-167.749 2.52-7.56 5.856-18.226 3.47-27.765l-4.628-13.883c-4.724-14.171-23.353-26.608-42.805-26.608-11.569 0-11.569 1.157-19.667 4.628-6.942 3.47-12.725 6.942-42.805 37.020l-33.55 33.55v-159.65c0-102.963 0-161.964-1.157-165.435-6.328-18.987-19.651-39.334-45.118-39.334z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-download"],"defaultCode":60017,"grid":0},"properties":{"id":74,"order":175,"ligatures":"","prevSize":24,"code":60017,"name":"cloud-download"},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M610.836 68.008c63.514 0 116.225 17.042 158.494 38.177 52.179 26.090 93.364 63.443 122.63 112.218 16.639 27.733 30.647 58.938 37.020 97.179 1.157 6.942 3.47 20.824 3.47 28.922v15.040l11.569 1.157c50.492 0 90.586 26.292 120.316 48.589 20.224 15.168 37.717 37.023 50.903 59.002 16.409 27.348 28.922 59.683 28.922 101.806 0 42.993-6.432 70.709-20.824 99.492l-10.412 20.824c-10.664 21.327-32.561 42.012-50.903 56.687-40.217 32.173-83.685 47.432-157.337 47.432-42.715 0-51.745-1.842-68.257-26.608-6.899-10.347-7.212-33.142 0-43.962 15.947-23.921 26.496-26.608 71.727-26.608 39.929 0 41.648 0 64.785-9.255 21.95-8.781 39.803-24.919 53.217-42.805 12.24-16.318 16-32.567 20.824-56.687 7.665-53.661-24.098-94.284-57.844-114.532-28.061-16.837-31.985-17.353-84.452-17.353h-37.020c-21.010-12.005-40.775-24.627-35.863-59.002 2.575-12.87 4.628-29.45 4.628-45.118 0-45.727-23.862-80.79-43.962-107.59-16.451-21.934-38.262-35.535-61.315-50.903-9.357-6.239-30.322-12.823-41.648-17.353-20.423-8.17-50.18-11.569-76.355-11.569-50.553 0-88.699 16.584-122.63 33.55-23.711 11.856-43.551 31.458-59.002 52.060-8.638 11.517-17.383 20.321-23.138 34.707-3.594 8.985-12.725 27.971-12.725 37.020 0 17.336-19.379 29.935-31.236 35.863-3.47 1.157-12.725 1.157-23.138 2.314-30.986 0-51.308 9.88-72.884 18.51-5.785 2.314-16.197 8.098-21.98 12.725-13.155 10.524-35.22 25.923-43.962 40.491-15.658 26.099-31.236 54.427-31.236 96.022 0 54.288 22.751 91.008 50.903 119.159 6.942 6.942 18.51 13.883 24.295 18.51 22.83 18.264 55.981 31.236 94.865 31.236 10.412 1.157 19.667 1.157 23.138 2.314 12.498 6.248 21.112 14.893 28.922 26.608 3.47 5.785 2.314 6.942 2.314 19.667 0 19.262-4.604 25.429-13.883 34.707-31.893 31.893-109.164 2.562-141.14-8.098-48.126-16.043-83.641-51.085-113.375-86.767-11.658-13.991-19.991-27.42-26.608-43.962-5.31-13.278-14.218-30.601-17.353-46.275l-8.098-40.491c-1.157-5.785-1.157-18.51-1.157-26.608 0-59.531 18.077-105.205 42.805-142.297 33.727-50.59 80.237-84.318 142.297-107.59 13.925-5.222 37.406-12.725 50.903-12.725 4.913-2.456 13.495-28.276 17.353-34.707 27.287-45.477 62.167-84.963 107.59-112.218 13.434-8.061 37.723-21.444 53.217-26.608l24.295-8.098c24.91-8.304 49.572-15.040 80.982-15.040 8.098 0 16.197-1.157 17.353-1.157zM592.325 408.133c-10.392 0-19.788 3.532-26.608 6.942-0.685 0.457-151.662 145.179-163.121 164.277-6.899 10.347-7.212 33.142 0 43.962 9.105 13.657 25.454 30.542 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 4.628-2.314 13.883-9.255 40.491-35.863l33.55-33.55v159.65c0 114.532 0 160.807 1.157 165.435 6.817 20.448 24.451 44.393 55.53 38.177 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-50.903 1.157-165.435v-159.65l33.55 32.393c27.765 26.608 34.707 33.55 40.491 37.020 16.995 11.329 45.442 1.99 55.53-8.098 10.86-10.86 22.003-37.564 9.255-56.687-8.422-14.038-158.279-161.821-158.494-161.964-6.918-4.612-16.149-9.255-26.608-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-upload"],"defaultCode":60021,"grid":0},"properties":{"id":75,"order":174,"ligatures":"","prevSize":24,"code":60021,"name":"cloud-upload"},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M490.52 954.616c-22.67 0-45.118-22.039-45.118-45.118-2.25-18.004 197.76-795.803 197.827-795.937 7.56-15.121 22.399-26.608 45.118-26.608 21.545 0 34.358 14.343 41.648 28.922 2.314 5.785 4.628 9.255 4.628 16.197 0 24.124-197.43 795.143-197.827 795.937-7.69 15.381-23.321 26.608-46.275 26.608zM395.655 712.827c0 29.67-18.195 48.589-47.432 48.589-11.569 0-12.725-1.157-20.824-4.628-12.231-5.242-207.869-203.766-214.024-214.024-6.899-10.347-7.212-33.142 0-43.962 12.89-21.483 204.065-207.385 210.554-211.71 8.812-5.875 11.68-6.942 26.608-6.942 27.407 0 45.118 20.319 45.118 48.589 0 11.569 0 12.725-3.47 20.824s-9.255 12.725-85.61 89.080l-80.982 82.139 80.982 82.139c76.355 76.355 82.139 80.982 85.61 89.080s3.47 9.255 3.47 20.824zM832.957 280.152c-27.862 0-35.038 12.067-46.275 28.922-3.47 5.785-2.314 8.098-2.314 19.667s0 12.725 3.47 20.824 9.255 12.725 85.61 89.080l80.982 82.139-80.982 82.139c-76.355 76.355-82.139 80.982-85.61 89.080s-3.47 9.255-3.47 20.824c0 29.807 18.004 48.589 47.432 48.589 11.569 0 12.725-1.157 20.824-4.628 12.231-5.242 207.869-203.766 214.024-214.024 6.899-10.347 7.212-33.142 0-43.962-6.155-10.258-201.793-208.782-214.024-214.024-6.942-3.47-9.255-4.628-19.667-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["code"],"defaultCode":60023,"grid":0},"properties":{"id":76,"order":173,"ligatures":"","prevSize":24,"code":60023,"name":"code"},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 89.178-18.878 160.585-52.060 218.652-4.628 8.098-10.412 21.98-15.040 28.922-18.212 27.318-36.749 56.415-60.158 79.825l-26.608 26.608c-23.381 23.381-52.243 41.77-79.825 60.158-6.942 4.628-20.824 10.412-28.922 15.040-48.988 27.993-106.588 41.173-174.69 50.903-8.098 1.157-26.608 1.157-43.962 1.157-166.498 0-270.296-70.154-354.007-153.866-15.533-15.533-30.733-36.266-42.805-54.374-49.149-73.725-85.61-162.96-85.61-286.908 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314h40.491zM541.423 165.62v-27.765l-16.197 3.47c-70.174 10.025-124.795 40.378-171.219 75.197-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-5.177 15.531-15.617 35.858-18.51 53.217-1.157 6.942-3.47 19.667-4.628 27.765l-3.47 16.197h27.765c33.816 0 31.372 0.090 45.118 9.255 11.931 7.955 19.667 18.438 19.667 39.334 0 16.798-4.381 25.205-12.725 33.55-14.167 14.167-24.491 15.040-55.53 15.040h-24.295c4.969 22.358 8.787 48.339 16.197 70.57 13.063 39.186 29.529 75.666 53.217 105.277 11.812 14.765 18.401 22.777 31.236 38.177 11.678 14.015 32.493 31.31 46.275 41.648 42.307 31.731 90.738 56.812 150.395 71.727 14.934 3.734 25.179 4.31 37.020 6.942v-24.295c0-38.013 4.737-52.692 28.922-64.785 6.942-3.47 8.098-4.628 19.667-4.628 28.691 0 40.369 18.146 47.432 39.334 1.157 3.47 1.157 17.353 1.157 30.079v24.295c21.746-4.833 49.533-8.306 70.57-16.197 39.18-14.692 75.017-29.009 105.277-53.217 27.546-22.038 57.004-46.311 78.668-75.197 32.516-43.355 57.8-92.376 72.884-152.709 3.734-14.934 4.31-25.179 6.942-37.020h-24.295c-38.013 0-52.692-4.737-64.785-28.922-3.47-6.942-4.628-8.098-4.628-19.667 0-28.691 18.146-40.369 39.334-47.432 3.47-1.157 17.353-1.157 30.079-1.157h24.295c-2.639-11.878-3.198-22.043-6.942-37.020-27.794-111.177-88.878-186.125-172.376-241.789-15.536-10.356-39.361-22.762-57.844-28.922-15.531-5.177-35.858-15.617-53.217-18.51-6.942-1.157-19.667-3.47-27.765-4.628l-16.197-3.47v27.765c0 33.816-0.090 31.372-9.255 45.118-7.955 11.931-18.438 19.667-39.334 19.667-24.882 0-39.063-11.912-45.118-30.079-2.314-4.628-3.47-10.412-3.47-34.707zM395.655 761.416c-25.358 0-46.275-20.932-46.275-46.275v-10.412l49.747-148.082c27.765-82.139 50.903-150.395 52.060-153.866 2.731-8.188 11.565-15.038 18.51-19.667 3.47-2.314 72.884-25.452 155.022-53.217l148.082-49.747h11.569c25.358 0 46.275 20.932 46.275 46.275v10.412l-49.747 148.082c-27.765 82.139-50.903 150.395-52.060 153.866-2.842 8.526-12.428 15.998-19.667 20.824-3.47 2.314-72.884 25.452-155.022 52.060l-148.082 49.747h-10.412zM704.544 405.096c-1.157 0-39.334 12.725-86.767 28.922l-85.61 28.922-28.922 86.767c-16.197 47.432-28.922 86.767-28.922 86.767s40.491-12.725 87.923-28.922l85.61-28.922 28.922-85.61c16.197-47.432 28.922-86.767 28.922-86.767s0-1.157-1.157-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["compass"],"defaultCode":60025,"grid":0},"properties":{"id":77,"order":172,"ligatures":"","prevSize":24,"code":60025,"name":"compass"},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M492.833 86.952c183.945 0 208.239 1.157 217.494 2.314 52.714 10.542 86.344 38.49 107.59 80.982 12.368 24.739 13.883 36.886 13.883 77.512v31.236h23.138c97.279 0 150.291 41.131 166.592 122.63 1.157 10.412 2.314 31.236 2.314 220.965l-1.157 210.554c-13.112 52.447-40.062 91.223-86.767 109.904-5.785 2.314-15.040 6.942-21.98 8.098l-11.569 2.314-210.554 1.157c-189.729 0-210.554-1.157-220.965-2.314-80.068-16.014-122.63-69.386-122.63-166.592v-23.138h-31.236c-34.926 0-39.915-3.038-60.158-8.098-14.404-3.601-24.583-8.329-35.863-17.353-18.964-15.17-40.332-30.842-49.747-54.374-5.279-13.2-9.546-26.908-12.725-42.805-1.157-10.412-2.314-31.236-2.314-220.965l1.157-210.554 2.314-11.569c5.066-30.395 27.036-55.959 45.118-74.040 15.849-15.849 39.151-27.498 63.629-32.393 5.785-1.157 11.569-2.314 13.883-2.314s97.179-1.157 210.554-1.157zM495.148 184.13c-196.671 0-204.769 0-210.554 2.314-14.738 4.912-24.508 17.306-30.079 31.236v411.851c5.958 17.876 18.704 28.602 37.020 34.707 3.47 1.157 17.353 1.157 31.236 1.157h25.452v-129.572c0-156.412-2.561-112.392 9.255-159.65 11.921-47.681 58.041-83.798 107.59-93.708 11.569-2.314 11.569-3.47 139.984-3.47h129.572v-24.295c0-34.302-0.18-41.829-16.197-57.844-6.289-6.289-11.484-8.842-19.667-11.569zM686.033 376.173c-108.747 0-200.141 1.157-202.455 1.157-19.050 0-32.084 23.37-37.020 38.177-1.157 3.47-1.157 79.825-1.157 202.455 0 138.827 0 196.671 1.157 201.299 6.092 18.277 16.429 30.927 34.707 37.020l202.455 1.157c201.299 0 203.612 0 210.554-2.314 13.537-4.511 25.573-16.558 30.079-30.079 2.314-6.942 2.314-9.255 2.314-210.554l-1.157-202.455c-5.958-17.876-18.704-28.602-37.020-34.707-4.628-1.157-62.472-1.157-202.455-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["copy"],"defaultCode":60026,"grid":0},"properties":{"id":78,"order":171,"ligatures":"","prevSize":24,"code":60026,"name":"copy"},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M587.698 134.384c160.807 0 295.006 1.157 303.104 1.157 29.386 0 53.053 9.173 74.040 19.667 28.983 14.491 50.689 32.877 69.413 57.844 13.458 17.944 20.991 37.44 30.079 60.158 2.314 5.785 4.628 16.197 5.785 23.138 2.314 11.569 1.157 23.138 1.157 224.436s1.157 212.867-1.157 224.436c-11.346 68.067-52.096 114.55-105.277 141.14-21.292 10.645-44.241 19.667-74.040 19.667-8.098 0-143.454 1.157-300.791 1.157s-293.849-1.157-301.947-1.157c-57.157 0-98.089-30.989-127.257-60.158-24.802-24.802-42.708-58.517-50.903-99.492-2.314-9.255-2.314-26.608-2.314-216.337 0-176.165-4.050-199.559 4.628-242.946 7.013-35.064 24.727-67.532 46.275-89.080l17.353-17.353c20.621-20.621 55.483-36.084 89.080-42.805 5.785-1.157 15.040-2.314 21.98-2.314s142.297-1.157 300.791-1.157zM975.254 347.251c0-73.188-27.919-96.224-79.825-115.689h-300.791c-165.435 0-304.261 1.157-307.732 1.157-31.643 0-55.103 26.545-68.257 46.275-5.456 8.184-8.819 19.080-11.569 30.079-1.157 6.942-2.314 16.197-2.314 38.177v28.922h770.486v-28.922zM975.254 473.351h-770.486v124.944c0 109.904 1.157 126.1 2.314 134.199 11.141 44.564 36.952 62.301 77.512 77.512h608.522c20.722-7.771 46.408-15.241 57.844-32.393 6.21-9.315 11.869-16.794 17.353-27.765 2.314-4.628 3.47-12.725 4.628-17.353 1.157-8.098 2.314-24.295 2.314-134.199v-124.944zM300.791 665.395c0-29.295 21.89-48.589 50.903-48.589 24.309 0 46.275 20.984 46.275 45.118 0 30.48-16.257 44.845-40.491 50.903-30.622 6.125-56.687-17.471-56.687-47.432zM588.855 616.805c-60.344 0-59.95-5.993-82.139 16.197-3.47 3.47-8.098 8.098-9.255 11.569-4.5 13.503-4.71 27.519 0 41.648 4.317 12.955 21.539 22.219 34.707 26.608 3.47 1.157 24.295 1.157 57.844 1.157s54.374 0 57.844-1.157c10.845-3.616 17.842-7.43 25.452-15.040 3.47-3.47 8.098-8.098 9.255-11.569 4.5-13.503 4.71-27.519 0-41.648-4.317-12.955-21.539-22.219-34.707-26.608-3.47-1.157-24.295-1.157-59.002-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["credit-card"],"defaultCode":60036,"grid":0},"properties":{"id":85,"order":164,"ligatures":"","prevSize":24,"code":60036,"name":"credit-card"},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M585.385 38.362c127.263 0 242.114 16.937 328.556 60.158 27.774 13.888 50.183 27.045 70.57 47.432 18.341 18.341 30.822 39.99 38.177 69.413 1.157 4.628 1.157 102.963 1.157 305.418s0 300.791-1.157 305.418c-7.339 29.355-19.871 51.108-38.177 69.413-58.135 58.135-150.42 80.601-249.887 97.179-77.664 12.944-187.919 13.81-268.397 2.314-21.296-3.043-54.088-6.58-74.040-11.569-9.255-2.314-24.295-5.785-34.707-8.098s-24.295-8.098-33.55-10.412c-23.165-5.792-47.081-15.83-65.942-26.608-43.322-24.755-86.142-50.725-99.492-104.12-2.314-8.098-1.157-18.51-1.157-313.516s-1.157-305.418 1.157-313.516c10.547-42.191 37.923-64.273 69.413-86.767 28.335-20.239 61.182-30.897 96.022-43.962 33.126-12.421 66.768-17.75 105.277-25.452 24.382-4.877 53.666-6.13 78.668-9.255 9.255-1.157 25.452-2.314 35.863-2.314s30.079-1.157 41.648-1.157zM599.267 136.697h-53.217c-91.027 0-174.724 21.995-239.476 49.747-15.154 6.493-31.048 17.166-40.491 26.608l-9.255 9.255c-3.47 3.47-3.47 5.785-3.47 9.255 0 14.764 19.141 23.899 28.922 31.236 27.801 20.85 67.655 31.953 106.434 41.648 64.264 16.066 116.191 21.98 201.299 21.98 62.807 0 82.775-0.299 129.572-8.098 42.574-7.095 87.050-13.674 122.63-28.922 25.266-10.829 54.264-20.714 71.727-38.177 5.159-5.159 12.725-12.157 12.725-19.667 0-7.485-7.583-14.525-12.725-19.667-10.56-10.56-25.337-18.462-41.648-25.452-78.886-33.808-158.675-49.747-273.025-49.747zM253.358 358.819c-1.157 0-1.157 33.55-1.157 82.139v82.139c3.996 5.327 6.664 10.134 12.725 16.197 3.47 3.47 12.725 9.255 17.353 12.725 27.801 20.85 67.655 31.953 106.434 41.648 64.264 16.066 116.191 21.98 201.299 21.98 94.109 0 151.705-7.315 223.279-27.765 30.295-8.655 60.133-21.272 84.452-35.863 13.831-8.298 21.659-17.694 30.079-28.922v-82.139c0-59.002 0-82.139-1.157-82.139-8.509 0-20.806 9.413-31.236 13.883-107.29 45.981-278.315 65.518-429.205 43.962-74.494-10.643-142.75-23.941-198.984-52.060-6.942-3.47-13.883-5.785-13.883-5.785zM253.358 648.041c-1.157 0-1.157 25.452-1.157 79.825 0 52.060 0 82.139 1.157 84.452 17.673 35.349 65.518 49.218 105.277 62.472 49.297 16.432 102.315 22.295 161.964 28.922 11.569 1.157 38.177 1.157 69.413 1.157 94.109 0 151.705-7.315 223.279-27.765 20.641-5.898 40.948-11.664 59.002-21.98 8.098-4.628 20.824-9.255 26.608-13.883 36.546-29.238 28.922-20.681 28.922-113.375 0-54.374 0-79.825-1.157-79.825-8.509 0-20.806 9.413-31.236 13.883-76.528 32.798-165.143 44.761-269.554 50.903-54.126 2.256-113.943-0.41-159.65-6.942-21.296-3.043-54.088-6.58-74.040-11.569-9.255-2.314-24.295-5.785-34.707-8.098s-24.295-8.098-33.55-10.412c-19.051-4.762-45.458-15.786-60.158-23.138-4.628-2.314-9.255-4.628-10.412-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["cache"],"defaultCode":60040,"grid":0},"properties":{"id":86,"order":163,"ligatures":"","prevSize":24,"code":60040,"name":"cache"},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M592.325 86.952l400.283 1.157c43.868 10.968 67.597 36.695 78.668 80.982v511.343c-7.423 33.405-23.799 58.804-53.217 70.57-5.785 2.314-13.883 6.942-19.667 8.098-9.255 2.314-10.412 3.47-112.218 3.47h-102.963v94.865h28.922c25.452 0 28.922 1.157 34.707 3.47 18.473 6.157 32.393 21.806 32.393 46.275 0 24.122-16.424 39.024-34.707 45.118-5.785 1.157-30.079 2.314-254.515 2.314s-248.731-1.157-254.515-2.314c-19.089-6.363-34.707-20.7-34.707-46.275 0-22.571 15.373-39.446 32.393-45.118 5.785-2.314 9.255-3.47 34.707-3.47h28.922v-94.865h-102.963c-101.806 0-102.963-1.157-112.218-3.47-39.141-7.829-64.277-39.935-72.884-78.668v-511.343c3.519-14.077 6.594-29.732 15.040-38.177 6.432-6.432 10.411-16.581 18.51-21.98l13.883-9.255c8.32-5.547 18.355-7.771 28.922-10.412 6.942-1.157 56.687-2.314 407.224-2.314zM975.254 184.13h-770.486v481.265h770.486v-481.265zM590.012 762.573h-96.022v94.865h192.044v-94.865h-96.022z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["device-desktop"],"defaultCode":60041,"grid":0},"properties":{"id":87,"order":162,"ligatures":"","prevSize":24,"code":60041,"name":"device-desktop"},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M588.855 38.362c27.148 0 41.642 18.493 48.589 39.334 1.157 3.47 1.157 17.353 1.157 31.236v25.452h149.239c143.454 0 148.082 0 153.866 2.314 3.47 1.157 8.098 4.628 11.569 6.942s30.079 26.608 59.002 55.53c42.805 43.962 52.060 53.217 54.374 59.002l4.628 13.883c2.035 10.175-0.97 21.42-3.47 28.922-3.76 9.398-111.997 113.613-116.845 116.845-28.907 9.636-16.398 6.942-165.435 6.942h-146.924v96.022h27.765c33.548 0 29.893-0.671 45.118 6.942 9.114 4.558 17.349 16.185 20.824 26.608 2.314 6.942 2.314 9.255 2.314 111.061 0 102.963 0 104.12-2.314 111.061-5.287 15.857-15.366 25.946-31.236 31.236-6.942 2.314-9.255 2.314-34.707 2.314h-27.765v96.022h26.608c19.667 0 27.765 1.157 33.55 2.314 19.867 6.623 34.707 19.221 34.707 46.275 0 27.8-13.895 39.337-34.707 46.275-5.785 1.157-20.824 2.314-108.747 2.314s-102.963-1.157-108.747-2.314c-19.867-6.623-34.707-19.221-34.707-46.275 0-39.837 25.039-48.589 68.257-48.589h26.608v-96.022h-252.201c-24.382-12.19-11.087-2.988-70.57-62.472-50.903-50.903-54.374-54.374-57.844-62.472s-3.47-8.098-3.47-19.667 0-11.569 3.47-19.667c5.601-13.070 108.92-115.928 119.159-120.316l9.255-4.628h252.201v-96.022h-74.040c-80.832 0-68.465 1.472-93.708-6.942-6.135-2.045-18.781-14.696-20.824-20.824-8.614-25.843-4.628-40.21-4.628-123.787 0-93.708 0-98.335 2.314-104.12 3.551-10.651 13.077-22.156 21.98-26.608 21.749-10.875 5.056-8.098 92.55-8.098h76.355v-25.452c0-39.207 4.061-49.755 26.608-64.785 3.47-2.314 9.255-4.628 11.569-4.628s6.942-1.157 9.255-1.157zM908.156 231.562h-462.754v96.022h461.598c15.9-16.109 32.079-31.936 48.589-47.432-16.109-15.9-31.936-32.079-47.432-48.589zM478.951 617.962h-159.65c-15.557 15.354-30.645 30.808-45.442 46.538l-0.833 0.894c15.136 16.101 30.543 31.929 46.275 47.432h318.144v-94.865h-158.494z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["directions"],"defaultCode":60046,"grid":0},"properties":{"id":88,"order":161,"ligatures":"","prevSize":24,"code":60046,"name":"directions"},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M252.201 424.762c29.336 0 46.227 11.536 63.629 23.138 19.535 13.025 32.393 40.672 32.393 72.884 0 32.527-12.286 59.479-32.393 72.884-17.127 11.418-34.745 23.138-63.629 23.138-52.334 0-77.568-30.797-92.55-68.257-2.314-9.255-2.314-12.725-2.314-27.765 0-36.61 11.983-52.474 30.079-70.57 14.657-14.657 35.855-25.452 64.785-25.452zM592.325 424.762c21.701 0 29.83 3.089 43.962 11.569 28.561 16.32 48.589 39.963 48.589 84.452 0 44.385-19.995 68.113-48.589 84.452-15.211 9.127-22.392 10.412-46.275 10.412-38.246 0-51.241-10.749-70.57-30.079-16.208-16.208-24.295-33.311-24.295-64.785 0-24.293 1.926-28.147 9.255-42.805 2.314-4.628 4.628-10.412 6.942-13.883 7.488-11.232 26.056-26.811 39.334-31.236l13.883-4.628c3.47-1.157 8.098-2.314 9.255-2.314s9.255-1.157 18.51-1.157zM927.822 424.762c-29.93 0-45.544 11.083-63.629 23.138-19.47 12.981-32.393 41.11-32.393 72.884 0 57.095 39.423 96.022 96.022 96.022 17.086 0 30.032-3.447 41.648-9.255 30.916-15.458 53.217-40.155 53.217-86.767 0-29.443-7.227-42.076-18.51-59.002-14.378-21.567-41.208-37.020-76.355-37.020z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["dots"],"defaultCode":60053,"grid":0},"properties":{"id":89,"order":160,"ligatures":"","prevSize":24,"code":60053,"name":"dots"},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M592.325 65.598c26.265 0 38.566 19.677 45.118 39.334 1.157 4.628 1.157 86.767 1.157 238.319v231.377l82.139-82.139c77.512-76.355 83.295-82.139 90.237-85.61s8.098-2.314 19.667-2.314c16.881 0 22.344 1.52 30.079 9.255 9.913 9.913 18.51 20.38 18.51 40.491 0 5.785-2.314 11.569-4.628 16.197-7.427 14.858-252.011 257.871-263.77 264.927-10.46 6.974-30.656 7.328-41.648 0-11.869-7.121-256.341-250.069-263.77-264.927-2.314-4.628-4.628-10.412-4.628-16.197 0-19.901 8.54-30.521 18.51-40.491 7.688-7.688 13.27-9.255 30.079-9.255 11.569 0 12.725-1.157 19.667 2.314s12.725 9.255 90.237 85.61l82.139 82.139v-231.377c0-151.552 0-233.691 1.157-238.319 7.38-22.14 20.391-39.334 49.747-39.334zM205.926 692.629c-16.855 0-23.266 2.442-31.236 10.412-6.156 6.156-13.612 12.801-16.197 23.138-2.314 8.098-2.314 10.412-2.314 70.57 0 73.696 0.277 55.486 8.098 86.767 5.972 23.889 22.849 43.674 38.177 59.002 14.195 14.195 33.758 27.807 56.687 32.393 5.785 1.157 13.883 3.47 18.51 4.628 5.785 1.157 70.57 1.157 312.359 1.157 253.358 0 306.574 0 313.516-1.157 62.211-15.552 102.475-51.265 118.002-113.375 1.157-6.942 2.314-16.197 2.314-69.413 0-60.158 0-62.472-2.314-70.57-2.583-10.333-10.030-16.972-16.197-23.138-7.494-7.494-12.653-9.255-28.922-9.255-30.293 0-37.593 15.463-48.589 34.707v57.844c-1.157 56.687-1.157 60.158-3.47 65.942-5.274 15.822-17.307 25.821-33.55 31.236h-601.58c-16.481-5.494-28.165-15.080-33.55-31.236-2.314-5.785-2.314-9.255-3.47-65.942v-57.844c-9.537-16.69-20.321-35.863-46.275-35.863z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["download"],"defaultCode":60054,"grid":0},"properties":{"id":90,"order":159,"ligatures":"","prevSize":24,"code":60054,"name":"download"},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M927.822 60.873c34.307 0 58.35 10.213 78.668 25.452 36.382 27.287 64.785 59.591 64.785 122.63 0 32.328-6.122 43.65-15.040 65.942-2.314 5.785-6.942 13.883-10.412 18.51-3.47 5.785-17.353 20.824-41.648 45.118-19.667 20.824-114.532 116.845-210.554 212.867-145.767 145.767-175.847 175.847-181.631 178.16-3.47 2.314-9.255 3.47-12.725 4.628-4.628 1.157-28.922 1.157-80.982 1.157s-77.512 0-82.139-1.157c-19.929-6.642-31.436-17.954-38.177-38.177-1.157-4.628-1.157-30.079-1.157-82.139s0-76.355 1.157-80.982c1.157-3.47 2.314-9.255 4.628-12.725 2.314-5.785 32.393-35.863 178.16-181.631 96.022-96.022 192.044-190.886 212.867-210.554 24.295-24.295 39.334-38.177 45.118-41.648 8.7-6.527 25.22-15.849 35.863-18.51 11.326-2.831 18.744-4.107 30.079-6.942 4.628-1.157 15.040 0 23.138 0zM975.254 210.111c0-31.216-21.853-53.217-53.217-53.217-28.022 0-32.266 11.441-50.903 30.079l-18.51 18.51 74.040 74.040 18.51-18.51c18.539-18.539 30.079-23.311 30.079-50.903zM321.614 252.916c47.75 0 44.104-2.171 64.785 18.51 7.688 7.688 9.255 13.27 9.255 30.079 0 28.265-14.817 37.752-34.707 46.275l-34.707 1.157c-42.929 0-42.569-1.393-60.158 16.197-8.303 8.303-9.475 12.447-12.725 25.452-1.157 4.628-1.157 78.668-1.157 223.279 0 141.14 0 219.809 1.157 224.436 4.014 16.054 12.182 32.211 26.608 37.020 25.991 8.665 78.772 4.628 238.319 4.628 159.032 0 211.693 3.862 237.162-4.628 11.187-3.73 21.871-19.339 25.452-30.079 1.157-4.628 2.314-12.725 2.314-39.334l1.157-34.707c8.212-19.158 18.527-34.707 46.275-34.707 16.881 0 22.344 1.52 30.079 9.255 19.958 19.958 18.51 17.616 18.51 69.413 0 68.321-17.813 101.283-60.158 133.042-16.076 12.058-35.052 19.754-57.844 25.452-6.942 1.157-48.589 1.157-242.946 1.157-188.572 0-237.162 0-242.946-1.157-63.225-15.806-104.744-54.022-118.002-120.316-1.157-9.255-1.157-47.432-1.157-239.476s0-229.064 1.157-238.319c10.327-51.635 40.647-88.001 82.139-108.747 25.304-12.65 39.831-13.883 82.139-13.883zM783.212 273.74l-289.221 289.221v75.197h76.355c98.874-99.877 192.739-194.109 286.892-288.052l1.172-1.169-75.197-75.197z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["edit"],"defaultCode":60056,"grid":0},"properties":{"id":91,"order":158,"ligatures":"","prevSize":24,"code":60056,"name":"edit"},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M492.833 665.395c-27.222 0-47.432-20.53-47.432-47.432 0-9.019 3.909-19.387 6.942-25.452 2.314-3.47 74.040-77.512 203.612-207.082l201.299-201.299h-60.158c-67.827 0-82.611 7.39-105.277-26.608-4.333-6.501-6.649-19.966-4.628-30.079l4.628-13.883c4.321-12.966 18.857-19.84 30.079-25.452 3.47-1.157 31.236-1.157 135.355-1.157l130.728 1.157c16.416 7.036 27.862 14.173 33.55 31.236 2.314 6.942 2.314 8.098 2.314 138.827l-1.157 130.728c-5.734 11.466-13.056 25.947-25.452 30.079l-13.883 4.628c-31.611 6.322-49.347-16.914-55.53-41.648-1.157-4.628-1.157-33.55-1.157-68.257v-60.158l-201.299 201.299c-129.572 129.572-203.612 201.299-207.082 203.612-6.062 3.031-16.416 6.942-25.452 6.942zM417.636 231.562c-72.884 0-134.199 1.157-137.669 1.157s-11.569 3.47-17.353 4.628c-22.997 4.599-40.438 16.736-56.687 28.922-19.621 14.715-38.38 42.663-43.962 70.57-1.157 5.785-3.47 13.883-4.628 18.51-1.157 5.785-1.157 80.982-1.157 237.162s0 232.534 1.157 238.319c2.788 11.155 5.456 27.108 10.412 37.020 9.472 18.942 21.895 38.691 38.177 50.903 16.012 12.009 27.527 21.902 48.589 28.922 6.942 2.314 17.353 3.47 23.138 4.628 9.255 1.157 39.334 2.314 239.476 2.314 181.198 0 222.146 3.754 255.672-4.628 54.427-13.607 93.909-60.008 105.277-116.845 1.157-9.255 1.157-31.236 1.157-141.14 0-129.572 0-130.728-2.314-137.669-6.082-18.244-21.226-33.55-45.118-33.55-29.759 0-39.878 19.599-49.747 39.334v263.77c-7.117 14.234-18.438 26.97-34.707 32.393h-460.441c-14.86-4.953-27.37-17.324-32.393-32.393v-460.441c5.38-16.145 18.763-26.53 32.393-34.707h263.77c19.71-9.856 39.334-19.985 39.334-49.747 0-24.104-15.241-39.016-33.55-45.118-6.942-2.314-8.098-2.314-138.827-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["external-link"],"defaultCode":60057,"grid":0},"properties":{"id":92,"order":157,"ligatures":"","prevSize":24,"code":60057,"name":"external-link"},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M596.953 135.54c47.17 0 51.794 4.017 84.452 8.098 50.343 6.293 93.889 24.385 133.042 43.962l25.452 12.725c14.114 7.057 16.803 11.916 32.393 20.824 18.42 10.525 31.856 22.246 47.432 34.707 5.785 4.628 19.667 16.197 28.922 25.452l33.55 33.55c9.255 9.255 21.98 25.452 30.079 34.707 21.154 24.177 43.208 53.684 61.315 82.139 14.122 22.193 31.413 47.788 41.648 68.257 4.628 8.098 4.628 8.098 4.628 20.824 0 23.545-9.768 28.687-20.824 48.589-25.162 45.29-53.056 84.105-86.767 122.63-8.098 9.255-20.824 25.452-30.079 34.707l-33.55 33.55c-20.492 20.492-28.332 23.61-48.589 40.491-41.173 34.314-94.413 59.265-149.239 79.825-30.031 11.261-66.122 18.205-100.649 23.138-8.098 1.157-28.922 2.314-48.589 2.314-37.796 0-53.989-0.128-80.982-4.628-58.542-9.758-110.568-25.205-155.022-47.432-9.255-4.628-20.824-10.412-25.452-13.883s-17.353-9.255-25.452-15.040c-48.767-34.834-94.755-70.828-134.199-116.845-27.297-31.846-50.238-60.931-74.040-98.335-14.122-22.193-31.413-47.788-41.648-68.257-4.628-8.098-4.628-8.098-4.628-20.824s0-12.725 4.628-20.824c10.175-20.35 27.569-46.132 41.648-68.257 27.748-43.606 59.256-80.546 92.55-118.002 22.603-25.429 49.010-48.326 74.040-67.1 4.628-3.47 11.569-10.412 17.353-13.883s16.197-10.412 24.295-16.197 20.824-11.569 25.452-15.040c19.88-14.91 51.968-28.565 77.512-35.863 37.533-10.724 79.892-22.652 123.787-28.922 10.412-1.157 28.922-1.157 55.53-1.157zM596.953 232.719h-37.020c-18.917 0-30.715 4.388-48.589 6.942-53.679 7.669-94.873 31.819-135.355 52.060-4.628 2.314-12.725 9.255-19.667 13.883-51.686 34.458-92.379 79.818-133.042 127.257-22.308 26.026-40.598 60.318-59.002 87.923 13.459 20.188 34.545 56.774 52.060 78.668 21.701 27.125 39.768 50.18 63.629 74.040 39.601 39.601 78.793 68.897 130.728 94.865 52.99 26.495 112.285 41.648 192.044 41.648 45.715 0 80.859-10.541 116.845-20.824 19.987-5.711 37.643-16.628 55.53-24.295 20.417-8.75 31.276-17.38 48.589-28.922 28.975-19.317 50.77-36.887 76.355-62.472 9.255-9.255 23.138-26.608 31.236-35.863s23.138-26.608 32.393-38.177c16.694-20.866 32.219-50.671 46.275-69.413l5.785-9.255c-39.153-58.73-82.043-124.426-134.199-170.062-70.897-62.035-152.473-118.002-284.594-118.002zM588.855 376.173c57.49 0 93.027 26.857 118.002 60.158 16.201 21.602 26.608 45.979 26.608 84.452 0 58.716-25.998 92.383-60.158 118.002-21.197 15.898-45.734 25.452-83.295 25.452-69.178 0-107.489-35.66-130.728-82.139-8.51-17.023-13.883-36.373-13.883-61.315 0-66.18 38.81-108.485 83.295-130.728 16.37-8.185 36.67-13.883 60.158-13.883zM593.483 473.351h-10.412c-15.429 0-33.156 15.018-37.020 26.608-10.293 30.879 4.838 68.257 37.020 68.257h13.883c20.339 0 40.491-20.743 40.491-40.491v-13.883c0-11.497-6.059-18.784-12.725-25.452-7.712-7.712-17.477-15.040-31.236-15.040z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["eye"],"defaultCode":60058,"grid":0},"properties":{"id":93,"order":156,"ligatures":"","prevSize":24,"code":60058,"name":"eye"},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M155.022 38.362c8.61 0 16.437 3.551 23.138 5.785 9.322 3.73 880.966 875.951 888.489 888.489 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-17.353-13.883-84.452-79.825l-77.512-77.512-18.51 10.412c-49.44 27.467-105.614 43.844-171.219 53.217-8.098 1.157-28.922 2.314-48.589 2.314-97.712 0-164.599-16.936-230.22-49.747-69.899-34.949-128.536-78.643-178.16-135.355-30.745-35.138-60.438-69.688-86.767-111.061-14.122-22.193-31.413-47.788-41.648-68.257-3.47-6.942-4.628-8.098-4.628-18.51 0-21.732 5.058-25.782 17.353-46.275 46.659-77.765 100.064-151.835 167.749-208.239l12.725-10.412-70.57-70.57c-61.315-61.315-70.57-72.884-74.040-78.668-6.899-10.347-7.212-33.142 0-43.962 8.972-13.458 20.402-26.608 41.648-26.608zM952.117 735.965c-29.455 0-47.432-16.698-47.432-46.275 0-11.569 0-13.883 3.47-20.824 6.483-12.968 34.072-42.643 45.118-55.53 21.391-24.954 37.17-57.273 56.687-83.295l5.785-9.255c-14.556-23.291-32.729-54.504-52.060-78.668-27.89-34.863-49.102-62.487-82.139-91.394-73.464-64.28-155.684-118.002-292.692-118.002-44.135 0-65.459 3.749-100.649 11.569-17.353 4.628-20.824 4.628-28.922 4.628-25.969 0-49.71-26.793-43.962-55.53 6.718-26.871 20.675-36.344 49.747-42.805 26.626-5.917 56.622-13.883 85.61-13.883h43.962c96.038 0 151.753 20.528 217.494 49.747 38.009 16.892 69.923 39.181 100.649 64.785 18.106 15.087 23.61 17.825 40.491 34.707l28.922 28.922c23.192 23.192 39.063 46.514 60.158 72.884 26.341 32.925 54.266 74.983 72.884 112.218 4.628 8.098 4.628 8.098 4.628 20.824s-1.157 13.883-4.628 20.824c-2.314 3.47-8.098 15.040-13.883 25.452s-19.667 28.922-27.765 41.648c-18.17 28.554-38.883 58.98-60.158 83.295-18.161 20.754-29.049 43.962-61.315 43.962zM393.341 392.369l-67.1-65.942c-8.2 8.2-14.936 13.212-28.922 25.452-9.255 8.098-23.138 23.138-31.236 32.393s-20.824 21.98-26.608 28.922c-25.081 30.098-54.387 74.295-75.197 107.59 28.269 45.229 62.307 98.17 99.492 135.355 24.54 24.54 48.136 49.445 76.355 68.257 6.942 4.628 15.040 12.725 20.824 16.197 22.595 13.557 51.178 31.329 78.668 40.491 29.807 9.936 58.561 19.593 93.708 25.452 61.65 10.275 134.659-0.924 180.474-16.197 18.252-6.084 40.727-12.884 54.374-21.98-38.457-38.249-76.162-76.322-113.58-114.676l-2.108-2.169c-18.028 9.013-41.595 13.883-69.413 13.883-44.191 0-72.183-20.124-94.865-42.805-20.394-20.394-29.379-38.39-39.334-68.257-3.47-11.569-2.314-13.883-2.314-33.55 0-32.683 3.179-40.993 12.725-62.472l-65.942-65.942z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["eye-off"],"defaultCode":60656,"grid":0},"properties":{"id":188,"order":58,"ligatures":"","prevSize":24,"code":60656,"name":"eye-off"},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M588.855 134.384c202.455 0 315.829 0 320.457 1.157 42.087 10.523 74.040 41.577 74.040 93.708 0 17.969-3.099 29.337-9.255 41.648-2.314 4.628-5.785 11.569-8.098 13.883s-54.374 60.158-116.845 129.572l-114.532 124.944v163.121c0 158.494 0 163.121-2.314 170.062-4.688 18.752-22.213 33.55-45.118 33.55-11.358 0-18.551-3.491-25.452-6.942-2.314-1.157-49.747-35.863-104.12-76.355-85.61-64.785-99.492-75.197-102.963-80.982-2.314-3.47-5.785-10.412-6.942-13.883-2.314-6.942-2.314-10.412-2.314-97.179v-91.394l-107.59-118.002c-59.002-64.785-111.061-122.63-116.845-128.414-12.158-14.588-24.295-30.811-24.295-54.374v-18.51c0-5.785 2.314-13.883 3.47-17.353s2.314-10.412 4.628-15.040c9.974-19.947 25.912-37.668 47.432-46.275 5.785-2.314 13.883-5.785 17.353-5.785s146.924-1.157 319.301-1.157zM590.012 231.562h-293.849l11.569 12.725c0.168 0.168 225.267 248.186 229.064 254.515 9.772 19.542 5.785 43.223 5.785 107.59v83.295l46.275 34.707c25.452 18.51 47.432 35.863 47.432 35.863s1.157-53.217 1.157-119.159c0-70.57 0-122.63 1.157-127.257s2.314-10.412 4.628-15.040c3.797-6.328 228.896-254.347 229.064-254.515l11.569-12.725h-293.849z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["filter"],"defaultCode":60069,"grid":0},"properties":{"id":94,"order":155,"ligatures":"","prevSize":24,"code":60069,"name":"filter"},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M429.205 597.138c-60.401 0-93.801 16.923-128.414 41.648v328.556c-7.051 10.576-13.833 25.821-26.608 30.079l-13.883 4.628c-31.611 6.322-49.347-16.914-55.53-41.648-1.157-5.785-1.157-139.984-1.157-393.341 0-327.399 0-386.4 1.157-393.341 3.382-13.528 6.254-16.666 16.197-26.608 31.428-31.428 69.878-52.601 116.845-68.257 17.165-5.721 39.514-11.569 60.158-11.569h28.922c63.283 0 107 18.849 146.924 42.805 21.074 12.644 45.419 32.694 62.472 49.747 3.47 3.47 10.412 8.098 13.883 10.412l13.883 9.255c21.222 14.149 54.72 24.295 86.767 24.295 62.479 0 107.507-20.74 138.827-52.060 17.487-17.487 50.619-23.421 70.57-3.47 7.11 7.11 12.308 14.527 15.040 25.452 1.157 6.942 1.157 41.648 1.157 226.749 0 152.709 0 220.965-1.157 225.592-3.833 11.499-6.426 19.948-16.197 27.765-25.839 25.839-64.514 50.426-104.12 63.629-24.048 8.016-53.29 17.353-84.452 17.353-83.686 0-144.030-26.462-192.044-62.472-11.683-8.763-34.418-31.004-46.275-40.491-11.53-9.225-36.945-19.868-50.903-25.452-15.021-6.009-30.357-9.255-52.060-9.255zM425.734 163.305c-58.799 0-90.661 17.16-124.944 41.648v160.807c0 87.923 1.157 159.65 1.157 159.65 16.22-5.406 35.507-15.366 54.374-18.51 23.013-3.835 32.374-5.785 64.785-5.785 69.595 0 109.22 16.711 152.709 42.805 21.074 12.644 45.419 32.694 62.472 49.747 3.47 3.47 10.412 8.098 13.883 10.412l13.883 9.255c21.222 14.149 54.72 24.295 86.767 24.295 28.446 0 47.7-3.174 69.413-10.412 24.223-8.075 40.132-19.914 59.002-31.236v-321.614c-16.213 6.079-32.749 15.292-52.060 18.51-16.699 2.784-37.874 8.098-56.687 8.098-83.686 0-144.030-26.462-192.044-62.472-11.683-8.763-34.418-31.004-46.275-40.491-11.53-9.225-36.945-19.868-50.903-25.452-17.41-6.965-29.16-9.255-55.53-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["flag"],"defaultCode":60070,"grid":0},"properties":{"id":95,"order":154,"ligatures":"","prevSize":24,"code":60070,"name":"flag"},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M347.066 86.952l111.061 1.157 6.942 2.314c6.942 3.47 12.725 9.255 76.355 72.884l69.413 68.257h164.277c141.14 0 166.592 1.157 175.847 2.314 33.052 6.61 56.128 17.951 76.355 38.177 20.677 20.677 36.060 43.788 42.805 77.512 2.314 9.255 1.157 23.138 1.157 219.809v210.554l-2.314 11.569c-9.336 56.019-48.934 88.755-96.022 107.59-5.785 2.314-15.040 4.628-20.824 5.785-10.412 2.314-30.079 2.314-362.106 2.314s-351.693 0-362.106-2.314c-41.514-8.303-70.99-30.254-92.55-59.002-11.612-15.484-21.236-35.613-25.452-56.687-2.314-9.255-1.157-23.138-1.157-292.692 0-271.868-1.157-283.437 1.157-292.692 2.623-13.109 8.726-26.707 13.883-37.020 20.21-40.418 53.545-67.397 104.12-77.512 8.098-1.157 28.922-2.314 119.159-2.314zM334.341 184.13h-91.394c-19.012 6.337-30.556 16.471-37.020 35.863v552.991c5.194 12.121 10.689 25.929 23.138 30.079 3.47 1.157 9.255 3.47 12.725 4.628 5.785 1.157 45.118 2.314 348.223 2.314 325.58 0 330.356 3.255 360.948-6.942 12.513-4.171 17.897-17.85 23.138-30.079v-409.538c-8.888-17.773-17.557-24.907-34.707-34.707h-178.16c-161.964 0-180.474-1.157-185.102-2.314-3.47-1.157-8.098-3.47-10.412-4.628s-34.707-33.55-71.727-70.57l-67.1-67.1h-92.55z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["folder"],"defaultCode":60077,"grid":0},"properties":{"id":96,"order":153,"ligatures":"","prevSize":24,"code":60077,"name":"folder"},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M515.971 65.598l85.61 1.157 8.098 2.314c6.942 3.47 11.569 8.098 52.060 48.589l43.962 43.962h120.316c131.767 0 109.722-2.071 145.767 6.942 10.314 2.579 26.703 12.018 34.707 17.353 23.87 15.913 41.072 38.18 54.374 64.785 5.51 11.021 7.715 27.004 10.412 40.491 1.157 8.098 1.157 65.942 1.157 192.044 0 210.249 3.074 160.079-9.255 209.396-3.434 13.738-8.955 20.321-16.197 32.393-3.47 5.785-10.412 15.040-17.353 21.98s-16.197 12.725-20.824 16.197c-26.811 20.107-50.643 25.452-99.492 25.452h-30.079v30.079c0 69.908-19.845 103.8-57.844 134.199-15.962 12.768-37.755 21.296-59.002 26.608-8.098 2.314-28.922 2.314-261.456 2.314-177.004 0-255.672 0-263.77-1.157-22.363-4.472-40.095-9.636-57.844-18.51-18.213-9.107-36.549-29.949-47.432-46.275-10.042-15.064-16.778-34.718-21.98-55.53-1.157-5.785-1.157-56.687-1.157-240.632 0-253.466-4.762-215.802 6.942-262.613 12.412-49.644 60.622-86.859 112.218-97.179 6.942-1.157 19.667-2.314 41.648-2.314h31.236v-30.079c0-20.824 0-33.55 1.157-40.491 10.151-50.754 41.3-87.171 82.139-107.59 10.204-5.102 25.021-8.569 37.020-11.569 6.942-1.157 26.608-2.314 94.865-2.314zM397.969 656.766c5.228 16.249 19.199 27.985 34.707 34.707h506.716c16.923-9.669 25.67-16.632 34.707-34.707l1.157-178.16c0-175.847 0-178.16-2.314-186.259-3.706-14.823-16.439-27.537-31.236-31.236-6.942-2.314-9.255-2.314-133.042-2.314-108.747 0-127.257 0-133.042-1.157-21.206-7.069-23.115-14.232-61.315-50.903l-43.962-43.962h-67.1c-66.066 0-65.313-2.628-82.139 5.785-9.341 4.671-17.983 19.175-23.138 27.765v460.441zM274.182 354.82c-30.573 0-29.658 1.788-45.118 6.942-12.307 4.102-17.409 17.463-23.138 28.922l-1.157 226.749c0 223.279 0 225.592 2.314 233.691 3.706 14.823 16.439 27.537 31.236 31.236 8.098 2.314 10.412 2.314 257.986 2.314l251.044-1.157c17.773-8.888 24.907-17.557 34.707-34.707v-60.158h-174.69c-149.239 0-175.847 0-185.102-1.157-63.107-12.621-107.704-57.25-120.316-120.316-1.157-9.255-1.157-33.55-1.157-161.964v-150.395h-26.608z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["folders"],"defaultCode":60078,"grid":0},"properties":{"id":97,"order":152,"ligatures":"","prevSize":24,"code":60078,"name":"folders"},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M590.012 159.835c50.397-37.799 103.489-71.727 192.044-71.727 50.397 0 81.942 10.333 116.845 24.295 36.158 14.463 65.563 37.798 91.394 63.629 46.752 46.752 80.982 108.436 80.982 201.299 0 38.071-4.855 60.84-13.883 87.923-12.354 37.061-27.44 65.783-49.747 92.55-11.712 15.617-340.354 338.041-391.028 388.714-4.851 4.851-17.841 8.098-26.608 8.098-8.758 0-21.758-3.248-26.608-8.098-23.387-23.387-321.269-316.641-343.596-338.968-50.663-50.663-68.254-67.093-93.708-130.728-12.807-32.019-18.51-64.152-18.51-109.904 0-38.502 7.765-58.415 16.197-87.923 18.349-64.225 64.941-111.55 114.532-144.611 31.059-20.706 69.5-36.649 113.375-43.962 6.942-1.157 17.353-3.47 24.295-3.47h27.765c60.26 0 104.269 18.83 142.297 41.648 15.575 9.345 31.037 20.158 43.962 31.236zM395.655 182.973c-6.942 0-16.197 1.157-18.51 1.157-34.845 0-66.3 18.725-89.080 32.393-14.483 8.69-24.368 20.896-35.863 32.393-34.273 34.273-65.264 120.28-37.020 190.886 5.321 13.304 11.349 30.557 19.667 41.648 21.657 28.876 77.28 82.127 187.416 190.886 92.55 91.394 167.749 165.435 167.749 165.435 2.895-2.855 335.809-331.285 342.438-340.124 20.453-27.27 33.4-58.249 41.648-99.492 1.157-5.785 1.157-15.040 1.157-21.98 0-37.194-6.632-59.618-20.824-84.452-12.084-21.146-18.999-34.038-35.863-50.903-16.837-16.837-29.746-23.774-50.903-35.863-26.263-15.007-52.087-20.824-92.55-20.824-32.486 0-56.182 7.975-78.668 20.824-27.368 15.639-45.253 28.621-64.785 52.060-11.344 13.613-20.391 23.138-41.648 23.138-33.359 0-40.457-28.202-60.158-43.962-34.911-27.929-70.945-53.217-134.199-53.217z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["heart"],"defaultCode":60094,"grid":0},"properties":{"id":98,"order":151,"ligatures":"","prevSize":24,"code":60094,"name":"heart"},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M588.855 38.362c8.61 0 16.437 3.551 23.138 5.785 12.915 5.167 446.056 440.322 454.656 454.656 15.463 23.196-2.816 58.783-20.824 64.785-14.066 4.689-17.893 5.785-43.962 5.785h-25.452v152.709c0 137.669 0 152.709-2.314 161.964-3.982 19.91-12.383 41.191-23.138 55.53-7.526 10.035-21.099 25.634-31.236 32.393-3.47 2.314-9.255 8.098-13.883 10.412-12.071 6.036-27.506 14.803-42.805 17.353l-13.883 2.314h-259.142c-277.106 0-239.589 4.889-286.908-6.942-45.651-11.413-74.937-50.255-91.394-91.394-2.314-5.785-4.628-13.883-5.785-19.667-2.314-9.255-2.314-24.295-2.314-161.964v-152.709h-25.452c-39.207 0-49.755-4.061-64.785-26.608-6.899-10.347-7.212-33.142 0-43.962 7.203-12.004 446.116-451.703 453.499-454.656 5.637-3.758 14.026-5.785 21.98-5.785zM879.234 509.215c7.189-14.424 14.652-27.825 30.079-33.55l-319.301-319.301-319.301 319.301c15.419 5.734 22.897 19.118 30.079 33.55v179.317c0 168.905 0 180.474 2.314 185.102 8.032 16.067 16.935 23.619 34.707 31.236h504.403c10.477-4.488 25.487-11.641 30.079-20.824 1.157-2.314 3.47-8.098 4.628-10.412 2.314-4.628 2.314-16.197 2.314-185.102v-179.317zM590.012 472.194c87.923 0 102.963 1.157 108.747 2.314 19.135 6.378 26.871 16.422 34.707 34.707l1.157 105.277c0 102.963 0 106.434-2.314 113.375-4.049 16.198-17.108 27.298-32.393 32.393-5.785 2.314-15.040 1.157-109.904 1.157s-104.12 1.157-109.904-1.157c-14.698-4.9-28.443-16.593-32.393-32.393-2.314-6.942-2.314-10.412-2.314-113.375l1.157-105.277c7.916-18.47 15.007-28.14 34.707-34.707 5.785-1.157 23.138-2.314 108.747-2.314zM590.012 569.373h-47.432v96.022h94.865v-96.022h-47.432z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["home"],"defaultCode":60096,"grid":0},"properties":{"id":99,"order":150,"ligatures":"","prevSize":24,"code":60096,"name":"home"},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M588.855 38.362c8.61 0 16.437 3.551 23.138 5.785 12.915 5.167 446.056 440.322 454.656 454.656 15.463 23.196-2.816 58.783-20.824 64.785-14.536 4.845-17.649 5.785-45.118 5.785h-25.452v151.552c0 131.885-1.157 153.866-2.314 163.121-12.402 62.010-53.911 104.49-115.689 116.845-9.255 2.314-25.452 1.157-267.241 1.157-211.71 0-257.986 0-264.927-1.157-32.503-8.125-62.574-19.794-80.982-42.805-17.245-21.556-30.486-41.365-37.020-74.040-1.157-9.255-2.314-31.236-2.314-163.121v-151.552h-25.452c-40.435 0-50.317-3.172-65.942-26.608-6.899-10.347-7.212-33.142 0-43.962 7.203-12.004 446.116-451.703 453.499-454.656 5.637-3.758 14.026-5.785 21.98-5.785zM879.234 509.215c7.189-14.424 14.652-27.825 30.079-33.55l-319.301-319.301-319.301 319.301c15.419 5.734 22.897 19.118 30.079 33.55v179.317c0 140.361-1.486 177.501 5.785 192.044 4.94 9.88 16.4 19.35 27.765 23.138 6.942 2.314 9.255 2.314 34.707 2.314h27.765v-129.572c0-155.646-2.344-113.256 9.255-159.65 3.355-13.419 14.076-26.929 20.824-38.177 7.824-13.040 21.911-23.664 33.55-32.393 14.976-11.232 34.526-17.885 55.53-23.138 5.785-1.157 21.98-2.314 74.040-2.314s68.257 1.157 74.040 2.314c59.754 14.939 103.371 51.794 115.689 113.375 2.314 10.412 3.47 12.725 3.47 139.984v129.572h27.765c25.452 0 27.765 0 34.707-2.314 10.634-3.544 23.116-12.683 27.765-21.98 9.748-19.496 5.785-15.042 5.785-193.2v-179.317zM588.855 616.805c-26.608 0-50.903 1.157-54.374 1.157-20.503 0-32.177 20.394-39.334 34.707l-1.157 127.257v126.1h192.044v-126.1l-1.157-127.257c-18.49-36.983-33.064-35.863-96.022-35.863z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["home-2"],"defaultCode":60097,"grid":0},"properties":{"id":100,"order":149,"ligatures":"","prevSize":24,"code":60097,"name":"home-2"},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M594.64 86.952l310.046 1.157 11.569 2.314c57.93 11.586 94.885 43.215 124.944 83.295 3.47 4.628 6.942 15.040 10.412 20.824 11.118 18.529 14.858 41.896 19.667 65.942 1.157 8.098 1.157 92.55 1.157 260.299s0 252.201-1.157 260.299c-4.792 23.956-8.442 47.232-19.667 65.942-3.47 5.785-6.942 16.197-10.412 20.824-9.387 12.515-20.87 28.032-33.55 38.177-25.717 20.574-52.618 38.656-91.394 45.118l-11.569 2.314h-629.346l-11.569-2.314c-57.664-9.611-95.602-44.174-124.944-83.295-3.47-4.628-6.942-15.040-10.412-20.824-11.118-18.529-14.858-41.896-19.667-65.942-1.157-8.098-1.157-92.55-1.157-260.299s0-252.201 1.157-260.299c4.792-23.956 8.442-47.232 19.667-65.942 3.47-5.785 6.942-16.197 10.412-20.824 25.544-34.058 56.854-65.695 104.12-77.512 10.179-2.545 22.567-8.098 33.55-8.098 4.628 0 146.924-1.157 318.144-1.157zM592.325 184.13c-293.849 0-306.574 0-314.673 2.314-38.922 9.731-60.86 37.166-71.727 75.197l-1.157 254.515c0 230.22 1.157 255.672 2.314 263.77 7.158 28.628 20.976 52.713 45.118 64.785 4.628 2.314 12.725 5.785 18.51 8.098l11.569 3.47h615.463l11.569-3.47c30.815-12.325 54.987-32.535 63.629-67.1 2.314-6.942 1.157-18.51 1.157-264.927 0-244.103 1.157-257.986-1.157-264.927-8.108-32.428-34.658-55.511-63.629-67.1l-11.569-3.47zM453.499 280.152c29.763 0 53.293 12.54 72.884 24.295 22.9 13.74 37.247 36.24 50.903 59.002 3.47 5.785 5.785 18.51 8.098 25.452 2.314 10.412 4.628 17.353 4.628 30.079 0 71.525-33.415 107.047-78.668 134.199-19.32 11.592-35.617 15.040-65.942 15.040-39.297 0-64.387-9.862-86.767-27.765-31.050-24.84-57.844-61.691-57.844-116.845 0-35.648 11.921-58.431 25.452-80.982 12.11-20.183 32.902-38.38 55.53-47.432 16.748-6.7 30.773-15.040 53.217-15.040h18.51zM782.055 278.994c40.876 0 50.651-1.626 69.413 4.628 16.028 5.342 27.765 23.82 27.765 45.118 0 24.104-15.241 39.016-33.55 45.118-6.942 2.314-8.098 2.314-64.785 2.314l-59.002-1.157c-7.175-3.587-15.377-7.279-20.824-12.725-16.462-16.462-19.32-50.093-1.157-68.257 5.59-5.59 16.588-13.883 26.608-13.883 3.47 0 28.922-1.157 55.53-1.157zM445.401 472.194c27.86 0 47.432-20.562 47.432-48.589 0-27.576-21.652-47.432-48.589-47.432-25.417 0-46.275 21.454-46.275 47.432 0 28.044 19.595 48.589 47.432 48.589zM783.212 472.194c45.118 0 54.374 1.157 60.158 2.314 19.255 6.418 35.863 20.399 35.863 46.275 0 26.814-15.736 39.566-35.863 46.275-5.785 1.157-17.353 2.314-60.158 2.314-61.555 0-69.981 4.353-91.394-27.765-16.826-25.241 5.837-53.636 20.824-63.629 3.47-2.314 9.255-4.628 11.569-4.628s30.079-1.157 59.002-1.157zM590.012 665.395c-247.574 0-248.731 0-255.672 2.314-18.244 6.082-33.55 21.226-33.55 45.118 0 25.349 15.464 41.018 34.707 47.432 5.785 2.314 21.98 1.157 254.515 1.157s248.731 1.157 254.515-1.157c19.267-6.423 34.707-22.386 34.707-47.432 0-24.104-15.241-39.016-33.55-45.118-6.942-2.314-6.942-2.314-255.672-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["id"],"defaultCode":60099,"grid":0},"properties":{"id":101,"order":148,"ligatures":"","prevSize":24,"code":60099,"name":"id"},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M598.11 553.707c23.3 37.28 40.491 82.299 40.491 143.454 0 19.073-5.253 31.52-8.098 48.589-7.678 46.070-36.088 83.521-63.629 111.061-39.101 39.101-90.74 70.57-168.905 70.57-93.441 0-150.991-42.102-193.2-94.865-13.952-17.44-21.846-37.908-32.393-59.002-12.383-24.769-15.040-48.254-15.040-86.767 0-60.499 14.984-87.813 34.707-127.257 26.726-53.454 90.361-95.583 156.18-108.747 16.54-3.308 27.843-4.628 49.747-4.628 44.023 0 72.384 9.537 104.12 23.138 12.775 5.474 20.338 10.255 27.765 16.197l185.102-183.945c150.395-150.395 186.259-185.102 190.886-187.416 3.47-1.157 8.098-4.628 10.412-4.628s8.098-1.157 11.569-1.157c17.845 0 28.14 9.63 37.020 18.51 7.494 7.494 9.255 12.653 9.255 28.922 0 20.604-4.347 27.485-16.197 39.334l-10.412 10.412 33.55 33.55c30.079 30.079 34.707 34.707 38.177 41.648s4.628 10.412 4.628 17.353c0 19.901-8.54 30.521-18.51 40.491-7.494 7.494-12.653 9.255-28.922 9.255-11.569 0-12.725 0-20.824-3.47-6.942-3.47-12.725-6.942-42.805-37.020l-33.55-33.55c-24.896 25.112-49.774 49.622-74.935 73.839l-1.419 1.358 34.707 34.707c31.236 31.236 34.707 35.863 37.020 42.805 2.314 4.628 4.628 10.412 4.628 16.197 0 19.901-8.54 30.521-18.51 40.491-7.358 7.358-14.16 10.412-30.079 10.412-11.569 0-11.569-1.157-19.667-4.628-6.942-3.47-12.725-6.942-42.805-37.020l-33.55-33.55c-47.292 46.288-91.768 90.397-135.955 134.795l-0.558 0.561zM401.439 542.137c-8.098 0-16.197 1.157-17.353 1.157-16.038 0-38.77 7.816-50.903 13.883-17.267 8.632-36.009 21.79-47.432 37.020-15.38 20.507-32.393 46.528-32.393 80.982v23.138c0 44.717 25.671 74.261 48.589 97.179 21.611 21.611 53.477 34.707 96.022 34.707 48.896 0 81.074-17.464 104.12-45.118 5.785-6.942 13.883-15.040 17.353-20.824 12.564-20.939 21.98-44.816 21.98-77.512 0-56.053-27.145-92.085-60.158-116.845-15.738-11.805-33.952-18.9-55.53-24.295-4.628-1.157-16.197-3.47-24.295-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["key"],"defaultCode":60103,"grid":0},"properties":{"id":102,"order":147,"ligatures":"","prevSize":24,"code":60103,"name":"key"},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M1022.687 17.009c29.42 0 54.027 25.216 48.589 57.844-0.143 0.574-314.214 872.529-319.301 882.704-11.069 22.14-33.274 39.334-65.942 39.334-23.827 0-47.972-12.955-57.844-27.765-3.47-3.47-32.393-62.472-86.767-171.219l-83.295-166.592-165.435-82.139c-115.689-57.844-167.749-84.452-172.376-87.923-13.682-13.682-27.765-30.926-27.765-57.844 0-32.738 17.43-54.991 39.334-65.942 9.405-4.702 880.408-318.921 881.547-319.301 3.47-1.157 6.942-1.157 9.255-1.157zM941.706 146.579c-699.937 253.698-716.811 259.142-717.269 259.142-2.314 1.157 27.765 15.040 148.082 75.197 134.199 67.1 150.395 76.355 155.022 80.982 9.77 9.77 63.845 121.012 156.18 304.261 51.446-144.053 25.914-71.958 259.142-719.583h-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["location"],"defaultCode":60128,"grid":0},"properties":{"id":104,"order":145,"ligatures":"","prevSize":24,"code":60128,"name":"location"},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M594.64 59.716c21.333 0 37.493 4.723 54.374 8.098 18.395 3.679 31.372 8.176 47.432 17.353 8.098 4.628 19.667 9.255 25.452 13.883 26.915 21.531 52.218 41.141 70.57 71.727 12.499 20.831 27.861 46.855 32.393 74.040 6.924 41.549 5.363 24.911 6.942 118.002l1.157 82.139 10.412 1.157c41.6 0 71.119 23.687 92.55 45.118 19.034 19.034 32.071 43.51 38.177 74.040 2.314 9.255 2.314 24.295 2.314 168.905 0 146.924 0 159.65-2.314 170.062-10.829 54.14-43.716 91.296-90.237 109.904-5.785 2.314-16.197 5.785-23.138 6.942l-11.569 2.314h-259.142c-279.556 0-239.259 4.971-286.908-6.942-44.893-11.223-75.23-50.986-91.394-91.394-2.314-5.785-4.628-13.883-5.785-19.667-2.314-9.255-2.314-20.824-2.314-170.062 0-171.436-3.589-146.454 6.942-188.572 7.143-28.569 29.853-55.939 50.903-71.727 18.17-13.628 44.81-28.922 75.197-28.922l10.412-1.157 1.157-82.139c2.036-120.138 0.316-141.947 54.374-214.024 3.47-4.628 11.569-11.569 17.353-17.353 32.219-32.219 73.582-57.52 127.257-68.257 5.785-1.157 15.040-2.314 19.667-2.314s17.353-1.157 27.765-1.157zM588.855 156.894c-55.563 0-91.398 27.771-115.689 60.158-11.564 15.419-20.045 33.121-24.295 54.374-2.314 10.412-3.47 15.040-3.47 92.55v80.982h289.221v-80.982c0-98.115 1.097-73.122-8.098-109.904-9.713-38.852-42.543-66.968-75.197-83.295-17.873-8.937-35.915-13.883-62.472-13.883zM879.234 579.158c-7.080-16.616-20.398-29.947-37.020-37.020h-249.887c-138.827 0-251.044 1.157-253.358 1.157-20.451 0-31.67 22.125-37.020 38.177-1.157 3.47-1.157 59.002-1.157 153.866 0 149.818-2.518 139.369 6.942 167.749 4.171 12.513 17.85 17.897 30.079 23.138h504.403c18.579-7.963 29.238-17.145 35.863-37.020 1.157-4.628 1.157-53.217 1.157-158.494v-151.552zM588.855 638.159c-10.562 0-21.52 3.317-28.922 5.785-25.241 8.413-45.699 24.007-55.53 48.589-5.25 13.126-10.412 23.122-10.412 41.648 0 14.477 1.432 20.495 4.628 30.079 1.157 3.47 2.314 10.412 4.628 13.883l9.255 13.883c15.881 23.819 44.066 39.334 83.295 39.334 31.648 0 58.684-19.77 71.727-39.334l9.255-13.883c7.628-11.441 9.255-25.98 9.255-43.962 0-44.181-25.246-67.733-52.060-85.61-10.292-6.861-29.203-10.412-45.118-10.412z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["lock"],"defaultCode":60130,"grid":0},"properties":{"id":106,"order":143,"ligatures":"","prevSize":24,"code":60130,"name":"lock"},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M599.267 12.284c51.748 0 90.799 19.54 123.787 39.334 21.809 13.085 43.725 35.161 59.002 55.53 25.387 33.85 48.589 81.131 48.589 139.984 0 24.513-3.191 28.642-15.040 40.491-23.983 23.983-64.161 10.504-76.355-13.883-8.213-16.423-5.761-50.841-12.725-68.257-21.313-53.283-61.743-96.022-136.512-96.022-43.162 0-60.329 13.059-86.767 28.922-27.172 16.304-47.316 49.166-54.374 84.452-2.314 10.412-3.47 15.040-3.47 116.845v105.277h201.299c180.474 0 201.299 1.157 209.396 2.314l18.51 4.628c50.903 12.725 88.909 60.455 99.492 113.375 2.314 9.255 2.314 24.295 2.314 168.905 0 146.924 0 159.65-2.314 170.062-10.797 53.978-43.904 91.371-90.237 109.904-5.785 2.314-16.197 5.785-23.138 6.942l-11.569 2.314h-259.142c-277.106 0-239.589 4.889-286.908-6.942-49.505-12.376-86.888-60.763-97.179-112.218-2.314-10.412-2.314-23.138-2.314-170.062 0-171.473-3.631-145.132 6.942-187.416 8.737-34.947 38.807-68.571 68.257-83.295 15.395-7.697 35.764-17.353 57.844-17.353l10.412-1.157 1.157-106.434c1.157-92.55 1.157-108.747 2.314-119.159 11.727-70.363 46.137-122.815 93.708-158.494 28.502-21.376 63.896-38 105.277-46.275 5.785-1.157 17.353-2.314 25.452-2.314h24.295zM879.234 579.158c-7.080-16.616-20.398-29.947-37.020-37.020h-249.887c-138.827 0-251.044 1.157-253.358 1.157-20.451 0-31.67 22.125-37.020 38.177-1.157 3.47-1.157 59.002-1.157 153.866 0 149.818-2.518 139.369 6.942 167.749 4.171 12.513 17.85 17.897 30.079 23.138h504.403c18.579-7.963 29.238-17.145 35.863-37.020 1.157-4.628 1.157-53.217 1.157-158.494v-151.552zM594.64 639.316c-48.039 0-75.203 20.835-91.394 53.217-5.594 11.191-9.255 25.209-9.255 41.648 0 14.477 1.432 20.495 4.628 30.079 1.157 3.47 2.314 10.412 4.628 13.883l9.255 13.883c14.787 22.181 39.969 38.177 77.512 38.177 33.233 0 47.040-10.118 65.942-24.295 4.628-3.47 9.255-10.412 11.569-13.883l9.255-13.883c7.628-11.441 9.255-25.98 9.255-43.962 0-34.325-16.785-60.022-37.020-75.197-15.018-11.263-28.768-19.667-54.374-19.667z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["unlock"],"defaultCode":60129,"grid":0},"properties":{"id":105,"order":144,"ligatures":"","prevSize":24,"code":60129,"name":"unlock"},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M155.022 38.362c8.61 0 16.437 3.551 23.138 5.785 9.322 3.73 880.966 875.951 888.489 888.489 15.463 23.196-2.816 58.783-20.824 64.785-39.378 13.126-47.528-0.096-75.197-27.765l-24.295-23.138-10.412 10.412c-21.036 21.036-44.2 37.068-78.668 43.962-9.255 2.314-25.452 1.157-267.241 1.157-211.71 0-257.986 0-264.927-1.157-32.503-8.125-62.574-19.794-80.982-42.805-17.245-21.556-30.486-41.365-37.020-74.040-1.157-9.255-2.314-32.393-2.314-171.219 0-167.119-1.589-145.922 6.942-188.572 9.959-49.796 59.049-85.332 106.434-97.179 4.628-1.157 13.883-2.314 19.667-2.314l11.569-1.157v-74.040l-115.689-116.845c-101.806-101.806-116.845-118.002-120.316-123.787-6.899-10.347-7.212-33.142 0-43.962 8.972-13.458 20.402-26.608 41.648-26.608zM587.698 38.362c77.67 0 131.824 30.017 171.219 69.413 33.388 33.388 58.335 76.491 69.413 131.885 2.314 9.255 2.314 20.824 2.314 97.179v86.767l11.569 1.157c14.816 0 20.203 4.271 33.55 6.942 21.168 4.234 42.253 19.116 55.53 32.393 20.846 20.846 34.703 45.101 41.648 79.825 1.157 9.255 2.314 18.51 2.314 72.884l-1.157 61.315c-4.833 11.275-13.98 27.411-25.452 31.236-29.969 9.99-54.073-2.868-64.785-24.295l-4.628-6.942v-60.158c-1.157-59.002-1.157-60.158-3.47-65.942-3.857-11.572-16.289-23.939-27.765-27.765-5.785-2.314-6.942-2.314-65.942-3.47h-60.158c-6.566-4.376-15.259-8.318-20.824-13.883-10.83-10.83-22.159-37.331-9.255-56.687 5.773-11.544 20.314-25.452 35.863-25.452h6.942v-82.139c0-99.983 1.076-73.205-8.098-109.904-5.624-22.501-21.784-41.451-37.020-56.687-23.881-23.881-53.402-40.491-99.492-40.491-54.93 0-91.737 25.908-115.689 57.844-3.47 4.628-9.255 10.412-11.569 12.725-11.047 11.047-31.81 14.849-52.060 8.098-16.642-5.547-27.765-27.015-27.765-48.589 0-17.278 14.796-30.526 23.138-41.648 19.053-25.403 43.905-41.15 71.727-57.844 21.459-12.877 48.568-19.47 77.512-24.295 6.942-1.157 13.883-2.314 16.197-2.314s10.412-1.157 16.197-1.157zM432.676 520.784c-74.040 0-90.237 1.157-96.022 2.314-18.198 6.066-27.511 15.433-33.55 33.55-1.157 5.785-2.314 25.452-2.314 156.18 0 106.434 0 150.395 1.157 155.022 5.745 17.235 15.236 30.145 32.393 35.863 6.942 2.314 6.942 2.314 255.672 2.314s248.731 0 255.672-2.314c14.282-4.761 23.815-15.239 30.079-27.765l-98.335-98.335c-54.374-54.374-96.022-94.865-96.022-94.865 5.451 5.451 4.628 22.278 4.628 35.863 0 19.383-6.203 25.553-10.412 38.177-3.455 10.369-9.49 13.657-15.040 21.98-13.495 20.242-43.332 31.236-76.355 31.236-26.313 0-53.923-14.94-64.785-31.236-2.314-3.47-6.942-8.098-9.255-10.412-9.83-9.83-16.197-30.438-16.197-49.747 0-31.522 8.723-48.264 21.98-65.942 15.293-20.389 38.673-34.707 74.040-34.707 9.255 0 16.197 0 20.824 1.157s8.098 3.47 9.255 3.47-19.667-23.138-47.432-50.903l-50.903-50.903h-89.080z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["lock-off"],"defaultCode":60702,"grid":0},"properties":{"id":191,"order":61,"ligatures":"","prevSize":24,"code":60702,"name":"lock-off"},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M592.325 38.362c4.628 0 10.412 1.157 13.883 2.314 1.219 0.407 448.53 296.314 455.813 305.418 4.211 6.316 6.817 12.349 9.255 19.667l1.157 247.574c0 197.765 3.853 239.878-4.628 282.281-6.98 34.896-33.954 64.67-60.158 82.139-19.566 13.044-37.166 19.002-63.629 24.295-6.942 1.157-128.414 1.157-354.007 1.157-254.176 0-336.335 3.072-374.831-4.628-34.896-6.98-64.67-33.954-82.139-60.158-8.927-13.39-17.596-26.671-20.824-42.805-8.68-43.399-4.628-83.654-4.628-282.281l1.157-247.574c2.444-7.334 5.030-13.328 9.255-19.667 10.014-12.517 448.423-301.144 450.028-301.947 6.53-3.265 13.327-5.785 24.295-5.785zM935.921 376.173c-344.505-228.9-344.247-230.22-345.909-230.22s-249.282 165.411-345.909 230.22c344.505 228.9 344.247 230.22 345.909 230.22s136.903-92.581 345.909-230.22zM205.926 467.567s-1.157 61.315-1.157 136.512v136.512l82.139-80.982c45.118-45.118 82.139-83.295 82.139-83.295-113.932-76.498-32.342-22.176-163.121-108.747zM974.098 467.567c-146.723 96.418-129.788 86.684-161.964 108.747 0 0 34.707 37.020 80.982 83.295l82.139 80.982v-136.512c0-75.197-1.157-136.512-1.157-136.512zM451.186 631.845l-121.473 121.473c-67.1 67.1-121.473 121.473-121.473 122.63 0 12.099 19.881 25.216 30.079 27.765 6.942 2.314 11.569 2.314 351.693 2.314s344.752 0 351.693-2.314c9.787-2.445 21.094-9.796 25.452-18.51 2.314-3.47 4.628-8.098 4.628-9.255s-54.374-55.53-121.473-122.63l-121.473-121.473c-118.044 77.090-111.863 74.442-118.002 77.512-6.012 3.007-19.432 5.368-28.922 3.47-21.012-5.253-33.357-15.795-74.040-43.962-30.079-20.824-56.687-37.020-56.687-37.020z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["mail-opened"],"defaultCode":60132,"grid":0},"properties":{"id":107,"order":142,"ligatures":"","prevSize":24,"code":60132,"name":"mail-opened"},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M596.953 134.384c323.928 0 347.066 0 356.321 2.314 39.864 7.973 69.483 29.014 90.237 56.687 11.306 15.076 21.663 33.953 25.452 56.687l2.314 11.569v518.285l-2.314 11.569c-9.336 56.019-48.934 88.755-96.022 107.59-5.785 2.314-15.040 4.628-20.824 5.785-10.412 2.314-30.079 2.314-362.106 2.314s-351.693 0-362.106-2.314c-41.514-8.303-70.99-30.254-92.55-59.002-11.612-15.484-21.236-35.613-25.452-56.687-2.314-9.255-1.157-23.138-1.157-268.397 0-277.106-4.889-239.589 6.942-286.908 9.247-36.99 41.529-67.618 72.884-83.295 13.757-6.879 32.56-15.040 52.060-15.040 5.785 0 166.592-1.157 356.321-1.157zM590.012 231.562c-291.536 0-344.752 1.157-349.379 2.314-8.172 2.724-14.144 3.732-19.667 9.255-3.274 3.274-8.384 10.502-10.412 13.883 0 0 85.61 57.844 189.729 127.257l189.729 126.1 189.729-126.1c104.12-69.413 189.729-127.257 189.729-127.257-7.255-12.092-16.335-19.327-31.236-24.295-5.785-1.157-47.432-1.157-348.223-1.157zM386.4 491.861l-181.631-121.473v201.299l1.157 201.299c5.194 12.121 10.689 25.929 23.138 30.079 3.47 1.157 9.255 3.47 12.725 4.628 5.785 1.157 45.118 2.314 348.223 2.314 325.58 0 330.356 3.255 360.948-6.942 12.513-4.171 17.897-17.85 23.138-30.079l1.157-201.299v-201.299l-181.631 121.473c-144.611 96.022-183.945 122.63-188.572 123.787-3.47 1.157-10.412 1.157-15.040 1.157s-11.569 0-15.040-1.157c-4.628-1.157-43.962-27.765-188.572-123.787z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["mail"],"defaultCode":60133,"grid":0},"properties":{"id":108,"order":141,"ligatures":"","prevSize":24,"code":60133,"name":"mail"},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M885.017 15.754c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 36.478 21.887 68.19 46.549 90.237 83.295 21.181 35.298 38.177 73.948 38.177 130.728 0 47.98-11.946 80.579-27.765 112.218-3.677 7.352-170.76 247.114-181.631 257.986-11.365 7.577-11.305 10.412-31.236 10.412-20.024 0-19.782-2.777-31.236-10.412-10.905-10.905-172.878-242.923-185.102-264.927-14.667-29.333-24.295-61.69-24.295-105.277 0-77.431 30.207-130.857 69.413-170.062 33.246-33.246 72.987-56.014 128.414-67.1 5.785-1.157 15.040-3.47 20.824-3.47h27.765zM447.715 108.306l10.412 1.157 43.962 20.824c34.707 17.353 43.962 23.138 48.589 27.765 9.178 9.178 13.883 17.238 13.883 34.707 0 17.194-5.128 25.952-13.883 34.707-11.037 7.358-24.644 17.088-43.962 11.569-4.628-1.157-9.255-2.314-10.412-2.314-2.314-1.157-2.314 11.569-2.314 257.986v259.142l96.022 47.432c52.060 26.608 96.022 47.432 96.022 47.432v-82.139c0-56.687 0-84.452 1.157-89.080 6.817-20.448 24.451-44.393 55.53-38.177 21.868 5.467 32.37 17.284 39.334 38.177 1.157 4.628 1.157 32.393 1.157 89.080v82.139s43.962-20.824 96.022-47.432l96.022-47.432v-35.863c0-48.138-0.525-55.952 26.608-74.040 16.995-11.329 45.442-1.99 55.53 8.098 7.133 7.133 10.527 15.384 13.883 25.452 1.157 3.47 1.157 23.138 1.157 56.687 0 46.036 0.326 52.236-5.785 70.57-1.157 3.47-5.785 9.255-9.255 12.725-5.785 5.785-16.197 11.569-158.494 82.139l-151.552 75.197h-25.452c-426.846-199.051-517.503-244.993-608.026-291.164l331.53 153.495c240.703-107.185 150.050-61.245 59.261-15.535l-335.757 153.205h-12.725c-29.14 0-40.291-16.754-47.432-38.177-1.157-4.628-1.157-114.532-1.157-322.771s0-316.987 1.157-321.614c3.525-10.574 6.222-17.79 13.883-25.452 13.703-13.703 293.433-149.029 310.046-157.337 3.47-1.157 8.098-1.157 15.040-1.157zM878.076 111.776c-6.942 0-16.197 1.157-19.667 1.157-48.507 0-84.178 40.659-104.12 70.57-10.163 15.244-19.667 40.778-19.667 64.785 0 23.566 3.372 48.392 11.569 64.785 3.47 6.942 18.51 28.922 68.257 99.492 34.707 49.747 63.629 92.55 64.785 92.55s30.079-42.805 64.785-92.55c49.747-70.57 64.785-92.55 68.257-99.492 8.436-16.872 11.569-40.668 11.569-64.785 0-23.503-9.387-39.664-16.197-56.687-6.409-16.022-16.261-28.976-30.079-40.491-6.942-5.785-15.040-13.883-20.824-17.353-21.486-12.893-44.869-21.98-78.668-21.98zM878.076 204.327c27.203 0 43.008 18.167 48.589 40.491 6.125 30.622-17.471 56.687-47.432 56.687-27.513 0-41.9-18.361-47.432-40.491-3.811-19.054 4.589-32.355 13.883-41.648 8.333-8.333 16.614-15.040 32.393-15.040zM395.655 235.563s-43.962 20.824-96.022 47.432l-94.865 47.432v518.285s43.962-20.824 96.022-47.432l96.022-47.432v-259.142c0-142.297-1.157-259.142-1.157-259.142z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["map-2"],"defaultCode":60135,"grid":0},"properties":{"id":109,"order":140,"ligatures":"","prevSize":24,"code":60135,"name":"map-2"},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M598.11 18.166c118.675 0 200.197 44.7 267.241 98.335 23.829 19.062 44.885 40.905 64.785 64.785 5.785 6.942 12.725 18.51 17.353 24.295 39.664 49.579 63.157 119.329 74.040 195.514 1.157 8.098 2.314 25.452 2.314 38.177 0 97.004-22.381 170.343-59.002 231.377-9.865 16.442-24.081 35.564-35.863 52.060-11.281 14.103-229.712 234.211-257.986 256.829-9.768 7.326-22.199 14.226-34.707 17.353l-18.51 4.628c-4.628 1.157-13.883 3.47-20.824 3.47-38.741 0-69.825-11.879-92.55-28.922-14.061-11.25-231.566-225.339-253.358-253.358-50.651-70.913-94.865-149.326-94.865-270.711 0-40.334 3.66-78.078 13.883-108.747 4.567-13.704 6.247-27.69 12.725-42.805 28.593-66.716 63.148-124.862 114.532-168.905 8.098-6.942 19.667-17.353 26.608-23.138 24.413-20.343 47.854-32.604 77.512-47.432 42.753-21.376 84.117-33.218 142.297-40.491 9.255-1.157 18.51-2.314 23.138-2.314h31.236zM587.698 114.187c-60.717 0-107.493 13.315-148.082 35.863-37.124 20.625-63.374 37.923-92.55 67.1-46.699 46.699-77.014 105.761-90.237 185.102-1.157 6.942-3.47 20.824-3.47 30.079v35.863c0 71.030 27.607 120.906 54.374 167.749 4.628 8.098 12.725 18.51 18.51 25.452 6.942 8.098 47.432 49.747 121.473 123.787 61.315 61.315 114.532 113.375 116.845 115.689 5.288 5.288 16.926 6.942 27.765 6.942 8.098 0 12.725-1.157 18.51-3.47 20.446-12.268 232.405-230.647 242.946-242.946 20.745-24.895 38.082-59.936 52.060-92.55 10.514-24.531 13.964-54.776 19.667-83.295 1.157-5.785 1.157-21.98 1.157-34.707 0-39.651-4.158-65.689-13.883-94.865-13.635-40.908-27.676-74.796-52.060-105.277-4.628-5.785-10.412-13.883-12.725-17.353s-11.569-10.412-18.51-18.51c-25.52-29.772-54.458-45.003-89.080-64.785-35.658-20.375-72.815-26.79-120.316-34.707-6.942-1.157-20.824-1.157-32.393-1.157zM594.64 259.955c48.961 0 70.124 11.764 100.649 30.079 28.965 17.38 46.122 41.416 64.785 69.413 2.314 3.47 5.785 12.725 8.098 19.667 6.545 19.639 15.040 39.172 15.040 63.629 0 118.684-71.542 180.206-171.219 200.141-5.785 1.157-15.040 1.157-21.98 1.157-47.108 0-77.762-15.652-107.59-33.55-5.785-3.47-15.040-10.412-19.667-15.040l-17.353-17.353c-16.89-16.89-27.283-39.284-37.020-63.629-7.735-19.336-11.569-44.617-11.569-71.727 0-14.924 4.224-29.218 6.942-42.805 6.362-31.811 26.816-61.523 46.275-80.982 25.45-25.45 55.145-48.332 98.335-55.53 6.942-1.157 15.040-3.47 17.353-3.47h28.922zM593.483 354.82c-14.133 0-25.32 0.513-33.55 4.628-14.557 7.278-35.169 16.89-43.962 30.079l-9.255 13.883c-8.2 12.298-11.569 25.764-11.569 47.432 0 35.049 10.29 51.939 27.765 69.413 15.733 15.733 36.106 26.608 67.1 26.608 21.211 0 38.311-5.488 50.903-13.883 24.912-16.607 43.962-40.465 43.962-82.139 0-21.831-3.285-35.007-11.569-47.432l-9.255-13.883c-12.265-18.399-40.95-34.707-70.57-34.707z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["map-pin"],"defaultCode":60136,"grid":0},"properties":{"id":110,"order":139,"ligatures":"","prevSize":24,"code":60136,"name":"map-pin"},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M587.698 113.030c131.885 0 247.574 1.157 255.672 1.157 52.877 0 92.544 25.445 120.316 53.217 15.005 15.005 27.566 29.682 37.020 48.589l10.412 20.824c5.896 11.789 7.931 27.918 10.412 42.805 1.157 11.569 2.314 33.55 2.314 178.16 0 164.277-1.157 163.121-3.47 174.69-10.948 54.739-40.564 90.759-77.512 120.316-18.609 14.89-48.455 27.936-75.197 32.393-11.569 2.314-16.197 3.47-62.472 3.47h-50.903l-68.257 68.257c-63.629 63.629-69.413 69.413-76.355 72.884s-9.255 2.314-19.667 2.314-12.725 1.157-19.667-2.314-12.725-9.255-76.355-72.884l-68.257-68.257h-50.903c-67.84 0-51.393 0.356-89.080-10.412-40.827-11.664-69.92-40.836-93.708-70.57-15.532-19.415-27.625-46.59-32.393-75.197l-2.314-12.725-1.157-163.121c0-144.611 1.157-165.435 2.314-177.004 10.088-60.536 40.196-104.308 83.295-133.042 24.276-16.185 55.759-32.393 93.708-32.393 6.942 0 120.316-1.157 252.201-1.157zM594.64 210.208c-138.827 0-254.515 1.157-255.672 1.157-16.215 0-31.22 7.219-41.648 15.040-10.077 7.556-19.926 13.115-26.608 23.138-7.313 10.969-11.49 22.901-16.197 37.020l-1.157 160.807c0 158.494 0 160.807 2.314 171.219 6.952 34.756 35.853 63.626 70.57 70.57 9.255 2.314 13.883 2.314 63.629 2.314 44.326 0 56.905-1.469 75.197 4.628 4.628 2.314 15.040 10.412 65.942 61.315l59.002 59.002 59.002-59.002c50.903-50.903 61.315-59.002 65.942-61.315 18.366-6.122 30.764-4.628 75.197-4.628 49.747 0 54.374 0 63.629-2.314 18.667-3.735 33.857-14.191 45.118-25.452 10.934-10.934 21.79-26.812 25.452-45.118 2.314-9.255 2.314-13.883 2.314-171.219l-1.157-160.807c-2.278-6.834-4.253-17.371-8.098-23.138l-9.255-13.883c-11.826-17.738-32.26-29.649-54.374-37.020-6.942-2.314-24.295-2.314-259.142-2.314zM590.012 306.23c196.002 0 186.743-2.924 216.337 6.942 11.321 3.774 24.295 20.367 24.295 34.707v13.883c0 21.562-20.464 33.816-37.020 39.334-5.785 1.157-30.079 2.314-203.612 2.314-194.79 0-186.886 2.876-216.337-6.942-11.321-3.774-24.295-20.367-24.295-34.707v-13.883c0-20.74 19.98-34.040 35.863-39.334 5.785-1.157 35.863-2.314 204.769-2.314zM541.423 499.43c-145.767 0-151.552 0-158.494 2.314-18.182 6.060-33.55 21.177-33.55 45.118 0 24.145 15.534 41.428 33.55 47.432 5.785 2.314 11.569 2.314 158.494 2.314 144.611 0 153.866 0 159.65-2.314 18.527-6.175 33.55-23.33 33.55-47.432 0-24.104-15.241-39.016-33.55-45.118-6.942-2.314-8.098-2.314-159.65-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["message-2"],"defaultCode":60140,"grid":0},"properties":{"id":111,"order":138,"ligatures":"","prevSize":24,"code":60140,"name":"message-2"},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M375.988 909.497c-5.582 0-200.951 45.118-223.279 45.118-17.167 0-35.068-13.809-39.334-26.608l-4.628-13.883c-1.157-3.47-1.157-8.098-1.157-11.569s13.883-43.962 30.079-91.394l27.765-85.61c-10.758-21.516-23.896-47.594-33.55-71.727-16.416-41.043-21.98-76.201-21.98-135.355 0-25.452 0-35.863 1.157-47.432 11.921-83.44 44.054-150.221 86.767-203.612 4.628-5.785 13.883-17.353 20.824-24.295l23.138-23.138c14.515-14.515 29.018-23.603 45.118-37.020 38.817-32.347 86.139-51.247 137.669-70.57 30.486-11.432 65.228-16.921 100.649-21.98 8.098-1.157 20.824-3.47 27.765-3.47s23.138-1.157 34.707-1.157c172.794 0 285.528 68.033 372.517 155.022 22.89 22.89 37.283 46.669 55.53 74.040 10.463 15.693 25.637 46.34 31.236 65.942 11.796 41.285 25.452 74.344 25.452 129.572 0 112.424-33.284 188.219-82.139 253.358-43.125 57.501-99.186 101.653-166.592 135.355-21.897 10.949-44.156 18.729-68.257 27.765-52.499 19.688-92.69 25.452-165.435 25.452-84.562 0-137.311-11.58-196.671-37.020-8.098-3.47-16.197-5.785-17.353-5.785zM229.064 841.242c152.633-31.003 146.643-31.236 153.866-31.236 19.139 0 42.18 15.217 59.002 20.824 38.488 12.829 78.048 20.53 127.257 25.452 61.907 4.762 115.335-9.815 161.964-23.138 42.694-12.198 77.346-34.589 109.904-57.844 8.098-5.785 20.824-15.040 27.765-21.98l24.295-24.295c6.942-6.942 15.040-18.51 19.667-24.295 38.275-47.843 63.629-110.275 63.629-195.514 0-62.836-24.33-112.275-48.589-152.709-9.388-15.645-23.421-34.99-37.020-48.589-28.44-28.44-58.68-55.949-97.179-75.197-57.238-28.619-110.315-48.589-196.671-48.589h-40.491c-24.028 0-48.973 6.17-70.57 11.569-42.576 10.643-82.299 25.944-114.532 47.432-15.075 10.051-37.584 22.544-49.747 34.707-11.366 11.366-36.011 34.603-46.275 47.432-19.525 24.407-42.403 59.911-52.060 93.708-2.314 8.098-6.942 20.824-9.255 28.922-16.423 57.483-7.518 142.298 13.883 185.102 7.732 15.463 16.208 33.571 25.452 49.747 8.862 15.507 12.725 16.054 12.725 35.863v10.412l-18.51 55.53c-10.412 30.079-18.51 56.687-18.51 56.687zM396.812 569.373c-28.887 0-47.432-20.858-47.432-50.903 0-19.44 12.084-33.808 25.452-40.491 3.47-2.314 10.412-4.628 12.725-4.628s6.942-1.157 9.255-1.157c27.218 0 47.432 19.916 47.432 48.589 0 29.361-18.938 48.589-47.432 48.589zM588.855 472.194c27.203 0 43.008 18.167 48.589 40.491 6.125 30.622-17.471 56.687-47.432 56.687-27.513 0-41.9-18.361-47.432-40.491-3.811-19.054 4.589-32.355 13.883-41.648 8.333-8.333 16.614-15.040 32.393-15.040zM782.055 472.194c-2.314 0-6.942 1.157-9.255 1.157-14.565 0-28.001 16.667-33.55 27.765-3.47 6.942-3.47 8.098-3.47 19.667 0 29.361 18.938 48.589 47.432 48.589 29.281 0 47.432-20.787 47.432-50.903 0-27.082-18.552-38.191-39.334-45.118-3.47-1.157-6.942-1.157-9.255-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["message-circle"],"defaultCode":60141,"grid":0},"properties":{"id":112,"order":137,"ligatures":"","prevSize":24,"code":60141,"name":"message-circle"},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M587.698 91.677c131.885 0 247.574 1.157 255.672 1.157 52.897 0 92.636 25.537 120.316 53.217 31.037 31.037 50.168 63.848 59.002 116.845 1.157 9.255 1.157 55.53 1.157 174.69 0 161.964-1.157 163.121-3.47 174.69-3.143 18.86-8.035 32.283-17.353 48.589-4.628 8.098-9.255 19.667-13.883 25.452s-11.569 13.883-16.197 18.51l-17.353 17.353c-16.443 16.443-41.505 26.551-64.785 35.863-5.785 2.314-16.197 4.628-23.138 5.785l-11.569 3.47h-439.616l-92.55 92.55c-74.040 74.040-93.708 92.55-98.335 94.865-7.738 2.58-17.571 6.899-28.922 4.628l-13.883-4.628c-12.261-4.086-19.78-18.737-25.452-30.079v-664.052l2.314-12.725c7.436-44.616 30.113-76.39 56.687-102.963 18.054-18.054 36.166-29.794 61.315-38.177 19.396-6.466 32.936-13.883 57.844-13.883 6.942 0 120.316-1.157 252.201-1.157zM594.64 188.854c-138.827 0-254.515 1.157-255.672 1.157-16.215 0-31.22 7.219-41.648 15.040-10.077 7.556-19.926 13.115-26.608 23.138-7.313 10.969-11.49 22.901-16.197 37.020l-1.157 264.927v263.77l57.844-57.844c49.747-49.747 59.002-57.844 64.785-60.158 3.47-1.157 10.412-3.47 15.040-4.628s90.237-1.157 230.22-1.157c217.494 0 223.279 0 232.534-2.314 18.667-3.735 33.857-14.191 45.118-25.452 10.934-10.934 21.79-26.812 25.452-45.118 2.314-9.255 2.314-13.883 2.314-171.219l-1.157-160.807c-12.87-38.609-32.584-60.994-71.727-74.040-6.942-2.314-24.295-2.314-259.142-2.314zM588.855 284.876c139.984 0 198.984 0 203.612 1.157 10.845 3.616 17.842 7.43 25.452 15.040 3.47 3.47 8.098 8.098 9.255 11.569 4.5 13.503 4.71 27.519 0 41.648-4.317 12.955-21.539 22.219-34.707 26.608-4.628 1.157-62.472 1.157-202.455 1.157s-197.827 0-202.455-1.157c-10.845-3.616-17.842-7.43-25.452-15.040-3.47-3.47-8.098-8.098-9.255-11.569-4.5-13.503-4.71-27.519 0-41.648 4.292-12.881 20.528-22.268 33.55-26.608 4.628-1.157 52.060-1.157 202.455-1.157zM541.423 478.076c-145.767 0-151.552 0-158.494 2.314-15.826 5.275-33.55 19.121-33.55 39.334-1.157 4.628-1.157 9.255 0 13.883l4.628 13.883c4.967 14.9 21.132 22.636 37.020 26.608 4.628 1.157 62.472 1.157 150.395 1.157 78.668 0 148.082-1.157 151.552-1.157 23.939 0 41.648-23.405 41.648-47.432 0-25.817-15.076-39.732-34.707-46.275-5.785-1.157-21.98-2.314-158.494-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["message"],"defaultCode":60143,"grid":0},"properties":{"id":113,"order":136,"ligatures":"","prevSize":24,"code":60143,"name":"message"},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 120.431-37.191 202.711-85.61 275.339-12.039 18.059-25.966 36.379-41.648 52.060l-26.608 26.608c-23.216 23.216-49.658 42.423-78.668 59.002-67.997 38.855-141.674 68.257-248.731 68.257-61.931 0-102.929-9.575-150.395-23.138-58.128-16.607-106.538-49.655-150.395-80.982-18.745-13.39-37.101-33.631-53.217-49.747-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c29.76-59.519 70.548-106.415 119.159-148.082 60.273-51.661 139.032-92.579 236.004-106.434 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 135.54c-11.569 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.4 36.401-18.51 71.869-18.51 119.159 0 47.34 8.057 82.572 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 15.887 47.662 45.335 82.399 74.040 116.845 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098s19.667-8.098 26.608-10.412c47.662-15.887 82.399-45.335 116.845-74.040 14.015-11.678 31.31-32.493 41.648-46.275 13.298-17.73 29.325-42.194 41.648-64.785 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM444.244 327.584c28.036 0 48.589 19.255 48.589 48.589 0 28.46-16.52 41.729-39.334 47.432-29.926 5.986-49.61-15.654-55.53-39.334-3.811-19.054 4.589-32.355 13.883-41.648 8.081-8.081 17.083-15.040 32.393-15.040zM733.465 327.584c28.036 0 48.589 19.255 48.589 48.589 0 28.46-16.52 41.729-39.334 47.432-29.926 5.986-49.61-15.654-55.53-39.334-3.811-19.054 4.589-32.355 13.883-41.648 8.081-8.081 17.083-15.040 32.393-15.040zM590.012 520.784c197.827 0 200.141 0 207.082 2.314 10.333 2.583 16.972 10.030 23.138 16.197 7.759 7.759 10.412 13.89 10.412 31.236 0 60.938-21.111 109.106-48.589 143.454-4.628 5.785-11.569 16.197-17.353 21.98-19.077 19.077-39.736 34.907-64.785 47.432-32.665 16.333-58.463 25.452-109.904 25.452-31.444 0-44.031-0.795-65.942-8.098-43.464-14.488-74.775-31.97-104.12-61.315-39.809-39.809-70.57-91.614-70.57-168.905 0-17.42 2.606-23.429 10.412-31.236 5.822-5.822 13.096-13.235 21.98-16.197 6.942-2.314 12.725-2.314 208.239-2.314zM590.012 616.805c-118.002 0-135.355 0-135.355 1.157 0 7.205 8.013 17.182 11.569 24.295 11.965 23.93 34.897 45.426 60.158 55.53 19.875 7.95 35.154 15.040 63.629 15.040 45.046 0 70.16-16.466 96.022-35.863 13.52-10.14 30.425-33.43 35.863-49.747 1.157-3.47 3.47-8.098 3.47-9.255s-17.353-1.157-135.355-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["mood-happy"],"defaultCode":60148,"grid":0},"properties":{"id":114,"order":135,"ligatures":"","prevSize":24,"code":60148,"name":"mood-happy"},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M599.267 39.52c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 120.431-37.191 202.711-85.61 275.339-12.039 18.059-25.966 36.379-41.648 52.060l-26.608 26.608c-23.216 23.216-49.658 42.423-78.668 59.002-67.997 38.855-141.674 68.257-248.731 68.257-61.931 0-102.929-9.575-150.395-23.138-58.128-16.607-106.538-49.655-150.395-80.982-18.745-13.39-37.101-33.631-53.217-49.747-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c29.76-59.519 70.548-106.415 119.159-148.082 60.273-51.661 139.032-92.579 236.004-106.434 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 135.54c-11.569 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.4 36.401-18.51 71.869-18.51 119.159 0 47.34 8.057 82.572 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 15.887 47.662 45.335 82.399 74.040 116.845 11.678 14.015 32.493 31.31 46.275 41.648 27.32 20.488 67.517 43.149 101.806 57.844 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098s19.667-8.098 26.608-10.412c47.662-15.887 82.399-45.335 116.845-74.040 14.015-11.678 31.31-32.493 41.648-46.275 13.298-17.73 29.325-42.194 41.648-64.785 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM493.99 423.606c0 29.784-20.164 48.589-50.903 48.589-49.569 0-61.634-76.248-19.667-90.237 9.409-3.135 10.403-5.785 24.295-5.785 18.956 0 28.745 12.548 38.177 21.98 4.868 4.868 8.098 16.578 8.098 25.452zM783.212 423.606c0 29.784-20.164 48.589-50.903 48.589-49.569 0-61.634-76.248-19.667-90.237 9.409-3.135 10.403-5.785 24.295-5.785 18.956 0 28.745 12.548 38.177 21.98 4.868 4.868 8.098 16.578 8.098 25.452zM469.696 616.805c-29.582 0-48.589 22.286-48.589 52.060 0 10.956 5.672 18.341 10.412 25.452 13.72 20.581 37.271 33.196 60.158 46.275 22.424 12.814 51.649 23.138 83.295 23.138h28.922c20.543 0 24.025-4.003 41.648-6.942 6.942-1.157 15.040-4.628 20.824-6.942 16.178-6.471 34.456-13.913 47.432-24.295 17.348-13.878 45.118-28.173 45.118-56.687 0-30.48-16.257-44.845-40.491-50.903-21.37-4.273-32.184 5.85-45.118 16.197-22.111 17.689-43.787 33.55-83.295 33.55-38.397 0-61.894-16.428-83.295-33.55-12.423-9.938-18.017-17.353-37.020-17.353z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["smilies"],"defaultCode":60151,"grid":0},"properties":{"id":115,"order":134,"ligatures":"","prevSize":24,"code":60151,"name":"smilies"},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M492.833 86.952c225.592 0 253.358 1.157 261.456 2.314 26.508 6.627 44.579 18.279 57.844 38.177l9.255 13.883c4.664 6.997 9.255 22.090 9.255 32.393v9.255h56.687l56.687 1.157c16.807 4.202 34.603 10.308 45.118 20.824l12.725 12.725c10.189 10.189 17.008 31.008 20.824 46.275v566.875l-2.314 11.569c-5.988 29.94-20.478 50.557-39.334 69.413-18.776 18.776-39.718 33.395-69.413 39.334l-11.569 2.314h-573.815l-13.883-2.314c-42.843-7.14-76.516-30.24-101.806-55.53-23.139-23.139-44.239-57.197-50.903-97.179l-2.314-13.883v-620.091c8.229-32.919 25.617-54.456 53.217-68.257 3.833-1.916 22.773-8.098 27.765-8.098 2.314 0 115.689-1.157 254.515-1.157zM734.622 184.13h-481.265v295.006c0 290.379 0 296.163 2.314 305.418 6.437 32.184 28.382 51.791 54.374 64.785 4.628 2.314 10.412 4.628 16.197 5.785 9.255 2.314 15.040 2.314 212.867 2.314h202.455s-1.157-5.785-3.47-12.725l-2.314-11.569-1.157-325.084v-323.928zM638.601 327.584c0 27.141-15.88 38.868-35.863 47.432h-218.652c-19.26-9.63-27.331-18.363-34.707-40.491-5.231-20.93 11.158-44.596 26.608-49.747 3.47-1.157 9.255-4.628 12.725-4.628s49.747-1.157 104.12-1.157c80.982 0 100.649 0 106.434 1.157 20.735 5.183 39.334 21.483 39.334 47.432zM926.666 280.152h-94.865v271.868l1.157 271.868c4.359 13.077 14.815 22.987 25.452 30.079 6.942 3.47 8.098 2.314 20.824 2.314 25.29 0 33.709-10.072 43.962-25.452l2.314-6.942 1.157-271.868v-271.868zM495.148 472.194c105.277 0 106.434 1.157 112.218 3.47 18.15 6.051 30.079 20.379 30.079 45.118 0 24.672-11.696 38.99-30.079 45.118-5.785 2.314-6.942 3.47-109.904 3.47-75.197 0-105.277 0-109.904-1.157-13.319-4.44-29.103-13.273-33.55-26.608l-4.628-13.883c-1.157-5.785-1.157-8.098 0-13.883l4.628-13.883c3.89-11.668 19.673-22.753 31.236-26.608 4.628-1.157 27.765-1.157 109.904-1.157zM496.304 665.395c-82.139 0-107.59 0-112.218 1.157-8.608 2.869-17.235 6.766-21.98 13.883-6.062 9.094-16.828 24.083-12.725 40.491 5.661 22.642 17.742 34.804 40.491 40.491 4.628 1.157 43.962 1.157 105.277 1.157 78.668 0 98.335 0 104.12-1.157 20.735-5.183 39.334-21.483 39.334-47.432 0-27.179-16.069-38.949-35.863-47.432l-106.434-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["news"],"defaultCode":60157,"grid":0},"properties":{"id":117,"order":132,"ligatures":"","prevSize":24,"code":60157,"name":"news"},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M192.044 932.105c-17.935-5.72-27.705-18.487-34.707-34.707v-217.494l3.47-8.098c7.734-13.532 527.527-531.994 539.108-540.266 21.552-12.932 45.264-24.324 74.040-30.079 5.785-1.157 12.725-2.314 15.040-2.314h23.138c56.706 0 94.927 23.201 123.787 52.060 31.34 31.34 54.374 68.085 54.374 130.728 0 50.27-13.399 75.934-32.393 107.59-8.401 11.76-526.733 531.375-540.266 539.108l-8.098 3.47h-217.494zM812.134 195.169c-33.96 0-50.978 9.33-69.413 27.765l-11.569 11.569c41.123 42.316 81.464 82.657 122.371 122.417l1.416 1.37 11.569-11.569c16.988-16.988 22.46-27.844 27.765-54.374 6.289-37.731-16.492-67.032-38.177-83.295-9.952-7.463-16.937-7.574-28.922-11.569-3.47-1.157-10.412-2.314-15.040-2.314zM724.21 365.231l-62.472-62.472c-135.322 135.112-268.752 268.908-401.895 402.99l-7.642 7.705v123.787h124.944c135.322-135.112 268.752-268.908 401.895-402.99l7.642-7.705-62.472-61.315z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["pencil"],"defaultCode":60164,"grid":0},"properties":{"id":119,"order":130,"ligatures":"","prevSize":24,"code":60164,"name":"pencil"},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M736.937 38.362c27.598 0 53.61 4.436 77.512 10.412 77.33 19.332 134.514 58.793 179.317 111.061 6.942 8.098 16.197 21.98 21.98 30.079 5.785 9.255 16.197 24.295 21.98 37.020 19.054 41.918 28.115 74.075 33.55 128.414 2.956 41.374-6.9 60.148-39.334 68.257-33.276 6.655-56.687-20.093-56.687-53.217 0-34.452-9.95-59.931-18.51-85.61-9.633-28.899-29.178-51.512-46.275-72.884-11.521-14.403-28.405-25.5-42.805-37.020-5.785-4.628-17.353-9.255-25.452-13.883-23.71-13.549-51.409-18.381-80.982-24.295-5.785-1.157-15.040-1.157-20.824-1.157-30.542 0-47.031-15.747-53.217-40.491-3.811-19.054 4.589-32.355 13.883-41.648 9.105-9.105 18.009-15.040 35.863-15.040zM344.752 86.952c98.314 0 105.189-4.093 122.63 4.628 6.234 3.117 14.328 9.923 18.51 16.197 0 0 102.364 253.875 102.963 255.672 1.157 3.47 1.157 9.255 1.157 12.725 0 16.532-6.152 22.533-12.725 32.393-3.47 4.628-16.197 11.569-48.589 31.236l-42.805 26.608 9.255 13.883c25.014 35.019 50.277 66.563 83.295 94.865 8.098 6.942 18.51 17.353 25.452 21.98s18.51 12.725 26.608 18.51l13.883 9.255 26.608-42.805c19.667-32.393 26.608-45.118 31.236-48.589 9.936-6.624 15.461-12.725 32.393-12.725 3.47 0 9.255 0 12.725 1.157 1.84 0.614 255.672 102.963 255.672 102.963 11.262 7.508 15.072 16.295 19.667 30.079 1.157 4.628 1.157 33.55 1.157 115.689 0 122.667 1.181 97.077-8.098 134.199-7.96 31.841-32.489 55.602-55.53 72.884-20.893 15.67-43.183 24.295-79.825 24.295-9.255 0-25.452 0-35.863-1.157-118.796-13.2-218.57-46.102-304.261-93.708-24.862-13.813-48.361-24.991-70.57-41.648-20.324-15.244-48.48-34.231-67.1-49.747-30.395-25.33-70.676-64.412-98.335-96.022-33.775-38.601-58.99-78.187-86.767-122.63-20.2-32.322-39.219-72.579-53.217-109.904-24.762-66.031-45.313-139.414-54.374-220.965-1.157-10.412-1.157-26.608-1.157-35.863 0-81.413 52.085-124.661 118.002-141.14 4.628-1.157 9.255-1.157 10.412-1.157s48.589-1.157 107.59-1.157zM332.026 182.973c-43.962 0-83.295 1.157-86.767 1.157-16.719 0-29.858 15.753-35.863 27.765-3.47 6.942-3.47 8.098-3.47 21.98 0 125.491 47.72 228.424 93.708 311.202 24.642 44.355 58.457 87.038 89.080 123.787 23.614 28.337 65.036 62.68 92.55 85.61 34.973 29.144 75.862 56.597 120.316 76.355 42.707 18.98 83.38 38.778 131.885 50.903 41.558 10.389 84.658 16.555 130.728 23.138 8.098 1.157 18.51 1.157 21.98 1.157 22.903 0 35.8-22.883 40.491-41.648 1.157-4.628 1.157-41.648 1.157-86.767 0-61.315 0-78.668-1.157-79.825-2.696-2.696-168.598-65.671-172.376-67.1-1.569-0.595-46.967 82.831-57.844 93.708-16.145 16.145-40.746 16.069-63.629 4.628-69.416-34.708-130.539-86.547-179.317-143.454-27.741-32.364-51.736-67.608-71.727-107.59-6.641-13.283-11.186-21.584-8.098-37.020 2.738-10.948 5.367-19.25 12.725-26.608 4.628-4.628 18.51-12.725 49.747-31.236 24.295-13.883 43.962-26.608 43.962-26.608-1.428-3.779-64.404-169.682-67.1-172.376-1.157-1.157-18.51-1.157-80.982-1.157zM736.937 231.562c-29.397 0-43.751 16.512-49.747 40.491-6.631 33.161 17.913 52.251 47.432 55.53 31.276 3.127 44.825 18.475 48.589 48.589 3.21 28.9 14.689 40.982 40.491 47.432 31.757 6.351 55.53-18.356 55.53-49.747 0-33.087-11.585-56.329-24.295-77.512-12.119-20.196-34.186-40.746-56.687-49.747-19.069-7.628-34.781-15.040-61.315-15.040z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["phone-call"],"defaultCode":60165,"grid":0},"properties":{"id":120,"order":129,"ligatures":"","prevSize":24,"code":60165,"name":"phone-call"},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M348.223 65.598l109.904 1.157c11.253 4.5 21.509 10.281 27.765 19.667 2.314 3.47 24.295 57.844 53.217 130.728l49.747 124.944v12.725c0 17.4-5.023 22.575-11.569 32.393-3.47 4.628-16.197 11.569-48.589 31.236l-42.805 26.608 9.255 13.883c5.785 8.098 13.883 19.667 18.51 26.608s15.040 17.353 21.98 25.452c14.315 16.702 34.721 36.801 50.903 49.747 13.651 10.921 31.193 25.657 46.275 34.707 5.785 3.47 10.412 6.942 11.569 6.942 2.333 0 56.687-89.080 56.687-89.080 8.299-8.299 16.844-12.725 33.55-12.725h12.725l124.944 49.747c72.884 28.922 127.257 50.903 130.728 53.217 9.218 6.145 15.19 16.576 19.667 27.765v112.218c0 90.237 0 112.218-1.157 119.159-5.85 23.398-13.133 44.47-26.608 61.315-10.179 12.723-22.216 23.024-34.707 32.393-20.893 15.67-43.183 24.295-79.825 24.295-46.36 0-77.986-8.177-119.159-15.040-48.856-8.142-96.26-24.962-137.669-40.491-70.374-26.389-133.2-63.366-188.572-106.434-10.412-8.098-25.452-18.51-32.393-24.295-30.395-25.33-70.676-64.412-98.335-96.022-33.775-38.601-58.99-78.187-86.767-122.63-20.494-32.791-38.932-72.967-53.217-111.061-24.618-65.65-45.321-138.336-54.374-219.809-1.157-10.412-1.157-26.608-1.157-35.863 0-81.413 52.085-124.661 118.002-141.14 4.628-1.157 9.255-1.157 10.412-1.157s50.903-1.157 111.061-1.157zM977.569 65.598c21.545 0 34.358 14.343 41.648 28.922 2.314 5.785 4.628 9.255 4.628 16.197 0 14.037-2.85 19.581-6.942 27.765-2.314 3.47-33.55 37.020-83.295 86.767l-80.982 80.982h38.177c52.158 0 61.44-0.391 80.982 28.922 3.47 5.785 2.314 6.942 2.314 19.667 0 29.928-15.725 39.948-38.177 47.432-4.628 1.157-42.805 1.157-109.904 1.157-101.806 0-102.963-1.157-108.747-3.47-13.172-4.39-23.358-14.542-27.765-27.765-2.314-5.785-3.47-6.942-3.47-109.904 0-71.727 0-105.277 1.157-109.904 5.617-16.855 14.399-25.796 27.765-34.707 5.785-3.47 6.942-2.314 19.667-2.314 19.059 0 22.708 1.885 32.393 11.569 17.764 17.764 16.197 27.969 16.197 71.727v38.177l80.982-80.982c45.118-45.118 83.295-82.139 85.61-83.295 7.816-3.908 15.043-6.942 27.765-6.942zM332.026 161.619c-43.962 0-83.295 1.157-86.767 1.157-16.719 0-29.858 15.753-35.863 27.765-3.47 6.942-3.47 8.098-3.47 21.98 0 125.491 47.72 228.424 93.708 311.202 24.642 44.355 58.457 87.038 89.080 123.787 23.614 28.337 65.036 62.68 92.55 85.61 71.33 59.441 164.081 104.649 268.397 130.728l32.393 8.098c20 4.999 49.693 7.126 69.413 10.412 6.942 1.157 17.353 1.157 25.452 1.157 31.907 0 43.548-15.694 49.747-40.491 1.157-4.628 1.157-41.648 1.157-86.767 0-61.315 0-78.668-1.157-79.825-2.696-2.696-168.598-65.671-172.376-67.1-1.569-0.595-46.967 82.831-57.844 93.708-16.145 16.145-40.746 16.069-63.629 4.628-21.778-10.889-34.873-20.164-56.687-34.707-35.841-23.894-63.709-43.907-92.55-76.355-33-37.127-64.992-68.669-87.923-114.532-8.433-16.863-26.819-38.281-21.98-62.472 2.738-10.948 5.367-19.25 12.725-26.608 4.628-4.628 18.51-12.725 49.747-31.236 24.295-13.883 43.962-26.608 43.962-26.608-1.428-3.779-64.404-169.682-67.1-172.376-1.157-1.157-18.51-1.157-80.982-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["phone-incoming"],"defaultCode":60166,"grid":0},"properties":{"id":121,"order":128,"ligatures":"","prevSize":24,"code":60166,"name":"phone-incoming"},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M213.542 77.742c-35.363 0-67.479 14.393-90.584 37.541s-37.541 55.222-37.541 90.584v597.917c0 35.363 14.393 67.479 37.541 90.584s55.222 37.541 90.584 37.541h597.917c35.363 0 67.479-14.393 90.584-37.541s37.541-55.222 37.541-90.584v-597.917c0-35.363-14.393-67.479-37.541-90.584s-55.222-37.541-90.584-37.541zM469.792 355.347c0-29.469-12.001-56.204-31.263-75.509s-46.040-31.263-75.509-31.263-56.204 12.001-75.509 31.263-31.263 46.040-31.263 75.509 12.001 56.204 31.263 75.509 46.040 31.263 75.509 31.263 56.204-12.001 75.509-31.263 31.263-46.040 31.263-75.509zM384.375 355.347c0 5.894-2.349 11.19-6.235 15.119s-9.225 6.235-15.119 6.235-11.19-2.349-15.119-6.235-6.235-9.225-6.235-15.119 2.349-11.19 6.235-15.119 9.225-6.235 15.119-6.235 11.19 2.349 15.119 6.235 6.235 9.225 6.235 15.119zM316.64 846.493l366.694-366.694 170.834 170.834v153.153c0 11.788-4.741 22.422-12.513 30.194s-18.407 12.513-30.194 12.513zM854.167 529.853l-140.638-140.638c-16.699-16.699-43.734-16.699-60.39 0l-454.588 454.588c-5.766-2.135-10.891-5.509-15.204-9.823-7.773-7.773-12.513-18.407-12.513-30.194v-597.917c0-11.788 4.741-22.422 12.513-30.194s18.407-12.513 30.194-12.513h597.917c11.788 0 22.422 4.741 30.194 12.513s12.513 18.407 12.513 30.194z"],"isMulticolor":false,"isMulticolor2":false,"tags":["image"],"defaultCode":59653,"grid":0},"properties":{"id":6,"order":200,"ligatures":"","prevSize":24,"code":59653,"name":"image"},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M594.64 86.952l261.456 1.157 11.569 2.314c54.802 10.961 90.827 40.65 120.316 77.512 15.532 19.415 27.625 46.59 32.393 75.197l2.314 13.883v263.77c0 252.201 1.157 263.77-1.157 275.339-2.954 17.72-9.656 35.408-18.51 50.903-12.084 21.146-18.999 34.038-35.863 50.903-20.825 20.825-46.936 35.665-76.355 47.432-5.785 2.314-16.197 4.628-23.138 5.785l-13.883 2.314h-529.853l-11.569-2.314c-55.248-9.208-91.378-41.337-120.316-77.512-15.532-19.415-27.625-46.59-32.393-75.197l-2.314-13.883v-527.54l2.314-13.883c9.197-55.181 41.248-91.307 77.512-120.316 19.415-15.532 46.59-27.625 75.197-32.393 6.942-1.157 13.883-2.314 16.197-2.314s121.473-1.157 266.084-1.157zM592.325 184.13c-252.201 0-256.829 0-266.084 2.314-34.413 8.603-63.404 34.737-70.57 70.57-2.314 9.255-2.314 12.725-2.314 150.395v139.984l60.158-60.158c65.246-65.246 55.724-60.255 108.747-86.767 12.167-6.084 28.772-8.098 46.275-8.098 36.873 0 65.335 11.778 86.767 28.922 8.098 5.785 25.452 20.824 71.727 67.1l60.158 60.158 11.569-11.569c30.908-25.757 51.958-47.432 108.747-47.432 51.771 0 81.501 21.342 107.59 47.432l11.569 10.412v-139.984c0-137.669 0-141.14-2.314-150.395-7.248-36.236-35.55-59.667-68.257-70.57-6.942-2.314-19.667-2.314-263.77-2.314zM783.212 324.114c0 33.068-19.119 52.060-52.060 52.060-25.387 0-49.657-27.056-43.962-55.53 5.692-17.081 9.753-28.014 25.452-35.863 3.47-2.314 10.412-4.628 13.883-4.628h12.725c22.738 0 43.962 21.104 43.962 43.962zM469.696 488.391c-8.694 0-23.977 5.467-28.922 10.412-2.314 2.314-46.275 45.118-96.022 94.865l-91.394 90.237v45.118c0 41.648 0 46.275 2.314 55.53 6.952 34.756 35.853 63.626 70.57 70.57 9.255 2.314 12.725 2.314 263.77 2.314s254.515 0 263.77-2.314c27.792-5.558 52.822-25.619 62.472-49.747 11.722-29.308 10.412-17.067 10.412-76.355v-45.118l-43.962-42.805c-24.295-24.295-46.275-45.118-49.747-47.432-7.014-4.677-14.503-8.098-25.452-8.098-20.492 0-31.401 10.576-42.805 21.98l-10.412 9.255 34.707 33.55c28.922 28.922 33.55 34.707 37.020 41.648 2.314 4.628 4.628 11.569 4.628 15.040v13.883c0 12.716-12.607 28.073-20.824 33.55-6.6 4.4-16.943 6.942-26.608 6.942-12.894 0-16.997-4.123-25.452-6.942-16.564-11.044-254.738-254.049-264.927-259.142-4.945-3.297-17.434-6.942-23.138-6.942z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["photo"],"defaultCode":60170,"grid":0},"properties":{"id":122,"order":127,"ligatures":"","prevSize":24,"code":60170,"name":"photo"},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M592.325 135.54c-28.879 0-42.647 15.722-49.747 37.020-1.157 5.785-1.157 26.608-1.157 152.709v146.924h-146.924c-126.1 0-146.924 0-152.709 1.157-20.546 6.849-35.863 18.655-35.863 47.432 0 29.2 14.38 40.271 35.863 47.432 5.785 1.157 26.608 1.157 152.709 1.157h146.924v146.924c0 126.1 0 146.924 1.157 152.709 6.849 20.546 18.655 35.863 47.432 35.863 29.2 0 40.271-14.38 47.432-35.863 1.157-5.785 1.157-26.608 1.157-152.709v-146.924h146.924c126.1 0 146.924 0 152.709-1.157 20.546-6.849 35.863-18.655 35.863-47.432 0-29.2-14.38-40.271-35.863-47.432-5.785-1.157-26.608-1.157-152.709-1.157h-146.924v-146.924c0-126.1 0-146.924-1.157-152.709-6.23-18.687-19.748-37.020-45.118-37.020z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["plus"],"defaultCode":60171,"grid":0},"properties":{"id":123,"order":126,"ligatures":"","prevSize":24,"code":60171,"name":"plus"},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M592.325 86.952c26.265 0 38.566 19.677 45.118 39.334 1.157 4.628 1.157 75.197 1.157 202.455 0 141.14 0 196.671-1.157 201.299-6.989 20.967-16.832 32.553-39.334 38.177-30.377 6.075-48.057-15.754-55.53-38.177-1.157-4.628-1.157-60.158-1.157-201.299 0-127.257 0-197.827 1.157-202.455 7.38-22.14 20.391-39.334 49.747-39.334zM349.379 182.973c-2.314 0-8.098 1.157-10.412 1.157s-8.098 3.47-11.569 4.628-10.412 5.785-16.197 11.569l-23.138 23.138c-32.018 32.018-61.78 68.264-79.825 113.375-2.314 5.785-6.942 13.883-8.098 17.353l-6.942 20.824c-15.005 45.017-28.737 100.925-24.295 163.121 4.963 54.586 13.39 98.342 31.236 139.984 15.597 36.395 34.013 64.325 54.374 94.865 11.41 17.116 30.268 34.895 45.118 49.747 31.243 31.243 65.483 52.988 107.59 74.040 54.073 27.036 101.032 40.491 182.788 40.491 46.029 0 52.341 1.087 84.452-6.942l32.393-8.098c56.931-14.233 98.109-41.816 139.984-71.727 33.438-23.884 63.236-54.362 85.61-87.923 4.628-6.942 12.725-16.197 16.197-23.138 14.449-28.899 31.256-55.595 41.648-90.237 13.334-44.449 25.395-94.439 20.824-153.866-12.143-121.432-52.203-204.912-119.159-271.868l-23.138-23.138c-11.032-11.032-24.587-20.304-45.118-16.197-3.47 1.157-11.569 2.314-15.040 4.628-9.595 4.797-16.383 14.739-21.98 23.138-3.47 5.785-2.314 6.942-2.314 19.667 0 30.408 2.643 22.31 26.608 46.275 47.434 42.692 75.218 93.2 94.865 161.964 6.239 21.834 9.255 41.721 9.255 69.413 0 29.697-2.434 48.273-5.785 71.727-1.157 8.098-5.785 19.667-8.098 27.765-14.051 49.176-38.354 95.042-70.57 127.257l-21.98 21.98c-13.89 13.89-34.172 25.868-50.903 37.020-22.675 15.116-47.27 23.855-76.355 33.55-28.804 9.601-50.379 12.725-91.394 12.725-101.046 0-161.74-35.676-217.494-82.139-45.261-37.717-73.925-89.887-94.865-152.709-10.181-30.542-11.569-48.178-11.569-90.237 0-49.184 4.782-77.485 19.667-112.218 3.47-8.098 6.942-19.667 10.412-26.608 19.812-39.627 36.489-61.939 69.413-94.865 19.667-19.667 25.452-24.295 27.765-30.079 3.47-6.942 2.314-8.098 2.314-20.824 0-29.2-14.38-40.271-35.863-47.432-3.47-1.157-8.098-1.157-10.412-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["power"],"defaultCode":60173,"grid":0},"properties":{"id":124,"order":125,"ligatures":"","prevSize":24,"code":60173,"name":"power"},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M203.612 136.697c30.016 0 37.796 15.816 48.589 34.707v35.863c0 19.667 1.157 35.863 1.157 35.863 16.792-18.471 41.359-42.372 61.315-59.002 15.725-13.104 29.281-21.064 46.275-32.393 38.295-25.529 89.108-46.859 141.14-55.53 23.070-3.845 39.079-8.098 67.1-8.098h30.079c55.166 0 100.036 12.907 141.14 26.608 53.123 17.708 97.331 48.33 136.512 80.982 58.766 48.972 107.119 117.504 130.728 200.141 6.725 23.536 16.197 52.661 16.197 80.982 0 22.121-22.584 43.962-45.118 43.962-19.901 0-30.521-8.54-40.491-18.51-7.902-7.902-9.398-15.033-11.569-32.393-6.578-52.622-29.103-95.714-53.217-131.885-10.845-16.266-23.494-35.063-37.020-48.589-30.004-30.004-63.81-56.27-105.277-74.040-40.271-17.26-85.535-31.236-142.297-31.236-42.322 0-83.234 6.254-114.532 19.667-32.549 13.95-65.288 28.954-90.237 49.747-6.942 5.785-18.51 13.883-25.452 19.667-15.143 12.618-27.347 30.817-40.491 43.962-4.628 4.628-6.942 9.255-6.942 9.255s19.667 1.157 43.962 1.157c40.591 0 46.302 0.009 63.629 5.785 14.788 4.929 25.452 22.185 25.452 42.805 0 29.14-16.754 40.291-38.177 47.432-3.47 1.157-42.805 1.157-105.277 1.157s-101.806 0-105.277-1.157c-20.13-6.71-28.887-16.127-38.177-34.707l-1.157-106.434c0-102.963 0-105.277 2.314-113.375 2.583-10.333 10.030-16.972 16.197-23.138 7.494-7.494 12.653-9.255 28.922-9.255zM204.769 520.784c-22.624 0-36.039 11.922-43.962 27.765-2.314 5.785-4.628 10.412-4.628 16.197 0 41.295 15.529 80.745 27.765 113.375 28.14 75.040 76.067 130.317 131.885 178.16 16.659 14.278 31.924 26.375 50.903 35.863 14.38 7.19 36.477 20.837 50.903 26.608 49.728 19.89 103.991 34.707 173.532 34.707 84.957 0 140.098-18.567 197.827-47.432 11.569-5.785 26.608-13.883 33.55-18.51l24.295-16.197c29.198-19.465 56.583-47.316 79.825-72.884 0 0 1.157 16.197 1.157 35.863v35.863c10.56 18.48 18.915 34.707 48.589 34.707 16.353 0 21.376-1.709 28.922-9.255 6.156-6.156 13.612-12.801 16.197-23.138 2.314-8.098 2.314-10.412 2.314-113.375l-1.157-106.434c-5.734-11.466-13.056-25.947-25.452-30.079-3.47-1.157-9.255-3.47-12.725-4.628s-42.805-1.157-105.277-1.157-101.806 0-105.277 1.157c-20.837 6.946-38.177 18.678-38.177 47.432 0 16.798 4.381 25.205 12.725 33.55 18.672 18.672 28.523 15.040 76.355 15.040 24.295 0 43.962 1.157 43.962 1.157-5.645 7.525-17.074 21.701-25.452 30.079-5.785 5.785-15.040 17.353-21.98 23.138-24.394 20.329-48.809 36.814-77.512 53.217-32.174 18.386-71.403 26.362-114.532 33.55-6.942 1.157-24.295 1.157-38.177 1.157-70.026 0-120.484-14.677-165.435-41.648-28.571-17.142-51.76-33.248-76.355-57.844-41.939-41.939-69.439-88.010-87.923-152.709-2.314-8.098-6.942-23.138-8.098-32.393-2.168-17.342-3.661-24.484-11.569-32.393-8.841-8.841-19.068-18.51-37.020-18.51z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["refresh"],"defaultCode":60179,"grid":0},"properties":{"id":125,"order":124,"ligatures":"","prevSize":24,"code":60179,"name":"refresh"},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M594.64 67.911c-19.667 0-38.177 1.157-40.491 1.157-29.689 0-60.794 10.426-86.767 16.197-25.737 5.719-53.173 17.842-75.197 30.079-23.103 12.836-43.921 22.719-62.472 38.177-18.522 15.436-35.89 27.411-52.060 46.275-14.758 17.218-29.446 31.444-41.648 49.747-4.628 6.942-11.569 16.197-15.040 20.824-10.255 13.674-19.097 37.036-27.765 54.374-17.641 35.282-33.55 76.821-33.55 126.1 0 23.407 10.655 35.985 26.608 43.962 5.785 2.314 10.412 4.628 16.197 4.628 35.102 0 50.381-20.119 54.374-52.060 8.14-65.119 36.368-116.031 69.413-157.337 4.628-5.785 12.725-16.197 18.51-21.98s16.197-13.883 21.98-19.667c34.994-34.994 86.266-56.136 139.984-74.040 26.196-8.733 59.538-10.412 93.708-10.412 23.613 0 38.031 5.102 59.002 8.098 42.283 6.041 79.042 25.445 109.904 43.962 46.962 28.176 93.087 78.584 118.002 128.414 23.411 46.822 39.334 97.859 39.334 168.905 0 20.695-5.417 39.076-8.098 57.844-4.66 32.621-15.32 52.981-27.765 80.982-23.241 52.291-59.74 86.225-100.649 120.316-6.942 5.785-18.51 13.883-25.452 17.353l-25.452 12.725c-39.2 19.6-81.749 35.863-139.984 35.863-38.734 0-65.496-1.689-96.022-10.412-29.28-8.365-52.707-19.991-77.512-32.393-47.216-23.607-85.043-61.677-114.532-102.963h69.413c47.432 0 71.727 0 76.355-1.157 10.048-3.349 18.319-6.751 25.452-13.883 10.747-10.747 19.788-37.997 8.098-55.53-4.272-6.409-13.28-18.309-20.824-20.824l-13.883-4.628c-4.628-1.157-40.491-1.157-131.885-1.157l-127.257 1.157c-18.232 7.293-29.339 15.132-35.863 34.707-2.314 6.942-2.314 18.51-2.314 136.512l1.157 129.572c7.187 16.769 21.194 35.863 43.962 35.863 25.281 0 42.258-13.402 48.589-32.393 2.314-5.785 3.47-6.942 3.47-63.629v-57.844l9.255 10.412c10.555 13.194 34.242 34.567 47.432 45.118 71.467 57.173 159.641 100.649 289.221 100.649 34.915 0 59.927-5.991 90.237-12.725 47.568-10.571 93.875-30.032 129.572-55.53 35.82-25.585 74.336-52.839 100.649-87.923 21.693-28.923 47.273-60.891 61.315-98.335 7.756-20.684 16.989-39.794 23.138-61.315 11.794-41.276 15.040-60.077 15.040-118.002 0-79.415-12.466-121.255-35.863-175.847-3.47-8.098-8.098-19.667-11.569-25.452-20.308-33.847-39.69-66.298-67.1-93.708-6.942-6.942-16.197-18.51-23.138-24.295-33.046-27.54-72.955-58.040-115.689-76.355-51.241-21.96-99.103-38.177-173.532-38.177z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["rotate-clockwise"],"defaultCode":60181,"grid":0},"properties":{"id":126,"order":123,"ligatures":"","prevSize":24,"code":60181,"name":"rotate-clockwise"},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M490.52 38.362c68.15 0 124.26 14.698 171.219 38.177 49.723 24.861 90.704 56.090 124.944 97.179 21.59 25.908 39.64 50.144 54.374 83.295 9.463 21.293 14.771 33.899 21.98 55.53 8.068 24.205 10.442 53.397 15.040 80.982 1.157 6.942 1.157 19.667 1.157 30.079 0 86.72-26.437 151.654-59.002 205.926-3.47 5.785-10.412 13.883-13.883 19.667l-6.942 11.569 131.885 131.885c115.689 116.845 131.885 134.199 135.355 139.984 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-23.138-19.667-139.984-135.355l-131.885-131.885c-49.19 30.743-100.635 65.074-172.376 74.040-22.066 2.758-38.764 5.785-64.785 5.785-66.732 0-120.348-15.634-165.435-38.177-49.358-24.68-90.013-53.179-123.787-93.708-5.785-6.942-15.040-17.353-20.824-24.295-38.135-45.763-61.33-111.163-71.727-183.945-1.157-8.098-3.47-23.138-3.47-32.393 0-32.639 3.552-64.127 8.098-91.394 1.157-6.942 5.785-19.667 8.098-28.922 24.362-97.444 85.535-163.893 157.337-215.181 8.098-5.785 19.667-12.725 26.608-16.197l25.452-12.725c30.885-15.443 67.116-23.526 106.434-30.079 6.942-1.157 18.51-3.47 25.452-3.47s18.51-1.157 25.452-1.157zM498.618 136.697h-30.079c-22.55 0-50.952 8.885-69.413 15.040-29.279 9.76-53.924 24.766-77.512 40.491-15.389 10.258-30.477 24.213-41.648 38.177-40.229 50.287-74.040 101.641-74.040 193.2 0 109.229 44.951 176.406 106.434 225.592 12.443 9.954 27.763 20.822 41.648 27.765l20.824 10.412c33.618 16.809 68.954 25.452 118.002 25.452 55.697 0 100.819-12.132 136.512-33.55 5.785-3.47 16.197-8.098 24.295-13.883 40.348-28.82 69.848-62.81 96.022-106.434 17.337-28.895 24.757-64.092 31.236-102.963 1.157-6.942 1.157-20.824 1.157-32.393 0-38.056-6.635-61.983-15.040-91.394-2.314-8.098-6.942-19.667-10.412-26.608l-10.412-20.824c-10.658-21.316-26.658-42.855-42.805-59.002-4.628-4.628-13.883-15.040-20.824-20.824-28.833-24.028-62.528-40.746-99.492-55.53-5.785-2.314-16.197-4.628-23.138-5.785s-16.197-4.628-23.138-5.785-21.98-1.157-38.177-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["search"],"defaultCode":60188,"grid":0},"properties":{"id":127,"order":122,"ligatures":"","prevSize":24,"code":60188,"name":"search"},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M588.855 86.952c231.345 0 296.034-4.082 330.869 4.628 32.608 8.151 66.14 22.178 86.767 42.805 26.794 26.794 52.422 59.652 61.315 104.12 5.548 27.742 4.628 39.48 4.628 89.080 0 68.84 0.956 90.64-19.667 131.885-3.47 6.942-8.098 17.353-11.569 21.98-9.297 12.396-13.987 17.196-24.295 30.079l-9.255 9.255 9.255 9.255c21.13 26.412 42.759 54.14 50.903 94.865 5.548 27.742 4.628 39.48 4.628 89.080 0 71.923 0.083 92.383-21.98 136.512-28.339 56.678-77.715 88.658-149.239 102.963-6.942 1.157-107.59 1.157-311.202 1.157-228.947 0-295.059 4.035-329.713-4.628-52.445-13.111-94.451-39.802-119.159-80.982-11.526-19.21-23.911-40.891-28.922-65.942-5.548-27.739-4.628-40.476-4.628-90.237 0-70.107-1.196-89.002 19.667-130.728 3.47-6.942 8.098-17.353 11.569-21.98 9.297-12.396 13.987-17.196 24.295-30.079l9.255-9.255-9.255-9.255c-21.13-26.412-42.759-54.14-50.903-94.865-5.548-27.742-4.628-39.48-4.628-89.080 0-72.448 2.655-87.62 20.824-133.042 5.456-13.639 17.834-31.717 27.765-41.648l17.353-17.353c21.992-21.992 52.893-35.204 87.923-43.962 4.628-1.157 11.569-3.47 16.197-3.47s144.611-1.157 311.202-1.157zM595.796 182.973c-163.121 0-299.634 1.157-304.261 1.157-29.394 0-49.484 18.249-64.785 33.55-6.466 6.466-16.606 27.834-19.667 37.020-2.314 5.785-2.314 15.040-2.314 69.413 0 53.217 1.157 62.472 2.314 70.57 5.576 22.307 12.573 32.961 24.295 48.589 10.664 14.218 30.419 21.776 49.747 26.608 8.098 1.157 39.334 2.314 308.889 2.314s300.791-1.157 308.889-2.314c13.297-3.325 23.722-6.512 33.55-13.883 4.628-3.47 12.725-8.098 16.197-12.725 8.29-11.055 13.364-17.474 19.667-30.079 2.314-4.628 3.47-13.883 4.628-18.51 1.157-8.098 2.314-17.353 2.314-70.57 0-75.337 2.527-56.155-9.255-85.61-12.197-30.492-38.869-45.871-72.884-54.374zM349.379 376.173c-28.054 0-48.589-19.892-48.589-47.432 0-18.186 9.46-29.126 18.51-38.177 7.687-7.687 14.76-10.412 31.236-10.412 27.407 0 45.118 20.319 45.118 48.589 0 28.836-18.376 47.432-46.275 47.432zM588.855 569.373c-262.613 0-301.947 1.157-308.889 2.314-20.802 5.2-31.458 13.183-46.275 24.295-14.739 11.055-21.569 30.741-26.608 50.903-1.157 8.098-2.314 17.353-2.314 70.57 0 75.337-2.527 56.155 9.255 85.61 13.115 32.786 40.795 44.063 75.197 55.53h601.58c7.596-2.531 19.8-5.829 26.608-8.098 27.756-9.252 46.408-36.262 55.53-63.629 2.314-5.785 2.314-15.040 2.314-69.413 0-53.217-1.157-62.472-2.314-70.57-5.576-22.307-12.573-32.961-24.295-48.589-10.664-14.218-30.419-21.776-49.747-26.608-8.098-1.157-40.491-2.314-310.046-2.314zM349.379 665.395c-23.693 0-35.663 12.327-43.962 28.922-3.47 6.942-4.628 8.098-4.628 19.667 0 27.513 18.361 41.9 40.491 47.432 31.143 6.229 54.374-15.516 54.374-47.432 0-16.881-1.52-22.344-9.255-30.079-8.841-8.841-19.068-18.51-37.020-18.51z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["server"],"defaultCode":60191,"grid":0},"properties":{"id":128,"order":121,"ligatures":"","prevSize":24,"code":60191,"name":"server"},"setIdx":0,"setId":0,"iconIdx":118},{"icon":{"paths":["M689.504 265.112c0-11.202-3.47-27.255-3.47-41.648 0-28.697 9.517-54.898 19.667-75.197 31.060-62.118 84.912-108.747 178.16-108.747 45.149 0 75.128 13.837 102.963 32.393 9.255 6.942 17.353 11.569 28.922 23.138 22.787 22.787 33.741 43.86 46.275 75.197 12.892 32.225 13.163 89.722 0 122.63-26.237 65.592-70.958 115.368-149.239 128.414-6.942 1.157-18.51 3.47-25.452 3.47-64.536 0-109.513-22.746-142.297-55.53l-12.725-11.569c-13.662 6.832-56.584 29.297-127.257 65.942l-114.532 57.844v5.785c0 12.407 3.924 31.329 2.314 47.432-1.157 8.098-2.314 17.353-2.314 19.667v5.785l114.532 57.844c71.154 36.895 114.29 58.454 127.257 67.1l10.412-11.569c33.25-33.25 78.303-56.687 144.611-56.687 40.993 0 73.623 16.304 99.492 33.55 9.255 6.942 17.353 11.569 28.922 23.138 22.787 22.787 33.741 43.86 46.275 75.197 12.892 32.225 13.163 89.722 0 122.63-26.237 65.592-70.958 115.368-149.239 128.414-6.942 1.157-18.51 3.47-25.452 3.47-62.317 0-108.389-21.622-139.984-53.217-5.785-5.785-13.883-12.725-17.353-17.353-18.563-24.751-34.242-51.589-40.491-89.080-1.157-6.942-3.47-18.51-3.47-25.452 0-14.395 3.47-30.418 3.47-41.648v-5.785l-111.061-56.687c-72.26-36.812-110.675-58.187-130.728-67.1l-12.725 12.725c-25.968 25.968-58.175 43.823-100.649 50.903-6.942 1.157-18.51 3.47-25.452 3.47-62.317 0-108.389-21.622-139.984-53.217-5.785-5.785-13.883-12.725-17.353-17.353-23.849-31.799-42.805-66.35-42.805-122.63 0-36.593 6.27-58.818 18.51-83.295 13.364-26.729 28.069-48.817 50.903-65.942 33.415-25.060 72.123-43.962 130.728-43.962 40.993 0 73.623 16.304 99.492 33.55 8.098 5.785 18.51 12.725 26.608 20.824l12.725 12.725c20.552-9.135 58.048-30.073 130.728-67.1l111.061-56.687v-5.785zM878.076 135.54c-31.598 0-47.664 12.9-65.942 26.608-16.993 12.745-28.922 41.086-28.922 69.413 0 22.407 6.101 39.757 16.197 53.217 3.47 4.628 8.098 12.725 12.725 16.197 17.653 13.238 35.774 26.608 67.1 26.608 32.102 0 48.561-12.703 67.1-26.608 16.993-12.745 28.922-41.086 28.922-69.413 0-22.407-6.101-39.757-16.197-53.217-3.47-4.628-8.098-12.725-12.725-16.197-18.032-13.524-36.106-26.608-68.257-26.608zM299.634 424.762c-31.598 0-47.664 12.9-65.942 26.608-16.993 12.745-28.922 41.086-28.922 69.413 0 22.407 6.101 39.757 16.197 53.217 3.47 4.628 8.098 12.725 12.725 16.197 17.653 13.238 35.774 26.608 67.1 26.608 32.102 0 48.561-12.703 67.1-26.608 16.993-12.745 28.922-41.086 28.922-69.413 0-22.407-6.101-39.757-16.197-53.217-3.47-4.628-8.098-12.725-12.725-16.197-18.032-13.524-36.106-26.608-68.257-26.608zM878.076 713.983c-31.598 0-47.664 12.9-65.942 26.608-16.993 12.745-28.922 41.086-28.922 69.413 0 22.407 6.101 39.757 16.197 53.217 3.47 4.628 8.098 12.725 12.725 16.197 17.653 13.238 35.774 26.608 67.1 26.608 32.102 0 48.561-12.703 67.1-26.608 16.993-12.745 28.922-41.086 28.922-69.413 0-22.407-6.101-39.757-16.197-53.217-3.47-4.628-8.098-12.725-12.725-16.197-18.032-13.524-36.106-26.608-68.257-26.608z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["share"],"defaultCode":60193,"grid":0},"properties":{"id":130,"order":119,"ligatures":"","prevSize":24,"code":60193,"name":"share"},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M588.855 38.362c28.672 0 50.239 26.633 68.257 41.648 6.942 5.785 19.667 12.725 26.608 17.353 25.872 17.249 54.231 33.353 85.61 45.118 9.255 3.47 23.138 10.412 31.236 12.725 54.647 15.613 102.223 27.765 174.69 27.765 41.191 0 36.208-1.313 52.060 9.255 18.604 12.402 26.047 44.66 30.079 72.884 3.088 21.615 8.945 44.645 11.569 68.257 1.157 15.040 1.157 27.765 1.157 60.158 0 139.002-36.076 232.905-86.767 321.614-17.49 30.607-37.52 56.885-60.158 83.295-6.942 8.098-18.51 23.138-27.765 32.393-28.358 28.358-54.518 51.006-86.767 74.040-47.895 34.21-103.894 65.643-166.592 84.452-18.218 5.465-35.451 13.883-52.060 13.883-16.471 0-33.931-8.444-52.060-13.883-35.789-10.735-69.038-25.402-99.492-42.805-64.212-36.692-121.8-78.086-168.905-133.042-6.942-8.098-18.51-20.824-24.295-28.922s-16.197-18.51-20.824-25.452c-64.535-96.803-114.532-203.586-114.532-365.576 0-73.054 6.93-108.697 20.824-164.277 5.545-20.332 8.126-24.323 18.51-34.707 10.798-10.798 22.411-10.412 43.962-10.412 53.595 0 107-5.284 149.239-17.353 79.208-22.632 149.492-60.21 204.769-107.59 15.218-13.043 21.422-20.824 41.648-20.824zM975.254 408.566c0-44.892-5.451-92.042-12.725-128.414h-8.098c-42.693 0-85.679-10.232-121.473-16.197-50.828-8.47-91.507-28.026-134.199-47.432-36.569-16.622-69.054-35.577-98.335-59.002l-10.412-8.098-10.412 8.098c-79.563 63.651-182.562 103.368-308.889 119.159-9.255 1.157-24.295 3.47-34.707 3.47h-18.51c-6.749 33.742-11.569 68.506-11.569 113.375 0 98.659 22.137 170.373 55.53 237.162l12.725 25.452c2.314 4.628 8.098 13.883 12.725 20.824l16.197 24.295c12.039 18.059 25.966 36.379 41.648 52.060l23.138 23.138c22.934 22.934 50.926 43.977 78.668 62.472 38.601 25.734 82.467 45.228 130.728 61.315l12.725 4.628 16.197-5.785c51.626-12.907 94.107-38.058 134.199-64.785 104.47-69.647 177.653-168.868 216.337-304.261 8.253-28.885 11.503-57.387 16.197-90.237 1.157-8.098 2.314-23.138 2.314-31.236zM733.465 376.173c-10.030 0-15.406 2.496-21.98 5.785-3.47 2.314-28.922 26.608-86.767 84.452l-83.295 82.139-32.393-33.55c-27.765-27.765-35.863-33.55-41.648-37.020-10.347-6.899-33.142-7.212-43.962 0-15.121 10.080-38.581 38.15-20.824 64.785 3.47 5.785 11.569 15.040 56.687 60.158 31.236 31.236 54.374 53.217 57.844 55.53 8.128 4.064 13.766 6.942 27.765 6.942 5.785 0 11.569-2.314 16.197-4.628 12.18-6.091 209.308-202.309 216.337-214.024 21.53-32.295-11.58-70.57-43.962-70.57z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["shield-check"],"defaultCode":60194,"grid":0},"properties":{"id":131,"order":118,"ligatures":"","prevSize":24,"code":60194,"name":"shield-check"},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M251.044 38.362c79.566 0 98.335 0 98.335 72.884v26.608h2.314c0.409 0 630.925 45.645 632.817 46.275 18.285 6.096 39.334 19.625 39.334 43.962 0 8.098-3.47 38.177-24.295 181.631l-25.452 172.376c-8.544 19.936-19.126 27.585-40.491 34.707-4.628 1.157-128.414 1.157-296.163 1.157h-288.064v94.865h248.731c226.749 0 249.887 0 257.986 2.314l18.51 4.628c23.919 5.98 46.024 24.043 61.315 39.334 23.376 23.376 39.334 54.075 39.334 99.492 0 54.103-26.184 91.944-57.844 115.689-23.233 17.425-45.923 27.765-86.767 27.765-71.344 0-109.143-40.126-133.042-87.923-10.748-21.497-14.082-61.677-6.942-90.237 1.157-4.628 2.314-10.412 2.314-11.569l1.157-2.314h-256.829l3.47 12.725c2.314 10.412 4.628 17.353 4.628 30.079 0 80.070-42.724 120.283-100.649 143.454-14.537 5.815-23.828 5.785-43.962 5.785-21.167 0-32.68-1.041-47.432-6.942-44.157-17.663-72.307-47.724-90.237-92.55-5.712-14.278-6.942-29.267-6.942-49.747 0-19.32 4.71-28.096 8.098-41.648 5.491-21.966 19.884-43.904 35.863-56.687 12.865-10.292 24.563-21.394 40.491-27.765l11.569-4.628v-586.541h-26.608c-19.667 0-27.765-1.157-33.55-2.314-19.867-6.623-34.707-19.221-34.707-46.275 0-27.8 13.895-39.337 34.707-46.275 4.628-1.157 16.197-2.314 59.002-2.314zM354.007 235.033h-4.628v285.751h535.638l17.353-120.316c9.255-65.942 17.353-120.316 17.353-121.473v-3.47l-281.124-19.667c-155.022-10.412-282.281-20.824-284.594-20.824zM300.791 904.87c29.443 0 46.275-17.899 46.275-47.432 0-27.989-16.047-39.284-37.020-46.275-3.47-1.157-8.098-1.157-10.412-1.157-26.374 0-45.118 20.242-45.118 47.432 0 29.554 16.853 47.432 46.275 47.432zM829.487 810.005c-10.8 0-28.654 7.696-33.55 15.040-4.843 7.265-12.725 18.545-12.725 30.079 0 31.602 19.366 50.903 50.903 50.903 17.15 0 33.418-13.616 39.334-25.452 15.961-23.94-2.496-58.677-20.824-64.785-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart"],"defaultCode":60197,"grid":0},"properties":{"id":132,"order":117,"ligatures":"","prevSize":24,"code":60197,"name":"shopping-cart"},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M591.168 12.284c13.714 0 25.032 6.522 32.393 13.883 9.215 9.215 44.996 84.85 146.924 290.379 45.805 7.158 177.772 26.718 233.691 34.707 40.491 5.785 76.355 11.569 80.982 12.725 19.263 4.816 33.55 21.838 33.55 46.275 0 12.92-3.179 17.928-6.942 25.452-1.157 2.314-46.275 46.275-98.335 97.179s-102.963 101.806-113.375 111.061l-18.51 18.51 26.608 152.709c23.138 135.355 26.608 152.709 26.608 161.964 0 36.172-35.439 53.744-68.257 42.805-3.47-1.157-67.1-35.863-141.14-75.197l-135.355-70.57-71.727 38.177c-39.334 20.824-102.963 53.217-139.984 72.884-57.844 30.079-69.413 37.020-76.355 38.177-22.892 4.578-46.368-8.376-52.060-25.452-2.437-7.315-5.785-11.967-5.785-20.824 0-2.314 11.569-75.197 26.608-160.807l26.608-155.022-23.138-21.98c-12.725-12.725-63.629-62.472-112.218-109.904s-90.237-87.923-92.55-91.394c-4.84-7.257-9.255-17.253-9.255-28.922 0-24.659 14.654-35.672 31.236-43.962 14.34-4.781 220.455-34.288 316.987-48.589l63.629-127.257c34.707-69.413 65.942-133.042 69.413-141.14 9.804-22.056 20.278-35.863 49.747-35.863zM590.012 169.621l-30.079 60.158c-22.317 44.634-63.061 135.756-84.452 164.277-19.008 19.008-29.287 15.529-84.452 23.138-33.55 4.628-86.767 12.725-118.002 17.353s-56.687 9.255-57.844 9.255c-2.048 2.048 142.796 141.64 149.239 148.082 30.374 30.374 25.706 19.534 32.393 46.275 1.465 10.257-2.954 26.163-39.334 248.731 34.695-17.348 205.924-109.133 218.652-113.375 4.628-1.157 8.098-2.314 16.197-2.314 9.255 0 10.412 1.157 24.295 8.098 5.294 2.267 200.552 104.742 205.926 107.59-0.458-2.638-40.491-231.301-40.491-242.946 0-10.934 3.424-18.443 8.098-25.452 2.894-4.34 1.357-1.357 174.69-174.69-40.178-6.697-181.756-27.288-225.592-33.55-18.399-1.84-27.839-5.496-35.863-16.197-4.628-5.785-9.255-12.725-19.667-34.707-7.504-16.26-85.758-173.602-93.708-189.729z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["star"],"defaultCode":60206,"grid":0},"properties":{"id":133,"order":116,"ligatures":"","prevSize":24,"code":60206,"name":"star"},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M439.616 65.598c112.493 0 99.657-3.43 136.512 5.785 11.891 2.973 32.582 12.867 41.648 19.667 17.222 11.481 419.787 418.366 426.891 426.891 14.476 24.127 26.608 43.51 26.608 83.295 0 39.193-10.442 64.826-27.765 87.923-5.958 7.943-251.172 256.143-266.084 266.084-22.752 17.066-47.242 25.452-85.61 25.452-40.277 0-58.001-11.43-83.295-26.608-24.163-20.135-411.197-404.505-426.891-428.048-11.644-15.525-19.916-37.11-24.295-59.002-1.157-8.098-1.157-28.922-1.157-115.689 0-114.777-3.262-97.066 5.785-142.297 10.895-54.471 52.371-94.355 93.708-119.159 11.773-7.064 30.778-15.641 45.118-18.51 40.169-8.034 32.003-5.785 138.827-5.785zM446.558 161.619c-54.374 0-102.963 1.157-107.59 1.157-29.274 0-49.566 19.488-64.785 34.707-8.483 8.483-15.176 24.842-18.51 38.177-2.314 9.255-3.47 9.255-3.47 107.59 0 86.556-2.706 97.16 5.785 122.63 4.328 10.821 400.017 408.102 414.165 414.165 6.942 3.47 9.255 4.628 17.353 4.628 14.553 0 20.507-2.733 28.922-6.942 10.867-7.244 242.902-238.252 247.574-245.26 6.62-8.827 9.255-18.8 9.255-32.393 0-6.942-1.157-11.569-3.47-17.353-10.368-20.736-373.471-375.784-409.538-411.851-2.314-2.314-8.098-4.628-11.569-5.785-6.942-2.314-5.785-3.47-104.12-3.47zM423.42 234.503c-10.412 0-17.353 0-21.98 1.157l-13.883 4.628c-34.442 11.481-62.472 44.677-62.472 90.237 0 50.314 32.659 81.070 70.57 93.708 3.47 1.157 10.412 2.314 16.197 2.314 21.188 4.238 41.296-4.451 55.53-11.569 20.224-10.111 39.133-30.431 45.118-54.374 1.157-4.628 4.628-13.883 4.628-19.667v-19.667c0-24.449-13.453-43.533-26.608-56.687-16.647-16.647-34.42-30.079-67.1-30.079z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["tag"],"defaultCode":60212,"grid":0},"properties":{"id":134,"order":115,"ligatures":"","prevSize":24,"code":60212,"name":"tag"},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M251.044 86.952c75.599 0 80.716-2.342 116.845 27.765l10.412 10.412c20.916-15.686 46.802-29.397 78.668-34.707l12.725-2.314h386.4c60.341 15.086 93.263 55.356 112.218 112.218 3.47 9.255 11.569 49.747 30.079 139.984l25.452 127.257v13.883c0 17.856-6.24 40.998-13.883 54.374-14.156 28.313-36.897 53.862-67.1 65.942-40.264 16.106-26.396 16.197-102.963 16.197h-56.687v105.277c0 127.082 1.206 93.506-9.255 135.355-3.355 13.419-14.076 26.929-20.824 38.177-7.824 13.040-21.911 23.664-33.55 32.393-22.742 17.057-47.591 25.452-86.767 25.452-26.493 0-43.895-5.744-61.315-16.197-26.693-16.016-50.167-34.026-62.472-64.785-13.977-34.941-14.078-32.073-16.197-91.394-1.622-53.529-1.39-43.742-8.098-70.57-11.222-44.89-56.873-79.004-101.806-90.237-26.276-6.568-175.023-0.372-201.299-6.942-39.944-7.988-63.218-38.844-72.884-77.512v-367.889c8.988-35.95 25.482-54.008 52.060-71.727 8.102-5.4 13.952-5.513 24.295-8.098 5.785-1.157 20.824-2.314 65.942-2.314zM837.585 184.13h-183.945c-167.749 1.157-179.317 0-186.259 2.314-31.539 10.512-60.087 35.506-67.1 70.57-2.314 9.255-2.314 12.725-2.314 138.827v129.572c101.465 25.366 168.607 92.219 189.729 197.827 1.157 8.098 1.157 23.138 2.314 54.374 0 43.179-0.701 50.202 15.040 65.942 8.34 8.34 15.38 12.725 32.393 12.725 29.122 0 38.671-14.264 47.432-34.707l1.157-131.885c0-130.728 1.157-131.885 3.47-137.669 5.243-15.731 18.999-23.199 32.393-31.236h83.295c67.964 0 81.689-0.622 97.179-5.785 8.964-2.988 24.295-22.503 24.295-33.55 0-18.348-49.306-250.442-49.747-252.201-2.706-10.822-11.25-25.133-18.51-32.393-6.916-6.916-9.461-12.725-20.824-12.725zM252.201 184.13h-47.432v336.654h96.022v-336.654h-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["thumb-down"],"defaultCode":60219,"grid":0},"properties":{"id":135,"order":114,"ligatures":"","prevSize":24,"code":60219,"name":"thumb-down"},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M637.445 86.952c56.248 0 91.428 26.072 116.845 57.844 12.525 15.657 21.198 35.42 25.452 56.687 2.314 10.412 3.47 15.040 3.47 116.845v105.277h56.687c68.396 0 53.462-0.228 86.767 8.098 29.642 7.41 53.004 30.18 69.413 52.060 13.285 17.712 27.765 47.17 27.765 76.355v13.883l-25.452 127.257c-24.95 121.635-20.557 120.076-40.491 166.592-14.728 34.367-44.772 70.195-83.295 79.825-38.757 9.688-19.191 6.942-216.337 6.942l-190.886-1.157-11.569-2.314c-29.645-4.94-56.937-19.275-77.512-34.707l-9.255 9.255c-13.977 13.977-29.278 20.941-49.747 27.765h-65.942c-79.192 0-60.528 6.178-89.080-8.098-25.067-12.533-46.921-32.149-53.217-63.629l-2.314-9.255v-367.889c8.128-32.515 23.901-57.685 53.217-69.413 5.785-2.314 13.883-6.942 19.667-8.098 26.276-6.568 175.023-0.372 201.299-6.942 43.754-10.939 76.295-38.058 94.865-75.197 15.467-30.933 13.272-27.254 15.040-85.61 1.157-32.393 1.157-46.275 2.314-53.217 8.694-43.465 35.366-81.89 70.57-99.492 13.646-6.824 32.944-18.51 52.060-18.51 3.47 0 12.725-1.157 19.667-1.157zM639.758 184.13c-29.286 0-37.738 14.158-47.432 33.55-1.157 2.314-2.314 23.138-2.314 46.275-1.157 31.236-1.157 46.275-2.314 54.374-5.108 25.539-13.604 49.187-24.295 70.57-12.104 24.208-27.020 40.427-42.805 60.158-11.848 14.81-24.495 20.521-39.334 32.393-20.864 16.691-55.279 27.702-83.295 34.707v129.572c0 126.1 0 129.572 2.314 138.827 6.952 34.756 35.853 63.626 70.57 70.57 9.255 2.314 13.883 2.314 190.886 2.314h180.474c15.176-6.070 30.389-27.846 34.707-45.118 0.439-1.76 49.747-233.853 49.747-252.201 0-8.772-8.424-18.836-13.883-24.295-3.47-3.47-6.942-8.098-10.412-9.255-15.969-5.321-28.811-5.785-97.179-5.785h-83.295c-13.457-8.075-27.076-15.291-32.393-31.236-2.314-5.785-3.47-6.942-3.47-137.669l-1.157-131.885c-7.666-17.89-19.986-35.863-45.118-35.863zM252.201 520.784h-47.432v336.654h96.022v-336.654h-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["thumb-up"],"defaultCode":60220,"grid":0},"properties":{"id":136,"order":113,"ligatures":"","prevSize":24,"code":60220,"name":"thumb-up"},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M156.18 276.681c0-23.855 19.826-35.954 35.863-45.118h39.334l-56.687-57.844c-48.589-48.589-57.844-59.002-61.315-64.785-6.899-10.347-7.212-33.142 0-43.962 8.972-13.458 20.402-26.608 41.648-26.608 8.61 0 16.437 3.551 23.138 5.785 9.322 3.73 880.966 875.951 888.489 888.489 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-15.040-10.412-47.432-42.805l-39.334-39.334c-5.095 25.475-32.43 49.385-52.060 62.472-19.997 13.331-37.523 18.842-64.785 24.295-6.942 1.157-80.982 1.157-208.239 1.157-154.811 0-192.538 2.91-230.22-4.628-34.896-6.98-64.67-33.954-82.139-60.158-8.927-13.39-17.596-26.671-20.824-42.805-8.119-40.595-12.701-126.715-26.608-301.947-11.569-145.767-21.98-263.77-21.98-264.927s-2.314-1.157-5.785-1.157c-28.073 0-46.275-22.305-46.275-50.903zM1023.844 276.681c0 28.604-18.2 50.903-46.275 50.903-3.47 0-5.785 0-5.785 1.157 0 0.589-24.843 307.611-26.608 314.673-3.078 12.314-7.124 18.693-15.040 26.608-3.47 3.47-8.098 8.098-11.569 9.255-13.503 4.5-27.519 4.71-41.648 0-13.015-4.338-23.051-21.634-26.608-35.863-2.305-13.833 24.295-296.602 24.295-313.516 0-2.314-11.569-2.314-171.219-2.314-168.905 0-171.219 0-177.004-2.314-14.862-4.954-20.872-14.534-28.922-26.608-2.314-5.785-3.47-8.098-3.47-16.197 0-25.931 12.752-43.39 33.55-48.589 6.942-2.314 10.412-2.314 83.295-2.314h75.197v-96.022h-192.044v25.452c0 39.126-4.219 53.59-28.922 65.942-6.942 3.47-8.098 4.628-19.667 4.628-28.691 0-40.369-18.146-47.432-39.334-1.157-4.628-1.157-18.51-1.157-39.334 0-25.452 1.157-33.55 2.314-39.334 12.433-37.299 32.803-61.707 72.884-71.727 4.628-1.157 10.412-2.314 11.569-2.314s52.060-1.157 111.061-1.157c98.335 0 107.59 0 113.375 2.314 35.505 11.835 62.205 32.478 71.727 70.57 2.314 8.098 3.47 12.725 3.47 64.785v55.53h204.769c16.038 9.165 35.863 21.268 35.863 45.118zM316.987 327.584c-10.412 0-11.569 0-11.569 2.314 0 5.331 42.811 534.5 46.275 544.893 6.148 12.298 16.17 25.156 31.236 28.922 6.942 2.314 11.569 2.314 207.082 2.314 196.671 0 200.141 0 207.082-2.314 23.214-5.804 32.146-23.899 34.707-52.060l1.157-18.51c-33.156-34.154-64.828-66.193-96.786-97.946l-0.392-0.39-2.314 39.334c-7.187 16.769-21.194 35.863-43.962 35.863-26.306 0-41.842-13.308-48.589-33.55-1.157-4.628-2.314-16.197-2.314-71.727v-67.1c-33.752-32.747-65.414-64.043-96.787-95.626l-0.392-0.395v114.532c0 98.335-1.157 115.689-2.314 120.316-6.657 19.971-22.349 33.55-48.589 33.55-23.462 0-36.72-18.965-43.962-35.863l-1.157-153.866c0-167.296-2.392-145.492 4.628-170.062-40.385-40.172-79.975-80.128-119.273-120.37l-2.199-2.26h-11.569z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["trash-off"],"defaultCode":60773,"grid":0},"properties":{"id":196,"order":66,"ligatures":"","prevSize":24,"code":60773,"name":"trash-off"},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M208.239 328.741c-29.576-3.697-52.060-17.13-52.060-49.747 0-24.104 15.241-39.016 33.55-45.118 6.942-2.314 8.098-2.314 106.434-2.314h100.649v-50.903c0-41.648 1.157-54.374 2.314-62.472 8.688-43.438 36.058-68.305 77.512-78.668 5.785-1.157 32.393-1.157 112.218-1.157 89.080 0 105.277 1.157 114.532 2.314 42.301 8.46 64.716 34.5 77.512 72.884 1.157 5.785 2.314 16.197 2.314 62.472v55.53h100.649c98.335 0 99.492 0 106.434 2.314 18.252 6.084 33.55 21.252 33.55 45.118 0 32.877-22.078 45.998-52.060 49.747-36.427 420.944-40.695 517.192-45.118 543.736-2.768 16.603-4.374 29.574-10.412 41.648-18.078 36.155-46.439 73.147-91.394 82.139-5.785 1.157-13.883 3.47-18.51 4.628-5.785 1.157-52.060 1.157-216.337 1.157s-210.554 0-216.337-1.157c-39.407-9.852-66.045-23.555-87.923-50.903-4.628-5.785-10.412-13.883-13.883-18.51-11.367-15.155-14.855-37.070-18.51-59.002-2.182-13.090-45.031-542.633-45.118-543.736zM686.033 135.54h-192.044v96.022h192.044v-96.022zM590.012 328.741c-226.749 0-284.594 0-284.594 1.157 0 15.763 42.687 534.188 47.432 546.050 4.251 12.753 16.341 24.331 30.079 27.765 6.942 2.314 10.412 2.314 207.082 2.314s200.141 0 207.082-2.314c13.276-3.32 26.030-15.618 30.079-27.765 4.746-11.863 47.432-530.287 47.432-546.050 0-1.157-57.844-1.157-284.594-1.157zM497.461 424.762c26.178 0 38.54 21.118 43.962 42.805 1.157 4.628 1.157 65.942 1.157 155.022 0 136.512 0 148.082-2.314 153.866-6.175 18.527-23.33 33.55-47.432 33.55s-39.016-15.241-45.118-33.55c-2.314-6.942-2.314-8.098-2.314-158.494 0-149.239 0-152.709 2.314-159.65 3.88-15.518 21.030-33.55 39.334-33.55h10.412zM689.504 424.762h-10.412c-13.941 0-30.873 15.471-35.863 25.452-2.314 5.785-3.47 12.725-4.628 17.353s-1.157 63.629-1.157 155.022c0 136.512 0 148.082 2.314 153.866 6.175 18.527 23.33 33.55 47.432 33.55 24.104 0 39.016-15.241 45.118-33.55 2.314-6.942 2.314-8.098 2.314-158.494 0-146.924 0-152.709-2.314-159.65-5.984-17.95-19.607-33.55-42.805-33.55z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["trash"],"defaultCode":60225,"grid":0},"properties":{"id":138,"order":111,"ligatures":"","prevSize":24,"code":60225,"name":"trash"},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M400.283 39.52c21.629 0 38.428 16.039 42.805 33.55 2.314 6.942 2.314 10.412 2.314 64.785l-1.157 57.844c-7.187 16.769-21.194 35.863-43.962 35.863-31.151 0-38.348-15.875-50.903-34.707v-122.63c5.802-11.601 13.49-24.098 25.452-30.079 8.351-5.568 13.766-4.628 25.452-4.628zM814.447 85.795c61.491 0 102.551 26.279 137.669 54.374 5.785 4.628 13.883 13.883 18.51 19.667 25.483 31.854 54.374 73.416 54.374 129.572 1.157 8.098 1.157 20.824 0 28.922 0 52.772-26.581 95.697-50.903 126.1-4.628 5.785-55.53 57.844-113.375 115.689-82.139 82.139-107.59 105.277-116.845 112.218-20.714 13.809-42.659 30.282-70.57 35.863-14.812 2.962-32.306 8.098-49.747 8.098-41.481 0-76.663-7.674-105.277-21.98-15.56-7.78-28.957-18.248-41.648-27.765-13.4-10.051-31.236-24.45-31.236-46.275 0-19.901 8.54-30.521 18.51-40.491 7.15-7.15 13.561-10.412 28.922-10.412 26.225 0 37.002 18.113 53.217 28.922 18.117 12.078 38.429 20.824 68.257 20.824 22.164 0 38.567-7.456 54.374-12.725 3.47-1.157 9.255-4.628 13.883-8.098 18.903-11.343 219.34-218.183 219.809-218.652 16.28-16.28 26.608-45.998 26.608-76.355 0-46.918-24.457-82.699-54.374-100.649-18.511-11.106-37.845-20.824-67.1-20.824-49.943 0-71.231 20.328-98.335 47.432-18.809 16.929-18.866 19.785-35.863 25.452-3.47 1.157-8.098 1.157-11.569 1.157-21.356 0-28.702-11.349-39.334-21.98-5.905-5.905-8.098-16.897-8.098-28.922 0-8.098 1.157-10.412 4.628-17.353 11.682-23.365 48.642-51.408 68.257-67.1 12.944-10.354 36.201-18.623 53.217-24.295 14.646-4.882 31.751-10.412 49.747-10.412h24.295zM266.084 280.152c18.148 10.889 34.707 21.741 34.707 50.903 0 24.109-19.727 36.551-37.020 43.962l-55.53 1.157c-49.747 0-57.844-1.157-64.785-2.314-19.866-6.622-29.414-17.004-34.707-38.177-5.155-25.778 12.402-46.938 31.236-53.217 5.785-2.314 10.412-2.314 65.942-2.314h60.158zM564.56 325.27c69.713 0 119.666 29.43 155.022 64.785 6.69 8.92 15.040 16.758 15.040 31.236 0 19.901-8.54 30.521-18.51 40.491-7.15 7.15-13.561 10.412-28.922 10.412-26.225 0-37.002-18.113-53.217-28.922-18.117-12.078-38.429-20.824-68.257-20.824-26.311 0-43.844 7.462-61.315 16.197-4.628 2.314-10.412 8.098-15.040 11.569s-53.217 52.060-108.747 107.59c-61.315 62.472-102.963 104.12-106.434 108.747-13.297 17.729-23.138 41.709-23.138 71.727 0 54.568 31.49 90.364 68.257 108.747 14.825 7.412 30.845 12.725 53.217 12.725 49.603 0 71.406-20.502 98.335-47.432 18.809-16.929 18.866-19.785 35.863-25.452 3.47-1.157 8.098-1.157 11.569-1.157 21.356 0 28.702 11.349 39.334 21.98 5.905 5.905 8.098 16.897 8.098 28.922 0 8.098-1.157 10.412-4.628 17.353-15.383 30.765-60.314 64.863-90.237 79.825-26.225 13.112-49.329 17.129-83.295 21.98-8.098 1.157-19.667 1.157-28.922 0-41.029 0-76.985-17.269-104.12-33.55-5.785-3.47-12.725-10.412-17.353-13.883-37.761-28.321-69.282-72.092-78.668-128.414-2.717-16.295-5.877-37.437-3.47-56.687 0-24.787 8.96-43.939 13.883-63.629 3.062-12.251 15.563-30.952 21.98-41.648 3.47-5.785 10.412-15.040 15.040-20.824s55.53-57.844 113.375-115.689c64.785-64.785 108.747-106.434 114.532-111.061 25.46-15.276 50.386-33.464 85.61-39.334 6.942-1.157 18.51-4.628 24.295-4.628s15.040-1.157 20.824-1.157zM913.94 761.416c-18.148-10.889-34.707-21.741-34.707-50.903 0-19.431 13.572-31.416 25.452-39.334 13.6-9.067 26.866-5.785 70.57-5.785 50.903 0 55.53 0 62.472 2.314 13.057 4.352 25.738 12.429 30.079 25.452 4.103 12.309 6.538 31.261-1.157 42.805-5.915 11.832-18.505 19.665-30.079 25.452h-122.63zM783.212 810.005c-27.846 0-38.748 16.755-47.432 37.020l-1.157 56.687c0 47.432 0 57.844 1.157 63.629 3.069 9.209 9.033 17.131 15.040 23.138 9.916 9.916 37.056 18.487 54.374 6.942 11.832-5.915 19.665-18.505 25.452-30.079v-122.63c-10.066-16.776-20.579-34.707-47.432-34.707z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["unlink"],"defaultCode":60230,"grid":0},"properties":{"id":139,"order":110,"ligatures":"","prevSize":24,"code":60230,"name":"unlink"},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M740.407 6.596c-31.817 0-52.46 1.29-76.355 9.255-24.966 8.321-49.96 16.83-69.413 32.393-5.785 4.628-17.353 11.569-23.138 17.353s-85.61 84.452-177.004 175.847-168.905 170.062-173.532 174.69-11.569 13.883-16.197 20.824l-16.197 24.295c-15.213 22.818-25.075 44.769-32.393 74.040-9.731 38.923-16.197 55.698-16.197 108.747 0 88.794 23.634 144.776 59.002 197.827 25.472 38.206 58.498 69.219 96.022 96.022 52.502 37.502 119.648 61.315 209.396 61.315 33.125 0 54.244-5.086 80.982-12.725 54.177-15.479 98.749-39.101 136.512-70.57 15.97-13.308 342.694-340.183 345.909-348.223 11.341-34.024-7.397-68.257-43.962-68.257-8.472 0-18.533 4.061-24.295 6.942-11.931 7.955-316.086 317.757-350.536 343.596-41.55 27.699-85.872 52.060-156.18 52.060-46.755 0-79.704-11.021-113.375-25.452-8.098-3.47-19.667-12.725-27.765-17.353-33.363-19.065-59.296-48.696-78.668-80.982-22.785-37.976-42.149-90.016-37.020-151.552 7.635-61.077 27.675-107.085 56.687-145.767 3.47-4.628 79.825-82.139 168.905-171.219s166.592-166.592 172.376-171.219c28.243-22.594 56.885-35.863 106.434-35.863 37.431 0 60.043 13.119 84.452 27.765 5.785 3.47 13.883 12.725 19.667 18.51 17.337 17.337 25.746 34.138 37.020 56.687 7.406 14.815 8.098 29.304 8.098 53.217 0 42.219-9.446 60.090-25.452 86.767-12.332 19.729-335.601 339.809-341.281 343.596-8.21 5.472-16.063 8.098-28.922 8.098-38.398 0-67.809-39.070-48.589-77.512 9.842-19.682 327.869-327.999 333.183-341.281 11.341-34.024-7.397-68.257-43.962-68.257-10.069 0-19.75 3.526-26.608 8.098-5.64 3.76-326.72 321.685-338.968 341.281-14.632 24.387-25.452 45.155-25.452 84.452 0 70.726 37.546 107.442 82.139 134.199 18.096 10.858 35.911 16.197 62.472 16.197 35.655 0 57.236-7.793 80.982-19.667 4.628-2.314 11.569-9.255 16.197-12.725s84.452-80.982 175.847-172.376 167.749-170.062 171.219-174.69c29.549-39.398 54.374-87.333 54.374-156.18 0-93.126-41.037-157.457-94.865-197.827-4.628-3.47-13.883-11.569-19.667-15.040-36.199-21.718-74.892-39.334-131.885-39.334z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["paperclip"],"defaultCode":60162,"grid":0},"properties":{"id":118,"order":131,"ligatures":"","prevSize":24,"code":60162,"name":"paperclip"},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M814.447 85.795c61.491 0 102.551 26.279 137.669 54.374 5.785 4.628 13.883 13.883 18.51 19.667 25.483 31.854 54.374 73.416 54.374 129.572 1.157 8.098 1.157 20.824 0 28.922 0 52.974-26.515 95.614-50.903 126.1-4.628 5.785-55.53 57.844-113.375 115.689-82.139 82.139-107.59 105.277-116.845 112.218-20.714 13.809-42.659 30.282-70.57 35.863-14.812 2.962-32.306 8.098-49.747 8.098-41.481 0-76.663-7.674-105.277-21.98-15.56-7.78-28.957-18.248-41.648-27.765-13.4-10.051-31.236-24.45-31.236-46.275 0-19.901 8.54-30.521 18.51-40.491 7.15-7.15 13.561-10.412 28.922-10.412 26.225 0 37.002 18.113 53.217 28.922 18.117 12.078 38.429 20.824 68.257 20.824 31.44 0 52.921-10.6 71.727-23.138 3.47-2.314 53.217-50.903 111.061-108.747 63.629-63.629 105.277-107.59 108.747-112.218 13.129-17.504 23.138-41.604 23.138-71.727 0-27.572-9.53-51.317-20.824-68.257-19.178-28.767-54.035-53.217-100.649-53.217-49.943 0-71.231 20.328-98.335 47.432-18.809 16.929-18.866 19.785-35.863 25.452-3.47 1.157-8.098 1.157-11.569 1.157-21.356 0-28.702-11.349-39.334-21.98-5.905-5.905-8.098-16.897-8.098-28.922 0-8.098 1.157-10.412 4.628-17.353 11.682-23.365 48.642-51.408 68.257-67.1 12.944-10.354 36.201-18.623 53.217-24.295 14.646-4.882 31.751-10.412 49.747-10.412h24.295zM564.56 325.27c-5.785 0-15.040 1.157-20.824 1.157-24.514 0-50.538 12.117-69.413 19.667-15.115 6.046-27.39 16.434-40.491 24.295-5.785 4.628-49.747 46.275-114.532 111.061-57.844 57.844-108.747 109.904-113.375 115.689-22.202 27.754-39.163 59.302-47.432 100.649-1.157 5.785-3.47 17.353-3.47 25.452-5.372 42.978 7.728 78.188 20.824 108.747 13.5 31.501 35.789 57.21 61.315 76.355 24.365 18.274 56.425 37.748 93.708 43.962 52.623 8.771 104.15-0.594 139.984-18.51 28.977-14.489 46.97-30.773 70.57-54.374 13.883-13.883 16.197-18.51 19.667-25.452s4.628-9.255 4.628-17.353c0-29.511-18.494-50.903-47.432-50.903-26.003 0-27.696 8.846-47.432 26.608-26.435 26.435-37.226 37.061-77.512 45.118-5.785 1.157-15.040 2.314-20.824 2.314-54.991 0-90.217-31.197-108.747-68.257-6.866-13.732-12.725-33.017-12.725-53.217 0-30.079 9.836-53.991 23.138-71.727 3.47-4.628 45.118-46.275 106.434-108.747 55.53-55.53 104.12-104.12 108.747-107.59s10.412-9.255 15.040-11.569c17.209-8.605 35.215-16.197 61.315-16.197 37.674 0 64.992 14.090 84.452 33.55 11.823 9.457 17.456 16.197 37.020 16.197 15.447 0 21.724-3.214 28.922-10.412 9.913-9.913 18.51-20.38 18.51-40.491 0-22.334-17.559-36.017-31.236-46.275-35.601-26.701-76.991-49.747-138.827-49.747z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["link"],"defaultCode":60126,"grid":0},"properties":{"id":103,"order":146,"ligatures":"","prevSize":24,"code":60126,"name":"link"},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M592.325 65.598c9.255 0 10.412 1.157 18.51 4.628 19.49 11.137 258.394 251.86 264.927 264.927 3.47 6.942 2.314 9.255 2.314 19.667 0 37.418-33.059 55.308-67.1 43.962-5.785-2.314-15.040-12.725-89.080-85.61l-83.295-82.139v232.534c0 227.633 3.025 222.301-6.942 252.201-2.757 8.268-15.029 16.19-21.98 20.824-5.785 3.47-6.942 3.47-19.667 3.47-28.345 0-39.375-16.32-46.275-37.020-1.157-5.785-2.314-33.55-2.314-239.476v-232.534l-83.295 82.139c-74.040 72.884-83.295 83.295-89.080 85.61-34.412 11.47-67.1-7.491-67.1-43.962 0-10.412-1.157-12.725 2.314-19.667 6.868-13.734 259.39-262.007 260.299-262.613 7.835-3.917 14.491-6.942 27.765-6.942zM205.926 692.629c-25.932 0-42.305 13.044-47.432 33.55-2.314 8.098-2.314 10.412-2.314 70.57 0 73.696 0.277 55.486 8.098 86.767 9.882 39.531 41.968 63.458 71.727 83.295 8.098 5.399 25.968 10.516 37.020 12.725 10.412 2.314 21.98 1.157 316.987 1.157 253.358 0 306.574 0 313.516-1.157 62.211-15.552 102.475-51.265 118.002-113.375 1.157-6.942 2.314-16.197 2.314-69.413 0-60.158 0-62.472-2.314-70.57-5.149-20.598-22.586-33.55-48.589-33.55-25.225 0-35.699 19.38-45.118 35.863v57.844c0 53.217 0 60.158-2.314 64.785-5.289 15.869-18.577 27.015-34.707 32.393h-601.58c-16.481-5.494-28.165-15.080-33.55-31.236-2.314-5.785-2.314-9.255-3.47-65.942v-57.844c-9.537-16.69-20.321-35.863-46.275-35.863z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["upload"],"defaultCode":60231,"grid":0},"properties":{"id":140,"order":109,"ligatures":"","prevSize":24,"code":60231,"name":"upload"},"setIdx":0,"setId":0,"iconIdx":131},{"icon":{"paths":["M451.186 39.52c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 45.097 27.058 79.871 59.091 104.12 107.59 15.708 31.417 24.295 60.759 24.295 106.434 0 31.618-3.628 49.061-11.569 72.884-17.241 51.724-44.706 88.286-83.295 119.159-17.44 13.952-37.908 21.846-59.002 32.393-24.769 12.383-48.254 15.040-86.767 15.040-60.499 0-87.813-14.984-127.257-34.707-15.243-7.621-29.575-21.476-42.805-34.707-40.46-40.46-70.57-91.048-70.57-170.062 0-77.604 30.956-130.448 70.57-170.062 41.931-41.931 91.906-70.57 175.847-70.57zM444.244 135.54c-6.942 0-17.353 1.157-20.824 1.157s-10.412 3.47-16.197 4.628c-34.246 6.849-60.558 30.228-78.668 54.374-17.246 22.994-26.608 44.954-26.608 84.452 0 45.28 13.119 65.695 32.393 91.394 12.019 16.026 27.802 29.168 47.432 37.020 19.446 7.779 35.189 15.040 63.629 15.040 45.259 0 70.122-16.439 96.022-35.863 29.569-22.177 48.589-64.889 48.589-115.689 0-23.283-9.173-39.128-16.197-56.687-6.409-16.022-16.261-28.976-30.079-40.491-6.942-5.785-15.040-13.883-20.824-17.353-21.486-12.893-44.869-21.98-78.668-21.98zM1071.276 327.584c23.476 0 35.598 14.641 45.118 28.922 3.47 5.785 3.47 6.942 3.47 19.667s0 12.725-3.47 19.667c-11.517 19.195-203.638 209.874-216.337 217.494-6.942 3.47-8.098 2.314-20.824 2.314s-13.883 1.157-20.824-2.314c-6.446-2.579-114.588-109.65-119.159-120.316-3.47-6.942-4.628-10.412-4.628-17.353 0-19.901 8.54-30.521 18.51-40.491 7.494-7.494 12.653-9.255 28.922-9.255 11.569 0 12.725 0 20.824 3.47 6.942 3.47 12.725 6.942 42.805 37.020l33.55 33.55 82.139-82.139c69.413-69.413 83.295-82.139 89.080-84.452 3.47-1.157 9.255-4.628 11.569-4.628s6.942-1.157 9.255-1.157zM451.186 616.805c-62.472 0-118.002 1.157-123.787 1.157-35.759 0-66.348 15.243-91.394 27.765-30.721 15.36-57.095 37.564-77.512 64.785-9.955 13.274-19.289 24.568-26.608 41.648-22.704 52.976-24.295 56.019-24.295 143.454 0 43.962 0 62.472 1.157 67.1 7.011 21.031 23.547 45.732 55.53 39.334 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-25.452 1.157-62.472 0-88.419 7.019-120.665 59.002-159.65 16.398-12.298 37.331-20.655 61.315-25.452 9.255-1.157 26.608-2.314 120.316-2.314s111.061 1.157 120.316 2.314c5.785 1.157 15.040 2.314 19.667 3.47 22.66 5.665 42.569 21.745 57.844 37.020 11.751 11.751 22.74 23.878 28.922 39.334 16.512 41.277 13.883 32.83 13.883 105.277 0 37.020 0 57.844 1.157 62.472 6.817 20.448 24.451 44.393 55.53 38.177 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-23.138 1.157-67.1 0-72.814 1.626-61.411-9.255-99.492-7.298-25.538-14.715-49.313-28.922-68.257-36.653-48.869-76.542-81.044-142.297-102.963-6.942-2.314-18.51-4.628-25.452-5.785-10.412-2.314-24.295-2.314-126.1-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["user-check"],"defaultCode":60233,"grid":0},"properties":{"id":141,"order":108,"ligatures":"","prevSize":24,"code":60233,"name":"user-check"},"setIdx":0,"setId":0,"iconIdx":132},{"icon":{"paths":["M451.186 39.52c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 45.366 27.22 79.655 58.662 104.12 107.59 15.708 31.417 24.295 60.759 24.295 106.434 0 63.231-19.937 108.797-48.589 144.611-4.628 5.785-11.569 16.197-17.353 21.98-19.077 19.077-39.736 34.907-64.785 47.432-32.877 16.438-58.682 25.452-109.904 25.452-60.499 0-87.813-14.984-127.257-34.707-15.243-7.621-29.575-21.476-42.805-34.707-42.423-42.423-70.57-93.492-70.57-177.004 0-74.99 32.449-124.999 70.57-163.121 41.787-41.787 91.981-70.57 175.847-70.57zM444.244 135.54c-6.942 0-17.353 1.157-20.824 1.157s-10.412 3.47-16.197 4.628c-34.246 6.849-60.558 30.228-78.668 54.374-11.859 15.81-18.981 34.275-24.295 55.53-1.157 4.628-3.47 15.040-3.47 20.824 0 23.437 3.563 47.615 11.569 63.629 2.314 4.628 4.628 12.725 8.098 17.353 7.597 10.13 18.787 27.105 28.922 34.707 25.066 18.8 51.697 35.863 96.022 35.863 45.259 0 70.122-16.439 96.022-35.863 29.569-22.177 48.589-64.889 48.589-115.689 0-23.283-9.173-39.128-16.197-56.687-6.409-16.022-16.261-28.976-30.079-40.491-6.942-5.785-15.040-13.883-20.824-17.353-21.486-12.893-44.869-21.98-78.668-21.98zM770.486 520.784c-16.038-9.165-35.863-21.268-35.863-45.118 0-25.318 12.657-42.010 32.393-48.589 5.785-2.314 13.883-2.314 161.964-2.314l156.18 1.157c16.239 8.12 34.707 20.219 34.707 43.962 0 25.931-12.752 43.39-33.55 48.589-6.942 2.314-10.412 2.314-161.964 2.314h-153.866zM451.186 616.805c-62.472 0-116.845 1.157-119.159 1.157-22.407 0-53.418 9.336-70.57 16.197-42.937 17.175-76.951 41.674-102.963 76.355-9.955 13.274-19.289 24.568-26.608 41.648-22.704 52.976-24.295 56.019-24.295 143.454 0 43.962 0 62.472 1.157 67.1 7.011 21.031 23.547 45.732 55.53 39.334 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-25.452 1.157-62.472 0-64.441 0.668-55.397 6.942-86.767 10.695-53.476 60.251-87.711 113.375-98.335 9.255-1.157 26.608-2.314 120.316-2.314s111.061 1.157 120.316 2.314c5.785 1.157 15.040 2.314 19.667 3.47 22.66 5.665 42.569 21.745 57.844 37.020 19.551 19.551 33.013 41.816 40.491 71.727 1.157 6.942 1.157 18.51 2.314 71.727 0 52.45 0.798 62.555 5.785 77.512 4.808 14.424 29.678 28.539 50.903 24.295 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-23.138 1.157-67.1 0-72.814 1.626-61.411-9.255-99.492-26.184-91.641-82.575-141.671-171.219-171.219-6.942-2.314-18.51-4.628-25.452-5.785-10.412-2.314-23.138-2.314-126.1-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["user-minus"],"defaultCode":60234,"grid":0},"properties":{"id":142,"order":107,"ligatures":"","prevSize":24,"code":60234,"name":"user-minus"},"setIdx":0,"setId":0,"iconIdx":133},{"icon":{"paths":["M451.186 39.52c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 45.366 27.22 79.655 58.662 104.12 107.59 15.708 31.417 24.295 60.759 24.295 106.434 0 63.231-19.937 108.797-48.589 144.611-4.628 5.785-11.569 16.197-17.353 21.98-19.077 19.077-39.736 34.907-64.785 47.432-32.877 16.438-58.682 25.452-109.904 25.452-60.499 0-87.813-14.984-127.257-34.707-15.243-7.621-29.575-21.476-42.805-34.707-42.423-42.423-70.57-93.492-70.57-177.004 0-74.99 32.449-124.999 70.57-163.121 41.787-41.787 91.981-70.57 175.847-70.57zM444.244 135.54c-6.942 0-17.353 1.157-20.824 1.157s-10.412 3.47-16.197 4.628c-34.246 6.849-60.558 30.228-78.668 54.374-11.859 15.81-18.981 34.275-24.295 55.53-1.157 4.628-3.47 15.040-3.47 20.824 0 23.437 3.563 47.615 11.569 63.629 2.314 4.628 4.628 12.725 8.098 17.353 7.597 10.13 18.787 27.105 28.922 34.707 25.066 18.8 51.697 35.863 96.022 35.863 45.259 0 70.122-16.439 96.022-35.863 29.569-22.177 48.589-64.889 48.589-115.689 0-23.283-9.173-39.128-16.197-56.687-6.409-16.022-16.261-28.976-30.079-40.491-6.942-5.785-15.040-13.883-20.824-17.353-21.486-12.893-44.869-21.98-78.668-21.98zM770.486 520.784c-16.038-9.165-35.863-21.268-35.863-45.118 0-26.306 13.308-41.842 33.55-48.589 4.628-1.157 16.197-2.314 59.002-2.314h52.060v-52.060c0-48.589 0-52.060 2.314-59.002 5.050-20.2 21.882-33.55 47.432-33.55 25.45 0 36.428 17.326 45.118 34.707 0.748 36.274 1.515 72.525 2.314 108.747 36.222 0.798 72.473 1.567 108.747 2.314 16.239 8.12 34.707 20.219 34.707 43.962 0 25.931-12.752 43.39-33.55 48.589-6.942 2.314-10.412 2.314-59.002 2.314h-52.060v52.060c0 42.805-1.157 54.374-2.314 59.002-6.657 19.971-22.349 33.55-48.589 33.55-23.855 0-35.954-19.826-45.118-35.863v-108.747h-108.747zM451.186 616.805c-62.472 0-116.845 1.157-119.159 1.157-22.407 0-53.418 9.336-70.57 16.197-42.937 17.175-76.951 41.674-102.963 76.355-9.955 13.274-19.289 24.568-26.608 41.648-22.704 52.976-24.295 56.019-24.295 143.454 0 43.962 0 62.472 1.157 67.1 7.011 21.031 23.547 45.732 55.53 39.334 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-25.452 1.157-62.472 0-64.441 0.668-55.397 6.942-86.767 10.695-53.476 60.251-87.711 113.375-98.335 9.255-1.157 26.608-2.314 120.316-2.314s111.061 1.157 120.316 2.314c5.785 1.157 15.040 2.314 19.667 3.47 22.66 5.665 42.569 21.745 57.844 37.020 19.551 19.551 33.013 41.816 40.491 71.727 1.157 6.942 1.157 18.51 2.314 71.727 0 52.45 0.798 62.555 5.785 77.512 4.808 14.424 29.678 28.539 50.903 24.295 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-23.138 1.157-67.1 0-72.814 1.626-61.411-9.255-99.492-26.184-91.641-82.575-141.671-171.219-171.219-6.942-2.314-18.51-4.628-25.452-5.785-10.412-2.314-23.138-2.314-126.1-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["user-plus"],"defaultCode":60235,"grid":0},"properties":{"id":143,"order":106,"ligatures":"","prevSize":24,"code":60235,"name":"user-plus"},"setIdx":0,"setId":0,"iconIdx":134},{"icon":{"paths":["M451.186 39.52c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 45.366 27.22 79.655 58.662 104.12 107.59 15.708 31.417 24.295 60.759 24.295 106.434 0 63.231-19.937 108.797-48.589 144.611-4.628 5.785-11.569 16.197-17.353 21.98-19.077 19.077-39.736 34.907-64.785 47.432-32.877 16.438-58.682 25.452-109.904 25.452-60.499 0-87.813-14.984-127.257-34.707-15.243-7.621-29.575-21.476-42.805-34.707-42.423-42.423-70.57-93.492-70.57-177.004 0-74.99 32.449-124.999 70.57-163.121 41.787-41.787 91.981-70.57 175.847-70.57zM444.244 135.54c-6.942 0-17.353 1.157-20.824 1.157s-10.412 3.47-16.197 4.628c-34.246 6.849-60.558 30.228-78.668 54.374-11.859 15.81-18.981 34.275-24.295 55.53-1.157 4.628-3.47 15.040-3.47 20.824 0 23.437 3.563 47.615 11.569 63.629 2.314 4.628 4.628 12.725 8.098 17.353 7.597 10.13 18.787 27.105 28.922 34.707 25.066 18.8 51.697 35.863 96.022 35.863 45.259 0 70.122-16.439 96.022-35.863 29.569-22.177 48.589-64.889 48.589-115.689 0-23.283-9.173-39.128-16.197-56.687-6.409-16.022-16.261-28.976-30.079-40.491-6.942-5.785-15.040-13.883-20.824-17.353-21.486-12.893-44.869-21.98-78.668-21.98zM831.801 615.648c-30.225 0-47.432-17.226-47.432-47.432 0-12.725 0-12.725 3.47-20.824 3.47-6.942 6.942-11.569 37.020-41.648l33.55-33.55-33.55-34.707c-28.922-28.922-35.863-35.863-38.177-41.648-3.47-6.942-2.314-6.942-2.314-19.667 0-19.059 1.885-22.708 11.569-32.393 9.239-9.239 20.717-16.197 38.177-16.197 9.946 0 17.9 2.861 23.138 8.098 2.314 2.314 19.667 18.51 37.020 35.863l32.393 32.393 33.55-33.55c27.765-27.765 35.863-33.55 41.648-37.020 16.995-11.329 45.442-1.99 55.53 8.098 10.86 10.86 22.003 37.564 9.255 56.687-3.47 5.785-9.255 13.883-37.020 41.648l-33.55 32.393 33.55 34.707c27.765 27.765 34.707 34.707 37.020 40.491 3.989 11.968 8.726 30.875 0 43.962-4.797 9.595-14.739 16.383-23.138 21.98-5.785 3.47-6.942 2.314-19.667 2.314s-12.725 1.157-19.667-2.314c-5.785-2.314-12.725-9.255-41.648-38.177l-34.707-33.55-33.55 33.55c-30.079 30.079-34.707 33.55-41.648 37.020-8.098 3.47-8.098 3.47-20.824 3.47zM451.186 616.805c-62.472 0-116.845 1.157-119.159 1.157-22.407 0-53.418 9.336-70.57 16.197-42.937 17.175-76.951 41.674-102.963 76.355-9.955 13.274-19.289 24.568-26.608 41.648-22.704 52.976-24.295 56.019-24.295 143.454 0 43.962 0 62.472 1.157 67.1 7.011 21.031 23.547 45.732 55.53 39.334 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-25.452 1.157-62.472 0-64.441 0.668-55.397 6.942-86.767 10.695-53.476 60.251-87.711 113.375-98.335 9.255-1.157 26.608-2.314 120.316-2.314s111.061 1.157 120.316 2.314c5.785 1.157 15.040 2.314 19.667 3.47 22.66 5.665 42.569 21.745 57.844 37.020 19.551 19.551 33.013 41.816 40.491 71.727 1.157 6.942 1.157 18.51 2.314 71.727 0 52.45 0.798 62.555 5.785 77.512 4.808 14.424 29.678 28.539 50.903 24.295 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-23.138 1.157-67.1 0-72.814 1.626-61.411-9.255-99.492-26.184-91.641-82.575-141.671-171.219-171.219-6.942-2.314-18.51-4.628-25.452-5.785-10.412-2.314-23.138-2.314-126.1-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["user-x"],"defaultCode":60236,"grid":0},"properties":{"id":144,"order":105,"ligatures":"","prevSize":24,"code":60236,"name":"user-x"},"setIdx":0,"setId":0,"iconIdx":135},{"icon":{"paths":["M595.796 39.52c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 36.984 22.192 67.88 46.034 90.237 83.295 21.376 35.627 38.177 73.243 38.177 130.728 0 63.231-19.937 108.797-48.589 144.611-4.628 5.785-11.569 16.197-17.353 21.98-19.077 19.077-39.736 34.907-64.785 47.432-32.476 16.238-58.827 25.452-109.904 25.452-32.411 0-40.418-0.31-63.629-6.942-64.991-18.568-112.897-58.205-144.611-111.061-20.8-34.669-32.393-73.074-32.393-128.414 0-74.99 32.449-124.999 70.57-163.121 41.752-41.752 91.862-70.57 175.847-70.57zM588.855 135.54c-6.942 0-16.197 1.157-19.667 1.157-33.092 0-57.838 21.784-77.512 38.177-13.82 11.517-23.661 24.445-30.079 40.491-6.873 17.182-16.197 33.616-16.197 56.687 0 62.865 25.602 101.906 63.629 127.257 20.938 13.959 47.021 24.295 80.982 24.295 45.046 0 70.16-16.466 96.022-35.863 29.569-22.177 48.589-64.889 48.589-115.689 0-23.283-9.173-39.128-16.197-56.687-6.484-16.212-16.514-26.926-28.922-39.334-24.224-24.224-53.775-40.491-100.649-40.491zM595.796 616.805c-63.629 0-119.159 1.157-123.787 1.157-34.398 0-66.794 15.465-91.394 27.765-52.495 26.248-89.374 70.149-112.218 127.257-6.083 15.209-9.965 26.949-12.725 46.275-2.314 12.725-3.47 18.51-3.47 75.197 0 43.962 0 63.629 1.157 68.257 7.011 21.031 23.547 45.732 55.53 39.334 21.868-5.467 32.37-17.284 39.334-38.177 1.157-4.628 1.157-25.452 1.157-62.472 0-86.892 6.553-121.182 57.844-159.65 16.037-12.027 37.799-19.861 60.158-25.452 6.942-1.157 28.922-1.157 122.63-1.157s115.689 0 122.63 1.157c61.641 15.41 100.279 50.582 115.689 112.218 1.157 6.942 1.157 18.51 2.314 71.727 0 52.45 0.798 62.555 5.785 77.512 4.808 14.424 29.678 28.539 50.903 24.295 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-23.138 1.157-67.1 0-72.155-0.867-59.865-8.098-96.022-16.629-83.146-76.261-137.865-148.082-166.592-15.484-6.194-27.546-9.885-47.432-12.725-13.883-2.314-15.040-3.47-128.414-3.47z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["user"],"defaultCode":60237,"grid":0},"properties":{"id":145,"order":104,"ligatures":"","prevSize":24,"code":60237,"name":"user"},"setIdx":0,"setId":0,"iconIdx":136},{"icon":{"paths":["M587.698 38.362c106.57 0 184.45 31.855 252.201 70.57 46.886 26.793 85.708 62.586 120.316 102.963 63.983 74.647 111.061 171.816 111.061 308.889 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-89.35 0-154.473-19.393-215.181-49.747-136.513-68.257-232.154-186.285-261.456-362.106-3.977-23.871-4.628-35.769-4.628-69.413 0-90.474 20.394-156.476 50.903-217.494 31.197-62.396 70.569-109.077 121.473-152.709 26.545-22.752 53.009-41.544 85.61-57.844 39.516-19.759 78.668-32.906 128.414-43.962 17.056-3.79 40.696-9.255 57.844-9.255 3.47 0 19.667-1.157 34.707-1.157zM590.012 142.482c-4.954 0-15.68 28.886-19.667 35.863-24.769 43.346-39.35 96.304-55.53 148.082 0 0 33.55 1.157 75.197 1.157s75.197-1.157 75.197-1.157c-17.796-57.836-36.84-114.902-63.629-163.121-5.785-10.412-10.412-20.824-11.569-20.824zM474.323 154.050c-47.047 11.762-86.255 36.925-120.316 62.472-39.131 29.351-71.008 68.031-97.179 109.904 0 0 34.707 1.157 78.668 1.157h79.825c1.866-13.068 5.316-20.648 10.412-39.334 13.249-48.58 30.75-92.57 48.589-134.199zM705.7 154.050c4.075 12.226 12.729 27.774 19.667 45.118 14.499 36.249 24.37 77.737 37.020 115.689l2.314 12.725h79.825c43.962 0 78.668-1.157 78.668-1.157-28.715-44.669-59.070-82.848-101.806-113.375-32.681-23.344-70.55-49.973-115.689-59.002zM204.769 520.784c0 36.212 5.186 67.3 11.569 96.022h182.788l-2.314-13.883c-3.768-22.61-3.47-54.843-3.47-82.139 0-27.355-0.314-59.426 3.47-82.139l2.314-13.883h-182.788c-6.351 28.575-11.569 59.776-11.569 96.022zM590.012 424.762h-93.708v2.314c0 1.157-2.314 11.569-3.47 21.98-1.157 15.040-1.157 31.236-1.157 71.727s0 55.53 1.157 71.727c1.157 11.569 3.47 20.824 3.47 21.98 0 2.314 5.785 2.314 93.708 2.314s93.708 0 93.708-2.314c0-1.157 2.314-11.569 3.47-23.138 1.157-17.353 2.314-32.393 2.314-70.57s-1.157-53.217-2.314-70.57c-1.157-11.569-3.47-21.98-3.47-23.138 0-2.314-5.785-2.314-93.708-2.314zM975.254 520.784c0-36.212-5.186-67.3-11.569-96.022h-182.788l2.314 13.883c4.327 25.956 3.47 65.927 3.47 98.335 0 17.353-1.157 43.962-2.314 55.53s-3.47 21.98-3.47 23.138 18.51 1.157 91.394 1.157h91.394c6.385-28.728 11.569-59.8 11.569-96.022zM335.497 713.983c-43.962 0-78.668 1.157-78.668 1.157 25.921 41.475 55.826 78.209 92.55 107.59 13.696 10.956 44.139 29.024 60.158 38.177 20.315 11.608 40.62 20.566 64.785 26.608l-4.628-11.569c-2.314-5.785-9.255-19.667-13.883-31.236-10.208-25.521-20.223-59.51-28.922-85.61-3.47-10.412-8.098-25.452-9.255-32.393l-2.314-12.725h-79.825zM590.012 713.983c-41.648 0-75.197 1.157-75.197 1.157 18.175 58.163 36.486 115.422 63.629 164.277 5.785 10.412 10.412 18.51 11.569 18.51s5.785-8.098 11.569-18.51c13.489-24.281 22.15-46.079 33.55-71.727 11.864-26.693 21.568-64.887 30.079-92.55 0 0-33.55-1.157-75.197-1.157zM844.527 713.983h-79.825l-2.314 12.725c-12.41 37.232-22.657 79.781-37.020 115.689-7.056 17.64-14.155 32.991-19.667 45.118 8.784 0 24.584-7.288 32.393-10.412 23.753-9.501 46.127-23.28 67.1-35.863 5.785-3.47 12.725-10.412 16.197-12.725 18.853-12.569 37.764-30.046 53.217-48.589 5.785-6.942 15.040-16.197 18.51-20.824 6.985-9.313 24.004-36.006 30.079-45.118h-78.668z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["referers"],"defaultCode":60244,"grid":0},"properties":{"id":146,"order":103,"ligatures":"","prevSize":24,"code":60244,"name":"referers"},"setIdx":0,"setId":0,"iconIdx":137},{"icon":{"paths":["M299.634 182.973c-27.112 0-52.422 25.956-46.275 56.687 1.157 4.628 2.314 10.412 4.628 13.883 3.47 5.785 18.51 23.138 133.042 137.669l129.572 129.572-129.572 129.572c-114.532 114.532-129.572 131.885-133.042 137.669-6.899 10.347-7.212 33.142 0 43.962 9.105 13.657 25.454 30.542 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 5.785-2.314 24.295-20.824 136.512-133.042l130.728-129.572 129.572 129.572c114.532 114.532 131.885 129.572 137.669 133.042 16.995 11.329 45.442 1.99 55.53-8.098 10.86-10.86 22.003-37.564 9.255-56.687-3.47-5.785-18.51-23.138-133.042-137.669l-129.572-129.572 129.572-129.572c114.532-114.532 129.572-131.885 133.042-137.669 15.463-23.196-2.816-58.783-20.824-64.785-12.025-4.009-31.248-8.475-43.962 0-5.785 3.47-23.138 18.51-137.669 133.042l-129.572 129.572-130.728-129.572c-112.218-112.218-130.728-130.728-136.512-133.042-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["close"],"defaultCode":60245,"grid":0},"properties":{"id":147,"order":102,"ligatures":"","prevSize":24,"code":60245,"name":"close"},"setIdx":0,"setId":0,"iconIdx":138},{"icon":{"paths":["M490.52 38.362c68.15 0 124.26 14.698 171.219 38.177 81.004 40.502 138.626 100.249 179.317 181.631 19.959 39.921 28.071 81.659 37.020 135.355 1.157 6.942 1.157 19.667 1.157 30.079 0 86.72-26.437 151.654-59.002 205.926-3.47 5.785-10.412 13.883-13.883 19.667l-6.942 11.569 131.885 131.885c115.689 116.845 131.885 134.199 135.355 139.984 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-23.138-19.667-139.984-135.355l-131.885-131.885-11.569 6.942c-5.785 3.47-13.883 9.255-18.51 12.725s-15.040 8.098-21.98 12.725c-24.914 16.609-58.708 26.856-90.237 35.863-31.573 9.022-63.989 11.569-104.12 11.569-67.949 0-114.521-20.159-161.964-40.491-28.175-12.076-49.63-27.86-71.727-46.275-71.298-59.414-122.479-138.922-138.827-253.358-1.157-8.098-3.47-23.138-3.47-32.393 0-32.639 3.552-64.127 8.098-91.394 1.157-6.942 5.785-19.667 8.098-28.922 24.362-97.444 85.535-163.893 157.337-215.181 8.098-5.785 19.667-12.725 26.608-16.197l25.452-12.725c30.885-15.443 67.116-23.526 106.434-30.079 6.942-1.157 18.51-3.47 25.452-3.47s18.51-1.157 25.452-1.157zM492.833 135.54c-10.412 0-21.98 1.157-24.295 1.157-22.55 0-50.952 8.885-69.413 15.040-29.279 9.76-53.924 24.766-77.512 40.491-6.942 4.628-16.197 13.883-21.98 18.51s-15.040 13.883-19.667 19.667c-40.175 50.218-74.040 101.771-74.040 193.2 0 47.53 4.272 69.104 17.353 101.806 23.231 58.074 59.010 108.291 109.904 138.827 43.828 26.296 88.609 48.589 159.65 48.589 46.202 0 76.030-6.803 108.747-20.824 56.488-24.209 99.322-57.59 131.885-106.434 28.869-43.302 48.589-90.859 48.589-161.964 0-49.239-8.531-84.161-25.452-118.002l-10.412-20.824c-10.658-21.316-26.658-42.855-42.805-59.002-4.628-4.628-13.883-15.040-20.824-20.824-24.623-20.52-56.024-38.142-87.923-50.903-27.677-11.072-62.553-18.51-101.806-18.51zM493.99 231.562c-27.846 0-38.748 16.755-47.432 37.020l-1.157 53.217v54.374h-54.374l-53.217 1.157c-17.694 7.583-37.020 19.379-37.020 43.962 0 28.433 16.792 40.154 34.707 50.903h109.904v52.060c0 48.589 0 52.060 2.314 59.002 2.583 10.333 10.030 16.972 16.197 23.138 7.494 7.494 12.653 9.255 28.922 9.255 30.293 0 37.593-15.463 48.589-34.707v-108.747h108.747c18.48-10.56 34.707-18.915 34.707-48.589 0-16.353-1.709-21.376-9.255-28.922-6.156-6.156-12.801-13.612-23.138-16.197-6.942-2.314-10.412-2.314-59.002-2.314h-52.060v-109.904c-10.066-16.776-20.579-34.707-47.432-34.707z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["zoom-in"],"defaultCode":60246,"grid":0},"properties":{"id":148,"order":101,"ligatures":"","prevSize":24,"code":60246,"name":"zoom-in"},"setIdx":0,"setId":0,"iconIdx":139},{"icon":{"paths":["M490.52 38.362c68.15 0 124.26 14.698 171.219 38.177 81.004 40.502 138.626 100.249 179.317 181.631 19.959 39.921 28.071 81.659 37.020 135.355 1.157 6.942 1.157 19.667 1.157 30.079 0 86.72-26.437 151.654-59.002 205.926-3.47 5.785-10.412 13.883-13.883 19.667l-6.942 11.569 131.885 131.885c115.689 116.845 131.885 134.199 135.355 139.984 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-23.138-19.667-139.984-135.355l-131.885-131.885-11.569 6.942c-5.785 3.47-13.883 9.255-18.51 12.725s-15.040 8.098-21.98 12.725c-24.914 16.609-58.708 26.856-90.237 35.863-31.573 9.022-63.989 11.569-104.12 11.569-67.949 0-114.521-20.159-161.964-40.491-28.175-12.076-49.63-27.86-71.727-46.275-71.298-59.414-122.479-138.922-138.827-253.358-1.157-8.098-3.47-23.138-3.47-32.393 0-32.639 3.552-64.127 8.098-91.394 1.157-6.942 5.785-19.667 8.098-28.922 24.362-97.444 85.535-163.893 157.337-215.181 8.098-5.785 19.667-12.725 26.608-16.197l25.452-12.725c30.885-15.443 67.116-23.526 106.434-30.079 6.942-1.157 18.51-3.47 25.452-3.47s18.51-1.157 25.452-1.157zM492.833 135.54c-10.412 0-21.98 1.157-24.295 1.157-22.55 0-50.952 8.885-69.413 15.040-29.279 9.76-53.924 24.766-77.512 40.491-6.942 4.628-16.197 13.883-21.98 18.51s-15.040 13.883-19.667 19.667c-40.175 50.218-74.040 101.771-74.040 193.2 0 47.53 4.272 69.104 17.353 101.806 23.231 58.074 59.010 108.291 109.904 138.827 43.828 26.296 88.609 48.589 159.65 48.589 46.202 0 76.030-6.803 108.747-20.824 56.488-24.209 99.322-57.59 131.885-106.434 28.869-43.302 48.589-90.859 48.589-161.964 0-49.239-8.531-84.161-25.452-118.002l-10.412-20.824c-10.658-21.316-26.658-42.855-42.805-59.002-4.628-4.628-13.883-15.040-20.824-20.824-24.623-20.52-56.024-38.142-87.923-50.903-27.677-11.072-62.553-18.51-101.806-18.51zM493.99 376.173c-128.869 0-166.043-16.136-188.572 28.922-2.314 5.785-4.628 9.255-4.628 16.197 0 28.433 16.792 40.154 34.707 50.903h314.673c18.48-10.56 34.707-18.915 34.707-48.589 0-16.353-1.709-21.376-9.255-28.922-6.156-6.156-12.801-13.612-23.138-16.197-6.942-2.314-9.255-2.314-158.494-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["zoom-out"],"defaultCode":60247,"grid":0},"properties":{"id":149,"order":100,"ligatures":"","prevSize":24,"code":60247,"name":"zoom-out"},"setIdx":0,"setId":0,"iconIdx":140},{"icon":{"paths":["M374.831 111.246c26.871 0 46.275 21.241 46.275 48.589 0 12.725-1.157 12.725-4.628 20.824-5.335 10.672-130.858 136.577-142.297 142.297-8.098 3.47-9.255 3.47-20.824 3.47s-13.883 0-21.98-3.47c-6.942-3.47-11.569-6.942-49.747-45.118-34.707-34.707-41.648-42.805-43.962-48.589-6.724-20.169-5.456-41.976 8.098-55.53 8.579-8.579 23.823-17.447 41.648-13.883 4.628 1.157 10.412 3.47 13.883 4.628 4.628 2.314 11.569 6.942 28.922 24.295l21.98 21.98 45.118-45.118c36.136-36.136 43.073-44.096 61.315-53.217 3.47-1.157 9.255-1.157 16.197-1.157zM757.76 182.973c144.611 0 222.122 0 226.749 1.157 20.837 6.946 38.177 18.678 38.177 47.432 0 29.14-16.754 40.291-38.177 47.432-4.628 1.157-82.139 1.157-226.749 1.157-215.911 0-209.737 2.971-239.476-6.942-6.831-2.277-18.556-15.179-20.824-21.98-2.314-5.785-2.314-8.098-2.314-19.667 0-28.118 14.173-39.432 34.707-46.275 5.785-1.157 38.177-2.314 227.907-2.314zM374.831 400.467c26.871 0 46.275 21.241 46.275 48.589 0 12.725-1.157 12.725-4.628 20.824-5.335 10.672-130.858 136.577-142.297 142.297-8.098 3.47-9.255 3.47-20.824 3.47s-13.883 0-21.98-3.47c-6.942-3.47-11.569-6.942-49.747-45.118-34.707-34.707-41.648-42.805-43.962-48.589-6.724-20.169-5.456-41.976 8.098-55.53 8.579-8.579 23.823-17.447 41.648-13.883 4.628 1.157 10.412 3.47 13.883 4.628 4.628 2.314 11.569 6.942 28.922 24.295l21.98 21.98 45.118-45.118c36.136-36.136 43.073-44.096 61.315-53.217 3.47-1.157 9.255-1.157 16.197-1.157zM757.76 472.194c144.611 0 222.122 0 226.749 1.157 20.837 6.946 38.177 18.678 38.177 47.432 0 29.14-16.754 40.291-38.177 47.432-4.628 1.157-82.139 1.157-226.749 1.157-215.911 0-209.737 2.971-239.476-6.942-6.831-2.277-18.556-15.179-20.824-21.98-2.314-5.785-2.314-8.098-2.314-19.667 0-28.118 14.173-39.432 34.707-46.275 5.785-1.157 38.177-2.314 227.907-2.314zM374.831 689.69c26.871 0 46.275 21.241 46.275 48.589 0 12.725-1.157 12.725-4.628 20.824-5.335 10.672-130.858 136.577-142.297 142.297-8.098 3.47-9.255 3.47-20.824 3.47s-13.883 0-21.98-3.47c-6.942-3.47-11.569-6.942-49.747-45.118-34.707-34.707-41.648-42.805-43.962-48.589-6.724-20.169-5.456-41.976 8.098-55.53 8.579-8.579 23.823-17.447 41.648-13.883 4.628 1.157 10.412 3.47 13.883 4.628 4.628 2.314 11.569 6.942 28.922 24.295l21.98 21.98 45.118-45.118c36.136-36.136 43.073-44.096 61.315-53.217 3.47-1.157 9.255-1.157 16.197-1.157zM757.76 761.416c-189.729 0-222.122 1.157-227.907 2.314-20.624 6.875-34.707 17.938-34.707 46.275 0 28.984 14.59 39.185 35.863 46.275 5.785 1.157 32.393 2.314 226.749 2.314 144.611 0 222.122 0 226.749-1.157 20.837-6.946 38.177-18.678 38.177-47.432 0-29.14-16.754-40.291-38.177-47.432-4.628-1.157-82.139-1.157-226.749-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["polls"],"defaultCode":60266,"grid":0},"properties":{"id":153,"order":96,"ligatures":"","prevSize":24,"code":60266,"name":"polls"},"setIdx":0,"setId":0,"iconIdx":141},{"icon":{"paths":["M762.388 38.362c212.867 0 229.064 0 236.004 2.314 36.994 12.332 59.289 35.57 71.727 72.884 2.314 5.785 2.314 27.765 2.314 256.829 0 224.436-1.157 252.201-2.314 257.986-1.157 3.47-2.314 10.412-4.628 13.883-8.398 12.596-19.993 21.98-41.648 21.98-10.412 0-12.725 1.157-19.667-2.314s-12.725-9.255-76.355-72.884l-69.413-68.257h-166.592l-166.592-1.157c-21.376-5.345-38.767-14.473-52.060-27.765-3.47-3.47-10.412-10.412-12.725-15.040l-8.098-16.197c-2.314-4.628-3.47-13.883-4.628-18.51-1.157-8.098-2.314-25.452-2.314-166.592 0-146.924 0-157.337 2.314-164.277 12.577-37.734 37.683-61.77 77.512-71.727 6.942-1.157 53.217-1.157 237.162-1.157zM975.254 135.54h-432.676v288.064h167.749c127.567 0 164.529-2.615 189.729 5.785 5.785 2.314 11.569 8.098 40.491 37.020l34.707 33.55v-364.419zM253.358 376.173c-32.393 0-61.315 1.157-63.629 1.157-20.826 0-40.954 15.502-52.060 26.608-15.012 15.012-22.766 29.748-28.922 54.374l-1.157 248.731c0 183.945 0 251.044 1.157 255.672l4.628 13.883c5.102 15.302 28.365 29.958 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 5.785-2.314 17.353-12.725 75.197-70.57l68.257-68.257h165.435l165.435-1.157c39.089-9.773 70.069-32.704 79.825-71.727 2.314-6.942 1.157-13.883 1.157-70.57v-62.472c-3.587-7.175-7.279-15.377-12.725-20.824-10.83-10.83-37.331-22.159-56.687-9.255-31.2 15.599-26.608 37.712-26.608 91.394v47.432h-170.062c-121.473 0-171.219 0-175.847 1.157-25.856 8.618-17.4 5.831-53.217 41.648l-33.55 32.393v-363.262h47.432c60.676 0 84.511 4.399 96.022-41.648 1.157-5.785 1.157-9.255 0-15.040l-4.628-13.883c-4.183-12.55-19.053-20.23-31.236-25.452l-59.002-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["comments"],"defaultCode":60268,"grid":0},"properties":{"id":154,"order":95,"ligatures":"","prevSize":24,"code":60268,"name":"comments"},"setIdx":0,"setId":0,"iconIdx":142},{"icon":{"paths":["M834.115 38.362c9.946 0 17.9 2.861 23.138 8.098 51.702 51.702 156.349 151.89 163.121 165.435 3.47 6.942 2.314 9.255 2.314 19.667 0 11.569 0 12.725-3.47 20.824-5.377 12.548-160.494 164.153-166.592 166.592-11.968 3.989-30.875 8.726-43.962 0-9.595-4.797-16.383-14.739-21.98-23.138-3.47-5.785-2.314-6.942-2.314-19.667s-1.157-12.725 2.314-19.667c2.314-5.785 9.255-12.725 38.177-41.648l33.55-34.707h-263.77l-263.77 1.157c-38.559 11.016-65.383 32.463-75.197 71.727-2.314 9.255-2.314 13.883-3.47 96.022v85.61c-6.44 9.66-15.148 26.259-26.608 30.079-35.127 11.708-57.277-6.775-68.257-32.393l-1.157-83.295c0-101.061-5.268-97.89 18.51-157.337 2.314-5.785 9.255-15.040 13.883-21.98 31.486-47.229 73.998-74.225 142.297-85.61 8.098-1.157 97.179-1.157 269.554-1.157h257.986l-33.55-34.707c-28.922-28.922-35.863-35.863-38.177-41.648-3.47-6.942-2.314-6.942-2.314-19.667 0-19.059 1.885-22.708 11.569-32.393 9.239-9.239 20.717-16.197 38.177-16.197zM974.098 472.194c-23.538 0-37.17 19.534-46.275 34.707v85.61c-1.456 103.36 2.435 75.989-9.255 111.061-10.183 30.549-37.347 47.526-69.413 56.687l-263.77 1.157h-263.77l33.55-34.707c28.922-28.922 35.863-35.863 38.177-41.648 3.47-6.942 2.314-6.942 2.314-19.667 0-19.262-4.604-25.429-13.883-34.707-9.374-9.374-22.243-16.376-40.491-12.725-4.628 1.157-10.412 3.47-13.883 4.628-6.255 2.502-161.288 154.214-166.592 166.592-3.47 8.098-3.47 9.255-3.47 20.824s0 12.725 3.47 20.824c5.377 12.548 160.494 164.153 166.592 166.592 13.318 4.439 27.327 6.316 42.805 1.157 8.046-2.682 18.028-15.231 21.98-23.138 3.47-6.942 3.47-8.098 3.47-20.824s1.157-12.725-2.314-19.667c-2.314-5.785-9.255-12.725-38.177-41.648l-33.55-34.707h257.986c203.656 0 250.301 3.85 292.692-4.628 32.855-6.571 65.267-23.619 85.61-43.962l17.353-17.353c26.371-26.371 38.513-61.832 47.432-106.434 1.157-6.942 1.157-39.334 1.157-93.708l-1.157-83.295c-8.542-19.933-21.196-37.020-48.589-37.020z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["repeat"],"defaultCode":60274,"grid":0},"properties":{"id":155,"order":94,"ligatures":"","prevSize":24,"code":60274,"name":"repeat"},"setIdx":0,"setId":0,"iconIdx":143},{"icon":{"paths":["M263.77 520.784c16.354 9.344 37.020 19.947 37.020 45.118 0 19.901-8.54 30.521-18.51 40.491-4.295 4.295-13.273 10.412-20.824 10.412h-4.628v6.942c0 3.47 3.47 12.725 4.628 19.667 8.857 53.147 36.734 100.291 64.785 135.355 21.015 26.269 50.055 52.116 77.512 71.727 8.098 5.785 20.824 11.569 28.922 16.197 31.498 17.999 66.26 26.678 107.59 35.863 0 0 1.157-108.747 1.157-241.789v-242.946c-24.108-4.018-50.632-18.885-67.1-31.236-18.155-13.616-34.417-31.138-46.275-50.903-3.47-5.785-10.412-15.040-12.725-20.824-14.94-37.348-26.413-98.824-8.098-144.611 25.105-62.762 68.942-112.586 142.297-127.257 5.785-1.157 13.883-3.47 19.667-3.47s13.883-1.157 18.51-1.157c62.145 0 106.471 24.332 138.827 56.687 27.483 27.483 45.61 57.313 53.217 102.963 1.157 6.942 3.47 18.51 3.47 25.452 0 66.66-22.421 110.344-56.687 144.611-22.162 22.162-44.608 35.692-76.355 46.275l-11.569 4.628v483.578h4.628c20.112 0 46.779-11.351 64.785-17.353 28.479-9.493 64.040-31.256 85.61-47.432 4.628-3.47 11.569-9.255 15.040-11.569s10.412-11.569 18.51-18.51c46.603-39.945 72.256-96.137 91.394-163.121 2.314-8.098 4.628-17.353 4.628-20.824v-6.942h-4.628c-23.577 0-39.334-27.089-39.334-50.903 0-25.171 20.669-35.776 37.020-45.118h120.316c10.576 7.051 25.821 13.833 30.079 26.608l4.628 13.883c3.959 19.795-5.599 33.365-15.040 42.805-6.81 6.81-15.359 12.725-26.608 12.725-8.098 0-8.098 0-8.098 3.47 0 20.398-9.521 51.259-15.040 70.57-5.591 19.569-13.501 42.041-21.98 59.002l-12.725 25.452c-8.379 16.758-18.667 29.955-27.765 45.118-14.767 24.612-39.297 47.395-60.158 68.257-15.035 15.035-29.311 23.217-45.118 35.863-17.565 14.052-39.24 23.6-61.315 35.863-21.144 11.745-43.192 19.475-67.1 25.452l-32.393 8.098c-77.594 19.399-182.287 6.494-240.632-18.51-31.428-13.469-62.95-28.855-89.080-46.275-28.647-19.098-54.206-42.637-78.668-67.1-16.314-16.314-26.961-34.275-40.491-53.217-30.425-42.595-48.921-91.565-63.629-150.395-3.713-14.851-6.942-26.236-6.942-38.177 0-3.47 0-3.47-8.098-3.47-16.206 0-31.135-13.682-37.020-25.452-12.886-19.328-1.1-46.332 9.255-56.687 5.553-5.553 14.271-9.514 20.824-13.883h120.316zM588.855 135.54c-31.598 0-47.664 12.9-65.942 26.608-16.993 12.745-28.922 41.086-28.922 69.413 0 22.407 6.101 39.757 16.197 53.217 3.47 4.628 8.098 12.725 12.725 16.197 17.653 13.238 35.774 26.608 67.1 26.608 32.102 0 48.561-12.703 67.1-26.608 16.993-12.745 28.922-41.086 28.922-69.413 0-22.407-6.101-39.757-16.197-53.217-3.47-4.628-8.098-12.725-12.725-16.197-18.032-13.524-36.106-26.608-68.257-26.608z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["anchor"],"defaultCode":60278,"grid":0},"properties":{"id":156,"order":93,"ligatures":"","prevSize":24,"code":60278,"name":"anchor"},"setIdx":0,"setId":0,"iconIdx":144},{"icon":{"paths":["M594.64 38.362l305.418 1.157c8.415 2.103 18.92 5.020 26.608 6.942 49.782 12.446 84.483 61.465 94.865 113.375 1.157 9.255 2.314 52.060 2.314 360.948s-1.157 351.693-2.314 360.948c-12.595 62.971-52.826 106.587-115.689 119.159-9.255 2.314-27.765 1.157-315.829 1.157-289.221 0-306.574 1.157-315.829-1.157-15.311-3.062-27.734-9.937-40.491-15.040-40-16-65.933-57.796-75.197-104.12-1.157-9.255-2.314-52.060-2.314-360.948s1.157-351.693 2.314-360.948c11.757-58.787 43.993-93.027 94.865-113.375 9.446-3.78 24.223-6.942 33.55-6.942 2.314 0 139.984-1.157 307.732-1.157zM890.802 904.87c17.345-5.615 29.096-17.356 34.707-34.707v-698.759c-7.842-18.297-16.134-26.747-34.707-34.707l-298.476-1.157c-171.219 0-300.791 0-303.104 1.157-17.192 0-29.143 21.726-34.707 34.707v698.759c5.615 17.345 17.356 29.096 34.707 34.707h601.58zM588.855 231.562c101.806 0 157.337 0 161.964 1.157 25.891 6.472 48.132 18.401 61.315 38.177l9.255 13.883c11.954 17.932 10.412 44.979 10.412 77.512 0 39.018-5.826 44.044-17.353 67.1-5.113 10.227-16.395 22.659-26.608 27.765l-16.197 8.098c-4.628 2.314-12.725 4.628-17.353 5.785-9.255 2.314-20.824 1.157-164.277 1.157s-155.022 1.157-164.277-1.157c-13.91-2.781-22.674-9.602-33.55-15.040-10.227-5.113-22.659-16.395-27.765-26.608l-8.098-16.197c-2.314-4.628-3.47-11.569-4.628-16.197-1.157-5.785-3.47-16.197-3.47-35.863 0-32.454-1.927-57.845 10.412-76.355l9.255-13.883c9.619-14.431 27.474-28.848 46.275-33.55 4.628-1.157 10.412-4.628 13.883-4.628s76.355-1.157 160.807-1.157zM734.622 328.741h-289.221v47.432h289.221v-47.432zM401.439 569.373c25.189 0 43.962 21.804 43.962 47.432 0 21.698-12.83 39.754-28.922 45.118-7.351 2.45-17.047 5.861-26.608 3.47l-13.883-4.628c-14.833-4.945-26.608-22.898-26.608-42.805 0-10.597 2.587-22.254 8.098-27.765 8.594-8.594 17.913-20.824 34.707-20.824h9.255zM593.483 569.373c27.098 0 48.952 25.59 43.962 55.53-3.268 13.077-6.752 19.477-15.040 27.765-3.47 3.47-8.098 8.098-11.569 9.255-13.503 4.5-27.519 4.71-41.648 0-18.479-6.159-38.009-43.056-21.98-67.1 7.471-11.208 18.422-25.452 35.863-25.452h10.412zM786.682 569.373c25.388 0 43.962 22.566 43.962 48.589 0 36.017-31.037 55.982-67.1 43.962-16.509-5.503-28.922-23.086-28.922-45.118 0-21.706 13.36-38.388 30.079-43.962 3.47-1.157 8.098-3.47 11.569-3.47h10.412zM401.439 713.983c25.189 0 43.962 21.804 43.962 47.432 0 21.698-12.83 39.754-28.922 45.118-7.351 2.45-17.047 5.861-26.608 3.47l-13.883-4.628c-15.628-5.209-26.608-22.883-26.608-43.962 0-10.101 2.808-21.318 8.098-26.608 8.594-8.594 17.913-20.824 34.707-20.824h9.255zM593.483 713.983c27.098 0 48.952 25.59 43.962 55.53-3.268 13.077-6.752 19.477-15.040 27.765-3.47 3.47-8.098 8.098-11.569 9.255-13.503 4.5-27.519 4.71-41.648 0-18.479-6.159-38.009-43.056-21.98-67.1 7.471-11.208 18.422-25.452 35.863-25.452h10.412zM786.682 713.983h-10.412c-23.146 0-41.648 24.042-41.648 47.432 0 31.553 24.777 54.101 57.844 48.589 21.853-5.464 38.177-20.653 38.177-47.432 0-26.543-17.75-48.589-43.962-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["calculator"],"defaultCode":60288,"grid":0},"properties":{"id":157,"order":92,"ligatures":"","prevSize":24,"code":60288,"name":"calculator"},"setIdx":0,"setId":0,"iconIdx":145},{"icon":{"paths":["M566.875 44.244c244.103 0 278.809 1.157 288.064 2.314 34.66 6.932 57.354 19.177 78.668 40.491 5.785 5.785 12.725 16.197 17.353 21.98 16.806 21.010 19.601 37.717 24.295 70.57 1.157 9.255 1.157 115.689 1.157 310.046l-1.157 293.849-2.314 11.569c-12.425 62.122-55.106 101.953-118.002 114.532-9.255 1.157-31.236 2.314-186.259 2.314h-174.69v25.452c0 34.994 0.090 41.558-16.197 57.844-3.47 3.47-8.098 8.098-11.569 9.255-13.503 4.5-27.519 4.71-41.648 0-12.955-4.317-22.219-21.539-26.608-34.707-1.157-3.47-1.157-17.353-1.157-32.393v-25.452h-52.060c-30.079 0-55.53 0-60.158-1.157-45.392-11.349-71.654-37.734-79.825-86.767-1.157-8.098-1.157-122.63-1.157-345.909s0-337.811 1.157-345.909c5.037-30.216 13.524-44.76 31.236-62.472 9.45-9.45 19.774-16.223 33.55-19.667 4.628-1.157 10.412-4.628 13.883-4.628s130.728-1.157 283.437-1.157zM396.812 141.422h-96.022v673.308h96.022v-673.308zM668.68 141.422h-174.69v673.308h174.69l175.847-1.157c16.796-6.72 27.52-18.93 33.55-37.020 1.157-4.628 1.157-89.080 1.157-298.476 0-212.867 0-293.849-1.157-298.476-6.334-19.002-15.369-29.748-33.55-37.020zM684.877 236.287c59.47 0 71.795-4.525 92.55 26.608 10.88 16.319 3.347 45.242-6.942 55.53-4.685 6.245-14.936 10.366-23.138 13.883l-57.844 1.157c-63.536 0-56.132 2.592-75.197-6.942-15.506-7.754-24.295-21.622-24.295-45.118 0-19.248 14.374-32.639 27.765-39.334 3.47-2.314 9.255-4.628 12.725-4.628s27.765-1.157 54.374-1.157zM686.033 429.486c-43.962 0-55.53 1.157-60.158 2.314-19.255 6.418-35.863 20.399-35.863 46.275 0 26.814 15.736 39.566 35.863 46.275 5.785 1.157 16.197 2.314 60.158 2.314 31.236 0 55.53 0 59.002-1.157 13.564-6.782 23.961-12.804 32.393-25.452 12.884-19.325 1.25-45.025-9.255-55.53-7.485-7.485-13.987-9.308-23.138-13.883-3.47-1.157-26.608-1.157-59.002-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["notebook"],"defaultCode":60310,"grid":0},"properties":{"id":158,"order":91,"ligatures":"","prevSize":24,"code":60310,"name":"notebook"},"setIdx":0,"setId":0,"iconIdx":146},{"icon":{"paths":["M205.926 821.574c5.615 17.345 17.356 29.096 34.707 34.707h363.262c14.86-4.953 27.37-17.324 32.393-32.393l1.157-60.158c0-50.903 1.157-60.158 2.314-64.785 6.175-18.527 23.33-33.55 47.432-33.55 24.080 0 39.046 15.331 45.118 33.55 2.314 6.942 2.314 9.255 2.314 64.785 0 46.275 0 61.315-1.157 69.413-12.621 63.107-57.25 107.704-120.316 120.316-9.255 1.157-37.020 1.157-192.044 1.157-161.964 0-182.788-1.157-192.044-2.314-63.297-12.658-106.503-52.407-119.159-115.689-2.314-9.255-1.157-26.608-1.157-315.829s-1.157-306.574 1.157-315.829c3.062-15.311 9.937-27.734 15.040-40.491 14.359-35.899 47.409-56.217 83.295-70.57 5.785-2.314 16.197-3.47 20.824-4.628 8.098-1.157 39.334-2.314 190.886-2.314 156.18 0 183.945 0 193.2 1.157 63.107 12.621 107.704 57.25 120.316 120.316 1.157 8.098 1.157 23.138 1.157 69.413 0 68.128 3.574 54.166-6.942 75.197-6.062 12.125-22.713 23.138-40.491 23.138-24.369 0-41.289-15.122-47.432-33.55-1.157-4.628-2.314-13.883-2.314-64.785l-1.157-60.158c-8.052-16.103-15.368-25.582-32.393-32.393h-364.419c-17.811 6.483-27.072 17.396-33.55 34.707v601.58zM492.833 327.584c-7.035 0-18.794 3.274-24.295 6.942-8.044 5.363-157.187 152.408-164.277 166.592-3.47 6.942-2.314 9.255-2.314 19.667 0 11.569 0 12.725 3.47 20.824 4.939 11.522 158.431 163.329 166.592 166.592 11.968 3.989 30.875 8.726 43.962 0 12.355-6.178 25.452-18.779 25.452-35.863v-13.883c0-3.47-3.47-10.412-4.628-13.883-2.314-5.785-8.098-11.569-37.020-40.491l-33.55-34.707h256.829c227.907 0 259.142-1.157 264.927-2.314 19.867-6.623 34.707-19.221 34.707-46.275 0-27.8-13.895-39.337-34.707-46.275-5.785-1.157-37.020-2.314-264.927-2.314h-256.829l33.55-34.707c28.922-28.922 34.707-34.707 37.020-40.491 1.157-3.47 4.628-10.412 4.628-13.883v-13.883c0-11.497-6.059-18.784-12.725-25.452-8.156-8.156-21.016-16.197-35.863-16.197z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["login"],"defaultCode":60327,"grid":0},"properties":{"id":159,"order":90,"ligatures":"","prevSize":24,"code":60327,"name":"login"},"setIdx":0,"setId":0,"iconIdx":147},{"icon":{"paths":["M205.926 821.574c5.615 17.345 17.356 29.096 34.707 34.707h363.262c16.058-6.423 24.854-17.318 32.393-32.393l1.157-60.158c0-50.903 1.157-60.158 2.314-64.785 6.513-19.542 23.884-33.55 49.747-33.55 23.462 0 36.72 18.965 43.962 35.863l1.157 60.158c0 48.589 0 61.315-1.157 70.57-12.789 63.945-56.426 108.695-120.316 121.473-9.255 1.157-37.020 1.157-192.044 1.157-161.964 0-182.788-1.157-192.044-2.314-62.986-12.597-106.562-52.701-119.159-115.689-2.314-9.255-1.157-26.608-1.157-315.829s-1.157-306.574 1.157-315.829c3.062-15.311 9.937-27.734 15.040-40.491 14.359-35.899 47.409-56.217 83.295-70.57 5.785-2.314 16.197-3.47 20.824-4.628 8.098-1.157 39.334-2.314 190.886-2.314 156.18 0 183.945 0 193.2 1.157 63.906 12.781 107.521 57.495 120.316 121.473 1.157 9.255 1.157 21.98 1.157 70.57l-1.157 60.158c-8.333 16.667-19.671 35.863-43.962 35.863-26.062 0-43.169-13.817-49.747-33.55-1.157-4.628-2.314-15.040-2.314-65.942l-1.157-59.002c-8.052-16.103-15.368-25.582-32.393-32.393h-364.419c-17.811 6.483-27.072 17.396-33.55 34.707v601.58zM878.076 327.584c-27.112 0-52.422 25.956-46.275 56.687 1.157 4.628 2.314 10.412 4.628 13.883 3.47 5.785 10.412 12.725 37.020 40.491l32.393 33.55h-281.124c-249.887 0-282.281 1.157-288.064 2.314-19.255 6.418-35.863 20.399-35.863 46.275 0 26.814 15.736 39.566 35.863 46.275 5.785 1.157 38.177 2.314 288.064 2.314h281.124l-32.393 33.55c-26.608 27.765-33.55 34.707-37.020 40.491-6.899 10.347-7.212 33.142 0 43.962 9.105 13.657 25.454 30.542 50.903 25.452 4.628-1.157 10.412-3.47 13.883-4.628 11.12-4.448 154.268-146.821 165.435-165.435 6.899-10.347 7.212-33.142 0-43.962-11.168-18.613-154.315-160.986-165.435-165.435-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["logout"],"defaultCode":60328,"grid":0},"properties":{"id":160,"order":89,"ligatures":"","prevSize":24,"code":60328,"name":"logout"},"setIdx":0,"setId":0,"iconIdx":148},{"icon":{"paths":["M1023.844 888.143c0 24.175-19.317 35.689-35.863 43.962h-266.084c-11.466-5.734-25.947-13.056-30.079-25.452-1.157-3.47-3.47-9.255-4.628-12.725s-1.157-50.903-1.157-129.572c0-86.767 0-124.944 1.157-129.572 6.817-20.448 24.451-44.393 55.53-38.177 21.279 5.319 32.614 18.017 39.334 38.177 1.157 4.628 1.157 27.765 1.157 74.040 0 37.020 1.157 68.257 1.157 68.257 17.129-13.323 39.751-29.883 54.374-47.432 23.613-28.336 44.548-53.812 60.158-90.237 3.47-8.098 8.098-20.824 11.569-28.922s5.785-21.98 8.098-28.922c8.733-26.196 10.412-59.538 10.412-93.708 0-35.921-9.197-66.315-17.353-94.865-18.527-64.843-60.428-118.45-107.59-156.18-14.269-11.415-36.288-27.4-53.217-35.863-45.301-22.652-92.139-39.334-160.807-39.334-20.824 0-32.393 0-42.805 1.157-28.224 4.032-53.286 9.285-77.512 19.667-12.725 4.628-16.197 5.785-24.295 5.785-17.457 0-27.12-7.454-35.863-16.197-10.036-10.036-18.087-36.5-6.942-53.217 10.299-15.449 19.445-22.909 40.491-28.922 37.876-10.822 76.39-25.452 124.944-25.452h26.608c4.628 0 15.040 1.157 23.138 1.157 40.98 0 74.603 10.243 107.59 19.667 90.061 25.731 162.883 86.064 212.867 152.709 23.805 31.74 43.512 71.066 60.158 109.904 14.546 33.943 18.681 72.759 25.452 113.375 1.157 6.942 1.157 24.295 1.157 38.177 0 142.211-56.204 235.521-128.414 307.732-14.78 14.78-21.923 20.766-30.079 28.922 0 0 27.765 1.157 61.315 1.157h60.158c19.332 9.665 35.863 21.888 35.863 50.903zM234.848 269.21c0-30.633 18.956-50.903 49.747-50.903 26.027 0 46.275 20.93 46.275 47.432 0 30.093-19.349 48.589-48.589 48.589-26.103 0-47.432-19.017-47.432-45.118zM209.396 403.408c21.659 0 34.236 12.944 41.648 27.765 2.314 4.628 4.628 10.412 4.628 16.197 0 22.77-10.451 41.662-27.765 47.432-7.86 2.621-16.538 7.435-27.765 4.628-35.201 0-55.197-53.55-28.922-79.825 9.944-9.944 17.393-16.197 38.177-16.197zM233.691 600.079c19.689 0 40.212 14.203 45.118 28.922 11.532 34.596-8.183 68.257-41.648 68.257-20.273 0-28.203-6.222-38.177-16.197-10.121-10.121-18.154-37.555-6.942-54.374 6.777-10.166 19.158-25.452 34.707-25.452 3.47 0 5.785-1.157 6.942-1.157zM358.634 758.573c15.254 0 21.868 4.515 30.079 12.725 9.032 9.032 16.197 18.702 16.197 35.863 0 29.128-24.879 53.562-55.53 47.432-23.552-5.889-40.491-20.165-40.491-49.747 0-24.79 17.096-36.892 33.55-45.118 3.47-1.157 9.255-1.157 16.197-1.157zM541.423 833.77c-16.439 0-25.76 7.25-34.707 16.197-9.4 9.4-11.569 13.473-11.569 32.393 0 32.347 19.348 48.589 50.903 48.589 24.287 0 43.962-23.802 43.962-48.589 0-29.054-20.182-48.589-48.589-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["rotate-clockwise-2"],"defaultCode":60341,"grid":0},"properties":{"id":161,"order":88,"ligatures":"","prevSize":24,"code":60341,"name":"rotate-clockwise-2"},"setIdx":0,"setId":0,"iconIdx":149},{"icon":{"paths":["M1026.158 17.009c21.493 0 37.324 14.796 42.805 31.236 1.157 3.47 3.47 9.255 3.47 12.725 0 17.895-9.337 61.188-12.725 79.825-10.608 58.346-33.453 106.558-52.060 156.18-3.47 9.255-11.569 25.452-17.353 35.863s-13.883 27.765-19.667 37.020c-21.541 34.467-45.049 69.321-69.413 101.806-6.942 9.255-17.353 20.824-23.138 26.608-15.328 15.328-53.463 57.064-70.57 71.727-8.098 6.942-19.667 19.667-27.765 25.452-45.711 32.651-92.308 68.135-145.767 94.865l-32.393 16.197-12.725 4.628 1.157 19.667c0 33.4-2.948 58.588-11.569 84.452-2.314 6.942-6.942 17.353-9.255 24.295s-9.255 16.197-12.725 23.138c-9.803 19.604-20.731 31.143-37.020 47.432-34.071 34.071-74.573 59.903-133.042 68.257-13.883 2.314-16.197 3.47-122.63 3.47-79.825 0-111.061 0-115.689-1.157-20.743-6.915-32.311-17.107-39.334-38.177-1.157-4.628-1.157-35.863-1.157-107.59 0-63.629 0-107.59 1.157-115.689 13.133-78.796 43.684-130.274 94.865-171.219 5.785-4.628 16.197-11.569 23.138-15.040s16.197-10.412 23.138-12.725c32.315-10.771 63.493-20.824 108.747-20.824l19.667 1.157 4.628-11.569c21.368-53.419 55.296-105.736 87.923-149.239 6.942-9.255 17.353-21.98 23.138-30.079s18.51-19.667 25.452-27.765 21.98-23.138 33.55-34.707c38.878-38.878 73.965-68.592 120.316-99.492 90.531-60.354 194.206-104.093 321.614-127.257 16.197-2.314 25.452-3.47 31.236-3.47zM962.529 125.756c-63.916 16.821-122.638 40.495-175.847 67.1-66.802 33.401-121.546 78.742-172.376 129.572l-17.353 17.353c22.289 16.717 48.905 33.865 69.413 54.374l28.922 28.922c17.53 17.53 31.874 34.377 43.962 55.53 4.628 8.098 10.412 13.883 10.412 13.883l18.51-18.51c91.902-91.902 157.090-202.212 195.514-348.223h-1.157zM535.638 416.134c-16.462 23.781-33.411 51.349-48.589 78.668-9.093 16.365-11.465 25.245-17.353 37.020l10.412 6.942c28.415 17.049 53.547 42.2 70.57 70.57l6.942 10.412c10.093-5.045 17.378-7.531 34.707-16.197 25.579-12.789 44.092-23.728 65.942-39.334 10.412-6.942 13.883-10.412 13.883-11.569s-4.628-8.098-10.412-16.197-13.883-21.98-20.824-30.079c-30.089-35.104-65.306-65.253-105.277-90.237zM355.164 596.609h-19.667c-26.541 0-47.917 12.322-65.942 23.138-32.405 21.604-53.581 52.721-62.472 97.179-1.157 9.255-2.314 25.452-2.314 89.080v78.668h78.668c64.785 0 79.825-1.157 89.080-2.314 52.878-10.576 85.1-37.16 106.434-79.825 9.449-18.9 13.883-33.935 13.883-62.472 0-83.885-53.859-125.393-121.473-142.297-4.628-1.157-11.569-1.157-16.197-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brush"],"defaultCode":60344,"grid":0},"properties":{"id":162,"order":87,"ligatures":"","prevSize":24,"code":60344,"name":"brush"},"setIdx":0,"setId":0,"iconIdx":150},{"icon":{"paths":["M587.698 38.362c188.572 0 303.104 0 310.046 1.157 23.353 4.671 46.534 7.559 64.785 18.51 20.165 12.099 35.167 18.971 53.217 37.020 27.027 27.027 45.769 57.111 53.217 101.806 2.314 12.725 3.47 15.040 3.47 218.652 0 142.297 0 209.396-1.157 218.652-9.39 56.341-28.018 97.844-64.785 127.257-28.381 22.705-57.931 40.119-101.806 47.432-11.569 1.157-53.217 1.157-314.673 1.157-230.16 0-294.927 4.069-329.713-4.628-34.911-8.728-63.618-24.518-87.923-43.962-35.022-28.018-54.582-71.824-63.629-126.1-1.157-8.098-1.157-79.825-1.157-211.71 0-169.123-8.247-196.224 10.412-252.201 20.262-60.782 61.84-99.239 120.316-122.63 11.566-4.627 28.287-9.255 41.648-9.255 5.785 0 143.454-1.157 307.732-1.157zM588.855 135.54c-262.613 0-301.947 1.157-308.889 2.314-20.802 5.2-31.458 13.183-46.275 24.295-14.218 10.664-21.776 30.419-26.608 49.747-1.157 8.098-2.314 24.295-2.314 124.944v114.532l60.158-60.158c41.648-41.648 63.629-61.315 70.57-65.942 22.488-16.865 46.278-28.922 85.61-28.922 40.259 0 62.802 13.332 87.923 30.079 9.255 6.942 28.922 25.452 70.57 67.1l57.844 59.002 35.863-35.863c19.667-19.667 39.334-38.177 43.962-41.648 20.375-15.281 47.959-31.236 82.139-31.236 42.973 0 71.437 12.797 96.022 31.236 4.628 3.47 24.295 21.98 43.962 41.648l35.863 34.707v-114.532c0-100.649-1.157-116.845-2.314-124.944-5.386-21.547-12.882-32.215-24.295-47.432-10.664-14.218-30.419-21.776-49.747-26.608-8.098-1.157-40.491-2.314-310.046-2.314zM733.465 182.973c22.216 0 36.301 13.071 45.118 27.765 4.628 8.098 3.47 9.255 3.47 20.824 0 17.194-5.128 25.952-13.883 34.707-3.47 2.314-8.098 8.098-11.569 9.255-12.315 4.105-32.511 6.477-43.962-1.157-15.121-10.080-38.581-38.15-20.824-64.785 8.972-13.458 20.402-26.608 41.648-26.608zM734.622 565.903c0 31.313-18.928 50.903-50.903 50.903-8.098 0-11.569-1.157-17.353-3.47-16.215-8.108-203.076-205.659-224.436-216.337-8.098-3.47-11.569-4.628-18.51-4.628-12.417 0-20.653 3.742-28.922 9.255-4.628 2.314-39.334 35.863-98.335 94.865l-91.394 91.394v23.138c0 56.16 29.741 89.285 75.197 100.649 9.255 2.314 20.824 1.157 310.046 1.157h300.791c25.709-5.713 41.058-12.136 56.687-27.765 18.473-18.473 27.765-35.134 27.765-74.040v-23.138l-67.1-67.1c-47.432-47.432-69.413-68.257-75.197-71.727-10.169-5.086-14.295-8.098-28.922-8.098-11.255 0-22.142 4.789-28.922 11.569l-68.257 68.257 9.255 10.412c10.404 10.404 18.51 18.1 18.51 34.707zM396.812 906.027c14.722 0 27.658 7.991 35.863 16.197 3.47 3.47 8.098 8.098 9.255 11.569 12.097 36.288-7.475 60.869-37.020 68.257-26.689 5.338-41.7-12.225-52.060-27.765-3.47-5.785-3.47-6.942-3.47-19.667 0-18.534 3.73-23.397 12.725-32.393 8.121-8.121 20.060-16.197 34.707-16.197zM588.855 906.027c27.599 0 49.747 19.991 49.747 48.589 0 16.67-6.974 26.641-15.040 34.707-3.47 2.314-8.098 8.098-11.569 9.255-12.315 4.105-32.511 6.477-43.962-1.157-15.121-10.080-38.581-38.15-20.824-64.785 8.837-13.253 20.472-26.608 41.648-26.608zM782.055 906.027c-2.314 0-6.942 1.157-9.255 1.157-14.565 0-28.001 16.667-33.55 27.765-3.47 6.942-3.47 8.098-3.47 19.667 0 28.46 16.52 41.729 39.334 47.432 24.984 4.998 41.127-10.79 50.903-25.452 12.884-19.325 1.25-45.025-9.255-55.53-8.439-8.439-18.926-15.040-34.707-15.040z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["gallery"],"defaultCode":60361,"grid":0},"properties":{"id":164,"order":34,"ligatures":"","prevSize":24,"code":60361,"name":"gallery"},"setIdx":0,"setId":0,"iconIdx":151},{"icon":{"paths":["M348.223 17.009c6.965 0 15.013 2.691 20.824 4.628 5.785 2.314 18.51 16.197 113.375 109.904l107.59 106.434 85.61-84.452c67.176-67.176 81.748-83.806 108.747-101.806 30.074-20.050 83.724-31.844 133.042-21.98 40.801 8.161 72.071 29.267 97.179 54.374 28.228 28.228 40.595 64.261 48.589 112.218 2.075 16.606-0.164 37.677-3.47 50.903-6.438 25.754-14.5 47.201-27.765 67.1-8.098 11.569-15.040 18.51-94.865 98.335l-85.61 86.767 106.434 107.59c94.865 94.865 107.59 107.59 109.904 113.375 2.658 7.973 5.52 17.512 3.47 27.765-1.157 4.628-3.47 10.412-4.628 13.883-3.876 9.686-205.194 210.492-214.024 214.024-12.999 4.332-26.574 6.182-41.648 1.157-5.785-2.314-18.51-15.040-113.375-109.904l-107.59-106.434-107.59 106.434c-94.865 93.708-107.59 107.59-113.375 109.904-18.663 6.221-40.941 4.628-116.845 4.628-68.257 0-100.649 0-105.277-1.157-20.225-6.742-31.351-17.694-38.177-38.177-1.157-4.628-1.157-37.020-1.157-105.277 0-75.477-1.424-98.689 4.628-116.845 2.314-5.785 16.197-18.51 109.904-113.375l106.434-107.59-106.434-107.59c-94.865-94.865-107.59-107.59-109.904-113.375-2.658-7.973-5.52-17.512-3.47-27.765 1.157-4.628 3.47-10.412 4.628-13.883 4.361-10.905 207.459-211.319 212.867-214.024 6.482-2.16 13.372-5.785 21.98-5.785zM878.076 122.285c-17.226 0-34.158 5.42-45.118 12.725-4.628 2.314-15.040 12.725-30.079 27.765l-23.138 23.138c41.123 42.316 81.464 82.657 122.371 122.417l1.416 1.37 20.824-20.824c23.316-23.316 31.307-27.98 40.491-55.53 1.157-3.47 2.314-12.725 2.314-18.51 0-33.585-9.482-48.816-26.608-65.942-15.923-15.923-31.017-26.608-62.472-26.608zM348.223 258.798c29.256 0 47.432 18.939 47.432 48.589 0 12.725 0 11.569-3.47 19.667-3.47 6.942-6.942 11.569-25.452 30.079l-20.824 21.98c16.946 18.14 33.92 35.114 51.454 51.499l0.606 0.561c42.309-43.312 82.653-84.023 123.284-124.445l0.502-0.499c-60.027-59.024-116.567-115.197-172.819-171.659l-0.715-0.718c-42.309 43.312-82.653 84.023-123.284 124.445l-0.502 0.499c16.88 17.085 33.841 33.679 51.080 49.984l0.98 0.919 21.98-20.824c18.51-18.51 23.138-21.98 30.079-25.452 8.098-3.47 6.942-4.628 19.667-4.628zM710.328 255.327s-114.532 113.375-253.358 252.201l-252.201 253.358v123.787h124.944c166.85-166.64 331.25-331.408 495.364-496.461l9.038-9.098zM868.821 654.452l-86.767-86.767c-42.309 43.312-82.653 84.023-123.284 124.445l-0.502 0.499c16.88 17.085 33.841 33.679 51.080 49.984l0.98 0.919 21.98-20.824c18.51-18.51 23.138-21.98 30.079-25.452 8.098-3.47 6.942-3.47 19.667-3.47 29.807 0 48.589 18.004 48.589 47.432 0 12.725-1.157 11.569-4.628 19.667-3.47 6.942-6.942 11.569-25.452 30.079l-20.824 21.98c16.946 18.14 33.92 35.114 51.454 51.499l0.606 0.561c42.309-43.312 82.653-84.023 123.284-124.445l0.502-0.499-86.767-85.61z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["tools"],"defaultCode":60362,"grid":0},"properties":{"id":165,"order":35,"ligatures":"","prevSize":24,"code":60362,"name":"tools"},"setIdx":0,"setId":0,"iconIdx":152},{"icon":{"paths":["M363.262 233.876c-32.077 0-62.472-15.784-62.472-47.432 0-24.177 12.837-39.389 28.922-47.432 8.728-2.91 33.878-5.95 40.491-9.255 14.865-9.909 23.728-18.604 26.608-41.648 0-5.785 2.314-12.725 2.314-15.040 0-8.089 7.442-14.384 12.725-19.667 8.081-8.081 17.083-15.040 32.393-15.040 14.276 0 26.86 6.037 34.707 13.883 5.229 5.229 12.725 13.033 12.725 20.824 0 2.314 2.314 9.255 2.314 15.040 2.904 23.234 11.372 31.491 26.608 41.648 12.295 6.147 40.258 5.551 49.747 15.040 10.373 10.373 19.667 20.512 19.667 41.648 0 31.575-31.131 47.432-62.472 47.432-17.535 0-33.55 26.025-33.55 43.962 0 23.335-14.403 36.596-28.922 46.275-5.785 3.47-6.942 2.314-19.667 2.314-19.059 0-22.708-1.885-32.393-11.569-8.536-8.536-16.197-21.17-16.197-37.020 0-18.718-12.874-34.202-25.452-40.491-2.314-1.157-5.785-3.47-8.098-3.47zM878.076 38.362c8.61 0 16.437 3.551 23.138 5.785 11.12 4.448 154.268 146.821 165.435 165.435 6.899 10.347 7.212 33.142 0 43.962-9.408 15.679-731.63 738.98-743.877 743.877-12.025 4.009-31.248 8.475-43.962 0-14.596-8.758-159.596-155.703-165.435-165.435-6.899-10.347-7.212-33.142 0-43.962 7.257-12.095 735.2-740.869 742.72-743.877 5.637-3.758 14.026-5.785 21.98-5.785zM879.234 156.365l-75.197 75.197c24.746 25.94 49.257 50.451 74.332 74.377l0.866 0.821c25.94-24.746 50.451-49.257 74.377-74.332l0.821-0.866zM734.622 300.975l-509.030 509.030c24.746 25.94 49.257 50.451 74.332 74.377l0.866 0.821 509.030-509.030zM927.822 520.784c-29.657 0-45.159 19.991-48.589 47.432 0 23.554-10.418 28.928-21.98 40.491-4.612 4.612-15.901 8.098-24.295 8.098-23.335 0-36.596 14.403-46.275 28.922-3.47 5.785-2.314 6.942-2.314 19.667 0 19.059 1.885 22.708 11.569 32.393 8.536 8.536 21.17 16.197 37.020 16.197 19.14 0 33.997 12.463 40.491 25.452 1.157 2.314 3.47 5.785 3.47 8.098s2.314 9.255 2.314 15.040c3.151 25.211 18.021 47.432 45.118 47.432 23.773 0 39.478-13.013 47.432-28.922 2.91-8.728 5.95-33.878 9.255-40.491 9.909-14.865 18.604-23.728 41.648-26.608 5.785 0 12.725-2.314 15.040-2.314 23.73 0 44.852-44.364 28.922-68.257-5.638-8.455-16.575-24.295-28.922-24.295-2.314 0-9.255-2.314-15.040-2.314-23.234-2.904-31.491-11.372-41.648-26.608-6.147-12.295-5.551-40.258-15.040-49.747-9.25-9.25-19.428-19.667-38.177-19.667z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["wand"],"defaultCode":60363,"grid":0},"properties":{"id":166,"order":36,"ligatures":"","prevSize":24,"code":60363,"name":"wand"},"setIdx":0,"setId":0,"iconIdx":153},{"icon":{"paths":["M201.299 933.262c-22.67 0-45.118-22.039-45.118-45.118 0-14.037 2.85-19.581 6.942-27.765 5.594-8.391 103.682-107.58 150.395-155.022-4.172-8.343-18.007-25.602-23.138-35.863l-12.725-25.452c-12.184-24.369-19.239-59.901-24.295-90.237-1.157-6.942-3.47-21.98-3.47-32.393 0-95.549 28.873-163.526 72.884-216.337 5.785-8.098 32.393-35.863 70.57-74.040 52.060-52.060 62.472-61.315 68.257-63.629 7.738-2.58 17.571-6.899 28.922-4.628l13.883 4.628c5.785 2.314 10.412 8.098 31.236 27.765l25.452 24.295 70.57-71.727c39.334-39.334 72.884-71.727 76.355-74.040 6.873-4.581 16.504-8.098 26.608-8.098 36.918 0 55.311 34.209 43.962 68.257-2.314 5.785-11.569 15.040-76.355 79.825l-72.884 74.040c57.505 58.698 113.677 114.871 170.419 170.464l1.957 1.911 74.040-72.884c64.785-64.785 74.040-74.040 79.825-76.355 37.113-12.371 68.257 9.312 68.257 43.962 0 10.069-3.526 19.75-8.098 26.608-2.314 3.47-34.707 37.020-74.040 76.355l-71.727 70.57 24.295 25.452c19.667 20.824 25.452 25.452 27.765 31.236l4.628 13.883c2.275 11.378-2.040 21.157-4.628 28.922-6.236 15.591-123.793 127.263-139.984 141.14-16.503 11.002-28.334 21.108-46.275 30.079-47.385 23.693-96.692 40.491-168.905 40.491-34.625 0-59.626-9.122-87.923-16.197-38.455-9.613-65.794-29.8-96.022-47.432l-74.040 74.040c-45.118 45.118-76.355 74.040-79.825 76.355-8.128 4.064-13.766 6.942-27.765 6.942zM646.7 442.742l-164.277-164.277-37.020 38.177c-35.924 35.924-41.262 38.756-60.158 67.1-22.022 33.033-38.177 73.044-38.177 127.257 0 22.097 1.204 39.476 6.942 56.687l8.098 24.295c17.483 52.45 52.789 91.368 97.179 118.002 5.785 3.47 15.040 8.098 20.824 10.412l23.138 9.255c20.945 8.378 44.765 12.725 74.040 12.725 22.202 0 40.236-1.072 57.844-6.942 37.734-12.577 67.106-26.613 94.865-49.747 6.942-5.785 27.765-26.608 46.275-45.118l34.707-34.707-164.277-163.121z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["plug"],"defaultCode":60377,"grid":0},"properties":{"id":167,"order":37,"ligatures":"","prevSize":24,"code":60377,"name":"plug"},"setIdx":0,"setId":0,"iconIdx":154},{"icon":{"paths":["M801.722 66.754c23.94 0 40.178 6.734 54.374 16.197 4.628 2.314 32.393 28.922 72.884 69.413 37.020 35.863 69.413 70.57 72.884 75.197 12.769 17.026 20.824 33.561 20.824 63.629 0 24.211-6.497 36.356-16.197 50.903-2.314 3.47-38.177 39.334-79.825 80.982l-75.197 76.355 9.255 10.412c10.404 10.404 18.51 18.1 18.51 34.707 0 20.567-5.748 27.728-16.197 38.177-9.4 9.4-13.473 11.569-32.393 11.569-19.867 0-26.6-4.62-38.177-16.197l-10.412-10.412-178.16 178.16c-171.219 171.219-178.16 178.16-186.259 182.788l-8.098 3.47h-217.494c-12.783-6.392-25.665-12.683-31.236-26.608l-3.47-8.098-1.157-112.218v-112.218l365.576-365.576-10.412-10.412c-11.557-11.557-16.197-18.383-16.197-38.177 0-18.993 2.121-22.944 11.569-32.393 10.731-10.731 16.821-16.197 38.177-16.197 16.594 0 24.321 8.125 34.707 18.51l10.412 9.255 76.355-75.197c41.648-41.648 78.668-77.512 80.982-79.825 5.61-5.61 16.903-8.72 25.452-11.569 3.47-1.157 8.098-3.47 10.412-3.47s11.569-1.157 18.51-1.157zM926.666 286.563c-43.312-42.309-84.023-82.653-124.445-123.284l-0.499-0.502c-47.61 47.401-94.359 94.516-140.82 141.915l-2.635 2.696c43.312 42.309 84.023 82.653 124.445 123.284l0.499 0.502c47.61-47.401 94.359-94.516 140.82-141.915l2.635-2.696zM590.012 375.643l-337.811 337.811v123.787h124.944c115.562-116.565 225.254-226.622 335.232-336.393l1.421-1.418-123.787-123.787z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["color-picker"],"defaultCode":60390,"grid":0},"properties":{"id":168,"order":38,"ligatures":"","prevSize":24,"code":60390,"name":"color-picker"},"setIdx":0,"setId":0,"iconIdx":155},{"icon":{"paths":["M451.186 39.52c32.794 0 59.085 4.67 82.139 16.197 6.942 3.47 18.51 6.942 24.295 10.412 45.366 27.22 79.655 58.662 104.12 107.59 15.708 31.417 24.295 60.759 24.295 106.434 0 63.231-19.937 108.797-48.589 144.611-4.628 5.785-11.569 16.197-17.353 21.98-19.077 19.077-39.736 34.907-64.785 47.432-32.877 16.438-58.682 25.452-109.904 25.452-60.499 0-87.813-14.984-127.257-34.707-15.243-7.621-29.575-21.476-42.805-34.707-42.423-42.423-70.57-93.492-70.57-177.004 0-74.99 32.449-124.999 70.57-163.121 41.787-41.787 91.981-70.57 175.847-70.57zM734.622 93.893c0-29.189 19.453-48.589 49.747-48.589 17.916 0 43.301 12.277 57.844 18.51 20.182 8.65 34.9 21.37 50.903 34.707 22.455 18.712 40.427 44.241 55.53 69.413 18.24 30.399 26.608 64.516 26.608 112.218 0 45.74-8.469 67.451-20.824 98.335-14.807 37.018-42.217 67.786-71.727 91.394-24.569 19.655-47.596 30.519-80.982 41.648-11.569 3.47-13.883 3.47-21.98 3.47-22.67 0-45.118-22.039-45.118-45.118 0-52.703 51.727-47.761 82.139-70.57 36.275-27.208 62.472-62.52 62.472-124.944 0-20.575-5.597-29.332-9.255-43.962-7.658-30.634-32.13-51.62-54.374-69.413-18.727-14.982-47.814-15.421-64.785-32.393-8.12-8.12-16.197-18.718-16.197-34.707zM444.244 135.54c-6.942 0-17.353 1.157-20.824 1.157s-10.412 3.47-16.197 4.628c-34.246 6.849-60.558 30.228-78.668 54.374-11.859 15.81-18.981 34.275-24.295 55.53-1.157 4.628-3.47 15.040-3.47 20.824 0 23.437 3.563 47.615 11.569 63.629 2.314 4.628 4.628 12.725 8.098 17.353 7.597 10.13 18.787 27.105 28.922 34.707 25.066 18.8 51.697 35.863 96.022 35.863 45.259 0 70.122-16.439 96.022-35.863 29.569-22.177 48.589-64.889 48.589-115.689 0-23.283-9.173-39.128-16.197-56.687-6.409-16.022-16.261-28.976-30.079-40.491-6.942-5.785-15.040-13.883-20.824-17.353-21.486-12.893-44.869-21.98-78.668-21.98zM451.186 616.805c102.963 0 115.689 0 126.1 2.314 67.589 11.265 120.699 45.629 155.022 91.394 21.851 29.135 41.258 68.235 48.589 112.218 1.157 10.412 2.314 23.138 2.314 72.884 0 43.962 0 62.472-1.157 67.1-4.702 14.106-11.384 30.016-25.452 34.707-12.025 4.009-31.248 8.475-43.962 0-30.515-20.344-26.608-26.766-26.608-97.179-1.157-53.217-1.157-64.785-2.314-71.727-7.397-29.584-21.142-52.378-40.491-71.727-11.751-11.751-23.878-22.74-39.334-28.922-5.785-2.314-13.883-6.942-18.51-8.098s-13.883-2.314-19.667-3.47c-9.255-1.157-26.608-2.314-120.316-2.314-119.014 0-99.689-1.117-139.984 6.942-31.407 6.282-56.546 30.276-72.884 52.060-12.298 16.398-20.655 37.331-25.452 61.315-1.157 8.098-2.314 21.98-2.314 67.1 0 37.020 0 57.844-1.157 62.472-6.989 20.967-16.832 32.553-39.334 38.177-25.377 5.075-41.044-10.665-50.903-25.452-2.314-3.47-3.47-10.412-4.628-13.883-1.157-4.628-1.157-23.138-1.157-67.1 0-72.155 0.867-59.865 8.098-96.022 11.43-57.157 45.807-102.033 85.61-131.885 30.081-22.562 66.613-40.753 113.375-47.432 8.098-1.157 15.040-2.314 17.353-2.314s56.687-1.157 119.159-1.157zM882.704 624.903c-32.297 0-52.060 19.829-52.060 52.060 0 36.045 39.415 42.606 65.942 53.217 29.822 11.93 50.091 41.835 65.942 68.257 3.47 5.785 5.785 18.51 8.098 25.452l3.47 13.883 1.157 62.472c0 52.45 0.798 62.555 5.785 77.512 4.808 14.424 29.678 28.539 50.903 24.295 21.868-5.467 32.37-17.284 39.334-38.177 1.157-3.47 1.157-24.295 1.157-59.002 0-88.753-7.608-128.259-41.648-179.317-28.105-42.157-63.912-71.146-114.532-91.394-10.149-4.061-22.259-9.255-33.55-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["users"],"defaultCode":60402,"grid":0},"properties":{"id":169,"order":39,"ligatures":"","prevSize":24,"code":60402,"name":"users"},"setIdx":0,"setId":0,"iconIdx":156},{"icon":{"paths":["M347.066 86.952c84.452 0 109.904 1.157 113.375 2.314 8.436 4.218 17.744 9.263 23.138 17.353 7.311 9.748 102.102 247.305 105.277 256.829 1.157 3.47 1.157 9.255 1.157 12.725 0 16.644-6.64 26.308-15.040 34.707-2.314 2.314-23.138 15.040-46.275 28.922l-42.805 26.608 9.255 13.883c25.014 35.019 50.277 66.563 83.295 94.865 8.098 6.942 18.51 17.353 25.452 21.98s18.51 12.725 26.608 18.51l13.883 9.255 26.608-42.805c22.966-38.276 22.528-50.7 50.903-60.158 3.47-1.157 9.255-1.157 12.725-1.157s9.255 0 12.725 1.157c9.524 3.174 247.080 97.965 256.829 105.277 8.081 5.387 13.126 14.682 17.353 23.138 1.157 3.47 1.157 30.079 1.157 115.689 0 89.080 0 111.061-1.157 118.002-5.85 23.398-13.133 44.47-26.608 61.315-10.179 12.723-22.216 23.024-34.707 32.393-20.754 15.565-43.546 24.295-79.825 24.295-9.255 0-25.452 0-35.863-1.157-51.882-5.764-99.024-18.791-144.611-28.922-58.185-12.931-112.484-38.582-159.65-64.785-24.862-13.813-48.361-24.991-70.57-41.648-20.324-15.244-48.48-34.231-67.1-49.747-30.395-25.33-70.676-64.412-98.335-96.022-33.775-38.601-58.99-78.187-86.767-122.63-20.2-32.322-39.219-72.579-53.217-109.904-24.762-66.031-45.313-139.414-54.374-220.965-1.157-10.412-1.157-26.608-1.157-35.863 0-23.092 0.722-29.57 6.942-45.118 11.797-29.494 26.204-50.579 49.747-69.413 16.783-13.426 37.749-20.716 61.315-26.608 4.628-1.157 9.255-1.157 10.412-1.157s49.747-1.157 109.904-1.157zM1022.687 86.952c18.315 0 27.829 7.005 37.020 16.197 9.916 9.916 18.487 37.056 6.942 54.374-7.029 11.715-204.158 207.933-216.337 214.024-4.628 2.314-10.412 4.628-16.197 4.628-14.037 0-19.581-2.85-27.765-6.942-3.47-2.314-26.608-24.295-57.844-55.53-45.118-45.118-53.217-54.374-56.687-60.158-6.899-10.347-7.212-33.142 0-43.962 10.080-15.121 38.15-38.581 64.785-20.824 5.785 3.47 13.883 9.255 41.648 37.020l33.55 33.55 79.825-80.982c53.217-53.217 83.295-82.139 87.923-84.452 6.658-4.439 12.842-6.942 23.138-6.942zM332.026 182.973c-43.962 0-83.295 1.157-86.767 1.157-18.376 0-40.491 22.379-40.491 40.491 0 18.097 3.864 40.951 5.785 60.158 7.227 72.271 30.114 136.597 54.374 193.2 18.997 44.323 44.107 86.739 70.57 123.787 53.243 74.542 120.988 141.415 200.141 190.886 80.177 50.111 172.639 93.306 286.908 107.59 19.788 2.473 33.455 4.628 54.374 4.628 31.907 0 43.548-15.694 49.747-40.491 1.157-4.628 1.157-41.648 1.157-86.767 0-61.315 0-78.668-1.157-79.825-2.696-2.696-168.598-65.671-172.376-67.1-1.569-0.595-46.967 82.831-57.844 93.708-16.145 16.145-40.746 16.069-63.629 4.628-69.416-34.708-130.539-86.547-179.317-143.454-27.741-32.364-51.736-67.608-71.727-107.59-6.641-13.283-11.186-21.584-8.098-37.020 2.738-10.948 5.367-19.25 12.725-26.608 4.628-4.628 18.51-12.725 49.747-31.236 24.295-13.883 43.962-26.608 43.962-26.608-1.428-3.779-64.404-169.682-67.1-172.376-1.157-1.157-18.51-1.157-80.982-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["phone-check"],"defaultCode":60421,"grid":0},"properties":{"id":170,"order":40,"ligatures":"","prevSize":24,"code":60421,"name":"phone-check"},"setIdx":0,"setId":0,"iconIdx":157},{"icon":{"paths":["M284.594 306.23c-50.249 0-62.963 4.453-78.668 35.863v458.126c5.273 12.303 12.78 27.012 25.452 31.236 3.47 2.314 11.569 3.47 16.197 4.628 5.785 1.157 122.63 1.157 349.379 1.157 330.869 0 338.968 0 344.752-2.314 15.869-5.289 27.015-18.577 32.393-34.707l1.157-203.612c0-203.612 1.157-204.769 3.47-210.554 4.663-13.986 15.17-20.142 26.608-27.765 5.785-2.314 8.098-2.314 18.51-2.314 29.14 0 40.291 16.754 47.432 38.177 1.157 4.628 1.157 74.040 1.157 210.554 0 202.455-1.157 203.612-3.47 214.024-12.342 61.706-55.995 97.294-115.689 112.218-6.942 1.157-64.785 1.157-363.262 1.157s-356.321 0-363.262-1.157c-61.219-15.306-104.169-52.305-116.845-115.689-2.314-9.255-1.157-24.295-1.157-244.103s-1.157-233.691 1.157-242.946c8.272-41.355 32.674-71.071 61.315-92.55 14.141-10.605 33.323-18.453 52.060-23.138 19.828-3.304 86.68-1.114 93.708-4.628 13.411-6.706 24.958-17.032 30.079-32.393 5.837-17.509 2.912-42.545 11.569-55.53 6.734-10.099 10.668-21.307 20.824-28.922 14.794-11.095 27.34-18.115 47.432-23.138 5.785-1.157 23.138-2.314 91.394-2.314l83.295 1.157c7.971 3.416 16.247 6.992 21.98 12.725 10.83 10.83 22.159 37.331 9.255 56.687-5.804 11.608-18.308 19.083-28.922 25.452h-158.494v10.412c0 31.804-15.244 54.327-27.765 75.197-12.22 20.368-31.744 31.772-52.060 43.962-25.252 15.152-37.948 15.040-80.982 15.040zM878.076 161.619c105.277 0 150.395 0 155.022 1.157 9.907 3.302 17.137 5.568 24.295 12.725 10.86 10.86 22.003 37.564 9.255 56.687-4.885 7.325-11.949 17.864-20.824 20.824-3.47 1.157-9.255 3.47-12.725 4.628-4.628 1.157-49.747 1.157-153.866 1.157-105.277 0-149.239 0-153.866-1.157-20.448-6.817-44.393-24.451-38.177-55.53 5.155-20.621 17.912-32.964 37.020-39.334 4.628-1.157 39.334-1.157 153.866-1.157zM588.855 354.82c48.643 0 79.46 15.283 109.904 33.55 50.4 30.241 84.452 88.555 84.452 167.749 0 26.88-8.832 53.528-18.51 72.884-31.785 63.568-86.017 111.061-180.474 111.061-25.396 0-42.75-3.448-60.158-10.412-70.2-28.078-113.745-80.093-126.1-166.592-7.366-73.666 26.925-122.947 63.629-159.65 22.195-22.195 53.581-35.088 89.080-43.962 4.628-1.157 11.569-3.47 16.197-3.47s13.883-1.157 21.98-1.157zM596.953 451.997h-16.197c-20.060 0-30.145 9.287-43.962 16.197-23.268 11.633-42.805 40.764-42.805 74.040 0 41.35 16.58 61.699 37.020 82.139 3.47 3.47 10.412 5.785 13.883 8.098 11.864 7.91 32.186 11.569 52.060 11.569 33.512 0 63.786-23.45 75.197-46.275 7.963-15.926 13.883-31.166 13.883-55.53 0-17.955-6.242-26.014-11.569-39.334-6.574-16.436-20.275-28.171-33.55-37.020-10.728-7.153-26.762-13.883-43.962-13.883z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["camera-minus"],"defaultCode":60474,"grid":0},"properties":{"id":176,"order":46,"ligatures":"","prevSize":24,"code":60474,"name":"camera-minus"},"setIdx":0,"setId":0,"iconIdx":158},{"icon":{"paths":["M878.076 17.009c27.594 0 41.52 18.124 48.589 39.334 1.157 3.47 1.157 23.138 1.157 55.53v49.747h49.747c48.346 0 48.997-0.636 68.257 5.785 18.256 6.085 36.4 41.424 20.824 64.785-19.669 29.504-28.196 26.608-89.080 26.608h-49.747v49.747c0 32.393 0 52.060-1.157 55.53-6.989 20.967-16.832 32.553-39.334 38.177-30.377 6.075-48.057-15.754-55.53-38.177-1.157-3.47-1.157-23.138-1.157-55.53v-49.747h-49.747c-32.393 0-52.060 0-55.53-1.157-20.448-6.817-44.393-24.451-38.177-55.53 5.319-21.279 18.017-32.614 38.177-39.334 3.47-1.157 23.138-1.157 55.53-1.157h49.747v-49.747c0-32.393 0-52.060 1.157-55.53 6.548-19.645 20.473-39.334 46.275-39.334zM308.889 306.23c-68.361 0-83.418-3.224-102.963 35.863v458.126c5.273 12.303 12.78 27.012 25.452 31.236 3.47 2.314 11.569 3.47 16.197 4.628 5.785 1.157 122.63 1.157 349.379 1.157 330.869 0 338.968 0 344.752-2.314 15.869-5.289 27.015-18.577 32.393-34.707l1.157-179.317c0-188.735-4.551-170.215 8.098-195.514 3.271-6.543 14.484-14.284 20.824-18.51 5.785-3.47 6.942-2.314 19.667-2.314 29.071 0 40.183 15.276 47.432 37.020 1.157 4.628 1.157 59.002 1.157 186.259 0 178.16-1.157 180.474-3.47 190.886-12.342 61.706-55.995 97.294-115.689 112.218-6.942 1.157-64.785 1.157-363.262 1.157s-356.321 0-363.262-1.157c-61.219-15.306-104.169-52.305-116.845-115.689-2.314-9.255-1.157-24.295-1.157-244.103s-1.157-233.691 1.157-242.946c8.272-41.355 32.674-71.071 61.315-92.55 14.141-10.605 33.323-18.453 52.060-23.138 22.727-3.788 133.838-0.976 141.14-4.628 10.67-5.334 23.728-13.337 27.765-25.452 1.157-3.47 3.47-6.942 3.47-10.412 0-49.475 24.837-81.831 57.844-98.335 6.832-3.416 19.020-6.942 25.452-6.942 2.314 0 31.236-1.157 63.629-1.157l59.002 1.157c7.971 3.416 16.247 6.992 21.98 12.725 10.83 10.83 22.159 37.331 9.255 56.687-5.804 11.608-18.308 19.083-28.922 25.452h-109.904v9.255c0 5.785-2.314 13.883-3.47 18.51l-4.628 18.51c-12.694 50.78-58.441 85.497-111.061 96.022-8.098 1.157-21.98 2.314-65.942 2.314zM588.855 354.82c48.643 0 79.46 15.283 109.904 33.55 50.4 30.241 84.452 88.555 84.452 167.749 0 26.88-8.832 53.528-18.51 72.884-31.785 63.568-86.017 111.061-180.474 111.061-25.396 0-42.75-3.448-60.158-10.412-70.2-28.078-113.745-80.093-126.1-166.592-7.366-73.666 26.925-122.947 63.629-159.65 22.195-22.195 53.581-35.088 89.080-43.962 4.628-1.157 11.569-3.47 16.197-3.47s13.883-1.157 21.98-1.157zM596.953 451.997h-16.197c-20.060 0-30.145 9.287-43.962 16.197-23.268 11.633-42.805 40.764-42.805 74.040 0 41.35 16.58 61.699 37.020 82.139 3.47 3.47 10.412 5.785 13.883 8.098 11.864 7.91 32.186 11.569 52.060 11.569 33.512 0 63.786-23.45 75.197-46.275 7.963-15.926 13.883-31.166 13.883-55.53 0-17.955-6.242-26.014-11.569-39.334-6.574-16.436-20.275-28.171-33.55-37.020-10.728-7.153-26.762-13.883-43.962-13.883z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["camera-plus"],"defaultCode":60475,"grid":0},"properties":{"id":177,"order":47,"ligatures":"","prevSize":24,"code":60475,"name":"camera-plus"},"setIdx":0,"setId":0,"iconIdx":159},{"icon":{"paths":["M588.855 182.973c259.142 0 391.028 0 395.655 1.157 20.837 6.946 38.177 18.678 38.177 47.432 0 29.14-16.754 40.291-38.177 47.432-4.628 1.157-136.512 1.157-394.498 1.157s-389.871 0-394.498-1.157c-20.837-6.946-38.177-18.678-38.177-47.432 0-16.798 4.381-25.205 12.725-33.55 5.511-5.511 16.295-13.883 24.295-13.883 2.314 0 178.16-1.157 394.498-1.157zM588.855 472.194c259.142 0 391.028 0 395.655 1.157 20.837 6.946 38.177 18.678 38.177 47.432 0 29.14-16.754 40.291-38.177 47.432-4.628 1.157-136.512 1.157-394.498 1.157s-389.871 0-394.498-1.157c-20.837-6.946-38.177-18.678-38.177-47.432 0-16.798 4.381-25.205 12.725-33.55 5.511-5.511 16.295-13.883 24.295-13.883 2.314 0 178.16-1.157 394.498-1.157zM588.855 761.416c-216.337 0-392.184 1.157-394.498 1.157-14.565 0-28.001 16.667-33.55 27.765-3.47 6.942-3.47 8.098-3.47 19.667 0 29.14 16.754 40.291 38.177 47.432 4.628 1.157 136.512 1.157 394.498 1.157s389.871 0 394.498-1.157c20.837-6.946 38.177-18.678 38.177-47.432 0-29.14-16.754-40.291-38.177-47.432-4.628-1.157-136.512-1.157-395.655-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["menu"],"defaultCode":60482,"grid":0},"properties":{"id":178,"order":48,"ligatures":"","prevSize":24,"code":60482,"name":"menu"},"setIdx":0,"setId":0,"iconIdx":160},{"icon":{"paths":["M349.379 121.658c12.324-18.487 19.326-34.707 49.747-34.707 25.605 0 36.512 18.65 45.118 35.863l1.157 155.022c0 151.552 0 152.709-2.314 160.807-2.583 10.333-10.030 16.972-16.197 23.138-7.15 7.15-13.561 10.412-28.922 10.412-28.81 0-37.099-17.471-48.589-34.707v-315.829zM592.325 86.952c20.735 0 37.524 15.39 42.805 31.236 2.314 5.785 3.47 5.785 3.47 84.452 0 50.903 0 80.982-1.157 85.61-5.904 17.708-13.782 26.541-27.765 35.863-5.785 3.47-6.942 2.314-19.667 2.314-29.928 0-39.948-15.725-47.432-38.177-1.157-3.47-1.157-35.863-1.157-80.982 0-46.275 0-77.512 1.157-80.982 7.495-22.485 19.172-39.334 49.747-39.334zM830.644 437.488c-11.487 17.231-19.794 34.707-48.589 34.707-15.447 0-21.724-3.214-28.922-10.412-6.156-6.156-13.612-12.801-16.197-23.138-2.314-8.098-2.314-9.255-2.314-160.807l1.157-155.022c3.34-6.68 6.453-15.708 11.569-20.824 8.306-8.306 20.494-15.040 35.863-15.040 26.325 0 38.607 18.211 47.432 35.863v314.673zM592.325 424.762c14.482 0 23.582 5.072 31.236 12.725 5.785 5.785 6.942 8.098 38.177 70.57l32.393 65.942 63.629 10.412c54.374 9.255 64.785 11.569 70.57 13.883 11.521 7.682 26.608 20.457 26.608 39.334 0 11.031-2.066 17.767-4.628 25.452-2.314 4.628-12.725 16.197-45.118 48.589l-42.805 42.805 10.412 76.355c10.412 70.57 10.412 76.355 9.255 83.295-5.715 22.86-18.813 40.491-47.432 40.491-3.47 0-9.255 0-12.725-1.157s-33.55-16.197-68.257-33.55l-63.629-31.236-63.629 31.236c-34.707 17.353-64.785 32.393-68.257 33.55s-9.255 1.157-12.725 1.157c-27.828 0-41.756-17.781-47.432-40.491-1.157-6.942-1.157-12.725 9.255-83.295l10.412-76.355-42.805-42.805c-40.084-40.084-41.565-37.927-48.589-59.002-1.157-3.47-1.157-10.412-1.157-15.040 0-17.625 13.096-31.999 25.452-38.177 8.098-4.628 10.412-4.628 71.727-15.040l63.629-10.412 31.236-64.785c21.98-42.805 34.707-64.785 37.020-68.257 10.062-10.062 17.305-16.197 38.177-16.197zM590.012 582.098s-8.098 13.883-16.197 31.236c-21.48 42.96-20.375 46.393-68.257 54.374-13.883 2.314-25.452 5.785-27.765 5.785-3.47 1.157-3.47 1.157 13.883 18.51 18.876 20.592 20.36 17.808 25.452 38.177 1.157 6.942 1.157 10.412-4.628 47.432-3.47 21.98-5.785 41.648-5.785 42.805 0 0.926 57.772-30.064 75.197-33.55 5.785-1.157 10.412-1.157 16.197 0 17.425 3.485 75.197 34.476 75.197 33.55 0-1.157-2.314-20.824-5.785-42.805-7.705-49.306-7.743-38.084 0-61.315 2.314-4.628 8.098-11.569 20.824-24.295 16.197-16.197 17.353-18.51 15.040-18.51-4.972 0-54.888-10.092-57.844-11.569-22.822-11.41-22.21-14.341-39.334-48.589-8.098-17.353-16.197-31.236-16.197-31.236z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["ratings"],"defaultCode":60536,"grid":0},"properties":{"id":180,"order":50,"ligatures":"","prevSize":24,"code":60536,"name":"ratings"},"setIdx":0,"setId":0,"iconIdx":161},{"icon":{"paths":["M592.325 65.598c26.265 0 38.566 19.677 45.118 39.334 1.157 4.628 1.157 136.512 1.157 394.498s0 389.871-1.157 394.498c-6.946 20.837-18.678 38.177-47.432 38.177-29.14 0-40.291-16.754-47.432-38.177-1.157-4.628-1.157-136.512-1.157-394.498s0-389.871 1.157-394.498c7.38-22.14 20.391-39.334 49.747-39.334zM397.969 258.798c13.837 0 22.092 3.581 28.922 10.412 9.913 9.913 18.51 20.38 18.51 40.491 0 5.785-2.314 11.569-4.628 16.197-3.47 6.942-8.098 12.725-85.61 90.237l-82.139 83.295 82.139 83.295c77.512 77.512 82.139 83.295 85.61 90.237 2.314 4.628 4.628 10.412 4.628 16.197 0 19.901-8.54 30.521-18.51 40.491-7.15 7.15-13.561 10.412-28.922 10.412-11.569 0-12.725-1.157-20.824-4.628-15.768-6.759-210.713-202.054-216.337-215.181-3.47-8.098-3.47-9.255-3.47-20.824 0-10.412-1.157-12.725 2.314-19.667 7.681-15.36 208.085-212.212 209.396-212.867 9.274-4.637 13.406-8.098 28.922-8.098zM784.369 258.798c-16.855 0-23.266 2.442-31.236 10.412-9.913 9.913-18.51 20.38-18.51 40.491 0 5.785 2.314 11.569 4.628 16.197 3.47 6.942 8.098 12.725 85.61 90.237l82.139 83.295-82.139 83.295c-77.512 77.512-82.139 83.295-85.61 90.237-2.314 4.628-4.628 10.412-4.628 16.197 0 19.901 8.54 30.521 18.51 40.491 7.15 7.15 13.561 10.412 28.922 10.412 11.569 0 12.725-1.157 20.824-4.628 15.768-6.759 210.713-202.054 216.337-215.181 3.47-8.098 3.47-9.255 3.47-20.824s0-12.725-3.47-20.824c-5.624-13.126-200.568-208.423-216.337-215.181-6.942-3.47-9.255-4.628-18.51-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["separator-vertical"],"defaultCode":60538,"grid":0},"properties":{"id":181,"order":51,"ligatures":"","prevSize":24,"code":60538,"name":"separator-vertical"},"setIdx":0,"setId":0,"iconIdx":162},{"icon":{"paths":["M515.971 38.362c145.767 0 178.16 0 182.788 1.157 3.47 1.157 8.098 3.47 11.569 4.628 5.886 2.943 256.45 256.26 259.142 260.299 1.157 3.47 4.628 9.255 5.785 13.883 1.157 5.785 1.157 17.353 1.157 55.53 0 26.608-1.157 50.903-1.157 55.53 0 24.602-23.019 42.805-47.432 42.805-24.183 0-41.391-14.016-46.275-33.55-2.314-6.942-2.314-10.412-2.314-34.707v-27.765h-80.982l-80.982-1.157-11.569-3.47c-5.785-2.314-15.040-5.785-19.667-8.098-18.077-9.039-27.496-25.625-38.177-41.648-6.222-9.331-6.849-20.265-9.255-34.707-1.157-6.942-1.157-43.962-1.157-82.139v-69.413h-150.395l-149.239 1.157c-12.121 5.194-25.929 10.689-30.079 23.138-9.364 28.090-6.942 15.931-6.942 145.767 0 122.63 0 126.1-2.314 133.042-4.889 19.552-21.611 33.55-46.275 33.55-29.275 0-42.432-18.96-47.432-43.962-1.157-5.785-1.157-60.158-1.157-135.355 0-112.218 0-126.1 2.314-135.355 9.017-45.086 36.549-82.482 72.884-100.649l16.197-8.098c8.476-4.238 26.66-9.255 37.020-9.255 4.628 0 86.767-1.157 183.945-1.157zM734.622 203.797v75.197h75.197l-37.020-38.177c-20.824-20.824-38.177-37.020-38.177-37.020zM226.749 568.216c59.487 0 73.246-2.58 94.865 4.628 8.607 2.869 17.819 13.66 21.98 21.98 12.886 19.328 1.1 46.332-9.255 56.687-5.724 5.724-14.022 9.313-21.98 12.725h-168.905c-7.175-3.587-15.377-7.279-20.824-12.725-16.462-16.462-19.32-50.093-1.157-68.257 5.59-5.59 16.588-13.883 26.608-13.883 3.47 0 39.334-1.157 78.668-1.157zM588.855 568.216c39.334 0 74.040 1.157 78.668 1.157 24.163 0 42.805 23.51 42.805 48.589 0 26.74-16.96 39.589-37.020 46.275l-80.982 1.157c-72.884 0-82.139-1.157-87.923-2.314-20.138-6.714-33.55-18.39-33.55-46.275 0-23.309 10.481-34.741 26.608-42.805 4.628-2.314 10.412-4.628 13.883-4.628s38.177-1.157 77.512-1.157zM950.961 568.216c59.449 0 71.996-2.61 93.708 4.628 8.607 2.869 17.819 13.66 21.98 21.98 12.886 19.328 1.1 46.332-9.255 56.687-5.437 5.437-13.661 9.144-20.824 12.725h-168.905c-7.971-3.416-16.247-6.992-21.98-12.725-26.693-26.693-10.342-82.139 26.608-82.139 3.47 0 39.334-1.157 78.668-1.157zM252.201 761.416c-14.35 0-26.726 8.217-34.707 16.197-15.459 15.459-13.883 30.696-13.883 67.1 0 39.701 3.953 53.025 16.197 77.512 13.253 26.507 36.031 53.284 64.785 64.785 13.31 5.324 22.035 10.887 37.020 13.883 9.255 2.314 23.138 1.157 268.397 1.157h259.142l11.569-2.314c22.467-3.744 41.516-14.073 56.687-25.452 36.454-27.341 59.002-65.263 59.002-129.572 0-50.914-1.364-72.068-41.648-82.139-5.785-1.157-9.255-1.157-15.040 0l-13.883 4.628c-12.792 4.264-20.205 20.031-26.608 31.236v34.707c0 51.446-2.4 56.89-37.020 71.727h-504.403c-34.448-14.764-37.020-20.477-37.020-71.727v-34.707c-10.534-18.437-20.35-37.020-48.589-37.020z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["page-break"],"defaultCode":60545,"grid":0},"properties":{"id":182,"order":52,"ligatures":"","prevSize":24,"code":60545,"name":"page-break"},"setIdx":0,"setId":0,"iconIdx":163},{"icon":{"paths":["M593.483 86.952l308.889 1.157 11.569 2.314c29.691 4.948 58.737 25.87 74.040 46.275 3.47 4.628 10.412 11.569 13.883 17.353 10.414 17.357 15.301 34.596 20.824 56.687 1.157 5.785 1.157 102.963 1.157 310.046s0 304.261-1.157 310.046c-2.788 11.155-5.456 27.108-10.412 37.020-9.472 18.942-21.895 38.691-38.177 50.903-4.628 3.47-11.569 10.412-17.353 13.883-13.602 8.162-26.597 13.108-42.805 18.51l-13.883 2.314h-622.405c-41.968-9.327-76.243-28.352-96.022-61.315-9.93-16.55-17.739-28.538-21.98-49.747l-2.314-11.569v-620.091l2.314-11.569c5.988-29.94 20.478-50.557 39.334-69.413 5.785-5.785 12.725-13.883 17.353-16.197 17.847-8.923 39.183-25.452 65.942-25.452 1.157 0 141.14-1.157 311.202-1.157zM893.116 856.28c15.013-5.243 27.148-17.383 32.393-32.393v-606.208c-4.953-14.86-17.324-27.37-32.393-32.393l-300.791-1.157c-291.536 0-301.947 0-307.732 2.314-14.738 4.912-24.508 17.306-30.079 31.236v606.208c5.243 15.013 17.383 27.148 32.393 32.393h606.208zM444.244 423.606c-35.61 0-53.939 37.168-42.805 70.57 2.34 5.853 156.321 161.695 167.749 166.592 8.098 3.47 9.255 3.47 20.824 3.47s12.725 1.157 20.824-3.47c16.831-9.617 164.151-157.599 167.749-166.592 4.223-12.669 6.595-32.333-1.157-43.962-4.672-7.009-13.565-18.019-21.98-20.824l-13.883-4.628c-9.837-1.967-18.839 0.882-26.608 3.47-4.628 2.314-16.197 11.569-65.942 61.315l-59.002 59.002-59.002-57.844c-40.491-39.334-60.158-60.158-63.629-61.315-4.003-2.001-16.672-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["select"],"defaultCode":60574,"grid":0},"properties":{"id":184,"order":54,"ligatures":"","prevSize":24,"code":60574,"name":"select"},"setIdx":0,"setId":0,"iconIdx":164},{"icon":{"paths":["M299.634 134.384c52.060 0 98.335 1.157 102.963 1.157 25.626 0 42.805 22.856 42.805 48.589 0 24.080-15.331 39.046-33.55 45.118-6.942 2.314-9.255 2.314-34.707 2.314h-27.765v96.022h192.044v-8.098c0-26.034 16.395-46.474 30.079-60.158 10.68-10.68 25.845-20.183 41.648-25.452 6.942-2.314 17.353-2.314 165.435-2.314 165.448 0 145.253-2.732 183.945 6.942 30.793 7.698 51.242 39.534 59.002 70.57 1.157 6.942 2.314 18.51 2.314 67.1s-1.157 60.158-2.314 67.1c-7.426 29.704-21.356 46.386-42.805 62.472-9.79 7.343-20.712 9.516-33.55 12.725-8.098 1.157-26.608 2.314-166.592 2.314-148.082 0-158.494 0-165.435-2.314-32.892-10.965-59.516-34.452-68.257-69.413-1.157-4.628-3.47-11.569-3.47-16.197v-8.098h-192.044v288.064h192.044v-8.098c0-44.314 39.601-76.711 75.197-85.61 8.098-2.314 15.040-1.157 167.749-1.157h159.65c41.162 10.292 64.582 32.94 77.512 71.727 2.314 5.785 2.314 12.725 2.314 67.1 0 58.446 0.362 59.868-5.785 84.452-4.665 18.657-19.289 36.767-33.55 46.275-8.615 5.744-17.811 12.262-28.922 15.040-4.628 1.157-15.040 2.314-21.98 3.47-9.255 1.157-63.629 1.157-160.807 1.157l-148.082-1.157c-37.263-9.316-70.993-31.039-78.668-69.413-1.157-5.785-4.628-13.883-4.628-18.51v-8.098h-105.277c-97.179 0-105.277 0-112.218-2.314-32.892-10.965-59.516-34.452-68.257-69.413l-3.47-9.255v-497.461h-27.765c-25.452 0-27.765 0-34.707-2.314-18.252-6.084-33.55-21.252-33.55-45.118 0-22.727 12.685-39.32 30.079-45.118 3.47-1.157 8.098-3.47 11.569-3.47s49.747-1.157 101.806-1.157zM926.666 328.741h-288.064v94.865h288.064v-94.865zM782.055 713.983h-143.454v96.022h288.064v-96.022h-144.611z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["forums"],"defaultCode":60575,"grid":0},"properties":{"id":185,"order":55,"ligatures":"","prevSize":24,"code":60575,"name":"forums"},"setIdx":0,"setId":0,"iconIdx":165},{"icon":{"paths":["M590.012 86.952c42.072 0 73.75 11.76 99.492 28.922 15.2 10.133 272.012 211.854 284.594 224.436 19.932 19.932 37.581 43.29 43.962 75.197 9.316 46.583 6.942 27.166 6.942 220.965 0 192.023 1.896 174.467-6.942 218.652-9.543 47.714-52.557 77.247-93.708 93.708-5.785 2.314-15.040 3.47-19.667 4.628-6.942 1.157-62.472 2.314-314.673 2.314h-305.418l-11.569-3.47c-45.776-7.629-73.050-37.628-96.022-68.257-11.196-14.929-14.319-36.885-18.51-57.844-1.157-8.098-1.157-67.1-1.157-197.827 0-185.102 1.157-186.259 3.47-197.827 5.46-27.307 16.183-50.885 30.079-69.413 3.47-4.628 10.412-15.040 17.353-21.98 18.856-18.856 284.908-222.647 285.751-223.279 15.656-11.742 40.304-21.019 62.472-25.452 5.785-1.157 12.725-2.314 15.040-2.314s10.412-1.157 18.51-1.157zM596.953 184.13h-13.883c-9.837 0-23.454 4.84-30.079 9.255-0.552 0.366-255.152 193.837-279.966 218.652-7.96 7.96-13.085 19.942-16.197 32.393-2.314 8.098-2.314 13.883-2.314 190.886 0 159.65 1.157 185.102 2.314 189.729 4.939 14.815 15.641 27.338 31.236 31.236 6.942 2.314 11.569 2.314 306.574 2.314h298.476c11.183-7.455 23.86-13.015 30.079-25.452 2.314-3.47 3.47-10.412 4.628-13.883 1.157-4.628 1.157-68.257 1.157-187.416 0-168.905 0-180.474-2.314-187.416-4.084-12.248-10.718-26.915-19.667-35.863-7.288-9.111-269.458-210.033-279.966-216.337-8.077-4.039-19.964-8.098-30.079-8.098zM400.283 616.805c-24.659 0-37.308 13.736-47.432 28.922-3.47 5.785-3.47 6.942-3.47 19.667 0 36.954 32.278 46.217 57.844 59.002 51.983 25.991 102.513 35.863 182.788 35.863 52.441 0 60.93 0.964 97.179-8.098l32.393-8.098c30.73-7.682 53.332-19.725 78.668-32.393 18.355-9.179 32.393-19.735 32.393-46.275 0-31.396-21.162-48.589-52.060-48.589-13.555 0-15.277 5.325-27.765 11.569-45.91 22.955-91.437 35.863-160.807 35.863-33.375 0-43.147-2.501-69.413-5.785-44.351-5.543-75.243-23.161-107.59-39.334-2.314-1.157-8.098-2.314-12.725-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["index"],"defaultCode":60638,"grid":0},"properties":{"id":186,"order":56,"ligatures":"","prevSize":24,"code":60638,"name":"index"},"setIdx":0,"setId":0,"iconIdx":166},{"icon":{"paths":["M562.247 821.574c-38.14 0-70.135-5.296-101.806-9.255l-4.628 11.569c-5.831 14.574-18.782 37.429-27.765 50.903l-16.197 24.295c-14.022 21.033-37.113 45.149-61.315 53.217-3.47 1.157-9.255 2.314-15.040 2.314-59.867 0-96.385-28.128-127.257-59.002-15.887-15.887-28.275-27.95-40.491-46.275-20.381-30.571-44.7-65.325-50.903-108.747-13.694-95.858-6.626-216.023 12.725-303.104 13.339-60.024 26.432-120.027 43.962-177.004 8.69-28.242 14.906-68.123 31.236-84.452 23.485-23.485 60.185-41.163 93.708-55.53 18.947-8.12 36.955-12.999 59.002-18.51 26.491-6.623 58.857-15.040 90.237-15.040 13.383 0 22.039 4.686 28.922 11.569 2.314 2.314 6.942 5.785 9.255 9.255s13.883 30.079 25.452 60.158l20.824 54.374h4.628c2.314 0 15.040-2.314 28.922-2.314h48.589c13.883 0 26.608 2.314 28.922 2.314h4.628l20.824-54.374c11.569-30.079 23.138-56.687 25.452-60.158 7.004-10.504 19.54-20.824 35.863-20.824 84.985 0 160.79 32.385 218.652 61.315 15.849 7.925 39.060 22.589 46.275 37.020 8.257 16.513 22.056 68.484 28.922 89.080 9.892 29.675 19.395 61.112 25.452 91.394 2.314 11.569 8.098 30.079 10.412 41.648 14.611 73.059 28.922 147.2 28.922 234.848 0 64.069-4.328 112.851-27.765 153.866-30.891 54.061-67.236 101.193-120.316 133.042-21.957 13.175-48.286 25.452-82.139 25.452-31.657 0-47.887-15.494-64.785-32.393-19.374-19.374-37.197-39.69-49.747-64.785-4.744-9.489-21.98-33.064-21.98-43.962 0-1.157-1.157-1.157-2.314-1.157-12.671 0-39.022 5.235-54.374 6.942-10.412 1.157-32.393 2.314-47.432 2.314h-55.53zM746.192 237.347c40.543 13.515 107.59 12.662 107.59 65.942 0 24.711-10.151 35.733-26.608 43.962-5.785 3.47-9.255 4.628-17.353 4.628-15.611 0-49.171-9.98-64.785-13.883-51.019-12.754-88.995-20.824-155.022-20.824-66.617 0-102.824 7.775-155.022 20.824-15.575 3.894-49.243 13.883-64.785 13.883-26.712 0-43.962-21.040-43.962-48.589 0-16.798 4.381-25.205 12.725-33.55 11.822-11.822 17.677-12.228 42.805-18.51 13.883-3.47 31.236-8.098 38.177-9.255s13.883-4.628 13.883-4.628c-1.204-3.162-19.155-48.589-20.824-48.589-23.454 0-54.654 13.205-74.040 19.667-20.167 6.722-40.598 20.024-56.687 30.079l-6.942 19.667c-10.112 30.34-21.577 74.944-31.236 108.747-16.968 59.39-25.296 120.225-33.55 186.259-3.51 28.082-5.785 37.98-5.785 75.197 0 55.373 0.726 90.531 18.51 126.1 12.368 24.738 29.489 46.115 46.275 67.1 9.505 11.882 23.746 22.286 37.020 28.922 4.628 2.314 11.569 5.785 12.725 5.785 2.314 1.157 3.47-1.157 10.412-9.255l13.883-18.51c5.298-7.063 16.225-29.563 19.667-37.020-2.896-0.965-33.126-9.044-35.863-10.412-13.997-6.998-26.608-22.491-26.608-42.805 0-27.295 19.054-48.589 46.275-48.589 13.616 0 54.426 11.451 70.57 15.040 55.444 12.321 101.978 19.667 172.376 19.667 84.078 0 147.165-9.212 212.867-28.922 19.667-5.785 21.98-5.785 30.079-5.785 27.222 0 46.275 21.294 46.275 48.589 0 38.364-32.121 43.485-61.315 53.217 9.91 19.822 29.958 49.626 45.118 64.785 6.193 6.193 35.992-13.986 41.648-18.51 14.5-11.6 33.33-30.327 43.962-46.275l16.197-24.295c34.57-51.854 28.539-152.687 19.667-232.534-1.157-10.412-4.628-25.452-5.785-34.707-10.288-82.299-33.921-153.896-56.687-226.749l-10.412-34.707c-16.527-8.264-38.533-22.485-57.844-28.922-19.135-6.378-38.751-11.183-61.315-16.197-10.412-2.314-20.824-4.628-23.138-4.628h-3.47c-4.13 9.633-2.876 4.511-19.667 48.589zM444.244 424.762c26.99 0 37.132 7.575 54.374 16.197 24.854 12.427 42.805 43.605 42.805 79.825 0 41.954-20.264 64.797-46.275 82.139-14.947 9.966-27.892 13.883-53.217 13.883-20.581 0-28.066-3.419-41.648-11.569-28.717-14.359-50.903-42.332-50.903-84.452 0-23.211 3.358-25.116 8.098-39.334 3.5-10.502 10.242-18.339 18.51-26.608 4.628-4.628 9.255-10.412 12.725-12.725 6.731-4.487 19.863-10.093 27.765-12.725 3.47-1.157 8.098-3.47 10.412-3.47s10.412-1.157 17.353-1.157zM733.465 424.762c-6.942 0-15.040 1.157-17.353 1.157-37.383 0-65.877 41.453-75.197 69.413-1.157 5.785-2.314 11.569-2.314 25.452 0 35.78 12.946 52.28 31.236 70.57 14.617 14.617 33.865 25.452 61.315 25.452 44.853 0 71.394-20.819 87.923-49.747 8.912-14.853 11.569-23.434 11.569-46.275 0-31.844-10.221-47.665-25.452-65.942-15.279-19.099-38.883-30.079-71.727-30.079z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-discord"],"defaultCode":60643,"grid":0},"properties":{"id":187,"order":57,"ligatures":"","prevSize":24,"code":60643,"name":"brand-discord"},"setIdx":0,"setId":0,"iconIdx":167},{"icon":{"paths":["M594.64 65.598c330.869 0 355.164 0 362.106 2.314 48.554 12.138 76.153 40.769 100.649 77.512 5.399 8.098 10.516 25.968 12.725 37.020 2.314 10.412 1.157 18.51 1.157 178.16 0 130.728 0 170.062-1.157 182.788-5.431 38.027-11.384 78.562-23.138 109.904-13.316 35.512-28.654 68.654-46.275 99.492-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-89.35 0-154.473-19.393-215.181-49.747-94.659-47.329-167.563-118.788-215.181-214.024-21.427-42.855-38.388-89.405-46.275-144.611-8.066-56.461-4.628-46.509-4.628-211.71 0-156.18-1.157-167.749 1.157-177.004 12.444-62.22 56.506-100.603 116.845-115.689 4.628-1.157 9.255-1.157 10.412-1.157s161.964-1.157 357.478-1.157zM588.855 161.619c-185.102 0-340.124 1.157-343.596 1.157-20.731 0-32.817 20.657-39.334 35.863l-1.157 157.337c0 194.797-7.017 181.404 30.079 292.692 13.844 41.53 44.037 79.454 69.413 109.904 37.816 45.379 93.025 77.879 151.552 102.963 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c18.853-12.569 37.764-30.046 53.217-48.589 5.785-6.942 15.040-16.197 18.51-20.824 38.157-50.877 68.816-112.667 79.825-189.729 2.314-13.883 1.157-27.765 1.157-182.788v-166.592c-5.273-12.303-12.78-27.012-25.452-31.236-3.47-1.157-10.412-3.47-15.040-4.628s-128.414-1.157-344.752-1.157zM399.126 403.408c-27.862 0-35.038 12.067-46.275 28.922-3.47 5.785-3.47 8.098-3.47 19.667s1.157 12.725 4.628 20.824c4.79 11.177 203.484 207.699 214.024 214.024 12.443 8.295 31.016 4.315 43.962 0 10.483-4.194 207.936-199.821 214.024-214.024 3.47-8.098 4.628-9.255 4.628-20.824 0-29.511-18.744-47.432-48.589-47.432-11.569 0-12.725 0-20.824 3.47s-12.725 9.255-89.080 85.61l-82.139 80.982-82.139-80.982c-76.355-76.355-82.139-82.139-89.080-85.61s-9.255-4.628-19.667-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-pocket"],"defaultCode":60672,"grid":0},"properties":{"id":189,"order":59,"ligatures":"","prevSize":24,"code":60672,"name":"brand-pocket"},"setIdx":0,"setId":0,"iconIdx":168},{"icon":{"paths":["M691.818 38.362c149.239 0 159.65 0 167.749 2.314 58.833 14.708 102.218 55.281 114.532 116.845 2.314 10.412 2.314 26.608 2.314 312.359 0 289.221 0 300.791-2.314 306.574-6.175 18.527-23.33 33.55-47.432 33.55-4.628 0-10.412-1.157-13.883-2.314-8.532-2.844-63.751-35.986-68.257-40.491-3.47-3.47-6.942-9.255-8.098-12.725l-4.628-13.883c-3.956-19.775 5.35-33.116 15.040-42.805 6.683-6.683 13.907-12.725 25.452-12.725l6.942-1.157v-252.201c0-177.004 0-253.358-1.157-257.986-6.57-19.71-17-28.936-35.863-37.020l-152.709-1.157c-150.395 0-155.022 0-161.964 2.314-11.079 2.77-20.641 9.72-26.608 19.667-9.029 12.036-16.55 25.452-35.863 25.452h-13.883c-11.497 0-18.784-6.059-25.452-12.725-10.216-10.216-16.197-19.488-16.197-39.334 0-12.404 6.623-18.75 12.725-28.922 18.181-30.299 51.718-52.222 91.394-60.158 5.785-1.157 11.569-2.314 13.883-2.314s76.355-1.157 164.277-1.157zM492.833 231.562c135.355 0 159.65 1.157 168.905 2.314 49.564 9.913 85.466 36.735 105.277 76.355 6.948 13.895 10.872 29.607 15.040 46.275l1.157 300.791c0 193.2 0 303.104-1.157 306.574-7.326 21.98-22.469 39.334-52.060 39.334-3.47 0-9.255-2.314-11.569-3.47s-54.374-31.236-114.532-67.1l-109.904-65.942-109.904 65.942c-60.158 35.863-111.061 65.942-114.532 67.1s-9.255 3.47-12.725 3.47c-19.303 0-29.28-6.142-39.334-16.197-8.925-8.925-9.141-13.427-12.725-27.765-1.157-5.785-1.157-102.963-1.157-304.261l1.157-296.163c10.057-45.257 27.513-80.832 62.472-101.806 11.434-6.861 25.013-16.376 38.177-19.667 4.628-1.157 13.883-2.314 18.51-3.47 8.098-1.157 37.020-2.314 168.905-2.314zM495.148 328.741c-142.117 0-151.094-3.699-170.062 5.785-12.484 6.242-18.265 18.931-23.138 33.55-1.157 4.628-1.157 72.884-1.157 253.358v247.574l85.61-50.903c46.275-27.765 86.767-52.060 90.237-53.217s9.255-3.47 12.725-3.47c10.162 0 19.069 2.593 25.452 5.785 2.314 1.157 42.805 24.295 87.923 52.060l83.295 49.747v-252.201l-1.157-253.358c-8.888-17.773-17.557-24.907-34.707-34.707h-155.022z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["bookmarks"],"defaultCode":60680,"grid":0},"properties":{"id":190,"order":60,"ligatures":"","prevSize":24,"code":60680,"name":"bookmarks"},"setIdx":0,"setId":0,"iconIdx":169},{"icon":{"paths":["M593.483 39.52c18.625 0 37.51 9.136 46.275 20.824 13.589 13.589 47.548 98.335 54.374 98.335 15.738 0 103.434 15.738 111.061 20.824 3.47 2.314 11.569 6.942 16.197 11.569 11.75 11.75 18.51 26.625 18.51 48.589 0 12.062-2.881 25.723-8.098 33.55-3.47 4.628-15.040 16.197-41.648 42.805l-35.863 35.863 8.098 48.589c6.942 42.805 8.098 48.589 8.098 57.844 0 35.736-31.369 62.472-67.1 62.472-10.969 0-19.696-2.329-26.608-5.785-2.314-1.157-24.295-11.569-46.275-23.138l-40.491-21.98-42.805 23.138c-23.138 12.725-46.275 23.138-49.747 24.295s-10.412 3.47-15.040 3.47c-36.439 0-60.318-17.83-69.413-45.118-1.157-4.628-3.47-11.569-3.47-17.353 0-9.255 1.157-16.197 8.098-59.002l8.098-47.432-37.020-37.020c-35.863-34.707-38.177-38.177-41.648-46.275-5.169-10.337-8.098-19.809-8.098-34.707 0-24.246 19.496-47.363 37.020-54.374 18.429-9.215 23.286-6.963 63.629-12.725 24.295-3.47 45.118-8.098 46.275-8.098 2.314 0 5.785-5.785 25.452-45.118l21.98-46.275 9.255-8.098c13.036-13.036 26.034-19.667 50.903-19.667zM515.971 399.311c13.484-7.035 55.137-31.236 74.040-31.236 20.851 0 22.589 4.599 46.275 17.353 15.040 8.098 27.765 13.883 27.765 13.883s-2.314-15.040-5.785-32.393c-4.628-30.079-4.628-32.393-3.47-39.334 6.1-24.406 5.194-17.921 31.236-43.962 21.98-20.824 23.138-23.138 20.824-24.295-1.157 0-15.040-2.314-31.236-4.628-26.608-3.47-30.079-5.785-38.177-9.255-5.785-2.314-10.412-4.628-13.883-9.255-0.159-0.213-31.97-59.556-33.55-62.472-1.483 2.721-33.543 62.464-33.55 62.472-3.47 4.628-8.098 6.942-13.883 9.255-6.942 3.47-10.412 4.628-35.863 8.098-15.040 2.314-30.079 5.785-32.393 5.785h-4.628l24.295 23.138c20.255 20.255 24.378 22.233 30.079 39.334 1.157 3.47 2.314 9.255 2.314 11.569 0 1.678-10.067 63.532-10.412 65.942zM129.572 931.479c0-3.564 16.197-91.911 16.197-97.179 0-1.157-3.47-5.785-8.098-10.412s-21.98-19.667-37.020-34.707c-32.177-32.177-29.637-26.441-38.177-52.060-1.157-3.47-2.314-11.569-2.314-17.353 0-32.459 21.673-54.271 46.275-62.472 1.68-0.56 99.588-15.714 102.963-16.197l23.138-46.275c21.98-45.118 21.98-46.275 30.079-54.374 11.22-11.22 26.375-19.667 47.432-19.667 24.415 0 43.184 11.559 53.217 26.608 1.446 2.169 46.969 90.465 48.589 93.708 0.817 1.634 86.924 10.851 102.963 16.197 16.052 5.35 23.776 12.419 33.55 25.452 6.538 8.719 12.725 19.262 12.725 32.393 0 15.925-2.186 24.037-8.098 35.863-4.628 10.412-5.785 10.412-41.648 46.275l-37.020 35.863 8.098 46.275c5.785 32.393 8.098 49.747 8.098 56.687 0 24.759-10.267 41.937-25.452 52.060-12.981 8.653-19.415 13.883-41.648 13.883-12.478 0-19.292-0.97-26.608-4.628-2.314-1.157-21.98-11.569-45.118-23.138l-41.648-21.98-13.883 6.942c-23.403 10.029-68.303 42.805-99.492 42.805-20.043 0-28.247-4.562-40.491-12.725-3.47-2.314-8.098-9.255-11.569-12.725-10.25-10.25-15.040-25.013-15.040-45.118zM1034.256 834.3c0 5.12 16.197 93.766 16.197 97.179 0 40.958-25.987 70.57-67.1 70.57-9.255 0-12.725 0-18.51-2.314-4.628-1.157-27.765-12.725-52.060-25.452l-42.805-21.98c-26.252 15.003-73.634 40.741-97.179 48.589-3.47 1.157-9.255 1.157-16.197 1.157-37.678 0-67.1-25.454-67.1-62.472 0-11.569 1.157-17.353 8.098-60.158l8.098-46.275-38.177-37.020c-34.707-34.707-38.177-38.177-41.648-45.118-4.944-9.887-6.942-16.45-6.942-30.079 0-35.294 20.957-54.804 47.432-63.629 2.749-0.916 97.546-15.588 101.806-16.197 0.778-0.111 48.552-93.652 48.589-93.708 10.101-15.153 27.504-26.608 52.060-26.608 22.065 0 35.134 7.369 47.432 19.667l9.255 8.098c28.033 60.907 43.108 91.276 58.475 121.471l-13.356-28.92c3.191 0.504 101.443 15.689 102.963 16.197 24.844 8.281 46.275 29.624 46.275 62.472 0 14.479-2.279 19.582-6.942 31.236-4.628 9.255-5.785 10.412-33.55 38.177-16.197 16.197-32.393 32.393-37.020 35.863-4.628 4.628-8.098 8.098-8.098 9.255zM384.086 879.419c0-3.399-9.255-55.373-9.255-59.002 0-9.337 0.42-17.037 4.628-25.452 3.47-6.942 6.942-10.412 26.608-30.079l23.138-23.138c-16.49-2.473-61.346-6.963-71.727-13.883-18.834-12.557-15.942-11.059-32.393-43.962l-15.040-28.922-13.883 27.765c-12.525 23.262-13.147 32.289-25.452 40.491-13.562 9.040-18.842 8.641-47.432 12.725-16.197 2.314-30.079 4.628-31.236 4.628-2.509 0 46.46 46.739 50.903 57.844 1.157 4.628 3.47 10.412 3.47 15.040 0 2.475-9.824 65.197-10.412 68.257 3.013-1.643 58.55-29.928 62.472-31.236 4.628-1.157 8.098-1.157 15.040-1.157 14.586 0 42.67 16.947 55.53 24.295 10.412 5.785 15.040 6.942 15.040 5.785zM869.979 654.983s-6.942 12.725-15.040 28.922c-16.413 31.183-13.819 31.58-32.393 43.962-14.577 7.288-52.773 10.537-71.727 13.883l23.138 23.138c28.123 26.562 23.13 20.8 31.236 45.118 1.157 5.785 0 10.412-4.628 38.177-3.47 17.353-4.628 32.393-4.628 32.393 2.785-1.336 59.533-29.099 62.472-30.079 3.47-1.157 8.098-1.157 11.569-1.157 14.207 0 62.579 26.662 74.040 32.393 0 0-3.47-13.883-5.785-30.079-4.628-23.138-4.628-31.236-4.628-38.177 0-4.628 2.314-11.569 3.47-15.040 4.588-11.469 53.644-57.844 50.903-57.844-4.315 0-63.59-9.243-67.1-10.412-6.147-2.049-17.041-9.788-19.667-15.040-0.653-1.306-30.121-57.929-31.236-60.158z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["stars"],"defaultCode":60728,"grid":0},"properties":{"id":192,"order":62,"ligatures":"","prevSize":24,"code":60728,"name":"stars"},"setIdx":0,"setId":0,"iconIdx":170},{"icon":{"paths":["M375.988 909.497c-5.582 0-200.951 45.118-223.279 45.118-17.167 0-35.068-13.809-39.334-26.608l-4.628-13.883c-1.157-3.47-1.157-8.098-1.157-11.569s13.883-43.962 30.079-91.394l27.765-85.61c-10.758-21.516-23.896-47.594-33.55-71.727-16.416-41.043-21.98-76.201-21.98-135.355 0-25.452 0-35.863 1.157-47.432 11.921-83.44 44.054-150.221 86.767-203.612 4.628-5.785 13.883-17.353 20.824-24.295l23.138-23.138c14.515-14.515 29.018-23.603 45.118-37.020 38.817-32.347 86.139-51.247 137.669-70.57 30.486-11.432 65.228-16.921 100.649-21.98 8.098-1.157 20.824-3.47 27.765-3.47s23.138-1.157 34.707-1.157c172.794 0 285.528 68.033 372.517 155.022 22.89 22.89 37.283 46.669 55.53 74.040 10.463 15.693 25.637 46.34 31.236 65.942 11.796 41.285 25.452 74.344 25.452 129.572 0 112.424-33.284 188.219-82.139 253.358-43.125 57.501-99.186 101.653-166.592 135.355-21.897 10.949-44.156 18.729-68.257 27.765-52.499 19.688-92.69 25.452-165.435 25.452-84.562 0-137.311-11.58-196.671-37.020-8.098-3.47-16.197-5.785-17.353-5.785zM596.953 184.13h-40.491c-24.028 0-48.973 6.17-70.57 11.569-42.576 10.643-82.299 25.944-114.532 47.432-15.075 10.051-37.584 22.544-49.747 34.707-11.366 11.366-36.011 34.603-46.275 47.432-19.525 24.407-42.403 59.911-52.060 93.708-2.314 8.098-6.942 20.824-9.255 28.922-16.423 57.483-7.518 142.298 13.883 185.102 7.732 15.463 16.208 33.571 25.452 49.747 8.862 15.507 12.725 16.054 12.725 35.863v10.412l-18.51 55.53c-10.412 30.079-18.51 56.687-18.51 56.687 152.633-31.003 146.643-31.236 153.866-31.236 19.139 0 42.18 15.217 59.002 20.824 38.488 12.829 78.048 20.53 127.257 25.452 61.907 4.762 115.335-9.815 161.964-23.138 42.694-12.198 77.346-34.589 109.904-57.844 8.098-5.785 20.824-15.040 27.765-21.98l24.295-24.295c6.942-6.942 15.040-18.51 19.667-24.295 38.275-47.843 63.629-110.275 63.629-195.514 0-62.836-24.33-112.275-48.589-152.709-9.388-15.645-23.421-34.99-37.020-48.589-28.44-28.44-58.68-55.949-97.179-75.197-57.238-28.619-110.315-48.589-196.671-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["message-circle-2"],"defaultCode":60735,"grid":0},"properties":{"id":193,"order":63,"ligatures":"","prevSize":24,"code":60735,"name":"message-circle-2"},"setIdx":0,"setId":0,"iconIdx":171},{"icon":{"paths":["M835.272 88.108c26.382 0 43.68 9.332 59.002 20.824 4.628 3.47 9.255 10.412 12.725 13.883 7.821 7.821 15.456 22.485 18.51 34.707 1.157 6.942 2.314 16.197 2.314 68.257v60.158l11.569 3.47c23.454 9.38 47.296 19.53 63.629 35.863 27.294 27.294 51.455 53.113 62.472 97.179 2.98 11.922 6.942 27.726 6.942 41.648 0 37.359-6.248 69.416-20.824 93.708-3.47 5.785-6.942 16.197-10.412 20.824-9.387 12.515-20.87 28.032-33.55 38.177-11.56 9.248-30.125 24.545-43.962 30.079-5.785 2.314-16.197 5.785-23.138 8.098l-12.725 4.628v60.158c0 50.903-1.157 61.315-2.314 67.1-13.621 40.865-40.121 70.57-94.865 70.57-20.038 0-34.801-8.934-47.432-17.353-3.47-2.314-52.060-41.648-108.747-89.080l-101.806-85.61h-30.079v93.708c0 96.396 8.674 113.669-19.667 156.18-11.626 17.439-27.418 26.239-48.589 34.707l-11.569 3.47h-40.491c-55.805 0-40.738 1.059-69.413-10.412-27.336-10.934-43.296-37.83-50.903-68.257l-1.157-104.12v-105.277h-56.687c-68.147 0-53.501 3.907-79.825-9.255-30.259-15.13-46.301-35.965-55.53-72.884v-222.122c8.692-39.118 33.223-70.737 72.884-78.668l10.412-2.314 381.773-2.314 91.394-76.355c50.903-41.648 98.335-80.982 106.434-87.923 19.669-14.751 32.467-25.452 63.629-25.452zM830.644 754.475v-563.403l-106.434 89.080c-90.57 75.263-102.639 86.298-122.63 94.865l-28.922 1.157h-30.079v192.044h23.138c22.452 0 30.781 0.233 43.962 4.628 3.47 2.314 38.177 30.079 113.375 92.55zM445.401 376.173h-240.632v192.044h240.632v-192.044zM927.822 555.49c23.015-15.343 47.432-39.954 47.432-77.512 0-43.431-18.926-71.513-46.275-87.923 0 0-1.157 38.177-1.157 83.295v82.139zM421.106 665.395h-23.138v192.044h47.432v-192.044h-24.295z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["speakerphone"],"defaultCode":60769,"grid":0},"properties":{"id":194,"order":64,"ligatures":"","prevSize":24,"code":60769,"name":"speakerphone"},"setIdx":0,"setId":0,"iconIdx":172},{"icon":{"paths":["M591.168 12.284c13.714 0 25.032 6.522 32.393 13.883 9.215 9.215 44.996 84.85 146.924 290.379 45.48 7.107 179.864 26.62 234.848 34.707 39.334 5.785 75.197 11.569 79.825 12.725 19.263 4.816 33.55 21.838 33.55 46.275 0 12.92-3.179 17.928-6.942 25.452-3.929 7.858-207.058 204.419-212.867 209.396-15.070 15.070-17.476 14.311-33.55 19.667-29.203 7.3-55.53-18.796-55.53-47.432 0-15.828 4.678-18.608 9.255-27.765 2.152-4.303 13.393-11.223 145.767-145.767-38.774-6.462-77.285-10.898-143.454-20.824-46.275-6.942-87.923-12.725-91.394-13.883-11.228-3.743-19.895-6.090-26.608-15.040-4.628-5.785-9.255-11.569-20.824-34.707-8.098-16.197-30.079-63.629-49.747-104.12-22.686-46.707-38.262-74.256-42.805-85.61l-27.765 56.687c-26.608 54.374-28.922 56.687-34.707 62.472-7.973 7.973-17.060 12.725-31.236 12.725-35.37 0-63.5-33.809-45.118-70.57 5.124-10.247 86.149-173.454 91.394-183.945 10.442-20.886 18.885-34.707 48.589-34.707zM155.022 59.716c8.61 0 16.437 3.551 23.138 5.785 9.322 3.73 880.966 875.951 888.489 888.489 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-12.725-9.255-38.177-34.707l-31.236-30.079 1.157 4.628c0 3.47 1.157 11.569 1.157 18.51 0 16.007-7.265 25.775-15.040 33.55-9.204 6.137-21.92 17.079-39.334 12.725-3.47-1.157-10.412-2.314-13.883-3.47s-67.1-35.863-141.14-75.197l-135.355-70.57-71.727 38.177c-39.334 20.824-102.963 53.217-139.984 72.884-57.844 30.079-69.413 37.020-76.355 38.177-22.892 4.578-46.368-8.376-52.060-25.452-2.437-7.315-5.785-11.967-5.785-20.824 0-2.314 11.569-75.197 26.608-160.807l26.608-155.022-23.138-21.98c-12.725-12.725-63.629-62.472-112.218-109.904s-90.237-87.923-92.55-91.394c-4.84-7.257-9.255-17.253-9.255-28.922 0-20.906 12.643-35.822 26.608-42.805 15.042-7.521 48.652-9.721 116.845-19.667 55.53-8.098 102.963-15.040 104.12-15.040 2.314 0-8.098-11.569-93.708-97.179-84.452-84.452-97.179-98.335-100.649-104.12-6.899-10.347-7.212-33.142 0-43.962 8.972-13.458 20.402-26.608 41.648-26.608zM394.498 417.193c-8.733 0-179.706 26.488-180.474 26.608 0.582 0.582 173.173 170.681 173.532 171.219 4.655 6.982 9.255 13.554 9.255 24.295 3.134 15.671-39.334 238.068-39.334 246.417 0 1.157 39.334-19.667 107.59-55.53 59.002-31.236 107.59-56.687 111.061-57.844s9.255-1.157 13.883-1.157 9.255 0 11.569 1.157c66.774 33.388 44.818 21.721 220.965 114.532 0 0-2.314-12.725-4.628-26.608l-4.628-25.452-208.239-209.396c-144.611-144.611-209.396-208.239-210.554-208.239z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["star-off"],"defaultCode":60770,"grid":0},"properties":{"id":195,"order":65,"ligatures":"","prevSize":24,"code":60770,"name":"star-off"},"setIdx":0,"setId":0,"iconIdx":173},{"icon":{"paths":["M256.829 86.952c37.403 0 57.142 13.461 80.982 27.765 12.416 7.45 24.098 21.333 32.393 32.393 15.347 20.463 26.608 49.012 26.608 84.452 0 45.692-17.254 77.412-40.491 100.649-14.454 14.454-35.015 29.025-55.53 35.863v104.12h240.632v-104.12c-10.319-4.587-21.255-9.050-31.236-15.040-33.812-27.050-64.785-62.043-64.785-121.473 0-66.544 38.535-108.347 83.295-130.728 17.487-8.744 35.488-13.883 61.315-13.883 66.544 0 108.347 38.535 130.728 83.295 8.744 17.487 13.883 35.488 13.883 61.315 0 67.308-37.935 108.048-83.295 130.728-4.628 2.314-9.255 4.628-10.412 4.628-2.314 1.157-2.314 4.628-2.314 53.217v52.060h100.649c98.335 0 99.492 0 106.434-2.314 18.284-6.095 26.321-18.803 32.393-37.020 1.157-4.628 1.157-17.353 1.157-35.863v-28.922c-24.803-9.301-43.874-24.207-61.315-41.648-20.953-20.953-34.707-53.89-34.707-94.865 0-56.675 26.242-92.275 59.002-116.845 22.915-17.187 45.061-26.608 85.61-26.608 47.661 0 75.016 14.858 99.492 39.334 24.825 24.825 43.962 54.478 43.962 104.12 0 43.296-12.894 60.052-28.922 86.767-11.566 19.277-33.963 36.492-55.53 45.118l-11.569 4.628v35.863c0 41.795 2.233 43.008-6.942 65.942-19.978 49.943-53.706 83.129-109.904 97.179-8.098 1.157-20.824 2.314-114.532 2.314h-105.277v104.12c36.318 13.62 65.31 41.538 82.139 75.197 8.744 17.487 13.883 35.488 13.883 61.315 0 67.308-37.935 108.048-83.295 130.728-17.487 8.744-35.488 13.883-61.315 13.883-66.544 0-108.347-38.535-130.728-83.295-8.744-17.487-13.883-35.488-13.883-61.315 0-59.822 30.808-94.291 64.785-121.473 9.948-5.97 20.947-10.467 31.236-15.040v-104.12h-240.632v104.12c27.832 9.278 53.135 30.355 69.413 52.060 15.347 20.463 26.608 49.012 26.608 84.452 0 45.692-17.254 77.412-40.491 100.649-25.125 25.125-53.769 42.805-104.12 42.805-30.432 0-46.303-3.255-65.942-15.040-42.826-25.694-77.512-60.384-77.512-128.414 0-41.648 13.48-61.032 28.922-86.767 11.566-19.277 33.963-36.492 55.53-45.118l11.569-4.628v-305.418l-11.569-4.628c-14.258-5.704-29.017-16.291-39.334-26.608-25.408-25.408-45.118-55.281-45.118-105.277 0-82.357 51.274-125.615 118.002-142.297 4.628-1.157 9.255-2.314 10.412-2.314h19.667zM256.829 184.13h-11.569c-22.588 0-39.334 23.607-39.334 47.432 0 23.834 11.295 34.524 25.452 43.962 6.942 3.47 8.098 2.314 20.824 2.314 29.695 0 41.537-15.754 47.432-39.334 6.617-26.466-13.281-45.689-32.393-52.060-3.47-1.157-8.098-2.314-10.412-2.314zM583.070 184.13c-19.852 0-40.491 20.847-40.491 40.491v13.883c0 16.365 15.436 32.91 27.765 37.020 5.785 2.314 8.098 2.314 19.667 2.314 18.143 0 25.934-3.953 34.707-12.725 6.634-6.634 12.725-15.361 12.725-26.608v-13.883c0-11.497-6.059-18.784-12.725-25.452-7.712-7.712-17.477-15.040-31.236-15.040h-10.412zM932.451 184.13h-12.725c-16.1 0-28.019 15.421-34.707 25.452-11.877 17.813-2.064 45.368 8.098 55.53 8.723 8.723 16.667 12.725 34.707 12.725 29.504 0 46.275-16.428 46.275-46.275 0-23.662-8.392-28.059-19.667-39.334-4.368-4.368-13.97-8.098-21.98-8.098zM254.515 762.573c-28.176 0-35.036 12.063-46.275 28.922-2.314 5.785-2.314 8.098-2.314 18.51 0 16.798 4.381 25.205 12.725 33.55 6.247 6.247 16.489 13.883 26.608 13.883h13.883c33.327 0 56.331-52.416 27.765-80.982-7.503-7.503-18.050-13.883-32.393-13.883zM592.325 762.573c-21.045 0-26.382 4.4-37.020 15.040-6.683 6.683-12.725 13.907-12.725 25.452v13.883c0 20.339 20.743 40.491 40.491 40.491h13.883c20.339 0 40.491-20.743 40.491-40.491v-13.883c0-22.192-22.498-40.491-45.118-40.491z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["manual-gearbox"],"defaultCode":60795,"grid":0},"properties":{"id":197,"order":67,"ligatures":"","prevSize":24,"code":60795,"name":"manual-gearbox"},"setIdx":0,"setId":0,"iconIdx":174},{"icon":{"paths":["M592.325 38.362c-28.811 0-42.439 17.413-49.747 39.334-1.157 4.628-1.157 59.002-1.157 194.357 0 122.63 0 190.886 1.157 195.514 6.759 20.273 19.759 39.334 47.432 39.334 28.691 0 40.369-18.146 47.432-39.334 1.157-3.47 1.157-63.629 1.157-167.749v-160.807h3.47c24.456 0 50.852 11.389 71.727 17.353 56.45 16.128 99.046 48.99 138.827 82.139 48.027 40.022 77.939 95.936 102.963 158.494 5.954 14.884 9.082 30.024 11.569 47.432 1.157 8.098 4.628 20.824 5.785 28.922 1.157 12.725 1.157 23.138 1.157 48.589 0 79.192-16.676 125.904-42.805 178.16-18.126 36.252-40.274 64.569-68.257 92.55-47.088 47.088-102.473 76.962-173.532 100.649-33.835 11.278-50.869 11.569-99.492 11.569-120.091 0-192.881-43.117-259.142-98.335-6.942-5.785-16.197-16.197-21.98-23.138-18.215-21.858-37.093-43.311-52.060-68.257-27.245-45.409-41.637-98.252-50.903-163.121-1.157-9.255-1.157-24.295-1.157-40.491 0-58.721 13.113-98.727 30.079-141.14 18.311-45.778 48.712-88.046 80.982-120.316 9.923-9.923 10.748-16.051 15.040-28.922 7.417-29.668-17.86-54.374-47.432-54.374-31.985 0-46.767 25.116-62.472 43.962-28.195 33.833-50.845 71.609-71.727 113.375-3.47 6.942-6.942 19.667-10.412 27.765-21.564 50.319-31.236 112.602-31.236 182.788 0 25.65 5.231 46.481 8.098 69.413 2.802 22.417 10.554 46.197 16.197 65.942 12.372 43.302 32.703 84.423 56.687 118.002 40.119 56.167 88.688 109.349 150.395 144.611 72.048 41.171 150.821 70.57 264.927 70.57 34.324 0 63.513-7.886 92.55-12.725 41.649-6.942 73.37-22.455 108.747-38.177 61.863-27.496 112.764-72.15 153.866-121.473 25.537-30.646 49.348-64.243 65.942-102.963 15.271-35.632 31.923-75.845 39.334-120.316 8.266-49.591 10.011-120.009 0-170.062-3.358-16.795-11.582-50.952-16.197-67.1-15.786-55.255-47.821-110.602-80.982-150.395-36.356-43.625-77.671-83.221-128.414-112.218-45.112-25.778-97.174-51.398-158.494-60.158-26.259-3.751-57.705-9.255-87.923-9.255z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["admin"],"defaultCode":60876,"grid":0},"properties":{"id":198,"order":68,"ligatures":"","prevSize":24,"code":60876,"name":"admin"},"setIdx":0,"setId":0,"iconIdx":175},{"icon":{"paths":["M587.698 67.285c70.42 0 118.796 11.344 173.532 27.765 72.862 21.859 126.936 59.056 178.16 102.963 40.419 34.644 71.359 79.088 96.022 128.414 23.3 46.601 35.863 93.609 35.863 161.964 0 73.953-14.328 120.050-39.334 170.062-22.97 45.939-46.425 76.505-82.139 112.218l-19.667 19.667c5.885 8.827 9.974 14.851 17.353 27.765 13.2 23.099 35.279 44.521 43.962 70.57 1.157 3.47 1.157 10.412 1.157 16.197 0 31.027-15.644 46.293-34.707 59.002-14.496 9.663-19.898 9.255-48.589 9.255-66.359 0-108.061-16.739-158.494-33.55-22.035-7.345-40.14-19.492-59.002-28.922l-13.883-6.942-32.393 1.157c-18.51 1.157-47.432 1.157-67.1 1.157-79.386 0-128.145-16.106-187.416-35.863-23.080-7.694-45.346-20.128-64.785-31.236-55.698-31.828-104.209-72.231-141.14-121.473-45.893-61.19-77.512-133.709-77.512-240.632 0-21.4 5.317-40.686 8.098-60.158 3.207-22.453 8.124-39.009 16.197-57.844 3.47-8.098 8.098-23.138 12.725-32.393 14.681-29.361 30.125-49.237 47.432-75.197 4.628-6.942 16.197-18.51 23.138-26.608 22.579-26.343 47.299-46.014 75.197-65.942 26.169-18.692 52.981-33.943 84.452-47.432 36.81-15.776 77.097-30.171 122.63-35.863 16.142-2.018 42.663-6.942 57.844-6.942 3.47 0 17.353-1.157 32.393-1.157zM586.541 163.305c-4.628 0-10.412 1.157-15.040 1.157-67.101 0-122.204 21.137-170.062 41.648-46.278 19.833-83.394 51.002-116.845 84.452-27.021 27.021-50.41 65.622-63.629 105.277-10.768 32.301-15.040 48.429-15.040 94.865 0 75.88 21.957 125.492 56.687 168.905 12.024 15.029 27.445 34.633 42.805 47.432 52.010 43.342 115.979 81.222 197.827 94.865 33.664 5.61 63.657 8.098 105.277 8.098 15.040 0 40.491-1.157 55.53-2.314 17.353-1.157 31.236-2.314 34.707-1.157 3.47 0 8.098 2.314 10.412 3.47 31.743 15.871 68.489 37.484 105.277 49.747 6.942 2.314 19.667 4.628 27.765 6.942s18.51 5.785 20.824 5.785h4.628l-6.942-10.412c-12.147-20.246-25.637-40.954-34.707-63.629-4.628-10.412-3.47-12.725-3.47-23.138 0-25.091 11.723-32.054 26.608-43.962 24.494-19.595 46.828-42.775 67.1-67.1 12.294-14.752 16.198-26.225 25.452-41.648 17.396-28.995 25.781-65.606 32.393-105.277 1.157-6.942 1.157-18.51 1.157-27.765 0-34.73-7.206-61.662-15.040-89.080-13.74-48.089-44.142-89.261-75.197-120.316-30.237-30.237-63.403-55.43-105.277-74.040-53.919-23.963-115.49-42.805-193.2-42.805zM374.831 545.078c-29.964 0-48.589 17.081-48.589 47.432 0 33.12 21.977 43.297 41.648 60.158 16.709 14.322 33.177 26.422 52.060 35.863l25.452 12.725c17.656 8.827 39.415 14.482 60.158 19.667 25.249 6.312 42.226 10.412 75.197 10.412 104.033 0 171.309-30.384 230.22-77.512 5.785-4.628 13.883-11.569 19.667-17.353l13.883-13.883c7.688-7.688 9.255-13.27 9.255-30.079 0-28.933-17.269-46.275-46.275-46.275-23.043 0-25.586 5.735-40.491 18.51-20.671 17.226-41.030 35.847-67.1 46.275-5.785 2.314-16.197 6.942-21.98 9.255-26.779 10.712-50.257 13.883-87.923 13.883-68.862 0-115.246-20.008-153.866-50.903-10.917-8.734-30.979-27.637-42.805-33.55-6.942-3.47-9.255-4.628-18.51-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["pm"],"defaultCode":60877,"grid":0},"properties":{"id":199,"order":69,"ligatures":"","prevSize":24,"code":60877,"name":"pm"},"setIdx":0,"setId":0,"iconIdx":176},{"icon":{"paths":["M636.287 38.362c90.237 0 105.277 1.157 111.061 2.314 3.47 1.157 9.255 2.314 12.725 4.628 3.647 2.431 255.204 252.423 260.299 262.613l2.314 6.942 1.157 180.474c0 156.18 0 182.788-1.157 192.044-10.327 51.635-40.647 88.001-82.139 108.747-25.388 12.694-36.606 13.883-78.668 13.883h-30.079v31.236c0 44.095-2.768 54.124-16.197 80.982-16.435 32.871-42.196 56.444-77.512 70.57-5.785 2.314-15.040 5.785-21.98 6.942l-12.725 2.314h-185.102c-204.546 0-170.158 4.315-215.181-6.942-49.505-12.376-86.888-60.763-97.179-112.218-2.314-10.412-2.314-25.452-2.314-266.084 0-274.836-4.637-234.811 8.098-285.751 5.677-22.707 20.242-38.896 33.55-55.53 16.482-20.603 45.253-34.452 74.040-41.648 5.785-1.157 16.197-2.314 42.805-2.314h34.707v-33.55c0-51.399 4.63-65.368 24.295-94.865 18.352-27.528 48.735-50.939 85.61-60.158 4.628-1.157 12.725-3.47 17.353-3.47s54.374-1.157 112.218-1.157zM609.679 135.54c-71.727 0-76.355 0-83.295 2.314-13.628 4.543-26.413 16.569-30.079 31.236-2.314 8.098-2.314 10.412-2.314 257.986l1.157 251.044c8.888 17.773 17.557 24.907 34.707 34.707h363.262c14.234-7.117 26.97-18.438 32.393-34.707l1.157-150.395v-151.552h-80.982c-72.884 0-80.982 0-86.767-2.314-34.445-11.482-60.248-33.909-69.413-70.57-2.314-9.255-3.47-9.255-3.47-87.923v-79.825h-76.355zM783.212 204.954v74.040h74.040l-35.863-37.020c-20.824-20.824-38.177-37.020-38.177-37.020zM367.889 328.741c-45.294 0-55.055 5.514-65.942 38.177-1.157 4.628-1.157 74.040-1.157 251.044 0 238.167-3.066 233.752 6.942 263.77 4.171 12.513 17.85 17.897 30.079 23.138h360.948c11.388-5.695 24.821-10.836 28.922-23.138 5.375-16.125 6.942-14.555 6.942-45.118v-26.608h-102.963c-89.080 0-104.12-1.157-113.375-2.314-62.312-12.463-105.574-51.232-118.002-113.375-2.314-10.412-3.47-11.569-3.47-187.416v-178.16h-28.922z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["page"],"defaultCode":60911,"grid":0},"properties":{"id":200,"order":70,"ligatures":"","prevSize":24,"code":60911,"name":"page"},"setIdx":0,"setId":0,"iconIdx":177},{"icon":{"paths":["M586.541 38.362c106.836 0 185.481 31.783 253.358 70.57 46.886 26.793 85.708 62.586 120.316 102.963 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 108.948-30.814 183.782-70.57 253.358-4.628 8.098-13.883 19.667-18.51 26.608-20.65 30.974-52.272 65.156-80.982 89.080-35.072 29.228-77.459 57.823-123.787 75.197-21.995 8.249-43.617 17.663-68.257 23.138-39.296 8.733-69.701 13.883-119.159 13.883-150.101 0-246.322-57.763-327.399-127.257-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.134-64.271-54.374-139.832-54.374-237.162 0-35.61 4.592-56.537 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 46.922-23.462 101.285-42.069 163.121-50.903 8.098-1.157 20.824-2.314 28.922-2.314s20.824-1.157 27.765-1.157zM541.423 137.855c-101.602 18.473-181.283 58.596-237.162 123.787-18.381 21.443-35.956 41.833-48.589 67.1l-10.412 20.824c-23.627 47.255-40.491 100.863-40.491 171.219 0 47.553 6.327 84.743 19.667 120.316 11.069 29.518 20.806 54.731 35.863 79.825 3.47 5.785 5.785 9.255 6.942 9.255s62.472-52.060 137.669-115.689l136.512-115.689v-360.948zM640.915 139.012l-2.314-1.157v334.341h334.341c-2.639-11.878-3.198-22.043-6.942-37.020-27.794-111.177-88.878-186.125-172.376-241.789-15.536-10.356-39.361-22.762-57.844-28.922-24.102-8.034-50.146-19.062-78.668-23.138-8.098-1.157-15.040-2.314-16.197-2.314zM790.153 569.373h-183.945c-56.883 49.837-146.855 126.612-237.36 202.776l-39.135 32.072c32.295 32.295 79.843 58.842 126.1 78.668 8.098 3.47 21.98 5.785 28.922 8.098 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 19.868-5.677 34.501-13.959 53.217-21.98 8.098-3.47 17.353-9.255 21.98-12.725s15.040-8.098 20.824-11.569 12.725-10.412 16.197-12.725c42.901-28.601 77.075-72.928 104.12-118.002 14.145-23.577 24.206-51.793 33.55-79.825 6.045-18.134 9.676-42.387 13.883-61.315h-182.788z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["chart-pie-3"],"defaultCode":60978,"grid":0},"properties":{"id":202,"order":72,"ligatures":"","prevSize":24,"code":60978,"name":"chart-pie"},"setIdx":0,"setId":0,"iconIdx":178},{"icon":{"paths":["M590.012 39.52c29.799 0 48.45 7.812 69.413 16.197 5.785 2.314 13.883 6.942 18.51 10.412 6.885 5.164 56.922 54.917 64.785 60.158 21.182 14.12 86.072 4.595 114.532 12.725 46.192 11.548 77.761 37.822 99.492 74.040 10.376 17.292 13.058 33.721 18.51 55.53 1.157 4.628 1.157 21.98 1.157 39.334 0 63.27 0.111 51.277 37.020 90.237 27.498 29.463 30.337 29.438 43.962 56.687 10.022 20.043 15.040 37.643 15.040 65.942 0 38.581-11.916 62.281-26.608 86.767-4.628 6.942-13.883 17.353-32.393 35.863-21.631 21.631-27.454 25.677-33.55 43.962-5.064 12.659-1.843 73.525-5.785 97.179-12.572 50.29-43.067 86.318-85.61 107.59-30.689 15.345-29.957 13.093-84.452 15.040-53.286 1.615-36.56 1.388-60.158 9.255-3.47 1.157-17.353 13.883-31.236 27.765-18.51 18.51-28.922 27.765-35.863 32.393-24.694 14.816-47.795 26.608-86.767 26.608-26.566 0-45.388-6.123-64.785-13.883-5.785-2.314-15.040-9.255-20.824-12.725-6.942-4.628-16.197-13.883-35.863-32.393-21.98-21.98-28.922-26.608-34.707-30.079-16.887-8.444-21.411-6.942-56.687-6.942-46.7 0-66.774-2.814-94.865-19.667-36.357-21.813-62.487-54.434-74.040-100.649-8.017-28.064 1.168-92.533-12.725-113.375-2.314-3.47-15.040-16.197-28.922-30.079-36.916-36.916-57.844-60.295-57.844-127.257 0-19.507 4.529-29.686 8.098-43.962 3.54-14.164 13.432-30.964 21.98-41.648 6.777-8.472 56.006-59.609 59.002-67.1 9.047-13.57 6.942-20.043 6.942-57.844 1.547-52.603 0.587-44.566 9.255-70.57 12.875-38.624 42.005-66.121 76.355-83.295 30.801-15.402 26.262-14.484 84.452-16.197 37.749 0 44.319 2.075 57.844-6.942 5.785-2.314 13.883-9.255 32.393-27.765 23.734-21.757 25.411-28.901 46.275-39.334 9.398-4.7 19.101-11.139 30.079-13.883l18.51-4.628c4.628-1.157 10.412-2.314 11.569-2.314s10.412-1.157 18.51-1.157zM590.012 135.54c-2.314 0-6.942 1.157-9.255 1.157-7.046 0-17.631 5.583-23.138 9.255-7.791 5.194-55.667 54.224-63.629 59.002-14.627 10.97-36.968 19.366-56.687 24.295-19.647 3.274-79.339-0.162-97.179 5.785-17.078 5.692-30.117 18.625-35.863 35.863-5.947 17.839-2.51 77.531-5.785 97.179-11.439 45.757-23.954 57.388-55.53 91.394-20.41 20.41-29.203 26.293-34.707 42.805-1.157 3.47-2.314 10.412-2.314 13.883 0 4.628-1.157 10.412 0 16.197 1.157 4.628 4.628 11.569 5.785 15.040 2.909 5.817 54.371 58.226 59.002 65.942 3.47 5.785 10.412 15.040 13.883 21.98 7.427 14.857 10.416 28.943 13.883 46.275 1.157 8.098 2.314 20.824 2.314 43.962 0 39.933-1.134 49.77 17.353 68.257 17.536 17.536 31.315 17.353 70.57 17.353 42.293 0 53.462 0.123 78.668 12.725 30.87 15.435 37.579 20.226 65.942 48.589 29.374 29.374 23.235 26.922 49.747 33.55 12.762 2.552 23.521-1.347 32.393-5.785 8.098-3.47 11.569-5.785 33.55-27.765 41.59-41.59 62.838-61.315 143.454-61.315 39.055 0 52.757 0.459 70.57-17.353 17.536-17.536 17.353-31.315 17.353-70.57 0-80.469 19.683-101.822 61.315-143.454 21.98-21.98 24.295-25.452 27.765-33.55 6.851-13.701 8.989-32.923 1.157-48.589-3.47-6.942-5.785-11.569-27.765-33.55-28.46-28.46-34.286-35.023-49.747-65.942-12.538-25.076-12.725-36.323-12.725-78.668 0-39.055 0.459-52.757-17.353-70.57-17.241-17.241-28.775-17.353-68.257-17.353-23.138 0-37.020 0-43.962-1.157-24.621-4.925-45.987-15.329-64.785-26.608-6.942-4.628-19.667-16.197-37.020-33.55-19.667-19.667-27.765-25.452-32.393-27.765-6.074-2.025-19.5-6.942-26.608-6.942zM468.539 327.584c42.082 0 72.884 29.99 72.884 71.727 0 12.477-1.672 24.489-6.942 32.393l-9.255 13.883c-10.204 15.306-31.18 26.608-56.687 26.608-44.723 0-71.727-32.457-71.727-77.512 0-28.243 25.558-55.18 47.432-62.472 3.47-1.157 9.255-3.47 12.725-3.47s8.098-1.157 11.569-1.157zM733.465 327.584c26.786 0 43.099 18.529 48.589 40.491 2.125 10.624-0.215 23.459-4.628 30.079-10.943 18.238-296.367 301.839-310.046 310.046-10.347 6.899-33.142 7.212-43.962 0-15.121-10.080-38.581-38.15-20.824-64.785 8.578-14.296 298.34-305.827 308.889-310.046 5.412-3.608 14.675-5.785 21.98-5.785zM712.642 569.373c-23.491 0-32.304 5.725-46.275 15.040-15.977 10.65-27.765 31.042-27.765 57.844 0 45.187 32.082 71.727 77.512 71.727 18.783 0 34.165-11.028 45.118-21.98 13.126-13.126 20.824-24.954 20.824-49.747 0-32.332-13.436-47.097-32.393-61.315-11.118-8.338-18.714-11.569-37.020-11.569z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["discount-2"],"defaultCode":61052,"grid":0},"properties":{"id":203,"order":73,"ligatures":"","prevSize":24,"code":61052,"name":"discount"},"setIdx":0,"setId":0,"iconIdx":179},{"icon":{"paths":["M927.822 18.166c34.307 0 58.35 10.213 78.668 25.452 36.382 27.287 64.785 59.591 64.785 122.63 0 38.668-8.491 61.841-25.452 84.452-3.47 5.785-17.353 20.824-41.648 45.118-19.667 20.824-116.845 119.159-215.181 217.494l-179.317 179.317h-84.452c-57.844 0-84.452 0-89.080-1.157-19.929-6.642-31.436-17.954-38.177-38.177-1.157-4.628-1.157-30.079-1.157-82.139s0-76.355 1.157-80.982c1.157-3.47 2.314-9.255 4.628-12.725 2.314-5.785 32.393-35.863 178.16-181.631 96.022-96.022 192.044-190.886 212.867-210.554 24.295-24.295 39.334-38.177 45.118-41.648 8.7-6.527 25.22-15.849 35.863-18.51 11.326-2.831 18.744-4.107 30.079-6.942 4.628-1.157 15.040 0 23.138 0zM975.254 166.246c0-30.253-22.477-52.060-53.217-52.060-28.022 0-32.266 11.441-50.903 30.079l-18.51 18.51 74.040 74.040 18.51-18.51c17.344-17.344 21.954-19.586 27.765-37.020 1.157-3.47 2.314-11.569 2.314-15.040zM446.558 213.679c26.009 0 40.977 19.297 46.275 40.491 3.85 19.251-4.039 31.804-13.883 41.648-16.234 16.234-58.309 19.436-83.295 27.765-30.557 10.186-58.99 31.227-83.295 47.432-6.942 4.628-16.197 15.040-23.138 21.98-54.055 54.055-98.718 138.844-79.825 252.201 10.084 60.5 37.916 111.956 74.040 148.082 5.785 5.785 15.040 16.197 21.98 21.98 48.824 40.688 108.233 69.413 196.671 69.413 37.132 0 59.667-8.123 87.923-16.197 30.965-8.847 62.125-29.57 84.452-47.432 42.262-33.81 70.804-76.36 92.55-130.728 2.314-5.785 4.628-16.197 5.785-21.98 6.414-32.066 13.133-71.727 49.747-71.727 3.47 0 9.255-1.157 13.883 0 18.735 6.245 39.334 18.946 39.334 43.962 0 25.683-8.633 52.51-15.040 71.727-18.007 54.023-42.461 102.619-78.668 138.827-68.78 68.78-149.671 129.572-288.064 129.572-118.647 0-192.521-43.781-257.986-98.335-24.724-20.604-44.763-44.55-62.472-72.884-36.182-57.893-64.785-120.348-64.785-214.024 0-70.74 16.405-124.204 40.491-172.376 28.473-56.948 70.952-107.843 122.63-142.297 23.146-15.43 45.882-27.569 71.727-40.491 22.633-11.317 54.593-18.785 82.139-24.295 6.942-1.157 13.883-2.314 20.824-2.314zM783.212 231.033l-289.221 289.221v75.197h76.355c98.874-99.877 192.739-194.109 286.892-288.052l1.172-1.169-75.197-75.197z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["edit-circle"],"defaultCode":61061,"grid":0},"properties":{"id":204,"order":74,"ligatures":"","prevSize":24,"code":61061,"name":"edit-circle"},"setIdx":0,"setId":0,"iconIdx":180},{"icon":{"paths":["M588.855 97.557c259.142 0 391.028 0 395.655 1.157 20.837 6.946 38.177 18.678 38.177 47.432 0 29.14-16.754 40.291-38.177 47.432-4.628 1.157-136.512 1.157-394.498 1.157s-389.871 0-394.498-1.157c-20.837-6.946-38.177-18.678-38.177-47.432 0-16.798 4.381-25.205 12.725-33.55 5.511-5.511 16.295-13.883 24.295-13.883 2.314 0 178.16-1.157 394.498-1.157zM867.664 781.277c-33.768 22.512-76.766 39.334-133.042 39.334-93.198 0-151.21-43.534-193.2-96.022-11.032-13.79-16.050-25.158-24.295-41.648-14.666-29.332-23.138-59.716-23.138-102.963 0-43.83 8.474-71.448 21.98-102.963 3.47-8.098 9.255-17.353 12.725-21.98s8.098-13.883 12.725-19.667c16.735-20.918 44.151-49.262 68.257-61.315 16.547-8.273 34.010-20.223 54.374-24.295 23.434-4.686 38.579-10.412 69.413-10.412 44.894 0 71.956 8.197 104.12 21.98 8.098 3.47 17.353 9.255 21.98 12.725s13.883 8.098 19.667 12.725c28.61 22.887 58.631 54.608 72.884 90.237 5.727 14.316 13.369 28.149 16.197 45.118 3.185 19.112 6.942 34.176 6.942 57.844 0 43.045-8.295 75.591-23.138 105.277-5.615 11.23-10.944 18.577-16.197 27.765l63.629 62.472c54.374 54.374 63.629 65.942 67.1 71.727 15.463 23.196-2.816 58.783-20.824 64.785-12.025 4.009-31.248 8.475-43.962 0-5.785-3.47-17.353-12.725-71.727-67.1zM299.634 386.779c63.629 0 102.963 0 106.434 1.157 20.837 6.946 38.177 18.678 38.177 47.432 0 29.14-16.754 40.291-38.177 47.432-3.47 1.157-42.805 1.157-105.277 1.157s-101.806 0-105.277-1.157c-20.837-6.946-38.177-18.678-38.177-47.432 0-16.798 4.381-25.205 12.725-33.55 5.511-5.511 16.295-13.883 24.295-13.883 2.314 0 49.747-1.157 105.277-1.157zM738.093 436.525h-16.197c-20.16 0-37.071 9.044-52.060 15.040-21.117 8.447-37.344 24.699-50.903 41.648-18.022 22.528-27.765 47.144-27.765 86.767 0 61.165 27.349 92.817 62.472 119.159 21.204 15.903 43.662 24.295 80.982 24.295 61.165 0 92.817-27.349 119.159-62.472 15.903-21.204 24.295-43.662 24.295-80.982 0-39.297-9.862-64.387-27.765-86.767-24.661-30.829-57.393-56.687-112.218-56.687zM299.634 676c-55.53 0-102.963 1.157-105.277 1.157-14.565 0-28.001 16.667-33.55 27.765-3.47 6.942-3.47 8.098-3.47 19.667 0 29.14 16.754 40.291 38.177 47.432 3.47 1.157 42.805 1.157 105.277 1.157s101.806 0 105.277-1.157c20.837-6.946 38.177-18.678 38.177-47.432 0-29.14-16.754-40.291-38.177-47.432-3.47-1.157-42.805-1.157-106.434-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["list-search"],"defaultCode":61097,"grid":0},"properties":{"id":205,"order":75,"ligatures":"","prevSize":24,"code":61097,"name":"list-search"},"setIdx":0,"setId":0,"iconIdx":181},{"icon":{"paths":["M587.698 38.362c50.822 0 92.631 9.016 135.355 18.51 32.524 7.227 57.422 22.626 85.61 34.707 32.853 14.080 64.3 36.769 90.237 59.002 18.631 15.97 43.026 39.207 59.002 57.844 13.417 15.654 28.76 41.311 13.883 63.629-3.47 5.785-17.353 21.98-123.787 128.414l-120.316 120.316 120.316 120.316c106.434 106.434 120.316 122.63 123.787 128.414 8.195 12.293 4.238 30.093 0 42.805-5.367 16.098-28.034 37.289-41.648 50.903-17.873 17.873-33.142 28.596-50.903 42.805-31.737 25.389-69.233 46.786-111.061 62.472-30.452 11.419-60.052 22.112-96.022 26.608-9.255 1.157-21.98 3.47-28.922 4.628-115.095 19.183-218.153-23.468-293.849-61.315-19.339-9.669-44.408-28.314-61.315-42.805-8.098-6.942-26.608-21.98-38.177-33.55-47.38-47.38-79.22-96.924-107.59-163.121-21.782-50.825-33.55-106.211-33.55-178.16 0-90.408 20.858-150.475 48.589-212.867 20.181-45.407 48.481-79.314 78.668-114.532 36.147-42.172 81.434-74.845 133.042-100.649 42.872-21.435 88-40.355 144.611-47.432 15.881-1.985 37.643-5.785 53.217-5.785 2.314 0 12.725-1.157 20.824-1.157zM863.037 247.759c-67.514-57.87-141.272-111.061-267.241-111.061h-40.491c-16.079 0-38.439 6.792-53.217 9.255-28.639 4.774-59.611 18.237-83.295 30.079-38.823 19.41-71.763 41.684-101.806 71.727-17.261 17.261-35.546 38.198-47.432 59.002-34.814 60.923-63.629 116.354-63.629 214.024 0 23.138 0 34.707 1.157 46.275 9.255 64.789 31.096 112.839 57.844 159.65 10.391 18.186 20.534 32.102 34.707 46.275 5.785 5.785 15.040 17.353 23.138 24.295 17.025 14.593 31.915 29.761 49.747 41.648 31.357 20.905 66.865 37.715 106.434 50.903 25.127 8.376 54.033 10.86 83.295 15.040 8.098 1.157 19.667 1.157 27.765 1.157 15.811 0 39.403-0.306 52.060-3.47 28.335-7.084 62.357-12.182 87.923-23.138 27.58-11.822 49.064-21.163 72.884-38.177 16.179-11.557 37.93-26.361 50.903-39.334l9.255-8.098-122.63-122.63c-108.747-108.747-122.63-122.63-124.944-128.414-7.158-10.735-7.291-33.027 0-43.962 2.314-5.785 16.197-19.667 124.944-128.414zM569.188 207.267c-36.179 0-58.001 15.196-76.355 33.55-14.207 14.207-21.98 33.475-21.98 62.472 0 40.239 15.084 55.574 34.707 75.197 14.8 14.8 36.206 21.98 64.785 21.98 27.148 0 47.305-12.598 61.315-26.608 16.784-16.784 30.079-36.954 30.079-70.57 0-38.883-18.948-63.92-42.805-79.825-12.885-8.589-28.491-16.197-49.747-16.197z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["pacman"],"defaultCode":61116,"grid":0},"properties":{"id":206,"order":76,"ligatures":"","prevSize":24,"code":61116,"name":"pacman"},"setIdx":0,"setId":0,"iconIdx":182},{"icon":{"paths":["M594.64 39.52c31.321 0 51.208 8.327 69.413 21.98 4.628 3.47 11.569 6.942 15.040 10.412 13.675 13.675 31.352 37.599 35.863 60.158 2.062 10.311 5.954 16.365 11.569 21.98 7.152 7.152 10.329 10.412 25.452 10.412 11.043 0 42.855-16.214 53.217-19.667 8.098-2.314 15.040-3.47 26.608-3.47 64.295 0 103.282 30.718 124.944 74.040 7.597 15.197 12.725 33.932 12.725 56.687 0 31.306-10.346 51.931-20.824 72.884-2.314 3.47-2.314 6.942-2.314 13.883 0 35.363 31.619 34.32 55.53 46.275 37.135 18.567 56.107 45.112 67.1 89.080 1.157 4.628 3.47 13.883 3.47 19.667 0 45.24-14.839 77.311-38.177 100.649-16.534 13.228-34.377 27.699-57.844 32.393-11.667 2.333-13.451 4.196-19.667 10.412-7.152 7.152-10.412 10.329-10.412 25.452 0 11.391 16.060 42.394 19.667 53.217 2.314 8.098 3.47 15.040 3.47 26.608 0 65.709-30.148 98.84-71.727 123.787-16.195 9.717-35.258 13.883-60.158 13.883-31.273 0-48.906-9.413-69.413-19.667-6.942-3.47-8.098-3.47-16.197-3.47-35.363 0-34.32 31.619-46.275 55.53-20.609 41.217-54.883 69.413-115.689 69.413-39.904 0-68.848-13.318-89.080-33.55-13.669-13.669-31.301-36.187-35.863-59.002-2.062-10.311-5.954-16.365-11.569-21.98-7.152-7.152-10.329-10.412-25.452-10.412-11.391 0-42.394 16.060-53.217 19.667-8.098 2.314-15.040 3.47-26.608 3.47-65.249 0-101.769-30.004-123.787-74.040-8.402-16.803-13.883-32.079-13.883-57.844 0-31.273 9.413-48.906 19.667-69.413 3.47-6.942 3.47-8.098 3.47-16.197 0-35.363-31.619-34.32-55.53-46.275-41.298-20.65-69.413-54.883-69.413-115.689 0-32.853 8.118-55.557 21.98-74.040 3.47-4.628 6.942-11.569 10.412-15.040 13.675-13.675 37.599-31.352 60.158-35.863 10.311-2.062 16.365-5.954 21.98-11.569 7.152-7.152 10.412-10.329 10.412-25.452 0-11.391-16.060-42.394-19.667-53.217-2.314-8.098-3.47-15.040-3.47-26.608 0-54.822 22.721-88.478 54.374-112.218 20.653-15.489 42.299-25.452 77.512-25.452 31.273 0 48.906 9.413 69.413 19.667 6.942 3.47 8.098 3.47 16.197 3.47 36.21 0 32.734-30.762 45.118-55.53 18.549-37.099 49.194-57.127 93.708-68.257 4.628-1.157 10.412-1.157 11.569-1.157h16.197zM872.292 273.21c0-21.541-13.171-34.707-34.707-34.707-8.098 0-9.255 0-23.138 6.942-14.208 8.119-21.289 9.41-34.707 13.883-3.47 1.157-11.569 2.314-17.353 2.314-62.619 10.436-108.905-33.865-129.572-75.197-5.237-10.477-8.5-37.8-18.51-42.805-7.311-3.656-10.43-8.098-21.98-8.098-24.174 0-34.21 12.559-38.177 32.393-4.748 23.734-20.107 42.087-34.707 56.687-21.038 21.038-48.804 37.020-91.394 37.020-30.577 0-41.571-6.743-63.629-16.197-12.725-6.942-13.883-6.942-21.98-6.942-21.541 0-34.707 13.171-34.707 34.707 0 8.098 0 9.255 6.942 23.138 8.119 14.208 9.41 21.289 13.883 34.707 1.157 3.47 2.314 11.569 2.314 17.353 7.441 44.647-16.63 82.573-39.334 105.277-16.548 16.548-32.491 24.327-56.687 32.393-18.845 6.282-30.079 12.36-30.079 37.020 0 30.299 30.339 30.207 50.903 40.491 34.227 17.114 58.684 45.322 71.727 84.452 3.47 10.412 2.314 13.883 2.314 34.707 0 33.007-0.939 38.015-13.883 61.315-8.098 16.197-8.098 16.197-8.098 24.295 0 21.541 13.171 34.707 34.707 34.707 16.616 0 29.619-13.766 43.962-17.353 12.425-3.106 24.080-5.785 41.648-5.785 62.795 0 98.116 33.11 119.159 75.197 5.237 10.477 8.5 37.8 18.51 42.805 8.674 4.337 8.96 6.942 24.295 6.942 24.109 0 30.652-9.804 34.707-30.079 7.64-38.202 38.105-65.33 69.413-80.982 14.482-7.241 26.702-13.883 47.432-13.883h21.98c20.898 0 31.689 6.011 49.747 15.040 16.197 8.098 16.197 8.098 24.295 8.098 21.541 0 34.707-13.171 34.707-34.707 0-16.616-13.766-29.619-17.353-43.962-3.106-12.425-5.785-24.080-5.785-41.648 0-45.622 15.977-71.507 39.334-94.865 14.91-14.91 32.319-26.593 55.53-31.236 19.849-3.971 30.079-12.358 30.079-35.863 0-34.6-26.192-32.92-50.903-42.805-27.86-11.144-46.776-34.547-60.158-61.315-9.146-18.294-13.883-31.346-13.883-57.844 0-27.23 5.183-43.198 16.197-62.472 6.942-13.883 6.942-15.040 6.942-23.138zM496.304 328.741c4.628 0 10.412 1.157 13.883 2.314 0.59 0.196 250.229 147.267 259.142 156.18 16.136 16.136 17.524 49.574 0 67.1-9.539 9.539-256.297 154.758-259.142 156.18-2.314 1.157-8.098 2.314-11.569 2.314s-10.412 1.157-13.883 0c-18.695-6.232-31.855-15.738-38.177-34.707-1.157-4.628-1.157-34.707-1.157-157.337s0-152.709 1.157-157.337c6.901-20.702 22.333-34.707 49.747-34.707zM542.58 461.783s-1.157 25.452-1.157 59.002 1.157 59.002 1.157 59.002c39.074-23.259 10.184-5.148 97.179-59.002-48.052-30.349-77.641-47.371-97.179-59.002z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["settings-automation"],"defaultCode":61142,"grid":0},"properties":{"id":207,"order":77,"ligatures":"","prevSize":24,"code":61142,"name":"settings-automation"},"setIdx":0,"setId":0,"iconIdx":183},{"icon":{"paths":["M252.201 38.362c66.642 0 82.109-2.404 96.022 39.334 1.157 4.628 1.157 67.1 1.157 224.436v218.652h535.638l21.98-151.552c19.667-136.512 21.98-151.552 24.295-157.337 2.718-8.151 14.085-19.191 21.98-23.138 29.264-19.509 70.57 9.509 70.57 38.177 0 13.92-45.019 345.709-53.217 362.106-6.972 13.944-16.458 20.275-31.236 26.608l-295.006 1.157h-295.006v97.179h248.731c241.789 0 248.731 0 260.299 2.314 61.486 10.248 102.525 56.812 114.532 116.845 1.157 5.785 2.314 15.040 2.314 24.295 0 19.838-1.342 32.275-6.942 46.275-11.625 29.063-27.222 52.81-50.903 70.57-9.95 7.462-27.42 17.557-40.491 20.824l-18.51 4.628c-4.628 1.157-13.883 3.47-19.667 3.47-62.252 0-101.919-26.776-127.257-64.785-8.927-13.39-17.596-26.671-20.824-42.805-4.381-21.906-5.355-51.462 0-72.884 1.157-4.628 3.47-9.255 3.47-10.412 1.157-2.314-6.942-2.314-128.414-2.314s-129.572 0-128.414 2.314c0 1.157 2.314 4.628 3.47 9.255 3.276 13.103 4.628 24.816 4.628 42.805 0 18.863-4.753 27.11-8.098 40.491-13.102 52.409-59.864 82.933-112.218 96.022-4.628 1.157-16.197 1.157-25.452 1.157-23.092 0-29.57-0.722-45.118-6.942-53.835-21.533-97.179-60.771-97.179-136.512 0-50.636 17.261-78.576 42.805-104.12 10.766-10.766 25.655-21.83 40.491-27.765l11.569-4.628v-586.541h-25.452c-39.126 0-53.59-4.219-65.942-28.922-3.47-6.942-3.47-8.098-3.47-19.667 0-16.798 4.381-25.205 12.725-33.55 5.511-5.511 16.295-13.883 24.295-13.883 2.314 0 28.922-1.157 57.844-1.157zM520.598 86.952c39.546 0 69.413 33.463 69.413 72.884 0 40.807-31.317 71.727-71.727 71.727-41.581 0-72.884-30.584-72.884-71.727 0-43.765 31.422-72.884 75.197-72.884zM783.212 86.952c17.845 0 28.14 9.63 37.020 18.51 7.15 7.15 10.412 13.561 10.412 28.922 0 11.569-1.157 12.725-4.628 20.824s-10.412 15.040-153.866 158.494-150.395 150.395-158.494 153.866-9.255 4.628-20.824 4.628c-15.447 0-21.724-3.214-28.922-10.412-9.913-9.913-18.51-20.38-18.51-40.491 0-5.785 2.314-11.569 4.628-16.197 9.094-18.19 301.759-309.045 310.046-312.359 6.902-4.602 13.246-5.785 23.138-5.785zM519.442 135.54c-12.862 0-25.452 8.971-25.452 21.98 0 12.862 8.971 25.452 21.98 25.452 12.862 0 25.452-8.971 25.452-21.98 0-12.862-8.971-25.452-21.98-25.452zM762.388 328.741c39.282 0 68.257 31.121 68.257 70.57 0 26.786-11.429 46.954-27.765 57.844-11.988 7.992-24.842 15.040-45.118 15.040-44.274 0-71.727-32.881-71.727-77.512 0-10.65 4.927-19.111 9.255-27.765 12.019-24.037 31.468-38.177 67.1-38.177zM782.055 399.311c0-11.77-11.285-23.138-23.138-23.138-13.713 0-24.295 11.936-24.295 25.452 0 11.159 12.064 21.98 23.138 21.98 15.931 0 24.295-8.299 24.295-24.295zM348.223 851.653c0-23.066-24.331-41.648-47.432-41.648-21.938 0-35.12 12.398-42.805 27.765-2.314 3.47-4.628 10.412-4.628 13.883v13.883c0 22.512 23.487 39.334 47.432 39.334 16.798 0 25.205-4.381 33.55-12.725 6.247-6.247 13.883-16.489 13.883-26.608v-13.883zM830.644 810.005c-29.341 0-47.432 20.812-47.432 50.903 0 26.227 22.385 45.118 48.589 45.118 27.118 0 40.829-18.703 46.275-40.491 5.758-28.787-13.25-46.064-34.707-53.217-3.47-1.157-10.412-2.314-12.725-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart-discount"],"defaultCode":61147,"grid":0},"properties":{"id":208,"order":78,"ligatures":"","prevSize":24,"code":61147,"name":"shopping-cart-discount"},"setIdx":0,"setId":0,"iconIdx":184},{"icon":{"paths":["M251.044 38.362c79.566 0 98.335 0 98.335 72.884v26.608h2.314c0.51 0 244.515 18.262 245.26 18.51 21.622 7.207 41.648 19.077 41.648 47.432 0 28.937-17.312 40.091-39.334 47.432-16.48 3.296-231.806-16.197-245.26-16.197h-4.628v285.751h535.638l1.157-6.942c0-23.993 27.563-44.959 54.374-40.491 20.022 5.005 28.413 13.118 38.177 27.765 2.314 5.785 3.47 9.255 3.47 17.353s0 17.353-3.47 37.020c-6.116 42.815-11.346 50.057-45.118 61.315-4.628 1.157-128.414 1.157-296.163 1.157h-288.064v94.865h248.731c225.592 0 249.887 1.157 257.986 2.314l18.51 4.628c23.919 5.98 46.024 24.043 61.315 39.334 23.376 23.376 39.334 54.075 39.334 99.492 0 54.103-26.184 91.944-57.844 115.689-23.233 17.425-45.923 27.765-86.767 27.765-71.344 0-109.143-40.126-133.042-87.923-10.748-21.497-14.082-61.677-6.942-90.237 1.157-4.628 2.314-10.412 2.314-11.569l1.157-2.314h-256.829l3.47 12.725c2.314 10.412 4.628 17.353 4.628 30.079 0 80.070-42.724 120.283-100.649 143.454-14.537 5.815-23.828 5.785-43.962 5.785-21.167 0-32.68-1.041-47.432-6.942-44.157-17.663-72.307-47.724-90.237-92.55-5.712-14.278-6.942-29.267-6.942-49.747 0-19.32 4.71-28.096 8.098-41.648 5.491-21.966 19.884-43.904 35.863-56.687 12.865-10.292 24.563-21.394 40.491-27.765l11.569-4.628v-586.541h-26.608c-19.667 0-27.765-1.157-33.55-2.314-19.867-6.623-34.707-19.221-34.707-46.275 0-27.8 13.895-39.337 34.707-46.275 4.628-1.157 16.197-2.314 59.002-2.314zM878.076 38.362c26.966 0 41.766 18.863 48.589 39.334 1.157 3.47 1.157 23.138 1.157 55.53v49.747h49.747c48.346 0 48.997-0.636 68.257 5.785 15.422 5.14 29.896 28.679 25.452 50.903-5.317 21.267-18.362 32.729-38.177 39.334-3.47 1.157-23.138 1.157-55.53 1.157h-49.747v49.747c0 48.346 0.636 48.997-5.785 68.257-6.149 18.448-41.648 36.249-64.785 20.824-29.504-19.669-26.608-28.196-26.608-89.080v-49.747h-49.747c-32.393 0-52.060 0-55.53-1.157-20.967-6.989-32.553-16.832-38.177-39.334-6.125-30.623 15.56-47.991 38.177-55.53 3.47-1.157 23.138-1.157 55.53-1.157h49.747v-49.747c0-48.346-0.636-48.997 5.785-68.257 4.838-14.512 23.131-26.608 41.648-26.608zM300.791 904.87c29.443 0 46.275-17.899 46.275-47.432 0-27.989-16.047-39.284-37.020-46.275-3.47-1.157-8.098-1.157-10.412-1.157-26.812 0-45.118 19.53-45.118 47.432 0 29.554 16.853 47.432 46.275 47.432zM829.487 810.005c-10.8 0-28.654 7.696-33.55 15.040-4.843 7.265-12.725 18.545-12.725 30.079 0 31.602 19.366 50.903 50.903 50.903 17.15 0 33.418-13.616 39.334-25.452 15.961-23.94-2.496-58.677-20.824-64.785-6.718-2.24-14.488-5.785-23.138-5.785z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart-plus"],"defaultCode":61149,"grid":0},"properties":{"id":209,"order":79,"ligatures":"","prevSize":24,"code":61149,"name":"shopping-cart-plus"},"setIdx":0,"setId":0,"iconIdx":185},{"icon":{"paths":["M268.397 380.898c34.682 0 58.647 14.804 79.825 28.922 0 0 1.157-70.57 1.157-157.337v-158.494c6.025-16.067 10.184-31.317 19.667-43.962 16.273-21.698 37.946-42.168 68.257-49.747 4.628-1.157 12.725-3.47 16.197-3.47s10.412-1.157 13.883-1.157c67.92 0 110.145 44.008 121.473 100.649 1.157 8.098 1.157 23.138 1.157 76.355v67.1c7.949-1.59 14.917-2.314 28.922-2.314 38.652 0 69.439 18.542 86.767 41.648 5.013 6.685 6.63 12.725 11.569 12.725 6.573 0 24.058-6.942 33.55-6.942 56.292 0 85.002 24.404 109.904 55.53 11.367-3.789 22.809-5.785 41.648-5.785 52.654 0 77.797 21.591 100.649 52.060 7.063 9.417 14.35 26.163 17.353 38.177 2.314 9.255 3.47 11.569 3.47 134.199 0 119.375 3.537 119.917-4.628 168.905-4.811 28.861-12.776 57.947-24.295 80.982-17.821 35.645-37.842 67.92-64.785 94.865-13.809 13.809-29.621 29.388-46.275 40.491-23.624 15.749-52.664 35.211-83.295 43.962-8.098 2.314-19.667 6.942-27.765 9.255-18.337 5.241-29.782 6.568-48.589 9.255-11.569 1.157-30.079 1.157-80.982 1.157-83.186 0-74.55-0.102-126.1-10.412-35.361-7.072-62.883-22.766-91.394-37.020-25.684-12.842-49.635-36.909-69.413-56.687-25.967-25.967-41.927-53.821-63.629-87.923-28.465-44.731-88.903-156.040-118.002-205.926-16.197-27.765-28.922-53.217-31.236-57.844-7.199-14.397-9.255-24.363-9.255-47.432 0-43.048 11.562-62.465 33.55-84.452 23.562-23.562 53.099-39.334 100.649-39.334zM689.504 18.792c15.013 0 42.010 10.919 54.374 15.040 25.954 8.652 59.45 21.626 85.61 34.707 13.883 6.942 32.393 18.51 42.805 24.295 23.748 13.194 32.778 17.736 39.334 43.962 6.172 30.859-18.597 55.53-48.589 55.53-15.867 0-23.537-5.889-38.177-15.040-40.506-25.316-89.971-48.812-139.984-61.315-23.359-5.84-32.426-10.478-41.648-28.922-3.47-6.942-4.628-8.098-4.628-20.824 0-19.509 4.263-23.93 13.883-33.55 6.291-6.291 14.201-13.883 24.295-13.883h12.725zM252.201 52.342c27.955 0 48.589 19.98 48.589 47.432 0 18.619-9.291 28.958-18.51 38.177-2.314 2.314-13.883 8.098-25.452 13.883s-30.079 15.040-38.177 19.667c-20.438 11.678-53.232 39.337-76.355 45.118-39.51 7.902-77.891-45.896-42.805-80.982 11.244-11.244 47.346-33.351 62.472-42.805 15.167-9.479 58.721-32.686 75.197-38.177 3.47-1.157 10.412-2.314 15.040-2.314zM468.539 92.833c-7.858 0-18.101 7.28-20.824 12.725-2.314 3.47-2.314 21.98-2.314 218.652l-1.157 215.181c-9.532 19.062-24.521 40.678-54.374 34.707-4.628-1.157-10.412-3.47-13.883-4.628-16.017-6.407-82.837-81.91-94.865-87.923-3.47-1.157-9.255-3.47-12.725-3.47-15.867-5.289-38.177 8.208-38.177 24.295 0 5.785 1.157 8.098 2.314 11.569 16.996 33.993 73.546 132.344 94.865 170.062 26.733 47.298 41.38 75.517 65.942 109.904 5.785 8.098 12.725 19.667 16.197 24.295 15.893 21.19 35.123 38.068 57.844 53.217 20.584 13.723 47.293 28.201 74.040 33.55l23.138 4.628c9.255 1.157 23.138 2.314 69.413 2.314 84.488 0 102.788-0.916 157.337-24.295 29.741-12.746 52.963-34.452 74.040-55.53 5.785-5.785 12.725-16.197 17.353-21.98 24.098-30.121 31.93-66.405 42.805-109.904 1.157-6.942 2.314-42.805 2.314-126.1 0-87.923 0-120.316-1.157-124.944-3.121-12.487-12.287-18.51-27.765-18.51-6.999 0-13.608 6.393-16.197 11.569-2.314 4.628-3.47 6.942-3.47 26.608-1.886 33.96-7.014 38.996-26.608 52.060-27.702 18.468-60.302-7.373-67.1-27.765-2.314-5.785-2.314-9.255-2.314-49.747 0-41.648-1.157-43.962-3.47-48.589-3.667-7.332-10.966-12.725-21.98-12.725-7.858 0-18.101 7.28-20.824 12.725-1.157 3.47-2.314 10.412-2.314 49.747l-1.157 45.118c-3.416 7.971-6.992 16.247-12.725 21.98-15.421 15.421-48.138 20.119-65.942 2.314-5.869-5.869-10.825-12.811-13.883-21.98-1.157-4.628-2.314-15.040-2.314-72.884v-68.257c-5.143-6.43-12.454-17.353-23.138-17.353-10.649 0-19.48 5.409-23.138 12.725-2.314 3.47-2.314 11.569-2.314 74.040v69.413c-6.513 11.398-13.624 26.908-26.608 31.236l-13.883 4.628c-31.271 6.254-47.004-16.863-55.53-38.177v-188.572l-1.157-188.572c-4.631-9.262-10.342-17.353-24.295-17.353z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["hand-move"],"defaultCode":61264,"grid":0},"properties":{"id":210,"order":80,"ligatures":"","prevSize":24,"code":61264,"name":"hand-move"},"setIdx":0,"setId":0,"iconIdx":186},{"icon":{"paths":["M599.267 18.166c62.783 0 103.94 12.673 152.709 26.608 31.059 8.874 65.013 27.147 90.237 43.962 6.942 4.628 19.667 11.569 27.765 17.353 32.534 23.239 63.97 53.807 90.237 84.452 52.297 61.015 86.283 134.095 105.277 229.064 6.105 30.529 5.785 42.138 5.785 79.825 0 120.431-37.191 202.711-85.61 275.339-25.241 37.861-58.396 72.399-93.708 100.649-25.116 20.093-54.108 36.538-83.295 53.217-48.988 27.993-106.588 41.173-174.69 50.903-8.098 1.157-26.608 1.157-43.962 1.157-61.931 0-102.929-9.575-150.395-23.138-58.128-16.607-106.538-49.655-150.395-80.982-18.745-13.39-37.101-33.631-53.217-49.747-15.533-15.533-30.733-36.266-42.805-54.374-47.924-71.885-84.452-153.099-84.452-273.025 0-69.809 11.781-115.166 28.922-166.592 2.314-6.942 5.785-18.51 9.255-25.452l15.040-30.079c29.76-59.519 70.548-106.415 119.159-148.082 60.273-51.661 139.032-92.579 236.004-106.434 13.941-1.992 35.802-4.628 49.747-4.628h32.393zM587.698 114.187c-11.569 0-27.765 1.157-33.55 1.157-38.45 0-75.719 15.213-106.434 25.452-31.736 10.578-69.504 36.221-93.708 54.374-35.51 26.632-66.311 63.024-91.394 100.649-10.356 15.536-22.762 39.361-28.922 57.844-2.314 6.942-8.098 18.51-10.412 26.608-10.4 36.401-18.51 71.869-18.51 119.159 0 47.34 8.057 82.572 18.51 119.159 2.314 8.098 8.098 19.667 10.412 26.608 13.124 39.371 37.813 73.604 61.315 101.806 8.064-8.064 15.871-20.499 27.765-32.393 28.334-28.334 57.086-42.964 97.179-59.002 13.837-5.534 27.215-6.464 43.962-9.255 11.569-1.157 32.393-2.314 126.1-2.314 94.865 0 114.532 1.157 126.1 2.314 72.217 12.035 125.617 44.089 161.964 92.55 3.47 4.628 6.942 8.098 6.942 8.098l9.255-11.569c14.132-17.664 30.153-41.797 41.648-64.785 5.785-11.569 12.725-28.922 16.197-37.020s5.785-21.98 8.098-28.922c5.342-16.028 8.562-37.492 11.569-55.53 1.157-6.942 3.47-24.295 3.47-38.177 0-54.258-4.79-92.212-19.667-131.885-16.717-44.579-33.129-80.746-60.158-114.532-28.426-35.533-62.946-66.643-101.806-92.55-15.536-10.356-39.361-22.762-57.844-28.922-6.942-2.314-18.51-8.098-26.608-10.412-36.653-10.472-73.174-18.51-121.473-18.51zM588.855 210.208c69.861 0 111.646 30.664 146.924 65.942 29.931 29.931 47.432 77.3 47.432 135.355 0 24.921-8.361 43.592-15.040 63.629-15.098 45.293-48.323 77.957-89.080 98.335-27.469 13.734-53.095 21.98-96.022 21.98-24.921 0-41.838-3.545-59.002-10.412-43.353-17.342-77.841-46.439-100.649-84.452-13.966-23.278-26.608-54.304-26.608-89.080 0-27.126 3.713-52.087 11.569-71.727 26.599-66.499 67.048-106.133 142.297-124.944 4.628-1.157 11.569-3.47 16.197-3.47s13.883-1.157 21.98-1.157zM596.953 307.387h-16.197c-13.036 0-19.855 5.076-28.922 8.098-15.343 5.113-25.363 16.108-35.863 26.608-14.424 14.424-20.824 33.986-20.824 62.472 0 21.32 3.444 34.087 11.569 46.275l9.255 13.883c14.817 22.226 43.848 34.707 79.825 34.707 34.308 0 64.681-22.927 76.355-46.275 7.963-15.926 13.883-31.166 13.883-55.53 0-22.908-10.284-39.14-19.667-53.217-2.314-3.47-6.942-9.255-10.412-11.569-16.409-10.94-31.487-25.452-59.002-25.452zM587.698 740.062c-52.060 0-99.492 1.157-106.434 1.157-27.289 0-48.795 12.156-67.1 23.138-17.917 11.946-36.231 31.666-46.275 49.747 29.128 23.302 77.338 42.361 116.845 55.53 16.028 5.342 37.492 8.562 55.53 11.569 6.942 1.157 24.295 3.47 38.177 3.47 40.879 0 70.069-1.344 101.806-10.412 8.098-2.314 20.824-5.785 28.922-8.098 34.397-9.828 65.794-28.371 93.708-45.118 5.785-4.628 8.098-6.942 8.098-8.098s-2.314-4.628-5.785-9.255-9.255-13.883-16.197-20.824c-23.964-23.964-50.915-35.699-92.55-41.648-8.098-1.157-52.060-1.157-108.747-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["user-circle"],"defaultCode":61288,"grid":0},"properties":{"id":211,"order":81,"ligatures":"","prevSize":24,"code":61288,"name":"user-circle"},"setIdx":0,"setId":0,"iconIdx":187},{"icon":{"paths":["M546.050-4.345c77.966 0 58.571 0.76 92.55 9.255 22.738 5.685 41.935 22.268 56.687 37.020 10.317 10.317 20.896 25.054 26.608 39.334l4.628 11.569h35.863c26.608 0 38.177 1.157 46.275 2.314 63.303 12.659 101.648 53.744 116.845 114.532 2.314 8.098 2.314 21.98 2.314 138.827 0 94.865 0 133.042-1.157 137.669-4.702 14.106-11.384 30.016-25.452 34.707-12.025 4.009-31.248 8.475-43.962 0-12.272-8.182-20.324-18.17-25.452-33.55-1.157-4.628-1.157-42.805-1.157-131.885 0-124.944 0-126.1-2.314-133.042-5.824-17.471-18.538-26.618-35.863-32.393-3.47-1.157-18.51-1.157-35.863-1.157h-30.079c-16.245 48.734-58.041 84.029-112.218 94.865-8.098 1.157-21.98 1.157-72.884 1.157-76.559 0-59.781 1.541-93.708-6.942-34.618-8.653-62.234-36.237-78.668-63.629-5.771-9.617-8.647-15.226-11.569-25.452h-30.079c-49.274 0-64.674 5.342-74.040 42.805 0 4.628-1.157 135.355-1.157 295.006 0 182.788 0 290.379 1.157 295.006 5.622 22.491 15.614 31.813 35.863 40.491l148.082 1.157c148.082 0 149.239 1.157 155.022 3.47 13.986 4.663 20.142 15.17 27.765 26.608 2.314 5.785 2.314 8.098 2.314 18.51 0 29.14-16.754 40.291-38.177 47.432-4.628 1.157-55.53 1.157-155.022 1.157-136.512 0-148.082 0-156.18-2.314-62.293-15.571-98.836-54.057-114.532-116.845-1.157-6.942-1.157-56.687-1.157-314.673 0-292.692-1.157-308.889 1.157-318.144 7.765-38.827 30.655-68.689 57.844-89.080 28.454-21.34 51.806-26.608 105.277-26.608h34.707l5.785-11.569c15.286-30.572 35.703-56.618 68.257-70.57 14.169-8.096 30.715-9.993 46.275-13.883 4.628-1.157 34.707-1.157 69.413-1.157zM543.736 92.833c-53.217 0-59.002 0-64.785 2.314-25.041 8.348-39.774 34.543-28.922 67.1 4.199 12.602 18.337 19.995 31.236 24.295 5.785 1.157 17.353 2.314 60.158 2.314 44.803 0 52.599 0.206 70.57-5.785 14.991-4.998 24.295-21.642 24.295-42.805 0-29.309-13.724-37.283-34.707-46.275zM349.379 427.173c0-25.255 18.823-37.841 37.020-45.118h108.747l108.747 1.157c11.54 4.616 23.353 13.155 28.922 24.295 12.886 19.328 1.1 46.332-9.255 56.687-5.777 5.777-14.745 9.75-21.98 13.883h-105.277c-102.963 0-106.434 0-113.375-2.314-20.598-5.149-33.55-22.586-33.55-48.589zM468.539 574.098c47.432 0 78.668 0 82.139 1.157 20.273 6.759 39.334 19.759 39.334 47.432 0 28.691-18.146 40.369-39.334 47.432-3.47 1.157-35.863 1.157-82.139 1.157-82.091 0-69.483 1.519-94.865-6.942-8.268-2.757-16.19-15.029-20.824-21.98-3.47-5.785-3.47-6.942-3.47-19.667 0-27.481 15.896-39.62 35.863-46.275 4.628-1.157 20.824-2.314 83.295-2.314zM887.332 892.241c-25.539 11.351-41.876 18.51-79.825 18.51-28.143 0-34.841-1.588-54.374-8.098-29.626-9.876-56.025-24.954-72.884-47.432-20.653-27.537-41.648-57.624-41.648-106.434 0-59.012 18.716-88.469 45.118-121.473 13.989-17.486 29.939-23.516 48.589-34.707 14.073-8.444 40.502-17.353 60.158-17.353h19.667c25.461 0 46.043 5.669 62.472 13.883 20.92 10.459 41.193 20.257 55.53 38.177 22.559 28.2 45.118 58.813 45.118 108.747 0 39.54-8.093 60.725-19.667 86.767l54.374 54.374c45.118 45.118 54.374 55.53 56.687 61.315 3.989 11.968 8.726 30.875 0 43.962-4.797 9.595-14.739 16.383-23.138 21.98-5.785 3.47-6.942 3.47-19.667 3.47s-12.725 0-19.667-3.47c-5.785-2.314-15.040-10.412-62.472-57.844zM809.82 671.276c-45.628 0-75.197 29.693-75.197 75.197 0 29.463 19 49.989 39.334 60.158 10.524 5.261 17.232 8.098 33.55 8.098 37.776 0 56.080-21.040 67.1-48.589 3.47-9.255 3.47-10.412 3.47-21.98 0-24.333-6.184-37.42-18.51-49.747-12.394-12.394-25.386-23.138-49.747-23.138z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["report-search"],"defaultCode":61316,"grid":0},"properties":{"id":212,"order":82,"ligatures":"","prevSize":24,"code":61316,"name":"report-search"},"setIdx":0,"setId":0,"iconIdx":188},{"icon":{"paths":["M156.18 276.681c0-23.855 19.826-35.954 35.863-45.118h204.769v-55.53c0-48.589 1.157-56.687 2.314-62.472 12.433-37.299 32.803-61.707 72.884-71.727 4.628-1.157 10.412-2.314 11.569-2.314s52.060-1.157 111.061-1.157c98.335 0 107.59 0 113.375 2.314 35.505 11.835 62.205 32.478 71.727 70.57 2.314 8.098 3.47 12.725 3.47 64.785v55.53h204.769c16.038 9.165 35.863 21.268 35.863 45.118 0 28.604-18.2 50.903-46.275 50.903-3.47 0-5.785 0-5.785 1.157 0 22.163-46.7 557.43-48.589 566.875-6.98 34.896-33.954 64.67-60.158 82.139-19.997 13.331-37.523 18.842-64.785 24.295-6.942 1.157-80.982 1.157-208.239 1.157-154.811 0-192.538 2.91-230.22-4.628-34.896-6.98-64.67-33.954-82.139-60.158-8.927-13.39-17.596-26.671-20.824-42.805-8.119-40.595-12.701-126.715-26.608-301.947-11.569-145.767-21.98-263.77-21.98-264.927s-2.314-1.157-5.785-1.157c-28.073 0-46.275-22.305-46.275-50.903zM686.033 135.54h-192.044v96.022h192.044v-96.022zM590.012 327.584c-268.397 0-284.594 0-284.594 2.314 0 5.331 42.811 534.5 46.275 544.893 6.148 12.298 16.17 25.156 31.236 28.922 6.942 2.314 11.569 2.314 207.082 2.314 196.671 0 200.141 0 207.082-2.314 13.276-3.32 26.030-15.618 30.079-27.765 4.746-11.863 47.432-530.287 47.432-546.050 0-2.314-16.197-2.314-284.594-2.314zM493.99 472.194c-2.314 0-8.098 1.157-10.412 1.157-14.565 0-28.001 16.667-33.55 27.765-3.47 6.942-3.47 8.098-3.47 19.667s0 11.569 3.47 19.667c3.47 6.942 6.942 11.569 38.177 42.805l33.55 34.707-33.55 33.55c-30.079 30.079-34.707 33.55-38.177 41.648-3.47 6.942-4.628 9.255-4.628 17.353 0 31.753 18.583 50.903 50.903 50.903 8.098 0 10.412-1.157 17.353-4.628s12.725-6.942 42.805-37.020l33.55-33.55 33.55 33.55c30.079 30.079 35.863 33.55 42.805 37.020s9.255 4.628 17.353 4.628c32.236 0 50.903-18.903 50.903-50.903 0-8.098-1.157-10.412-4.628-17.353-3.47-8.098-8.098-11.569-38.177-41.648l-33.55-33.55 33.55-34.707c31.236-31.236 34.707-35.863 38.177-42.805 3.47-8.098 3.47-8.098 3.47-19.667 0-37.784-33.607-55.511-68.257-43.962-5.785 2.314-11.569 9.255-40.491 38.177l-34.707 33.55-34.707-33.55c-30.453-30.453-30.618-34.886-50.903-41.648-3.47-1.157-8.098-1.157-10.412-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["trash-x"],"defaultCode":61320,"grid":0},"properties":{"id":213,"order":83,"ligatures":"","prevSize":24,"code":61320,"name":"trash-x"},"setIdx":0,"setId":0,"iconIdx":189},{"icon":{"paths":["M778.584 412.663c0 20.377 4.628 37.926 4.628 63.629 0 34.24 0.95 41.855-15.040 57.844-10.665 10.665-37.344 20.223-55.53 8.098-7.701-5.134-15.687-13.119-20.824-20.824-7.779-11.667-5.785-21.928-5.785-46.275 0-13.883-1.157-35.863-2.314-47.432s-3.47-21.98-3.47-23.138-19.667-1.157-90.237-1.157h-90.237v4.628c0 2.314-1.157 8.098-2.314 15.040-3.709 22.255-3.47 48.14-3.47 76.355 0 28.234-0.248 54.037 3.47 76.355 1.157 6.942 2.314 12.725 2.314 15.040v4.628h47.432c45.616 0 45.979-0.484 64.785 5.785 18.256 6.085 36.4 41.424 20.824 64.785-17.323 25.983-27.209 26.608-77.512 26.608-35.863 0-38.177 0-37.020 2.314 0 1.157 3.47 8.098 5.785 17.353 5.9 23.602 16.409 49.54 24.295 70.57 8.796 23.455 22.49 55.521 34.707 77.512 5.785 10.412 11.569 19.667 12.725 21.98s2.314 4.628 5.785 4.628c25.151 0 48.489 42.374 31.236 68.257-11.48 17.219-23.091 26.608-52.060 26.608-51.14 0-99.219-12.978-138.827-24.295-72.589-20.739-129.112-61.086-179.317-104.12-24.904-21.347-46.927-47.253-64.785-74.040-11.945-17.917-25.506-35.972-35.863-56.687-32.153-64.308-54.374-139.833-54.374-237.162 0-34.966 4.69-56.967 11.569-87.923 26.251-118.132 83.962-201.539 161.964-268.397 26.545-22.752 53.009-41.544 85.61-57.844 47.49-23.745 99.744-40.693 163.121-49.747 8.098-1.157 20.824-3.47 25.452-3.47s20.824-1.157 34.707-1.157c31.025 0 35.57 1.115 60.158 4.628 139.689 19.955 236.061 82.589 310.046 168.905 56.634 66.074 95.073 148.587 108.747 257.986 1.157 9.255 3.47 24.295 3.47 34.707 0 28.064-1.307 37.17-15.040 50.903-10.665 10.665-37.344 20.223-55.53 8.098-16-10.666-26.608-23.715-26.608-50.903 0-30.569-6.022-62.963-11.569-87.923h-185.102v9.255zM592.325 123.442c-28.061 49.108-52.856 101.521-68.257 163.121-2.314 9.255-5.785 16.197-5.785 17.353-1.157 2.314 3.47 2.314 71.727 2.314 39.334 0 72.884-1.157 72.884-1.157l-4.628-16.197c-16.949-59.321-38.432-117.286-65.942-165.435zM477.794 130.383c-45.35 13.605-89.568 39.121-123.787 64.785-39.131 29.351-71.008 68.031-97.179 109.904 0 0 37.020 1.157 80.982 1.157h80.982l1.157-3.47c0-2.314 2.314-10.412 4.628-18.51 10.241-35.841 22.009-78.737 35.863-111.061 4.727-11.029 14.748-33.022 18.51-42.805h-1.157zM704.544 131.54c21.596 43.191 41.599 103.894 53.217 156.18l4.628 18.51h80.982c43.962 0 79.825-1.157 79.825-1.157-28.715-44.669-59.070-82.848-101.806-113.375-25.266-18.047-52.81-36.395-83.295-48.589-8.464-3.386-25.821-8.477-33.55-11.569zM402.596 591.981c0-18.539-5.785-50.154-5.785-74.040 0-27.978-0.425-71.488 3.47-94.865 1.157-6.942 2.314-13.883 2.314-16.197v-3.47h-186.259c-6.351 28.575-11.569 59.776-11.569 96.022 0 36.212 5.186 67.3 11.569 96.022h186.259v-3.47zM881.547 548.019c9.255 0 12.725 1.157 18.51 3.47 8.32 3.328 160.165 157.039 166.592 167.749 12.67 19.007 1.018 45.257-9.255 55.53-7.952 7.952-17.845 13.883-33.55 13.883-11.569 0-11.569-1.157-19.667-4.628-6.942-3.47-12.725-6.942-42.805-37.020l-33.55-33.55v111.061c0 78.668 0 113.375-1.157 118.002-6.989 20.967-16.832 32.553-39.334 38.177-30.377 6.075-48.057-15.754-55.53-38.177-1.157-4.628-1.157-39.334-1.157-118.002v-111.061l-33.55 33.55c-30.079 30.079-35.863 33.55-42.805 37.020-8.098 3.47-8.098 4.628-19.667 4.628-36.745 0-55.138-34.727-43.962-68.257 4.018-10.042 53.555-55.87 161.964-164.277 6.687-6.687 14.644-8.098 28.922-8.098zM337.811 692.629c-43.962 0-80.982 1.157-80.982 1.157 32.022 51.238 71.009 96.152 122.63 128.414 17.344 10.84 36.976 23.894 55.53 30.079 10.002 3.334 35.215 13.073 43.962 16.197-13.881-34.7-31.96-76.839-43.962-116.845-3.47-11.569-8.098-28.922-10.412-37.020s-4.628-16.197-4.628-18.51l-1.157-3.47h-80.982z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["world-upload"],"defaultCode":61323,"grid":0},"properties":{"id":214,"order":84,"ligatures":"","prevSize":24,"code":61323,"name":"world-upload"},"setIdx":0,"setId":0,"iconIdx":190},{"icon":{"paths":["M592.325 38.362c11.439 0 20.284 5.423 27.765 10.412 3.47 2.314 12.725 10.412 20.824 17.353 27.351 23.444 57.405 42.007 91.394 59.002 70.598 35.3 149.214 59.002 255.672 59.002 28.384 0 26.663 0.036 40.491 9.255 18.576 12.384 22.215 42.583 28.922 69.413 11.633 46.533 12.725 68.436 12.725 130.728 0 139.135-36.181 233.092-86.767 321.614-33.329 58.324-79.654 112.461-130.728 155.022-6.942 5.785-19.667 17.353-28.922 24.295-30.644 22.982-58.126 38.72-92.55 57.844-37.073 20.597-70.759 33.886-115.689 45.118-13.883 3.47-17.353 4.628-25.452 4.628-31.211 0-73.258-19.828-97.179-30.079-87.019-37.293-162.232-87.852-219.809-155.022-6.942-8.098-18.51-20.824-26.608-30.079s-18.51-25.452-25.452-34.707c-30.987-41.317-59.614-96.701-77.512-150.395-21.53-64.585-33.55-118.171-33.55-205.926 0-73.203 6.601-109.702 20.824-166.592 5.044-20.178 7.17-27.148 21.98-37.020 15.796-10.531 10.914-9.255 52.060-9.255 50.785 0 75.086-5.187 113.375-11.569 57.726-9.62 106.965-34.973 152.709-57.844 18.988-9.494 36.361-22.997 54.374-35.863 8.098-5.785 19.667-15.040 25.452-20.824 12.131-12.131 21.524-18.51 41.648-18.51zM204.769 409.723c0 22.501 3.54 42.267 5.785 62.472h330.869v-288.064c-22.067 13.239-58.151 33.185-83.295 43.962-36.873 15.803-76.008 26.18-118.002 38.177-19.387 5.539-48.218 7.763-69.413 10.412-9.255 1.157-24.295 3.47-34.707 3.47h-18.51c-7.402 37.013-12.725 83.744-12.725 129.572zM639.758 184.13s-1.157 63.629-1.157 143.454v144.611h330.869v-5.785c0-3.47 1.157-10.412 2.314-15.040s1.157-20.824 2.314-33.55c2.891-40.468-2.436-85.188-8.098-119.159-1.157-6.942-3.47-15.040-3.47-16.197 0-2.314-1.157-1.157-18.51-2.314-71.557 0-133.922-20.731-189.729-39.334-26.4-8.8-43.182-16.792-67.1-30.079-10.412-5.785-26.608-12.725-33.55-17.353zM387.556 569.373c-145.767 0-153.866 0-152.709 2.314 0 1.157 2.314 4.628 3.47 8.098 7.817 23.45 26.433 56.335 37.020 77.512 16.666 33.334 48.694 70.308 71.727 97.179 36.316 42.369 80.402 73.461 129.572 102.963 15.123 9.074 27.73 14.529 45.118 21.98 8.098 3.47 16.197 6.942 17.353 6.942l2.314 1.157v-318.144h-153.866zM792.467 569.373h-153.866v318.144c45.984-15.328 86.462-42.423 122.63-68.257 50.056-35.754 87.603-79.036 123.787-130.728 20.687-29.554 33.936-51.868 47.432-85.61 2.314-5.785 5.785-16.197 8.098-20.824s4.628-9.255 4.628-10.412c1.157-2.314-6.942-2.314-152.709-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["shield-checkered"],"defaultCode":61338,"grid":0},"properties":{"id":215,"order":85,"ligatures":"","prevSize":24,"code":61338,"name":"shield-checkered"},"setIdx":0,"setId":0,"iconIdx":191},{"icon":{"paths":["M372.517 182.973c65.137 0 77.285-1.502 101.806 4.628 31.488 7.873 58.241 36.69 64.785 69.413l2.314 9.255 1.157 145.767c0 128.712 3.106 150.999-4.628 212.867-8.035 64.283-33.917 111.429-70.57 148.082-6.942 6.942-16.197 16.197-23.138 20.824s-16.197 13.883-21.98 17.353c-29.782 17.868-64.58 36.053-104.12 43.962-5.785 1.157-15.040 3.47-17.353 3.47-26.25 0-41.987-19.863-47.432-41.648-4.264-17.057 5.398-32.006 13.883-40.491 13.122-13.122 29.342-15.821 50.903-21.98 40.508-11.573 75.015-37.903 96.022-69.413 23.924-35.887 31.236-63.44 31.236-126.1v-38.177h-76.355c-47.432 0-79.825 0-84.452-1.157-25.891-6.472-48.132-18.401-61.315-38.177l-9.255-13.883c-6.344-9.517-6.846-21.402-9.255-35.863-1.157-8.098-1.157-39.334-1.157-89.080 0-72.884 1.157-76.355 3.47-85.61 7.821-39.109 40.047-63.518 77.512-72.884 5.785-1.157 28.922-1.157 87.923-1.157zM805.192 182.973c63.84 0 80.587-0.967 102.963 4.628 37.604 9.401 57.661 40.917 67.1 78.668l1.157 145.767c0 128.712 3.106 150.999-4.628 212.867-13.941 111.529-79.309 169.803-163.121 211.71-13.402 6.702-41.575 15.488-56.687 18.51-5.785 1.157-15.040 3.47-17.353 3.47-26.25 0-41.987-19.863-47.432-41.648-4.264-17.057 5.398-32.006 13.883-40.491 13.122-13.122 29.342-15.821 50.903-21.98 40.508-11.573 75.015-37.903 96.022-69.413 23.924-35.887 31.236-63.44 31.236-126.1v-38.177h-76.355c-47.432 0-79.825 0-84.452-1.157-25.891-6.472-48.132-18.401-61.315-38.177l-9.255-13.883c-6.344-9.517-6.846-21.402-9.255-35.863-1.157-8.098-1.157-39.334-1.157-89.080 0-72.884 1.157-76.355 3.47-85.61 7.845-39.226 39.959-63.496 77.512-72.884 5.785-1.157 27.765-1.157 86.767-1.157zM445.401 280.152h-144.611v143.454h144.611v-143.454zM807.507 280.152h-72.884v143.454h144.611v-143.454h-71.727z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["quote"],"defaultCode":61374,"grid":0},"properties":{"id":216,"order":86,"ligatures":"","prevSize":24,"code":61374,"name":"quote"},"setIdx":0,"setId":0,"iconIdx":192},{"icon":{"paths":["M445.401 920.536c-37.761 16.183-11.767 11.569-97.179 11.569h-63.629c-23.162-5.148-36.906-12.611-50.903-26.608-11.936-11.936-22.621-26.333-26.608-46.275-2.314-9.255-2.314-16.197-2.314-359.791 0-345.909 0-350.536 2.314-359.791 2.422-12.113 8.163-23.813 13.883-32.393 2.314-3.47 6.942-6.942 9.255-10.412 10.435-15.654 31.368-23.748 52.060-28.922 5.785-1.157 18.51-2.314 69.413-2.314 81.864 0 57.056-2.983 93.708 12.725 32.821-13.129 33.625-12.725 97.179-12.725 61.365 0 54.909-2.522 79.825 5.785 14.207 4.737 24.398 11.671 33.55 20.824 2.314 2.314 4.628 3.47 5.785 3.47 6.447 0 103.547-26.705 109.904-27.765 8.098-1.157 17.353-2.314 23.138-2.314 30.171 0 52.603 12.113 68.257 27.765 8.973 8.973 18.062 19.477 21.98 31.236 18.88 56.641 187.416 667.477 187.416 677.935 0 37.083-13.702 59.978-32.393 78.668-9.055 9.055-19.404 16.42-32.393 19.667-4.628 1.157-33.55 10.412-63.629 17.353-46.156 10.651-51.442 15.040-80.982 15.040-34.655 0-55.043-19.179-72.884-37.020-3.47-4.628-10.412-13.883-12.725-19.667-5.261-9.208-1.57-3.661-91.394-322.771v146.924c0 130.728-1.157 148.082-2.314 156.18-9.537 38.149-31.591 59.144-65.942 72.884l-11.569 2.314-59.002 1.157c-68.979 0-66.833 1.263-101.806-12.725zM396.812 161.619h-96.022v97.179h96.022v-97.179zM590.012 161.619h-96.022v482.421h96.022v-482.421zM826.017 269.21c0-1.042-28.922-105.277-28.922-105.277 0-1.157-1.157-2.314-2.314-2.314s-5.785 1.157-12.725 3.47c-6.294 2.097-94.865 18.705-94.865 24.295 0 0.022 28.76 107.627 28.922 107.59 2.54-0.582 109.904-25.515 109.904-27.765zM396.812 354.82h-96.022v482.421h96.022v-482.421zM919.724 608.177c-13.42-49.052-60.337-220.748-67.1-245.26-21.965 5.608-10.929 3.021-109.904 27.765 35.308 141.235 65.942 236.365 65.942 244.103 0 2.929 110.011-26.346 111.061-26.608zM975.254 810.633c-0.869-3.142-31.236-108.747-31.236-108.747-4.956 0-0.509 0.631-108.747 26.608 0.111 0.4 29.575 107.59 31.236 107.59 2.305 0 108.747-25.452 108.747-25.452zM541.423 740.062h-47.432v97.179h96.022v-97.179h-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["dic"],"defaultCode":61426,"grid":0},"properties":{"id":217,"order":258,"ligatures":"","prevSize":24,"code":61426,"name":"dic"},"setIdx":0,"setId":0,"iconIdx":193},{"icon":{"paths":["M1022.687 17.009c26.786 0 43.099 18.529 48.589 40.491 2.125 10.624-0.215 23.459-4.628 30.079-16.662 27.771-97.774 97.144-94.865 102.963 5.308 5.308 14.008 26.343 17.353 34.707 10.066 25.166 13.883 51.5 13.883 87.923 0 58.339-23.99 99.402-50.903 133.042-4.628 5.785-27.765 28.922-50.903 52.060-34.707 33.55-42.805 41.648-48.589 43.962l-13.883 4.628c-9.556 2.389-20.188-0.944-27.765-3.47-10.381-4.152-257.030-252.537-263.77-263.77-8.195-12.293-4.238-30.093 0-42.805 2.314-5.785 9.255-13.883 43.962-48.589 23.138-23.138 46.275-46.275 52.060-50.903 20.432-16.346 44.008-30.094 71.727-39.334 19.92-6.64 33.857-11.569 62.472-11.569 56.217 0 87.197 14.099 123.787 32.393l46.275-46.275c37.020-37.020 48.589-47.432 53.217-49.747 5.412-3.608 14.675-5.785 21.98-5.785zM784.369 182.443c-4.628 0-12.725 1.157-16.197 1.157-20.431 0-44.749 14.473-57.844 24.295-4.628 3.47-18.51 17.353-30.079 28.922l-21.98 21.98c60.027 59.024 116.567 115.197 172.819 171.659l0.715 0.718 23.138-24.295c12.725-12.725 25.452-26.608 28.922-31.236 11.534-15.378 23.138-38.048 23.138-63.629 0-36.988-9.907-71.777-32.393-86.767-8.64-5.762-13.231-16.148-21.98-21.98-16.491-10.995-41.139-20.824-68.257-20.824zM637.445 548.019c29.256 0 47.432 18.939 47.432 48.589 0 12.725 0 12.725-3.47 20.824-3.47 6.942-6.942 11.569-37.020 41.648l-33.55 33.55 9.255 10.412c12.24 12.24 21.851 22.633 17.353 45.118-1.157 4.628-3.47 10.412-4.628 13.883-2.314 5.785-9.255 13.883-43.962 48.589-37.132 37.132-44.302 48.794-72.884 65.942-30.9 18.54-63.723 35.863-112.218 35.863-47.108 0-80.168-6.453-109.904-24.295-5.785-3.47-11.569-5.785-12.725-6.942-5.819-2.91-75.191 78.202-102.963 94.865-10.347 6.899-33.142 7.212-43.962 0-15.121-10.080-38.581-38.15-20.824-64.785 16.662-27.771 97.774-97.144 94.865-102.963-5.308-5.308-14.008-26.343-17.353-34.707-9.93-24.825-13.883-50.924-13.883-86.767 0-59.479 23.589-100.055 50.903-134.199 4.628-5.785 27.765-28.922 50.903-52.060 34.707-33.55 42.805-41.648 48.589-43.962l13.883-4.628c22.438-4.487 33.144 5.379 45.118 17.353l10.412 9.255 33.55-32.393c27.719-26.090 31.418-33.061 48.589-41.648 3.47-1.157 9.255-1.157 16.197-1.157 26.685 0 46.275 21.241 46.275 48.589 0 12.725-1.157 12.725-4.628 20.824-3.47 6.942-6.942 11.569-37.020 41.648l-33.55 33.55c24.746 25.94 49.257 50.451 74.332 74.377l0.866 0.821 33.55-33.55c30.079-30.079 34.707-33.55 41.648-37.020 8.098-3.47 8.098-4.628 20.824-4.628zM434.989 654.452l-86.767-86.767-23.138 24.295c-12.725 12.725-25.452 26.608-28.922 31.236-12.21 16.279-23.138 38.58-23.138 65.942 0 35.714 10.644 69.954 32.393 84.452 8.64 5.762 13.231 16.148 21.98 21.98 18.932 12.621 42.99 20.824 75.197 20.824 26.997 0 53.294-13.713 69.413-26.608l49.747-49.747-86.767-85.61z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["plug-connected"],"defaultCode":61450,"grid":0},"properties":{"id":218,"order":257,"ligatures":"","prevSize":24,"code":61450,"name":"plug-connected"},"setIdx":0,"setId":0,"iconIdx":194},{"icon":{"paths":["M587.698 38.362c129.572 0 203.612 0 210.554 1.157 68.252 13.65 110.854 51.233 127.257 116.845 3.721 22.321 0.943 129.766 5.785 151.552 1.157 6.942 4.628 18.51 6.942 25.452 2.259 9.035 62.096 127.284 65.942 138.827 8.163 24.489 14.171 49.448 18.51 79.825 1.157 10.412 1.157 60.158 1.157 171.219 0 142.297 0 157.337-2.314 164.277-15.363 61.451-56.043 97.885-118.002 113.375-6.942 1.157-60.158 1.157-313.516 1.157-295.006 0-306.574 1.157-316.987-1.157-62.805-12.56-99.313-55.968-114.532-116.845-1.157-6.942-1.157-37.020-1.157-171.219 0-152.709-1.157-163.121 1.157-175.847 2.835-19.838 9.835-39.629 15.040-57.844 3.47-9.255 17.353-40.491 41.648-87.923l37.020-74.040v-69.413c0-84.751-3.892-100.594 25.452-144.611 17.754-26.632 47.536-53.006 83.295-60.158 5.785-1.157 13.883-3.47 18.51-3.47s98.335-1.157 208.239-1.157zM590.012 135.54c-193.2 0-200.141 0-207.082 2.314-14.371 4.79-27.372 15.783-31.236 31.236-2.314 6.942-2.314 10.412-2.314 77.512v70.57l35.863 70.57c39.878 79.756 47.613 84.572 59.002 164.277 1.157 10.412 1.157 60.158 1.157 171.219 0 141.14-1.157 157.337-2.314 164.277-1.85 7.397-3.422 12.604-5.785 18.51h226.749l226.749-1.157c19.905-8.531 30.218-17.908 35.863-40.491 1.157-4.628 1.157-65.942 1.157-144.611 0-77.512 0-144.611-1.157-153.866-2.482-19.86-5.264-38.615-11.569-54.374-4.597-11.491-56.962-116.375-61.315-127.257-22.139-55.345-21.040-61.061-23.138-149.239-1.497-71.846 4.818-58.716-9.255-79.825-5.078-7.616-14.278-14.849-24.295-17.353-6.942-2.314-10.412-2.314-207.082-2.314zM529.853 326.427c-17.612-7.547-35.863-19.795-35.863-43.962 0-20.109 6.204-32.289 18.51-40.491 3.47-2.314 9.255-6.942 13.883-8.098 6.942-2.314 9.255-2.314 63.629-2.314 52.060 0 55.53 0 62.472 2.314 20.598 5.149 33.55 22.586 33.55 48.589 0 24.172-18.251 36.415-35.863 43.962h-120.316zM300.791 437.488l-17.353 34.707c-20.35 40.7-24.416 48.403-30.079 93.708-1.157 9.255-1.157 76.355-1.157 153.866 0 78.668 0 139.984 1.157 144.611 5.707 22.825 18.073 40.491 47.432 40.491 29.302 0 41.53-16.877 47.432-40.491 1.157-4.628 1.157-65.942 1.157-144.611 0-77.512 0-144.611-1.157-153.866-5.629-45.041-9.974-53.496-30.079-93.708zM689.504 520.784c20.62 0 29.132 4.39 43.962 8.098 29.512 7.378 54.4 30.499 70.57 52.060 15.347 20.463 26.608 49.012 26.608 84.452 0 45.692-17.254 77.412-40.491 100.649-24.122 24.122-55.29 43.962-102.963 43.962-22.207 0-30.269-1.002-45.118-6.942-15.225-6.090-30.454-12.1-42.805-21.98-12.723-10.179-23.024-22.216-32.393-34.707-15.903-21.204-24.295-43.662-24.295-80.982 0-82.87 50.778-125.491 118.002-142.297 4.628-1.157 9.255-2.314 10.412-2.314h18.51zM690.66 617.962h-11.569c-22.009 0-40.491 24.324-40.491 47.432 0 20.069 11.969 37.925 26.608 42.805 3.47 1.157 10.412 4.628 13.883 4.628h13.883c30.993 0 57.2-51.547 30.079-78.668-6.803-6.803-19.436-16.197-32.393-16.197z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["paper-bag"],"defaultCode":61487,"grid":0},"properties":{"id":219,"order":256,"ligatures":"","prevSize":24,"code":61487,"name":"paper-bag"},"setIdx":0,"setId":0,"iconIdx":195},{"icon":{"paths":["M515.971 38.362c145.767 0 178.16 0 182.788 1.157 3.47 1.157 8.098 3.47 11.569 4.628 7.537 3.769 255.332 250.198 260.299 262.613 1.157 3.47 3.47 9.255 4.628 13.883 1.157 5.785 1.157 87.923 1.157 281.124 0 253.358 0 273.025-2.314 282.281-3.982 19.91-12.383 41.191-23.138 55.53-20.691 27.588-49.489 53.367-90.237 60.158l-11.569 2.314h-259.142c-277.106 0-239.589 4.889-286.908-6.942-50.055-12.513-86.757-60.114-97.179-112.218-2.314-10.412-2.314-30.079-2.314-362.106s0-351.693 2.314-362.106c9.195-45.977 35.904-83.316 72.884-101.806l16.197-8.098c8.476-4.238 26.66-9.255 37.020-9.255 4.628 0 86.767-1.157 183.945-1.157zM489.363 135.54c-137.669 0-149.239 0-155.022 2.314-17.44 5.814-26.459 16.907-32.393 34.707-1.157 5.785-1.157 48.589-1.157 348.223 0 325.58-3.255 330.356 6.942 360.948 4.171 12.513 17.85 17.897 30.079 23.138h504.403c12.121-5.194 25.929-10.689 30.079-23.138 10.151-30.452 6.942-25.216 6.942-262.613v-242.946h-80.982l-80.982-1.157-11.569-3.47c-5.785-2.314-15.040-5.785-19.667-8.098-18.077-9.039-27.496-25.625-38.177-41.648-6.222-9.331-6.849-20.265-9.255-34.707-1.157-6.942-1.157-43.962-1.157-82.139v-69.413h-148.082zM734.622 203.797v75.197h75.197l-37.020-38.177c-20.824-20.824-38.177-37.020-38.177-37.020zM690.66 405.096c52.037 0 84.184 31.855 101.806 67.1 7.381 14.761 9.255 25.526 9.255 48.589 0 30.194-4.44 45.254-17.353 62.472-4.628 6.942-24.295 28.922-137.669 142.297l-133.042 133.042h-61.315c-66.878 0-54.63 1.071-78.668-6.942-6.135-2.045-18.781-14.696-20.824-20.824-6.13-18.39-4.628-29.696-4.628-69.413 0-40.098-3.182-51.479 5.785-69.413 5.87-11.74 257.060-262.035 267.241-268.397 13.661-8.197 35.648-18.51 54.374-18.51h15.040zM688.347 501.116c-3.47 0-8.098 0-9.255 1.157s-54.374 53.217-118.002 116.845l-115.689 114.532v27.765h28.922l114.532-114.532c64.785-64.785 114.532-115.689 115.689-118.002s1.157-5.785 1.157-8.098c0-10.709-6.445-19.667-17.353-19.667z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["file-pencil"],"defaultCode":61497,"grid":0},"properties":{"id":220,"order":255,"ligatures":"","prevSize":24,"code":61497,"name":"file-pencil"},"setIdx":0,"setId":0,"iconIdx":196},{"icon":{"paths":["M515.971 38.362c146.924 0 178.16 0 182.788 1.157 3.47 1.157 8.098 3.47 11.569 4.628 5.733 2.867 256.846 254.55 261.456 263.77 8.574 25.724 4.628 78.080 4.628 293.849l-1.157 273.025-2.314 11.569c-8.067 40.331-30.869 69.138-59.002 90.237-14.916 11.186-34.684 20.124-55.53 24.295-9.255 2.314-23.138 1.157-268.397 1.157-242.946 0-259.142 1.157-268.397-1.157-54.898-13.724-90.087-47.634-109.904-97.179-2.314-5.785-4.628-13.883-5.785-19.667-2.314-10.412-2.314-27.765-2.314-363.262s0-352.851 2.314-363.262c7.973-39.864 29.014-69.483 56.687-90.237 4.628-3.47 10.412-8.098 15.040-10.412l16.197-8.098c9.437-4.718 25.734-9.255 37.020-9.255 4.628 0 87.923-1.157 185.102-1.157zM489.363 135.54c-137.669 0-149.239 0-155.022 2.314-17.44 5.814-26.459 16.907-32.393 34.707-1.157 5.785-1.157 48.589-1.157 348.223 0 325.58-3.255 330.356 6.942 360.948 4.171 12.513 17.85 17.897 30.079 23.138h504.403c12.121-5.194 25.929-10.689 30.079-23.138 10.151-30.452 6.942-25.216 6.942-262.613v-242.946h-76.355c-47.432 0-79.825 0-84.452-1.157-25.891-6.472-48.132-18.401-61.315-38.177-24.318-36.477-19.667-52.953-19.667-130.728v-70.57h-148.082zM734.622 203.797v75.197h75.197l-37.020-38.177c-20.824-20.824-38.177-37.020-38.177-37.020zM588.855 423.606c-78.668 0-146.924 1.157-150.395 1.157-21.999 0-34.781 21.048-40.491 38.177-1.157 3.47-1.157 17.353-1.157 33.55 0 47.085 6.936 60.156 41.648 71.727 32.405 6.481 50.895-19.621 55.53-47.432h47.432v240.632c-16.855 2.407-24.994 6.483-34.707 16.197-6.683 6.683-12.725 13.907-12.725 25.452v13.883c0 21.999 21.048 34.781 38.177 40.491 3.47 1.157 24.295 1.157 57.844 1.157s54.374 0 57.844-1.157c16.781-5.593 38.177-18.749 38.177-40.491v-13.883c0-24.883-24.775-38.411-47.432-41.648v-240.632h47.432c4.587 27.524 17.171 39.272 41.648 47.432 29.278 5.856 47.095-16.34 54.374-38.177 1.157-3.47 1.157-18.51 1.157-33.55 0-36.221 0.503-42.301-16.197-59.002-8.629-8.629-12.879-9.293-26.608-12.725-4.628-1.157-60.158-1.157-151.552-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["file-typography"],"defaultCode":61505,"grid":0},"properties":{"id":221,"order":254,"ligatures":"","prevSize":24,"code":61505,"name":"file-typography"},"setIdx":0,"setId":0,"iconIdx":197},{"icon":{"paths":["M588.855 86.952c231.345 0 296.034-4.082 330.869 4.628 32.608 8.151 66.14 22.178 86.767 42.805 26.794 26.794 52.422 59.652 61.315 104.12 5.548 27.742 4.628 39.48 4.628 89.080 0 68.84 0.956 90.64-19.667 131.885-3.47 6.942-8.098 17.353-11.569 21.98-9.297 12.396-13.987 17.196-24.295 30.079l-9.255 9.255 9.255 9.255c21.13 26.412 42.759 54.14 50.903 94.865 5.548 27.742 4.628 39.48 4.628 89.080 0 71.923 0.083 92.383-21.98 136.512-28.339 56.678-77.715 88.658-149.239 102.963-6.942 1.157-107.59 1.157-311.202 1.157-228.947 0-295.059 4.035-329.713-4.628-52.445-13.111-94.451-39.802-119.159-80.982-11.526-19.21-23.911-40.891-28.922-65.942-5.548-27.739-4.628-40.476-4.628-90.237 0-70.107-1.196-89.002 19.667-130.728 3.47-6.942 8.098-17.353 11.569-21.98 9.297-12.396 13.987-17.196 24.295-30.079l9.255-9.255-9.255-9.255c-21.13-26.412-42.759-54.14-50.903-94.865-5.548-27.742-4.628-39.48-4.628-89.080 0-72.448 2.655-87.62 20.824-133.042 5.456-13.639 17.834-31.717 27.765-41.648l17.353-17.353c21.992-21.992 52.893-35.204 87.923-43.962 4.628-1.157 11.569-3.47 16.197-3.47s144.611-1.157 311.202-1.157zM595.796 182.973c-163.121 0-299.634 1.157-304.261 1.157-29.394 0-49.484 18.249-64.785 33.55-6.466 6.466-16.606 27.834-19.667 37.020-2.314 5.785-2.314 15.040-2.314 69.413 0 53.217 1.157 62.472 2.314 70.57 5.576 22.307 12.573 32.961 24.295 48.589 10.664 14.218 30.419 21.776 49.747 26.608 8.098 1.157 39.334 2.314 308.889 2.314s300.791-1.157 308.889-2.314c13.297-3.325 23.722-6.512 33.55-13.883 4.628-3.47 12.725-8.098 16.197-12.725 8.29-11.055 13.364-17.474 19.667-30.079 2.314-4.628 3.47-13.883 4.628-18.51 1.157-8.098 2.314-17.353 2.314-70.57 0-75.337 2.527-56.155-9.255-85.61-12.197-30.492-38.869-45.871-72.884-54.374zM349.379 376.173c-28.054 0-48.589-19.892-48.589-47.432 0-18.186 9.46-29.126 18.51-38.177 7.687-7.687 14.76-10.412 31.236-10.412 27.407 0 45.118 20.319 45.118 48.589 0 28.836-18.376 47.432-46.275 47.432zM844.527 280.152c18.148 10.889 34.707 21.741 34.707 50.903 0 23.462-18.965 36.72-35.863 43.962l-153.866 1.157c-138.827 0-155.022-1.157-160.807-2.314-19.124-6.374-33.55-18.621-33.55-45.118 0-28.418 13.905-38.187 32.393-47.432 3.47-1.157 37.020-1.157 160.807-1.157h156.18zM588.855 569.373c-262.613 0-301.947 1.157-308.889 2.314-20.802 5.2-31.458 13.183-46.275 24.295-14.739 11.055-21.569 30.741-26.608 50.903-1.157 8.098-2.314 17.353-2.314 70.57 0 75.337-2.527 56.155 9.255 85.61 13.115 32.786 40.795 44.063 75.197 55.53h601.58c7.596-2.531 19.8-5.829 26.608-8.098 27.756-9.252 46.408-36.262 55.53-63.629 2.314-5.785 2.314-15.040 2.314-69.413 0-53.217-1.157-62.472-2.314-70.57-5.576-22.307-12.573-32.961-24.295-48.589-10.664-14.218-30.419-21.776-49.747-26.608-8.098-1.157-40.491-2.314-310.046-2.314zM300.791 713.983c0-28.395 20.767-48.589 48.589-48.589 17.845 0 28.14 9.63 37.020 18.51 7.688 7.688 9.255 13.27 9.255 30.079 0 18.143-3.953 25.934-12.725 34.707-28.173 28.173-82.139 8.136-82.139-34.707zM688.347 665.395c-144.611 0-155.022 0-160.807 2.314-18.755 6.252-32.393 19.129-32.393 45.118 0 30.293 15.463 37.593 34.707 48.589h314.673c18.354-11.013 34.707-21.389 34.707-50.903 0-24.109-19.727-36.551-37.020-43.962l-153.866-1.157z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["pfs"],"defaultCode":61564,"grid":0},"properties":{"id":222,"order":253,"ligatures":"","prevSize":24,"code":61564,"name":"pfs"},"setIdx":0,"setId":0,"iconIdx":198},{"icon":{"paths":["M236.004 953.459c-42.611-8.475-67.34-36.188-78.668-76.355v-712.642c8.229-32.919 25.617-54.456 53.217-68.257 3.833-1.916 22.773-8.098 27.765-8.098 2.314 0 161.964-1.157 355.164-1.157l352.851 1.157c43.411 10.852 65.354 35.823 76.355 79.825 1.157 5.785 1.157 121.473 1.157 357.478l-1.157 351.693-3.47 11.569c-4.986 14.959-9.139 21.865-18.51 31.236-3.47 3.47-8.098 10.412-11.569 12.725l-13.883 9.255c-6.478 4.318-19.995 8.593-28.922 11.569h-710.328zM879.234 520.784c0-31.548 20.464-44.095 47.432-48.589v-288.064h-673.308v288.064c26.967 4.494 47.432 17.048 47.432 48.589 0 31.548-20.464 44.095-47.432 48.589v288.064h288.064c4.494-26.967 17.048-47.432 48.589-47.432 31.548 0 44.095 20.464 48.589 47.432h288.064v-288.064c-26.967-4.494-47.432-17.048-47.432-48.589zM592.325 231.562c-29.074 0-42.551 15.433-49.747 37.020-1.157 5.785-1.157 24.295-1.157 131.885 0 128.274-2.26 117.004 6.942 144.611 6.004 9.005 151.032 157.822 164.277 163.121 12.443 8.295 31.016 4.315 43.962 0 15.422-5.14 29.896-28.679 25.452-50.903-1.157-4.628-3.47-10.412-4.628-13.883-2.314-5.785-12.725-17.353-70.57-75.197l-68.257-68.257v-112.218c0-96.022 0-113.375-1.157-119.159-6.386-19.162-19.502-37.020-45.118-37.020z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["clock-2"],"defaultCode":61593,"grid":0},"properties":{"id":223,"order":252,"ligatures":"","prevSize":24,"code":61593,"name":"clock-2"},"setIdx":0,"setId":0,"iconIdx":199},{"icon":{"paths":["M342.438 858.594c34.339 0 53.217 15.673 53.217 48.589 0 16.353-1.709 21.376-9.255 28.922-6.156 6.156-12.801 13.612-23.138 16.197-6.942 2.314-10.412 2.314-89.080 2.314l-82.139-1.157c-16.667-8.333-35.863-19.671-35.863-43.962 0-19.901 8.54-30.521 18.51-40.491 7.358-7.358 14.16-10.412 30.079-10.412h13.883l138.827-367.889c81.508-216.118 135.079-368.052 145.767-384.086 4.885-7.326 14.392-14.438 23.138-17.353 6.942-2.314 11.569-2.314 63.629-2.314 53.217 0 55.53 0 62.472 2.314 9.096 2.274 19.656 9.239 24.295 16.197 3.47 3.47 49.747 111.061 166.592 379.459l164.277 373.674h15.040c19.003 0 24.553 3.729 33.55 12.725 10.651 10.651 23.789 36.621 10.412 56.687-7.916 11.874-16.423 18.623-30.079 25.452l-178.16 1.157c-175.847 0-178.16 0-186.259-2.314-10.333-2.583-16.972-10.030-23.138-16.197-7.15-7.15-10.412-13.561-10.412-28.922 0-31.539 20.394-48.589 53.217-48.589 9.255 0 17.353-1.157 17.353-1.157s-13.883-32.393-30.079-71.727l-30.079-70.57-136.512-1.157h-136.512l-26.608 71.727c-15.040 39.334-26.608 71.727-26.608 71.727s9.255 1.157 19.667 1.157zM591.168 182.973c-13.883 0-15.040 0-16.197 2.314-0.312 0.312-20.824 55.277-20.824 55.53 0 3.185 259.81 616.131 260.299 616.62 1.157 1.157 11.569 1.157 43.962 1.157 23.138 0 42.805-1.157 42.805-1.157s-65.942-151.552-146.924-336.654l-148.082-337.811h-15.040zM504.403 373.859c-20.831 54.16-91.394 239.473-91.394 241.789 0 1.157 40.491 1.157 97.179 1.157 62.472 0 97.179 0 97.179-1.157 0-2.368-2.203-3.631-102.963-241.789z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["typography"],"defaultCode":60357,"grid":0},"properties":{"id":163,"order":33,"ligatures":"","prevSize":24,"code":60357,"name":"typography"},"setIdx":0,"setId":0,"iconIdx":200},{"icon":{"paths":["M155.022-4.345c8.61 0 16.437 3.551 23.138 5.785 9.322 3.73 880.966 875.951 888.489 888.489 15.463 23.196-2.816 58.783-20.824 64.785-35.459 11.82-47.877 0.713-71.727-23.138l-19.667-19.667h-137.669c-134.199 0-137.669 0-144.611-2.314-20.598-5.149-33.55-22.586-33.55-48.589 0-20.012 13.743-33.481 27.765-40.491 8.098-3.47 8.098-4.628 25.452-4.628 16.197 0 17.353 0 17.353-2.314 0-1.157-15.040-33.55-31.236-71.727l-30.079-69.413-135.355-1.157h-136.512l-26.608 71.727c-15.040 39.334-26.608 71.727-26.608 71.727s9.255 1.157 19.667 1.157c30.007 0 40.243 8.76 49.747 27.765 3.47 6.942 4.628 9.255 4.628 17.353 0 25.931-12.752 43.39-33.55 48.589-6.942 2.314-10.412 2.314-89.080 2.314l-82.139-1.157c-16.667-8.333-35.863-19.671-35.863-43.962 0-20.812 9.274-31.255 19.667-41.648 6.548-6.548 14.648-9.255 28.922-9.255h13.883c-109.618 342.025-50.508 188.143 8.092 34.010l166.598-499.078-137.669-138.827c-121.473-122.63-138.827-139.984-142.297-145.767-6.899-10.347-7.212-33.142 0-43.962 8.972-13.458 20.402-26.608 41.648-26.608zM874.606 522.038c0 28.066-19.868 47.432-48.589 47.432-15.721 0-25.066-4.242-32.393-11.569-2.314-2.314-6.942-6.942-8.098-9.255s-41.648-93.708-90.237-204.769l-89.080-203.612h-15.040c-13.883 0-15.040 0-16.197 2.314-1.157 1.157-6.942 17.353-13.883 37.020s-16.197 38.177-17.353 41.648c-2.277 6.831-15.179 18.556-21.98 20.824-5.785 2.314-8.098 2.314-19.667 2.314-17.921 0-25.773-4.949-34.707-13.883-6.137-9.204-17.079-21.92-12.725-39.334 1.157-3.47 10.412-32.393 21.98-63.629 15.040-39.334 21.98-57.844 25.452-62.472 4.805-7.207 14.968-16.178 24.295-18.51 6.942-2.314 9.255-2.314 63.629-2.314 52.060 0 55.53 0 62.472 2.314 11.606 2.902 19.473 9.541 25.452 18.51 6.091 9.135 189.915 429.764 194.357 443.088 1.157 3.47 2.314 10.412 2.314 13.883zM468.539 426.016c-0.284 0.854-55.53 143.48-55.53 145.767-1.157 2.314 4.628 2.314 96.022 2.314h97.179l-4.628-9.255-3.47-10.412c-44.904-43.9-87.122-85.752-129.052-127.892l-0.52-0.523zM820.232 776.552c-20.824-20.824-38.177-38.177-38.177-37.020 0 0.2 32.13 74.934 32.393 75.197 1.157 1.157 6.942 1.157 23.138 1.157h20.824l-38.177-39.334z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["typography-off"],"defaultCode":61882,"grid":0},"properties":{"id":224,"order":251,"ligatures":"","prevSize":24,"code":61882,"name":"typography-off"},"setIdx":0,"setId":0,"iconIdx":201},{"icon":{"paths":["M601.58 39.52c47.447 0 82.64 11.349 118.002 23.138 41.285 13.762 77.345 39.166 105.277 67.1 29.339 29.339 54.961 64.231 69.413 107.59 7.893 23.677 16.197 45.767 16.197 76.355 1.157 13.883 0 15.040 2.314 15.040 1.157 0 6.942 1.157 12.725 1.157 16.606 0 31.703 5.555 46.275 10.412 80.716 26.905 148.082 93.269 148.082 198.984 0 61.757-15.86 100.589-42.805 136.512-23.411 31.213-54.199 54.766-93.708 70.57-38.745 15.498-33.831 15.040-101.806 15.040h-50.903v144.611h98.335c86.689 0 93.726-1.923 116.845 5.785 18.256 6.085 36.4 41.424 20.824 64.785-8.182 12.272-18.17 20.324-33.55 25.452-4.628 1.157-35.863 1.157-105.277 1.157-63.629 0-104.12 0-109.904-1.157-42.232-10.557-67.77-32.093-80.982-71.727-2.314-5.785-2.314-13.883-2.314-87.923v-80.982h-96.022v98.335c0 68.257 0 99.492-1.157 104.12-6.989 20.967-16.832 32.553-39.334 38.177-30.377 6.075-48.057-15.754-55.53-38.177-1.157-4.628-1.157-35.863-1.157-104.12v-98.335h-96.022v80.982c0 87.676 1.475 75.398-6.942 100.649-7.774 23.318-33.909 48.101-59.002 54.374-28.684 7.17-40.27 5.785-127.257 5.785-69.413 0-100.649 0-105.277-1.157-20.448-6.817-44.393-24.451-38.177-55.53 5.319-21.279 18.017-32.614 38.177-39.334 4.628-1.157 35.863-1.157 104.12-1.157h98.335v-144.611h-24.295c-42.595 0-70.383-8.718-100.649-20.824-33.788-13.516-60.867-31.945-85.61-56.687-8.098-8.098-18.51-19.667-23.138-26.608s-12.725-16.197-16.197-21.98c-21.383-35.639-39.334-74.923-39.334-130.728 0-66.602 15.595-105.431 40.491-146.924 35.661-59.436 98.147-103.387 177.004-119.159 5.785-1.157 13.883-2.314 15.040-2.314 4.29 0 11.615-19.759 16.197-28.922 24.256-48.508 56.66-82.892 100.649-112.218 6.942-4.628 18.51-12.725 25.452-16.197l25.452-12.725c38.885-19.444 84.977-26.608 141.14-26.608zM599.267 135.54c-70.189 0-116.326 22.49-156.18 54.374-24.502 19.601-41.956 44.151-54.374 75.197-2.314 5.785-6.942 16.197-8.098 21.98-6.054 30.273-20.195 39.699-54.374 42.805-41.347 0-69.725 15.457-96.022 31.236-44.065 26.44-74.040 76.112-74.040 144.611 0 36.289 16.435 67.687 33.55 89.080 10.22 12.774 22.149 26.447 34.707 35.863 21.667 16.25 50.093 26.215 80.982 32.393 8.098 1.157 65.942 1.157 313.516 1.157h304.261c56.102-12.466 99.492-49.692 99.492-118.002 0-43.304-13.177-60.684-33.55-84.452-26.613-26.613-48.913-35.863-105.277-35.863-31.288 0-33.607-0.79-48.589-5.785-19.207-6.402-29.088-30.326-24.295-56.687 1.157-8.098 3.47-19.667 3.47-25.452 0-63.055-23.19-105.329-55.53-137.669-21.906-21.906-45.45-38.288-76.355-48.589l-24.295-8.098c-20.323-6.774-30.385-8.098-59.002-8.098z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-computing"],"defaultCode":61904,"grid":0},"properties":{"id":225,"order":250,"ligatures":"","prevSize":24,"code":61904,"name":"cloud-computing"},"setIdx":0,"setId":0,"iconIdx":202},{"icon":{"paths":["M726.524 879.948c-22.908 51.545-62.659 96.022-136.512 96.022-59.822 0-94.291-30.808-121.473-64.785-5.97-9.948-10.467-20.947-15.040-31.236h-153.866c-107.59 0-155.022-1.157-157.337-2.314s-5.785-2.314-9.255-3.47c-17.735-5.912-34.389-42.704-19.667-64.785 3.85-5.777 12.954-18.585 19.667-20.824 3.47-1.157 6.942-2.314 9.255-3.47s49.747-2.314 157.337-2.314h153.866c15.274-40.969 46.952-72.652 87.923-87.923v-56.687h-75.197c-61.315 0-77.512-1.157-86.767-2.314-23.422-3.904-48.656-8.914-64.785-19.667-9.858-6.573-28.059-14.177-37.020-23.138-36.539-36.539-72.884-75.44-72.884-148.082 0-36.226 4.406-57.402 16.197-80.982 2.314-4.628 5.785-13.883 9.255-19.667 28.731-47.884 77.752-87.384 143.454-98.335 23.108-51.992 61.959-88.245 112.218-113.375 15.691-7.845 35.69-15.675 55.53-18.51 8.098-1.157 18.51-4.628 23.138-4.628s17.353-1.157 26.608-1.157c55.603 0 98.65 15.691 134.199 37.020 20.917 12.551 42.154 30.371 56.687 49.747l13.883 18.51c19.473 25.962 25.336 59.055 33.55 96.022 20.308 4.511 37.018 7.518 54.374 16.197 44.133 22.066 74.666 61.5 87.923 114.532 1.157 4.628 3.47 16.197 3.47 27.765 0 80.849-39.71 128.024-93.708 155.022-14.245 7.122-28.534 10.798-43.962 13.883-8.098 1.157-27.765 1.157-105.277 1.157h-93.708v56.687c39.99 14.484 73.701 47.6 87.923 87.923h153.866c164.723 0 143.221-4.744 168.905 8.098 15.545 7.772 32.599 39.604 17.353 62.472-7.308 10.963-14.496 19.871-27.765 24.295-5.785 2.314-12.725 2.314-158.494 2.314h-153.866zM728.838 361.663c0-12.098 3.47-26.371 3.47-38.177 0-43.57-23.016-71.058-48.589-90.237-19.244-14.433-51.538-27.765-83.295-27.765h-20.824c-41.185 0-72.134 22.388-93.708 43.962-13.746 13.746-24.561 29.098-28.922 50.903-7.688 26.904-20.209 35.794-52.060 39.334-33.402 0-60.68 13.958-76.355 33.55-16.238 20.299-27.765 37.131-27.765 72.884 0 20.649 10.91 38.923 19.667 52.060 9.313 13.97 24.33 23.161 38.177 32.393 7.805 5.202 19.856 6.7 30.079 9.255 5.785 1.157 49.747 2.314 220.965 2.314h214.024c28.332-12.142 55.53-28.317 55.53-68.257 0-17.314-8.381-36.147-17.353-45.118-18.826-18.826-26.937-20.962-68.257-23.138-32.487-1.71-28.996-0.036-42.805-6.942-9.676-4.838-21.98-22.756-21.98-37.020zM592.325 783.927c-21.045 0-26.382 4.4-37.020 15.040-9.4 9.4-11.569 13.473-11.569 32.393 0 18.143 3.953 25.934 12.725 34.707 6.634 6.634 15.361 12.725 26.608 12.725h13.883c16.365 0 32.91-15.436 37.020-27.765 2.314-5.785 2.314-8.098 2.314-19.667 0-25.237-8.454-34.307-25.452-42.805-6.942-3.47-8.098-4.628-18.51-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-data-connection"],"defaultCode":61905,"grid":0},"properties":{"id":226,"order":249,"ligatures":"","prevSize":24,"code":61905,"name":"cloud-data-connection"},"setIdx":0,"setId":0,"iconIdx":203},{"icon":{"paths":["M170.834 504.826c94.343 0 179.717 38.181 241.601 100.066s100.066 147.259 100.066 241.601c0 23.575 19.134 42.709 42.709 42.709s42.709-19.134 42.709-42.709c0-117.918-47.834-224.775-125.093-301.991s-184.073-125.093-301.991-125.093c-23.575 0-42.709 19.134-42.709 42.709s19.134 42.709 42.709 42.709zM170.834 205.867c176.898 0 337.012 71.665 453.007 187.618s187.618 276.11 187.618 453.007c0 23.575 19.134 42.709 42.709 42.709s42.709-19.134 42.709-42.709c0-200.473-81.316-382.069-212.645-513.397s-312.925-212.645-513.397-212.645c-23.575 0-42.709 19.134-42.709 42.709s19.134 42.709 42.709 42.709zM298.959 803.785c0-23.575-9.609-44.972-25.027-60.39s-36.815-25.027-60.39-25.027-44.972 9.609-60.39 25.027-25.027 36.815-25.027 60.39 9.609 44.972 25.027 60.39 36.815 25.027 60.39 25.027 44.972-9.609 60.39-25.027 25.027-36.815 25.027-60.39z"],"isMulticolor":false,"isMulticolor2":false,"tags":["rss"],"defaultCode":59654,"grid":0},"properties":{"id":7,"order":201,"ligatures":"","prevSize":24,"code":59654,"name":"rss"},"setIdx":0,"setId":0,"iconIdx":204},{"icon":{"paths":["M494.776 216.972l-24.643 197.142c1.409 30.579 19.859 48.004 42.366 48.004h293.193l-275.469 330.563 24.643-197.142c-1.409-30.579-19.859-48.004-42.366-48.004h-293.193zM522.409 50.409l-427.084 512.5c-15.119 18.109-12.641 45.057 5.466 60.134 7.987 6.706 17.724 9.951 27.334 9.909h335.987l-36.687 293.663c-2.947 23.404 13.666 44.759 37.071 47.663 14.906 1.879 28.956-4.185 38.096-15.034l427.084-512.5c15.119-18.109 12.641-45.057-5.466-60.134-7.987-6.706-17.724-9.951-27.334-9.909h-335.987l36.687-293.663c2.947-23.404-13.666-44.759-37.071-47.663-14.906-1.879-28.956 4.185-38.096 15.034z"],"isMulticolor":false,"isMulticolor2":false,"tags":["zap"],"defaultCode":59655,"grid":0},"properties":{"id":8,"order":202,"ligatures":"","prevSize":24,"code":59655,"name":"zap"},"setIdx":0,"setId":0,"iconIdx":205},{"icon":{"paths":["M572.378 285.86l25.198-202.865c2.904-23.404-13.709-44.759-37.113-47.663-14.906-1.837-28.956 4.228-38.096 15.076l-103.781 124.709c-15.076 18.151-12.599 45.057 5.509 60.176s45.057 12.641 60.134-5.509l10.634-12.769-7.26 58.34c-2.904 23.404 13.709 44.759 37.113 47.663s44.759-13.709 47.663-37.113zM825.895 571.067l103.781-124.281c15.119-18.109 12.684-45.057-5.424-60.176-8.029-6.663-17.766-9.951-27.376-9.909h-228.063c-23.575 0-42.709 19.134-42.709 42.709s19.134 42.709 42.709 42.709h136.753l-45.271 54.197c-15.119 18.109-12.684 45.057 5.424 60.176s45.057 12.684 60.176-5.424zM553.544 606.258l72.006 72.006-95.325 114.373zM344.528 397.244l150.291 150.291h-275.512zM12.513 65.229l271.369 271.369-188.557 226.312c-15.119 18.109-12.641 45.057 5.466 60.134 7.987 6.706 17.724 9.951 27.334 9.909h335.987l-36.687 293.663c-2.947 23.404 13.666 44.759 37.071 47.663 14.906 1.879 28.956-4.185 38.096-15.034l183.603-220.332 265.903 265.903c16.699 16.699 43.734 16.699 60.39 0s16.699-43.734 0-60.39l-939.585-939.585c-16.699-16.699-43.734-16.699-60.39 0s-16.699 43.734 0 60.39z"],"isMulticolor":false,"isMulticolor2":false,"tags":["zap-off"],"defaultCode":59656,"grid":0},"properties":{"id":9,"order":203,"ligatures":"","prevSize":24,"code":59656,"name":"zap-off"},"setIdx":0,"setId":0,"iconIdx":206},{"icon":{"paths":["M599.267 113.030c264.131 0 234.226-3.595 286.908 6.942 76.159 15.232 124.143 65.38 158.494 122.63 12.56 20.935 20.862 49.974 25.452 77.512 2.314 12.725 1.157 24.295 1.157 179.317s1.157 166.592-1.157 179.317c-3.088 18.529-7.296 37.73-15.040 53.217-3.47 6.942-6.942 18.51-10.412 24.295-34.154 56.926-82.595 107.45-158.494 122.63-5.785 1.157-16.197 3.47-23.138 4.628-12.725 2.314-28.922 2.314-273.025 2.314s-260.299 0-273.025-2.314c-58.617-8.373-103.525-34.112-137.669-68.257-14.056-14.056-20.018-23.865-32.393-39.334-15.162-18.955-22.945-45.699-31.236-70.57-2.314-6.942-4.628-18.51-5.785-25.452-2.314-11.569-1.157-24.295-1.157-180.474s-1.157-168.905 1.157-180.474c4.672-28.031 13.181-48.492 23.138-71.727 24.439-57.026 73.875-94.799 131.885-118.002 20.553-8.221 41.077-15.040 68.257-15.040 8.098 0 127.257-1.157 266.084-1.157zM594.64 210.208c-139.984 0-256.829 1.157-259.142 1.157s-9.255 1.157-13.883 2.314l-18.51 4.628c-23.367 5.843-42.144 21.32-57.844 37.020-20.095 20.095-32.881 44.085-39.334 76.355-1.157 9.255-1.157 34.707-1.157 167.749s0 158.494 1.157 167.749c9.84 49.194 37.943 88.483 79.825 106.434 8.098 3.47 18.51 8.098 25.452 9.255l23.138 4.628c8.098 1.157 80.982 1.157 262.613 1.157 252.201 0 253.358-1.157 263.77-3.47 20.239-4.048 36.446-11.137 50.903-21.98 30.542-22.906 53.656-51.95 62.472-96.022 1.157-9.255 1.157-34.707 1.157-167.749s0-158.494-1.157-167.749c-11.919-59.589-53.633-106.054-113.375-118.002l-11.569-2.314zM446.558 342.093c9.584-19.17 20.577-35.863 48.589-35.863 4.628 0 11.569 2.314 15.040 3.47s61.315 35.863 129.572 76.355c92.55 55.53 126.1 75.197 129.572 79.825 16.21 16.21 17.665 49.433 0 67.1-3.47 4.628-37.020 24.295-129.572 79.825-68.257 40.491-126.1 75.197-129.572 76.355s-9.255 3.47-12.725 3.47c-30.622 0-40.642-15.339-50.903-35.863v-314.673zM591.168 469.35l-48.589-28.922v118.002l48.589-28.922c26.608-16.197 48.589-30.079 48.589-30.079s-21.98-13.883-48.589-30.079z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-youtube"],"defaultCode":60560,"grid":0},"properties":{"id":183,"order":53,"ligatures":"","prevSize":24,"code":60560,"name":"brand-youtube"},"setIdx":0,"setId":0,"iconIdx":207},{"icon":{"paths":["M593.483 86.952l308.889 1.157 11.569 2.314c23.815 3.968 42.799 19.086 59.002 31.236 23.444 17.582 40.834 44.518 47.432 77.512l2.314 11.569v620.091l-2.314 11.569c-3.757 18.783-10.79 34.053-20.824 47.432-17.15 22.867-34.575 41.595-63.629 53.217-5.785 2.314-16.197 6.942-23.138 8.098l-12.725 2.314h-620.091l-11.569-2.314c-24.949-4.99-46.914-16.835-62.472-32.393-18.991-18.991-40.838-42.577-46.275-75.197l-2.314-12.725v-620.091l2.314-12.725c5.326-31.963 26.187-56.265 45.118-75.197 15.849-15.849 39.151-27.498 63.629-32.393 5.785-1.157 11.569-2.314 13.883-2.314s141.14-1.157 311.202-1.157zM319.301 184.13c-25.452 0-28.922 0-34.707 2.314-14.738 4.912-24.508 17.306-30.079 31.236l-1.157 31.236v30.079h94.865v-94.865h-28.922zM734.622 184.13h-289.221v288.064h289.221v-288.064zM861.88 184.13h-30.079v94.865h94.865v-30.079l-1.157-31.236c-4.953-14.86-17.324-27.37-32.393-32.393zM348.223 376.173h-94.865v96.022h94.865v-96.022zM926.666 376.173h-94.865v96.022h94.865v-96.022zM348.223 569.373h-94.865v96.022h94.865v-96.022zM734.622 569.373h-289.221v288.064h289.221v-288.064zM926.666 569.373h-94.865v96.022h94.865v-96.022zM348.223 762.573h-94.865v30.079l1.157 31.236c4.953 14.86 17.324 27.37 32.393 32.393l31.236 1.157h30.079v-94.865zM879.234 762.573h-47.432v94.865h30.079l31.236-1.157c14.86-4.953 27.37-17.324 32.393-32.393l1.157-31.236v-30.079h-47.432z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["movie"],"defaultCode":60154,"grid":0},"properties":{"id":116,"order":133,"ligatures":"","prevSize":24,"code":60154,"name":"movie"},"setIdx":0,"setId":0,"iconIdx":208},{"icon":{"paths":["M512.508 4.98c-283.014 0-512.508 229.442-512.508 512.498 0 226.435 146.847 418.541 350.478 486.311 25.611 4.743 35.026-11.121 35.026-24.656 0-12.216-0.48-52.593-0.697-95.417-142.587 31.006-172.673-60.469-172.673-60.469-23.305-59.234-56.904-74.989-56.904-74.989-46.497-31.809 3.513-31.154 3.513-31.154 51.45 3.614 78.553 52.818 78.553 52.818 45.717 78.347 119.893 55.694 149.15 42.6 4.592-33.118 17.869-55.734 32.538-68.531-113.841-12.955-233.504-56.906-233.504-253.279 0-55.953 20.024-101.673 52.812-137.562-5.321-12.913-22.876-65.036 4.957-135.632 0 0 43.048-13.765 140.978 52.541 40.876-11.359 84.719-17.053 128.279-17.251 43.545 0.198 87.421 5.892 128.381 17.251 97.83-66.309 140.793-52.541 140.793-52.541 27.899 70.597 10.36 122.72 5.041 135.632 32.852 35.891 52.746 81.612 52.746 137.562 0 196.846-119.895 240.185-234.019 252.871 18.382 15.906 34.758 47.092 34.758 94.905 0 68.575-0.597 123.765-0.597 140.645 0 13.641 9.231 29.623 35.206 24.59 203.521-67.842 350.184-259.88 350.184-486.243 0-283.056-229.458-512.498-512.492-512.498z"],"isMulticolor":false,"isMulticolor2":false,"tags":["github"],"defaultCode":59648,"grid":0},"properties":{"id":1,"order":195,"ligatures":"","prevSize":24,"code":59648,"name":"github"},"setIdx":0,"setId":0,"iconIdx":209},{"icon":{"paths":["M1026.158 65.598c28.092 0 46.275 24.357 46.275 52.060 0 0.827-193.685 781.32-198.984 790.153-7.916 11.875-19.892 25.452-39.334 25.452-14.037 0-19.581-2.85-27.765-6.942-3.47-2.314-45.118-41.648-108.747-105.277l-102.963-102.963-56.687 75.197c-31.236 41.648-59.002 77.512-61.315 79.825-8.576 8.576-13.257 10.412-31.236 10.412-19.059 0-22.708-1.885-32.393-11.569-3.47-3.47-8.098-8.098-9.255-11.569s-23.138-67.1-48.589-142.297l-45.118-136.512-90.237-45.118c-83.295-41.648-91.394-45.118-97.179-50.903-10.747-10.747-22.157-37.336-9.255-56.687 4.344-8.688 12.969-16.897 20.824-20.824 20.951-10.475 866.444-336.044 876.919-341.281 3.47-1.157 9.255-1.157 15.040-1.157zM953.274 192.855c-6.175 2.392-668.227 259.888-677.935 263.77l50.903 25.452c39.334 19.667 52.060 26.608 55.53 30.079 16.859 16.859 47.666 122.129 80.982 220.965l31.236-41.648c17.353-23.138 31.236-42.805 31.236-42.805-12.168-13.385-30.079-27.598-30.079-52.060 0-11.569 0-12.725 3.47-20.824 7.584-17.695 201.651-210.044 216.337-216.337 8.098-3.47 8.098-3.47 19.667-3.47 37.418 0 55.308 33.059 43.962 67.1-2.314 5.785-12.725 16.197-85.61 89.080l-82.139 83.295 194.357 194.357 74.040-298.476c40.491-164.277 74.040-298.476 74.040-298.476z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-telegram"],"defaultCode":60454,"grid":0},"properties":{"id":174,"order":44,"ligatures":"","prevSize":24,"code":60454,"name":"brand-telegram"},"setIdx":0,"setId":0,"iconIdx":210},{"icon":{"paths":["M592.325 92.833c133.042 0 152.709 1.157 157.337 2.314 8.616 2.872 13.971 7.029 19.667 12.725 4.715 4.715 300.508 496.046 301.947 503.245 1.157 4.628 1.157 10.412 1.157 15.040s-1.157 9.255-2.314 11.569c-20.13 40.259-151.668 251.275-155.022 257.986-3.213 6.426-15.521 11.344-23.138 13.883-6.942 2.314-31.236 2.314-305.418 2.314l-298.476-1.157c-8.376-3.59-17.238-7.558-21.98-13.883-2.314-3.47-39.334-61.315-78.668-127.257-46.715-78.315-72.987-116.099-78.668-138.827-2.099-10.497 0.975-21.437 3.47-28.922 1.269-3.806 290.008-485.522 299.634-495.148 5.558-5.558 16.37-13.883 25.452-13.883h155.022zM708.014 188.854h-177.004c4.591 9.183 52.248 88.298 118.002 196.671l112.218 188.572h177.004c-4.591-9.183-52.248-88.298-118.002-196.671zM446.558 236.287c-1.157-1.157-31.236 48.589-118.002 193.2l-115.689 193.2 42.805 72.884c24.295 40.491 45.118 72.884 45.118 72.884s53.217-86.767 116.845-193.2l115.689-193.2-42.805-71.727c-23.138-39.334-42.805-72.884-43.962-74.040zM590.012 476.919s-13.883 21.98-30.079 48.589l-28.922 47.432 30.079 1.157h57.844l30.079-1.157-28.922-47.432c-16.197-26.608-30.079-48.589-30.079-48.589zM705.7 671.276h-233.691l-42.805 71.727c-23.138 39.334-42.805 71.727-42.805 71.727s99.492 1.157 232.534 1.157h232.534l42.805-70.57c23.138-38.177 41.648-70.57 42.805-71.727 1.157-2.314-10.412-2.314-231.377-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-google-drive"],"defaultCode":60446,"grid":0},"properties":{"id":172,"order":42,"ligatures":"","prevSize":24,"code":60446,"name":"brand-google-drive"},"setIdx":0,"setId":0,"iconIdx":211},{"icon":{"paths":["M594.64 86.952c200.141 0 216.337 0 226.749 2.314 63.719 12.744 116.18 43.846 149.239 87.923 22.451 29.934 43.418 67.311 50.903 112.218 2.314 10.412 1.157 26.608 1.157 231.377 0 240.588 4.29 197.204-6.942 253.358-8.925 44.622-35.119 82.552-62.472 109.904-29.136 29.136-63.694 47.84-107.59 62.472-6.942 2.314-17.353 4.628-24.295 5.785-10.412 2.314-26.608 1.157-231.377 1.157s-220.965 1.157-231.377-1.157c-54.476-9.079-99.561-35.933-131.885-68.257-18.302-18.302-30.363-37.493-43.962-60.158-3.47-5.785-8.098-17.353-10.412-24.295-5.105-15.317-11.075-30.586-13.883-47.432-2.314-10.412-1.157-26.608-1.157-231.377s-1.157-220.965 1.157-231.377c6.056-36.337 20.775-66.633 37.020-93.708 16.142-26.903 42.425-53.22 69.413-69.413 14.105-8.462 28.351-17.549 45.118-23.138 18.3-6.099 44.261-15.040 65.942-15.040 1.157 0 99.492-1.157 218.652-1.157zM588.855 184.13c-175.847 0-209.396 1.157-217.494 2.314-61.44 15.36-102.743 50.959-115.689 115.689-1.157 9.255-2.314 35.863-2.314 218.652s1.157 209.396 2.314 218.652c12.402 62.006 53.104 103.171 115.689 115.689 9.255 1.157 35.863 2.314 218.652 2.314s209.396-1.157 218.652-2.314c62.481-12.496 103.141-52.953 115.689-115.689 1.157-9.255 2.314-35.863 2.314-218.652s-1.157-209.396-2.314-218.652c-12.402-62.006-53.104-103.171-115.689-115.689-9.255-1.157-35.863-2.314-219.809-2.314zM758.917 306.76c0-31.231 18.822-50.903 49.747-50.903 27.037 0 45.118 19.816 45.118 47.432 0 24.711-10.151 35.733-26.608 43.962-6.942 3.47-8.098 4.628-19.667 4.628-26.689 0-48.589-19.453-48.589-45.118zM587.698 327.584c50.842 0 90.187 16.157 119.159 39.334 28.044 22.436 49.37 51.119 63.629 86.767 23.662 59.156 5.056 137.026-20.824 175.847-17.029 27.245-48.703 51.538-77.512 65.942-22.399 11.199-38.045 13.202-67.1 17.353-40.708 4.071-70.482-7.369-98.335-18.51-46.271-18.508-78.698-60.233-97.179-106.434-23.689-59.223-5.086-136.984 20.824-175.847 19.625-31.401 55.633-59.421 92.55-71.727 13.243-4.413 30.504-11.569 46.275-11.569 4.628 0 12.725-1.157 18.51-1.157zM593.483 424.762c-8.098 0-16.197 1.157-19.667 1.157-8.876 0-20.743 6.915-27.765 9.255-23.258 7.753-39.557 35.263-48.589 57.844-3.47 9.255-2.314 11.569-2.314 27.765 0 23.591 2.807 35.363 12.725 48.589 3.47 5.785 8.098 13.883 13.883 19.667 14.594 14.594 31.108 19.625 52.060 26.608 3.47 1.157 11.569 1.157 16.197 1.157 44.927 0 81.070-28.12 90.237-64.785 2.732-10.928 5.785-17.235 5.785-31.236 0-13.949-3.058-20.324-5.785-31.236-7.725-30.896-33.289-48.948-61.315-60.158-9.255-3.47-12.725-4.628-25.452-4.628z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-instagram"],"defaultCode":60448,"grid":0},"properties":{"id":173,"order":43,"ligatures":"","prevSize":24,"code":60448,"name":"brand-instagram"},"setIdx":0,"setId":0,"iconIdx":212},{"icon":{"paths":["M289.221 21.636h-16.197c-46.177 0-57.083 54.035-64.785 92.55-1.157 5.785-2.314 20.824-2.314 31.236 0 23.219 1.519 38.038 4.628 56.687 2.314 11.569 2.314 11.569 0 13.883-1.157 1.157-4.628 8.098-9.255 15.040-29.13 43.696-43.962 81.482-43.962 155.022 0 58.066 3.488 94.905 20.824 135.355 3.47 8.098 8.098 24.295 12.725 33.55 40.564 81.126 109.121 124.582 205.926 150.395 0 7.101-2.314 23.557-2.314 33.55 0 6.942 2.314 23.138 2.314 37.020v24.295l-6.942 1.157h-26.608c-34.466 0-44.867-6.69-62.472-24.295-17.119-17.119-22.668-25.325-38.177-48.589-6.942-10.412-18.51-24.295-23.138-31.236s-13.883-16.197-19.667-20.824c-18.873-15.1-35.533-32.393-68.257-32.393-23.357 0-38.027 21.379-42.805 40.491-5.356 26.788 12.514 46.591 32.393 53.217 9.421 3.141 15.56 11.106 21.98 19.667 8.353 11.136 34.936 51.132 45.118 61.315 11.64 11.64 19.141 25.262 32.393 35.863 34.035 27.229 71.695 45.118 134.199 45.118 9.255 0 18.51-2.314 19.667-2.314h2.314v19.667c0 38.225 10.071 56.024 40.491 63.629 25.729 5.146 40.908-10.458 50.903-25.452 2.314-3.47 3.47-10.412 4.628-13.883 1.157-4.628 1.157-32.393 1.157-99.492 0-50.903-2.314-98.335-2.314-105.277-3.029-30.288 19.193-33.968 25.452-59.002 1.157-4.628 0-10.412 0-13.883 0-18.968-15.578-35.658-30.079-40.491-10.756-3.586-35.1-6.044-47.432-8.098-29.064-4.845-60.378-15.821-84.452-25.452-5.785-2.314-13.883-9.255-19.667-12.725-20.343-12.205-31.26-26.64-45.118-45.118-22.363-29.816-28.305-66.864-35.863-112.218-1.157-6.942-1.157-23.138-1.157-34.707 0-59.091 18.769-90.851 45.118-123.787 4.628-5.785 10.412-11.569 11.569-15.040l4.628-13.883c1.157-3.47 0-9.255 0-12.725 0-10.824-7.308-25.337-9.255-37.020-2.314-8.098-2.314-16.197-2.314-27.765 0-13.895 1.037-23.342 2.314-33.55l3.47 1.157c10.639 0 27.302 10.257 38.177 13.883 17.962 5.988 26.204 11.684 41.648 21.98 6.942 4.628 16.197 9.255 19.667 11.569 8.283 5.52 16.534 11.569 28.922 11.569 12.471 0 50.16-9.645 63.629-11.569 33.901-4.844 37.998-5.785 89.080-5.785 64.277 0 80.047 2.080 127.257 13.883 15.040 3.47 18.51 3.47 25.452 3.47 15.687 0 20.946-6.873 35.863-16.197 25.714-16.072 47.679-28.233 77.512-38.177 6.942-2.314 12.725-4.628 15.040-4.628 3.47-1.157 2.314-1.157 3.47 3.47 0 2.314 2.314 10.412 2.314 16.197 0 29.459-4.473 53.914-11.569 75.197-6.031 30.153 19.57 44.185 31.236 63.629 13.893 23.155 30.079 50.331 30.079 85.61v33.55c0 77.546-28.069 137.608-72.884 171.219-36.219 27.165-85.047 40.576-141.14 48.589-34.932 4.99-60.248 27.496-46.275 69.413 2.166 6.496 15.725 18.725 18.51 24.295 1.157 3.47 1.157 23.138 1.157 113.375 0 77.512 0 111.061 1.157 115.689 6.817 20.448 24.451 44.393 55.53 38.177 22.715-5.678 32.094-17.616 39.334-39.334 1.157-4.628 1.157-38.177 1.157-121.473l-1.157-114.532 12.725-3.47c35.711-5.952 67.374-22.378 93.708-38.177 33.558-20.135 62.275-43.905 82.139-78.668 4.628-8.098 13.883-20.824 18.51-30.079 9.887-19.771 15.179-42.064 21.98-62.472 9.839-29.515 12.725-58.238 12.725-97.179 0-39.114-0.98-61.939-10.412-90.237l-8.098-24.295c-5.155-15.467-18.747-37.802-26.608-50.903-3.47-5.785-8.098-12.725-9.255-13.883-3.868-3.868 2.203-29.304 3.47-38.177 1.157-8.098 1.157-21.98 1.157-33.55 0-23.71-4.643-34.779-8.098-52.060-8.136-40.682-21.261-70.57-70.57-70.57-48.243 0-82.548 17.791-118.002 33.55-10.412 4.628-24.295 12.725-32.393 17.353l-13.883 8.098-19.667-3.47c-30.789-6.842-51.466-6.289-84.452-10.412-9.255-1.157-26.608-1.157-37.020-1.157-47.155 0-91.148 6.197-129.572 13.883l-11.569 1.157-18.51-10.412c-36.31-20.172-71.742-38.372-119.159-46.275-6.942-1.157-17.353-2.314-21.98-2.314z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-github"],"defaultCode":60444,"grid":0},"properties":{"id":171,"order":41,"ligatures":"","prevSize":24,"code":60444,"name":"brand-github"},"setIdx":0,"setId":0,"iconIdx":213},{"icon":{"paths":["M608.594 180.366h160.156v-192.188h-160.156c-123.635 0-224.219 100.584-224.219 224.219v96.094h-128.125v192.188h128.125v512.5h192.188v-512.5h160.156l32.031-192.188h-192.188v-96.094c0-17.363 14.668-32.031 32.031-32.031z"],"isMulticolor":false,"isMulticolor2":false,"tags":["facebook"],"defaultCode":59658,"grid":0},"properties":{"id":11,"order":205,"ligatures":"","prevSize":24,"code":59658,"name":"facebook"},"setIdx":0,"setId":0,"iconIdx":214},{"icon":{"paths":["M366.071 516.123c-142.997 0-259.683-116.113-259.683-259.11 0-143.569 116.685-259.683 259.683-259.683s259.683 116.113 259.683 259.683c0 142.997-116.685 259.11-259.683 259.11zM366.071 128.888c-70.355 0-127.554 57.199-127.554 128.125 0 70.355 57.199 127.554 127.554 127.554s127.554-57.199 127.554-127.554c0-70.926-57.199-128.125-127.554-128.125zM665.221 547.582c25.168 51.479-3.432 76.074-68.638 118.402-54.911 34.891-130.413 48.618-180.176 53.767l41.755 41.183 152.72 152.72c22.879 23.452 22.879 61.203 0 84.082l-6.864 7.436c-23.452 22.879-61.203 22.879-84.654 0-38.323-38.895-94.378-94.95-152.72-153.293l-152.72 153.293c-23.452 22.879-61.203 22.879-84.082 0l-6.864-7.436c-23.452-22.879-23.452-60.63 0-84.082 38.895-38.895 94.378-94.95 152.72-152.72l41.183-41.183c-49.191-5.148-125.837-18.304-181.32-53.767-65.207-42.327-93.806-66.922-68.638-118.402 14.872-29.171 55.483-53.767 109.25-11.44 0 0 72.642 57.77 189.899 57.77s189.899-57.77 189.899-57.77c53.767-42.327 94.378-17.731 109.25 11.44z"],"width":732,"isMulticolor":false,"isMulticolor2":false,"tags":["ok"],"defaultCode":59659,"grid":0},"properties":{"id":12,"order":206,"ligatures":"","prevSize":24,"code":59659,"name":"ok"},"setIdx":0,"setId":0,"iconIdx":215},{"icon":{"paths":["M887.446 295.474c0.41 8.302 0.564 16.707 0.564 25.010 0 255.738-194.596 550.528-550.426 550.528-109.317 0-210.945-32.031-296.584-86.971 15.17 1.794 30.545 2.717 46.125 2.717 90.713 0 174.096-30.955 240.261-82.769-84.614-1.589-156.107-57.451-180.707-134.326 11.788 2.204 23.933 3.382 36.388 3.382 17.681 0 34.799-2.306 50.994-6.714-88.508-17.835-155.186-95.992-155.186-189.779 0-0.82 0-1.589 0-2.408 26.086 14.504 55.965 23.217 87.638 24.242-51.917-34.748-86.1-93.89-86.1-161.079 0-35.414 9.532-68.675 26.24-97.273 95.376 117.106 238.005 194.084 398.776 202.181-3.28-14.196-4.971-28.905-4.971-44.126 0-106.805 86.562-193.367 193.418-193.367 55.657 0 105.933 23.421 141.245 61.039 44.024-8.713 85.433-24.805 122.846-46.945-14.452 45.151-45.151 83.076-85.075 107.011 39.155-4.715 76.363-15.017 111.111-30.443-25.932 38.848-58.732 72.877-96.555 100.092z"],"isMulticolor":false,"isMulticolor2":false,"tags":["twitter"],"defaultCode":59660,"grid":0},"properties":{"id":13,"order":207,"ligatures":"","prevSize":24,"code":59660,"name":"twitter"},"setIdx":0,"setId":0,"iconIdx":216},{"icon":{"paths":["M402.679 197.145q-87.514 0-163.589 29.743t-120.975 80.65-44.901 109.25q0 46.903 30.316 90.374t85.226 75.503l55.483 32.031-20.020 48.047q19.448-11.44 35.464-22.308l25.168-17.731 30.316 5.72q44.615 8.008 87.514 8.008 87.514 0 163.589-29.743t120.975-80.65 44.901-109.25-44.901-109.25-120.975-80.65-163.589-29.743zM402.679 123.93q109.25 0 202.197 39.181t146.714 106.675 53.767 147.001-53.767 147.001-146.714 106.675-202.197 39.181q-49.191 0-100.669-9.152-70.926 50.335-159.012 73.214-20.591 5.148-49.191 9.152h-1.716q-6.292 0-11.725-4.575t-6.577-12.012q-0.572-1.716-0.572-3.718t0.286-3.718 1.144-3.432l1.43-2.86t2.002-3.146 2.288-2.86 2.574-2.86 2.288-2.574q2.86-3.432 13.156-14.3t14.872-16.873 12.87-16.587 14.3-22.022 11.725-25.168q-70.926-41.183-111.538-101.242t-40.611-128.125q0-79.507 53.767-147.001t146.714-106.675 202.197-39.181zM872.852 792.583q5.72 13.727 11.725 25.168t14.3 22.022 12.87 16.587 14.872 16.873 13.156 14.3q0.572 0.572 2.288 2.574t2.574 2.86 2.288 2.86 2.002 3.146l1.43 2.86t1.144 3.432 0.286 3.718-0.572 3.718q-1.716 8.008-7.436 12.583t-12.583 4.004q-28.599-4.004-49.191-9.152-88.086-22.879-159.012-73.214-51.479 9.152-100.669 9.152-155.008 0-269.978-75.503 33.175 2.288 50.335 2.288 92.090 0 176.744-25.739t151.004-73.786q71.499-52.622 109.821-121.261t38.323-145.285q0-44.043-13.156-86.942 73.786 40.611 116.685 101.813t42.899 131.557q0 68.638-40.611 128.411t-111.538 100.956z"],"isMulticolor":false,"isMulticolor2":false,"tags":["socialbtn"],"defaultCode":59661,"grid":0},"properties":{"id":14,"order":208,"ligatures":"","prevSize":24,"code":59661,"name":"socialbtn"},"setIdx":0,"setId":0,"iconIdx":217},{"icon":{"paths":["M912.353 605.639c0 0 82.871 81.846 103.371 119.72 0.564 0.82 0.82 1.435 0.923 1.794 8.354 13.992 10.404 24.958 6.304 33.056-6.919 13.376-30.34 20.090-38.283 20.654 0 0-142.373 0-146.473 0-10.199 0-31.417-2.665-57.246-20.5-19.731-13.786-39.36-36.49-58.374-58.681-28.393-32.954-52.942-61.551-77.798-61.551-3.177 0-6.252 0.513-9.225 1.538-18.808 5.945-42.692 32.749-42.692 104.14 0 22.345-17.63 35.055-29.981 35.055 0 0-63.96 0-67.087 0-22.857 0-141.861-7.995-247.384-119.258-129.304-136.223-245.437-409.488-246.564-411.896-7.226-17.681 7.944-27.317 24.344-27.317h147.907c19.833 0 26.292 11.993 30.801 22.755 5.227 12.351 24.6 61.756 56.375 117.261 51.455 90.302 83.076 127.049 108.343 127.049 4.767 0 9.276-1.179 13.53-3.588 33.005-18.143 26.855-136.018 25.318-160.311 0-4.715-0.051-52.633-16.964-75.799-12.095-16.605-32.698-23.063-45.151-25.42 3.331-4.818 10.404-12.198 19.475-16.554 22.601-11.275 63.448-12.915 103.987-12.915h22.499c43.973 0.615 55.35 3.433 71.34 7.482 32.185 7.688 32.8 28.546 29.981 99.579-0.82 20.295-1.692 43.152-1.692 70.058 0 5.74-0.256 12.146-0.256 18.655-0.974 36.439-2.255 77.49 23.473 94.351 3.28 2.050 7.124 3.177 11.121 3.177 8.918 0 35.619 0 108.036-124.281 31.775-54.889 56.375-119.618 58.067-124.487 1.435-2.717 5.74-10.352 10.968-13.427 3.998-2.46 9.327-2.87 12.095-2.87h173.994c18.963 0 31.826 2.87 34.338 10.045 4.202 11.633-0.82 47.15-80.257 154.57-13.376 17.886-25.113 33.364-35.414 46.894-72.006 94.505-72.006 99.271 4.254 171.021z"],"isMulticolor":false,"isMulticolor2":false,"tags":["vk"],"defaultCode":59662,"grid":0},"properties":{"id":15,"order":209,"ligatures":"","prevSize":24,"code":59662,"name":"vk"},"setIdx":0,"setId":0,"iconIdx":218},{"icon":{"paths":["M643.485 566.647q7.436 0 55.768 25.168t51.193 30.316q1.144 2.86 1.144 8.579 0 18.875-9.723 43.471-9.152 22.308-40.611 37.466t-58.343 15.158q-32.603 0-108.677-35.464-56.055-25.739-97.238-67.495t-84.654-105.817q-41.183-61.203-40.611-110.965v-4.575q1.716-52.051 42.327-90.374 13.727-12.583 29.743-12.583 3.432 0 10.296 0.858t10.868 0.858q10.868 0 15.158 3.718t8.866 15.729q4.575 11.44 18.875 50.335t14.3 42.899q0 12.012-19.733 32.889t-19.733 26.597q0 4.004 2.86 8.579 19.448 41.755 58.343 78.363 32.031 30.316 86.37 57.77 6.864 4.004 12.583 4.004 8.579 0 30.887-27.741t29.743-27.741zM527.372 869.801q72.642 0 139.279-28.599t114.683-76.646 76.646-114.683 28.599-139.279-28.599-139.279-76.646-114.683-114.683-76.646-139.279-28.599-139.279 28.599-114.683 76.646-76.646 114.683-28.599 139.279q0 116.113 68.638 210.492l-45.187 133.273 138.421-44.043q90.374 59.487 197.336 59.487zM527.372 79.314q87.514 0 167.306 34.32t137.563 92.090 92.090 137.563 34.32 167.306-34.32 167.306-92.090 137.563-137.563 92.090-167.306 34.32q-111.538 0-208.775-53.767l-238.519 76.646 77.79-231.655q-61.774-101.813-61.774-222.503 0-87.514 34.32-167.306t92.090-137.563 137.563-92.090 167.306-34.32z"],"isMulticolor":false,"isMulticolor2":false,"tags":["whatsapp"],"defaultCode":59663,"grid":0},"properties":{"id":16,"order":210,"ligatures":"","prevSize":24,"code":59663,"name":"whatsapp"},"setIdx":0,"setId":0,"iconIdx":219},{"icon":{"paths":["M1005.645 2.269c-17.484-16.298-44.946-18.629-73.341-6.099h-0.047c-29.863 13.171-845.331 397.65-878.527 413.359-6.038 2.306-58.77 23.933-53.339 72.109 4.849 43.434 47.231 61.423 52.406 63.499l207.317 78.028c13.754 50.328 64.459 236.007 75.672 275.675 6.994 24.728 18.394 57.221 38.372 63.909 17.531 7.431 34.968 0.641 46.252-9.097l126.75-129.227 204.613 175.404 4.873 3.203c13.895 6.765 27.206 10.148 39.911 10.148 9.815 0 19.233-2.024 28.232-6.073 30.656-13.838 42.918-45.946 44.2-49.584l152.836-873.227c9.325-46.638-3.637-70.367-16.179-82.026zM442.955 654.377l-69.937 205.001-69.937-256.251 536.185-435.626z"],"isMulticolor":false,"isMulticolor2":false,"tags":["telegram"],"defaultCode":59664,"grid":0},"properties":{"id":17,"order":211,"ligatures":"","prevSize":24,"code":59664,"name":"telegram"},"setIdx":0,"setId":0,"iconIdx":220},{"icon":{"paths":["M514.209 150.577c25.198 0 322.021 0.854 398.897 21.354 44.444 12.534 78.623 47.137 90.336 90.922l0.205 0.902c21.354 81.146 21.354 249.844 21.354 249.844v1.709c0 18.365-1.281 172.115-21.354 247.709-11.788 44.862-46.001 79.642-89.633 92.030l-0.909 0.22c-75.166 20.5-360.885 21.354-397.188 21.781h-7.26c-36.302 0-322.021-1.281-396.76-21.354-44.639-12.681-78.887-47.639-90.344-91.781l-0.197-0.896c-17.938-68.76-20.927-200.729-21.354-239.167v-21.354c0.427-38.438 3.416-170.406 21.354-239.167 12.051-44.51 46.193-78.936 89.634-91.177l0.909-0.219c76.875-20.927 373.698-21.781 398.897-21.781zM407.438 359.848v306.646l268.209-152.896-268.209-153.323z"],"isMulticolor":false,"isMulticolor2":false,"tags":["youtube"],"defaultCode":59665,"grid":0},"properties":{"id":18,"order":212,"ligatures":"","prevSize":24,"code":59665,"name":"youtube"},"setIdx":0,"setId":0,"iconIdx":221},{"icon":{"paths":["M690.271 700.803c48.885 31.836 107.346 65.337 167.636 95.739l10.964 5.012c19.087 7.752 32.3 26.15 32.3 47.634 0 8.401-2.020 16.33-5.601 23.327l0.134-0.289-10.169 35.635c-5.414 27.202-23.736 49.193-48.175 59.616l-0.534 0.202c-37.188 21.753-80.617 37.674-126.87 45.172l-2.166 0.289c-123.738 2.564-233.12-100.75-309.687-187.146-46.874-52.415-89.699-110.5-126.775-172.422l-2.86-5.152c-33.808-56.738-64.653-122.506-88.944-191.367l-2.406-7.828c-37.771-108.527-74.003-253.459-9.913-357.712 29.052-34.889 63.661-63.967 102.676-86.201l1.835-0.963c13.67-10.099 30.855-16.164 49.457-16.164 9.834 0 19.272 1.695 28.037 4.809l-0.586-0.181 36.489 9.144c26.883 2.938 47.618 25.518 47.618 52.941 0 2.425-0.162 4.812-0.476 7.151l0.030-0.273c-0.599 79.216-1.795 136.044 0.94 201.16 1.025 27.003-9.571 30.849-34.181 40.334l-39.907 15.382c-22.892 3.548-40.21 23.116-40.21 46.728 0 3.949 0.484 7.784 1.396 11.45l-0.068-0.325c31.452 146.224 107.45 271.199 212.861 363.373l0.775 0.664c8.649 8.149 20.338 13.158 33.195 13.158 14.923 0 28.27-6.746 37.157-17.355l0.062-0.076 33.413-26.235c6.861-9.829 18.117-16.178 30.856-16.178 8.209 0 15.802 2.637 21.979 7.11l-0.109-0.075z"],"isMulticolor":false,"isMulticolor2":false,"tags":["phoneblack"],"defaultCode":59668,"grid":0},"properties":{"id":21,"order":215,"ligatures":"","prevSize":24,"code":59668,"name":"phoneblack"},"setIdx":0,"setId":0,"iconIdx":222},{"icon":{"paths":["M298.959 52.241c-70.768 0-134.873 28.743-181.212 75.038s-75.038 110.444-75.038 181.212v427.084c0 70.768 28.743 134.873 75.038 181.212s110.444 75.038 181.212 75.038h427.084c70.768 0 134.873-28.743 181.212-75.038s75.038-110.444 75.038-181.212v-427.084c0-70.768-28.743-134.873-75.038-181.212s-110.444-75.038-181.212-75.038zM298.959 137.657h427.084c47.193 0 89.816 19.091 120.779 50.054s50.054 73.587 50.054 120.779v427.084c0 47.193-19.091 89.816-50.054 120.779s-73.587 50.054-120.779 50.054h-427.084c-47.193 0-89.816-19.091-120.779-50.054s-50.054-73.587-50.054-120.779v-427.084c0-47.193 19.091-89.816 50.054-120.779s73.587-50.054 120.779-50.054zM725.573 488.848c-6.406-41.513-24.387-79.309-50.994-109.632-32.202-36.772-77.046-62.568-128.509-70.213-19.816-3.16-41.427-3.288-63.081-0.085-58.34 8.627-107.668 40.188-140.169 84.007s-48.388 100.237-39.719 158.534 40.188 107.668 84.007 140.169 100.237 48.388 158.534 39.719 107.668-40.188 140.169-84.007 48.388-100.237 39.719-158.534zM641.095 501.405c5.21 35.021-4.271 68.718-23.831 95.112s-49.115 45.228-84.093 50.396-68.718-4.271-95.112-23.831-45.228-49.115-50.396-84.093 4.271-68.718 23.831-95.112 49.115-45.228 84.093-50.396c13.368-1.965 26.266-1.794 37.156-0.085 31.604 4.698 58.34 20.073 77.644 42.11 16.016 18.279 26.906 41.128 30.75 65.899zM790.105 287.136c0-23.575-19.134-42.709-42.709-42.709s-42.709 19.134-42.709 42.709 19.134 42.709 42.709 42.709 42.709-19.134 42.709-42.709z"],"isMulticolor":false,"isMulticolor2":false,"tags":["instagram"],"defaultCode":59657,"grid":0},"properties":{"id":10,"order":204,"ligatures":"","prevSize":24,"code":59657,"name":"instagram"},"setIdx":0,"setId":0,"iconIdx":223},{"icon":{"paths":["M809.82 82.324c38.146 0 49.964 5.858 77.512 15.040 16.253 5.417 30.244 14.245 42.805 24.295 5.785 4.628 10.412 6.942 11.569 6.942 8.054 0 46.476-12.407 54.374-15.040 16.208-5.402 34.449-12.39 49.747-18.51 13.839-5.535 33.006-12.702 48.589-2.314 9.595 4.797 16.383 14.739 21.98 23.138 3.47 5.785 3.47 6.942 3.47 19.667 0 21.85-11.379 44.982-19.667 63.629-4.628 10.412-20.824 45.118-37.020 77.512l-30.079 59.002-1.157 26.608c-2.317 30.121-4.531 58.326-8.098 83.295-5.988 41.915-18.894 84.446-31.236 121.473-38.742 116.228-113.056 198.911-197.827 269.554-6.942 5.785-20.824 12.725-28.922 18.51-39.862 28.472-86.843 49.773-138.827 67.1-58.064 19.355-114.088 28.922-192.044 28.922-63.735 0-108.552-11.783-159.65-23.138-41.948-9.322-77.422-24.49-114.532-39.334-17.070-6.828-78.009-35.204-86.767-43.962-10.241-10.241-13.883-15.276-13.883-34.707 0-18.534 3.73-23.397 12.725-32.393 16.763-16.763 15.34-14.283 55.53-16.197 44.458 0 58.967-4.618 91.394-13.883 25.811-7.375 56.436-19.996 77.512-31.236-6.87-5.496-28.829-18.9-37.020-25.452-39.456-31.563-85.109-73.040-108.747-120.316l-12.725-25.452c-21.853-43.709-33.55-93.001-33.55-158.494 0-89.022 23.263-158.743 53.217-218.652 9.941-17.397 19.029-32.393 43.962-32.393 33.144 0 41.535 19.277 56.687 40.491 27.592 38.629 73.168 77.075 115.689 98.335 26.507 13.253 56.081 29.079 87.923 38.177 21.964 6.276 53.905 10.25 77.512 13.883 0 0 1.157-5.785 1.157-12.725s2.314-17.353 3.47-24.295c4.424-26.541 10.576-49.249 21.98-68.257 12.67-21.117 23.439-40.792 40.491-57.844l17.353-17.353c4.628-4.628 16.197-11.569 23.138-16.197 15.762-10.508 39.923-24.298 60.158-30.079 21.010-6.002 46.137-16.197 71.727-16.197 2.314 0 16.197-1.157 30.079-1.157zM804.036 178.345c-3.47 0-10.412 1.157-15.040 1.157-34.038 0-66.832 17.885-89.080 31.236-42.361 25.417-61.315 66.613-61.315 135.355 0 55.924-6.306 78.668-61.315 78.668-78.901 0-141.096-18.783-198.984-40.491-59.082-22.156-103.371-59.92-148.082-97.179l-11.569-11.569c-9.29 32.513-17.353 69.443-17.353 111.061 0 29.455 2.684 55.484 10.412 78.668 5.444 16.332 11.23 35.684 19.667 49.747 40.41 67.35 93.508 109.227 166.592 145.767 25.452 12.725 28.922 15.040 33.55 19.667 6.342 6.342 13.883 18.56 13.883 30.079 0 27.009-13.787 39.276-31.236 49.747-40.785 24.471-84.781 49.787-131.885 69.413 0 0 1.157 1.157 2.314 1.157s10.412 3.47 20.824 5.785c41.272 9.172 72.127 13.078 119.159 17.353 52.868 4.068 96.708-6.671 139.984-13.883 20.011-3.335 49.064-14.608 68.257-23.138 57.728-25.657 107.795-55.735 149.239-97.179 15.844-15.844 32.079-33.867 46.275-50.903 27.411-32.894 47.98-72.618 65.942-114.532 25.893-60.417 35.855-125.986 41.648-207.082 2.61-54.813 7.752-46.739 31.236-93.708 9.255-18.51 17.353-35.863 17.353-35.863s-11.569 3.47-25.452 6.942c-23.138 6.942-25.452 6.942-34.707 6.942-26.181 0-36.416-25.727-54.374-34.707-15.845-10.564-39.223-18.51-65.942-18.51z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-twitter"],"defaultCode":60455,"grid":0},"properties":{"id":175,"order":45,"ligatures":"","prevSize":24,"code":60455,"name":"brand-twitter"},"setIdx":0,"setId":0,"iconIdx":224},{"icon":{"paths":["M596.953 40.676c77.915 0 125.372 15.924 181.631 37.020 9.255 3.47 20.824 9.255 26.608 12.725 22.903 13.741 51.944 27.21 72.884 43.962 32.245 25.796 73.227 61.827 96.022 96.022 9.845 14.767 25.699 37.047 34.707 52.060 38.013 63.356 62.472 138.679 62.472 239.476 0 103.112-23.825 180.927-65.942 244.103-4.628 6.942-9.255 17.353-12.725 21.98s-10.412 15.040-15.040 21.98-13.883 16.197-17.353 20.824-11.569 13.883-18.51 20.824l-24.295 24.295c-15.912 15.912-30.238 27.098-48.589 39.334-37.157 24.771-82.213 51.256-129.572 64.785-39.631 11.322-78.295 23.138-128.414 23.138h-41.648c-27.892 0-43.939-5.202-67.1-8.098-23.388-2.924-39.163-7.166-60.158-15.040-9.255-3.47-25.452-8.098-33.55-11.569l-15.040-6.942-46.275 8.098c-52.103 9.472-110.809 19.155-159.65 28.922-28.922 4.628-31.236 4.628-38.177 3.47-21.789-5.446-34.984-17.309-40.491-39.334-1.157-5.785-1.157-9.255 0-15.040 2.147-8.591-0.193-1.008 71.727-171.219l-6.942-11.569c-21.211-35.353-38.565-79.061-49.747-123.787-7.976-31.899-15.040-58.313-15.040-97.179v-43.962c0-47.761 12.498-84.698 21.98-122.63 14.945-59.776 50.517-116.075 84.452-158.494 55.56-69.45 128.223-119.522 219.809-153.866 30.958-11.609 65.345-17.423 101.806-21.98 9.255-1.157 20.824-2.314 23.138-2.314h37.020zM237.162 890.987c97.768-17.253 155.317-27.765 163.121-27.765 14.247 0 19.919 4.176 32.393 10.412 44.461 22.231 102.393 33.55 168.905 33.55 37.136 0 65.071-8.459 96.022-16.197 20.985-5.246 41.798-13.379 59.002-21.98l25.452-12.725c27.011-13.505 42.034-27.932 64.785-47.432 53.867-46.171 88.32-105.308 113.375-180.474 11.196-33.587 15.040-60.845 15.040-105.277 0-40.556-3.603-63.002-11.569-94.865-10.322-41.285-25.334-79.648-46.275-111.061l-16.197-24.295c-4.628-6.942-13.883-16.197-18.51-21.98-12.083-15.105-36.764-36.999-52.060-49.747-26.878-22.397-55.516-40.486-90.237-54.374-43.934-17.573-89.005-30.079-151.552-30.079-15.040 0-28.922 1.157-31.236 1.157-12.309 0-39.681 6.229-50.903 8.098-44.98 7.496-82.53 26.666-116.845 46.275-19.254 11.002-42.382 28.5-57.844 43.962-36.691 36.691-69.332 72.31-91.394 123.787-11.232 26.207-23.057 53.804-27.765 86.767-2.935 20.546-8.098 39.12-8.098 62.472 0 95.080 24.659 162.317 61.315 220.965 9.139 14.622 17.353 19.912 17.353 34.707v13.883c-1.121 5.602-46.269 112.204-46.275 112.218zM474.323 304.446h-13.883c-30.548 0-53.666 29.113-61.315 52.060-2.314 5.785-1.157 11.569-1.157 49.747 0 34.707 0 45.118 1.157 56.687 9.778 68.446 42.212 124.351 82.139 164.277 40.696 40.696 96.23 74.401 166.592 84.452 11.569 1.157 23.138 1.157 56.687 1.157 54.178 0 40.645 3.394 63.629-8.098 21.689-8.675 38.177-33.996 38.177-63.629 0-36.218-17.641-50.323-39.334-64.785-3.47-2.314-11.569-3.47-15.040-4.628-5.785-1.157-12.725-2.314-40.491-2.314-46.483 0-56.101 1.728-76.355 21.98-5.867 5.867-8.555 9.012-11.569 15.040-56.352-18.784-100.271-62.493-119.159-119.159 13.654-6.827 22.74-20.805 31.236-33.55 2.314-3.47 3.47-11.569 4.628-15.040 1.157-4.628 1.157-18.51 1.157-42.805 0-34.707-1.157-35.863-3.47-42.805-6.197-24.792-33.347-48.589-63.629-48.589z"],"width":1168,"isMulticolor":false,"isMulticolor2":false,"tags":["brand-whatsapp"],"defaultCode":60532,"grid":0},"properties":{"id":179,"order":49,"ligatures":"","prevSize":24,"code":60532,"name":"brand-whatsapp"},"setIdx":0,"setId":0,"iconIdx":225}],"height":1024,"metadata":{"name":"Seditio","url":"https://seditio.org/"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"ic-","metadata":{"fontFamily":"Seditio","majorVersion":1,"minorVersion":0,"fontURL":"https://seditio.org/"},"metrics":{"emSize":1024,"baseline":8.993157380254155,"whitespace":0},"embed":false,"showSelector":true,"showMetrics":true,"showMetadata":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}} \ No newline at end of file diff --git a/skins/sympfy/fonts/Seditio/style.css b/skins/sympfy/fonts/Seditio/style.css new file mode 100644 index 0000000..0a4ad42 --- /dev/null +++ b/skins/sympfy/fonts/Seditio/style.css @@ -0,0 +1,705 @@ +@font-face { + font-family: 'Seditio'; + src: url('Seditio.eot?9mnif5'); + src: url('Seditio.eot?9mnif5#iefix') format('embedded-opentype'), + url('Seditio.ttf?9mnif5') format('truetype'), + url('Seditio.woff?9mnif5') format('woff'), + url('Seditio.svg?9mnif5#Seditio') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="ic-"], [class*=" ic-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'Seditio' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ic-arrow-left:before { + content: "\ea19"; +} +.ic-arrow-up:before { + content: "\e901"; +} +.ic-arrow-down:before { + content: "\ea16"; +} +.ic-arrow-right:before { + content: "\ea1f"; +} +.ic-arrow-down-right:before { + content: "\ea15"; +} +.ic-arrow-down-left:before { + content: "\ea13"; +} +.ic-arrow-up-left:before { + content: "\e902"; +} +.ic-arrow-up-right:before { + content: "\e903"; +} +.ic-arrow-l:before { + content: "\e912"; +} +.ic-arrow-t:before { + content: "\e920"; +} +.ic-arrow-b:before { + content: "\e91f"; +} +.ic-arrow-r:before { + content: "\e913"; +} +.ic-arr-left:before { + content: "\e91c"; +} +.ic-arr-up:before { + content: "\e91e"; +} +.ic-arr-down:before { + content: "\e91b"; +} +.ic-arr-right:before { + content: "\e91d"; +} +.ic-arrow-up-left-circle:before { + content: "\ea21"; +} +.ic-arrow-down-left-circle:before { + content: "\ea12"; +} +.ic-arrow-down-right-circle:before { + content: "\ea14"; +} +.ic-arrow-up-right-circle:before { + content: "\ea23"; +} +.ic-arrow-up-circle:before { + content: "\ea20"; +} +.ic-arrow-down-circle:before { + content: "\ea11"; +} +.ic-arrow-narrow-left:before { + content: "\ea1b"; +} +.ic-arrow-narrow-up:before { + content: "\ea1d"; +} +.ic-arrow-narrow-down:before { + content: "\ea1a"; +} +.ic-arrow-narrow-right:before { + content: "\ea1c"; +} +.ic-chevron-left:before { + content: "\ea60"; +} +.ic-chevron-up:before { + content: "\ea62"; +} +.ic-chevron-down:before { + content: "\ea5f"; +} +.ic-chevron-right:before { + content: "\ea61"; +} +.ic-chevrons-left:before { + content: "\ea64"; +} +.ic-chevrons-up:before { + content: "\ea66"; +} +.ic-chevrons-down:before { + content: "\ea63"; +} +.ic-chevrons-right:before { + content: "\ea65"; +} +.ic-corner-up-left:before { + content: "\ea82"; +} +.ic-corner-left-up:before { + content: "\ea7f"; +} +.ic-corner-right-down:before { + content: "\ea80"; +} +.ic-corner-left-down:before { + content: "\ea7e"; +} +.ic-corner-right-up:before { + content: "\ea81"; +} +.ic-corner-up-right:before { + content: "\ea83"; +} +.ic-arrows-sort:before { + content: "\eb5a"; +} +.ic-arrows-horizontal:before { + content: "\eb59"; +} +.ic-arrows-vertical:before { + content: "\eb5b"; +} +.ic-arrows-maximize:before { + content: "\ea28"; +} +.ic-check-circle:before { + content: "\e904"; +} +.ic-check:before { + content: "\ea5e"; +} +.ic-at:before { + content: "\ea2b"; +} +.ic-award:before { + content: "\ea2c"; +} +.ic-adjustments:before { + content: "\ea03"; +} +.ic-alarm:before { + content: "\ea04"; +} +.ic-alert-circle:before { + content: "\ea05"; +} +.ic-alert-triangle:before { + content: "\ea06"; +} +.ic-banlist:before { + content: "\ea2e"; +} +.ic-pages:before { + content: "\ea39"; +} +.ic-bookmark:before { + content: "\ea3a"; +} +.ic-briefcase:before { + content: "\ea46"; +} +.ic-calendar-time:before { + content: "\ee21"; +} +.ic-calendar-event:before { + content: "\ea52"; +} +.ic-calendar:before { + content: "\ea53"; +} +.ic-camera:before { + content: "\ea54"; +} +.ic-chart-area-line:before { + content: "\ea57"; +} +.ic-hits:before { + content: "\ea59"; +} +.ic-settings:before { + content: "\eb20"; +} +.ic-tool:before { + content: "\eb40"; +} +.ic-chart-candle:before { + content: "\ea5a"; +} +.ic-circle-check:before { + content: "\ea67"; +} +.ic-circle-minus:before { + content: "\ea68"; +} +.ic-circle-plus:before { + content: "\ea69"; +} +.ic-circle-x:before { + content: "\ea6a"; +} +.ic-clock:before { + content: "\ea70"; +} +.ic-cloud-download:before { + content: "\ea71"; +} +.ic-cloud-upload:before { + content: "\ea75"; +} +.ic-code:before { + content: "\ea77"; +} +.ic-compass:before { + content: "\ea79"; +} +.ic-copy:before { + content: "\ea7a"; +} +.ic-credit-card:before { + content: "\ea84"; +} +.ic-cache:before { + content: "\ea88"; +} +.ic-device-desktop:before { + content: "\ea89"; +} +.ic-directions:before { + content: "\ea8e"; +} +.ic-dots:before { + content: "\ea95"; +} +.ic-download:before { + content: "\ea96"; +} +.ic-edit:before { + content: "\ea98"; +} +.ic-external-link:before { + content: "\ea99"; +} +.ic-eye:before { + content: "\ea9a"; +} +.ic-eye-off:before { + content: "\ecf0"; +} +.ic-filter:before { + content: "\eaa5"; +} +.ic-flag:before { + content: "\eaa6"; +} +.ic-folder:before { + content: "\eaad"; +} +.ic-folders:before { + content: "\eaae"; +} +.ic-heart:before { + content: "\eabe"; +} +.ic-home:before { + content: "\eac0"; +} +.ic-home-2:before { + content: "\eac1"; +} +.ic-id:before { + content: "\eac3"; +} +.ic-key:before { + content: "\eac7"; +} +.ic-location:before { + content: "\eae0"; +} +.ic-lock:before { + content: "\eae2"; +} +.ic-unlock:before { + content: "\eae1"; +} +.ic-lock-off:before { + content: "\ed1e"; +} +.ic-mail-opened:before { + content: "\eae4"; +} +.ic-mail:before { + content: "\eae5"; +} +.ic-map-2:before { + content: "\eae7"; +} +.ic-map-pin:before { + content: "\eae8"; +} +.ic-message-2:before { + content: "\eaec"; +} +.ic-message-circle:before { + content: "\eaed"; +} +.ic-message:before { + content: "\eaef"; +} +.ic-mood-happy:before { + content: "\eaf4"; +} +.ic-smilies:before { + content: "\eaf7"; +} +.ic-news:before { + content: "\eafd"; +} +.ic-pencil:before { + content: "\eb04"; +} +.ic-phone-call:before { + content: "\eb05"; +} +.ic-phone-incoming:before { + content: "\eb06"; +} +.ic-image:before { + content: "\e905"; +} +.ic-photo:before { + content: "\eb0a"; +} +.ic-plus:before { + content: "\eb0b"; +} +.ic-power:before { + content: "\eb0d"; +} +.ic-refresh:before { + content: "\eb13"; +} +.ic-rotate-clockwise:before { + content: "\eb15"; +} +.ic-search:before { + content: "\eb1c"; +} +.ic-server:before { + content: "\eb1f"; +} +.ic-share:before { + content: "\eb21"; +} +.ic-shield-check:before { + content: "\eb22"; +} +.ic-shopping-cart:before { + content: "\eb25"; +} +.ic-star:before { + content: "\eb2e"; +} +.ic-tag:before { + content: "\eb34"; +} +.ic-thumb-down:before { + content: "\eb3b"; +} +.ic-thumb-up:before { + content: "\eb3c"; +} +.ic-trash-off:before { + content: "\ed65"; +} +.ic-trash:before { + content: "\eb41"; +} +.ic-unlink:before { + content: "\eb46"; +} +.ic-paperclip:before { + content: "\eb02"; +} +.ic-link:before { + content: "\eade"; +} +.ic-upload:before { + content: "\eb47"; +} +.ic-user-check:before { + content: "\eb49"; +} +.ic-user-minus:before { + content: "\eb4a"; +} +.ic-user-plus:before { + content: "\eb4b"; +} +.ic-user-x:before { + content: "\eb4c"; +} +.ic-user:before { + content: "\eb4d"; +} +.ic-referers:before { + content: "\eb54"; +} +.ic-close:before { + content: "\eb55"; +} +.ic-zoom-in:before { + content: "\eb56"; +} +.ic-zoom-out:before { + content: "\eb57"; +} +.ic-polls:before { + content: "\eb6a"; +} +.ic-comments:before { + content: "\eb6c"; +} +.ic-repeat:before { + content: "\eb72"; +} +.ic-anchor:before { + content: "\eb76"; +} +.ic-calculator:before { + content: "\eb80"; +} +.ic-notebook:before { + content: "\eb96"; +} +.ic-login:before { + content: "\eba7"; +} +.ic-logout:before { + content: "\eba8"; +} +.ic-rotate-clockwise-2:before { + content: "\ebb5"; +} +.ic-brush:before { + content: "\ebb8"; +} +.ic-gallery:before { + content: "\ebc9"; +} +.ic-tools:before { + content: "\ebca"; +} +.ic-wand:before { + content: "\ebcb"; +} +.ic-plug:before { + content: "\ebd9"; +} +.ic-color-picker:before { + content: "\ebe6"; +} +.ic-users:before { + content: "\ebf2"; +} +.ic-phone-check:before { + content: "\ec05"; +} +.ic-camera-minus:before { + content: "\ec3a"; +} +.ic-camera-plus:before { + content: "\ec3b"; +} +.ic-menu:before { + content: "\ec42"; +} +.ic-ratings:before { + content: "\ec78"; +} +.ic-separator-vertical:before { + content: "\ec7a"; +} +.ic-page-break:before { + content: "\ec81"; +} +.ic-select:before { + content: "\ec9e"; +} +.ic-forums:before { + content: "\ec9f"; +} +.ic-index:before { + content: "\ecde"; +} +.ic-brand-discord:before { + content: "\ece3"; +} +.ic-brand-pocket:before { + content: "\ed00"; +} +.ic-bookmarks:before { + content: "\ed08"; +} +.ic-stars:before { + content: "\ed38"; +} +.ic-message-circle-2:before { + content: "\ed3f"; +} +.ic-speakerphone:before { + content: "\ed61"; +} +.ic-star-off:before { + content: "\ed62"; +} +.ic-manual-gearbox:before { + content: "\ed7b"; +} +.ic-admin:before { + content: "\edcc"; +} +.ic-pm:before { + content: "\edcd"; +} +.ic-page:before { + content: "\edef"; +} +.ic-chart-pie:before { + content: "\ee32"; +} +.ic-discount:before { + content: "\ee7c"; +} +.ic-edit-circle:before { + content: "\ee85"; +} +.ic-list-search:before { + content: "\eea9"; +} +.ic-pacman:before { + content: "\eebc"; +} +.ic-settings-automation:before { + content: "\eed6"; +} +.ic-shopping-cart-discount:before { + content: "\eedb"; +} +.ic-shopping-cart-plus:before { + content: "\eedd"; +} +.ic-hand-move:before { + content: "\ef50"; +} +.ic-user-circle:before { + content: "\ef68"; +} +.ic-report-search:before { + content: "\ef84"; +} +.ic-trash-x:before { + content: "\ef88"; +} +.ic-world-upload:before { + content: "\ef8b"; +} +.ic-shield-checkered:before { + content: "\ef9a"; +} +.ic-quote:before { + content: "\efbe"; +} +.ic-dic:before { + content: "\eff2"; +} +.ic-plug-connected:before { + content: "\f00a"; +} +.ic-paper-bag:before { + content: "\f02f"; +} +.ic-file-pencil:before { + content: "\f039"; +} +.ic-file-typography:before { + content: "\f041"; +} +.ic-pfs:before { + content: "\f07c"; +} +.ic-clock-2:before { + content: "\f099"; +} +.ic-typography:before { + content: "\ebc5"; +} +.ic-typography-off:before { + content: "\f1ba"; +} +.ic-cloud-computing:before { + content: "\f1d0"; +} +.ic-cloud-data-connection:before { + content: "\f1d1"; +} +.ic-rss:before { + content: "\e906"; +} +.ic-zap:before { + content: "\e907"; +} +.ic-zap-off:before { + content: "\e908"; +} +.ic-brand-youtube:before { + content: "\ec90"; +} +.ic-movie:before { + content: "\eafa"; +} +.ic-github:before { + content: "\e900"; +} +.ic-brand-telegram:before { + content: "\ec26"; +} +.ic-brand-google-drive:before { + content: "\ec1e"; +} +.ic-brand-instagram:before { + content: "\ec20"; +} +.ic-brand-github:before { + content: "\ec1c"; +} +.ic-facebook:before { + content: "\e90a"; +} +.ic-ok:before { + content: "\e90b"; +} +.ic-twitter:before { + content: "\e90c"; +} +.ic-socialbtn:before { + content: "\e90d"; +} +.ic-vk:before { + content: "\e90e"; +} +.ic-whatsapp:before { + content: "\e90f"; +} +.ic-telegram:before { + content: "\e910"; +} +.ic-youtube:before { + content: "\e911"; +} +.ic-phoneblack:before { + content: "\e914"; +} +.ic-instagram:before { + content: "\e909"; +} +.ic-brand-twitter:before { + content: "\ec27"; +} +.ic-brand-whatsapp:before { + content: "\ec74"; +} diff --git a/skins/sympfy/footer.tpl b/skins/sympfy/footer.tpl new file mode 100644 index 0000000..bf39005 --- /dev/null +++ b/skins/sympfy/footer.tpl @@ -0,0 +1,117 @@ + + +
    + + + + + +
    + + + + + + +{PHP.out.uploader_footer} + + + + + + + + + + + + \ No newline at end of file diff --git a/skins/sympfy/forums.editpost.tpl b/skins/sympfy/forums.editpost.tpl new file mode 100644 index 0000000..d307626 --- /dev/null +++ b/skins/sympfy/forums.editpost.tpl @@ -0,0 +1,90 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {FORUMS_EDITPOST_SHORTTITLE}

    +
    + {FORUMS_EDITPOST_SUBTITLE} +
    + +
    + +
    + +
    + + + + {FORUMS_EDITPOST_ERROR_BODY} + + + +
      + + + +
    • +
      +
      {FORUMS_EDITPOST_TITLE}
      +
    • + +
    • +
      +
      {FORUMS_EDITPOST_DESC}
      +
    • + + + +
    • +
      + {FORUMS_EDITPOST_TEXT} +
      +
    • + + +
    • +
      +
      +
      {PHP.L.polls_title}:
      +
      + {EDIT_POLL_TEXT} +
      +
      {PHP.L.polls_options}:
      +
      + +
      + {PHP.L.polls_option} #{EDIT_POLL_NUM}: {EDIT_POLL_OPTION} + + + +
      + +
      + +
      +
    • + + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/forums.newtopic.tpl b/skins/sympfy/forums.newtopic.tpl new file mode 100644 index 0000000..a118118 --- /dev/null +++ b/skins/sympfy/forums.newtopic.tpl @@ -0,0 +1,99 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {FORUMS_NEWTOPIC_SHORTTITLE}

    + +
    + {FORUMS_NEWTOPIC_SUBTITLE} +
    + +
    + +
    + + + + {FORUMS_NEWTOPIC_ERROR_BODY} + + + +
    + +
      + +
    • +
      +
      {FORUMS_NEWTOPIC_TITLE}
      +
    • + +
    • +
      +
      {FORUMS_NEWTOPIC_DESC}
      +
    • + + + +
    • +
      +
      + {FORUMS_NEWTOPIC_ISPRIVATE} +
      {PHP.skinlang.forumsnewtopic.privatetopic2}
      +
      +
    • + + + +
    • +
      + {FORUMS_NEWTOPIC_TEXT} +
      +
    • + + +
    • +
      +
      +
      {PHP.L.polls_title}:
      +
      + {NEW_POLL_TEXT} +
      +
      {PHP.L.polls_options}:
      +
      + +
      + {PHP.L.polls_option} #{NEW_POLL_NUM}: {NEW_POLL_OPTION} + + + +
      + +
      + +
      +
    • + + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/forums.posts.tpl b/skins/sympfy/forums.posts.tpl new file mode 100644 index 0000000..b313c2e --- /dev/null +++ b/skins/sympfy/forums.posts.tpl @@ -0,0 +1,184 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {FORUMS_POSTS_SHORTTITLE}

    + +
    + {FORUMS_POSTS_TOPICDESC} +
    + +
    + {FORUMS_POSTS_SUBTITLE} +
    + +
    + +
    + + {FORUMS_POLL} + + + +
    + {PHP.skinlang.forumspost.privatetopic} +
    + + + + + +
    + +
      +
    • {FORUMS_POSTS_PAGEPREV}
    • + {FORUMS_POSTS_PAGES} +
    • {FORUMS_POSTS_PAGENEXT}
    • +
    + +
    + + + +
    + +
    +
    {PHP.skinlang.forumspost.Author}
    +
    {PHP.skinlang.forumspost.Message}
    +
    + +
    + + + +
    + + + + + +
    + +
    + + + +
    +
    + {FORUMS_POSTS_ROW_TEXT} +
    {FORUMS_POSTS_ROW_USERTEXT}
    +
    + {FORUMS_POSTS_ROW_UPDATEDBY} +
    + +
    + + + +
    + +
    + + + +
    + +
      +
    • {FORUMS_POSTS_PAGEPREV}
    • + {FORUMS_POSTS_PAGES} +
    • {FORUMS_POSTS_PAGENEXT}
    • +
    + +
    + + + + + +
    + {FORUMS_POSTS_TOPICLOCKED_BODY} +
    + + + + + +
    + {FORUMS_POSTS_ANTIBUMP_BODY} +
    + + + + + + + + {FORUMS_POSTS_NEWPOST_ERROR_BODY} + + + +
    + +
      +
    • +
      +

      {PHP.L.for_quickpost}

      + {FORUMS_POSTS_NEWPOST_TEXT} +
      +
    • +
    • +
      + +
      +
    • +
    + +
    + + + +
    + + {FORUMS_POSTS_JUMPBOX} + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/forums.sections.tpl b/skins/sympfy/forums.sections.tpl new file mode 100644 index 0000000..fe5838e --- /dev/null +++ b/skins/sympfy/forums.sections.tpl @@ -0,0 +1,124 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {FORUMS_SECTIONS_SHORTTITLE}

    +
    + +
    + +
    + + + +
    + +
    + +
    {PHP.skinlang.forumssections.Lastpost}
    +
    {PHP.skinlang.forumssections.Topics}
    +
    {PHP.skinlang.forumssections.Posts}
    +
    {PHP.skinlang.forumssections.Views}
    +
    {PHP.skinlang.forumssections.Activity}
    +
    + + + +
    +
    + {FORUMS_SECTIONS_ROW_CAT_TITLE} +
    +
    + +
    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    +

    {FORUMS_SECTIONS_ROW_TITLE}

    +
    {FORUMS_SECTIONS_ROW_DESC}
    + + + + + +
    + +
    + +
    + +
    + + +
    +
    {FORUMS_SECTIONS_ROW_LASTPOST}
    +
    {FORUMS_SECTIONS_ROW_LASTPOSTDATE} {FORUMS_SECTIONS_ROW_LASTPOSTER}
    +
    {FORUMS_SECTIONS_ROW_TIMEAGO}
    +
    + +
    + {FORUMS_SECTIONS_ROW_TOPICCOUNT_ALL}
    + ({FORUMS_SECTIONS_ROW_TOPICCOUNT}) +
    + +
    + {FORUMS_SECTIONS_ROW_POSTCOUNT_ALL}
    + ({FORUMS_SECTIONS_ROW_POSTCOUNT}) +
    + +
    + {FORUMS_SECTIONS_ROW_VIEWCOUNT_SHORT} +
    + +
    + {FORUMS_SECTIONS_ROW_ACTIVITY} +
    + +
    + + + +
    + + + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/forums.topics.tpl b/skins/sympfy/forums.topics.tpl new file mode 100644 index 0000000..53e2ea4 --- /dev/null +++ b/skins/sympfy/forums.topics.tpl @@ -0,0 +1,223 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {FORUMS_TOPICS_SHORTTITLE}

    + +
    + {FORUMS_TOPICS_SUBTITLE} +
    + +
    + +
    + +
    + +
    + {FORUMS_TOPICS_VIEWERS} {PHP.skinlang.forumstopics.Viewers}   {FORUMS_TOPICS_JUMPBOX} +
    +
    + + + +
    + +
    +
    {PHP.skinlang.forumssections.Subforums}
    +
    {PHP.skinlang.forumssections.Lastpost}
    +
    {PHP.skinlang.forumssections.Topics}
    +
    {PHP.skinlang.forumssections.Posts}
    +
    + +
    + + + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    +

    {FORUMS_SECTIONS_ROW_TITLE}

    +
    {FORUMS_SECTIONS_ROW_DESC}
    +
    + +
    + +
    + +
    + +
    + {FORUMS_SECTIONS_ROW_LASTPOST}
    + {FORUMS_SECTIONS_ROW_LASTPOSTDATE} {FORUMS_SECTIONS_ROW_LASTPOSTER}
    + {FORUMS_SECTIONS_ROW_TIMEAGO} +
    + +
    + {FORUMS_SECTIONS_ROW_TOPICCOUNT_ALL}
    + ({FORUMS_SECTIONS_ROW_TOPICCOUNT}) +
    + +
    + {FORUMS_SECTIONS_ROW_POSTCOUNT_ALL}
    + ({FORUMS_SECTIONS_ROW_POSTCOUNT}) +
    + +
    + + + + + +
    +
    + + + + + +
    + +
      +
    • {FORUMS_TOPICS_PAGEPREV}
    • + {FORUMS_TOPICS_PAGES} +
    • {FORUMS_TOPICS_PAGENEXT}
    • +
    + +
    + + + +
    + +
    + +
    {FORUMS_TOPICS_TITLE_TOPICS}
    {FORUMS_TOPICS_TITLE_STARTED}
    +
    +
    {FORUMS_TOPICS_TITLE_LASTPOST}
    +
    {FORUMS_TOPICS_TITLE_POSTS}
    +
    {FORUMS_TOPICS_TITLE_VIEWS}
    + +
    + +
    + + + +
    + +
    + +
    + +
    + +
    + {FORUMS_TOPICS_ROW_ICON} +
    + +
    + {FORUMS_TOPICS_ROW_TITLE} +
    {FORUMS_TOPICS_ROW_DESC} {FORUMS_TOPICS_ROW_PAGES}
    +
    + +
    + {FORUMS_TOPICS_ROW_CREATIONDATE}
    {FORUMS_TOPICS_ROW_FIRSTPOSTER} +
    + +
    + +
    + +
    + +
    + {FORUMS_TOPICS_ROW_UPDATED} {FORUMS_TOPICS_ROW_LASTPOSTER}
    + {FORUMS_TOPICS_ROW_TIMEAGO} +
    + +
    + {FORUMS_TOPICS_ROW_POSTCOUNT} +
    + +
    + {FORUMS_TOPICS_ROW_VIEWCOUNT} +
    + +
    + + +
    + +
    + + + +
    + +
      +
    • {FORUMS_TOPICS_PAGEPREV}
    • + {FORUMS_TOPICS_PAGES} +
    • {FORUMS_TOPICS_PAGENEXT}
    • +
    + +
    + + + +
    + +
    +
    : {PHP.skinlang.forumstopics.Nonewposts}
    +
    :{PHP.skinlang.forumstopics.Newposts}
    +
    : {PHP.skinlang.forumstopics.Sticky}
    +
    + +
    +
    : {PHP.skinlang.forumstopics.Nonewpostspopular}
    +
    :{PHP.skinlang.forumstopics.Newpostspopular}
    +
    : {PHP.skinlang.forumstopics.Newpostssticky}
    +
    + +
    +
    : {PHP.skinlang.forumstopics.Locked}
    +
    : {PHP.skinlang.forumstopics.Newpostslocked}
    +
    : {PHP.skinlang.forumstopics.Announcment}
    +
    + +
    +
    : {PHP.skinlang.forumstopics.Movedoutofthissection}
    +
    : {PHP.skinlang.forumstopics.Newannouncment}
    +
    +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/gallery.browse.tpl b/skins/sympfy/gallery.browse.tpl new file mode 100644 index 0000000..c1e5f55 --- /dev/null +++ b/skins/sympfy/gallery.browse.tpl @@ -0,0 +1,67 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {GALLERY_BROWSE_TITLE}

    + +
    + {GALLERY_BROWSE_SUBTITLE} +
    + +
    + +
    + + + +
    + + + +
    + + + +
    + + + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/gallery.details.tpl b/skins/sympfy/gallery.details.tpl new file mode 100644 index 0000000..006e752 --- /dev/null +++ b/skins/sympfy/gallery.details.tpl @@ -0,0 +1,86 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {GALLERY_DETAILS_TITLE}

    + +
    +
    {GALLERY_DETAILS_DATE}
    +
    + +
    + {GALLERY_DETAILS_SUBTITLE} +
    + +
    + + +
    + {GALLERY_DETAILS_ADMIN} +
    + + +
    + +
    + +
    + + + + + + + +
    + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/gallery.home.tpl b/skins/sympfy/gallery.home.tpl new file mode 100644 index 0000000..1e70dd8 --- /dev/null +++ b/skins/sympfy/gallery.home.tpl @@ -0,0 +1,68 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {GALLERY_HOME_TITLE}

    + +
    + {GALLERY_HOME_SUBTITLE} +
    + +
    + +
    + + + +
    + + + +
    + + + +
    + + + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/header.tpl b/skins/sympfy/header.tpl new file mode 100644 index 0000000..d27324a --- /dev/null +++ b/skins/sympfy/header.tpl @@ -0,0 +1,98 @@ +{HEADER_DOCTYPE} + + + + {HEADER_TITLE} + {HEADER_METAS} + {HEADER_COMPOPUP} + + + + + + + + + {HEADER_UPLOADER} + + + + + +
    + +
    + +
    {HEADER_NOTICES}
    + +
      +
    • {HEADER_LOGSTATUS}
    • +
    • {HEADER_USER_ADMINPANEL}
    • +
    • {HEADER_USERLIST}
    • +
    • {HEADER_USER_PROFILE}
    • +
    • {HEADER_USER_PFS}
    • +
    • {HEADER_USER_PMREMINDER}
    • +
    • {HEADER_USER_PAGEADD}
    • +
    • {HEADER_USER_LOGINOUT}
    • +
    +
    +
    + + + + \ No newline at end of file diff --git a/skins/sympfy/img/adm_add.png b/skins/sympfy/img/adm_add.png new file mode 100644 index 0000000..7e3ae92 Binary files /dev/null and b/skins/sympfy/img/adm_add.png differ diff --git a/skins/sympfy/img/adm_edit.png b/skins/sympfy/img/adm_edit.png new file mode 100644 index 0000000..fc52175 Binary files /dev/null and b/skins/sympfy/img/adm_edit.png differ diff --git a/skins/sympfy/img/input_icons.svg b/skins/sympfy/img/input_icons.svg new file mode 100644 index 0000000..4008cc5 --- /dev/null +++ b/skins/sympfy/img/input_icons.svg @@ -0,0 +1,74 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/skins/sympfy/img/list/f_list_arrow.png b/skins/sympfy/img/list/f_list_arrow.png new file mode 100644 index 0000000..dcc933b Binary files /dev/null and b/skins/sympfy/img/list/f_list_arrow.png differ diff --git a/skins/sympfy/img/list/f_list_check.png b/skins/sympfy/img/list/f_list_check.png new file mode 100644 index 0000000..3f263d6 Binary files /dev/null and b/skins/sympfy/img/list/f_list_check.png differ diff --git a/skins/sympfy/img/list/f_list_circle.png b/skins/sympfy/img/list/f_list_circle.png new file mode 100644 index 0000000..b69cc1b Binary files /dev/null and b/skins/sympfy/img/list/f_list_circle.png differ diff --git a/skins/sympfy/img/list/f_list_cross.png b/skins/sympfy/img/list/f_list_cross.png new file mode 100644 index 0000000..109f38a Binary files /dev/null and b/skins/sympfy/img/list/f_list_cross.png differ diff --git a/skins/sympfy/img/list/f_list_minus.png b/skins/sympfy/img/list/f_list_minus.png new file mode 100644 index 0000000..7b40d72 Binary files /dev/null and b/skins/sympfy/img/list/f_list_minus.png differ diff --git a/skins/sympfy/img/list/f_list_plus.png b/skins/sympfy/img/list/f_list_plus.png new file mode 100644 index 0000000..665343b Binary files /dev/null and b/skins/sympfy/img/list/f_list_plus.png differ diff --git a/skins/sympfy/img/list/f_list_square.png b/skins/sympfy/img/list/f_list_square.png new file mode 100644 index 0000000..2482015 Binary files /dev/null and b/skins/sympfy/img/list/f_list_square.png differ diff --git a/skins/sympfy/img/list/f_list_star.png b/skins/sympfy/img/list/f_list_star.png new file mode 100644 index 0000000..f283994 Binary files /dev/null and b/skins/sympfy/img/list/f_list_star.png differ diff --git a/skins/sympfy/img/list/g_list_arrow.png b/skins/sympfy/img/list/g_list_arrow.png new file mode 100644 index 0000000..85ebfaa Binary files /dev/null and b/skins/sympfy/img/list/g_list_arrow.png differ diff --git a/skins/sympfy/img/list/g_list_check.png b/skins/sympfy/img/list/g_list_check.png new file mode 100644 index 0000000..25bf5d4 Binary files /dev/null and b/skins/sympfy/img/list/g_list_check.png differ diff --git a/skins/sympfy/img/list/g_list_circle.png b/skins/sympfy/img/list/g_list_circle.png new file mode 100644 index 0000000..e68472f Binary files /dev/null and b/skins/sympfy/img/list/g_list_circle.png differ diff --git a/skins/sympfy/img/list/g_list_cross.png b/skins/sympfy/img/list/g_list_cross.png new file mode 100644 index 0000000..a82d427 Binary files /dev/null and b/skins/sympfy/img/list/g_list_cross.png differ diff --git a/skins/sympfy/img/list/g_list_minus.png b/skins/sympfy/img/list/g_list_minus.png new file mode 100644 index 0000000..7da9f6a Binary files /dev/null and b/skins/sympfy/img/list/g_list_minus.png differ diff --git a/skins/sympfy/img/list/g_list_plus.png b/skins/sympfy/img/list/g_list_plus.png new file mode 100644 index 0000000..6849c03 Binary files /dev/null and b/skins/sympfy/img/list/g_list_plus.png differ diff --git a/skins/sympfy/img/list/g_list_square.png b/skins/sympfy/img/list/g_list_square.png new file mode 100644 index 0000000..32259fd Binary files /dev/null and b/skins/sympfy/img/list/g_list_square.png differ diff --git a/skins/sympfy/img/list/g_list_star.png b/skins/sympfy/img/list/g_list_star.png new file mode 100644 index 0000000..7a89aa7 Binary files /dev/null and b/skins/sympfy/img/list/g_list_star.png differ diff --git a/skins/sympfy/img/list/list_arrow.png b/skins/sympfy/img/list/list_arrow.png new file mode 100644 index 0000000..a492264 Binary files /dev/null and b/skins/sympfy/img/list/list_arrow.png differ diff --git a/skins/sympfy/img/list/list_check.png b/skins/sympfy/img/list/list_check.png new file mode 100644 index 0000000..9d2d2b9 Binary files /dev/null and b/skins/sympfy/img/list/list_check.png differ diff --git a/skins/sympfy/img/list/list_circle.png b/skins/sympfy/img/list/list_circle.png new file mode 100644 index 0000000..7f5460b Binary files /dev/null and b/skins/sympfy/img/list/list_circle.png differ diff --git a/skins/sympfy/img/list/list_cross.png b/skins/sympfy/img/list/list_cross.png new file mode 100644 index 0000000..eaad968 Binary files /dev/null and b/skins/sympfy/img/list/list_cross.png differ diff --git a/skins/sympfy/img/list/list_minus.png b/skins/sympfy/img/list/list_minus.png new file mode 100644 index 0000000..72f7b74 Binary files /dev/null and b/skins/sympfy/img/list/list_minus.png differ diff --git a/skins/sympfy/img/list/list_plus.png b/skins/sympfy/img/list/list_plus.png new file mode 100644 index 0000000..e7b6a53 Binary files /dev/null and b/skins/sympfy/img/list/list_plus.png differ diff --git a/skins/sympfy/img/list/list_square.png b/skins/sympfy/img/list/list_square.png new file mode 100644 index 0000000..ed5a0ac Binary files /dev/null and b/skins/sympfy/img/list/list_square.png differ diff --git a/skins/sympfy/img/list/list_star.png b/skins/sympfy/img/list/list_star.png new file mode 100644 index 0000000..d75fdfc Binary files /dev/null and b/skins/sympfy/img/list/list_star.png differ diff --git a/skins/sympfy/img/next.svg b/skins/sympfy/img/next.svg new file mode 100644 index 0000000..2fbe8b9 --- /dev/null +++ b/skins/sympfy/img/next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/skins/sympfy/img/online0.gif b/skins/sympfy/img/online0.gif new file mode 100644 index 0000000..aa2d594 Binary files /dev/null and b/skins/sympfy/img/online0.gif differ diff --git a/skins/sympfy/img/online1.gif b/skins/sympfy/img/online1.gif new file mode 100644 index 0000000..f5e6095 Binary files /dev/null and b/skins/sympfy/img/online1.gif differ diff --git a/skins/sympfy/img/seditio.svg b/skins/sympfy/img/seditio.svg new file mode 100644 index 0000000..5078fd8 --- /dev/null +++ b/skins/sympfy/img/seditio.svg @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/skins/sympfy/img/seditio_icon.svg b/skins/sympfy/img/seditio_icon.svg new file mode 100644 index 0000000..baba2e0 --- /dev/null +++ b/skins/sympfy/img/seditio_icon.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/skins/sympfy/img/system/activity0.gif b/skins/sympfy/img/system/activity0.gif new file mode 100644 index 0000000..255c4d7 Binary files /dev/null and b/skins/sympfy/img/system/activity0.gif differ diff --git a/skins/sympfy/img/system/activity1.gif b/skins/sympfy/img/system/activity1.gif new file mode 100644 index 0000000..53ed5da Binary files /dev/null and b/skins/sympfy/img/system/activity1.gif differ diff --git a/skins/sympfy/img/system/activity2.gif b/skins/sympfy/img/system/activity2.gif new file mode 100644 index 0000000..e1177e7 Binary files /dev/null and b/skins/sympfy/img/system/activity2.gif differ diff --git a/skins/sympfy/img/system/activity3.gif b/skins/sympfy/img/system/activity3.gif new file mode 100644 index 0000000..01bb6f0 Binary files /dev/null and b/skins/sympfy/img/system/activity3.gif differ diff --git a/skins/sympfy/img/system/activity4.gif b/skins/sympfy/img/system/activity4.gif new file mode 100644 index 0000000..8205746 Binary files /dev/null and b/skins/sympfy/img/system/activity4.gif differ diff --git a/skins/sympfy/img/system/activity5.gif b/skins/sympfy/img/system/activity5.gif new file mode 100644 index 0000000..2bfee62 Binary files /dev/null and b/skins/sympfy/img/system/activity5.gif differ diff --git a/skins/sympfy/img/system/arrow-down.gif b/skins/sympfy/img/system/arrow-down.gif new file mode 100644 index 0000000..d30e3f9 Binary files /dev/null and b/skins/sympfy/img/system/arrow-down.gif differ diff --git a/skins/sympfy/img/system/arrow-follow.gif b/skins/sympfy/img/system/arrow-follow.gif new file mode 100644 index 0000000..78ee092 Binary files /dev/null and b/skins/sympfy/img/system/arrow-follow.gif differ diff --git a/skins/sympfy/img/system/arrow-left.gif b/skins/sympfy/img/system/arrow-left.gif new file mode 100644 index 0000000..83ea0b6 Binary files /dev/null and b/skins/sympfy/img/system/arrow-left.gif differ diff --git a/skins/sympfy/img/system/arrow-right.gif b/skins/sympfy/img/system/arrow-right.gif new file mode 100644 index 0000000..18b6627 Binary files /dev/null and b/skins/sympfy/img/system/arrow-right.gif differ diff --git a/skins/sympfy/img/system/arrow-unread.gif b/skins/sympfy/img/system/arrow-unread.gif new file mode 100644 index 0000000..8212e37 Binary files /dev/null and b/skins/sympfy/img/system/arrow-unread.gif differ diff --git a/skins/sympfy/img/system/arrow-up.gif b/skins/sympfy/img/system/arrow-up.gif new file mode 100644 index 0000000..eec8e32 Binary files /dev/null and b/skins/sympfy/img/system/arrow-up.gif differ diff --git a/skins/sympfy/img/system/gallery_back.png b/skins/sympfy/img/system/gallery_back.png new file mode 100644 index 0000000..ba7a26e Binary files /dev/null and b/skins/sympfy/img/system/gallery_back.png differ diff --git a/skins/sympfy/img/system/gallery_next.png b/skins/sympfy/img/system/gallery_next.png new file mode 100644 index 0000000..d7627f0 Binary files /dev/null and b/skins/sympfy/img/system/gallery_next.png differ diff --git a/skins/sympfy/img/system/gallery_prev.png b/skins/sympfy/img/system/gallery_prev.png new file mode 100644 index 0000000..16a0f3d Binary files /dev/null and b/skins/sympfy/img/system/gallery_prev.png differ diff --git a/skins/sympfy/img/system/gallery_zoom.png b/skins/sympfy/img/system/gallery_zoom.png new file mode 100644 index 0000000..0a9f6fe Binary files /dev/null and b/skins/sympfy/img/system/gallery_zoom.png differ diff --git a/skins/sympfy/img/system/groups-add.gif b/skins/sympfy/img/system/groups-add.gif new file mode 100644 index 0000000..4e25329 Binary files /dev/null and b/skins/sympfy/img/system/groups-add.gif differ diff --git a/skins/sympfy/img/system/groups-edit.gif b/skins/sympfy/img/system/groups-edit.gif new file mode 100644 index 0000000..4e106e0 Binary files /dev/null and b/skins/sympfy/img/system/groups-edit.gif differ diff --git a/skins/sympfy/img/system/groups-helper.gif b/skins/sympfy/img/system/groups-helper.gif new file mode 100644 index 0000000..87a2d91 Binary files /dev/null and b/skins/sympfy/img/system/groups-helper.gif differ diff --git a/skins/sympfy/img/system/groups-member.gif b/skins/sympfy/img/system/groups-member.gif new file mode 100644 index 0000000..a4e6a0b Binary files /dev/null and b/skins/sympfy/img/system/groups-member.gif differ diff --git a/skins/sympfy/img/system/groups-moderated.gif b/skins/sympfy/img/system/groups-moderated.gif new file mode 100644 index 0000000..337a4cb Binary files /dev/null and b/skins/sympfy/img/system/groups-moderated.gif differ diff --git a/skins/sympfy/img/system/groups-owner.gif b/skins/sympfy/img/system/groups-owner.gif new file mode 100644 index 0000000..87fa26f Binary files /dev/null and b/skins/sympfy/img/system/groups-owner.gif differ diff --git a/skins/sympfy/img/system/groups-pending.gif b/skins/sympfy/img/system/groups-pending.gif new file mode 100644 index 0000000..16f388a Binary files /dev/null and b/skins/sympfy/img/system/groups-pending.gif differ diff --git a/skins/sympfy/img/system/groups-private.gif b/skins/sympfy/img/system/groups-private.gif new file mode 100644 index 0000000..8d78b98 Binary files /dev/null and b/skins/sympfy/img/system/groups-private.gif differ diff --git a/skins/sympfy/img/system/groups-public.gif b/skins/sympfy/img/system/groups-public.gif new file mode 100644 index 0000000..64bf691 Binary files /dev/null and b/skins/sympfy/img/system/groups-public.gif differ diff --git a/skins/sympfy/img/system/groups-remove.gif b/skins/sympfy/img/system/groups-remove.gif new file mode 100644 index 0000000..7769b9b Binary files /dev/null and b/skins/sympfy/img/system/groups-remove.gif differ diff --git a/skins/sympfy/img/system/groups.gif b/skins/sympfy/img/system/groups.gif new file mode 100644 index 0000000..11a7ebf Binary files /dev/null and b/skins/sympfy/img/system/groups.gif differ diff --git a/skins/sympfy/img/system/icon-comment.gif b/skins/sympfy/img/system/icon-comment.gif new file mode 100644 index 0000000..2ad0885 Binary files /dev/null and b/skins/sympfy/img/system/icon-comment.gif differ diff --git a/skins/sympfy/img/system/icon-folder.gif b/skins/sympfy/img/system/icon-folder.gif new file mode 100644 index 0000000..ea90190 Binary files /dev/null and b/skins/sympfy/img/system/icon-folder.gif differ diff --git a/skins/sympfy/img/system/icon-forums.gif b/skins/sympfy/img/system/icon-forums.gif new file mode 100644 index 0000000..26e3f4b Binary files /dev/null and b/skins/sympfy/img/system/icon-forums.gif differ diff --git a/skins/sympfy/img/system/icon-gallery.gif b/skins/sympfy/img/system/icon-gallery.gif new file mode 100644 index 0000000..90fab83 Binary files /dev/null and b/skins/sympfy/img/system/icon-gallery.gif differ diff --git a/skins/sympfy/img/system/icon-home.gif b/skins/sympfy/img/system/icon-home.gif new file mode 100644 index 0000000..00c07cf Binary files /dev/null and b/skins/sympfy/img/system/icon-home.gif differ diff --git a/skins/sympfy/img/system/icon-journal.gif b/skins/sympfy/img/system/icon-journal.gif new file mode 100644 index 0000000..4c2a160 Binary files /dev/null and b/skins/sympfy/img/system/icon-journal.gif differ diff --git a/skins/sympfy/img/system/icon-jrnpage.gif b/skins/sympfy/img/system/icon-jrnpage.gif new file mode 100644 index 0000000..acadfc1 Binary files /dev/null and b/skins/sympfy/img/system/icon-jrnpage.gif differ diff --git a/skins/sympfy/img/system/icon-manual-list.gif b/skins/sympfy/img/system/icon-manual-list.gif new file mode 100644 index 0000000..f000506 Binary files /dev/null and b/skins/sympfy/img/system/icon-manual-list.gif differ diff --git a/skins/sympfy/img/system/icon-manual-page.gif b/skins/sympfy/img/system/icon-manual-page.gif new file mode 100644 index 0000000..c710b50 Binary files /dev/null and b/skins/sympfy/img/system/icon-manual-page.gif differ diff --git a/skins/sympfy/img/system/icon-pastefile.gif b/skins/sympfy/img/system/icon-pastefile.gif new file mode 100644 index 0000000..4265680 Binary files /dev/null and b/skins/sympfy/img/system/icon-pastefile.gif differ diff --git a/skins/sympfy/img/system/icon-pasteimage.gif b/skins/sympfy/img/system/icon-pasteimage.gif new file mode 100644 index 0000000..6df8e03 Binary files /dev/null and b/skins/sympfy/img/system/icon-pasteimage.gif differ diff --git a/skins/sympfy/img/system/icon-pastethumb.gif b/skins/sympfy/img/system/icon-pastethumb.gif new file mode 100644 index 0000000..1445701 Binary files /dev/null and b/skins/sympfy/img/system/icon-pastethumb.gif differ diff --git a/skins/sympfy/img/system/icon-pfs.gif b/skins/sympfy/img/system/icon-pfs.gif new file mode 100644 index 0000000..6ba545e Binary files /dev/null and b/skins/sympfy/img/system/icon-pfs.gif differ diff --git a/skins/sympfy/img/system/icon-pm-archive.gif b/skins/sympfy/img/system/icon-pm-archive.gif new file mode 100644 index 0000000..c457c63 Binary files /dev/null and b/skins/sympfy/img/system/icon-pm-archive.gif differ diff --git a/skins/sympfy/img/system/icon-pm-edit.gif b/skins/sympfy/img/system/icon-pm-edit.gif new file mode 100644 index 0000000..071d066 Binary files /dev/null and b/skins/sympfy/img/system/icon-pm-edit.gif differ diff --git a/skins/sympfy/img/system/icon-pm-new.gif b/skins/sympfy/img/system/icon-pm-new.gif new file mode 100644 index 0000000..751bc7c Binary files /dev/null and b/skins/sympfy/img/system/icon-pm-new.gif differ diff --git a/skins/sympfy/img/system/icon-pm-reply.gif b/skins/sympfy/img/system/icon-pm-reply.gif new file mode 100644 index 0000000..6e29524 Binary files /dev/null and b/skins/sympfy/img/system/icon-pm-reply.gif differ diff --git a/skins/sympfy/img/system/icon-pm-trashcan.gif b/skins/sympfy/img/system/icon-pm-trashcan.gif new file mode 100644 index 0000000..763cab3 Binary files /dev/null and b/skins/sympfy/img/system/icon-pm-trashcan.gif differ diff --git a/skins/sympfy/img/system/icon-pm.gif b/skins/sympfy/img/system/icon-pm.gif new file mode 100644 index 0000000..de295f6 Binary files /dev/null and b/skins/sympfy/img/system/icon-pm.gif differ diff --git a/skins/sympfy/img/system/newtopic.gif b/skins/sympfy/img/system/newtopic.gif new file mode 100644 index 0000000..599d56a Binary files /dev/null and b/skins/sympfy/img/system/newtopic.gif differ diff --git a/skins/sympfy/img/system/poll-bar1.gif b/skins/sympfy/img/system/poll-bar1.gif new file mode 100644 index 0000000..10de0d3 Binary files /dev/null and b/skins/sympfy/img/system/poll-bar1.gif differ diff --git a/skins/sympfy/img/system/poll-bar2.gif b/skins/sympfy/img/system/poll-bar2.gif new file mode 100644 index 0000000..9d64a86 Binary files /dev/null and b/skins/sympfy/img/system/poll-bar2.gif differ diff --git a/skins/sympfy/img/system/poll-bar3.gif b/skins/sympfy/img/system/poll-bar3.gif new file mode 100644 index 0000000..8146a67 Binary files /dev/null and b/skins/sympfy/img/system/poll-bar3.gif differ diff --git a/skins/sympfy/img/system/posts.gif b/skins/sympfy/img/system/posts.gif new file mode 100644 index 0000000..bace67f Binary files /dev/null and b/skins/sympfy/img/system/posts.gif differ diff --git a/skins/sympfy/img/system/posts_hot.gif b/skins/sympfy/img/system/posts_hot.gif new file mode 100644 index 0000000..17ef6aa Binary files /dev/null and b/skins/sympfy/img/system/posts_hot.gif differ diff --git a/skins/sympfy/img/system/posts_locked.gif b/skins/sympfy/img/system/posts_locked.gif new file mode 100644 index 0000000..ef0f633 Binary files /dev/null and b/skins/sympfy/img/system/posts_locked.gif differ diff --git a/skins/sympfy/img/system/posts_moved.gif b/skins/sympfy/img/system/posts_moved.gif new file mode 100644 index 0000000..720df47 Binary files /dev/null and b/skins/sympfy/img/system/posts_moved.gif differ diff --git a/skins/sympfy/img/system/posts_new.gif b/skins/sympfy/img/system/posts_new.gif new file mode 100644 index 0000000..4aaaf15 Binary files /dev/null and b/skins/sympfy/img/system/posts_new.gif differ diff --git a/skins/sympfy/img/system/posts_new_hot.gif b/skins/sympfy/img/system/posts_new_hot.gif new file mode 100644 index 0000000..1e09015 Binary files /dev/null and b/skins/sympfy/img/system/posts_new_hot.gif differ diff --git a/skins/sympfy/img/system/posts_new_locked.gif b/skins/sympfy/img/system/posts_new_locked.gif new file mode 100644 index 0000000..ea1139d Binary files /dev/null and b/skins/sympfy/img/system/posts_new_locked.gif differ diff --git a/skins/sympfy/img/system/posts_new_sticky.gif b/skins/sympfy/img/system/posts_new_sticky.gif new file mode 100644 index 0000000..6a43419 Binary files /dev/null and b/skins/sympfy/img/system/posts_new_sticky.gif differ diff --git a/skins/sympfy/img/system/posts_new_sticky_locked.gif b/skins/sympfy/img/system/posts_new_sticky_locked.gif new file mode 100644 index 0000000..6ef0702 Binary files /dev/null and b/skins/sympfy/img/system/posts_new_sticky_locked.gif differ diff --git a/skins/sympfy/img/system/posts_sticky.gif b/skins/sympfy/img/system/posts_sticky.gif new file mode 100644 index 0000000..a203b97 Binary files /dev/null and b/skins/sympfy/img/system/posts_sticky.gif differ diff --git a/skins/sympfy/img/system/posts_sticky_locked.gif b/skins/sympfy/img/system/posts_sticky_locked.gif new file mode 100644 index 0000000..735e3b2 Binary files /dev/null and b/skins/sympfy/img/system/posts_sticky_locked.gif differ diff --git a/skins/sympfy/img/system/stars0.gif b/skins/sympfy/img/system/stars0.gif new file mode 100644 index 0000000..1e26ba5 Binary files /dev/null and b/skins/sympfy/img/system/stars0.gif differ diff --git a/skins/sympfy/img/system/stars1.gif b/skins/sympfy/img/system/stars1.gif new file mode 100644 index 0000000..fcf9d58 Binary files /dev/null and b/skins/sympfy/img/system/stars1.gif differ diff --git a/skins/sympfy/img/system/stars10.gif b/skins/sympfy/img/system/stars10.gif new file mode 100644 index 0000000..6d10846 Binary files /dev/null and b/skins/sympfy/img/system/stars10.gif differ diff --git a/skins/sympfy/img/system/stars2.gif b/skins/sympfy/img/system/stars2.gif new file mode 100644 index 0000000..2ecacfd Binary files /dev/null and b/skins/sympfy/img/system/stars2.gif differ diff --git a/skins/sympfy/img/system/stars3.gif b/skins/sympfy/img/system/stars3.gif new file mode 100644 index 0000000..0a941fa Binary files /dev/null and b/skins/sympfy/img/system/stars3.gif differ diff --git a/skins/sympfy/img/system/stars4.gif b/skins/sympfy/img/system/stars4.gif new file mode 100644 index 0000000..c01a47d Binary files /dev/null and b/skins/sympfy/img/system/stars4.gif differ diff --git a/skins/sympfy/img/system/stars5.gif b/skins/sympfy/img/system/stars5.gif new file mode 100644 index 0000000..f4733b5 Binary files /dev/null and b/skins/sympfy/img/system/stars5.gif differ diff --git a/skins/sympfy/img/system/stars6.gif b/skins/sympfy/img/system/stars6.gif new file mode 100644 index 0000000..0cfeb09 Binary files /dev/null and b/skins/sympfy/img/system/stars6.gif differ diff --git a/skins/sympfy/img/system/stars7.gif b/skins/sympfy/img/system/stars7.gif new file mode 100644 index 0000000..9fa7c27 Binary files /dev/null and b/skins/sympfy/img/system/stars7.gif differ diff --git a/skins/sympfy/img/system/stars8.gif b/skins/sympfy/img/system/stars8.gif new file mode 100644 index 0000000..5af1789 Binary files /dev/null and b/skins/sympfy/img/system/stars8.gif differ diff --git a/skins/sympfy/img/system/stars9.gif b/skins/sympfy/img/system/stars9.gif new file mode 100644 index 0000000..8c5f34f Binary files /dev/null and b/skins/sympfy/img/system/stars9.gif differ diff --git a/skins/sympfy/img/system/subforums.gif b/skins/sympfy/img/system/subforums.gif new file mode 100644 index 0000000..43fdfd9 Binary files /dev/null and b/skins/sympfy/img/system/subforums.gif differ diff --git a/skins/sympfy/img/system/vote.gif b/skins/sympfy/img/system/vote.gif new file mode 100644 index 0000000..6f74f36 Binary files /dev/null and b/skins/sympfy/img/system/vote.gif differ diff --git a/skins/sympfy/img/system/vote0.gif b/skins/sympfy/img/system/vote0.gif new file mode 100644 index 0000000..ae6a316 Binary files /dev/null and b/skins/sympfy/img/system/vote0.gif differ diff --git a/skins/sympfy/img/system/vote1.gif b/skins/sympfy/img/system/vote1.gif new file mode 100644 index 0000000..e0c105f Binary files /dev/null and b/skins/sympfy/img/system/vote1.gif differ diff --git a/skins/sympfy/img/system/vote10.gif b/skins/sympfy/img/system/vote10.gif new file mode 100644 index 0000000..aed05f6 Binary files /dev/null and b/skins/sympfy/img/system/vote10.gif differ diff --git a/skins/sympfy/img/system/vote2.gif b/skins/sympfy/img/system/vote2.gif new file mode 100644 index 0000000..0cee208 Binary files /dev/null and b/skins/sympfy/img/system/vote2.gif differ diff --git a/skins/sympfy/img/system/vote3.gif b/skins/sympfy/img/system/vote3.gif new file mode 100644 index 0000000..9b7184c Binary files /dev/null and b/skins/sympfy/img/system/vote3.gif differ diff --git a/skins/sympfy/img/system/vote4.gif b/skins/sympfy/img/system/vote4.gif new file mode 100644 index 0000000..b76887d Binary files /dev/null and b/skins/sympfy/img/system/vote4.gif differ diff --git a/skins/sympfy/img/system/vote5.gif b/skins/sympfy/img/system/vote5.gif new file mode 100644 index 0000000..aca6fb6 Binary files /dev/null and b/skins/sympfy/img/system/vote5.gif differ diff --git a/skins/sympfy/img/system/vote6.gif b/skins/sympfy/img/system/vote6.gif new file mode 100644 index 0000000..e606981 Binary files /dev/null and b/skins/sympfy/img/system/vote6.gif differ diff --git a/skins/sympfy/img/system/vote7.gif b/skins/sympfy/img/system/vote7.gif new file mode 100644 index 0000000..61a1d7c Binary files /dev/null and b/skins/sympfy/img/system/vote7.gif differ diff --git a/skins/sympfy/img/system/vote8.gif b/skins/sympfy/img/system/vote8.gif new file mode 100644 index 0000000..49dc4b0 Binary files /dev/null and b/skins/sympfy/img/system/vote8.gif differ diff --git a/skins/sympfy/img/system/vote9.gif b/skins/sympfy/img/system/vote9.gif new file mode 100644 index 0000000..8365836 Binary files /dev/null and b/skins/sympfy/img/system/vote9.gif differ diff --git a/skins/sympfy/img/system/vote_down.png b/skins/sympfy/img/system/vote_down.png new file mode 100644 index 0000000..c0928c3 Binary files /dev/null and b/skins/sympfy/img/system/vote_down.png differ diff --git a/skins/sympfy/img/system/vote_up.png b/skins/sympfy/img/system/vote_up.png new file mode 100644 index 0000000..bb37795 Binary files /dev/null and b/skins/sympfy/img/system/vote_up.png differ diff --git a/skins/sympfy/index.tpl b/skins/sympfy/index.tpl new file mode 100644 index 0000000..4e880ec --- /dev/null +++ b/skins/sympfy/index.tpl @@ -0,0 +1,205 @@ + + + + +
    + +
    + + + +
    +
    +
    + +
    +
    +
    {SLIDER_ROW_CATPATH}
    +
    {SLIDER_ROW_DATE}
    +
    + +
    +

    {SLIDER_ROW_DESC|strip_tags}

    +
    + +
    + +
    +
    +
    + + + +
    +
    + +
    + +
    + + + +
    + +
    + +
    +

    News

    +
    + +
    +
    + {PHP.sed_menu.4.childrens} +
    +
    + +
    + +
    + + {INDEX_NEWS} + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/js/admintooltip.js b/skins/sympfy/js/admintooltip.js new file mode 100644 index 0000000..ab6e5f3 --- /dev/null +++ b/skins/sympfy/js/admintooltip.js @@ -0,0 +1,84 @@ +(function ($) { + tooltip = $("
    ").appendTo($('body')); + $(document).on('mouseleave', '.adm-tooltip', function(){tooltipcanclose=true;setTimeout("close_tooltip();", 300);}); + $(document).on('mouseover', '.adm-tooltip', function(){tooltipcanclose=false;}); + $('[data-page], [data-category], [data-config]').on('mouseover', show_tooltip); +})(jQuery); + +function show_tooltip() +{ + tooltipcanclose=false; + tooltip.show(); + $(this).on('mouseleave', function(){tooltipcanclose=true;setTimeout("close_tooltip();", 500);}); + + flip = !($(this).offset().left+tooltip.width()+25 < $('body').width()); + + tooltip.css('top', $(this).outerHeight()/2 + 5 + $(this).offset().top + 'px'); + tooltip.css('left', ($(this).offset().left + $(this).outerWidth()*0.5 - (flip ? tooltip.width()-40 : 0) + 0) + 'px'); + + from = encodeURIComponent(window.location); + tooltipcontent = ''; + + if(id = $(this).attr('data-page')) + { + tooltipcontent = ""+L.pageedit+""; + tooltipcontent += ""+L.pageadd+""; + } + + if(id = $(this).attr('data-category')) + { + tooltipcontent = ""+L.pageeditcategory+""; + } + + if(id = $(this).attr('data-config')) + { + tooltipcontent = ""+L.pageeditoption+""; + } + + $('.adm-tooltip').html(tooltipcontent); +} + +function close_tooltip() +{ + if(tooltipcanclose) + { + tooltipcanclose=false; + tooltip.hide(); + } +} + +function ShowTooltip(i, content) { + + tooltip = document.getElementById('adm-tooltip'); + + document.getElementById('adm-tooltip').innerHTML = content; + tooltip.style.display = 'block'; + + var xleft=0; + var xtop=0; + o = i; + + do { + xleft += o.offsetLeft; + xtop += o.offsetTop; + + } while (o=o.offsetParent); + + xwidth = i.offsetWidth ? i.offsetWidth : i.style.pixelWidth; + xheight = i.offsetHeight ? i.offsetHeight : i.style.pixelHeight; + + bwidth = tooltip.offsetWidth ? tooltip.offsetWidth : tooltip.style.pixelWidth; + + w = window; + + xbody = document.compatMode=='CSS1Compat' ? w.document.documentElement : w.document.body; + dwidth = xbody.clientWidth ? xbody.clientWidth : w.innerWidth; + bwidth = tooltip.offsetWidth ? tooltip.offsetWidth : tooltip.style.pixelWidth; + + flip = !( 25 + xleft + bwidth < dwidth); + + tooltip.style.top = xheight - 3 + xtop + 'px'; + tooltip.style.left = (xleft - (flip ? bwidth : 0) + 25) + 'px'; + + return false; +} \ No newline at end of file diff --git a/skins/sympfy/js/app.js b/skins/sympfy/js/app.js new file mode 100644 index 0000000..65acb9b --- /dev/null +++ b/skins/sympfy/js/app.js @@ -0,0 +1,247 @@ +var seditio = []; + +(function () +{ + var t; + + seditio.win = $(window); + seditio.winHeight = $(window).height(); + seditio.winWidth = $(window).width(); + seditio.header = $('#header'); + seditio.footer = $('#footer'); + seditio.navTrigger = $('.nav-trigger'); + seditio.mobileNav = $('.mobile-menu'); + seditio.jsMenu = $('.js-menu'); + seditio.desctopNav = $('.menu-wrapper .menu>ul'); + seditio.SliderTriggleDown = $('.slick-down'); + + // Top slider Triggle Down Click + seditio.TopsliderTrggleDown = function(id) { + seditio.SliderTriggleDown.on({'touchstart click': function() { + if ((seditio.winWidth + seditio.scrollbar) <= 992) { + var position = $(id).offset().top-62; + } else { + var position = $(id).offset().top-78; + } + $('html, body').animate({scrollTop:position}, 400); + }}); + }; + + //ScrollBar Get Width + seditio.getScrollbar = function() { + if ($(document).height() > $(window).height()) { + $('body').append('
    '); + fakeScrollBar = $('#fakescrollbar'); + fakeScrollBar.append('
     
    '); + var w1 = fakeScrollBar.find('div').innerWidth(); + fakeScrollBar.css('overflow-y', 'scroll'); + var w2 = $('#fakescrollbar').find('div').html('html is required to init new width.').innerWidth(); + fakeScrollBar.remove(); + return (w1-w2); + } + return 0; + }; + + seditio.ScrollTo = function(anch) { + var position = $("#" + anch).offset().top - 100; + $('html, body').animate({ + scrollTop: position + }, 1000, 'linear'); + }; + + seditio.scrollbar = seditio.getScrollbar(); + + t = function () + { + + if ((seditio.winWidth + seditio.scrollbar) <= 992) { + seditio.desctopNav.clone().appendTo(seditio.jsMenu); // clone and append menu + var slinky = $(seditio.jsMenu).slinky({ + title: true + }); + } + + if (seditio.SliderTriggleDown.length) { + seditio.TopsliderTrggleDown('#home'); + } + + //on resize eventing + $(window).on('resize', function() { + + // it's desctop device + if ((seditio.winWidth + seditio.scrollbar) > 992) { + $(document.documentElement).removeClass('disable-scrolling'); + $(seditio.mobileNav).removeClass('nav-is-visible'); + $(seditio.navTrigger).removeClass('nav-is-visible'); + } + + // it's mobile device + if ((seditio.winWidth + seditio.scrollbar) <= 992) { + if ($(".mobile-menu *").is("ul") == false) { + seditio.desctopNav.clone().appendTo(seditio.jsMenu); // clone and append menu + var slinky = $(seditio.jsMenu).slinky({ + title: true + }); + } + if ($(seditio.mobileNav).hasClass('nav-is-visible')) { + $(document.documentElement).addClass('disable-scrolling'); + } + } + }); + + //mobile only, block scrolling + seditio.navTrigger.on('click', function(event) { + event.preventDefault(); + $([seditio.navTrigger, seditio.mobileNav]).toggleClass('nav-is-visible'); + if (seditio.mobileNav.hasClass('nav-is-visible')) { + $(document.documentElement).addClass('disable-scrolling'); + } else { + $(document.documentElement).removeClass('disable-scrolling'); + } + }); + + /* tabs for recenitems */ + $('.tabs-nav a').on('click', function (event) { + event.preventDefault(); + $('.tabs-nav li').removeClass('active'); + $(this).parent().addClass('active'); + $('.tab').hide(); + $($(this).attr('href')).show(); + }); + + $('.tabs-nav a:first').trigger('click'); // Default + + /* top slider height 100% */ + $('#slider-section').css('height', seditio.winHeight); + $(window).on('resize', function() { + seditio.winHeight = $(window).height(); + seditio.winWidth = $(window).width(); + $('#slider-section').css('height', seditio.winHeight); + }); + + /* homepage top slider */ + var slider = $('#slider').slick({ + dots: true, + infinite: true, + autoplay: true, + autoplaySpeed: 5000, + speed: 500, + /*fade: true, */ + arrows: true, + appendDots: '.home-slider-dots', + appendArrows: '.home-slider-arrows', + cssEase: 'linear' + }); + + /* page slider */ + var page_slider = $('.page-slider').slick({ + dots: true, + infinite: true, + autoplay: true, + autoplaySpeed: 5000, + speed: 500, + /*fade: true, */ + arrows: true, + appendDots: '.page-slider-dots', + appendArrows: '.page-slider-arrows', + cssEase: 'linear' + }); + + /* similar carousel slider */ + var similar_slider = $('.similar-slider').slick({ + dots: true, + infinite: true, + speed: 300, + slidesToShow: 4, + slidesToScroll: 1, + arrows: true, + appendArrows: '.similar-arrows', + appendDots: '.similar-dots', + responsive: [ + { + breakpoint: 1200, + settings: { + slidesToShow: 3, + slidesToScroll: 1, + infinite: true, + dots: true, + arrows: true + } + }, + { + breakpoint: 992, + settings: { + slidesToShow: 2, + slidesToScroll: 1, + infinite: true, + dots: false, + arrows: true + } + }, + { + breakpoint: 768, + settings: { + slidesToShow: 1, + slidesToScroll: 1, + dots: false, + arrows: true + } + } + + // You can unslick at a given breakpoint now by adding: + // settings: "unslick" + // instead of a settings object + ] + }); + + /* Menu sliding */ + $('.menu-wrapper .menu ul li').hover( + function() { + $('ul', this).eq(0).stop().slideDown(200); + }, + function() { + $('ul', this).eq(0).stop().slideUp(200); + } + ); + + /* click on spoiler header */ + $('.spoiler-jump').click(function(e){ + e.preventDefault(); + $(this).closest('.spoiler-container').toggleClass('active'); + if ($(this).closest('.spoiler-container').hasClass('active')) + { $(this).closest('.spoiler-container').find('.spoiler-body').slideDown(300); } + else + { $(this).closest('.spoiler-container').find('.spoiler-body').slideUp(300); } + }); + + $('input, textarea').placeholder(); + $(".phone_field").mask("+7 (999) 999-99-99",{completed:function(){ok=1}}); + + + /* sticky header */ + $(window).scroll(function() { + if ($(this).scrollTop() > 100) { + $('#header').addClass('header-sticky'); + } else { + $('#header').removeClass('header-sticky'); + } + }); + + /* user panel menu */ + $('.openuserpanel').on('click', function () { + $(this).closest('.userpanel').toggleClass('open'); + }); + + $(".close, .alert-close").click( + function () { + $(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent + $(this).slideUp(400); + }); + return false; + } + ); + + }, + $(document).ready(t) +} +.call(this)); \ No newline at end of file diff --git a/skins/sympfy/js/jquery.min.js b/skins/sympfy/js/jquery.min.js new file mode 100644 index 0000000..bd87406 --- /dev/null +++ b/skins/sympfy/js/jquery.min.js @@ -0,0 +1,16 @@ +/*! + * jQuery v1.11.3 + */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
    a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:k.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("',preload:!0,css:{},attr:{scrolling:"auto"}},video:{tpl:'',format:"",autoStart:!0},defaultType:"image",animationEffect:"zoom",animationDuration:366,zoomOpacity:"auto",transitionEffect:"fade",transitionDuration:366,slideClass:"",baseClass:"",baseTpl:'',spinnerTpl:'
    ',errorTpl:'

    {{ERROR}}

    ',btnTpl:{download:'',zoom:'',close:'',arrowLeft:'',arrowRight:'',smallBtn:''},parentEl:"body",hideScrollbar:!0,autoFocus:!0,backFocus:!0,trapFocus:!0,fullScreen:{autoStart:!1},touch:{vertical:!0,momentum:!0},hash:null,media:{},slideShow:{autoStart:!1,speed:3e3},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"},wheel:"auto",onInit:n.noop,beforeLoad:n.noop,afterLoad:n.noop,beforeShow:n.noop,afterShow:n.noop,beforeClose:n.noop,afterClose:n.noop,onActivate:n.noop,onDeactivate:n.noop,clickContent:function(t,e){return"image"===t.type&&"zoom"},clickSlide:"close",clickOutside:"close",dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1,mobile:{preventCaptionOverlap:!1,idleTime:!1,clickContent:function(t,e){return"image"===t.type&&"toggleControls"},clickSlide:function(t,e){return"image"===t.type?"toggleControls":"close"},dblclickContent:function(t,e){return"image"===t.type&&"zoom"},dblclickSlide:function(t,e){return"image"===t.type&&"zoom"}},lang:"en",i18n:{en:{CLOSE:"Close",NEXT:"Next",PREV:"Previous",ERROR:"The requested content cannot be loaded.
    Please try again later.",PLAY_START:"Start slideshow",PLAY_STOP:"Pause slideshow",FULL_SCREEN:"Full screen",THUMBS:"Thumbnails",DOWNLOAD:"Download",SHARE:"Share",ZOOM:"Zoom"},de:{CLOSE:"Schließen",NEXT:"Weiter",PREV:"Zurück",ERROR:"Die angeforderten Daten konnten nicht geladen werden.
    Bitte versuchen Sie es später nochmal.",PLAY_START:"Diaschau starten",PLAY_STOP:"Diaschau beenden",FULL_SCREEN:"Vollbild",THUMBS:"Vorschaubilder",DOWNLOAD:"Herunterladen",SHARE:"Teilen",ZOOM:"Vergrößern"}}},s=n(t),r=n(e),c=0,l=function(t){return t&&t.hasOwnProperty&&t instanceof n},d=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),u=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),f=function(){var t,n=e.createElement("fakeelement"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(t in o)if(void 0!==n.style[t])return o[t];return"transitionend"}(),p=function(t){return t&&t.length&&t[0].offsetHeight},h=function(t,e){var o=n.extend(!0,{},t,e);return n.each(e,function(t,e){n.isArray(e)&&(o[t]=e)}),o},g=function(t){var o,i;return!(!t||t.ownerDocument!==e)&&(n(".fancybox-container").css("pointer-events","none"),o={x:t.getBoundingClientRect().left+t.offsetWidth/2,y:t.getBoundingClientRect().top+t.offsetHeight/2},i=e.elementFromPoint(o.x,o.y)===t,n(".fancybox-container").css("pointer-events",""),i)},b=function(t,e,o){var i=this;i.opts=h({index:o},n.fancybox.defaults),n.isPlainObject(e)&&(i.opts=h(i.opts,e)),n.fancybox.isMobile&&(i.opts=h(i.opts,i.opts.mobile)),i.id=i.opts.id||++c,i.currIndex=parseInt(i.opts.index,10)||0,i.prevIndex=null,i.prevPos=null,i.currPos=0,i.firstRun=!0,i.group=[],i.slides={},i.addContent(t),i.group.length&&i.init()};n.extend(b.prototype,{init:function(){var o,i,a=this,s=a.group[a.currIndex],r=s.opts;r.closeExisting&&n.fancybox.close(!0),n("body").addClass("fancybox-active"),!n.fancybox.getInstance()&&!1!==r.hideScrollbar&&!n.fancybox.isMobile&&e.body.scrollHeight>t.innerHeight&&(n("head").append('"),n("body").addClass("compensate-for-scrollbar")),i="",n.each(r.buttons,function(t,e){i+=r.btnTpl[e]||""}),o=n(a.translate(a,r.baseTpl.replace("{{buttons}}",i).replace("{{arrows}}",r.btnTpl.arrowLeft+r.btnTpl.arrowRight))).attr("id","fancybox-container-"+a.id).addClass(r.baseClass).data("FancyBox",a).appendTo(r.parentEl),a.$refs={container:o},["bg","inner","infobar","toolbar","stage","caption","navigation"].forEach(function(t){a.$refs[t]=o.find(".fancybox-"+t)}),a.trigger("onInit"),a.activate(),a.jumpTo(a.currIndex)},translate:function(t,e){var n=t.opts.i18n[t.opts.lang]||t.opts.i18n.en;return e.replace(/\{\{(\w+)\}\}/g,function(t,e){return void 0===n[e]?t:n[e]})},addContent:function(t){var e,o=this,i=n.makeArray(t);n.each(i,function(t,e){var i,a,s,r,c,l={},d={};n.isPlainObject(e)?(l=e,d=e.opts||e):"object"===n.type(e)&&n(e).length?(i=n(e),d=i.data()||{},d=n.extend(!0,{},d,d.options),d.$orig=i,l.src=o.opts.src||d.src||i.attr("href"),l.type||l.src||(l.type="inline",l.src=e)):l={type:"html",src:e+""},l.opts=n.extend(!0,{},o.opts,d),n.isArray(d.buttons)&&(l.opts.buttons=d.buttons),n.fancybox.isMobile&&l.opts.mobile&&(l.opts=h(l.opts,l.opts.mobile)),a=l.type||l.opts.type,r=l.src||"",!a&&r&&((s=r.match(/\.(mp4|mov|ogv|webm)((\?|#).*)?$/i))?(a="video",l.opts.video.format||(l.opts.video.format="video/"+("ogv"===s[1]?"ogg":s[1]))):r.match(/(^data:image\/[a-z0-9+\/=]*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\?|#).*)?$)/i)?a="image":r.match(/\.(pdf)((\?|#).*)?$/i)?(a="iframe",l=n.extend(!0,l,{contentType:"pdf",opts:{iframe:{preload:!1}}})):"#"===r.charAt(0)&&(a="inline")),a?l.type=a:o.trigger("objectNeedsType",l),l.contentType||(l.contentType=n.inArray(l.type,["html","inline","ajax"])>-1?"html":l.type),l.index=o.group.length,"auto"==l.opts.smallBtn&&(l.opts.smallBtn=n.inArray(l.type,["html","inline","ajax"])>-1),"auto"===l.opts.toolbar&&(l.opts.toolbar=!l.opts.smallBtn),l.$thumb=l.opts.$thumb||null,l.opts.$trigger&&l.index===o.opts.index&&(l.$thumb=l.opts.$trigger.find("img:first"),l.$thumb.length&&(l.opts.$orig=l.opts.$trigger)),l.$thumb&&l.$thumb.length||!l.opts.$orig||(l.$thumb=l.opts.$orig.find("img:first")),l.$thumb&&!l.$thumb.length&&(l.$thumb=null),l.thumb=l.opts.thumb||(l.$thumb?l.$thumb[0].src:null),"function"===n.type(l.opts.caption)&&(l.opts.caption=l.opts.caption.apply(e,[o,l])),"function"===n.type(o.opts.caption)&&(l.opts.caption=o.opts.caption.apply(e,[o,l])),l.opts.caption instanceof n||(l.opts.caption=void 0===l.opts.caption?"":l.opts.caption+""),"ajax"===l.type&&(c=r.split(/\s+/,2),c.length>1&&(l.src=c.shift(),l.opts.filter=c.shift())),l.opts.modal&&(l.opts=n.extend(!0,l.opts,{trapFocus:!0,infobar:0,toolbar:0,smallBtn:0,keyboard:0,slideShow:0,fullScreen:0,thumbs:0,touch:0,clickContent:!1,clickSlide:!1,clickOutside:!1,dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1})),o.group.push(l)}),Object.keys(o.slides).length&&(o.updateControls(),(e=o.Thumbs)&&e.isActive&&(e.create(),e.focus()))},addEvents:function(){var e=this;e.removeEvents(),e.$refs.container.on("click.fb-close","[data-fancybox-close]",function(t){t.stopPropagation(),t.preventDefault(),e.close(t)}).on("touchstart.fb-prev click.fb-prev","[data-fancybox-prev]",function(t){t.stopPropagation(),t.preventDefault(),e.previous()}).on("touchstart.fb-next click.fb-next","[data-fancybox-next]",function(t){t.stopPropagation(),t.preventDefault(),e.next()}).on("click.fb","[data-fancybox-zoom]",function(t){e[e.isScaledDown()?"scaleToActual":"scaleToFit"]()}),s.on("orientationchange.fb resize.fb",function(t){t&&t.originalEvent&&"resize"===t.originalEvent.type?(e.requestId&&u(e.requestId),e.requestId=d(function(){e.update(t)})):(e.current&&"iframe"===e.current.type&&e.$refs.stage.hide(),setTimeout(function(){e.$refs.stage.show(),e.update(t)},n.fancybox.isMobile?600:250))}),r.on("keydown.fb",function(t){var o=n.fancybox?n.fancybox.getInstance():null,i=o.current,a=t.keyCode||t.which;if(9==a)return void(i.opts.trapFocus&&e.focus(t));if(!(!i.opts.keyboard||t.ctrlKey||t.altKey||t.shiftKey||n(t.target).is("input,textarea,video,audio")))return 8===a||27===a?(t.preventDefault(),void e.close(t)):37===a||38===a?(t.preventDefault(),void e.previous()):39===a||40===a?(t.preventDefault(),void e.next()):void e.trigger("afterKeydown",t,a)}),e.group[e.currIndex].opts.idleTime&&(e.idleSecondsCounter=0,r.on("mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle",function(t){e.idleSecondsCounter=0,e.isIdle&&e.showControls(),e.isIdle=!1}),e.idleInterval=t.setInterval(function(){++e.idleSecondsCounter>=e.group[e.currIndex].opts.idleTime&&!e.isDragging&&(e.isIdle=!0,e.idleSecondsCounter=0,e.hideControls())},1e3))},removeEvents:function(){var e=this;s.off("orientationchange.fb resize.fb"),r.off("keydown.fb .fb-idle"),this.$refs.container.off(".fb-close .fb-prev .fb-next"),e.idleInterval&&(t.clearInterval(e.idleInterval),e.idleInterval=null)},previous:function(t){return this.jumpTo(this.currPos-1,t)},next:function(t){return this.jumpTo(this.currPos+1,t)},jumpTo:function(t,e){var o,i,a,s,r,c,l,d,u,f=this,h=f.group.length;if(!(f.isDragging||f.isClosing||f.isAnimating&&f.firstRun)){if(t=parseInt(t,10),!(a=f.current?f.current.opts.loop:f.opts.loop)&&(t<0||t>=h))return!1;if(o=f.firstRun=!Object.keys(f.slides).length,r=f.current,f.prevIndex=f.currIndex,f.prevPos=f.currPos,s=f.createSlide(t),h>1&&((a||s.index0)&&f.createSlide(t-1)),f.current=s,f.currIndex=s.index,f.currPos=s.pos,f.trigger("beforeShow",o),f.updateControls(),s.forcedDuration=void 0,n.isNumeric(e)?s.forcedDuration=e:e=s.opts[o?"animationDuration":"transitionDuration"],e=parseInt(e,10),i=f.isMoved(s),s.$slide.addClass("fancybox-slide--current"),o)return s.opts.animationEffect&&e&&f.$refs.container.css("transition-duration",e+"ms"),f.$refs.container.addClass("fancybox-is-open").trigger("focus"),f.loadSlide(s),void f.preload("image");c=n.fancybox.getTranslate(r.$slide),l=n.fancybox.getTranslate(f.$refs.stage),n.each(f.slides,function(t,e){n.fancybox.stop(e.$slide,!0)}),r.pos!==s.pos&&(r.isComplete=!1),r.$slide.removeClass("fancybox-slide--complete fancybox-slide--current"),i?(u=c.left-(r.pos*c.width+r.pos*r.opts.gutter),n.each(f.slides,function(t,o){o.$slide.removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")});var i=o.pos*c.width+o.pos*o.opts.gutter;n.fancybox.setTranslate(o.$slide,{top:0,left:i-l.left+u}),o.pos!==s.pos&&o.$slide.addClass("fancybox-slide--"+(o.pos>s.pos?"next":"previous")),p(o.$slide),n.fancybox.animate(o.$slide,{top:0,left:(o.pos-s.pos)*c.width+(o.pos-s.pos)*o.opts.gutter},e,function(){o.$slide.css({transform:"",opacity:""}).removeClass("fancybox-slide--next fancybox-slide--previous"),o.pos===f.currPos&&f.complete()})})):e&&s.opts.transitionEffect&&(d="fancybox-animated fancybox-fx-"+s.opts.transitionEffect,r.$slide.addClass("fancybox-slide--"+(r.pos>s.pos?"next":"previous")),n.fancybox.animate(r.$slide,d,e,function(){r.$slide.removeClass(d).removeClass("fancybox-slide--next fancybox-slide--previous")},!1)),s.isLoaded?f.revealContent(s):f.loadSlide(s),f.preload("image")}},createSlide:function(t){var e,o,i=this;return o=t%i.group.length,o=o<0?i.group.length+o:o,!i.slides[t]&&i.group[o]&&(e=n('
    ').appendTo(i.$refs.stage),i.slides[t]=n.extend(!0,{},i.group[o],{pos:t,$slide:e,isLoaded:!1}),i.updateSlide(i.slides[t])),i.slides[t]},scaleToActual:function(t,e,o){var i,a,s,r,c,l=this,d=l.current,u=d.$content,f=n.fancybox.getTranslate(d.$slide).width,p=n.fancybox.getTranslate(d.$slide).height,h=d.width,g=d.height;l.isAnimating||l.isMoved()||!u||"image"!=d.type||!d.isLoaded||d.hasError||(l.isAnimating=!0,n.fancybox.stop(u),t=void 0===t?.5*f:t,e=void 0===e?.5*p:e,i=n.fancybox.getTranslate(u),i.top-=n.fancybox.getTranslate(d.$slide).top,i.left-=n.fancybox.getTranslate(d.$slide).left,r=h/i.width,c=g/i.height,a=.5*f-.5*h,s=.5*p-.5*g,h>f&&(a=i.left*r-(t*r-t),a>0&&(a=0),ap&&(s=i.top*c-(e*c-e),s>0&&(s=0),se-.5&&(l=e),d>o-.5&&(d=o),"image"===t.type?(u.top=Math.floor(.5*(o-d))+parseFloat(c.css("paddingTop")),u.left=Math.floor(.5*(e-l))+parseFloat(c.css("paddingLeft"))):"video"===t.contentType&&(a=t.opts.width&&t.opts.height?l/d:t.opts.ratio||16/9,d>l/a?d=l/a:l>d*a&&(l=d*a)),u.width=l,u.height=d,u)},update:function(t){var e=this;n.each(e.slides,function(n,o){e.updateSlide(o,t)})},updateSlide:function(t,e){var o=this,i=t&&t.$content,a=t.width||t.opts.width,s=t.height||t.opts.height,r=t.$slide;o.adjustCaption(t),i&&(a||s||"video"===t.contentType)&&!t.hasError&&(n.fancybox.stop(i),n.fancybox.setTranslate(i,o.getFitPos(t)),t.pos===o.currPos&&(o.isAnimating=!1,o.updateCursor())),o.adjustLayout(t),r.length&&(r.trigger("refresh"),t.pos===o.currPos&&o.$refs.toolbar.add(o.$refs.navigation.find(".fancybox-button--arrow_right")).toggleClass("compensate-for-scrollbar",r.get(0).scrollHeight>r.get(0).clientHeight)),o.trigger("onUpdate",t,e)},centerSlide:function(t){var e=this,o=e.current,i=o.$slide;!e.isClosing&&o&&(i.siblings().css({transform:"",opacity:""}),i.parent().children().removeClass("fancybox-slide--previous fancybox-slide--next"),n.fancybox.animate(i,{top:0,left:0,opacity:1},void 0===t?0:t,function(){i.css({transform:"",opacity:""}),o.isComplete||e.complete()},!1))},isMoved:function(t){var e,o,i=t||this.current;return!!i&&(o=n.fancybox.getTranslate(this.$refs.stage),e=n.fancybox.getTranslate(i.$slide),!i.$slide.hasClass("fancybox-animated")&&(Math.abs(e.top-o.top)>.5||Math.abs(e.left-o.left)>.5))},updateCursor:function(t,e){var o,i,a=this,s=a.current,r=a.$refs.container;s&&!a.isClosing&&a.Guestures&&(r.removeClass("fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan"),o=a.canPan(t,e),i=!!o||a.isZoomable(),r.toggleClass("fancybox-is-zoomable",i),n("[data-fancybox-zoom]").prop("disabled",!i),o?r.addClass("fancybox-can-pan"):i&&("zoom"===s.opts.clickContent||n.isFunction(s.opts.clickContent)&&"zoom"==s.opts.clickContent(s))?r.addClass("fancybox-can-zoomIn"):s.opts.touch&&(s.opts.touch.vertical||a.group.length>1)&&"video"!==s.contentType&&r.addClass("fancybox-can-swipe"))},isZoomable:function(){var t,e=this,n=e.current;if(n&&!e.isClosing&&"image"===n.type&&!n.hasError){if(!n.isLoaded)return!0;if((t=e.getFitPos(n))&&(n.width>t.width||n.height>t.height))return!0}return!1},isScaledDown:function(t,e){var o=this,i=!1,a=o.current,s=a.$content;return void 0!==t&&void 0!==e?i=t1.5||Math.abs(a.height-s.height)>1.5)),s},loadSlide:function(t){var e,o,i,a=this;if(!t.isLoading&&!t.isLoaded){if(t.isLoading=!0,!1===a.trigger("beforeLoad",t))return t.isLoading=!1,!1;switch(e=t.type,o=t.$slide,o.off("refresh").trigger("onReset").addClass(t.opts.slideClass),e){case"image":a.setImage(t);break;case"iframe":a.setIframe(t);break;case"html":a.setContent(t,t.src||t.content);break;case"video":a.setContent(t,t.opts.video.tpl.replace(/\{\{src\}\}/gi,t.src).replace("{{format}}",t.opts.videoFormat||t.opts.video.format||"").replace("{{poster}}",t.thumb||""));break;case"inline":n(t.src).length?a.setContent(t,n(t.src)):a.setError(t);break;case"ajax":a.showLoading(t),i=n.ajax(n.extend({},t.opts.ajax.settings,{url:t.src,success:function(e,n){"success"===n&&a.setContent(t,e)},error:function(e,n){e&&"abort"!==n&&a.setError(t)}})),o.one("onReset",function(){i.abort()});break;default:a.setError(t)}return!0}},setImage:function(t){var o,i=this;setTimeout(function(){var e=t.$image;i.isClosing||!t.isLoading||e&&e.length&&e[0].complete||t.hasError||i.showLoading(t)},50),i.checkSrcset(t),t.$content=n('
    ').addClass("fancybox-is-hidden").appendTo(t.$slide.addClass("fancybox-slide--image")),!1!==t.opts.preload&&t.opts.width&&t.opts.height&&t.thumb&&(t.width=t.opts.width,t.height=t.opts.height,o=e.createElement("img"),o.onerror=function(){n(this).remove(),t.$ghost=null},o.onload=function(){i.afterLoad(t)},t.$ghost=n(o).addClass("fancybox-image").appendTo(t.$content).attr("src",t.thumb)),i.setBigImage(t)},checkSrcset:function(e){var n,o,i,a,s=e.opts.srcset||e.opts.image.srcset;if(s){i=t.devicePixelRatio||1,a=t.innerWidth*i,o=s.split(",").map(function(t){var e={};return t.trim().split(/\s+/).forEach(function(t,n){var o=parseInt(t.substring(0,t.length-1),10);if(0===n)return e.url=t;o&&(e.value=o,e.postfix=t[t.length-1])}),e}),o.sort(function(t,e){return t.value-e.value});for(var r=0;r=a||"x"===c.postfix&&c.value>=i){n=c;break}}!n&&o.length&&(n=o[o.length-1]),n&&(e.src=n.url,e.width&&e.height&&"w"==n.postfix&&(e.height=e.width/e.height*n.value,e.width=n.value),e.opts.srcset=s)}},setBigImage:function(t){var o=this,i=e.createElement("img"),a=n(i);t.$image=a.one("error",function(){o.setError(t)}).one("load",function(){var e;t.$ghost||(o.resolveImageSlideSize(t,this.naturalWidth,this.naturalHeight),o.afterLoad(t)),o.isClosing||(t.opts.srcset&&(e=t.opts.sizes,e&&"auto"!==e||(e=(t.width/t.height>1&&s.width()/s.height()>1?"100":Math.round(t.width/t.height*100))+"vw"),a.attr("sizes",e).attr("srcset",t.opts.srcset)),t.$ghost&&setTimeout(function(){t.$ghost&&!o.isClosing&&t.$ghost.hide()},Math.min(300,Math.max(1e3,t.height/1600))),o.hideLoading(t))}).addClass("fancybox-image").attr("src",t.src).appendTo(t.$content),(i.complete||"complete"==i.readyState)&&a.naturalWidth&&a.naturalHeight?a.trigger("load"):i.error&&a.trigger("error")},resolveImageSlideSize:function(t,e,n){var o=parseInt(t.opts.width,10),i=parseInt(t.opts.height,10);t.width=e,t.height=n,o>0&&(t.width=o,t.height=Math.floor(o*n/e)),i>0&&(t.width=Math.floor(i*e/n),t.height=i)},setIframe:function(t){var e,o=this,i=t.opts.iframe,a=t.$slide;t.$content=n('
    ').css(i.css).appendTo(a),a.addClass("fancybox-slide--"+t.contentType),t.$iframe=e=n(i.tpl.replace(/\{rnd\}/g,(new Date).getTime())).attr(i.attr).appendTo(t.$content),i.preload?(o.showLoading(t),e.on("load.fb error.fb",function(e){this.isReady=1,t.$slide.trigger("refresh"),o.afterLoad(t)}),a.on("refresh.fb",function(){var n,o,s=t.$content,r=i.css.width,c=i.css.height;if(1===e[0].isReady){try{n=e.contents(),o=n.find("body")}catch(t){}o&&o.length&&o.children().length&&(a.css("overflow","visible"),s.css({width:"100%","max-width":"100%",height:"9999px"}),void 0===r&&(r=Math.ceil(Math.max(o[0].clientWidth,o.outerWidth(!0)))),s.css("width",r||"").css("max-width",""),void 0===c&&(c=Math.ceil(Math.max(o[0].clientHeight,o.outerHeight(!0)))),s.css("height",c||""),a.css("overflow","auto")),s.removeClass("fancybox-is-hidden")}})):o.afterLoad(t),e.attr("src",t.src),a.one("onReset",function(){try{n(this).find("iframe").hide().unbind().attr("src","//about:blank")}catch(t){}n(this).off("refresh.fb").empty(),t.isLoaded=!1,t.isRevealed=!1})},setContent:function(t,e){var o=this;o.isClosing||(o.hideLoading(t),t.$content&&n.fancybox.stop(t.$content),t.$slide.empty(),l(e)&&e.parent().length?((e.hasClass("fancybox-content")||e.parent().hasClass("fancybox-content"))&&e.parents(".fancybox-slide").trigger("onReset"),t.$placeholder=n("
    ").hide().insertAfter(e),e.css("display","inline-block")):t.hasError||("string"===n.type(e)&&(e=n("
    ").append(n.trim(e)).contents()),t.opts.filter&&(e=n("
    ").html(e).find(t.opts.filter))),t.$slide.one("onReset",function(){n(this).find("video,audio").trigger("pause"),t.$placeholder&&(t.$placeholder.after(e.removeClass("fancybox-content").hide()).remove(),t.$placeholder=null),t.$smallBtn&&(t.$smallBtn.remove(),t.$smallBtn=null),t.hasError||(n(this).empty(),t.isLoaded=!1,t.isRevealed=!1)}),n(e).appendTo(t.$slide),n(e).is("video,audio")&&(n(e).addClass("fancybox-video"),n(e).wrap("
    "),t.contentType="video",t.opts.width=t.opts.width||n(e).attr("width"),t.opts.height=t.opts.height||n(e).attr("height")),t.$content=t.$slide.children().filter("div,form,main,video,audio,article,.fancybox-content").first(),t.$content.siblings().hide(),t.$content.length||(t.$content=t.$slide.wrapInner("
    ").children().first()),t.$content.addClass("fancybox-content"),t.$slide.addClass("fancybox-slide--"+t.contentType),o.afterLoad(t))},setError:function(t){t.hasError=!0,t.$slide.trigger("onReset").removeClass("fancybox-slide--"+t.contentType).addClass("fancybox-slide--error"),t.contentType="html",this.setContent(t,this.translate(t,t.opts.errorTpl)),t.pos===this.currPos&&(this.isAnimating=!1)},showLoading:function(t){var e=this;(t=t||e.current)&&!t.$spinner&&(t.$spinner=n(e.translate(e,e.opts.spinnerTpl)).appendTo(t.$slide).hide().fadeIn("fast"))},hideLoading:function(t){var e=this;(t=t||e.current)&&t.$spinner&&(t.$spinner.stop().remove(),delete t.$spinner)},afterLoad:function(t){var e=this;e.isClosing||(t.isLoading=!1,t.isLoaded=!0,e.trigger("afterLoad",t),e.hideLoading(t),!t.opts.smallBtn||t.$smallBtn&&t.$smallBtn.length||(t.$smallBtn=n(e.translate(t,t.opts.btnTpl.smallBtn)).appendTo(t.$content)),t.opts.protect&&t.$content&&!t.hasError&&(t.$content.on("contextmenu.fb",function(t){return 2==t.button&&t.preventDefault(),!0}),"image"===t.type&&n('
    ').appendTo(t.$content)),e.adjustCaption(t),e.adjustLayout(t),t.pos===e.currPos&&e.updateCursor(),e.revealContent(t))},adjustCaption:function(t){var e,n=this,o=t||n.current,i=o.opts.caption,a=o.opts.preventCaptionOverlap,s=n.$refs.caption,r=!1;s.toggleClass("fancybox-caption--separate",a),a&&i&&i.length&&(o.pos!==n.currPos?(e=s.clone().appendTo(s.parent()),e.children().eq(0).empty().html(i),r=e.outerHeight(!0),e.empty().remove()):n.$caption&&(r=n.$caption.outerHeight(!0)),o.$slide.css("padding-bottom",r||""))},adjustLayout:function(t){var e,n,o,i,a=this,s=t||a.current;s.isLoaded&&!0!==s.opts.disableLayoutFix&&(s.$content.css("margin-bottom",""),s.$content.outerHeight()>s.$slide.height()+.5&&(o=s.$slide[0].style["padding-bottom"],i=s.$slide.css("padding-bottom"),parseFloat(i)>0&&(e=s.$slide[0].scrollHeight,s.$slide.css("padding-bottom",0),Math.abs(e-s.$slide[0].scrollHeight)<1&&(n=i),s.$slide.css("padding-bottom",o))),s.$content.css("margin-bottom",n))},revealContent:function(t){var e,o,i,a,s=this,r=t.$slide,c=!1,l=!1,d=s.isMoved(t),u=t.isRevealed;return t.isRevealed=!0,e=t.opts[s.firstRun?"animationEffect":"transitionEffect"],i=t.opts[s.firstRun?"animationDuration":"transitionDuration"],i=parseInt(void 0===t.forcedDuration?i:t.forcedDuration,10),!d&&t.pos===s.currPos&&i||(e=!1),"zoom"===e&&(t.pos===s.currPos&&i&&"image"===t.type&&!t.hasError&&(l=s.getThumbPos(t))?c=s.getFitPos(t):e="fade"),"zoom"===e?(s.isAnimating=!0,c.scaleX=c.width/l.width,c.scaleY=c.height/l.height,a=t.opts.zoomOpacity,"auto"==a&&(a=Math.abs(t.width/t.height-l.width/l.height)>.1),a&&(l.opacity=.1,c.opacity=1),n.fancybox.setTranslate(t.$content.removeClass("fancybox-is-hidden"),l),p(t.$content),void n.fancybox.animate(t.$content,c,i,function(){s.isAnimating=!1,s.complete()})):(s.updateSlide(t),e?(n.fancybox.stop(r),o="fancybox-slide--"+(t.pos>=s.prevPos?"next":"previous")+" fancybox-animated fancybox-fx-"+e,r.addClass(o).removeClass("fancybox-slide--current"),t.$content.removeClass("fancybox-is-hidden"),p(r),"image"!==t.type&&t.$content.hide().show(0),void n.fancybox.animate(r,"fancybox-slide--current",i,function(){r.removeClass(o).css({transform:"",opacity:""}),t.pos===s.currPos&&s.complete()},!0)):(t.$content.removeClass("fancybox-is-hidden"),u||!d||"image"!==t.type||t.hasError||t.$content.hide().fadeIn("fast"),void(t.pos===s.currPos&&s.complete())))},getThumbPos:function(t){var e,o,i,a,s,r=!1,c=t.$thumb;return!(!c||!g(c[0]))&&(e=n.fancybox.getTranslate(c),o=parseFloat(c.css("border-top-width")||0),i=parseFloat(c.css("border-right-width")||0),a=parseFloat(c.css("border-bottom-width")||0),s=parseFloat(c.css("border-left-width")||0),r={top:e.top+o,left:e.left+s,width:e.width-i-s,height:e.height-o-a,scaleX:1,scaleY:1},e.width>0&&e.height>0&&r)},complete:function(){var t,e=this,o=e.current,i={};!e.isMoved()&&o.isLoaded&&(o.isComplete||(o.isComplete=!0,o.$slide.siblings().trigger("onReset"),e.preload("inline"),p(o.$slide),o.$slide.addClass("fancybox-slide--complete"),n.each(e.slides,function(t,o){o.pos>=e.currPos-1&&o.pos<=e.currPos+1?i[o.pos]=o:o&&(n.fancybox.stop(o.$slide),o.$slide.off().remove())}),e.slides=i),e.isAnimating=!1,e.updateCursor(),e.trigger("afterShow"),o.opts.video.autoStart&&o.$slide.find("video,audio").filter(":visible:first").trigger("play").one("ended",function(){this.webkitExitFullscreen&&this.webkitExitFullscreen(),e.next()}),o.opts.autoFocus&&"html"===o.contentType&&(t=o.$content.find("input[autofocus]:enabled:visible:first"),t.length?t.trigger("focus"):e.focus(null,!0)),o.$slide.scrollTop(0).scrollLeft(0))},preload:function(t){var e,n,o=this;o.group.length<2||(n=o.slides[o.currPos+1],e=o.slides[o.currPos-1],e&&e.type===t&&o.loadSlide(e),n&&n.type===t&&o.loadSlide(n))},focus:function(t,o){var i,a,s=this,r=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","video","audio","[contenteditable]",'[tabindex]:not([tabindex^="-"])'].join(",");s.isClosing||(i=!t&&s.current&&s.current.isComplete?s.current.$slide.find("*:visible"+(o?":not(.fancybox-close-small)":"")):s.$refs.container.find("*:visible"),i=i.filter(r).filter(function(){return"hidden"!==n(this).css("visibility")&&!n(this).hasClass("disabled")}),i.length?(a=i.index(e.activeElement),t&&t.shiftKey?(a<0||0==a)&&(t.preventDefault(),i.eq(i.length-1).trigger("focus")):(a<0||a==i.length-1)&&(t&&t.preventDefault(),i.eq(0).trigger("focus"))):s.$refs.container.trigger("focus"))},activate:function(){var t=this;n(".fancybox-container").each(function(){var e=n(this).data("FancyBox");e&&e.id!==t.id&&!e.isClosing&&(e.trigger("onDeactivate"),e.removeEvents(),e.isVisible=!1)}),t.isVisible=!0,(t.current||t.isIdle)&&(t.update(),t.updateControls()),t.trigger("onActivate"),t.addEvents()},close:function(t,e){var o,i,a,s,r,c,l,u=this,f=u.current,h=function(){u.cleanUp(t)};return!u.isClosing&&(u.isClosing=!0,!1===u.trigger("beforeClose",t)?(u.isClosing=!1,d(function(){u.update()}),!1):(u.removeEvents(),a=f.$content,o=f.opts.animationEffect,i=n.isNumeric(e)?e:o?f.opts.animationDuration:0,f.$slide.removeClass("fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated"),!0!==t?n.fancybox.stop(f.$slide):o=!1,f.$slide.siblings().trigger("onReset").remove(),i&&u.$refs.container.removeClass("fancybox-is-open").addClass("fancybox-is-closing").css("transition-duration",i+"ms"),u.hideLoading(f),u.hideControls(!0),u.updateCursor(),"zoom"!==o||a&&i&&"image"===f.type&&!u.isMoved()&&!f.hasError&&(l=u.getThumbPos(f))||(o="fade"),"zoom"===o?(n.fancybox.stop(a),s=n.fancybox.getTranslate(a),c={top:s.top,left:s.left,scaleX:s.width/l.width,scaleY:s.height/l.height,width:l.width,height:l.height},r=f.opts.zoomOpacity,"auto"==r&&(r=Math.abs(f.width/f.height-l.width/l.height)>.1),r&&(l.opacity=0), +n.fancybox.setTranslate(a,c),p(a),n.fancybox.animate(a,l,i,h),!0):(o&&i?n.fancybox.animate(f.$slide.addClass("fancybox-slide--previous").removeClass("fancybox-slide--current"),"fancybox-animated fancybox-fx-"+o,i,h):!0===t?setTimeout(h,i):h(),!0)))},cleanUp:function(e){var o,i,a,s=this,r=s.current.opts.$orig;s.current.$slide.trigger("onReset"),s.$refs.container.empty().remove(),s.trigger("afterClose",e),s.current.opts.backFocus&&(r&&r.length&&r.is(":visible")||(r=s.$trigger),r&&r.length&&(i=t.scrollX,a=t.scrollY,r.trigger("focus"),n("html, body").scrollTop(a).scrollLeft(i))),s.current=null,o=n.fancybox.getInstance(),o?o.activate():(n("body").removeClass("fancybox-active compensate-for-scrollbar"),n("#fancybox-style-noscroll").remove())},trigger:function(t,e){var o,i=Array.prototype.slice.call(arguments,1),a=this,s=e&&e.opts?e:a.current;if(s?i.unshift(s):s=a,i.unshift(a),n.isFunction(s.opts[t])&&(o=s.opts[t].apply(s,i)),!1===o)return o;"afterClose"!==t&&a.$refs?a.$refs.container.trigger(t+".fb",i):r.trigger(t+".fb",i)},updateControls:function(){var t=this,o=t.current,i=o.index,a=t.$refs.container,s=t.$refs.caption,r=o.opts.caption;o.$slide.trigger("refresh"),r&&r.length?(t.$caption=s,s.children().eq(0).html(r)):t.$caption=null,t.hasHiddenControls||t.isIdle||t.showControls(),a.find("[data-fancybox-count]").html(t.group.length),a.find("[data-fancybox-index]").html(i+1),a.find("[data-fancybox-prev]").prop("disabled",!o.opts.loop&&i<=0),a.find("[data-fancybox-next]").prop("disabled",!o.opts.loop&&i>=t.group.length-1),"image"===o.type?a.find("[data-fancybox-zoom]").show().end().find("[data-fancybox-download]").attr("href",o.opts.image.src||o.src).show():o.opts.toolbar&&a.find("[data-fancybox-download],[data-fancybox-zoom]").hide(),n(e.activeElement).is(":hidden,[disabled]")&&t.$refs.container.trigger("focus")},hideControls:function(t){var e=this,n=["infobar","toolbar","nav"];!t&&e.current.opts.preventCaptionOverlap||n.push("caption"),this.$refs.container.removeClass(n.map(function(t){return"fancybox-show-"+t}).join(" ")),this.hasHiddenControls=!0},showControls:function(){var t=this,e=t.current?t.current.opts:t.opts,n=t.$refs.container;t.hasHiddenControls=!1,t.idleSecondsCounter=0,n.toggleClass("fancybox-show-toolbar",!(!e.toolbar||!e.buttons)).toggleClass("fancybox-show-infobar",!!(e.infobar&&t.group.length>1)).toggleClass("fancybox-show-caption",!!t.$caption).toggleClass("fancybox-show-nav",!!(e.arrows&&t.group.length>1)).toggleClass("fancybox-is-modal",!!e.modal)},toggleControls:function(){this.hasHiddenControls?this.showControls():this.hideControls()}}),n.fancybox={version:"3.5.6",defaults:a,getInstance:function(t){var e=n('.fancybox-container:not(".fancybox-is-closing"):last').data("FancyBox"),o=Array.prototype.slice.call(arguments,1);return e instanceof b&&("string"===n.type(t)?e[t].apply(e,o):"function"===n.type(t)&&t.apply(e,o),e)},open:function(t,e,n){return new b(t,e,n)},close:function(t){var e=this.getInstance();e&&(e.close(),!0===t&&this.close(t))},destroy:function(){this.close(!0),r.add("body").off("click.fb-start","**")},isMobile:/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),use3d:function(){var n=e.createElement("div");return t.getComputedStyle&&t.getComputedStyle(n)&&t.getComputedStyle(n).getPropertyValue("transform")&&!(e.documentMode&&e.documentMode<11)}(),getTranslate:function(t){var e;return!(!t||!t.length)&&(e=t[0].getBoundingClientRect(),{top:e.top||0,left:e.left||0,width:e.width,height:e.height,opacity:parseFloat(t.css("opacity"))})},setTranslate:function(t,e){var n="",o={};if(t&&e)return void 0===e.left&&void 0===e.top||(n=(void 0===e.left?t.position().left:e.left)+"px, "+(void 0===e.top?t.position().top:e.top)+"px",n=this.use3d?"translate3d("+n+", 0px)":"translate("+n+")"),void 0!==e.scaleX&&void 0!==e.scaleY?n+=" scale("+e.scaleX+", "+e.scaleY+")":void 0!==e.scaleX&&(n+=" scaleX("+e.scaleX+")"),n.length&&(o.transform=n),void 0!==e.opacity&&(o.opacity=e.opacity),void 0!==e.width&&(o.width=e.width),void 0!==e.height&&(o.height=e.height),t.css(o)},animate:function(t,e,o,i,a){var s,r=this;n.isFunction(o)&&(i=o,o=null),r.stop(t),s=r.getTranslate(t),t.on(f,function(c){(!c||!c.originalEvent||t.is(c.originalEvent.target)&&"z-index"!=c.originalEvent.propertyName)&&(r.stop(t),n.isNumeric(o)&&t.css("transition-duration",""),n.isPlainObject(e)?void 0!==e.scaleX&&void 0!==e.scaleY&&r.setTranslate(t,{top:e.top,left:e.left,width:s.width*e.scaleX,height:s.height*e.scaleY,scaleX:1,scaleY:1}):!0!==a&&t.removeClass(e),n.isFunction(i)&&i(c))}),n.isNumeric(o)&&t.css("transition-duration",o+"ms"),n.isPlainObject(e)?(void 0!==e.scaleX&&void 0!==e.scaleY&&(delete e.width,delete e.height,t.parent().hasClass("fancybox-slide--image")&&t.parent().addClass("fancybox-is-scaling")),n.fancybox.setTranslate(t,e)):t.addClass(e),t.data("timer",setTimeout(function(){t.trigger(f)},o+33))},stop:function(t,e){t&&t.length&&(clearTimeout(t.data("timer")),e&&t.trigger(f),t.off(f).css("transition-duration",""),t.parent().removeClass("fancybox-is-scaling"))}},n.fn.fancybox=function(t){var e;return t=t||{},e=t.selector||!1,e?n("body").off("click.fb-start",e).on("click.fb-start",e,{options:t},i):this.off("click.fb-start").on("click.fb-start",{items:this,options:t},i),this},r.on("click.fb-start","[data-fancybox]",i),r.on("click.fb-start","[data-fancybox-trigger]",function(t){n('[data-fancybox="'+n(this).attr("data-fancybox-trigger")+'"]').eq(n(this).attr("data-fancybox-index")||0).trigger("click.fb-start",{$trigger:n(this)})}),function(){var t=null;r.on("mousedown mouseup focus blur",".fancybox-button",function(e){switch(e.type){case"mousedown":t=n(this);break;case"mouseup":t=null;break;case"focusin":n(".fancybox-button").removeClass("fancybox-focus"),n(this).is(t)||n(this).is("[disabled]")||n(this).addClass("fancybox-focus");break;case"focusout":n(".fancybox-button").removeClass("fancybox-focus")}})}()}}(window,document,jQuery),function(t){"use strict";var e={youtube:{matcher:/(youtube\.com|youtu\.be|youtube\-nocookie\.com)\/(watch\?(.*&)?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*))(.*)/i,params:{autoplay:1,autohide:1,fs:1,rel:0,hd:1,wmode:"transparent",enablejsapi:1,html5:1},paramPlace:8,type:"iframe",url:"https://www.youtube-nocookie.com/embed/$4",thumb:"https://img.youtube.com/vi/$4/hqdefault.jpg"},vimeo:{matcher:/^.+vimeo.com\/(.*\/)?([\d]+)(.*)?/,params:{autoplay:1,hd:1,show_title:1,show_byline:1,show_portrait:0,fullscreen:1},paramPlace:3,type:"iframe",url:"//player.vimeo.com/video/$2"},instagram:{matcher:/(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,type:"image",url:"//$1/p/$2/media/?size=l"},gmap_place:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(((maps\/(place\/(.*)\/)?\@(.*),(\d+.?\d+?)z))|(\?ll=))(.*)?/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/?ll="+(t[9]?t[9]+"&z="+Math.floor(t[10])+(t[12]?t[12].replace(/^\//,"&"):""):t[12]+"").replace(/\?/,"&")+"&output="+(t[12]&&t[12].indexOf("layer=c")>0?"svembed":"embed")}},gmap_search:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(maps\/search\/)(.*)/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/maps?q="+t[5].replace("query=","q=").replace("api=1","")+"&output=embed"}}},n=function(e,n,o){if(e)return o=o||"","object"===t.type(o)&&(o=t.param(o,!0)),t.each(n,function(t,n){e=e.replace("$"+t,n||"")}),o.length&&(e+=(e.indexOf("?")>0?"&":"?")+o),e};t(document).on("objectNeedsType.fb",function(o,i,a){var s,r,c,l,d,u,f,p=a.src||"",h=!1;s=t.extend(!0,{},e,a.opts.media),t.each(s,function(e,o){if(c=p.match(o.matcher)){if(h=o.type,f=e,u={},o.paramPlace&&c[o.paramPlace]){d=c[o.paramPlace],"?"==d[0]&&(d=d.substring(1)),d=d.split("&");for(var i=0;i1&&("youtube"===n.contentSource||"vimeo"===n.contentSource)&&o.load(n.contentSource)}})}(jQuery),function(t,e,n){"use strict";var o=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),i=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),a=function(e){var n=[];e=e.originalEvent||e||t.e,e=e.touches&&e.touches.length?e.touches:e.changedTouches&&e.changedTouches.length?e.changedTouches:[e];for(var o in e)e[o].pageX?n.push({x:e[o].pageX,y:e[o].pageY}):e[o].clientX&&n.push({x:e[o].clientX,y:e[o].clientY});return n},s=function(t,e,n){return e&&t?"x"===n?t.x-e.x:"y"===n?t.y-e.y:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2)):0},r=function(t){if(t.is('a,area,button,[role="button"],input,label,select,summary,textarea,video,audio,iframe')||n.isFunction(t.get(0).onclick)||t.data("selectable"))return!0;for(var e=0,o=t[0].attributes,i=o.length;ee.clientHeight,a=("scroll"===o||"auto"===o)&&e.scrollWidth>e.clientWidth;return i||a},l=function(t){for(var e=!1;;){if(e=c(t.get(0)))break;if(t=t.parent(),!t.length||t.hasClass("fancybox-stage")||t.is("body"))break}return e},d=function(t){var e=this;e.instance=t,e.$bg=t.$refs.bg,e.$stage=t.$refs.stage,e.$container=t.$refs.container,e.destroy(),e.$container.on("touchstart.fb.touch mousedown.fb.touch",n.proxy(e,"ontouchstart"))};d.prototype.destroy=function(){var t=this;t.$container.off(".fb.touch"),n(e).off(".fb.touch"),t.requestId&&(i(t.requestId),t.requestId=null),t.tapped&&(clearTimeout(t.tapped),t.tapped=null)},d.prototype.ontouchstart=function(o){var i=this,c=n(o.target),d=i.instance,u=d.current,f=u.$slide,p=u.$content,h="touchstart"==o.type;if(h&&i.$container.off("mousedown.fb.touch"),(!o.originalEvent||2!=o.originalEvent.button)&&f.length&&c.length&&!r(c)&&!r(c.parent())&&(c.is("img")||!(o.originalEvent.clientX>c[0].clientWidth+c.offset().left))){if(!u||d.isAnimating||u.$slide.hasClass("fancybox-animated"))return o.stopPropagation(),void o.preventDefault();i.realPoints=i.startPoints=a(o),i.startPoints.length&&(u.touch&&o.stopPropagation(),i.startEvent=o,i.canTap=!0,i.$target=c,i.$content=p,i.opts=u.opts.touch,i.isPanning=!1,i.isSwiping=!1,i.isZooming=!1,i.isScrolling=!1,i.canPan=d.canPan(),i.startTime=(new Date).getTime(),i.distanceX=i.distanceY=i.distance=0,i.canvasWidth=Math.round(f[0].clientWidth),i.canvasHeight=Math.round(f[0].clientHeight),i.contentLastPos=null,i.contentStartPos=n.fancybox.getTranslate(i.$content)||{top:0,left:0},i.sliderStartPos=n.fancybox.getTranslate(f),i.stagePos=n.fancybox.getTranslate(d.$refs.stage),i.sliderStartPos.top-=i.stagePos.top,i.sliderStartPos.left-=i.stagePos.left,i.contentStartPos.top-=i.stagePos.top,i.contentStartPos.left-=i.stagePos.left,n(e).off(".fb.touch").on(h?"touchend.fb.touch touchcancel.fb.touch":"mouseup.fb.touch mouseleave.fb.touch",n.proxy(i,"ontouchend")).on(h?"touchmove.fb.touch":"mousemove.fb.touch",n.proxy(i,"ontouchmove")),n.fancybox.isMobile&&e.addEventListener("scroll",i.onscroll,!0),((i.opts||i.canPan)&&(c.is(i.$stage)||i.$stage.find(c).length)||(c.is(".fancybox-image")&&o.preventDefault(),n.fancybox.isMobile&&c.parents(".fancybox-caption").length))&&(i.isScrollable=l(c)||l(c.parent()),n.fancybox.isMobile&&i.isScrollable||o.preventDefault(),(1===i.startPoints.length||u.hasError)&&(i.canPan?(n.fancybox.stop(i.$content),i.isPanning=!0):i.isSwiping=!0,i.$container.addClass("fancybox-is-grabbing")),2===i.startPoints.length&&"image"===u.type&&(u.isLoaded||u.$ghost)&&(i.canTap=!1,i.isSwiping=!1,i.isPanning=!1,i.isZooming=!0,n.fancybox.stop(i.$content),i.centerPointStartX=.5*(i.startPoints[0].x+i.startPoints[1].x)-n(t).scrollLeft(),i.centerPointStartY=.5*(i.startPoints[0].y+i.startPoints[1].y)-n(t).scrollTop(),i.percentageOfImageAtPinchPointX=(i.centerPointStartX-i.contentStartPos.left)/i.contentStartPos.width,i.percentageOfImageAtPinchPointY=(i.centerPointStartY-i.contentStartPos.top)/i.contentStartPos.height,i.startDistanceBetweenFingers=s(i.startPoints[0],i.startPoints[1]))))}},d.prototype.onscroll=function(t){var n=this;n.isScrolling=!0,e.removeEventListener("scroll",n.onscroll,!0)},d.prototype.ontouchmove=function(t){var e=this;return void 0!==t.originalEvent.buttons&&0===t.originalEvent.buttons?void e.ontouchend(t):e.isScrolling?void(e.canTap=!1):(e.newPoints=a(t),void((e.opts||e.canPan)&&e.newPoints.length&&e.newPoints.length&&(e.isSwiping&&!0===e.isSwiping||t.preventDefault(),e.distanceX=s(e.newPoints[0],e.startPoints[0],"x"),e.distanceY=s(e.newPoints[0],e.startPoints[0],"y"),e.distance=s(e.newPoints[0],e.startPoints[0]),e.distance>0&&(e.isSwiping?e.onSwipe(t):e.isPanning?e.onPan():e.isZooming&&e.onZoom()))))},d.prototype.onSwipe=function(e){var a,s=this,r=s.instance,c=s.isSwiping,l=s.sliderStartPos.left||0;if(!0!==c)"x"==c&&(s.distanceX>0&&(s.instance.group.length<2||0===s.instance.current.index&&!s.instance.current.opts.loop)?l+=Math.pow(s.distanceX,.8):s.distanceX<0&&(s.instance.group.length<2||s.instance.current.index===s.instance.group.length-1&&!s.instance.current.opts.loop)?l-=Math.pow(-s.distanceX,.8):l+=s.distanceX),s.sliderLastPos={top:"x"==c?0:s.sliderStartPos.top+s.distanceY,left:l},s.requestId&&(i(s.requestId),s.requestId=null),s.requestId=o(function(){s.sliderLastPos&&(n.each(s.instance.slides,function(t,e){var o=e.pos-s.instance.currPos;n.fancybox.setTranslate(e.$slide,{top:s.sliderLastPos.top,left:s.sliderLastPos.left+o*s.canvasWidth+o*e.opts.gutter})}),s.$container.addClass("fancybox-is-sliding"))});else if(Math.abs(s.distance)>10){if(s.canTap=!1,r.group.length<2&&s.opts.vertical?s.isSwiping="y":r.isDragging||!1===s.opts.vertical||"auto"===s.opts.vertical&&n(t).width()>800?s.isSwiping="x":(a=Math.abs(180*Math.atan2(s.distanceY,s.distanceX)/Math.PI),s.isSwiping=a>45&&a<135?"y":"x"),"y"===s.isSwiping&&n.fancybox.isMobile&&s.isScrollable)return void(s.isScrolling=!0);r.isDragging=s.isSwiping,s.startPoints=s.newPoints,n.each(r.slides,function(t,e){var o,i;n.fancybox.stop(e.$slide),o=n.fancybox.getTranslate(e.$slide),i=n.fancybox.getTranslate(r.$refs.stage),e.$slide.css({transform:"",opacity:"","transition-duration":""}).removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")}),e.pos===r.current.pos&&(s.sliderStartPos.top=o.top-i.top,s.sliderStartPos.left=o.left-i.left),n.fancybox.setTranslate(e.$slide,{top:o.top-i.top,left:o.left-i.left})}),r.SlideShow&&r.SlideShow.isActive&&r.SlideShow.stop()}},d.prototype.onPan=function(){var t=this;if(s(t.newPoints[0],t.realPoints[0])<(n.fancybox.isMobile?10:5))return void(t.startPoints=t.newPoints);t.canTap=!1,t.contentLastPos=t.limitMovement(),t.requestId&&i(t.requestId),t.requestId=o(function(){n.fancybox.setTranslate(t.$content,t.contentLastPos)})},d.prototype.limitMovement=function(){var t,e,n,o,i,a,s=this,r=s.canvasWidth,c=s.canvasHeight,l=s.distanceX,d=s.distanceY,u=s.contentStartPos,f=u.left,p=u.top,h=u.width,g=u.height;return i=h>r?f+l:f,a=p+d,t=Math.max(0,.5*r-.5*h),e=Math.max(0,.5*c-.5*g),n=Math.min(r-h,.5*r-.5*h),o=Math.min(c-g,.5*c-.5*g),l>0&&i>t&&(i=t-1+Math.pow(-t+f+l,.8)||0),l<0&&i0&&a>e&&(a=e-1+Math.pow(-e+p+d,.8)||0),d<0&&aa?(t=t>0?0:t,t=ts?(e=e>0?0:e,e=e1&&(o.dMs>130&&s>10||s>50);o.sliderLastPos=null,"y"==t&&!e&&Math.abs(o.distanceY)>50?(n.fancybox.animate(o.instance.current.$slide,{top:o.sliderStartPos.top+o.distanceY+150*o.velocityY,opacity:0},200),i=o.instance.close(!0,250)):r&&o.distanceX>0?i=o.instance.previous(300):r&&o.distanceX<0&&(i=o.instance.next(300)),!1!==i||"x"!=t&&"y"!=t||o.instance.centerSlide(200),o.$container.removeClass("fancybox-is-sliding")},d.prototype.endPanning=function(){var t,e,o,i=this;i.contentLastPos&&(!1===i.opts.momentum||i.dMs>350?(t=i.contentLastPos.left,e=i.contentLastPos.top):(t=i.contentLastPos.left+500*i.velocityX,e=i.contentLastPos.top+500*i.velocityY),o=i.limitPosition(t,e,i.contentStartPos.width,i.contentStartPos.height),o.width=i.contentStartPos.width,o.height=i.contentStartPos.height,n.fancybox.animate(i.$content,o,366))},d.prototype.endZooming=function(){var t,e,o,i,a=this,s=a.instance.current,r=a.newWidth,c=a.newHeight;a.contentLastPos&&(t=a.contentLastPos.left,e=a.contentLastPos.top,i={top:e,left:t,width:r,height:c,scaleX:1,scaleY:1},n.fancybox.setTranslate(a.$content,i),rs.width||c>s.height?a.instance.scaleToActual(a.centerPointStartX,a.centerPointStartY,150):(o=a.limitPosition(t,e,r,c),n.fancybox.animate(a.$content,o,150)))},d.prototype.onTap=function(e){var o,i=this,s=n(e.target),r=i.instance,c=r.current,l=e&&a(e)||i.startPoints,d=l[0]?l[0].x-n(t).scrollLeft()-i.stagePos.left:0,u=l[0]?l[0].y-n(t).scrollTop()-i.stagePos.top:0,f=function(t){var o=c.opts[t];if(n.isFunction(o)&&(o=o.apply(r,[c,e])),o)switch(o){case"close":r.close(i.startEvent);break;case"toggleControls":r.toggleControls();break;case"next":r.next();break;case"nextOrClose":r.group.length>1?r.next():r.close(i.startEvent);break;case"zoom":"image"==c.type&&(c.isLoaded||c.$ghost)&&(r.canPan()?r.scaleToFit():r.isScaledDown()?r.scaleToActual(d,u):r.group.length<2&&r.close(i.startEvent))}};if((!e.originalEvent||2!=e.originalEvent.button)&&(s.is("img")||!(d>s[0].clientWidth+s.offset().left))){if(s.is(".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container"))o="Outside";else if(s.is(".fancybox-slide"))o="Slide";else{if(!r.current.$content||!r.current.$content.find(s).addBack().filter(s).length)return;o="Content"}if(i.tapped){if(clearTimeout(i.tapped),i.tapped=null,Math.abs(d-i.tapX)>50||Math.abs(u-i.tapY)>50)return this;f("dblclick"+o)}else i.tapX=d,i.tapY=u,c.opts["dblclick"+o]&&c.opts["dblclick"+o]!==c.opts["click"+o]?i.tapped=setTimeout(function(){i.tapped=null,r.isAnimating||f("click"+o)},500):f("click"+o);return this}},n(e).on("onActivate.fb",function(t,e){e&&!e.Guestures&&(e.Guestures=new d(e))}).on("beforeClose.fb",function(t,e){e&&e.Guestures&&e.Guestures.destroy()})}(window,document,jQuery),function(t,e){"use strict";e.extend(!0,e.fancybox.defaults,{btnTpl:{slideShow:''},slideShow:{autoStart:!1,speed:3e3,progress:!0}});var n=function(t){this.instance=t,this.init()};e.extend(n.prototype,{timer:null,isActive:!1,$button:null,init:function(){var t=this,n=t.instance,o=n.group[n.currIndex].opts.slideShow;t.$button=n.$refs.toolbar.find("[data-fancybox-play]").on("click",function(){t.toggle()}),n.group.length<2||!o?t.$button.hide():o.progress&&(t.$progress=e('
    ').appendTo(n.$refs.inner))},set:function(t){var n=this,o=n.instance,i=o.current;i&&(!0===t||i.opts.loop||o.currIndex'},fullScreen:{autoStart:!1}}),e(t).on(n.fullscreenchange,function(){var t=o.isFullscreen(),n=e.fancybox.getInstance();n&&(n.current&&"image"===n.current.type&&n.isAnimating&&(n.isAnimating=!1,n.update(!0,!0,0),n.isComplete||n.complete()),n.trigger("onFullscreenChange",t),n.$refs.container.toggleClass("fancybox-is-fullscreen",t),n.$refs.toolbar.find("[data-fancybox-fullscreen]").toggleClass("fancybox-button--fsenter",!t).toggleClass("fancybox-button--fsexit",t))})}e(t).on({"onInit.fb":function(t,e){var i;if(!n)return void e.$refs.toolbar.find("[data-fancybox-fullscreen]").remove();e&&e.group[e.currIndex].opts.fullScreen?(i=e.$refs.container,i.on("click.fb-fullscreen","[data-fancybox-fullscreen]",function(t){t.stopPropagation(),t.preventDefault(),o.toggle()}),e.opts.fullScreen&&!0===e.opts.fullScreen.autoStart&&o.request(),e.FullScreen=o):e&&e.$refs.toolbar.find("[data-fancybox-fullscreen]").hide()},"afterKeydown.fb":function(t,e,n,o,i){e&&e.FullScreen&&70===i&&(o.preventDefault(),e.FullScreen.toggle())},"beforeClose.fb":function(t,e){e&&e.FullScreen&&e.$refs.container.hasClass("fancybox-is-fullscreen")&&o.exit()}})}(document,jQuery),function(t,e){"use strict";var n="fancybox-thumbs";e.fancybox.defaults=e.extend(!0,{btnTpl:{thumbs:''},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"}},e.fancybox.defaults);var o=function(t){this.init(t)};e.extend(o.prototype,{$button:null,$grid:null,$list:null,isVisible:!1,isActive:!1,init:function(t){var e=this,n=t.group,o=0;e.instance=t,e.opts=n[t.currIndex].opts.thumbs,t.Thumbs=e,e.$button=t.$refs.toolbar.find("[data-fancybox-thumbs]");for(var i=0,a=n.length;i1));i++);o>1&&e.opts?(e.$button.removeAttr("style").on("click",function(){e.toggle()}),e.isActive=!0):e.$button.hide()},create:function(){var t,o=this,i=o.instance,a=o.opts.parentEl,s=[];o.$grid||(o.$grid=e('
    ').appendTo(i.$refs.container.find(a).addBack().filter(a)),o.$grid.on("click","a",function(){i.jumpTo(e(this).attr("data-index"))})),o.$list||(o.$list=e('
    ').appendTo(o.$grid)),e.each(i.group,function(e,n){t=n.thumb,t||"image"!==n.type||(t=n.src),s.push('")}),o.$list[0].innerHTML=s.join(""),"x"===o.opts.axis&&o.$list.width(parseInt(o.$grid.css("padding-right"),10)+i.group.length*o.$list.children().eq(0).outerWidth(!0))},focus:function(t){var e,n,o=this,i=o.$list,a=o.$grid;o.instance.current&&(e=i.children().removeClass("fancybox-thumbs-active").filter('[data-index="'+o.instance.current.index+'"]').addClass("fancybox-thumbs-active"),n=e.position(),"y"===o.opts.axis&&(n.top<0||n.top>i.height()-e.outerHeight())?i.stop().animate({scrollTop:i.scrollTop()+n.top},t):"x"===o.opts.axis&&(n.lefta.scrollLeft()+(a.width()-e.outerWidth()))&&i.parent().stop().animate({scrollLeft:n.left},t))},update:function(){var t=this;t.instance.$refs.container.toggleClass("fancybox-show-thumbs",this.isVisible),t.isVisible?(t.$grid||t.create(),t.instance.trigger("onThumbsShow"),t.focus(0)):t.$grid&&t.instance.trigger("onThumbsHide"),t.instance.update()},hide:function(){this.isVisible=!1,this.update()},show:function(){this.isVisible=!0,this.update()},toggle:function(){this.isVisible=!this.isVisible,this.update()}}),e(t).on({"onInit.fb":function(t,e){var n;e&&!e.Thumbs&&(n=new o(e),n.isActive&&!0===n.opts.autoStart&&n.show())},"beforeShow.fb":function(t,e,n,o){var i=e&&e.Thumbs;i&&i.isVisible&&i.focus(o?0:250)},"afterKeydown.fb":function(t,e,n,o,i){var a=e&&e.Thumbs;a&&a.isActive&&71===i&&(o.preventDefault(),a.toggle())},"beforeClose.fb":function(t,e){var n=e&&e.Thumbs;n&&n.isVisible&&!1!==n.opts.hideOnClose&&n.$grid.hide()}})}(document,jQuery),function(t,e){"use strict";function n(t){var e={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};return String(t).replace(/[&<>"'`=\/]/g,function(t){return e[t]})}e.extend(!0,e.fancybox.defaults,{btnTpl:{share:''},share:{url:function(t,e){return!t.currentHash&&"inline"!==e.type&&"html"!==e.type&&(e.origSrc||e.src)||window.location}, +tpl:''}}),e(t).on("click","[data-fancybox-share]",function(){var t,o,i=e.fancybox.getInstance(),a=i.current||null;a&&("function"===e.type(a.opts.share.url)&&(t=a.opts.share.url.apply(a,[i,a])),o=a.opts.share.tpl.replace(/\{\{media\}\}/g,"image"===a.type?encodeURIComponent(a.src):"").replace(/\{\{url\}\}/g,encodeURIComponent(t)).replace(/\{\{url_raw\}\}/g,n(t)).replace(/\{\{descr\}\}/g,i.$caption?encodeURIComponent(i.$caption.text()):""),e.fancybox.open({src:i.translate(i,o),type:"html",opts:{touch:!1,animationEffect:!1,afterLoad:function(t,e){i.$refs.container.one("beforeClose.fb",function(){t.close(null,0)}),e.$content.find(".fancybox-share__button").click(function(){return window.open(this.href,"Share","width=550, height=450"),!1})},mobile:{autoFocus:!1}}}))})}(document,jQuery),function(t,e,n){"use strict";function o(){var e=t.location.hash.substr(1),n=e.split("-"),o=n.length>1&&/^\+?\d+$/.test(n[n.length-1])?parseInt(n.pop(-1),10)||1:1,i=n.join("-");return{hash:e,index:o<1?1:o,gallery:i}}function i(t){""!==t.gallery&&n("[data-fancybox='"+n.escapeSelector(t.gallery)+"']").eq(t.index-1).focus().trigger("click.fb-start")}function a(t){var e,n;return!!t&&(e=t.current?t.current.opts:t.opts,""!==(n=e.hash||(e.$orig?e.$orig.data("fancybox")||e.$orig.data("fancybox-trigger"):""))&&n)}n.escapeSelector||(n.escapeSelector=function(t){return(t+"").replace(/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,function(t,e){return e?"\0"===t?"пїЅ":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t})}),n(function(){!1!==n.fancybox.defaults.hash&&(n(e).on({"onInit.fb":function(t,e){var n,i;!1!==e.group[e.currIndex].opts.hash&&(n=o(),(i=a(e))&&n.gallery&&i==n.gallery&&(e.currIndex=n.index-1))},"beforeShow.fb":function(n,o,i,s){var r;i&&!1!==i.opts.hash&&(r=a(o))&&(o.currentHash=r+(o.group.length>1?"-"+(i.index+1):""),t.location.hash!=="#"+o.currentHash&&(s&&!o.origHash&&(o.origHash=t.location.hash),o.hashTimer&&clearTimeout(o.hashTimer),o.hashTimer=setTimeout(function(){"replaceState"in t.history?(t.history[s?"pushState":"replaceState"]({},e.title,t.location.pathname+t.location.search+"#"+o.currentHash),s&&(o.hasCreatedHistory=!0)):t.location.hash=o.currentHash,o.hashTimer=null},300)))},"beforeClose.fb":function(n,o,i){i&&!1!==i.opts.hash&&(clearTimeout(o.hashTimer),o.currentHash&&o.hasCreatedHistory?t.history.back():o.currentHash&&("replaceState"in t.history?t.history.replaceState({},e.title,t.location.pathname+t.location.search+(o.origHash||"")):t.location.hash=o.origHash),o.currentHash=null)}}),n(t).on("hashchange.fb",function(){var t=o(),e=null;n.each(n(".fancybox-container").get().reverse(),function(t,o){var i=n(o).data("FancyBox");if(i&&i.currentHash)return e=i,!1}),e?e.currentHash===t.gallery+"-"+t.index||1===t.index&&e.currentHash==t.gallery||(e.currentHash=null,e.close()):""!==t.gallery&&i(t)}),setTimeout(function(){n.fancybox.getInstance()||i(o())},50))})}(window,document,jQuery),function(t,e){"use strict";var n=(new Date).getTime();e(t).on({"onInit.fb":function(t,e,o){e.$refs.stage.on("mousewheel DOMMouseScroll wheel MozMousePixelScroll",function(t){var o=e.current,i=(new Date).getTime();e.group.length<2||!1===o.opts.wheel||"auto"===o.opts.wheel&&"image"!==o.type||(t.preventDefault(),t.stopPropagation(),o.$slide.hasClass("fancybox-animated")||(t=t.originalEvent||t,i-n<250||(n=i,e[(-t.deltaY||-t.deltaX||t.wheelDelta||-t.detail)<0?"next":"previous"]())))})}})}(document,jQuery); +/*! + * Slinky Menu + */ +"use strict";function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var _extends=Object.assign||function(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:{};_classCallCheck(this,e),this.settings=_extends({},this.options,i),this._init(t)}return _createClass(e,[{key:"options",get:function(){return{resize:!0,speed:300,theme:"slinky-theme-default",title:!1}}}]),_createClass(e,[{key:"_init",value:function(e){this.menu=$(e),this.base=this.menu.children().first();this.base;var t=this.menu,i=this.settings;t.addClass("slinky-menu").addClass(i.theme),this._transition(i.speed),$("a + ul",t).prev().addClass("next"),$("li > a",t).wrapInner("");var n=$("
  • ").addClass("header");$("li > ul",t).prepend(n);var s=$("").prop("href","#").addClass("back");$(".header",t).prepend(s),i.title&&$("li > ul",t).each(function(e,t){var i=$(t).parent().find("a").first().text();if(i){var n=$("
    ").addClass("title").text(i);$("> .header",t).append(n)}}),this._addListeners(),this._jumpToInitial()}},{key:"_addListeners",value:function(){var e=this,t=this.menu,i=this.settings;$("a",t).on("click",function(n){if(e._clicked+i.speed>Date.now())return!1;e._clicked=Date.now();var s=$(n.currentTarget);(0===s.attr("href").indexOf("#")||s.hasClass("next")||s.hasClass("back"))&&n.preventDefault(),s.hasClass("next")?(t.find(".active").removeClass("active"),s.next().show().addClass("active"),e._move(1),i.resize&&e._resize(s.next())):s.hasClass("back")&&(e._move(-1,function(){t.find(".active").removeClass("active"),s.parent().parent().hide().parentsUntil(t,"ul").first().addClass("active")}),i.resize&&e._resize(s.parent().parent().parentsUntil(t,"ul")))})}},{key:"_jumpToInitial",value:function(){var e=this.menu.find(".active");e.length>0&&(e.removeClass("active"),this.jump(e,!1))}},{key:"_move",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){};if(0!==e){var i=this.settings,n=this.base,s=Math.round(parseInt(n.get(0).style.left))||0;n.css("left",s-100*e+"%"),"function"==typeof t&&setTimeout(t,i.speed)}}},{key:"_resize",value:function(e){this.menu.height(e.outerHeight())}},{key:"_transition",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:300,t=this.menu,i=this.base;t.css("transition-duration",e+"ms"),i.css("transition-duration",e+"ms")}},{key:"jump",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(e){var i=this.menu,n=this.settings,s=$(e),a=i.find(".active"),r=0;a.length>0&&(r=a.parentsUntil(i,"ul").length),i.find("ul").removeClass("active").hide();var l=s.parentsUntil(i,"ul");l.show(),s.show().addClass("active"),t||this._transition(0),this._move(l.length-r),n.resize&&this._resize(s),t||this._transition(n.speed)}}},{key:"home",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t=this.base,i=this.menu,n=this.settings;e||this._transition(0);var s=i.find(".active"),a=s.parentsUntil(i,"ul");this._move(-a.length,function(){s.removeClass("active").hide(),a.not(t).hide()}),n.resize&&this._resize(t),!1===e&&this._transition(n.speed)}},{key:"destroy",value:function(){var e=this,t=this.base,i=this.menu;$(".header",i).remove(),$("a",i).removeClass("next").off("click"),i.css({height:"","transition-duration":""}),t.css({left:"","transition-duration":""}),$("li > a > span",i).contents().unwrap(),i.find(".active").removeClass("active"),i.attr("class").split(" ").forEach(function(e){0===e.indexOf("slinky")&&i.removeClass(e)}),["settings","menu","base"].forEach(function(t){return delete e[t]})}}]),e}();jQuery.fn.slinky=function(e){return new Slinky(this,e)}; \ No newline at end of file diff --git a/skins/sympfy/list.group.tpl b/skins/sympfy/list.group.tpl new file mode 100644 index 0000000..c17ecfb --- /dev/null +++ b/skins/sympfy/list.group.tpl @@ -0,0 +1,249 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {LIST_SHORTTITLE}

    + +
    + +
    + {LIST_CATDESC} +
    + + + +
    + {LIST_SUBMITNEWPAGE} +
    + + + +
    + +
    + + + + + +
    + + {LIST_CATTEXT} + +
    + + + +
    + + + +
    + +
    +
    + + + + + + {LIST_ROW_TITLE} + + + + +
    + +
    +

    {LIST_ROW_TITLE}

    +
    +
    +

    {LIST_ROW_DESC}

    +
    + +
    +
    +
    + +
    + + + +
    + + + +
    + +
      +
    • {LIST_TOP_PAGEPREV}
    • + {LIST_TOP_PAGINATION} +
    • {LIST_TOP_PAGENEXT}
    • +
    + +
    + + + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/list.tpl b/skins/sympfy/list.tpl new file mode 100644 index 0000000..c6fb741 --- /dev/null +++ b/skins/sympfy/list.tpl @@ -0,0 +1,249 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {LIST_SHORTTITLE}

    + +
    + +
    + {LIST_CATDESC} +
    + + + +
    + {LIST_SUBMITNEWPAGE} +
    + + + + + +
    + +
    + + + +
    + + {LIST_CATTEXT} + +
    + + + +
    + + + +
    + +
    +
    + + + + + + {LIST_ROW_TITLE} + + + + +
    + +
    +

    {LIST_ROW_TITLE}

    +
    +
    +

    {LIST_ROW_DESC}

    +
    + +
    +
    +
    + +
    + + + +
    + + + +
    + +
      +
    • {LIST_TOP_PAGEPREV}
    • + {LIST_TOP_PAGINATION} +
    • {LIST_TOP_PAGENEXT}
    • +
    + +
    + + + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/maintenance.tpl b/skins/sympfy/maintenance.tpl new file mode 100644 index 0000000..e83b65e --- /dev/null +++ b/skins/sympfy/maintenance.tpl @@ -0,0 +1,41 @@ + + +{MAINTENANCE_HEADER1} + +{MAINTENANCE_MAINTITLE} - {MAINTENANCE_SUBTITLE} + + +{MAINTENANCE_HEADER2} + +
    + +
    + +
    +

    {PHP.L.Maintenance}

    +
    +
    + +
    {MAINTENANCE_REASON}
    + +
    +
  • + + + + + + + + + + + +
    {PHP.skinlang.maintenance.Username}{MAINTENANCE_USER}
    {PHP.skinlang.maintenance.Password}{MAINTENANCE_PASSWORD}
    + +
    +
    + +{MAINTENANCE_FOOTER} + + \ No newline at end of file diff --git a/skins/sympfy/message.tpl b/skins/sympfy/message.tpl new file mode 100644 index 0000000..f08deb0 --- /dev/null +++ b/skins/sympfy/message.tpl @@ -0,0 +1,21 @@ + + +
    + +
    + +
    +

    {MESSAGE_TITLE}

    +
    + +
    +
    + {MESSAGE_BODY} +
    +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/news(blog example).tpl b/skins/sympfy/news(blog example).tpl new file mode 100644 index 0000000..3dcf7cf --- /dev/null +++ b/skins/sympfy/news(blog example).tpl @@ -0,0 +1,53 @@ + + +
    + + +
    + + +
    +
    + + + +
    +
    + + + + + +
    +

    {PAGE_ROW_SHORTTITLE}

    +
    + +
    + {PAGE_ROW_TEXT} +
    + + + +
    + + +
    + + + +
    + +
      +
    • {NEWS_PAGEPREV}
    • + {NEWS_PAGINATION} +
    • {NEWS_PAGENEXT}
    • +
    + +
    + + + + \ No newline at end of file diff --git a/skins/sympfy/news.tpl b/skins/sympfy/news.tpl new file mode 100644 index 0000000..f4ee216 --- /dev/null +++ b/skins/sympfy/news.tpl @@ -0,0 +1,54 @@ + + +
    + + +
    + +
    +
    + + + + + + +
    + +
    +

    {PAGE_ROW_SHORTTITLE}

    +
    +
    +

    {PAGE_ROW_DESC|strip_tags}

    +
    + +
    +
    +
    + +
    + + +
    + + + +
    + +
      +
    • {NEWS_PAGEPREV}
    • + {NEWS_PAGINATION} +
    • {NEWS_PAGENEXT}
    • +
    + +
    + + + + \ No newline at end of file diff --git a/skins/sympfy/page.add.tpl b/skins/sympfy/page.add.tpl new file mode 100644 index 0000000..da987ff --- /dev/null +++ b/skins/sympfy/page.add.tpl @@ -0,0 +1,205 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PAGEADD_PAGETITLE}

    + +
    + {PAGEADD_SUBTITLE} +
    + +
    + +
    + + + + {PAGEADD_ERROR_BODY} + + + +
    + +
    + + + +
    + +
    + +
      + +
    • +
      +
      {PAGEADD_FORM_CAT}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_TITLE}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_DESC}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_AUTHOR}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_ALIAS}
      +
    • + + + + +
    • +
      +
      {PAGEADD_FORM_TYPE}
      +
    • + + + +
    • +
      {PHP.skinlang.pageadd.Bodyofthepage}

      {PAGEADD_FORM_TEXT}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_THUMB}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_SLIDER}
      +
    • + +
    + +
    +
    + +
      + +
    • +
      +
      {PAGEADD_FORM_SEOH1}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_SEOTITLE}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_SEODESC}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_SEOKEYWORDS}
      +
    • + +
    + +
    +
    + +
      + +
    • +
      +
      {PAGEADD_FORM_BEGIN}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_EXPIRE}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_KEY}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_OWNER}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_ALLOWCOMMENTS}
      +
    • + +
    • +
      +
      {PAGEADD_FORM_ALLOWRATINGS}
      +
    • + +
    • +
      +
      + {PAGEADD_FORM_FILE} +
      {PHP.skinlang.pageadd.Filehint}
      +
      +
    • + +
    • +
      +
      + {PAGEADD_FORM_URL} +
      {PHP.skinlang.pageadd.URLhint}
      +
      +
    • + +
    • +
      +
      + {PAGEADD_FORM_SIZE} +
      {PHP.skinlang.pageadd.Filesizehint}
      +
      +
    • + +
    + +
    + +
    + +
    + +
    {PHP.skinlang.pageadd.Formhint}
    + +
    + + + + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/page.edit.tpl b/skins/sympfy/page.edit.tpl new file mode 100644 index 0000000..7611495 --- /dev/null +++ b/skins/sympfy/page.edit.tpl @@ -0,0 +1,225 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PAGEEDIT_PAGETITLE}

    + +
    + {PAGEEDIT_SUBTITLE} +
    + +
    + +
    + + + + {PAGEEDIT_ERROR_BODY} + + + +
    + +
    + + + +
    + +
    + +
      + +
    • +
      +
      {PAGEEDIT_FORM_CAT}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_TITLE}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_DESC}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_AUTHOR}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_ALIAS}
      +
    • + +
    • +
      {PHP.skinlang.pageedit.Bodyofthepage}

      {PAGEEDIT_FORM_TEXT}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_THUMB}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_SLIDER}
      +
    • + +
    • +
      +
      #{PAGEEDIT_FORM_ID}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_DELETE}
      +
    • + +
    + +
    + +
    + +
      + +
    • +
      +
      {PAGEEDIT_FORM_SEOH1}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_SEOTITLE}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_SEODESC}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_SEOKEYWORDS}
      +
    • + +
    + +
    + +
    + +
      + +
    • +
      +
      {PAGEEDIT_FORM_DATE}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_BEGIN}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_EXPIRE}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_PAGECOUNT}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_KEY}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_OWNERID}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_ALLOWCOMMENTS}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_ALLOWRATINGS}
      +
    • + +
    • +
      +
      {PAGEEDIT_FORM_FILE}
      +
    • + +
    • +
      +
      + {PAGEEDIT_FORM_URL} +
      {PHP.skinlang.pageedit.URLhint}
      +
      +
    • + +
    • +
      +
      + {PAGEEDIT_FORM_SIZE} +
      {PHP.skinlang.pageedit.Filesizehint}
      +
      +
    • + +
    • +
      +
      + {PAGEEDIT_FORM_FILECOUNT} +
      {PHP.skinlang.pageedit.Filehitcounthint}
      +
      +
    • + +
    + +
    + +
    + +
    + +
    {PHP.skinlang.pageedit.Formhint}
    + +
    + + + + + + + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/page.tpl b/skins/sympfy/page.tpl new file mode 100644 index 0000000..6b4efc0 --- /dev/null +++ b/skins/sympfy/page.tpl @@ -0,0 +1,336 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PAGE_SHORTTITLE}

    + +
    +
    {PAGE_DATE}
    + +
    + +
    + + +
    + {PAGE_ADMIN_UNVALIDATE}   {PAGE_ADMIN_EDIT}   {PAGE_ADMIN_CLONE}   ({PAGE_ADMIN_COUNT}) +
    + + +
    + +
    + +
    + + +
    +
    + + + {PAGE_SHORTTITLE} + +
    +
    + + +
    + + {PAGE_TEXT} + +
    +
    + + + +
    + + + +
    + + Download : {PAGE_SHORTTITLE} {PAGE_FILE_ICON}
    + Size: {PAGE_FILE_SIZE}KB, downloaded {PAGE_FILE_COUNT} times + +
    + + + +
    + + +
    + +
    +

    {PHP.skinlang.page.Otherpages}

    +
    +
    + +
    + +
    + + + +
    + +
    +
    + + + + + {OTHER_PAGES_ROW_TITLE} + + + +
    + +
    +

    {OTHER_PAGES_ROW_TITLE}

    +
    +
    +

    {OTHER_PAGES_ROW_DESC|strip_tags}

    +
    + +
    +
    +
    + +
    + + + +
    + +
    + +
    + + + +
    + +
    +

    {PHP.skinlang.page.Ratings} {PAGE_RATINGS}

    +
    + + {PAGE_RATINGS_DISPLAY} + +
    + + + + + + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/pfs.edit.standalone.tpl b/skins/sympfy/pfs.edit.standalone.tpl new file mode 100644 index 0000000..4fd2fc3 --- /dev/null +++ b/skins/sympfy/pfs.edit.standalone.tpl @@ -0,0 +1,116 @@ + + +{PFS_STANDALONE_HEADER1} + + + + + + +{PFS_STANDALONE_HEADER2} + +
    + +
    + + {BREADCRUMBS} + +

    {PFS_SHORTTITLE}

    + +
    + +
    + + + +
    + +
      + +
    • +
      +
      {PFS_EDITFILE_DATE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_FOLDER}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_URL}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_SIZE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_FILE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_TITLE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_DESC}
      +
    • + +
    + +
    + +
    + +
    + + + + + +
    + +
      + +
    • +
      +
      {PFS_EDITFOLDER_TITLE}
      +
    • + +
    • +
      +
      {PFS_EDITFOLDER_DESC}
      +
    • + +
    • +
      +
      {PFS_EDITFOLDER_TYPE}
      +
    • + +
    + +
    + +
    + +
    + + + +
    + +
    + + + + + +{PFS_STANDALONE_FOOTER} + + \ No newline at end of file diff --git a/skins/sympfy/pfs.edit.tpl b/skins/sympfy/pfs.edit.tpl new file mode 100644 index 0000000..225f241 --- /dev/null +++ b/skins/sympfy/pfs.edit.tpl @@ -0,0 +1,105 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PFS_SHORTTITLE}

    + +
    + +
    + + + +
    + +
      + +
    • +
      +
      {PFS_EDITFILE_DATE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_FOLDER}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_URL}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_SIZE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_FILE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_TITLE}
      +
    • + +
    • +
      +
      {PFS_EDITFILE_DESC}
      +
    • + +
    + +
    + +
    + +
    + + + + + +
    + +
      + +
    • +
      +
      {PFS_EDITFOLDER_TITLE}
      +
    • + +
    • +
      +
      {PFS_EDITFOLDER_DESC}
      +
    • + +
    • +
      +
      {PFS_EDITFOLDER_TYPE}
      +
    • + +
    + +
    + +
    + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/pfs.standalone.tpl b/skins/sympfy/pfs.standalone.tpl new file mode 100644 index 0000000..6df3898 --- /dev/null +++ b/skins/sympfy/pfs.standalone.tpl @@ -0,0 +1,385 @@ + + + + +{PFS_STANDALONE_HEADER1} + + + + + + +{PFS_STANDALONE_HEADER2} + + + +
    + +
    + + {BREADCRUMBS} + +

    {PFS_SHORTTITLE}

    + +
    + +
    + +
    + {PFS_STATS} +
    + +
    + + + +
    + +
    + + + + {PFS_UPLOAD_STATUS} + + + + + +

    {PFS_FOLDERS_COUNT} {PHP.L.Folders} / {PFS_FOLDERS_SUBFILES_COUNT} {PHP.L.Files} :

    + +
    + +
    + +
    +
    {PHP.L.Folder}
    +
    {PHP.L.Type}
    +
    {PHP.L.Files}
    +
    {PHP.L.Size}
    +
    {PHP.L.Updated}
    +
    {PHP.L.Hits}
    +
    {PHP.L.Delete}
    +
    {PHP.L.Edit}
    +
    + +
    + +
    + + + +
    + +
    + {PFS_LIST_FOLDERS_TYPE} +
    +
    + {PFS_LIST_FOLDERS_HITS} +
    +
    + {PFS_LIST_FOLDERS_SIZE} +
    +
    + {PFS_LIST_FOLDERS_UPDATE} +
    +
    + {PFS_LIST_FOLDERS_VIEWCOUNTS} +
    +
    + + + +
    +
    + +
    +
    + + + +
    + +
    + + + + + +

    {PFS_FILES_COUNT} {PHP.L.pfs_filesinthisfolder} :

    + +
    + +
    + +
    +
    {PHP.L.File}
    +
    {PHP.L.Title}
    +
    {PHP.L.Size}
    +
    {PHP.L.Date}
    +
    {PHP.L.Hits}
    +
    {PHP.L.Delete}
    +
    {PHP.L.Edit}
    +
    {PHP.L.pfs_setassample}
    + +
    + +
    + +
    + +
    + + + +
    + +
    + + {PFS_LIST_FILES_ICON} + +
    + +
    + {PFS_LIST_FILES_TITLE} +
    + +
    + {PFS_LIST_FILES_SIZE} +
    + +
    + {PFS_LIST_FILES_UPDATE} +
    + +
    + {PFS_LIST_FILES_VIEWCOUNTS} +
    + +
    + +
    + +
    + +
    + +
    + {PFS_LIST_FILES_SETASSAMPLE} +
    + + +
    + {PFS_LIST_FILES_STNDL} +
    + + +
    + + + +
    + +
    + + + + +
    + {PHP.L.pfs_filelistempty} +
    + + + +
    +
    {PHP.L.Help} :
    + {PFS_HELP} +
    + + +
    + + +
    + +

    {PHP.L.pfs_newfile}

    + +
    + + {PFS_UPLOAD_MAXFILESIZE} + + {PHP.L.Folder} : {PFS_UPLOAD_FOLDERS} + + + {PFS_UPLOAD_IMG_RESIZE_SIZE} : {PFS_UPLOAD_IMG_RESIZE} + + + + {PHP.L.pfs_addlogo} : {PFS_UPLOAD_ADD_LOGO} + + +
    + +
    + +
    +
     
    +
    {PHP.L.Title}
    +
    {PHP.L.File}
    +
    + +
    + +
    + + + +
    + +
    + #{PFS_UPLOAD_LIST_NUM} +
    + +
    + {PFS_UPLOAD_LIST_TITLE} +
    + +
    + {PFS_UPLOAD_LIST_FILE} + + {PFS_UPLOAD_MORE_ICON} + +
    + +
    + + + +
    + + + +
    + +
    + +
    + +
    + +
    + {PHP.L.pfs_multiuploading} +
    + +
    + {PFS_UPLOAD_MULTIPLE} +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    +
    {PHP.L.pfs_extallowed}
    + {PFS_ALLOWED_EXT} +
    + +
    + + + +
    + +

    {PHP.L.pfs_newfolder}

    + +
    + +
      + +
    • +
      +
      {PFS_NEWFOLDER_TITLE}
      +
    • + +
    • +
      +
      {PFS_NEWFOLDER_DESC}
      +
    • + +
    • +
      +
      {PFS_NEWFOLDER_TYPE}
      +
    • + +
    + +
    + +
    + +
    + +
    + + +
    + +
    + +
    + +
    + + + + + + + +{PFS_STANDALONE_FOOTER} + + + + \ No newline at end of file diff --git a/skins/sympfy/pfs.tpl b/skins/sympfy/pfs.tpl new file mode 100644 index 0000000..8cd06c2 --- /dev/null +++ b/skins/sympfy/pfs.tpl @@ -0,0 +1,366 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PFS_SHORTTITLE}

    + +
    + +
    + +
    + {PFS_STATS} +
    + +
    + + + +
    + +
    + + + + {PFS_UPLOAD_STATUS} + + + + + +

    {PFS_FOLDERS_COUNT} {PHP.L.Folders} / {PFS_FOLDERS_SUBFILES_COUNT} {PHP.L.Files} :

    + +
    + +
    + +
    +
    {PHP.L.Folder}
    +
    {PHP.L.Type}
    +
    {PHP.L.Files}
    +
    {PHP.L.Size}
    +
    {PHP.L.Updated}
    +
    {PHP.L.Hits}
    +
    {PHP.L.Delete}
    +
    {PHP.L.Edit}
    +
    + +
    + +
    + + + +
    + +
    + {PFS_LIST_FOLDERS_TYPE} +
    +
    + {PFS_LIST_FOLDERS_HITS} +
    +
    + {PFS_LIST_FOLDERS_SIZE} +
    +
    + {PFS_LIST_FOLDERS_UPDATE} +
    +
    + {PFS_LIST_FOLDERS_VIEWCOUNTS} +
    +
    + + + +
    +
    + +
    +
    + + + +
    + +
    + + + + + +

    {PFS_FILES_COUNT} {PHP.L.pfs_filesinthisfolder} :

    + +
    + +
    + +
    +
    {PHP.L.File}
    +
    {PHP.L.Title}
    +
    {PHP.L.Size}
    +
    {PHP.L.Date}
    +
    {PHP.L.Hits}
    +
    {PHP.L.Delete}
    +
    {PHP.L.Edit}
    +
    {PHP.L.pfs_setassample}
    + +
    + +
    + +
    + +
    + + + +
    + +
    + + {PFS_LIST_FILES_ICON} + +
    + +
    + {PFS_LIST_FILES_TITLE} +
    + +
    + {PFS_LIST_FILES_SIZE} +
    + +
    + {PFS_LIST_FILES_UPDATE} +
    + +
    + {PFS_LIST_FILES_VIEWCOUNTS} +
    + +
    + +
    + +
    + +
    + +
    + {PFS_LIST_FILES_SETASSAMPLE} +
    + + +
    + {PFS_LIST_FILES_STNDL} +
    + + +
    + + + +
    + +
    + + + + +
    + {PHP.L.pfs_filelistempty} +
    + + + +
    +
    {PHP.L.Help} :
    + {PFS_HELP} +
    + + +
    + + +
    + +

    {PHP.L.pfs_newfile}

    + +
    + + {PFS_UPLOAD_MAXFILESIZE} + + {PHP.L.Folder} : {PFS_UPLOAD_FOLDERS} + + + {PFS_UPLOAD_IMG_RESIZE_SIZE} : {PFS_UPLOAD_IMG_RESIZE} + + + + {PHP.L.pfs_addlogo} : {PFS_UPLOAD_ADD_LOGO} + + +
    + +
    + +
    +
     
    +
    {PHP.L.Title}
    +
    {PHP.L.File}
    +
    + +
    + +
    + + + +
    + +
    + #{PFS_UPLOAD_LIST_NUM} +
    + +
    + {PFS_UPLOAD_LIST_TITLE} +
    + +
    + {PFS_UPLOAD_LIST_FILE} + + {PFS_UPLOAD_MORE_ICON} + +
    + +
    + + + +
    + + + +
    + +
    + +
    + +
    + +
    + {PHP.L.pfs_multiuploading} +
    + +
    + {PFS_UPLOAD_MULTIPLE} +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    +
    {PHP.L.pfs_extallowed}
    + {PFS_ALLOWED_EXT} +
    + +
    + + + +
    + +

    {PHP.L.pfs_newfolder}

    + +
    + +
      + +
    • +
      +
      {PFS_NEWFOLDER_TITLE}
      +
    • + +
    • +
      +
      {PFS_NEWFOLDER_DESC}
      +
    • + +
    • +
      +
      {PFS_NEWFOLDER_TYPE}
      +
    • + +
    + +
    + +
    + +
    + +
    + + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/plugin.standalone.contact.tpl b/skins/sympfy/plugin.standalone.contact.tpl new file mode 100644 index 0000000..d1c73cf --- /dev/null +++ b/skins/sympfy/plugin.standalone.contact.tpl @@ -0,0 +1,92 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PLUGIN_CONTACT_SHORTTITLE}

    + +
    + {PLUGIN_CONTACT_EXPLAIN} +
    + +
    + +
    + + + + {PLUGIN_CONTACT_ERROR_BODY} + + + + + + {PLUGIN_CONTACT_DONE_BODY} + + + +
    + +
      + +
    • +
      +
      {PLUGIN_CONTACT_RECIPIENTS}
      +
    • + +
    • +
      +
      {PLUGIN_CONTACT_EMAIL} *
      +
    • + +
    • +
      +
      {PLUGIN_CONTACT_NAME} *
      +
    • + +
    • +
      +
      {PLUGIN_CONTACT_PHONE}
      +
    • + +
    • +
      +
      {PLUGIN_CONTACT_SUBJECT} *
      +
    • + + +
    • +
      +
      {PLUGIN_CONTACT_BODY} *
      +
    • + +
    • +
      {PLUGIN_CONTACT_REQUIRED}
      +
    • + +
    • +
      {PLUGIN_CONTACT_ANTISPAM}
      +
    • + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/plugin.standalone.passrecover.tpl b/skins/sympfy/plugin.standalone.passrecover.tpl new file mode 100644 index 0000000..a71d39a --- /dev/null +++ b/skins/sympfy/plugin.standalone.passrecover.tpl @@ -0,0 +1,71 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PLUGIN_PASSRECOVER_TITLE}

    + +
    + +
    + + + +

    {PHP.L.plu_mailsent}

    + + + + + + +

    {PHP.L.plu_mailsent2}

    + + + + + + +

    {PHP.L.plu_newpass}

    + + + + + +

    {PHP.L.plu_loggedin1} {PLUGIN_PASSRECOVER_LOGGED_USERNAME} {PHP.L.plu_loggedin2}
    + {PHP.L.plu_loggedin3}

    + + + + + +

    {PHP.L.plu_explain1}
    + {PHP.L.plu_explain2}
    + {PHP.L.plu_explain3}

    + +
    + +
      +
    • +
      {PHP.L.plu_youremail}
      +
      {PLUGIN_PASSRECOVER_EMAIL}
      +
    • +
    + +
    + +

    {PHP.L.plu_explain4}

    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/plugin.standalone.search.tpl b/skins/sympfy/plugin.standalone.search.tpl new file mode 100644 index 0000000..30fe2cb --- /dev/null +++ b/skins/sympfy/plugin.standalone.search.tpl @@ -0,0 +1,167 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PLUGIN_SEARCH_TITLE}

    + +
    + {PLUGIN_SEARCH_DESC} +
    + +
    + +
    + + + + {PLUGIN_SEARCH_ERROR_BODY} + + + + + + + + + + + +

    {PHP.L.Pages}

    + +
    {PHP.L.plu_found} {PLUGIN_SEARCH_PAGE_FOUND} {PHP.L.plu_match}
    + +
    + +
    + +
    +
    {PHP.L.Category}
    +
    {PHP.L.Page}
    +
    {PHP.L.Date}
    +
    {PHP.L.Owner}
    +
    + +
    + +
    + + + +
    + + + +
    + {PLUGIN_SEARCH_ROW_PAGE_DATE} +
    +
    + {PLUGIN_SEARCH_ROW_PAGE_OWNER} +
    + +
    + + + +
    + +
    + + + + + + +

    {PHP.L.Forums}

    + +
    {PHP.L.plu_found} {PLUGIN_SEARCH_FORUM_FOUND} {PHP.L.plu_match}
    + +
    + +
    + +
    +
    {PHP.L.Section}
    +
    {PHP.L.Topic}
    +
    {PHP.L.Date}
    +
    {PHP.L.Poster}
    +
    + +
    + +
    + + + +
    + +
    + {PLUGIN_SEARCH_ROW_FORUM_SECTION} +
    + +
    + {PLUGIN_SEARCH_ROW_FORUM_DATE} +
    +
    + {PLUGIN_SEARCH_ROW_FORUM_POSTER} +
    + +
    + + + +
    + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/plugin.standalone.statistics.tpl b/skins/sympfy/plugin.standalone.statistics.tpl new file mode 100644 index 0000000..ecc8f20 --- /dev/null +++ b/skins/sympfy/plugin.standalone.statistics.tpl @@ -0,0 +1,235 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PLUGIN_STATISTICS_TITLE}

    + +
    + +
    + +
    + +
    + +
    +
    {PHP.L.plu_maxwasreached} {PLUGIN_STATISTICS_MAX_DATE}, {PLUGIN_STATISTICS_MAX_HITS} {PHP.L.plu_pagesdisplayedthisday}
    +
    +
    + +
    +
    {PHP.L.plu_totalpagessince} {PLUGIN_STATISTICS_SINCE}
    +
    {PLUGIN_STATISTICS_TOTALPAGES}
    +
    + +
    +
    {PHP.L.plu_registeredusers}
    +
    {PLUGIN_STATISTICS_TOTALDBUSERS}
    +
    + +
    +
    {PHP.L.Pages}
    +
    {PLUGIN_STATISTICS_TOTALDBPAGES}
    +
    + +
    +
    {PHP.L.Comments}
    +
    {PLUGIN_STATISTICS_TOTALDBCOMMENTS}
    +
    + +
    +
    {PHP.L.plu_totalmails}
    +
    {PLUGIN_STATISTICS_TOTALMAILSENT}
    +
    + +
    + +
    + +

    {PHP.L.Private_Messages}:

    + +
    + +
    + +
    +
    {PHP.L.plu_totalpms}
    +
    {PLUGIN_STATISTICS_TOTALPMSENT}
    +
    + +
    +
    {PHP.L.plu_totalactivepms}
    +
    {PLUGIN_STATISTICS_TOTALPMACTIVE}
    +
    + +
    +
    {PHP.L.plu_totalarchivedpms}
    +
    {PLUGIN_STATISTICS_TOTALPMARCHIVED}
    +
    + +
    + +
    + +

    {PHP.L.Forums}:

    + +
    + +
    + +
    +
    {PHP.L.plu_viewsforums}
    +
    {PLUGIN_STATISTICS_TOTALDBVIEWS}
    +
    + +
    +
    {PHP.L.plu_postsforums} ({PHP.L.plu_pruned})
    +
    {PLUGIN_STATISTICS_TOTALDBPOSTS_AND_TOTALDBPOSTSPRUNED} ({PLUGIN_STATISTICS_TOTALDBPOSTSPRUNED})
    +
    + +
    +
    {PHP.L.plu_topicsforums} ({PHP.L.plu_pruned})
    +
    {PLUGIN_STATISTICS_TOTALDBTOPICS_AND_TOTALDBTOPICSPRUNED} ({PLUGIN_STATISTICS_TOTALDBTOPICSPRUNED})
    +
    + +
    + +
    + +

    {PHP.L.plu_pollsratings}:

    + +
    + +
    + +
    +
    {PHP.L.plu_pagesrated}
    +
    {PLUGIN_STATISTICS_TOTALDBRATINGS}
    +
    + +
    +
    {PHP.L.plu_votesratings}
    +
    {PLUGIN_STATISTICS_TOTALDBRATINGSVOTES}
    +
    + +
    +
    {PHP.L.plu_polls}
    +
    {PLUGIN_STATISTICS_TOTALDBPOLLS}
    +
    + +
    +
    {PHP.L.plu_votespolls}
    +
    {PLUGIN_STATISTICS_TOTALDBPOLLSVOTES}
    +
    + +
    + +
    + +

    {PHP.L.PFS}:

    + +
    + +
    + +
    +
    {PHP.L.plu_pfsspace}
    +
    {PLUGIN_STATISTICS_TOTALDBFILES}
    +
    + +
    +
    {PHP.L.plu_pfssize}, {PHP.L.kb}
    +
    {PLUGIN_STATISTICS_TOTALDBFILESIZE}
    +
    + +
    + +
    + +

    {PHP.L.plu_contributions}:

    + +
    + +
    + + +
    +
    {PHP.L.Posts}
    +
    {PLUGIN_STATISTICS_USER_POSTSCOUNT}
    +
    + +
    +
    {PHP.L.Topics}
    +
    {PLUGIN_STATISTICS_USER_TOPICSCOUNT}
    +
    + +
    +
    {PHP.L.Comments}
    +
    {PLUGIN_STATISTICS_USER_COMMENTS}
    +
    + + + +
    +
    {PHP.L.plu_notloggedin}
    +
    +
    + + +
    + +
    + +

    {PHP.L.plu_membersbycountry}:

    + +
    + +
    + +
    +
    {PHP.L.plu_flag}
    +
    {PHP.out.ic_down} {PHP.L.Country}
    +
    {PHP.out.ic_down} {PHP.L.Users}
    +
    + +
    + +
    + + +
    +
    {PLUGIN_STATISTICS_COUNTRY_FLAG}
    +
    {PLUGIN_STATISTICS_COUNTRY_NAME}
    +
    {PLUGIN_STATISTICS_COUNTRY_COUNT}
    +
    + + +
    +
    +
    {PHP.L.plu_unknown}
    +
    {PLUGIN_STATISTICS_UNKNOWN_COUNT}
    +
    + +
    +
    +
    {PHP.L.Total}:
    +
    {PLUGIN_STATISTICS_TOTALUSERS}
    +
    + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/plugin.standalone.whosonline.tpl b/skins/sympfy/plugin.standalone.whosonline.tpl new file mode 100644 index 0000000..e802c76 --- /dev/null +++ b/skins/sympfy/plugin.standalone.whosonline.tpl @@ -0,0 +1,120 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PLUGIN_WHOSONLINE_TITLE}

    + +
    + +
    + +
    + +
    + +

    {PHP.L.plu_mostonline} {PLUGIN_WHOSONLINE_MOST_ONLINE}.
    + {PHP.L.plu_therescurrently} {PLUGIN_WHOSONLINE_THERESCURRENTLY} {PHP.L.plu_visitors} {PLUGIN_WHOSONLINE_TOTAL_VISITORS} {PHP.L.plu_members}

    + +
    + +
    + +
    +
    +
    {PHP.L.User}
    +
    {PHP.L.Group}
    +
    {PHP.L.Country}
    +
    {PHP.L.plu_lastseen1}
    + +
    {PHP.L.plu_in}
    +
    {PHP.L.Ip}
    + +
    + +
    + +
    + + + +
    + +
    + {PLUGIN_WHOSONLINE_ROW_AVATAR} +
    +
    + {PLUGIN_WHOSONLINE_ROW_USER} +
    +
    + {PLUGIN_WHOSONLINE_ROW_MAINGRP} +
    +
    + {PLUGIN_WHOSONLINE_ROW_COUNTRYFLAG} +
    +
    + {PLUGIN_WHOSONLINE_ROW_LASTSEEN} +
    + +
    + {PLUGIN_WHOSONLINE_ROW_ONLINE_LOCATION} +
    + +
    + {PLUGIN_WHOSONLINE_ROW_ONLINE_IP} +
    + + +
    + + + + + +
    + +
    + +
    +
    + {PLUGIN_WHOSONLINE_ROW_USER} +
    +
    + +
    +
    + +
    +
    + {PLUGIN_WHOSONLINE_ROW_LASTSEEN} +
    + +
    + {PLUGIN_WHOSONLINE_ROW_ONLINE_LOCATION} +
    + +
    + {PLUGIN_WHOSONLINE_ROW_ONLINE_IP} +
    + + +
    + + + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/plugin.tpl b/skins/sympfy/plugin.tpl new file mode 100644 index 0000000..6c728e1 --- /dev/null +++ b/skins/sympfy/plugin.tpl @@ -0,0 +1,29 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PLUGIN_SHORTTITLE}

    + +
    + {PLUGIN_SUBTITLE} +
    + +
    + +
    + + {PLUGIN_BODY} + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/pm.send.tpl b/skins/sympfy/pm.send.tpl new file mode 100644 index 0000000..d75d797 --- /dev/null +++ b/skins/sympfy/pm.send.tpl @@ -0,0 +1,65 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PMSEND_SHORTTITLE}

    + +
    + {PMSEND_SUBTITLE} +
    + +
    + +
    + + + + {PMSEND_ERROR_BODY} + + + +
    + +
      + +
    • +
      +
      + {PMSEND_FORM_TOUSER} +
      {PHP.skinlang.pmsend.Sendmessagetohint}
      +
      +
    • + +
    • +
      +
      {PMSEND_FORM_TITLE}
      +
    • + +
    • +
      +
      {PMSEND_FORM_TEXT}
      +
    • + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/pm.tpl b/skins/sympfy/pm.tpl new file mode 100644 index 0000000..63f4f9d --- /dev/null +++ b/skins/sympfy/pm.tpl @@ -0,0 +1,118 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {PM_SHORTTITLE}

    + +
    + {PM_SUBTITLE} +
    + +
    + +
    + +
    + {PM_INBOX}     {PM_ARCHIVES}     {PM_SENTBOX}     {PM_SENDNEWPM} +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.skinlang.pm.State}{PHP.skinlang.pm.Sender}{PHP.skinlang.pm.SubjectClick}{PHP.skinlang.pm.Date}{PHP.skinlang.pm.Action}
    {PHP.skinlang.pm.State}{PHP.skinlang.pm.Recipient}{PHP.skinlang.pm.SubjectClick}{PHP.skinlang.pm.Date}{PHP.skinlang.pm.Action}
    {PM_ROW_ICON_STATUS}{PM_ROW_FROMORTOUSER}{PM_ROW_TITLE}{PM_ROW_DATE}{PM_ROW_ICON_ACTION}
    + {PHP.skinlang.pm.Nomessages} +
    + +
    + +
      +
    • {PM_TOP_PAGEPREV}
    • + {PM_TOP_PAGINATION} +
    • {PM_TOP_PAGENEXT}
    • +
    + +
    + + + + + + + + {PHP.skinlang.pm.Subject} : {PM_ROW_TITLE}
    + {PHP.skinlang.pm.Sender} : {PM_ROW_FROMUSER} / {PHP.skinlang.pm.Recipient} : {PM_ROW_TOUSER} / {PHP.skinlang.pm.Date} : {PM_ROW_DATE} +     {PHP.skinlang.pm.Action} : {PM_ROW_ICON_ACTION} + +
    + {PM_ROW_TEXT} +
    + + + +
    + + : {PHP.skinlang.pm.Newmessage}     + : {PHP.skinlang.pm.Message}     + : {PHP.skinlang.pm.Reply}     + : {PHP.skinlang.pm.Sendtoarchives}     + : {PHP.skinlang.pm.Delete} + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/poll.tpl b/skins/sympfy/poll.tpl new file mode 100644 index 0000000..f59ceb1 --- /dev/null +++ b/skins/sympfy/poll.tpl @@ -0,0 +1,86 @@ + + +
    + +
    + +

    {POLL_TITLE}

    + + + +
    + {POLL_ERROR_BODY} +
    + + + + + +
    + +
    + + +
    + {POLL_ROW_RADIO_ITEM} +
    + + +
    + +
    + +
    + +
    + + + + + + +
    +
    +
    + {POLL_ROW_TEXT} +
    +
    + ({POLL_ROW_COUNT}) +
    +
    +
    +
    +
    +
    +
    + +
    + + + + +
    +

    {POLL_INFO}
    + {POLL_VOTERS} {PHP.skinlang.polls.voterssince} {POLL_SINCE}
    +

    +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/skins/sympfy/polls.standalone.tpl b/skins/sympfy/polls.standalone.tpl new file mode 100644 index 0000000..6ffeb43 --- /dev/null +++ b/skins/sympfy/polls.standalone.tpl @@ -0,0 +1,64 @@ + + + + +{POLLS_STANDALONE_HEADER1} + + + + + + +{POLLS_STANDALONE_HEADER2} + + + +
    + + {POLL_VIEW} + + + +
    + + + +
    + +
    + {POLLS_LIST_DATE} +
    + +
    + +
    + +
    + {POLLS_LIST_TEXT} +
    + +
    + + + +
    + + + {PHP.L.none} + + + + +
    + + + + + + + +{POLLS_STANDALONE_FOOTER} + + + + \ No newline at end of file diff --git a/skins/sympfy/polls.tpl b/skins/sympfy/polls.tpl new file mode 100644 index 0000000..97db7bd --- /dev/null +++ b/skins/sympfy/polls.tpl @@ -0,0 +1,57 @@ + + +
    + +
    + + {POLLS_BREADCRUMBS} + +
    +

    {POLLS_TITLE}

    +
    + +
    + +
    + + {POLL_VIEW} + + + +
    + + + +
    + +
    + {POLLS_LIST_DATE} +
    + +
    + +
    + +
    + {POLLS_LIST_TEXT} +
    + +
    + + + +
    + + + {PHP.L.none} + + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/popup.tpl b/skins/sympfy/popup.tpl new file mode 100644 index 0000000..2db3123 --- /dev/null +++ b/skins/sympfy/popup.tpl @@ -0,0 +1,17 @@ + + +{POPUP_HEADER1} + + + +{POPUP_HEADER2} + +
    + + {POPUP_BODY} + +
    + +{POPUP_FOOTER} + + \ No newline at end of file diff --git a/skins/sympfy/print.page.tpl b/skins/sympfy/print.page.tpl new file mode 100644 index 0000000..eb97170 --- /dev/null +++ b/skins/sympfy/print.page.tpl @@ -0,0 +1,98 @@ +{PHP.cfg.doctype} + + + + {PAGE_SHORTTITLE} - {PHP.L.Printversion} + + + + + + + +
    + + + +
    + +

    {PAGE_TITLE}

    + +
    + +
    + {PAGE_DESC} +
    + {PHP.skinlang.page.Submittedby} {PAGE_OWNER}   {PHP.skinlang.page.Date} {PAGE_DATE}
    + + + + {PAGE_ADMIN_UNVALIDATE}   {PAGE_ADMIN_EDIT}   {PAGE_ADMIN_CLONE}   ({PAGE_ADMIN_COUNT})
    + + +
    +
    + +
    + + {PAGE_TEXT} + + + +
    +
      + + {PAGE_MULTI_TABNAV} + +
    + {PAGE_MULTI_SELECT} +
    + +
    +
    {PHP.skinlang.page.Summary}
    + {PAGE_MULTI_TABTITLES} +
    + + + + + +
    + + Download : {PAGE_SHORTTITLE} {PAGE_FILE_ICON}
    + Size: {PAGE_FILE_SIZE}KB, downloaded {PAGE_FILE_COUNT} times + +
    + + + +
    + + + +
    + + + + + \ No newline at end of file diff --git a/skins/sympfy/ratings.tpl b/skins/sympfy/ratings.tpl new file mode 100644 index 0000000..8d7130c --- /dev/null +++ b/skins/sympfy/ratings.tpl @@ -0,0 +1,50 @@ + + +
    + + {PHP.skinlang.ratings.Averagemembersrating} {RATINGS_AVERAGE}   {RATINGS_AVERAGEIMG}
    + {PHP.skinlang.ratings.Votes} {RATINGS_VOTERS} {RATINGS_SINCE} + +
    + + + +
    + +
    + +

    {PHP.skinlang.ratings.Rate}

    + +

    + {RATINGS_NEWRATE_FORM_RATE} +

    + +
    + + + +
    + + + + + +
    + + {RATINGS_EXTRATEXT} + +
    + + + + + +
    + + {RATINGS_DISABLETEXT} + +
    + + + + \ No newline at end of file diff --git a/skins/sympfy/service.message.tpl b/skins/sympfy/service.message.tpl new file mode 100644 index 0000000..30f72f1 --- /dev/null +++ b/skins/sympfy/service.message.tpl @@ -0,0 +1,40 @@ + + + + + + #{MESSAGE_CODE} {MESSAGE_TITLE} + {MESSAGE_REDIRECT} + + + + + +
    + +
    + +
    + +

    {MESSAGE_CODE}

    +

    {MESSAGE_TITLE}

    + +
    + {MESSAGE_BODY} +
    + + + +
    + +
    + +
    + + + + + + \ No newline at end of file diff --git a/skins/sympfy/sympfy.en.lang.php b/skins/sympfy/sympfy.en.lang.php new file mode 100644 index 0000000..5f725b3 --- /dev/null +++ b/skins/sympfy/sympfy.en.lang.php @@ -0,0 +1,347 @@ +Check all fields carefully, you won't be able to change it later.
    If you really need to change something, ask a moderator or an administrator."; +$skinlang['pageadd']['Submit'] = "Submit"; +$skinlang['pageadd']['Publish'] = "Publish"; // New v173 +$skinlang['pageadd']['Parsing'] = "Parsing:"; // New v173 +$skinlang['pageadd']['Thumbs'] = "Thumbnails:"; // New v178 + +$skinlang['pageadd']['Allowcomments'] = "Allow comments?"; // New v173 +$skinlang['pageadd']['Allowratings'] = "Allow rating change?"; // New v173 + +//page.edit.tpl +$skinlang['pageedit']['Category'] = "Category:"; +$skinlang['pageedit']['Title'] = "Title:"; +$skinlang['pageedit']['Description'] = "Description:"; +$skinlang['pageedit']['Author'] = "Author:"; +$skinlang['pageedit']['Owner'] = "Owner:"; +$skinlang['pageedit']['Date'] = "Date:"; +$skinlang['pageedit']['Begin'] = "Begin:"; +$skinlang['pageedit']['Expire'] = "Expire:"; +$skinlang['pageedit']['Pagehitcount'] = "Pagehitcount:"; +$skinlang['pageedit']['Extrakey'] = "Extra key"; +$skinlang['pageedit']['Alias'] = "Alias:"; +$skinlang['pageedit']['Parsing'] = "Parsing:"; +$skinlang['pageedit']['Bodyofthepage'] = "Body of the page:"; +$skinlang['pageedit']['Filedownload'] = "File download?"; +$skinlang['pageedit']['URL'] = "URL:"; +$skinlang['pageedit']['URLhint'] = "(If File download=Yes)"; +$skinlang['pageedit']['Filesize'] = "Filesize (KB):"; +$skinlang['pageedit']['Filesizehint'] = "(If File download=Yes)"; +$skinlang['pageedit']['Filehitcount'] = "File hit count:"; +$skinlang['pageedit']['Filehitcounthint'] = "(If File download=Yes)"; +$skinlang['pageedit']['Pageid'] = "Page ID:"; +$skinlang['pageedit']['Deletethispage'] = "!Delete this page!:"; +$skinlang['pageedit']['Update'] = "Update"; +$skinlang['pageedit']['Thumbs'] = "Thumbnails:"; // New v178 + +$skinlang['pageedit']['Allowcomments'] = "Allow comments?"; // New v173 +$skinlang['pageedit']['Allowratings'] = "Allow rating change?"; // New v173 + +//page.tpl +$skinlang['page']['Author'] = "Author:"; +$skinlang['page']['Submittedby'] = "Submitted by:"; +$skinlang['page']['Date'] = "Date:"; +$skinlang['page']['Comments'] = "Comments:"; +$skinlang['page']['Ratings'] = "Ratings:"; +$skinlang['page']['Summary'] = "Summary:"; +$skinlang['page']['FilesizeKB'] = "KB"; +$skinlang['page']['Filesize'] = "Filesize:"; +$skinlang['page']['Membersrating'] = "Members rating:"; +$skinlang['page']['Download'] = "Download:"; +$skinlang['page']['Hits'] = "Hits:"; +$skinlang['page']['Otherpages'] = "Other pages"; +$skinlang['page']['Similarpages'] = "Similar почитать"; + +//pfs.tpl +$skinlang['pfs']['Insertasthumbnail'] = "Insert as thumbnail"; +$skinlang['pfs']['Insertasimage'] = "Insert as full size image"; +$skinlang['pfs']['Insertaslink'] = "Insert as a link to the file"; + +//pm.send.tpl +$skinlang['pmsend']['Sendmessageto'] = "Send the message to:"; +$skinlang['pmsend']['Sendmessagetohint'] = "(Send up to 10 recipients, separated by commas.)"; +$skinlang['pmsend']['Subject'] = "Subject:"; +$skinlang['pmsend']['Message'] = "Message:"; +$skinlang['pmsend']['Sendmessage'] = "Send the message now !"; + +//pm.tpl +$skinlang['pm']['State'] = "State"; +$skinlang['pm']['Sender'] = "Sender"; +$skinlang['pm']['SubjectClick'] = "Subject (click to read)"; // New in v125 +$skinlang['pm']['Date'] = "Date"; +$skinlang['pm']['Action'] = "Action"; +$skinlang['pm']['Recipient'] = "Recipient"; +$skinlang['pm']['Nomessages'] = "No messages."; +$skinlang['pm']['Page'] = "Page"; +$skinlang['pm']['Subject'] = "Subject"; +$skinlang['pm']['Sender'] = "Sender"; +$skinlang['pm']['Recipient'] = "Recipient"; +$skinlang['pm']['Date'] = "Date"; +$skinlang['pm']['Newmessage'] = "New message"; +$skinlang['pm']['Message'] = "Message"; +$skinlang['pm']['Reply'] = "Reply"; +$skinlang['pm']['Sendtoarchives'] = "Send to archives"; +$skinlang['pm']['Delete'] = "Delete"; + +//polls.tpl +$skinlang['polls']['voterssince'] = "voters since"; +$skinlang['polls']['Comments'] = "Comments:"; +$skinlang['polls']['Allpolls'] = "All polls (current and archived)"; + +//ratings.tpl +$skinlang['ratings']['Averagemembersrating'] = "Average members rating (out of 10) :"; +$skinlang['ratings']['Votes'] = "Votes:"; +$skinlang['ratings']['Rate'] = "Rate:"; +$skinlang['ratings']['Rateit'] = "Rate it !"; + +//user.auth.tpl +$skinlang['usersauth']['Username'] = "Login:"; +$skinlang['usersauth']['Password'] = "Password:"; +$skinlang['usersauth']['Rememberme'] = "Remember me ?"; +$skinlang['usersauth']['Login'] = "Login"; +$skinlang['usersauth']['Register'] = "Click here to register"; +$skinlang['usersauth']['Lostpassword'] = "Lost your password ?"; + +//users.details.tpl +$skinlang['usersdetails']['Sendprivatemessage'] = "Send a private message:"; +$skinlang['usersdetails']['Userfirstname'] = "User first name:"; +$skinlang['usersdetails']['Userlastname'] = "User last name:"; +$skinlang['usersdetails']['Maingroup'] = "Main group:"; +$skinlang['usersdetails']['Memberof'] = "Member of:"; +$skinlang['usersdetails']['Country'] = "Country:"; +$skinlang['usersdetails']['Location'] = "Location:"; +$skinlang['usersdetails']['Timezone'] = "Timezone:"; +$skinlang['usersdetails']['Weblog'] = "Weblog:"; +$skinlang['usersdetails']['Website'] = "Website:"; +$skinlang['usersdetails']['IRC'] = "IRC:"; +$skinlang['usersdetails']['ICQ'] = "ICQ:"; +$skinlang['usersdetails']['MSN'] = "MSN messenger:"; +$skinlang['usersdetails']['Birthdate'] = "Birthdate:"; +$skinlang['usersdetails']['Age'] = "Age:"; +$skinlang['usersdetails']['Occupation'] = "Occupation:"; +$skinlang['usersdetails']['Gender'] = "Gender:"; +$skinlang['usersdetails']['Signature'] = "Signature:"; +$skinlang['usersdetails']['Registrationdate'] = "Registration date:"; +$skinlang['usersdetails']['Avatar'] = "Avatar:"; +$skinlang['usersdetails']['Photo'] = "Photo:"; + +//users.edit.tpl +$skinlang['usersedit']['UserID'] = "User ID:"; +$skinlang['usersedit']['Username'] = "Login:"; +$skinlang['usersedit']['Userfirstname'] = "User first name:"; +$skinlang['usersedit']['Userlastname'] = "User last name:"; +$skinlang['usersedit']['Groupsmembership'] = "Groups membership:"; +$skinlang['usersedit']['Maingroup'] = "Main group:"; +$skinlang['usersedit']['Memberof'] = "Member of:"; +$skinlang['usersedit']['Country'] = "Country:"; +$skinlang['usersedit']['Location'] = "Location:"; +$skinlang['usersedit']['Timezone'] = "Timezone:"; +$skinlang['usersedit']['Skin'] = "Skin:"; +$skinlang['usersedit']['Language'] = "Language:"; +$skinlang['usersedit']['Avatar'] = "Avatar:"; +$skinlang['usersedit']['Signature'] = "Signature:"; +$skinlang['usersedit']['Photo'] = "Photo:"; +$skinlang['usersedit']['Newpassword'] = "Set a new password:"; +$skinlang['usersedit']['Newpasswordhint'] = "(Leave empty to keep
    the current password)"; +$skinlang['usersedit']['Email'] = "Email:"; +$skinlang['usersedit']['Hidetheemail'] = "Always hide the email:"; +$skinlang['usersedit']['PMnotify'] = "PM notify:"; +$skinlang['usersedit']['PMnotifyhint'] = "(Notify by email when there's a new private message)"; +$skinlang['usersedit']['Website'] = "Website:"; +$skinlang['usersedit']['IRC'] = "IRC:"; +$skinlang['usersedit']['ICQ'] = "ICQ:"; +$skinlang['usersedit']['MSN'] = "MSN messenger:"; +$skinlang['usersedit']['Birthdate'] = "Birthdate:"; +$skinlang['usersedit']['Occupation'] = "Occupation:"; +$skinlang['usersedit']['Gender'] = "Gender:"; +$skinlang['usersedit']['Registeredsince'] = "Registered since:"; +$skinlang['usersedit']['Lastlogged'] = "Last logged:"; +$skinlang['usersedit']['LastIP'] = "Last known IP:"; +$skinlang['usersedit']['Logcounter'] = "Log counter:"; +$skinlang['usersedit']['Deletethisuser'] = "! Delete this user !:"; +$skinlang['usersedit']['Update'] = "Update"; + +//users.profile.tpl +$skinlang['usersprofile']['Username'] = "Login:"; +$skinlang['usersprofile']['Userfirstname'] = "User first name:"; +$skinlang['usersprofile']['Userlastname'] = "User last name:"; +$skinlang['usersprofile']['Groupsmembership'] = "Groups membership:"; +$skinlang['usersprofile']['Maingroup'] = "Main group:"; +$skinlang['usersprofile']['Registeredsince'] = "Registered since:"; +$skinlang['usersprofile']['Email'] = "Email:"; +$skinlang['usersprofile']['Hidetheemail'] = "Always hide the email:"; +$skinlang['usersprofile']['PMnotify'] = "PM notify:"; +$skinlang['usersprofile']['PMnotifyhint'] = "(Notify by email when there's a new private message)"; +$skinlang['usersprofile']['Skin'] = "Skin:"; +$skinlang['usersprofile']['Language'] = "Language:"; +$skinlang['usersprofile']['Country'] = "Country:"; +$skinlang['usersprofile']['Location'] = "Location:"; +$skinlang['usersprofile']['Timezone'] = "Timezone:"; +$skinlang['usersprofile']['Website'] = "Website:"; +$skinlang['usersprofile']['IRC'] = "IRC:"; +$skinlang['usersprofile']['ICQ'] = "ICQ:"; +$skinlang['usersprofile']['MSN'] = "MSN messenger:"; +$skinlang['usersprofile']['Birthdate'] = "Birthdate:"; +$skinlang['usersprofile']['Occupation'] = "Occupation:"; +$skinlang['usersprofile']['Gender'] = "Gender:"; +$skinlang['usersprofile']['Avatar'] = "Avatar:"; +$skinlang['usersprofile']['Photo'] = "Photo:"; +$skinlang['usersprofile']['Signature'] = "Signature:"; +$skinlang['usersprofile']['Newpassword'] = "Set a new password:"; +$skinlang['usersprofile']['Newpasswordhint'] = "(Leave empty to keep
    the current password)"; +$skinlang['usersprofile']['Update'] = "Update"; + +//users.register.tpl +$skinlang['usersregister']['Username'] = "Login:"; +$skinlang['usersregister']['Userfirstname'] = "User first name:"; +$skinlang['usersregister']['Userlastname'] = "User last name:"; +$skinlang['usersregister']['Validemail'] = "Valid email:"; +$skinlang['usersregister']['Validemailhint'] = "A valid email is required to complete the registration process !"; +$skinlang['usersregister']['Password'] = "Password:"; +$skinlang['usersregister']['Confirmpassword'] = "Confirm password:"; +$skinlang['usersregister']['Country'] = "Country:"; +$skinlang['usersregister']['Formhint'] = "Once you're registered and logged in, you can have a look in your profile to set more infos about you."; +$skinlang['usersregister']['Submit'] = "Submit"; + +//users.tpl +$skinlang['users']['Page'] = "Page"; +$skinlang['users']['usersperpage'] = "users per page"; +$skinlang['users']['usersinthissection'] = "users in this section"; + +//maintenance.tpl +$skinlang['maintenance']['Username'] = "User name:"; +$skinlang['maintenance']['Password'] = "Password:"; +$skinlang['maintenance']['Login'] = "Login"; + +//admintooltip.js +$skinlang['admintooltip']['pageadd'] = "Add page"; +$skinlang['admintooltip']['pageedit'] = "Edit page"; +$skinlang['admintooltip']['pageeditcategory'] = "Edit category"; +$skinlang['admintooltip']['pageeditoption'] = "Edit config option"; + +//service.message.tpl +$skinlang['message']['gohome'] = "Go home"; diff --git a/skins/sympfy/sympfy.php b/skins/sympfy/sympfy.php new file mode 100644 index 0000000..793dc47 --- /dev/null +++ b/skins/sympfy/sympfy.php @@ -0,0 +1,69 @@ +%s'; +$cfg['pagination_cur'] = '
  • %s
  • '; +$cfg['pagination_arrowleft'] = ""; +$cfg['pagination_arrowright'] = ""; + +$cfg['separator'] = ""; + +$out['ic_arrow_up'] = ""; +$out['ic_arrow_down'] = ""; +$out['ic_arrow_left'] = ""; +$out['ic_arrow_right'] = ""; + +$out['ic_checked'] = ""; +$out['ic_set'] = ""; + +$out['ic_folder'] = ""; +$out['ic_gallery'] = ""; + +$out['ic_pastethumb'] = ""; +$out['ic_pastefile'] = ""; +$out['ic_pasteimage'] = ""; + +$out['ic_alert_error'] = ""; +$out['ic_alert_info'] = ""; +$out['ic_alert_warning'] = ""; +$out['ic_alert_success'] = ""; + +$out['ic_close'] = ""; + +// ========= Plugin RecentItems ============================= // + +$cfg['plu_mask_pages'] = "%3\$s" . " " . "%1\$s" . " " . $cfg['separator'] . " " . "%2\$s" . "
    "; +// %1\$s = Link to the category +// %2\$s = Link to the page +// %3\$s = Date + +$cfg['plu_mask_topics'] = "%2\$s" . " " . "%3\$s" . " " . $cfg['separator'] . " " . "%4\$s" . " (" . "%5\$s" . ")
    "; +// %1\$s = "Follow" image +// %2\$s = Date +// %3\$s = Section +// %4\$s = Topic title +// %5\$s = Number of replies + +$cfg['plu_mask_comments'] = "%3\$s %1\$s" . " " . $cfg['separator'] . " " . "%5\$s" . " " . $cfg['separator'] . " %2\$s
    "; +// %1\$s = Link to the comment +// %2\$s = Author +// %3\$s = Date +// %4\$s = User Avatar +// %5\$s = Comments Text + +$cfg['plu_mask_polls'] = "
    %1\$s
    "; diff --git a/skins/sympfy/sympfy.png b/skins/sympfy/sympfy.png new file mode 100644 index 0000000..d90f495 Binary files /dev/null and b/skins/sympfy/sympfy.png differ diff --git a/skins/sympfy/sympfy.print.css b/skins/sympfy/sympfy.print.css new file mode 100644 index 0000000..7144dc2 --- /dev/null +++ b/skins/sympfy/sympfy.print.css @@ -0,0 +1,219 @@ +/* ============ Skin CSS =============================*/ + +body { + font-size: 13px; +} + +/* #Links +================================================== */ +a, +a:visited { + color: #5ca20d; + text-decoration: none; + outline: 0; + -webkit-transition: color 0.1s ease-in-out; + -moz-transition: color 0.1s ease-in-out; + -o-transition: color 0.1s ease-in-out; + -transition: color 0.1s ease-in-out; +} +a:hover, +a:focus { + color: #888; +} + +#print { + background: #fff; + width: 960px; + margin: 0 auto; + padding: 20px; + box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2); +} + +#header { + width: 100%; + height: 90px; + float: left; + clear: both; +} + +.leftcolumn { + float: left; + width: 50%; +} + +.rightcolumn { + float: right; + width: 50%; + text-align: right; +} + +/* =========== Logo & Slogan ========== */ + +#logo { + margin-top: 10px; + margin-bottom: 20px; +} + +#logo a img { + float: left; +} + +.logos { + float: left; + display: block; + width: 114px; + height: 24px; +} + +#slogan { + color: #888; + border-left: 1px solid #e9e9e9; + margin: 0 0 0 20px; + padding: 5px 0 5px 20px; + float: left; +} + +/* ============== Various ============== */ + +.disp { + padding: 12px; + margin: 0; +} +.block { + padding: 8px; + margin: 8px; + background-color: #f6f6f6; +} +.error { + padding: 48px; + margin: 0; + color: #cc1212; + font-size: 120%; + text-align: center; +} +.codetitle { + font-size: 10px; + color: #59739b; + padding: 2px; + margin-top: 5px; +} +.code { + font-size: 11px; + color: #59739b; + background-color: #eff0c2; + padding: 2px; + margin-bottom: 5px; + font-family: monospace; +} +.valid { + height: 48px; + text-align: center; + vertical-align: middle; +} +.download { + font-size: 110%; + text-align: center; + background-color: #e8e8e8; + padding: 16px; + margin-top: 16px; +} +.paging { + text-align: center; + padding: 8px; + width: 100%; +} +.coltop { + font-weight: normal; + color: #f6f6f6; + text-align: center; + color: rgba(255, 255, 255, 0.9); + background-color: #4c4c4c !important; +} + +.cattop { + background-color: #e8e7e7 !important; +} + +.odd { + background-color: #ffffff; +} +.even { + background-color: #f7f7f7; +} + +.centerall { + text-align: center; + vertical-align: middle; +} +.desc { + font-size: 90%; + padding: 3px; + color: #646464; + font-style: italic; +} +.spoiler { + padding: 8px; + margin: 8px; + border: 1px dashed #cccccc; + background-color: #dbe5e9; +} +.more { + font-size: 90%; + margin-left: 8px; +} + +.colleft { + float: left; + margin: 0px 4px 0px 4px; +} +.colright { + float: right; + margin: 0px 4px 0px 4px; +} + +.signature { + color: #979797; + font-size: 90%; + max-height: 96px; + overflow: auto; + margin-top: 16px; +} +.signature a { + color: #000000; +} +.fhead { + font-size: 140%; + margin: 0; + letter-spacing: -1px; + font-weight: normal; + background-color: #ffcc00; +} +.fblock { + background-color: #ff0000; +} + +/* ============== Tables ============== */ + +table.flat { + width: 100%; +} +table.main { + width: 100%; +} +table.cells { + width: 100%; +} +table.list { + width: 100%; +} +table.striped td { + vertical-align: middle; +} + +table.hovered tbody tr:hover td, +table.hovered thead tr:hover th { + background: rgb(0, 0, 0); + background: rgba(0, 0, 0, 0.2); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); + -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"; +} diff --git a/skins/sympfy/sympfy.ru.lang.php b/skins/sympfy/sympfy.ru.lang.php new file mode 100644 index 0000000..67ab3e9 --- /dev/null +++ b/skins/sympfy/sympfy.ru.lang.php @@ -0,0 +1,347 @@ +Если вам все же необходимо что-либо исправить, свяжитесь с нами.
    Страница станет общедоступной, только после того как администрация ее проверит и опубликует.
    "; +$skinlang['pageadd']['Submit'] = "Отправить"; +$skinlang['pageadd']['Publish'] = "Опубликовать"; // New v173 +$skinlang['pageadd']['Parsing'] = "Парсинг:"; // New v173 +$skinlang['pageadd']['Thumbs'] = "Миниатюры:"; // New v178 + +$skinlang['pageadd']['Allowcomments'] = "Разрешить комментирование?"; // New v173 +$skinlang['pageadd']['Allowratings'] = "Разрешить изменение рейтинга?"; // New v173 + +//page.edit.tpl +$skinlang['pageedit']['Category'] = "Раздел:"; +$skinlang['pageedit']['Title'] = "Заголовок:"; +$skinlang['pageedit']['Description'] = "Описание:"; +$skinlang['pageedit']['Author'] = "Автор:"; +$skinlang['pageedit']['Owner'] = "Владелец:"; +$skinlang['pageedit']['Date'] = "Дата:"; +$skinlang['pageedit']['Begin'] = "Начато:"; +$skinlang['pageedit']['Expire'] = "Истекает:"; +$skinlang['pageedit']['Pagehitcount'] = "Просмотров:"; +$skinlang['pageedit']['Extrakey'] = "Дополнительное поле"; +$skinlang['pageedit']['Alias'] = "Псевдоним страницы (алиас):"; +$skinlang['pageedit']['Parsing'] = "Парсинг:"; +$skinlang['pageedit']['Bodyofthepage'] = "Текст страницы:"; +$skinlang['pageedit']['Filedownload'] = "Прикрепить файл ?"; +$skinlang['pageedit']['URL'] = "Ссылка:"; +$skinlang['pageedit']['URLhint'] = "(Если 'Прикрепить файл'='Да')"; +$skinlang['pageedit']['Filesize'] = "Размер файла (KB):"; +$skinlang['pageedit']['Filesizehint'] = "(Если 'Прикрепить файл'='Да')"; +$skinlang['pageedit']['Filehitcount'] = "Обращений:"; +$skinlang['pageedit']['Filehitcounthint'] = "(Если 'Прикрепить файл'='Да')"; +$skinlang['pageedit']['Pageid'] = "ID страницы:"; +$skinlang['pageedit']['Deletethispage'] = "!Удалить эту страницу!:"; +$skinlang['pageedit']['Update'] = "Обновить"; +$skinlang['pageedit']['Thumbs'] = "Миниатюры:"; // New v178 + +$skinlang['pageedit']['Allowcomments'] = "Разрешить комментирование?"; // New v173 +$skinlang['pageedit']['Allowratings'] = "Разрешить изменение рейтинга?"; // New v173 + +//page.tpl +$skinlang['page']['Author'] = "Автор:"; +$skinlang['page']['Submittedby'] = "Добавил:"; +$skinlang['page']['Date'] = "Дата:"; +$skinlang['page']['Comments'] = "Комментарии:"; +$skinlang['page']['Ratings'] = "Оценка:"; +$skinlang['page']['Summary'] = "Сводка:"; +$skinlang['page']['FilesizeKB'] = "KB"; +$skinlang['page']['Filesize'] = "Размер:"; +$skinlang['page']['Membersrating'] = "Рейтинг:"; +$skinlang['page']['Download'] = "Загрузить:"; +$skinlang['page']['Hits'] = "Просмотров:"; +$skinlang['page']['Otherpages'] = "Ещё в разделе"; +$skinlang['page']['Similarpages'] = "Ещё почитать"; + +//pfs.tpl +$skinlang['pfs']['Insertasthumbnail'] = "Вставить как эскиз"; +$skinlang['pfs']['Insertasimage'] = "Вставить изображение"; +$skinlang['pfs']['Insertaslink'] = "Вставить ссылку на файл"; + +//pm.send.tpl +$skinlang['pmsend']['Sendmessageto'] = "Отправить сообщение для:"; +$skinlang['pmsend']['Sendmessagetohint'] = "(Можно отправить до 10 адресатов, для этого перечисли их имена через запятую)"; +$skinlang['pmsend']['Subject'] = "Тема сообщения:"; +$skinlang['pmsend']['Message'] = "Текст сообщения:"; +$skinlang['pmsend']['Sendmessage'] = "Отправить сообщение"; + +//pm.tpl +$skinlang['pm']['State'] = "Статус"; +$skinlang['pm']['Sender'] = "Отправитель"; +$skinlang['pm']['SubjectClick'] = "Тема"; +$skinlang['pm']['Date'] = "Дата"; +$skinlang['pm']['Action'] = "Действие"; +$skinlang['pm']['Recipient'] = "Получатель"; +$skinlang['pm']['Nomessages'] = "Сообщений нет."; +$skinlang['pm']['Page'] = "Страница"; +$skinlang['pm']['Subject'] = "Тема"; +$skinlang['pm']['Sender'] = "Отправитель"; +$skinlang['pm']['Recipient'] = "Получатель"; +$skinlang['pm']['Date'] = "Дата"; +$skinlang['pm']['Newmessage'] = "Новое сообщение"; +$skinlang['pm']['Message'] = "Сообщение"; +$skinlang['pm']['Reply'] = "Ответить"; +$skinlang['pm']['Sendtoarchives'] = "Переместить в архив"; +$skinlang['pm']['Delete'] = "Удалить"; + +//polls.tpl +$skinlang['polls']['voterssince'] = "проголосовавших с"; +$skinlang['polls']['Comments'] = "Комментарии:"; +$skinlang['polls']['Allpolls'] = "Все опросы"; + +//ratings.tpl +$skinlang['ratings']['Averagemembersrating'] = "Средняя оценка (от 1 до 10):"; +$skinlang['ratings']['Votes'] = "Опрошено:"; +$skinlang['ratings']['Rate'] = "Оценка:"; +$skinlang['ratings']['Rateit'] = "Оценить !"; + +//user.auth.tpl +$skinlang['usersauth']['Username'] = "Логин:"; +$skinlang['usersauth']['Password'] = "Пароль:"; +$skinlang['usersauth']['Rememberme'] = "Запомнить?"; +$skinlang['usersauth']['Login'] = "Вход"; +$skinlang['usersauth']['Register'] = "Регистрация"; +$skinlang['usersauth']['Lostpassword'] = "Вспомнить пароль?"; + +//users.details.tpl +$skinlang['usersdetails']['Sendprivatemessage'] = "Послать личное сообщение:"; +$skinlang['usersdetails']['Maingroup'] = "Основная группа:"; +$skinlang['usersdetails']['Userfirstname'] = "Имя:"; +$skinlang['usersdetails']['Userlastname'] = "Фамилия:"; +$skinlang['usersdetails']['Memberof'] = "Состоит в группах:"; +$skinlang['usersdetails']['Country'] = "Страна:"; +$skinlang['usersdetails']['Location'] = "Местоположение:"; +$skinlang['usersdetails']['Timezone'] = "Часовой пояс:"; +$skinlang['usersdetails']['Weblog'] = "Журнал:"; +$skinlang['usersdetails']['Website'] = "Сайт:"; +$skinlang['usersdetails']['IRC'] = "IRC:"; +$skinlang['usersdetails']['ICQ'] = "ICQ:"; +$skinlang['usersdetails']['MSN'] = "MSN messenger:"; +$skinlang['usersdetails']['Birthdate'] = "День рождения:"; +$skinlang['usersdetails']['Age'] = "Возраст:"; +$skinlang['usersdetails']['Occupation'] = "Род занятий:"; +$skinlang['usersdetails']['Gender'] = "Пол:"; +$skinlang['usersdetails']['Signature'] = "Подпись:"; +$skinlang['usersdetails']['Registrationdate'] = "Дата регистрации:"; +$skinlang['usersdetails']['Avatar'] = "Аватар:"; +$skinlang['usersdetails']['Photo'] = "Фотография:"; + +//users.edit.tpl +$skinlang['usersedit']['UserID'] = "ID пользователя:"; +$skinlang['usersedit']['Username'] = "Логин:"; +$skinlang['usersedit']['Userfirstname'] = "Имя:"; +$skinlang['usersedit']['Userlastname'] = "Фамилия:"; +$skinlang['usersedit']['Groupsmembership'] = "Группы:"; +$skinlang['usersedit']['Maingroup'] = "(основная)"; +$skinlang['usersedit']['Memberof'] = "В группе:"; +$skinlang['usersedit']['Country'] = "Страна:"; +$skinlang['usersedit']['Location'] = "Местоположение:"; +$skinlang['usersedit']['Timezone'] = "Часовй пояс:"; +$skinlang['usersedit']['Skin'] = "Оформление сайта (скин):"; +$skinlang['usersedit']['Language'] = "Язык:"; +$skinlang['usersedit']['Avatar'] = "Аватар:"; +$skinlang['usersedit']['Signature'] = "Подпись:"; +$skinlang['usersedit']['Photo'] = "Фотография:"; +$skinlang['usersedit']['Newpassword'] = "Установить новый пароль:"; +$skinlang['usersedit']['Newpasswordhint'] = "(Оставьте пустым, чтобы сохранить текущий пароль)"; +$skinlang['usersedit']['Email'] = "E-mail:"; +$skinlang['usersedit']['Hidetheemail'] = "Прятать e-mail адрес ?"; +$skinlang['usersedit']['PMnotify'] = "Сообщать о новых ЛС:"; +$skinlang['usersedit']['PMnotifyhint'] = "(Уведомлять на e-mail о приходе новых личных сообщений)"; +$skinlang['usersedit']['Website'] = "Сайт:"; +$skinlang['usersedit']['IRC'] = "IRC:"; +$skinlang['usersedit']['ICQ'] = "ICQ:"; +$skinlang['usersedit']['MSN'] = "MSN messenger:"; +$skinlang['usersedit']['Birthdate'] = "День рождения:"; +$skinlang['usersedit']['Occupation'] = "Род занятий:"; +$skinlang['usersedit']['Gender'] = "Пол:"; +$skinlang['usersedit']['Registeredsince'] = "Зарегистрирован с:"; +$skinlang['usersedit']['Lastlogged'] = "Последний раз входил:"; +$skinlang['usersedit']['LastIP'] = "Последний известный IP:"; +$skinlang['usersedit']['Logcounter'] = "Счетчик действий:"; +$skinlang['usersedit']['Deletethisuser'] = "! Удалить этого пользователя !:"; +$skinlang['usersedit']['Update'] = "Обновить"; + +//users.profile.tpl +$skinlang['usersprofile']['Username'] = "Логин:"; +$skinlang['usersprofile']['Userfirstname'] = "Имя:"; +$skinlang['usersprofile']['Userlastname'] = "Фамилия:"; +$skinlang['usersprofile']['Groupsmembership'] = "Состоит в группах:"; +$skinlang['usersprofile']['Maingroup'] = "Основная группа:"; +$skinlang['usersprofile']['Registeredsince'] = "Зарегистрирован с:"; +$skinlang['usersprofile']['Email'] = "E-mail:"; +$skinlang['usersprofile']['Hidetheemail'] = "Прятать e-mail адрес?"; +$skinlang['usersprofile']['PMnotify'] = "Сообщать о новых ЛС:"; +$skinlang['usersprofile']['PMnotifyhint'] = "(Уведомлять на e-mail о приходе новых личных сообщений)"; +$skinlang['usersprofile']['Skin'] = "Оформление сайта (скин):"; +$skinlang['usersprofile']['Language'] = "Язык системы:"; +$skinlang['usersprofile']['Country'] = "Страна:"; +$skinlang['usersprofile']['Location'] = "Местоположение:"; +$skinlang['usersprofile']['Timezone'] = "Часовой пояс:"; +$skinlang['usersprofile']['Website'] = "Сайт:"; +$skinlang['usersprofile']['IRC'] = "IRC:"; +$skinlang['usersprofile']['ICQ'] = "ICQ:"; +$skinlang['usersprofile']['MSN'] = "MSN messenger:"; +$skinlang['usersprofile']['Birthdate'] = "День рождения:"; +$skinlang['usersprofile']['Occupation'] = "Род занятий:"; +$skinlang['usersprofile']['Gender'] = "Пол:"; +$skinlang['usersprofile']['Avatar'] = "Аватар:"; +$skinlang['usersprofile']['Photo'] = "Фотография:"; +$skinlang['usersprofile']['Signature'] = "Подпись:"; +$skinlang['usersprofile']['Newpassword'] = "Установить новый пароль:"; +$skinlang['usersprofile']['Newpasswordhint'] = "(Оставьте пустым, чтобы сохранить текущий пароль)"; +$skinlang['usersprofile']['Update'] = "Обновить"; + +//users.register.tpl +$skinlang['usersregister']['Username'] = "Логин :"; +$skinlang['usersregister']['Userfirstname'] = "Имя :"; +$skinlang['usersregister']['Userlastname'] = "Фамилия :"; +$skinlang['usersregister']['Validemail'] = "Ваш e-mail :"; +$skinlang['usersregister']['Validemailhint'] = "Для завершения процесса регистрации необходим действующий e-mail !"; +$skinlang['usersregister']['Password'] = "Пароль :"; +$skinlang['usersregister']['Confirmpassword'] = "Повтор пароля :"; +$skinlang['usersregister']['Country'] = "Страна :"; +$skinlang['usersregister']['Formhint'] = "Более детально настроить свой аккаунт вы сможете после регистрации на сайте, в профиле."; +$skinlang['usersregister']['Submit'] = "Зарегистрироваться"; + +//users.tpl +$skinlang['users']['Page'] = "Страница"; +$skinlang['users']['usersperpage'] = "пользователей на страницу"; +$skinlang['users']['usersinthissection'] = "пользователей в этом разделе"; + +//maintenance.tpl +$skinlang['maintenance']['Username'] = "Имя:"; +$skinlang['maintenance']['Password'] = "Пароль:"; +$skinlang['maintenance']['Login'] = "Вход"; + +//admintooltip.js +$skinlang['admintooltip']['pageadd'] = "Добавить страницу"; +$skinlang['admintooltip']['pageedit'] = "Редактировать страницу"; +$skinlang['admintooltip']['pageeditcategory'] = "Редактировать категорию"; +$skinlang['admintooltip']['pageeditoption'] = "Редактировать свойство"; + +//service.message.tpl +$skinlang['message']['gohome'] = "Вернуться на главную"; diff --git a/skins/sympfy/users.auth.tpl b/skins/sympfy/users.auth.tpl new file mode 100644 index 0000000..0d19866 --- /dev/null +++ b/skins/sympfy/users.auth.tpl @@ -0,0 +1,83 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {USERS_AUTH_TITLE}

    + +
    + {USERS_AUTH_SUBTITLE} +
    + +
    + +
    + +
    + + +
    + {USERS_AUTH_ERROR_BODY} +
    + + +
    + +
      + +
    • +
      {PHP.skinlang.usersauth.Username}
      +
      {USERS_AUTH_USER}
      +
    • + +
    • +
      {PHP.skinlang.usersauth.Password}
      +
      {USERS_AUTH_PASSWORD}
      +
    • + +
    • +
      {PHP.skinlang.usersauth.Rememberme}
      +
      {PHP.out.guest_cookiettl}
      +
    • + + +
    • +
      +
      +
      {USERS_AUTH_VERIFYIMG}
      +
      {USERS_AUTH_VERIFYINPUT}
      +
      +
    • + + +
    • +
      + +
      +
    • + +
    + +
    + + + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/users.details.tpl b/skins/sympfy/users.details.tpl new file mode 100644 index 0000000..c5bb14a --- /dev/null +++ b/skins/sympfy/users.details.tpl @@ -0,0 +1,127 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {USERS_DETAILS_SHORTTITLE}

    + +
    + {USERS_DETAILS_SUBTITLE} +
    + +
    + +
    + + +
    + {USERS_DETAILS_ADMIN_EDIT} +
    + + +
    + +
    +
    {PHP.skinlang.usersdetails.Sendprivatemessage}
    +
    {USERS_DETAILS_PM}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Userfirstname}
    +
    {USERS_DETAILS_FIRSTNAME}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Userlastname}
    +
    {USERS_DETAILS_LASTNAME}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Maingroup}
    +
    {USERS_DETAILS_MAINGRP}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Memberof}
    +
    {PHP.skinlang.usersedit.Maingroup}
     {PHP.out.img_down}
    {USERS_DETAILS_GROUPS}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Country}
    +
    {USERS_DETAILS_COUNTRYFLAG} {USERS_DETAILS_COUNTRY}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Location}
    +
    {USERS_DETAILS_LOCATION}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Timezone}
    +
    {USERS_DETAILS_TIMEZONE}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Weblog}
    +
    {USERS_DETAILS_JOURNAL}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Website}
    +
    {USERS_DETAILS_WEBSITE}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Birthdate}
    +
    {USERS_DETAILS_BIRTHDATE}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Age}
    +
    {USERS_DETAILS_AGE}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Occupation}
    +
    {USERS_DETAILS_OCCUPATION}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Gender}
    +
    {USERS_DETAILS_GENDER}
    +
    + +
    +
    {USERS_DETAILS_INSTAGRAM_TITLE}
    +
    {USERS_DETAILS_INSTAGRAM} {USERS_DETAILS_INSTAGRAM_MERA}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Signature}
    +
    {USERS_DETAILS_TEXT}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Registrationdate}
    +
    {USERS_DETAILS_REGDATE}
    +
    + +
    +
    {PHP.skinlang.usersdetails.Avatar}
    +
    {USERS_DETAILS_AVATAR}
    +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/users.edit.tpl b/skins/sympfy/users.edit.tpl new file mode 100644 index 0000000..d85d351 --- /dev/null +++ b/skins/sympfy/users.edit.tpl @@ -0,0 +1,188 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {USERS_EDIT_SHORTTITLE}

    + +
    + {USERS_EDIT_SUBTITLE} +
    + +
    + +
    + + + +
    + {USERS_EDIT_ERROR_BODY} +
    + + + +
    + + + +
      +
    • +
      +
      #{USERS_EDIT_ID}
      +
    • + +
    • +
      +
      {USERS_EDIT_NAME}
      +
    • + +
    • +
      +
      {USERS_EDIT_FIRSTNAME}
      +
    • + +
    • +
      +
      {USERS_EDIT_LASTNAME}
      +
    • + +
    • +
      +
      {PHP.skinlang.usersedit.Maingroup}
       {PHP.out.img_down}
      {USERS_EDIT_GROUPS}
      +
    • + +
    • +
      +
      {USERS_EDIT_COUNTRY}
      +
    • + +
    • +
      +
      {USERS_EDIT_LOCATION}
      +
    • + +
    • +
      +
      {USERS_EDIT_TIMEZONE}
      +
    • + +
    • +
      +
      {USERS_EDIT_SKIN}
      +
    • + +
    • +
      +
      {USERS_EDIT_LANG}
      +
    • + +
    • +
      +
      {USERS_EDIT_AVATAR}
      +
    • + +
    • +
      +
      {USERS_EDIT_SIGNATURE}
      +
    • + +
    • +
      +
      + {USERS_EDIT_NEWPASS} +
      {PHP.skinlang.usersedit.Newpasswordhint}
      +
      +
    • + +
    • +
      +
      {USERS_EDIT_EMAIL}
      +
    • + +
    • +
      +
      {USERS_EDIT_HIDEEMAIL}
      +
    • + +
    • +
      +
      {USERS_EDIT_PMNOTIFY} {PHP.skinlang.usersedit.PMnotifyhint}
      +
    • + +
    • +
      +
      {USERS_EDIT_WEBSITE}
      +
    • + +
    • +
      +
      {USERS_EDIT_BIRTHDATE}
      +
    • + +
    • +
      +
      {USERS_EDIT_OCCUPATION}
      +
    • + +
    • +
      +
      {USERS_EDIT_GENDER}
      +
    • + +
    • +
      +
      {USERS_EDIT_INSTAGRAM} {USERS_EDIT_INSTAGRAM_MERA}
      +
    • + +
    • +
      +
      {USERS_EDIT_TEXT}
      +
    • + +
    • +
      +
      {USERS_EDIT_REGDATE}
      +
    • + +
    • +
      +
      {USERS_EDIT_LASTLOG}
      +
    • + +
    • +
      +
      {USERS_EDIT_LASTIP}
      +
    • + +
    • +
      +
      {USERS_EDIT_LOGCOUNT}
      +
    • + +
    • +
      +
      {USERS_EDIT_DELETE}
      +
    • + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/users.profile.tpl b/skins/sympfy/users.profile.tpl new file mode 100644 index 0000000..7765c0e --- /dev/null +++ b/skins/sympfy/users.profile.tpl @@ -0,0 +1,154 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {USERS_PROFILE_SHORTTITLE}

    + +
    + {USERS_PROFILE_SUBTITLE} +
    + +
    + +
    + + + +
    + {USERS_PROFILE_ERROR_BODY} +
    + + + +
    + + + +
      +
    • +
      +
      {USERS_PROFILE_NAME}
      +
    • + +
    • +
      +
      {USERS_PROFILE_FIRSTNAME}
      +
    • + +
    • +
      +
      {USERS_PROFILE_LASTNAME}
      +
    • + +
    • +
      +
      {PHP.skinlang.usersprofile.Maingroup}
       {PHP.out.img_down}
      {USERS_PROFILE_GROUPS}
      +
    • + +
    • +
      +
      {USERS_PROFILE_REGDATE}
      +
    • + +
    • +
      +
      {USERS_PROFILE_EMAIL}
      +
    • + +
    • +
      +
      {USERS_PROFILE_HIDEEMAIL}
      +
    • + +
    • +
      +
      {USERS_PROFILE_PMNOTIFY} {PHP.skinlang.usersprofile.PMnotifyhint}
      +
    • + +
    • +
      +
      {USERS_PROFILE_SKIN}
      +
    • + +
    • +
      +
      {USERS_PROFILE_LANG}
      +
    • + +
    • +
      +
      {USERS_PROFILE_COUNTRY}
      +
    • + +
    • +
      +
      {USERS_PROFILE_LOCATION}
      +
    • + +
    • +
      +
      {USERS_PROFILE_TIMEZONE}
      +
    • + +
    • +
      +
      {USERS_PROFILE_WEBSITE}
      +
    • + +
    • +
      +
      {USERS_PROFILE_BIRTHDATE}
      +
    • + +
    • +
      +
      {USERS_PROFILE_OCCUPATION}
      +
    • + +
    • +
      +
      {USERS_PROFILE_GENDER}
      +
    • + +
    • +
      +
      {USERS_PROFILE_AVATAR}
      +
    • + +
    • +
      +
      {USERS_PROFILE_TEXT}
      +
    • + +
    • +
      +
      +
      {USERS_PROFILE_NEWPASS1}
      +
      {USERS_PROFILE_NEWPASS2}
      +
      {PHP.skinlang.usersprofile.Newpasswordhint}
      +
      +
    • + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/users.register.tpl b/skins/sympfy/users.register.tpl new file mode 100644 index 0000000..9f98278 --- /dev/null +++ b/skins/sympfy/users.register.tpl @@ -0,0 +1,92 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {USERS_REGISTER_TITLE}

    + +
    + {USERS_REGISTER_SUBTITLE} +
    + +
    + +
    + +
    + + +
    + {USERS_REGISTER_ERROR_BODY} +
    + + +
    + +
      +
    • +
      +
      {USERS_REGISTER_USER}
      +
    • + +
    • +
      +
      {USERS_REGISTER_EMAIL}
      +
      {PHP.skinlang.usersregister.Validemailhint}
      +
      +
    • + +
    • +
      +
      {USERS_REGISTER_PASSWORD}
      +
    • + +
    • +
      +
      {USERS_REGISTER_PASSWORDREPEAT}
      +
    • + +
    • +
      +
      {USERS_REGISTER_COUNTRY}
      +
    • + + +
    • +
      +
      +
      {USERS_REGISTER_VERIFYIMG}
      +
      {USERS_REGISTER_VERIFYINPUT}
      +
      +
    • + + +
    • +
      +
      {PHP.skinlang.usersregister.Formhint}
      +
      +
    • + +
    • +
      + +
      +
    • +
    + +
    + +
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/skins/sympfy/users.tpl b/skins/sympfy/users.tpl new file mode 100644 index 0000000..fd2b9b0 --- /dev/null +++ b/skins/sympfy/users.tpl @@ -0,0 +1,109 @@ + + +
    + +
    + +
    + + {BREADCRUMBS} + +

    {USERS_SHORTTITLE}

    + +
    + {USERS_SUBTITLE} +
    + +
    + +
    + +
    +
    {USERS_TOP_FILTERS}
    +
    {USERS_TOP_ALPHAFILTERS}
    +
    + + + +
    + +
      +
    • {USERS_TOP_PAGEPREV}
    • + {USERS_TOP_PAGINATION} +
    • {USERS_TOP_PAGENEXT}
    • +
    + +
    + + + +
    {PHP.skinlang.users.Page} {USERS_TOP_CURRENTPAGE}/ {USERS_TOP_TOTALPAGE} - {USERS_TOP_MAXPERPAGE} {PHP.skinlang.users.usersperpage} - {USERS_TOP_TOTALUSERS} {PHP.skinlang.users.usersinthissection}
    + +
    + +
    + +
    +
    {USERS_TOP_PM}
    +
    {USERS_TOP_NAME}
    +
    {USERS_TOP_MAINGRP}
    +
    {USERS_TOP_COUNTRY}
    +
    {USERS_TOP_REGDATE}
    +
    + +
    + +
    + + + +
    +
    + {USERS_ROW_PM} +
    +
    + {USERS_ROW_NAME} {USERS_ROW_TAG} +
    +
    +
    +
    {USERS_ROW_MAINGRP}
    +
    {USERS_ROW_MAINGRPSTARS}
    +
    +
    +
    + {USERS_ROW_COUNTRYFLAG} {USERS_ROW_COUNTRY} +
    +
    + {USERS_ROW_REGDATE} +
    +
    + + + +
    + +
    + +
    {PHP.skinlang.users.Page} {USERS_TOP_CURRENTPAGE}/ {USERS_TOP_TOTALPAGE} - {USERS_TOP_MAXPERPAGE} {PHP.skinlang.users.usersperpage} - {USERS_TOP_TOTALUSERS} {PHP.skinlang.users.usersinthissection}
    + + + +
    + +
      +
    • {USERS_TOP_PAGEPREV}
    • + {USERS_TOP_PAGINATION} +
    • {USERS_TOP_PAGENEXT}
    • +
    + +
    + + + +
    + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.banlist.tpl b/system/adminskin/simple/admin.banlist.tpl new file mode 100644 index 0000000..eb5d58f --- /dev/null +++ b/system/adminskin/simple/admin.banlist.tpl @@ -0,0 +1,81 @@ + + +
    +
    +

    {PHP.L.Banlist}

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Until}{PHP.L.adm_ipmask}{PHP.L.adm_emailmask}{PHP.L.Reason}{PHP.L.Update}
    {BANLIST_EDIT_EXPIRE}{BANLIST_EDIT_IP}{BANLIST_EDIT_EMAIL_MASK}{BANLIST_EDIT_REASON}
    + +
    + +
    + +
    +
    +

    {PHP.L.addnewentry}

    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Duration} :{BANLIST_ADD_NEXPIRE}
    {PHP.L.Ipmask} :{BANLIST_ADD_IP}
    {PHP.L.Emailmask} :{BANLIST_ADD_EMAIL_MASK}
    {PHP.L.Reason} :{BANLIST_ADD_REASON}
    + +
    + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.breadcrumbs.tpl b/system/adminskin/simple/admin.breadcrumbs.tpl new file mode 100644 index 0000000..c52c014 --- /dev/null +++ b/system/adminskin/simple/admin.breadcrumbs.tpl @@ -0,0 +1,14 @@ + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.cache.tpl b/system/adminskin/simple/admin.cache.tpl new file mode 100644 index 0000000..112574a --- /dev/null +++ b/system/adminskin/simple/admin.cache.tpl @@ -0,0 +1,49 @@ + + +
    +
    +

    {PHP.L.adm_internalcache}

    +
    +
    + +
    + +

    + {PHP.L.Refresh} | + {PHP.L.adm_purgeall} | + {PHP.L.adm_showall} +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Item}{PHP.L.Expire}{PHP.L.Size}{PHP.L.Value}
    {CACHE_LIST_NAME}{CACHE_LIST_EXPIRE}{CACHE_LIST_SIZE}{CACHE_LIST_VALUE}
     {CACHE_SIZE} 
    + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.comments.tpl b/system/adminskin/simple/admin.comments.tpl new file mode 100644 index 0000000..8fff4c6 --- /dev/null +++ b/system/adminskin/simple/admin.comments.tpl @@ -0,0 +1,67 @@ + + +
    +
    +

    {PHP.L.Comments}

    +
    +
    + +
    + + + +
    +
      + + {COMMENTS_PAGINATION} + +
    +
    + + + +

    {PHP.L.viewdeleteentries} :

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}#{PHP.L.Code}{PHP.L.Author}{PHP.L.Date}{PHP.L.Comment}{PHP.L.Open}
    {COMMENTS_LIST_ID}{COMMENTS_LIST_CODE}{COMMENTS_LIST_AUTHOR}{COMMENTS_LIST_DATE}{COMMENTS_LIST_TEXT}
    {PHP.L.Total} : {COMMENTS_TOTAL}
    + + + +
    +
      + + {COMMENTS_PAGINATION} + +
    +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.config.gallery.tpl b/system/adminskin/simple/admin.config.gallery.tpl new file mode 100644 index 0000000..20f3a8a --- /dev/null +++ b/system/adminskin/simple/admin.config.gallery.tpl @@ -0,0 +1,37 @@ + + +
    +
    +

    {PHP.L.adm_gd}

    +
    +
    + + + +

    {PHP.L.adm_nogd}

    + + + + + + + + + + + + + + + + + + +
    {GD_SETTING_NAME}{GD_SETTING_VALUE}
    + + + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.config.lang.tpl b/system/adminskin/simple/admin.config.lang.tpl new file mode 100644 index 0000000..1ff6f0f --- /dev/null +++ b/system/adminskin/simple/admin.config.lang.tpl @@ -0,0 +1,35 @@ + + +
    +
    +

    {PHP.L.Default} {PHP.L.core_lang}

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.core_lang}{PHP.L.Code}{PHP.L.Description}{PHP.L.Default}
    {LANG_LIST_NAME}{LANG_LIST_CODE}{LANG_LIST_DESC}{LANG_LIST_DEFAULT}
    + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.config.skin.tpl b/system/adminskin/simple/admin.config.skin.tpl new file mode 100644 index 0000000..51b3253 --- /dev/null +++ b/system/adminskin/simple/admin.config.skin.tpl @@ -0,0 +1,37 @@ + + +
    +
    +

    {PHP.L.Default} {PHP.L.core_skin}

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.core_skin}{PHP.L.Preview} {PHP.L.Default}{PHP.L.Set}
    {SKIN_LIST_NAME}{SKIN_LIST_PREVIEW}{SKIN_LIST_DESC}{SKIN_LIST_DEFAULT}{SKIN_LIST_SET}
    + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.config.time.tpl b/system/adminskin/simple/admin.config.time.tpl new file mode 100644 index 0000000..5081416 --- /dev/null +++ b/system/adminskin/simple/admin.config.time.tpl @@ -0,0 +1,33 @@ + + +
    +
    +

    {PHP.L.adm_clocks}

    +
    + +
    + + + + + + + + + + + + + + + + + + +
    {PHP.L.adm_time1}{CONFIG_TIME_1}
    {PHP.L.adm_time2}{CONFIG_TIME_2} GMT
    {PHP.L.adm_time3}{CONFIG_TIME_3}
    {PHP.L.adm_time4} : {CONFIG_TIME_4}
    + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.config.tpl b/system/adminskin/simple/admin.config.tpl new file mode 100644 index 0000000..3813bf9 --- /dev/null +++ b/system/adminskin/simple/admin.config.tpl @@ -0,0 +1,72 @@ + + +
    + +
    +

    {ADMIN_CONFIG_ADMINLEGEND}

    +
    + +
    + +
    + +
    + +
    +
    +
    {PHP.L.Configname}
    +
    {PHP.L.Configuration}
    +
    {PHP.L.Reset}
    +
    +
    + +
    + + + +
    +
    + {CONFIG_LIST_TITLE} +
    +
    +
    {CONFIG_LIST_FIELD}
    +
    {CONFIG_LIST_DESC}
    +
    +
    + +
    +
    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + + + +
    + +
    +

    {PHP.L.Help}

    +
    + +
    +

    {HELP_CONFIG}

    +
    + +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.dic.tpl b/system/adminskin/simple/admin.dic.tpl new file mode 100644 index 0000000..eb1ca82 --- /dev/null +++ b/system/adminskin/simple/admin.dic.tpl @@ -0,0 +1,426 @@ + + + + +
    +
    +

    {PHP.L.core_dic}

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Id}{PHP.L.Title}{PHP.L.adm_dic_code}{PHP.L.Type}{PHP.L.Options}
    {DIC_LIST_ID}{DIC_LIST_TITLE}{DIC_LIST_CODE}{DIC_LIST_TYPE} + + + + + + + + + +
    + +
    + +
    + +

    {PHP.L.adm_dic_add}

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Title} :{DIC_ADD_TITLE} {PHP.L.adm_required}
    {PHP.L.adm_dic_code} :{DIC_ADD_CODE} {PHP.L.adm_required}
    {PHP.L.adm_dic_mera} :{DIC_ADD_MERA}
    {PHP.L.adm_dic_values} :{DIC_ADD_VALUES}{PHP.L.adm_dic_comma_separat}
    {PHP.L.adm_dic_form_title} :{DIC_ADD_FORM_TITLE}
    {PHP.L.adm_dic_form_desc} :{DIC_ADD_FORM_DESC}
    {PHP.L.adm_dic_form_size} :{DIC_ADD_FORM_SIZE}
    {PHP.L.adm_dic_form_maxsize} :{DIC_ADD_FORM_MAXSIZE}
    {PHP.L.adm_dic_form_cols} :{DIC_ADD_FORM_COLS}
    {PHP.L.adm_dic_form_rows} :{DIC_ADD_FORM_ROWS}
    {PHP.L.Type} :{DIC_ADD_TYPE}
    + +
    + +
    +
    +
    + + + + + +
    + +
    +

    {PHP.L.adm_dic_edit}

    +
    + +
    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Title} :{DIC_EDIT_TITLE} {PHP.L.adm_required}
    {PHP.L.adm_dic_mera} :{DIC_EDIT_MERA}
    {PHP.L.adm_dic_values} :{DIC_EDIT_VALUES}{PHP.L.adm_dic_comma_separat}
    {PHP.L.adm_dic_form_title} :{DIC_EDIT_FORM_TITLE}
    {PHP.L.adm_dic_form_desc} :{DIC_EDIT_FORM_DESC}
    {PHP.L.adm_dic_form_size} :{DIC_EDIT_FORM_SIZE}
    {PHP.L.adm_dic_form_maxsize} :{DIC_EDIT_FORM_MAXSIZE}
    {PHP.L.adm_dic_form_cols} :{DIC_EDIT_FORM_COLS}
    {PHP.L.adm_dic_form_rows} :{DIC_EDIT_FORM_ROWS}
    {PHP.L.Type} :{DIC_EDIT_TYPE}
    {PHP.L.adm_parentcat} :{DIC_EDIT_DICPARENT}
    + +
    + +
    + +
    + + + + + +
    +
    +

    {PHP.L.adm_directory} "{DIC_TERMS_DICTIONARY}"

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Id}{PHP.L.adm_dic_term_title}{PHP.L.adm_dic_term_value}{PHP.L.adm_dic_children}{PHP.L.adm_dic_term_defval}{PHP.L.Options}
    {TERM_LIST_ID}{TERM_LIST_TITLE}{TERM_LIST_CODE}{TERM_LIST_CHILDRENDIC} + + + + + + +
    + +
    + +
    + +

    {PHP.L.adm_dic_add_term}

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.adm_dic_term_title} :{TERM_ADD_TITLE} {PHP.L.adm_required}
    {PHP.L.adm_dic_term_value} :{TERM_ADD_CODE}
    {PHP.L.adm_dic_children} :{TERM_ADD_CHILDRENDIC}
    {PHP.L.adm_dic_term_defval} :{TERM_ADD_DEFVAL}
    + +
    + +
    +
    +
    + + + + + +
    + +
    +

    {PHP.L.adm_dic_term_edit} : {DIC_TITLE}

    +
    + +
    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.adm_dic_term_title} :{DIC_ITEM_EDIT_TITLE} {PHP.L.adm_required}
    {PHP.L.adm_dic_term_value} :{DIC_ITEM_EDIT_CODE}
    {PHP.L.adm_dic_children} :{DIC_ITEM_EDIT_CHILDRENDIC}
    {PHP.L.adm_dic_term_defval} :{DIC_ITEM_EDIT_DEFVAL}
    + +
    + +
    + +
    + + + + + + +
    + +
    +

    {PHP.L.adm_dic_extra} / {DIC_EXTRA_TITLE}

    +
    + +
    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.adm_dic_code} :{DIC_EXTRA_DICCODE}
    {PHP.L.adm_dic_extra_location} :{DIC_EXTRA_LOCATION}
    {PHP.L.adm_dic_extra_type} :{DIC_EXTRA_TYPE}
    {PHP.L.adm_dic_extra_size} :{DIC_EXTRA_SIZE}
    {PHP.L.Delete} :{DIC_EXTRA_DELETE}
    + +
    + +
    + +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.footer.tpl b/system/adminskin/simple/admin.footer.tpl new file mode 100644 index 0000000..46f7412 --- /dev/null +++ b/system/adminskin/simple/admin.footer.tpl @@ -0,0 +1,29 @@ + + + + +
    + +
    + + +{FOOTER_DEVMODE} + + + + + +{PHP.out.uploader_footer_admin} + + + + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.forums.structure.tpl b/system/adminskin/simple/admin.forums.structure.tpl new file mode 100644 index 0000000..f22f1ce --- /dev/null +++ b/system/adminskin/simple/admin.forums.structure.tpl @@ -0,0 +1,176 @@ + + + + +
    +
    +

    {PHP.L.editdeleteentries} : {FN_UPDATE_FORM_TITLE}

    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code} :{FN_UPDATE_CODE}
    {PHP.L.Path} :{FN_UPDATE_PATH}
    {PHP.L.Title} :{FN_UPDATE_TITLE}
    {PHP.L.Description} :{FN_UPDATE_DESC}
    {PHP.L.Icon} :{FN_UPDATE_ICON}
    {PHP.L.adm_defstate} :{FN_UPDATE_DEFSTATE}
    {PHP.L.adm_tpl_mode} :{FN_UPDATE_TPLMODE}
    +
    + +
    + +
    + + + + + + +
    +
    +

    {PHP.L.adm_forum_structure}

    + +
    +
    + +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Code}{PHP.L.Path}{PHP.L.adm_defstate}{PHP.L.TPL}{PHP.L.Title}{PHP.L.Sections}{PHP.L.Options}
    + + + + {STRUCTURE_LIST_CODE}{STRUCTURE_LIST_PATH}{STRUCTURE_LIST_DEFSTATE}{STRUCTURE_LIST_TPL}{STRUCTURE_LIST_TITLE}{STRUCTURE_LIST_SECTIONCOUNT}
    +
    + +
    + +
    + +

    {PHP.L.addnewentry}

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code} :{FN_ADD_CODE} {PHP.L.adm_required}
    {PHP.L.Path} :{FN_ADD_PATH} {PHP.L.adm_required}
    {PHP.L.adm_defstate} :{FN_ADD_DEFSTATE}
    {PHP.L.Title} :{FN_ADD_TITLE} {PHP.L.adm_required}
    {PHP.L.Description} :{FN_ADD_DESC}
    {PHP.L.Icon} :{FN_ADD_ICON}
    + +
    + +
    +
    +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.forums.tpl b/system/adminskin/simple/admin.forums.tpl new file mode 100644 index 0000000..2097c8e --- /dev/null +++ b/system/adminskin/simple/admin.forums.tpl @@ -0,0 +1,260 @@ + + + + + + +
    + + + +
    + + + +
    +

    {FS_UPDATE_FORM_TITLE}

    +
    + +
    + +
    + +
      + +
    • +
      +
      {FS_UPDATE_ID}
      +
    • + +
    • +
      +
      {FS_UPDATE_PARENTCAT}
      +
    • + +
    • +
      +
      {FS_UPDATE_CATEGORY}
      +
    • + +
    • +
      +
      {FS_UPDATE_TITLE}
      +
    • + +
    • +
      +
      +
      {FS_UPDATE_DESC}
      +
      +
    • + +
    • +
      +
      {FS_UPDATE_ICON}
      +
    • + +
    • +
      +
      {FS_UPDATE_ALLOWUSERTEXT}
      +
    • + +
    • +
      +
      {FS_UPDATE_ALLOWBBCODES}
      +
    • + +
    • +
      +
      {FS_UPDATE_ALLOWSMILIES}
      +
    • + +
    • +
      +
      {FS_UPDATE_ALLOWPRIVATETOPICS}
      +
    • + +
    • +
      +
      {FS_UPDATE_COUNTPOST}
      +
    • + +
    • +
      +
      {FS_UPDATE_STATE}
      +
    • + +
    • +
      +
      {FS_UPDATE_AUTOPRUNE}
      +
    • + + + +
    • +
      +
      {FS_UPDATE_RESYNC}
      +
    • + +
    • +
      +
      {FS_UPDATE_DELETE}
      +
    • + + + +
    +
    + +
    + +
    + +
    + + + + + +
    + +
    + +

    {PHP.L.adm_forum_structure_cat}

    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + +
    +
    {PHP.L.Section}
    +
    {PHP.L.Order}
    +
    {PHP.L.adm_enableprvtopics}
    +
    {PHP.L.Topics}
    +
    {PHP.L.Posts}
    +
    {PHP.L.Views}
    +
    {PHP.L.Rights}
    +
    {PHP.L.Open}
    +
    + +
    + +
    + + + + + + + + + +
    + +
    {FS_LIST_TITLE}
    + +
    {FS_LIST_ALLOWPRIWATETOPICS}
    +
    {FS_LIST_TOPICCOUNT}
    +
    {FS_LIST_POSTCONT}
    +
    {FS_LIST_VIEWCOUNT}
    +
    +
    + +
    + + + +
    + +
    + +
    + +
    + +
    + +
    + +
    + +

    {PHP.L.addnewentry}

    + +
    + +
      + +
    • +
      +
      {FS_ADD_CATEGORY}
      +
    • + +
    • +
      +
      +
      {FS_ADD_TITLE}
      +
      {PHP.L.adm_required}
      +
      +
    • + +
    • +
      +
      {FS_ADD_DESC}
      +
    • + +
    • +
      + +
      +
    • + +
    + +
    + +
    + +
    + +
    + + + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.gallery.tpl b/system/adminskin/simple/admin.gallery.tpl new file mode 100644 index 0000000..34d0db3 --- /dev/null +++ b/system/adminskin/simple/admin.gallery.tpl @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.header.tpl b/system/adminskin/simple/admin.header.tpl new file mode 100644 index 0000000..9a50432 --- /dev/null +++ b/system/adminskin/simple/admin.header.tpl @@ -0,0 +1,155 @@ +{HEADER_DOCTYPE} + + + + {HEADER_TITLE} + {HEADER_METAS} + {HEADER_COMPOPUP} + + + + + + {HEADER_UPLOADER} + + + + +
    + + + +
    + + +
    + + + +
    + + + +
      +
    • {HEADER_USERLIST}
    • +
    • {HEADER_USER_PROFILE}
    • +
    • {HEADER_USER_PFS}
    • +
    • {HEADER_USER_PMREMINDER}
    • +
    • {HEADER_USER_LOGINOUT}
    • +
    + + + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.hits.tpl b/system/adminskin/simple/admin.hits.tpl new file mode 100644 index 0000000..c2f37e4 --- /dev/null +++ b/system/adminskin/simple/admin.hits.tpl @@ -0,0 +1,117 @@ + + +
    +
    +

    {PHP.L.Hits}

    +
    +
    + +
    + + + +

    {PHP.v} :

    + + + + + + + + + + + + + + +
    {HITS_ROW_DAY}{HITS_ROW_HITS} {PHP.L.Hits}{HITS_ROW_PERCENTBAR}% +
    +
    +
    +
    +
    +
    + + + + + + +

    {HITS_MAXHITS}

    + +

    {PHP.L.adm_byyear} :

    + + + + + + + + + + + + + + +
    {HITS_YEAR_ROW_YEAR}{HITS_YEAR_ROW_HITS} {PHP.L.Hits}{HITS_YEAR_ROW_PERCENTBAR}% +
    +
    +
    +
    +
    +
    + +

    {PHP.L.adm_bymonth} :

    + + + + + + + + + + + + + + +
    {HITS_MONTH_ROW_MONTH}{HITS_MONTH_ROW_HITS} {PHP.L.Hits}{HITS_MONTH_ROW_PERCENTBAR}% +
    +
    +
    +
    +
    +
    + +

    {PHP.L.adm_byweek} :

    + + + + + + + + + + + + + + +
    {HITS_WEEK_ROW_WEEK}{HITS_WEEK_ROW_HITS} {PHP.L.Hits}{HITS_WEEK_ROW_PERCENTBAR}% +
    +
    +
    +
    +
    +
    + + + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.home.tpl b/system/adminskin/simple/admin.home.tpl new file mode 100644 index 0000000..69a2c90 --- /dev/null +++ b/system/adminskin/simple/admin.home.tpl @@ -0,0 +1,125 @@ + + +
    + +
    + +
    + +
    +

    {PHP.L.Pages}

    +
    + +
    + +

    {PHP.L.adm_valqueue} :

    + +
      +
    • {HOME_PAGE_QUEUED}
    • +
    • {HOME_PAGE_ADDNEWENTRY}
    • +
    + +
    + +
    + +
    + +
    + +
    + + + +
    + + +
    + {ADMIN_RSS_NEWS} +
    + + +
    + +
    + +
    +
    +
    +
    {PHP.L.adm_phpver} :
    +
    {INFOS_PHPVERSION}
    +
    +
    +
    {PHP.L.adm_zendver}
    +
    {INFOS_ZENDVERSION}
    +
    +
    +
    {PHP.L.adm_interface} :
    +
    {INFOS_INTERFACE}
    +
    +
    +
    {PHP.L.adm_os} :
    +
    {INFOS_OS}
    +
    +
    +
    SQL :
    +
    {INFOS_MYSQL}
    +
    +
    +
    + +
    + +
    + +
    + +
    + +
    +
    +
    +
    {PHP.L.upg_codeversion} :
    +
    {UPG_VERSION}
    +
    +
    +
    {PHP.L.upg_sqlversion} :
    +
    {UPG_SQLVERSION}
    +
    +
    +
    {UPG_CHECKSTATUS}
    +
    {UPG_STATUS}
    +
    +
    +
    + +
    + {UPG_FORCESQL} +
    + +
    + +
    + +
    + +
    + +
    + +
    + +{ADMIN_QV} + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.log.tpl b/system/adminskin/simple/admin.log.tpl new file mode 100644 index 0000000..9dceb33 --- /dev/null +++ b/system/adminskin/simple/admin.log.tpl @@ -0,0 +1,69 @@ + + +
    +
    +

    {PHP.L.adm_log}

    +
    +
    {ADMIN_LOG_FILTER} {ADMIN_LOG_CLEAR}
    +
    +
    +
    +
    + + + +
    +
      + + {LOG_PAGINATION} + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    #{PHP.L.Date} (GMT){PHP.L.Ip}{PHP.L.User}{PHP.L.Group}{PHP.L.Log}
    {LOG_LIST_ID}{LOG_LIST_DATE}{LOG_LIST_IP}{LOG_LIST_USER}{LOG_LIST_GROUP} +
    {LOG_LIST_DESC}
    +
    + + + +
    +
      + + {LOG_PAGINATION} + +
    +
    + + + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.menu.tpl b/system/adminskin/simple/admin.menu.tpl new file mode 100644 index 0000000..0be9576 --- /dev/null +++ b/system/adminskin/simple/admin.menu.tpl @@ -0,0 +1,165 @@ + + + + +
    + + +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Id}{PHP.L.Title}{PHP.L.adm_url}{PHP.L.adm_position}{PHP.L.Options}
    {MENU_ID}{MENU_TITLE}{MENU_URL}{MENU_POSITION} + + +
    +
    + +
    +
    + + + + +
    + +
    + +

    {PHP.L.adm_addmenuitem}

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Title} :{MENU_ADD_TITLE} {PHP.L.adm_required}
    {PHP.L.adm_parentitem} :{MENU_ADD_PARENT}
    {PHP.L.adm_url} :{MENU_ADD_URL}
    {PHP.L.adm_position} :{MENU_ADD_POSITION}
    {PHP.L.adm_activity} :{MENU_ADD_VISIBLE}
    + +
    + +
    +
    +
    + + + + + +
    + +
    +

    {PHP.L.adm_editmenuitem}

    +
    +
    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Title} :{MENU_UPDATE_TITLE} {PHP.L.adm_required}
    {PHP.L.adm_parentitem}:{MENU_UPDATE_PARENT}
    {PHP.L.adm_url} :{MENU_UPDATE_URL}
    {PHP.L.adm_position} :{MENU_UPDATE_POSITION}
    {PHP.L.adm_activity} :{MENU_UPDATE_VISIBLE}
    + +
    + +
    + +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.nav.tpl b/system/adminskin/simple/admin.nav.tpl new file mode 100644 index 0000000..ced6e70 --- /dev/null +++ b/system/adminskin/simple/admin.nav.tpl @@ -0,0 +1,42 @@ + + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.page.add.tpl b/system/adminskin/simple/admin.page.add.tpl new file mode 100644 index 0000000..6bf45cc --- /dev/null +++ b/system/adminskin/simple/admin.page.add.tpl @@ -0,0 +1,174 @@ + + + + +
    + +
    + {PAGEADD_ERROR_BODY} +
    +
    + + + +
    +
    +

    {PAGEADD_PAGETITLE}

    + +
    +
    + +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.skinlang.pageadd.Category}{PAGEADD_FORM_CAT}
    {PHP.skinlang.pageadd.Title}{PAGEADD_FORM_TITLE}
    {PHP.skinlang.pageadd.Description}{PAGEADD_FORM_DESC}
    {PHP.skinlang.pageadd.Author}{PAGEADD_FORM_AUTHOR}
    {PHP.skinlang.pageadd.Alias}{PAGEADD_FORM_ALIAS}
    {PHP.skinlang.pageadd.Bodyofthepage}

    {PAGEADD_FORM_TEXT}
    {PHP.skinlang.pageadd.Thumbs}{PAGEADD_FORM_THUMB}
    {PAGEADD_FORM_SLIDER_TITLE}{PAGEADD_FORM_SLIDER}
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.mt_title} H1{PAGEADD_FORM_SEOH1}
    {PHP.L.mt_title}{PAGEADD_FORM_SEOTITLE}
    {PHP.L.mt_description}{PAGEADD_FORM_SEODESC}
    {PHP.L.mt_keywords}{PAGEADD_FORM_SEOKEYWORDS}
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.skinlang.pageadd.Begin}{PAGEADD_FORM_BEGIN}
    {PHP.skinlang.pageadd.Expire}{PAGEADD_FORM_EXPIRE}
    {PHP.skinlang.pageadd.Extrakey}{PAGEADD_FORM_KEY}
    {PHP.skinlang.pageadd.Owner}{PAGEADD_FORM_OWNER}
    {PHP.skinlang.pageadd.Allowcomments}{PAGEADD_FORM_ALLOWCOMMENTS}
    {PHP.skinlang.pageadd.Allowratings}{PAGEADD_FORM_ALLOWRATINGS}
    {PHP.skinlang.pageadd.File}
    + {PHP.skinlang.pageadd.Filehint}
    {PAGEADD_FORM_FILE}
    {PHP.skinlang.pageadd.URL}
    + {PHP.skinlang.pageadd.URLhint}
    {PAGEADD_FORM_URL}
    {PHP.skinlang.pageadd.Filesize}
    + {PHP.skinlang.pageadd.Filesizehint}
    {PAGEADD_FORM_SIZE}
    + +
    + +
    {PHP.skinlang.pageadd.Formhint}
    + +
    + + + + +
    + +
    + + + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.page.edit.tpl b/system/adminskin/simple/admin.page.edit.tpl new file mode 100644 index 0000000..2f28054 --- /dev/null +++ b/system/adminskin/simple/admin.page.edit.tpl @@ -0,0 +1,200 @@ + + + + +
    + +
    + {PAGEEDIT_ERROR_BODY} +
    +
    + + + +
    +
    +

    {PAGEEDIT_PAGETITLE}

    + +
    +
    + +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.skinlang.pageedit.Category}{PAGEEDIT_FORM_CAT}
    {PHP.skinlang.pageedit.Title}{PAGEEDIT_FORM_TITLE}
    {PHP.skinlang.pageedit.Description}{PAGEEDIT_FORM_DESC}
    {PHP.skinlang.pageedit.Author}{PAGEEDIT_FORM_AUTHOR}
    {PHP.skinlang.pageedit.Alias}{PAGEEDIT_FORM_ALIAS}
    {PHP.skinlang.pageedit.Bodyofthepage}

    {PAGEEDIT_FORM_TEXT}
    {PHP.skinlang.pageedit.Thumbs}{PAGEEDIT_FORM_THUMB}
    {PAGEEDIT_FORM_SLIDER_TITLE}{PAGEEDIT_FORM_SLIDER}
    {PHP.skinlang.pageedit.Pageid}#{PAGEEDIT_FORM_ID}
    {PHP.skinlang.pageedit.Deletethispage}{PAGEEDIT_FORM_DELETE}
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.mt_title} H1{PAGEEDIT_FORM_SEOH1}
    {PHP.L.mt_title}{PAGEEDIT_FORM_SEOTITLE}
    {PHP.L.mt_description}{PAGEEDIT_FORM_SEODESC}
    {PHP.L.mt_keywords}{PAGEEDIT_FORM_SEOKEYWORDS}
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.skinlang.pageedit.Date}{PAGEEDIT_FORM_DATE}
    {PHP.skinlang.pageedit.Begin}{PAGEEDIT_FORM_BEGIN}
    {PHP.skinlang.pageedit.Expire}{PAGEEDIT_FORM_EXPIRE}
    {PHP.skinlang.pageedit.Pagehitcount}{PAGEEDIT_FORM_PAGECOUNT}
    {PHP.skinlang.pageedit.Extrakey}{PAGEEDIT_FORM_KEY}
    {PHP.skinlang.pageedit.Owner}{PAGEEDIT_FORM_OWNERID}
    {PHP.skinlang.pageedit.Allowcomments}{PAGEEDIT_FORM_ALLOWCOMMENTS}
    {PHP.skinlang.pageedit.Allowratings}{PAGEEDIT_FORM_ALLOWRATINGS}
    {PHP.skinlang.pageedit.Filedownload}{PAGEEDIT_FORM_FILE}
    {PHP.skinlang.pageedit.URL}
    + {PHP.skinlang.pageedit.URLhint}
    {PAGEEDIT_FORM_URL}
    {PHP.skinlang.pageedit.Filesize}
    + {PHP.skinlang.pageedit.Filesizehint}
    {PAGEEDIT_FORM_SIZE}
    {PHP.skinlang.pageedit.Filehitcount}
    + {PHP.skinlang.pageedit.Filehitcounthint}
    {PAGEEDIT_FORM_FILECOUNT}
    + +
    + +
    {PHP.skinlang.pageedit.Formhint}
    + +
    + + + + +
    + +
    + + + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.page.manager.tpl b/system/adminskin/simple/admin.page.manager.tpl new file mode 100644 index 0000000..e1167c5 --- /dev/null +++ b/system/adminskin/simple/admin.page.manager.tpl @@ -0,0 +1,107 @@ + + +
    + +
    +

    {PHP.L.adm_pagemanager} ({PAGE_MANAGER_COUNT})

    +
    + {PHP.L.Category} {PAGE_MANAGER_CATEGORY} +
    +
    +
    + +
    + + + +
    +
      + + {PAGE_PAGINATION} + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    #ID{PHP.L.Title}{PHP.L.Date}{PHP.L.Owner}{PHP.L.Status}{PHP.L.Action}
    #{PAGE_ID}{PAGE_TITLE}{PAGE_DATE} {PAGE_OWNER} + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
      + + {PAGE_PAGINATION} + +
    +
    + + + + + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.page.tpl b/system/adminskin/simple/admin.page.tpl new file mode 100644 index 0000000..9646624 --- /dev/null +++ b/system/adminskin/simple/admin.page.tpl @@ -0,0 +1,324 @@ + + + + +
    +
    +

    {PHP.L.editdeleteentries}

    + +
    +
    + +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code} :{STRUCTURE_UPDATE_CODE}
    {PHP.L.Path} :{STRUCTURE_UPDATE_PATH}
    {PHP.L.Title} :{STRUCTURE_UPDATE_TITLE}
    {PHP.L.Description} :{STRUCTURE_UPDATE_DESC}
    {PHP.L.Icon} :{STRUCTURE_UPDATE_ICON}
    {PHP.L.Text} :
    {STRUCTURE_UPDATE_TEXT}
    {PHP.L.Thumbnail} :{STRUCTURE_UPDATE_THUMB}
    {PHP.L.Group} :{STRUCTURE_UPDATE_GROUP}
    {PHP.L.adm_tpl_mode} :{STRUCTURE_UPDATE_TPL}
    {PHP.L.adm_enablecomments} :{STRUCTURE_UPDATE_ALLOWCOMMENTS}
    {PHP.L.adm_enableratings} :{STRUCTURE_UPDATE_ALLOWRATINGS}
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Title} H1 :{STRUCTURE_UPDATE_SEOH1}
    {PHP.L.mt_title} :{STRUCTURE_UPDATE_SEOTITLE}
    {PHP.L.mt_description} :{STRUCTURE_UPDATE_SEODESC}
    {PHP.L.mt_keywords} :{STRUCTURE_UPDATE_SEOKEYWORDS}
    + +
    + +
    + +
    + +
    + +
    +
    + + + + +
    +
    +

    {PHP.L.Structure}

    + +
    +
    + +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Code}{PHP.L.Title}{PHP.L.Path}{PHP.L.TPL}{PHP.L.Group}{PHP.L.Pages}{PHP.L.Rights}
    + + + + {STRUCTURE_LIST_CODE}{STRUCTURE_LIST_TITLE}{STRUCTURE_LIST_PATH}{STRUCTURE_LIST_TPL}{STRUCTURE_LIST_GROUP}{STRUCTURE_LIST_PAGECOUNT}
    + +
    + +
    + +
    + +

    {PHP.L.addnewentry}

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code} :{PAGE_STRUCTURE_ADD_CODE} {PHP.L.adm_required}
    {PHP.L.Path} :{PAGE_STRUCTURE_ADD_PATH} {PHP.L.adm_required}
    {PHP.L.Title} :{PAGE_STRUCTURE_ADD_TITLE} {PHP.L.adm_required}
    {PHP.L.Description} :{PAGE_STRUCTURE_ADD_DESC}
    {PHP.L.Icon} :{PAGE_STRUCTURE_ADD_ICON}
    {PHP.L.Group} :{PAGE_STRUCTURE_ADD_GROUP}
    + +
    + +
    +
    +
    + + + + + +
    + +
    +

    {PHP.L.adm_sortingorder}

    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code}{PHP.L.Path}{PHP.L.Title}{PHP.L.Order}
    {STRUCTURE_LIST_CODE}{STRUCTURE_LIST_PATH}{STRUCTURE_LIST_TITLE}{STRUCTURE_LIST_ORDER}
    +
    + +
    +
    + + + + + +
    + +
    +

    {PHP.L.adm_valqueue}

    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    #{PHP.L.Title} {PHP.L.adm_clicktoedit}{PHP.L.Category}{PHP.L.Date}{PHP.L.Owner}{PHP.L.Validate}
    {PAGE_LIST_ID}{PAGE_LIST_TITLE}{PAGE_LIST_CATPATH}{PAGE_LIST_DATE}{PAGE_LIST_OWNER}{PAGE_LIST_VALIDATE}
    + + + +

    {PHP.L.None}

    + + + +
    +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.pfs.tpl b/system/adminskin/simple/admin.pfs.tpl new file mode 100644 index 0000000..8a879b0 --- /dev/null +++ b/system/adminskin/simple/admin.pfs.tpl @@ -0,0 +1,48 @@ + + + + + + +
    + + + +
    +
    +

    {PHP.L.adm_allpfs}

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Edit}{PHP.L.User}{PHP.L.Files}
    {PFS_LIST_EDIT}{PFS_LIST_USER}{PFS_LIST_COUNTFILES}
    + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.plug.tpl b/system/adminskin/simple/admin.plug.tpl new file mode 100644 index 0000000..5e420a9 --- /dev/null +++ b/system/adminskin/simple/admin.plug.tpl @@ -0,0 +1,332 @@ + + + + +
    + +
    +

    {PLUG_DETAILS_NAME}

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code}:{PLUG_DETAILS_CODE}
    {PHP.L.Description}:{PLUG_DETAILS_DESC}
    {PHP.L.Version}:{PLUG_DETAILS_VERSION}
    {PHP.L.Date}:{PLUG_DETAILS_DATE}
    {PHP.L.Configuration}:
    {PHP.L.Rights}:
    {PHP.L.adm_defauth_guests}:{PLUG_DETAILS_DEFAUTH_GUESTS}
    {PHP.L.adm_deflock_guests}:{PLUG_DETAILS_DEFLOCK_GUESTS}
    {PHP.L.adm_defauth_members}:{PLUG_DETAILS_DEFAUTH_MEMBERS}
    {PHP.L.adm_deflock_members}:{PLUG_DETAILS_DEFLOCK_MEMBERS}
    {PHP.L.Author}:{PLUG_DETAILS_AUTHOR}
    {PHP.L.Copyright}:{PLUG_DETAILS_COPYRIGHT}
    {PHP.L.Notes}:{PLUG_DETAILS_NOTES}
    + +
    + +
    + +
    + +
    +

    {PHP.L.Options}

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + +
    {PHP.L.adm_opt_installall}{PHP.L.adm_opt_installall_explain}
    {PHP.L.adm_opt_uninstallall}{PHP.L.adm_opt_uninstallall_explain}
    {PHP.L.adm_opt_pauseall}{PHP.L.adm_opt_pauseall_explain}
    {PHP.L.adm_opt_unpauseall}{PHP.L.adm_opt_unpauseall_explain}
    + +
    + +
    + +
    + +
    +

    {PHP.L.Parts}

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.adm_part}{PHP.L.File}{PHP.L.Hooks}{PHP.L.Order}{PHP.L.Status}{PHP.L.Action}
    #{PARTS_LIST_NUMBER}-{PARTS_LIST_FILE}{PARTS_LIST_ERROR}
    #{PARTS_LIST_NUMBER}{PARTS_LIST_PART}{PARTS_LIST_FILE}.php{PARTS_LIST_HOOKS}{PARTS_LIST_ORDER}{PARTS_LIST_STATUS}{PARTS_LIST_ACTION}
    + +
    + +
    + +
    + +
    +

    {PHP.L.Tags}

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Part}{PHP.L.Files} / {PHP.L.Tags}
    #{TAGS_LIST_NUMBER}{TAGS_LIST_PART}{TAGS_LIST_BODY}
    + +
    + +
    + + + + + +
    +
    +

    {PHP.L.Plugins} ({PLUG_LISTING_COUNT})

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Plugins} {PHP.L.adm_clicktoedit}{PHP.L.Code}{PHP.L.Version}{PHP.L.Status} ({PHP.L.Parts}){PHP.L.Configuration}{PHP.L.Rights}{PHP.L.Open}
    {PLUG_LIST_CODE}{PLUG_LIST_ERROR}
    {PLUG_LIST_NAME}{PLUG_LIST_CODE}{PLUG_LIST_VERSION}{PLUG_LIST_STATUS} {PLUG_LIST_PARTS_COUNT} + + + + + + + + + + + + + + + +
    + +
    + +
    + + +
    + +
    +

    {PHP.L.Hooks} ({HOOKS_COUNT})

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Hooks}{PHP.L.Plugin}{PHP.L.File}{PHP.L.Order}{PHP.L.Active}
    {HOOK_LIST_HOOK}{HOOK_LIST_PLUG_TITLE} ({HOOK_LIST_PLUG_CODE}){HOOK_LIST_PLUG_FILE}{HOOK_LIST_ORDER}{HOOK_LIST_STATUS}
    + +
    + +
    + + + + + +
    + +
    +

    {PHP.L.Install} / {PHP.L.Uninstall}

    +
    +
    + +
    + +

    {PLUG_UN_INSTALL_INFO}

    + Continue... + +
    + +
    + + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.pm.tpl b/system/adminskin/simple/admin.pm.tpl new file mode 100644 index 0000000..dcc0df8 --- /dev/null +++ b/system/adminskin/simple/admin.pm.tpl @@ -0,0 +1,46 @@ + + + + + + +
    + + + +
    +
    +

    {PHP.L.Private_Messages}

    +
    + +
    + + + + + + + + + + + + + + +
    {PHP.L.Statistics}
    {PHP.L.adm_pm_totaldb}{PM_TOTALMP_DB}
    {PHP.L.adm_pm_totalsent}{PM_TOTALMP_SEND}
    + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.polls.tpl b/system/adminskin/simple/admin.polls.tpl new file mode 100644 index 0000000..19651f3 --- /dev/null +++ b/system/adminskin/simple/admin.polls.tpl @@ -0,0 +1,180 @@ + + + + +
    +
    +

    {PHP.L.Polls}

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Reset}{PHP.L.Bump}{PHP.L.Date}{PHP.L.Poll} {PHP.L.adm_clicktoedit}{PHP.L.Votes}{PHP.L.Open}
    {POLLS_LIST_DATE}{POLLS_LIST_POLLTEXT}{POLLS_LIST_TOTALVOTES}
    {PHP.L.Total} : {POLLS_TOTAL}
    + +
    + +
    + +

    {PHP.L.addnewentry}

    + +
    + + + + + + + + + + +
    Poll topic{POLL_ADD_TEXT}
    + +
    + +
    + +
    +
    +
    + + + + + + +
    +
    +

    {PHP.L.editdeleteentries}: {PHP.L.Poll} #{POLL_EDIT_ID}

    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + +
    {PHP.L.Title}{PHP.L.Open}
    {POLL_EDIT_TEXT}
    {PHP.L.Date} : {POLL_EDIT_CREATION_DATE} GMT
    + +
    + +
    +
    + +
    +
    +

    {PHP.L.Poll} #{POLL_EDIT_ID} : Options

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}#{PHP.L.Option} 
    {POLL_EDIT_OPTIONS_ID}{POLL_EDIT_OPTIONS_TEXT}
    + +
    +
    + +
    +
    +

    {PHP.L.addnewentry} : Option

    +
    +
    + +
    + +
    + + + + + + + + + + +
    {PHP.L.Option} 
    {POLL_OPTIONS_ADD_TEXT}
    + +
    + +
    +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.ratings.tpl b/system/adminskin/simple/admin.ratings.tpl new file mode 100644 index 0000000..7f84662 --- /dev/null +++ b/system/adminskin/simple/admin.ratings.tpl @@ -0,0 +1,104 @@ + + + + + + +
    + + + +
    +
    +

    {PHP.L.Ratings}

    +
    +
    + + + +
    +
      + + {RATINGS_PAGINATION} + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Code}{PHP.L.Date} (GMT){PHP.L.Votes}{PHP.L.Rating}{PHP.L.Open}
    {RATINGS_LIST_CODE}{RATINGS_LIST_CREATIONDATE}{RATINGS_LIST_VOTES}{RATINGS_LIST_AVERAGE}
    + {PHP.L.adm_ratings_totalitems} : {ADMIN_RATINGS_TOTALITEMS}
    + {PHP.L.adm_ratings_totalvotes} : {ADMIN_RATINGS_TOTALVOTES} +
    + + + + + +
    +
      + + {RATINGS_PAGINATION} + +
    +
    + + + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.referers.tpl b/system/adminskin/simple/admin.referers.tpl new file mode 100644 index 0000000..b05651f --- /dev/null +++ b/system/adminskin/simple/admin.referers.tpl @@ -0,0 +1,81 @@ + + +
    +
    +

    {PHP.L.Referers}

    +
    +
    + + + +
      +
    • {PHP.L.adm_purgeall} : [x]
    • +
    • {PHP.L.adm_ref_lowhits} : [x]
    • +
    + + + + + +
    +
      + + {REFERERS_PAGINATION} + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Referer}{PHP.L.Hits}
    {REFERER_GROUP_URL}
    {REFERER_TITLE}{REFERER_COUNT}
    {PHP.L.None}
    + + + +
    +
      + + {REFERERS_PAGINATION} + +
    +
    + + + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.rights.tpl b/system/adminskin/simple/admin.rights.tpl new file mode 100644 index 0000000..c69c2ff --- /dev/null +++ b/system/adminskin/simple/admin.rights.tpl @@ -0,0 +1,86 @@ + + +
    +
    +

    {RIGHTS_TITLE}

    +
    + + + +
    + {RIGHTS_COPYRIGHTSCONF} {PHP.L.adm_copyrightsfrom} : {RIGHTS_COPYRIGHTSFROM} + +
    + + + +
    +
    +
    + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {RIGHTS_GROUP_TITLE}{PHP.L.adm_rightspergroup}{PHP.L.adm_setby}
    {RIGHTS_LIST_TITLE} + {RIGHTS_OPTIONS} + {RIGHTS_LIST_SETBYUSER}
    + +
    + + +
    + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.rightsbyitem.tpl b/system/adminskin/simple/admin.rightsbyitem.tpl new file mode 100644 index 0000000..21a4fb8 --- /dev/null +++ b/system/adminskin/simple/admin.rightsbyitem.tpl @@ -0,0 +1,74 @@ + + +
    +
    +

    {RIGHTS_TITLE}

    +
    +
    + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Groups}{PHP.L.adm_rightspergroup}{PHP.L.adm_setby}{PHP.L.Open}
    {RIGHTS_LIST_TITLE} + {RIGHTS_OPTIONS} + {RIGHTS_LIST_SETBYUSER}
    + +
    + + +
    + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.smilies.tpl b/system/adminskin/simple/admin.smilies.tpl new file mode 100644 index 0000000..b399da8 --- /dev/null +++ b/system/adminskin/simple/admin.smilies.tpl @@ -0,0 +1,108 @@ + + +
    +
    +

    {PHP.L.Smilies}

    + +
    +
    + +
    +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Delete}{PHP.L.Preview}{PHP.L.Size}{PHP.L.Code}{PHP.L.ImageURL}{PHP.L.Text}{PHP.L.Order}
    {SMILIE_LIST_PREVIEW}{SMILIE_LIST_SIZE}{SMILIE_LIST_CODE}{SMILIE_LIST_IMAGE}{SMILIE_LIST_TEXT}{SMILIE_LIST_ORDER}
    + +
    + +
    +
    + + + + +
    + +
    + + + +

    {PHP.L.addnewentry}

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Code} :{SMILIE_ADD_CODE} {PHP.L.adm_required}
    {PHP.L.ImageURL} :{SMILIE_ADD_IMAGEURL} {PHP.L.adm_required}
    {PHP.L.Text} :{SMILIE_ADD_TEXT} {PHP.L.adm_required}
    {PHP.L.Order} :{SMILIE_ADD_ORDER} {PHP.L.adm_required}
    + +
    + + + +
    +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.tools.tpl b/system/adminskin/simple/admin.tools.tpl new file mode 100644 index 0000000..472d46f --- /dev/null +++ b/system/adminskin/simple/admin.tools.tpl @@ -0,0 +1,136 @@ + + +
    + +
    +

    {PHP.L.Modules}

    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Modules}{PHP.L.Rights}{PHP.L.Configuration}
    + {MODULES_LIST_TITLE} + + + + + + + + + + + + +
    {PHP.L.Banlist}
    {PHP.L.adm_internalcache}
    {PHP.L.Smilies}
    {PHP.L.Hits}
    {PHP.L.Referers}
    + +
    + +
    + +
    + +
    +

    {PHP.L.Tools}

    +
    +
    + +
    + + + + + + + + + + + + + + + + +
    {PHP.L.Tools} ({PHP.L.Plugins}){PHP.L.Configuration}
    {TOOLS_LIST_TITLE} + + + + + +
    + +
    + +
    + + + + + +
    + +
    +

    {TOOL_TITLE}

    +
    +
    + +
    + + {TOOL_BODY} + +
    + +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.tpl b/system/adminskin/simple/admin.tpl new file mode 100644 index 0000000..68f308d --- /dev/null +++ b/system/adminskin/simple/admin.tpl @@ -0,0 +1,26 @@ + + +
    + + + {ADMIN_BREADCRUMBS} + + + +
    + +
    {ADMIN_MSG_TITLE}
    + {ADMIN_MSG_TEXT} +
    +
    + + + + {ADMIN_MAIN} + +
    + +
    + + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.trashcan.tpl b/system/adminskin/simple/admin.trashcan.tpl new file mode 100644 index 0000000..81e8757 --- /dev/null +++ b/system/adminskin/simple/admin.trashcan.tpl @@ -0,0 +1,47 @@ + + +
    +
    +

    {PHP.L.Trashcan}

    +
    +
    +
    +
    +
    + +

    + {PHP.L.Configuration} | + {PHP.L.Wipeall} +

    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Date}{PHP.L.Type}{PHP.L.Title}{PHP.L.adm_setby}{PHP.L.Wipe}{PHP.L.Restore}
    {TRASHCAN_LIST_DATE}{TRASHCAN_LIST_TYPE}{TRASHCAN_LIST_TITLE}{TRASHCAN_LIST_TRASHEDBY}[-][+]
    + +
    +
    + + \ No newline at end of file diff --git a/system/adminskin/simple/admin.upgrade.tpl b/system/adminskin/simple/admin.upgrade.tpl new file mode 100644 index 0000000..e69de29 diff --git a/system/adminskin/simple/admin.users.tpl b/system/adminskin/simple/admin.users.tpl new file mode 100644 index 0000000..a9d5c30 --- /dev/null +++ b/system/adminskin/simple/admin.users.tpl @@ -0,0 +1,206 @@ + + + + + + +
    + + + + +
    +
    +

    {PHP.L.editdeleteentries}

    +
    +
    + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Group} :{USERS_EDIT_TITLE} {PHP.L.adm_required}
    {PHP.L.Description} :{USERS_EDIT_DESC}
    {PHP.L.Icon} :{USERS_EDIT_ICON}
    {PHP.L.Alias} :{USERS_EDIT_ALIAS}
    {PHP.L.adm_color} :{USERS_EDIT_COLOR}
    {PHP.L.adm_maxsizesingle} :{USERS_EDIT_MAXFILESIZE}
    {PHP.L.adm_maxsizeallpfs} :{USERS_EDIT_MAXTOTALSIZE}
    {PHP.L.Enabled} :{USERS_EDIT_GRPDISABLE}
    {PHP.L.Hidden} :{USERS_EDIT_GRPHIDDEN}
    {PHP.L.Level} :{USERS_EDIT_GRPLEVEL}
    {PHP.L.Rights} :
    {PHP.L.Delete} :{PHP.out.img_delete}
    +
    + +
    +
    + + + + +
    +
    +

    {PHP.L.Users}

    + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    #ID{PHP.L.Groups}{PHP.L.Members}{PHP.L.Main}{PHP.L.Enabled}{PHP.L.Hidden}{PHP.L.Rights}
    {GROUP_LIST_ID} {GROUP_LIST_TITLE}{GROUP_LIST_GRP_COUNT}{GROUP_LIST_MAINGRP_COUNT}{GROUP_LIST_DISABLE}{GROUP_LIST_COUNT}
    + +
    +
    + +

    {PHP.L.addnewentry} :

    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {PHP.L.Group} :{GROUP_ADD_TITLE} {PHP.L.adm_required}
    {PHP.L.Description} :{GROUP_ADD_DESC}
    {PHP.L.Icon} :{GROUP_ADD_ICON}
    {PHP.L.Alias} :{GROUP_ADD_ALIAS}
    {PHP.L.adm_color} :{GROUP_ADD_COLOR}
    {PHP.L.adm_maxsizesingle} :{GROUP_ADD_MAXFILESIZE}
    {PHP.L.adm_maxsizeallpfs} :{GROUP_ADD_MAXTOTALSIZE}
    {PHP.L.adm_copyrightsfrom} :{GROUP_ADD_COPYRIGHTSFROM} {PHP.L.adm_required}
    {PHP.L.Level} :{GROUP_ADD_GRPLEVEL}
    {PHP.L.Enabled} :{GROUP_ADD_GRPDISABLE}
    {PHP.L.Hidden} :{GROUP_ADD_GRPHIDDEN}
    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/system/adminskin/simple/css/fonts.css b/system/adminskin/simple/css/fonts.css new file mode 100644 index 0000000..bb27a24 --- /dev/null +++ b/system/adminskin/simple/css/fonts.css @@ -0,0 +1,633 @@ +@font-face { + font-family: 'Seditio'; + src: url('../fonts/Seditio/Seditio.eot?f7faem'); + src: url('../fonts/Seditio/Seditio.eot?f7faem#iefix') format('embedded-opentype'), + url('../fonts/Seditio/Seditio.ttf?f7faem') format('truetype'), + url('../fonts/Seditio/Seditio.woff?f7faem') format('woff'), + url('../fonts/Seditio/Seditio.svg?f7faem#Seditio') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="ic-"], [class*=" ic-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'Seditio' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ic-2x { + font-size: 1.8em; +} +.ic-3x { + font-size: 2.5em; +} +.ic-github:before { + content: "\e900"; +} +.ic-cloud-computing:before { + content: "\f1d0"; +} +.ic-cloud-data-connection:before { + content: "\f1d1"; +} +.ic-adjustments:before { + content: "\ea03"; +} +.ic-alarm:before { + content: "\ea04"; +} +.ic-alert-circle:before { + content: "\ea05"; +} +.ic-alert-triangle:before { + content: "\ea06"; +} +.ic-arrow-down-circle:before { + content: "\ea11"; +} +.ic-arrow-down-left-circle:before { + content: "\ea12"; +} +.ic-arrow-down-left:before { + content: "\ea13"; +} +.ic-arrow-down-right-circle:before { + content: "\ea14"; +} +.ic-arrow-down-right:before { + content: "\ea15"; +} +.ic-arrow-down:before { + content: "\ea16"; +} +.ic-arrow-left:before { + content: "\ea19"; +} +.ic-arrow-narrow-down:before { + content: "\ea1a"; +} +.ic-arrow-narrow-left:before { + content: "\ea1b"; +} +.ic-arrow-narrow-right:before { + content: "\ea1c"; +} +.ic-arrow-narrow-up:before { + content: "\ea1d"; +} +.ic-arrow-right:before { + content: "\ea1f"; +} +.ic-arrow-up-circle:before { + content: "\ea20"; +} +.ic-arrow-up-left-circle:before { + content: "\ea21"; +} +.ic-arrow-up-right-circle:before { + content: "\ea23"; +} +.ic-arrows-maximize:before { + content: "\ea28"; +} +.ic-at:before { + content: "\ea2b"; +} +.ic-award:before { + content: "\ea2c"; +} +.ic-banlist:before { + content: "\ea2e"; +} +.ic-pages:before { + content: "\ea39"; +} +.ic-bookmark:before { + content: "\ea3a"; +} +.ic-briefcase:before { + content: "\ea46"; +} +.ic-calendar-event:before { + content: "\ea52"; +} +.ic-calendar:before { + content: "\ea53"; +} +.ic-camera:before { + content: "\ea54"; +} +.ic-chart-area-line:before { + content: "\ea57"; +} +.ic-hits:before { + content: "\ea59"; +} +.ic-chart-candle:before { + content: "\ea5a"; +} +.ic-check:before { + content: "\ea5e"; +} +.ic-chevron-down:before { + content: "\ea5f"; +} +.ic-chevron-left:before { + content: "\ea60"; +} +.ic-chevron-right:before { + content: "\ea61"; +} +.ic-chevron-up:before { + content: "\ea62"; +} +.ic-chevrons-down:before { + content: "\ea63"; +} +.ic-chevrons-left:before { + content: "\ea64"; +} +.ic-chevrons-right:before { + content: "\ea65"; +} +.ic-chevrons-up:before { + content: "\ea66"; +} +.ic-circle-check:before { + content: "\ea67"; +} +.ic-circle-minus:before { + content: "\ea68"; +} +.ic-circle-plus:before { + content: "\ea69"; +} +.ic-circle-x:before { + content: "\ea6a"; +} +.ic-clock:before { + content: "\ea70"; +} +.ic-cloud-download:before { + content: "\ea71"; +} +.ic-cloud-upload:before { + content: "\ea75"; +} +.ic-code:before { + content: "\ea77"; +} +.ic-compass:before { + content: "\ea79"; +} +.ic-copy:before { + content: "\ea7a"; +} +.ic-corner-left-down:before { + content: "\ea7e"; +} +.ic-corner-left-up:before { + content: "\ea7f"; +} +.ic-corner-right-down:before { + content: "\ea80"; +} +.ic-corner-right-up:before { + content: "\ea81"; +} +.ic-corner-up-left:before { + content: "\ea82"; +} +.ic-corner-up-right:before { + content: "\ea83"; +} +.ic-credit-card:before { + content: "\ea84"; +} +.ic-cache:before { + content: "\ea88"; +} +.ic-device-desktop:before { + content: "\ea89"; +} +.ic-directions:before { + content: "\ea8e"; +} +.ic-dots:before { + content: "\ea95"; +} +.ic-download:before { + content: "\ea96"; +} +.ic-edit:before { + content: "\ea98"; +} +.ic-external-link:before { + content: "\ea99"; +} +.ic-eye:before { + content: "\ea9a"; +} +.ic-filter:before { + content: "\eaa5"; +} +.ic-flag:before { + content: "\eaa6"; +} +.ic-folder:before { + content: "\eaad"; +} +.ic-folders:before { + content: "\eaae"; +} +.ic-heart:before { + content: "\eabe"; +} +.ic-home:before { + content: "\eac0"; +} +.ic-home-2:before { + content: "\eac1"; +} +.ic-id:before { + content: "\eac3"; +} +.ic-key:before { + content: "\eac7"; +} +.ic-link:before { + content: "\eade"; +} +.ic-location:before { + content: "\eae0"; +} +.ic-unlock:before { + content: "\eae1"; +} +.ic-lock:before { + content: "\eae2"; +} +.ic-mail-opened:before { + content: "\eae4"; +} +.ic-mail:before { + content: "\eae5"; +} +.ic-map-2:before { + content: "\eae7"; +} +.ic-map-pin:before { + content: "\eae8"; +} +.ic-message-2:before { + content: "\eaec"; +} +.ic-message-circle:before { + content: "\eaed"; +} +.ic-message:before { + content: "\eaef"; +} +.ic-mood-happy:before { + content: "\eaf4"; +} +.ic-smilies:before { + content: "\eaf7"; +} +.ic-movie:before { + content: "\eafa"; +} +.ic-news:before { + content: "\eafd"; +} +.ic-paperclip:before { + content: "\eb02"; +} +.ic-pencil:before { + content: "\eb04"; +} +.ic-phone-call:before { + content: "\eb05"; +} +.ic-phone-incoming:before { + content: "\eb06"; +} +.ic-photo:before { + content: "\eb0a"; +} +.ic-plus:before { + content: "\eb0b"; +} +.ic-power:before { + content: "\eb0d"; +} +.ic-refresh:before { + content: "\eb13"; +} +.ic-rotate-clockwise:before { + content: "\eb15"; +} +.ic-search:before { + content: "\eb1c"; +} +.ic-server:before { + content: "\eb1f"; +} +.ic-settings:before { + content: "\eb20"; +} +.ic-share:before { + content: "\eb21"; +} +.ic-shield-check:before { + content: "\eb22"; +} +.ic-shopping-cart:before { + content: "\eb25"; +} +.ic-star:before { + content: "\eb2e"; +} +.ic-tag:before { + content: "\eb34"; +} +.ic-thumb-down:before { + content: "\eb3b"; +} +.ic-thumb-up:before { + content: "\eb3c"; +} +.ic-tool:before { + content: "\eb40"; +} +.ic-trash:before { + content: "\eb41"; +} +.ic-unlink:before { + content: "\eb46"; +} +.ic-upload:before { + content: "\eb47"; +} +.ic-user-check:before { + content: "\eb49"; +} +.ic-user-minus:before { + content: "\eb4a"; +} +.ic-user-plus:before { + content: "\eb4b"; +} +.ic-user-x:before { + content: "\eb4c"; +} +.ic-user:before { + content: "\eb4d"; +} +.ic-referers:before { + content: "\eb54"; +} +.ic-close:before { + content: "\eb55"; +} +.ic-zoom-in:before { + content: "\eb56"; +} +.ic-zoom-out:before { + content: "\eb57"; +} +.ic-arrows-horizontal:before { + content: "\eb59"; +} +.ic-arrows-sort:before { + content: "\eb5a"; +} +.ic-arrows-vertical:before { + content: "\eb5b"; +} +.ic-polls:before { + content: "\eb6a"; +} +.ic-comments:before { + content: "\eb6c"; +} +.ic-repeat:before { + content: "\eb72"; +} +.ic-anchor:before { + content: "\eb76"; +} +.ic-calculator:before { + content: "\eb80"; +} +.ic-notebook:before { + content: "\eb96"; +} +.ic-login:before { + content: "\eba7"; +} +.ic-logout:before { + content: "\eba8"; +} +.ic-rotate-clockwise-2:before { + content: "\ebb5"; +} +.ic-brush:before { + content: "\ebb8"; +} +.ic-typography:before { + content: "\ebc5"; +} +.ic-gallery:before { + content: "\ebc9"; +} +.ic-tools:before { + content: "\ebca"; +} +.ic-wand:before { + content: "\ebcb"; +} +.ic-plug:before { + content: "\ebd9"; +} +.ic-color-picker:before { + content: "\ebe6"; +} +.ic-users:before { + content: "\ebf2"; +} +.ic-phone-check:before { + content: "\ec05"; +} +.ic-brand-github:before { + content: "\ec1c"; +} +.ic-brand-google-drive:before { + content: "\ec1e"; +} +.ic-brand-instagram:before { + content: "\ec20"; +} +.ic-brand-telegram:before { + content: "\ec26"; +} +.ic-brand-twitter:before { + content: "\ec27"; +} +.ic-camera-minus:before { + content: "\ec3a"; +} +.ic-camera-plus:before { + content: "\ec3b"; +} +.ic-menu:before { + content: "\ec42"; +} +.ic-brand-whatsapp:before { + content: "\ec74"; +} +.ic-ratings:before { + content: "\ec78"; +} +.ic-separator-vertical:before { + content: "\ec7a"; +} +.ic-page-break:before { + content: "\ec81"; +} +.ic-brand-youtube:before { + content: "\ec90"; +} +.ic-select:before { + content: "\ec9e"; +} +.ic-forums:before { + content: "\ec9f"; +} +.ic-index:before { + content: "\ecde"; +} +.ic-brand-discord:before { + content: "\ece3"; +} +.ic-eye-off:before { + content: "\ecf0"; +} +.ic-brand-pocket:before { + content: "\ed00"; +} +.ic-bookmarks:before { + content: "\ed08"; +} +.ic-lock-off:before { + content: "\ed1e"; +} +.ic-stars:before { + content: "\ed38"; +} +.ic-message-circle-2:before { + content: "\ed3f"; +} +.ic-speakerphone:before { + content: "\ed61"; +} +.ic-star-off:before { + content: "\ed62"; +} +.ic-trash-off:before { + content: "\ed65"; +} +.ic-manual-gearbox:before { + content: "\ed7b"; +} +.ic-admin:before { + content: "\edcc"; +} +.ic-pm:before { + content: "\edcd"; +} +.ic-page:before { + content: "\edef"; +} +.ic-calendar-time:before { + content: "\ee21"; +} +.ic-chart-pie-3:before { + content: "\ee32"; +} +.ic-discount-2:before { + content: "\ee7c"; +} +.ic-edit-circle:before { + content: "\ee85"; +} +.ic-list-search:before { + content: "\eea9"; +} +.ic-pacman:before { + content: "\eebc"; +} +.ic-settings-automation:before { + content: "\eed6"; +} +.ic-shopping-cart-discount:before { + content: "\eedb"; +} +.ic-shopping-cart-plus:before { + content: "\eedd"; +} +.ic-hand-move:before { + content: "\ef50"; +} +.ic-user-circle:before { + content: "\ef68"; +} +.ic-report-search:before { + content: "\ef84"; +} +.ic-trash-x:before { + content: "\ef88"; +} +.ic-world-upload:before { + content: "\ef8b"; +} +.ic-shield-checkered:before { + content: "\ef9a"; +} +.ic-quote:before { + content: "\efbe"; +} +.ic-dic:before { + content: "\eff2"; +} +.ic-plug-connected:before { + content: "\f00a"; +} +.ic-paper-bag:before { + content: "\f02f"; +} +.ic-file-pencil:before { + content: "\f039"; +} +.ic-file-typography:before { + content: "\f041"; +} +.ic-pfs:before { + content: "\f07c"; +} +.ic-clock-2:before { + content: "\f099"; +} +.ic-typography-off:before { + content: "\f1ba"; +} \ No newline at end of file diff --git a/system/adminskin/simple/css/framework.css b/system/adminskin/simple/css/framework.css new file mode 100644 index 0000000..4c51d8b --- /dev/null +++ b/system/adminskin/simple/css/framework.css @@ -0,0 +1,1591 @@ +/*! + * Style & Grid based on Bootstrap v3.3.7 (http://getbootstrap.com) + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +html { + font-family: Arial, Tahoma; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + font-weight: normal; + font-style: normal; +} +html.disable-scrolling { + overflow: hidden; +} +body { + margin: 0; + font-size:15px; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + font-size: 2em; + margin: 0.67em 0; +} +mark { + background: #ff0; + color: #000; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-appearance: textfield; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +legend { + border: 0; + padding: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +.text-right { text-align:right;} +table { + border-collapse: collapse; + border-spacing: 0; +} +td, +th { + padding: 0; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:focus { + outline: none; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 14px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #007cc2; + text-decoration: none; + -webkit-transition: color 0.5s; + -moz-transition: color 0.5s; + -o-transition: color 0.5s; + transition: color 0.5s; +} +a:hover, +a:focus { + color: #7CD1ED; + text-decoration: underline; +} +a:focus { + outline: 0; + outline-offset: 0; +} +figure { + margin: 0; +} +img { + vertical-align: middle; + margin: 0; +} +.img-responsive { + display: inline-block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} + +[role="button"] { + cursor: pointer; +} +.container { + margin-right: auto; + margin-left: auto; + padding-left: 12px; + padding-right: 12px; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +@media (min-width: 1300px) { + .container { + width: 1270px; + } +} + +/* +@media (min-width: 1400px) { + .container { + width: 1360px; + } +} +*/ + +.container-fluid { + margin-right: auto; + margin-left: auto; + padding-left: 0; + padding-right: 0; +} +.row { + margin-left: -12px; + margin-right: -12px; +} +.split-row {margin-left: 0!important; margin-right: 0!important;} +.split-col {padding-left: 0!important; padding-right:0!important;} +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 12px; + padding-right: 12px; +} +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0%; +} +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0%; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0%; + } +} +.clearfix:before, +.clearfix:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after { + content: " "; + display: block; +} +.clearfix:after, +.container:after, +.container-fluid:after, +.row:after { + clear: both; +} +.center-block { + display: block; + margin-left: auto; + margin-right: auto; +} +.col-mb12 { + margin-bottom:12px; +} +.col-mb24 { + margin-bottom:24px; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table !important; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table !important; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table !important; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table !important; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} + +.text-justify { + text-align: justify !important; +} + +.text-nowrap { + white-space: nowrap !important; +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.text-left { + text-align: left !important; +} + +.text-right { + text-align: right !important; +} + +.text-center { + text-align: center !important; +} + +.row-flex, +.layout-row, +.row-flex-mobile { + display: -webkit-flex; + -webkit-flex-flow: row wrap; + display: flex; + flex-flow: row wrap; +} + +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} + +/*-------------------------*/ +/***** CHECKBOX STYLING *****/ +/*-------------------------*/ + +.checkbox { + position: absolute; + z-index: -1; + opacity: 0; + margin: 10px 0 0 7px; +} +.checkbox + label { + position: relative; + padding: 0 0 0 24px; + cursor: pointer; +} +.checkbox + label:before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 18px; + height: 18px; + border: 1px solid #CDD1DA; + border-radius: 2px; + background: #FFF; +} +.checkbox + label:after { + content: ''; + position: absolute; + top: 0px; + left: 0px; + width: 18px; + height: 18px; + background: url("../img/input_icons.svg") 50% 4px no-repeat; + opacity: 0; + transition: .2s; +} +.checkbox:checked + label:after { + opacity: 1; +} + +.checkbox:checked + label:before { + background: #67ac00; + border: 1px solid #5aa200; +} + +.checkbox[disabled] + label:before { + background: #ababab; + border: 1px solid #ababab; +} + +.checkbox + label span { + color:#cccccc; +} + +/*-------------------------*/ +/***** RADIO STYLING *****/ +/*-------------------------*/ + +.radio { + position: absolute; + z-index: -1; + opacity: 0; + margin: 10px 0 0 7px; +} +.radio + label { + position: relative; + padding: 3px 0 0 24px; + margin-right: 10px; + cursor: pointer; +} +.radio + label:before { + content: ''; + position: absolute; + top: 0px; + left: 0; + width: 18px; + height: 18px; + border: 1px solid #CDD1DA; + border-radius: 100%; + background: #FFF; +} +.radio + label:after { + content: ''; + position: absolute; + top: 0px; + left: 0px; + width: 18px; + height: 18px; + border-radius: 100%; + background: url("../img/input_icons.svg") 50% -17px no-repeat; + opacity: 0; + transition: .2s; +} +.radio:checked + label:after { + opacity: 1; +} + +.radio:checked + label:before { + background: #67ac00; + border: 1px solid #5aa200; +} + +.radio[disabled] + label:before { + background: #ababab; + border: 1px solid #ababab; +} + +.radio + label span { + color:#cccccc; +} + +/*----------------------------------------*/ +/***** INPUT, TEXTAREA, SELECT STYLES *****/ +/*----------------------------------------*/ + +input[type="email"], +input[type="password"], +input[type="tel"], +input[type="text"], +textarea { + background: #ffffff; + border: 1px solid #e4e2e2; + border-radius: 2px; + box-shadow: none; + color: #383838; + height: auto; + font-size: 1em; + line-height: 1em; + padding: 9px 10px 9px 10px; + outline: 0; + max-width: 100%; +} + +select { + background: #ffffff; + border: 1px solid #e4e2e2; + border-radius: 2px; + box-shadow: none; + color: #383838; + height: auto; + font-size: 1em; + padding: 8px 10px 8px 10px; + outline: 0; + max-width:100%; +} + +input[type="text"]:focus, +input[type="text"]:hover, +input[type="password"]:focus, +input[type="password"]:hover, +textarea:focus, +textarea:hover { + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); + box-shadow: none; + z-index: 3; + border-color: #9da3b1; + background: #fff; + outline: 0; +} + +input::-webkit-input-placeholder { color: #bbbdbf; } +input:-ms-input-placeholder { color: #bbbdbf; } +input::-ms-input-placeholder { color: #bbbdbf; } +input::placeholder { color: #bbbdbf; } + +blockquote { + color: #999999; + font-style: italic; + margin: 0.5em 0 1em; + padding: 0.25em 50px; + line-height: 1.45; + position: relative; +} + +blockquote:before { + display: block; + content: "\201C"; + font-size: 80px; + position: absolute; + left: -10px; + top: -20px; + color: #cccccc; +} + +blockquote cite { + color: #333333; + display: block; + margin-top: 10px; +} + +blockquote cite:before { + content: "\2014 \2009"; +} + +/*-------------------------*/ +/***** RESPONSIVE TABLE *****/ +/*-------------------------*/ + + +.table { + display: table; + width: 100%; + border: 1px solid #f3f3f3; +} + +.table-row { + display: table-row; + position: relative; +} + +.table-head { + font-weight: bold; + font-size: 13px; + border-bottom: 1px solid #f3f3f3; + color: #000; + background: #e5e5e5 url(../img/bg-content-box.gif) top left repeat-x; + text-align: center; + line-height: 1.3em; + vertical-align: middle; + display: table-header-group; +} + +.table-th { + display: table-cell; + padding: 10px; + vertical-align: middle; + position: relative; +} + +.table-td { + display: table-cell; + padding: 12px 10px; + line-height: 1.35em; + vertical-align: middle; + position: relative; +} + +.table-colspan-100 { + display: flex; + width: 100%; + height: 100%; + position: absolute; + vertical-align: middle; + padding: 10px; + align-content: center; + flex-direction: column; + justify-content: center; +} + +.table-row:nth-child(odd) { + +} + +.table-row:nth-child(even) { + background: #f3f3f3; +} + +.table-foot { + background-color: #EEE; + display: table-footer-group; + font-weight: bold; +} + +.table-body { + display: table-row-group; +} + +.table-btn { + padding: 15px; +} + +.config-field textarea { + width:100%; +} + +.coltop { + font-weight: bold; +} + +/*-------------------------*/ +/***** RESPONSIVE FORMS *****/ +/*-------------------------*/ + + +.form { + display:block; + margin:0!important; + padding:0!important; + border: 1px solid #f3f3f3; +} + +.form img { margin:0; } + +.form .form-row { + display: block; + display: flex; + width: 100%; + position: relative; + clear: both; + align-content: center; + flex-direction: row; + align-items: center; + line-height: 1.35em; +} + +.form .form-row:nth-child(odd) { + background: #f3f3f3; +} + +.form .form-row:nth-child(even) { + +} + +.form .form-row:after, +.form .form-row:before { + content: " "; + display: table; + clear:both; +} + +.form-field { + margin-bottom:0; +} + +.form .form-field { + display:block; + padding: 15px 12px; + float:left; + width:70%; +} + +.form .form-field-2col { + display:block; + float:left; + width:50%; + padding-right:10px; +} + +.form-group { + margin-bottom: 15px; +} + +.form .form-field > span { + padding: 6px 0; +} + +.form .form-field-help +{ + color: #929191; + font-size: 0.8em; + font-style: italic; +} + +.form .form-field-100 { + display:block; + padding: 12px 0; + width:100%; +} + +.form .form-label { + display: block; + padding: 15px 12px; + color: #7d7878; + font-weight: 300; + float: left; + width: 30%; + max-width:200px; +} + +.form .form-label > label { + font-weight: 300; + padding:0; +} + +.form .form-legend { + font-size: 0.95em; + color: #8e8f90; +} + +.form-btn { + padding: 15px; +} \ No newline at end of file diff --git a/system/adminskin/simple/css/main.css b/system/adminskin/simple/css/main.css new file mode 100644 index 0000000..39b69bb --- /dev/null +++ b/system/adminskin/simple/css/main.css @@ -0,0 +1,1259 @@ +/* = Reset Stylesheet +-----------------------------------------------------------------------------*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +dl, dt, dd, ol, ul, li, fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td { + margin: 0; + padding: 0; + border: 0; + outline: 0; + font-weight: inherit; + font-style: inherit; + font-size: 100%; + font-family: inherit; + vertical-align: baseline; +} + +:focus { + outline: 0; +} + +body { + line-height: 1.3em; + color: black; + background: white; +} + +ol, ul { + list-style: none; +} + +table { + border-collapse: separate; + border-spacing: 0; +} + +caption, th, td { + text-align: left; + font-weight: normal; +} + +blockquote:before, blockquote:after, +q:before, q:after { + content: ""; +} + +blockquote, q { + quotes: "" ""; +} + +/* = Basic Structure +-----------------------------------------------------------------------------*/ + +html { + font-size: 100%; + height: 100%; + margin-bottom: 1px; +} + +body { + color: #555; + background: #f0f0f0 url(../img/bg-body.gif) top left repeat-y; + font-size: 0.85em; + font-family: Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif; +} + +#body-wrapper { + background: url(../img/bg-radial-gradient.gif) fixed 230px top no-repeat; + min-width: 800px; +} + +/* = Elements styling +-----------------------------------------------------------------------------*/ + +h1, h2, h3, h4, h5, h6 { + font-weight: 600; + line-height: 1.15em; + margin: 0.6em 0; + color: #303030; + font-family: Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif; +} + +h1 { font-size: 3em; } +h2 { font-size: 2.5em; } +h3 { font-size: 2em; } +h4 { font-size: 1.5em; } +h5 { font-size: 1em; } + +p { + line-height: 1.45em; + margin: 0 0 0.6em 0; +} + +a { + color: #57a000; + text-decoration: none; +} + +a:hover { + color: #000; + text-decoration: none; +} + +a:active { + color: #777; + text-decoration: none; +} + +a:focus { + outline: 1px; + text-decoration: none; +} + +strong { + font-weight: bold; + color: #333; +} + +small { + font-size: 0.85em; +} + +pre { + font-family: monospace; +} + +.end { + margin-bottom: 1.4em; +} + + +/* = General Classes +-----------------------------------------------------------------------------*/ +.clear { + clear: both; +} + +.align-left { + float: left; +} + +.align-right { + float: right; +} + +.descr { + font-size: 0.9em; + color: #afafaf; +} + +/* = Button +-----------------------------------------------------------------------------*/ + +.btn { + background: rgb(164,208,74); + background: -moz-linear-gradient(180deg, rgba(164,208,74,1) 7%, rgba(68,147,1,1) 58%); + background: -webkit-linear-gradient(180deg, rgba(164,208,74,1) 7%, rgba(68,147,1,1) 58%); + background: linear-gradient(180deg, rgba(164,208,74,1) 7%, rgba(68,147,1,1) 58%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a4d04a",endColorstr="#449301",GradientType=1); + border-bottom: 1px solid #397a01; + border-top: 1px solid #64aa00; + border-left: 1px solid #61a700; + border-right: 1px solid #5aa200; + color: #ffffff; + display: inline-block; + outline: none; + cursor: pointer; + text-decoration: none; + font-size: 1em; + padding: 9px 30px; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; +} + +.btn:hover { + text-decoration: none; + background-color: #459300; + color: #ffffff; +} + +.btn-small { + padding: 2px 4px 2px 4px !important; + font-size: 12px !important; + text-align: center; +} + +.btn-small i { + vertical-align: middle; + font-size: 1em!important; +} + +.circle-btn { + border-radius: 100%; + height: 23px; + width: 23px; + padding: 0!important; + line-height: 20px; + text-align: center; + font-size: 16px!important; +} + +.btn:hover { + text-decoration: none; + background: #459300 url(../img/bg-button-green.gif) top left repeat-x !important; +} + +.icon { + font-family: Verdana, Arial, sans-serif; + display: inline-block; + text-align: center; + border: 1px solid #459300; + font-size: 15px !important; + cursor: pointer; + -webkit-border-radius: 16px; + -moz-border-radius: 16px; + border-radius: 16px; + width: 28px; + height: 28px; + line-height: 25px; + margin: 6px 5px; +} + +.icon i { + font-size: 1.1em!important; +} + +a.remove-link { + color: #bb0000; +} + +a.remove-link:hover { + color: #000; +} + +/* = Sidebar +-----------------------------------------------------------------------------*/ +#sidebar { + background: url(../img/bg-sidebar.gif) top left no-repeat; + width: 230px; + height: 100%; + position: absolute; + left: 0; + top: 0; + color: #888; + font-size: 11px; +} + +#sidebar #sidebar-wrapper { + margin: 0 0 0 9px; +} + +#sidebar a, +#sidebar a:active { + color: #ccc; +} + +#sidebar a:hover { + color: #fff; +} + +#sidebar #sidebar-title { + margin: 40px 0 40px 15px; +} + +#sidebar #logo { + margin: 40px 0 40px 0; + width: 221px; + height: 100px; + text-align: center; +} + +#sidebar #profile-links { + padding: 0 15px 20px 15px; + text-align: right; + line-height: 1.5em; +} + +/* = Sidebar Accordion Menu +-----------------------------------------------------------------------------*/ +#sidebar #main-nav { + width: 206px; + padding: 0; + margin: 0 0 0 15px; + font-family: Helvetica, Arial, sans-serif; +} + +#sidebar #main-nav li { + list-style: none; + padding-bottom: 10px; + text-align: right; +} + +#sidebar #main-nav li a.nav-top-item { + background: transparent url(../img/bg-menu-item-green.gif) right center no-repeat; + padding: 10px 15px; + color: #fff; + font-size: 14px; + cursor: pointer; + display: block; + text-decoration: none; +} + +#sidebar #main-nav li a.current { + background-image: url(../img/bg-menu-item-current.gif) !important; + color: #333; + font-weight: bold; +} + +#sidebar #main-nav li a.current:hover { + color: #333; +} + +#sidebar #main-nav ul { + padding: 0; + font-size: 12px; + margin: 0; +} + +#sidebar #main-nav ul li { + list-style: none; + margin: 0; + text-align: right; + padding: 0; +} + +#sidebar #main-nav ul li a { + padding: 8px 15px; + display: block; + color: #aaa; + font-size: 13px; + line-height: 1.2em; +} + +#sidebar #main-nav ul li a:hover, +#sidebar #main-nav ul li a.current, +#sidebar #main-nav ul li a.current:hover { + color: #fff; +} + +#sidebar #main-nav ul li a.current { + background: transparent url(../img/menu-current-arrow.gif) right center no-repeat !important; +} + +/* = Messages +-----------------------------------------------------------------------------*/ + +#messages p, +#messages form { + border-top: 1px solid #ddd; + padding: 10px 0; +} + +#messages h4 { + padding: 10px 0; +} + +#messages fieldset { + margin: 0; +} + +#messages textarea { + margin: 0 0 15px 0; +} + +/* = Top Bar Menu +-----------------------------------------------------------------------------*/ + +.topbar-menu { + display: table; + width:100%; + border-bottom:1px solid #dddddd; + background:#ffffff; +} + +.topbar-menu-left { + display: table-cell; + text-align: left; + vertical-align: middle; + padding-left: 20px; +} + +.topbar-menu-right { + display: table-cell; + text-align: right; + vertical-align: middle; + padding-right: 20px; +} + +.topbar-menu-right ul { + list-style: none; + float: right; + margin: 0; +} + +.topbar-menu-right ul li { + margin-bottom: 0; + float: left; + margin-left: .2em; +} + +.topbar-menu a { + margin-bottom: 0; + color: #333333; + text-decoration: none; + padding: 8px 10px; + display: inline-block; +} + +.topbar-menu a:hover { + color: #010101; + text-decoration: none; + background-color: #f0f0f0; +} + + +/* = Layout +-----------------------------------------------------------------------------*/ + +#main-content { + margin: 0 0px 0 230px; + padding: 0px 0 0 0; +} + +#main { + padding: 30px; +} + + +.column-left { + width: 49%; + float: left; +} + +.column-right { + width: 49%; + float: right; +} + +#page-intro { + font-size: 17px; + padding: 0 0 20px 0; +} + +#footer { + border-top: 1px solid #ccc; + margin: 0px 0 0 0; + padding: 20px 30px; + font-size: 14px; +} + +/* = Lists +-----------------------------------------------------------------------------*/ + +#main-content ul, +#main-content ol { + padding: 10px 0; +} + +#main-content ol { + padding: 0 0 0 24px; +} + +#main-content ol li { + list-style: decimal; + padding: 4px 0; +} + +/* = Content Box +-----------------------------------------------------------------------------*/ + +.content-box { + border: 1px solid #ccc; + margin: 0 0 20px 0; + background: #fff; +} + +.content-box-header { + background: #e5e5e5 url(../img/bg-content-box.gif) top left repeat-x; + margin-top: 1px; + position:relative; +} + +.content-box-header:before, +.content-box-header:after { + content: " "; + display: block; +} + +.content-box-header:after { + clear: both; +} + +.content-box-header h3 { + padding: 12px 15px 12px 15px; + margin: 0; + font-size: 16px; + line-height: 1.3em; + float: left; +} + +.content-box-header-right { + float: right; + padding: 5px 15px 5px 0 !important; + margin: 0 !important; +} + +.content-box-content { + padding: 20px; + border-top: 1px solid #ccc; +} + +.content-box-content i { + font-size: 1.3em; + vertical-align: middle; +} + +/* = Tabs +-----------------------------------------------------------------------------*/ + +.sedtabs div.tabs { + display: none; +} + +.sedtabs div.tabs:first-child { + display: block; +} + +.tab-box { + background: #ffffff; + border: 1px solid #ccc; + min-height: 100px; + clear: both; + padding: 15px 15px 15px 15px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.noborder { + border: none; + border-top: 1px solid #ccc; +} + +ul.tabs { + margin: 0px; + padding: 0px; +} + +ul.tabs li { + list-style: none; + display: inline; +} + +ul.tabs li a { + float: left; + padding: 8px 25px 8px 25px; + text-decoration: none; + margin-right: 3px; + margin-bottom: -1px; +} + +ul.tabs li a:hover { + color: #212121; +} + +ul.tabs li a.selected { + background-color: #ffffff; + color: #282e32; + border: 1px solid #ccc; + border-bottom: 1px solid #ffffff; + -webkit-border-top-left-radius: 3px; + -webkit-border-top-right-radius: 3px; + -moz-border-radius-topleft: 3px; + -moz-border-radius-topright: 3px; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + background: rgba(237,237,237,1); + background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,237,237,1)), color-stop(53%, rgba(246,246,246,1)), color-stop(100%, rgba(255,255,255,1))); + background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: -o-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: linear-gradient(to bottom, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0 ); +} + +ul.content-box-tabs { + position: absolute; + padding: 11px 15px 0 0 !important; + margin: 0 !important; + line-height:1; + right:0; +} + +ul.content-box-tabs li { + float: left; + margin: 0; + padding: 0 !important; + background-image: none !important; +} + +ul.content-box-tabs li a { + color: #333; + padding: 10px 16px; + display: block; + margin: 1px; + border-bottom: 0; +} + +ul.content-box-tabs li a:hover { + color: #57a000; +} + +ul.content-box-tabs li a.current, ul.content-box-tabs li a.selected { + background: #fff; + border: 1px solid #ccc; + font-weight: 600; + border-bottom: 0; + margin: 0; + -webkit-border-top-left-radius: 3px; + -webkit-border-top-right-radius: 3px; + -moz-border-radius-topleft: 3px; + -moz-border-radius-topright: 3px; + border-top-left-radius: 3px; + border-top-right-radius: 3px; + background: rgba(237,237,237,1); + background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,237,237,1)), color-stop(53%, rgba(246,246,246,1)), color-stop(100%, rgba(255,255,255,1))); + background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: -o-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + background: linear-gradient(to bottom, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0 ); +} + +/* = Table +-----------------------------------------------------------------------------*/ + +#main-content table { + width: 100%; + border-collapse: collapse; + border: 1px solid #ddd; +} + +#main-content table thead th { + font-weight: bold; + font-size: 13px; + border-bottom: 1px solid #ddd; + color: #000; + background: #e5e5e5 url(../img/bg-content-box.gif) top left repeat-x; + text-align: center; +} + +#main-content tbody { + border-bottom: 1px solid #ddd; +} + +#main-content tbody tr { + background: #fff; +} + +#main-content tbody tr.alt-row { + background: #f3f3f3; +} + +#main-content table th { + padding: 10px; + line-height: 1.3em; + vertical-align: middle; +} + +#main-content table td { + padding: 12px 10px; + line-height: 1.35em; + vertical-align: middle; +} + +#main-content table tfoot td .bulk-actions { + padding: 15px 0 5px 0; +} + +#main-content table tfoot td .bulk-actions select { + padding: 4px; + border: 1px solid #ccc; +} + +/* = Shortcut Buttons +-----------------------------------------------------------------------------*/ + +.shortcut-button { + border: 1px solid #ccc; + background: #f7f7f7 url(../img/shortcut-button-bg.gif) top left no-repeat; + display: block; + max-width: 125px; + min-width: 120px; + min-height: 80px; + margin: 0 0 20px 0; +} + +.bt1 { + height: 104px; + width: 114px; +} + +.shortcut-button span { + display: block; + padding: 15px 10px 15px 10px; + text-align: center; + color: #555; + font-size: 13px; + line-height: 1.3em; +} + +.shortcut-button span img { + margin-bottom: 10px; +} + +.shortcut-button:hover { + background: #fff; + text-decoration: none; +} + +.shortcut-button span:hover { + color: #57a000; +} + +ul.shortcut-buttons-set li { + float: left; + margin: 0 15px 0 0; + padding: 0 !important; + background: 0; +} + +/* = Notifications +-----------------------------------------------------------------------------*/ + +.notification { + position: relative; + margin: 0 0 15px 0; + padding: 0; + border: 1px solid; + background-position: 10px 11px !important; + background-repeat: no-repeat !important; + font-size: 13px; + width: 99.8%; +} + +.attention { + background: #fffbcc url(../img/icons/exclamation.png) 10px 11px no-repeat; + border-color: #e6db55; + color: #666452; +} + +.information { + background: #dbe3ff url(../img/icons/information.png); + border-color: #a2b4ee; + color: #585b66; +} + +.success { + background: #d5ffce url(../img/icons/tick_circle.png); + border-color: #9adf8f; + color: #556652; +} + +.error { + background: #ffcece url(../img/icons/cross_circle.png); + border-color: #df8f8f; + color: #665252; +} + +.notification div { + display: block; + font-style: normal; + padding: 10px 10px 10px 36px; + line-height: 1.5em; +} + +.notification .close { + color: #990000; + font-size: 9px; + background: url(../img/icons/cross_grey_small.png); + display: block; + width: 7px; + height: 7px; + position: absolute; + right: 5px; + top: 5px; +} + +.input-notification { + background-position: left 2px; + background-repeat: no-repeat; + padding: 2px 0 2px 22px; + background-color: transparent; + margin: 0 0 0 5px; +} + +#login-wrapper #login-content .notification { + border: 0; + background-color: #141414; + color: #fff !important; +} + +/* +.button, +#main-content table tfoot td .bulk-actions select, +.pagination a.number, +form input.text-input, +form textarea, +form select, +.dp-popup { + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; +} + +*/ + +.content-box, +.content-box-header, +ul.content-box-tabs li a.current, +.shortcut-button, +.notification { + -moz-border-radius: 6px; + -webkit-border-radius: 6px; + border-radius: 6px; +} + +.content-box-header { + -moz-border-radius-bottomleft: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-left-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.closed-box .content-box-header { + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-bottomright: 6px; + -webkit-border-bottom-left-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; +} + +ul.content-box-tabs li a.current { + -moz-border-radius-bottomleft: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-left-radius: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.shortcut-button span { + -moz-border-radius: 7px; + -webkit-border-radius: 7px; + border-radius: 7px; +} + +.centered { + text-align: center; +} + +.help { + font-style: italic; + margin: 10px; +} + +/* = User Menu +-----------------------------------------------------------------------------*/ + +#user { + margin: 0px 0px 0 230px; + height: 30px; + background: url(../img/bg-login.gif) top left repeat-x; +} + +#user ul { + list-style: none; + float: right; + margin: 0; + margin-right: 30px; +} + +#user ul li { + margin-bottom: 0; + float: left; + margin-left: .2em; +} + +#user ul li a, #user ul li span { + margin-bottom: 0; + color: #ffffff; + text-decoration: none; + padding: 8px 10px; + display: block; +} + +#user ul li a:hover { + color: #010101; + text-decoration: none; + background-color: #f0f0f0; +} + +#user .notices { + float: left; + padding: 2px 0px; +} + +/* = Icons List +-----------------------------------------------------------------------------*/ + +#main-content ul.check_list, +#main-content ul.plus_list, +#main-content ul.minus_list, +#main-content ul.star_list, +#main-content ul.arrow_list, +#main-content ul.square_list, +#main-content ul.circle_list, +#main-content ul.cross_list { + margin: 5px 20px; +} + +#main-content ul.check_list li, +#main-content ul.plus_list li, +#main-content ul.minus_list li, +#main-content ul.star_list li, +#main-content ul.arrow_list li, +#main-content ul.square_list li, +#main-content ul.circle_list li, +#main-content ul.cross_list li { + list-style: none; + margin: 15px 0; +} + +#main-content ul.check_list li { + background: url("../img/g_list_check.png") no-repeat 0 50%; + padding: 0 0 0 18px; +} + +#main-content ul.plus_list li { + background: url("../img/g_list_plus.png") no-repeat 0 50%; + padding: 0 0 0 18px; +} + +#main-content ul.minus_list li { + background: url("../img/g_list_minus.png") no-repeat 0 50%; + padding: 0 0 0 18px; +} + +#main-content ul.star_list li { + background: url("../img/g_list_star.png") no-repeat 0 50%; + padding: 0 0 0 16px; +} + +#main-content ul.arrow_list li { + background: url("../img/g_list_arrow.png") no-repeat 0 50%; + padding: 0 0 0 16px; +} + +#main-content ul.square_list li { + background: url("../img/g_list_square.png") no-repeat 0 50%; + padding: 0 0 0 16px; +} + +#main-content ul.circle_list li { + background: url("../img/g_list_circle.png") no-repeat 0 50%; + padding: 0 0 0 16px; +} + +#main-content ul.cross_list li { + background: url("../img/g_list_cross.png") no-repeat 0 50%; + padding: 0 0 0 16px; +} + +.bar_front { + background-color: #72b626; + border-right: 0px solid #333333; + padding: 0; + color: #DDDDDD; + height: 15px; +} + +.bar_back { + background-color: #EBECF1; + border: 1px solid #333333; + margin: 0 7px 0 7px; + height: 17px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + + +/* = Pagination +-----------------------------------------------------------------------------*/ + +.paging { + text-align: center; + padding: 8px; + width: 100%; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12px; +} + +.pagination { + position: relative; + left: -9px; + margin: 0; + list-style: none; +} + +.pagination:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} + +.pagination li { + float: left; + margin-right: 2px; +} + +.pagination li a, +.pagination li span { + display: block; + padding: 7px 9px; + border: 1px solid #ddd; + line-height: 1; + border-radius: 0.5em; + color: #000; + text-decoration: none; +} + +.pagination li span { + border: 1px solid #ddd; + background-color: #333; + color: #ffffff; +} + +.pagination li a:focus, +.pagination li a:hover { + text-decoration: underline; + border: 1px solid #ddd; + background-color: #333; + color: #ffffff; +} + +/* = Modal Windows +-----------------------------------------------------------------------------*/ + +.sed_modal { + position: absolute; + -moz-border-radius: 5px; + border-radius: 5px; + border: 1px solid #ccc; + visibility: hidden; + background-color: white; + box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2); +} + +.modal-handle { + padding: 7px; + text-indent: 3px; + font: bold 14px Arial; + background-color: #303030; + color: white; + cursor: move; + overflow: hidden; + width: auto; + filter: progid:DXImageTransform.Microsoft.alpha(opacity=100); + -moz-opacity: 1; + opacity: 1; + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; +} + +.modal-handle .modal-controls { + position: absolute; + right: 1px; + top: 2px; + cursor: hand; + cursor: pointer; + margin: 5px 5px 0 0; +} + +* html .modal-handle { + width: 100%; +} + +.modal-contentarea { + background-color: white; + color: black; + height: 150px; + padding: 2px; + overflow: auto; +} + +.modal-statusarea { + background-color: #F8F8F8; + height: 13px; + -webkit-border-bottom-right-radius: 5px; + -webkit-border-bottom-left-radius: 5px; + -moz-border-radius-bottomright: 5px; + -moz-border-radius-bottomleft: 5px; + border-bottom-right-radius: 5px; + border-bottom-left-radius: 5px; +} + +.modal-resizearea { + float: right; + width: 13px; + height: 13px; + cursor: nw-resize; + font-size: 0; + margin-right: 5px; + margin-bottom: 5px; +} + +#main-content .breadcrumbs ol { + margin: 0; + padding: 0; +} + +.breadcrumbs { + margin-bottom: 15px; +} + +.breadcrumbs li { + display: inline-block; + list-style: none; + position: relative; + border: 1px solid #ccc; + background: #e5e5e5 url(../img/bg-content-box.gif) top left repeat-x; + -webkit-transition: opacity 1s; + -moz-transition: opacity 1s; + -o-transition: opacity 1s; + transition: opacity 1s; +} + +.breadcrumbs li + li { + margin-left: -5px; +} + +.breadcrumbs li:nth-child(7) { + z-index: 1; +} + +.breadcrumbs li:nth-child(6) { + z-index: 2; +} + +.breadcrumbs li:nth-child(5) { + z-index: 3; +} + +.breadcrumbs li:nth-child(4) { + z-index: 4; +} + +.breadcrumbs li:nth-child(3) { + z-index: 5; +} + +.breadcrumbs li:nth-child(2) { + z-index: 6; +} + +.breadcrumbs li:first-child { + z-index: 7; +} + +.breadcrumbs a { + display: inline-block; + position: relative; + padding: 6px 28px; + margin: 0; + color: #333; + text-decoration: none; + text-shadow: 1px 1px 1px rgba(255,255,255,0.5); +} + +.breadcrumbs li:first-child { + -webkit-border-radius: 5px 0 0 5px; + -moz-border-radius: 5px 0 0 5px; + border-radius: 5px 0 0 5px; +} + +.breadcrumbs li:last-child { + -webkit-border-radius: 0 5px 5px 0; + -moz-border-radius: 0 5px 5px 0; + border-radius: 0 5px 5px 0; +} + +.breadcrumbs li:not(:last-child):before { + content: ""; + position: absolute; + right: 0px; + top: 4px; + width: 20px; + height: 31px; + background: #e5e5e5 url(../img/bg-content-box.gif) top left repeat-x; + z-index: 10; +} + +.breadcrumbs li:not(:last-child):after { + content: ""; + position: absolute; + right: -8px; + top: 11px; + width: 15px; + height: 15px; + background: #e5e5e5 url(../img/bg-content-box.gif) top left repeat-x; + border: 1px solid #999; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} + +.breadcrumbs li:hover { + background: #e5e5e5; +} + +.breadcrumbs li:hover:not(:last-child):after { + background: #e5e5e5; +} + +.breadcrumbs li:hover:not(:last-child):before { + background: #e5e5e5; +} + +.breadcrumbs a:hover, .breadcrumbs a:focus { + color: #000; + text-decoration: underline; +} + +.rss-title { } +.rss-date { } +.rss-desc { + font-size: 0.9em; + line-height: 1.35em; + padding-top: 5px; + color: #979191; +} \ No newline at end of file diff --git a/system/adminskin/simple/fonts/Seditio/Read Me.txt b/system/adminskin/simple/fonts/Seditio/Read Me.txt new file mode 100644 index 0000000..8491652 --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/system/adminskin/simple/fonts/Seditio/Seditio.eot b/system/adminskin/simple/fonts/Seditio/Seditio.eot new file mode 100644 index 0000000..3753f4f Binary files /dev/null and b/system/adminskin/simple/fonts/Seditio/Seditio.eot differ diff --git a/system/adminskin/simple/fonts/Seditio/Seditio.svg b/system/adminskin/simple/fonts/Seditio/Seditio.svg new file mode 100644 index 0000000..e0b2989 --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/Seditio.svg @@ -0,0 +1,210 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/system/adminskin/simple/fonts/Seditio/Seditio.ttf b/system/adminskin/simple/fonts/Seditio/Seditio.ttf new file mode 100644 index 0000000..2cfff07 Binary files /dev/null and b/system/adminskin/simple/fonts/Seditio/Seditio.ttf differ diff --git a/system/adminskin/simple/fonts/Seditio/Seditio.woff b/system/adminskin/simple/fonts/Seditio/Seditio.woff new file mode 100644 index 0000000..a1fe139 Binary files /dev/null and b/system/adminskin/simple/fonts/Seditio/Seditio.woff differ diff --git a/system/adminskin/simple/fonts/Seditio/demo-files/demo.css b/system/adminskin/simple/fonts/Seditio/demo-files/demo.css new file mode 100644 index 0000000..a91b92b --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 24px; +} + diff --git a/system/adminskin/simple/fonts/Seditio/demo-files/demo.js b/system/adminskin/simple/fonts/Seditio/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/system/adminskin/simple/fonts/Seditio/demo.html b/system/adminskin/simple/fonts/Seditio/demo.html new file mode 100644 index 0000000..44c94a9 --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/demo.html @@ -0,0 +1,2838 @@ + + + + + IcoMoon Demo + + + + + +
    +

    Font Name: Seditio (Glyphs: 200)

    +
    +
    +

    Grid Size: 24

    +
    +
    + + ic-github +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-computing +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-data-connection +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-adjustments +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-alarm +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-alert-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-alert-triangle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-left-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-right-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-narrow-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-left-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrow-up-right-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-maximize +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-at +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-award +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-banlist +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pages +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-bookmark +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-briefcase +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calendar-event +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calendar +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-camera +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chart-area-line +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-hits +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chart-candle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevron-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chevrons-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-minus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-circle-x +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-clock +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-download +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cloud-upload +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-code +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-compass +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-copy +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-left-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-left-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-right-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-right-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-up-left +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-corner-up-right +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-credit-card +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-cache +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-device-desktop +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-directions +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-dots +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-download +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-edit +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-external-link +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-eye +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-filter +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-flag +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-folder +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-folders +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-heart +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-home +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-home-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-id +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-key +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-link +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-location +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-unlock +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-lock +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-mail-opened +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-mail +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-map-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-map-pin +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-mood-happy +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-smilies +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-movie +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-news +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-paperclip +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pencil +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phone-call +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phone-incoming +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-photo +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-power +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-refresh +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-rotate-clockwise +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-search +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-server +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-settings +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-share +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shield-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shopping-cart +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-star +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-tag +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-thumb-down +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-thumb-up +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-tool +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-trash +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-unlink +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-upload +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-minus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-x +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-referers +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-close +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-zoom-in +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-zoom-out +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-horizontal +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-sort +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-arrows-vertical +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-polls +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-comments +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-repeat +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-anchor +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calculator +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-notebook +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-login +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-logout +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-rotate-clockwise-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brush +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-typography +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-gallery +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-tools +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-wand +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-plug +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-color-picker +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-users +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-phone-check +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-github +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-google-drive +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-instagram +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-telegram +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-twitter +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-camera-minus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-camera-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-menu +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-whatsapp +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-ratings +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-separator-vertical +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-page-break +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-youtube +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-select +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-forums +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-index +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-discord +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-eye-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-brand-pocket +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-bookmarks +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-lock-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-stars +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-message-circle-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-speakerphone +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-star-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-trash-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-manual-gearbox +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-admin +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pm +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-page +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-calendar-time +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-chart-pie-3 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-discount-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-edit-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-list-search +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pacman +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-settings-automation +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shopping-cart-discount +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shopping-cart-plus +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-hand-move +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-user-circle +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-report-search +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-trash-x +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-world-upload +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-shield-checkered +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-quote +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-dic +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-plug-connected +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-paper-bag +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-file-pencil +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-file-typography +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-pfs +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-clock-2 +
    +
    + + +
    +
    + liga: + +
    +
    +
    +
    + + ic-typography-off +
    +
    + + +
    +
    + liga: + +
    +
    +
    + + +
    +

    Font Test Drive

    + + +
      +
    +
    + +
    +

    Generated by IcoMoon

    +
    + + + + diff --git a/system/adminskin/simple/fonts/Seditio/selection.json b/system/adminskin/simple/fonts/Seditio/selection.json new file mode 100644 index 0000000..49f6680 --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M512.008 12.642c-282.738 0-512.008 229.218-512.008 511.998 0 226.214 146.704 418.132 350.136 485.836 25.586 4.738 34.992-11.11 34.992-24.632 0-12.204-0.48-52.542-0.696-95.324-142.448 30.976-172.504-60.41-172.504-60.41-23.282-59.176-56.848-74.916-56.848-74.916-46.452-31.778 3.51-31.124 3.51-31.124 51.4 3.61 78.476 52.766 78.476 52.766 45.672 78.27 119.776 55.64 149.004 42.558 4.588-33.086 17.852-55.68 32.506-68.464-113.73-12.942-233.276-56.85-233.276-253.032 0-55.898 20.004-101.574 52.76-137.428-5.316-12.9-22.854-64.972 4.952-135.5 0 0 43.006-13.752 140.84 52.49 40.836-11.348 84.636-17.036 128.154-17.234 43.502 0.198 87.336 5.886 128.256 17.234 97.734-66.244 140.656-52.49 140.656-52.49 27.872 70.528 10.35 122.6 5.036 135.5 32.82 35.856 52.694 81.532 52.694 137.428 0 196.654-119.778 239.95-233.79 252.624 18.364 15.89 34.724 47.046 34.724 94.812 0 68.508-0.596 123.644-0.596 140.508 0 13.628 9.222 29.594 35.172 24.566 203.322-67.776 349.842-259.626 349.842-485.768 0-282.78-229.234-511.998-511.992-511.998z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":24,"tags":["github (1)"]},"attrs":[{}],"properties":{"order":198,"id":1978,"name":"github","prevSize":24,"code":59648},"setIdx":0,"setId":2,"iconIdx":0},{"icon":{"paths":["M600.993 196.479c47.401 0 82.559 11.338 117.887 23.115 41.245 13.749 77.269 39.128 105.174 67.034 29.31 29.31 54.907 64.168 69.345 107.485 7.885 23.654 16.181 45.722 16.181 76.28 1.156 13.869 0 15.025 2.312 15.025 1.156 0 6.935 1.156 12.713 1.156 16.59 0 31.672 5.55 46.23 10.402 80.637 26.879 147.937 93.178 147.937 198.79 0 61.697-15.845 100.491-42.763 136.379-23.388 31.183-54.146 54.713-93.616 70.501-38.707 15.483-33.798 15.025-101.707 15.025h-50.853v144.47h98.239c86.604 0 93.634-1.921 116.731 5.779 18.238 6.079 36.364 41.384 20.804 64.722-8.174 12.26-18.152 20.304-33.517 25.427-4.623 1.156-35.828 1.156-105.174 1.156-63.567 0-104.018 0-109.797-1.156-42.191-10.547-67.704-32.062-80.903-71.657-2.312-5.779-2.312-13.869-2.312-87.837v-80.903h-95.928v98.239c0 68.19 0 99.395-1.156 104.018-6.982 20.947-16.816 32.521-39.296 38.14-30.347 6.069-48.010-15.739-55.476-38.14-1.156-4.623-1.156-35.828-1.156-104.018v-98.239h-95.928v80.903c0 87.59 1.474 75.324-6.935 100.551-7.766 23.295-33.876 48.054-58.944 54.321-28.656 7.163-40.231 5.779-127.133 5.779-69.345 0-100.551 0-105.174-1.156-20.428-6.81-44.35-24.427-38.14-55.476 5.314-21.258 17.999-32.582 38.14-39.296 4.623-1.156 35.828-1.156 104.018-1.156h98.239v-144.47h-24.271c-42.553 0-70.314-8.709-100.551-20.804-33.755-13.503-60.808-31.914-85.526-56.632-8.090-8.090-18.492-19.648-23.115-26.582s-12.713-16.181-16.181-21.959c-21.362-35.604-39.296-74.85-39.296-130.6 0-66.537 15.58-105.328 40.451-146.781 35.626-59.378 98.051-103.286 176.831-119.043 5.779-1.156 13.869-2.312 15.025-2.312 4.286 0 11.604-19.74 16.181-28.894 24.232-48.461 56.605-82.811 100.551-112.108 6.935-4.623 18.492-12.713 25.427-16.181l25.427-12.713c38.847-19.425 84.894-26.582 141.002-26.582zM598.682 292.406c-70.12 0-116.212 22.468-156.027 54.321-24.478 19.582-41.915 44.108-54.321 75.124-2.312 5.779-6.935 16.181-8.090 21.959-6.048 30.243-20.175 39.66-54.321 42.763-41.307 0-69.657 15.442-95.928 31.205-44.022 26.414-73.968 76.038-73.968 144.47 0 36.254 16.419 67.621 33.517 88.993 10.21 12.762 22.127 26.421 34.673 35.828 21.646 16.234 50.044 26.189 80.903 32.361 8.090 1.156 65.878 1.156 313.21 1.156h303.964c56.047-12.454 99.395-49.643 99.395-117.887 0-43.262-13.164-60.625-33.517-84.37-26.587-26.587-48.865-35.828-105.174-35.828-31.257 0-33.574-0.789-48.542-5.779-19.188-6.396-29.060-30.296-24.271-56.632 1.156-8.090 3.467-19.648 3.467-25.427 0-62.993-23.167-105.226-55.476-137.535-21.885-21.885-45.406-38.251-76.28-48.542l-24.271-8.090c-20.303-6.767-30.355-8.090-58.944-8.090z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-computing"],"defaultCode":61904,"grid":24},"attrs":[],"properties":{"id":3,"order":104,"ligatures":"","prevSize":24,"code":61904,"name":"cloud-computing"},"setIdx":0,"setId":2,"iconIdx":4},{"icon":{"paths":["M725.815 1014.754c-22.886 51.495-62.598 95.928-136.379 95.928-59.764 0-94.199-30.778-121.354-64.722-5.964-9.938-10.457-20.927-15.025-31.205h-153.716c-107.485 0-154.871-1.156-157.183-2.312s-5.779-2.312-9.246-3.467c-17.718-5.906-34.355-42.662-19.648-64.722 3.846-5.771 12.941-18.567 19.648-20.804 3.467-1.156 6.935-2.312 9.246-3.467s49.698-2.312 157.183-2.312h153.716c15.259-40.929 46.906-72.581 87.837-87.837v-56.632h-75.124c-61.255 0-77.436-1.156-86.682-2.312-23.399-3.9-48.608-8.905-64.722-19.648-9.848-6.567-28.032-14.163-36.984-23.115-36.503-36.503-72.813-75.366-72.813-147.937 0-36.191 4.402-57.346 16.181-80.903 2.312-4.623 5.779-13.869 9.246-19.648 28.703-47.837 77.676-87.299 143.314-98.239 23.085-51.941 61.898-88.159 112.108-113.264 15.676-7.837 35.655-15.66 55.476-18.492 8.090-1.156 18.492-4.623 23.115-4.623s17.336-1.156 26.582-1.156c55.549 0 98.554 15.676 134.068 36.984 20.897 12.539 42.113 30.341 56.632 49.698l13.869 18.492c19.454 25.937 25.311 58.997 33.517 95.928 20.288 4.507 36.982 7.511 54.321 16.181 44.090 22.044 74.593 61.44 87.837 114.42 1.156 4.623 3.467 16.181 3.467 27.738 0 80.77-39.671 127.899-93.616 154.871-14.231 7.115-28.506 10.787-43.919 13.869-8.090 1.156-27.738 1.156-105.174 1.156h-93.616v56.632c39.951 14.47 73.629 47.554 87.837 87.837h153.716c164.562 0 143.081-4.739 168.74 8.090 15.53 7.764 32.567 39.565 17.336 62.411-7.301 10.952-14.482 19.852-27.738 24.271-5.779 2.312-12.713 2.312-158.339 2.312h-153.716zM728.126 496.975c0-12.086 3.467-26.345 3.467-38.14 0-43.527-22.994-70.989-48.542-90.149-19.225-14.419-51.488-27.738-83.214-27.738h-20.804c-41.145 0-72.064 22.366-93.616 43.919-13.733 13.733-24.537 29.070-28.894 50.853-7.68 26.878-20.189 35.759-52.009 39.296-33.369 0-60.621 13.944-76.28 33.517-16.222 20.279-27.738 37.095-27.738 72.813 0 20.629 10.899 38.885 19.648 52.009 9.304 13.956 24.306 23.138 38.14 32.361 7.797 5.197 19.837 6.693 30.050 9.246 5.779 1.156 49.698 2.312 220.749 2.312h213.815c28.304-12.13 55.476-28.289 55.476-68.19 0-17.297-8.373-36.112-17.336-45.074-18.808-18.808-26.911-20.942-68.19-23.115-32.455-1.708-28.968-0.036-42.763-6.935-9.667-4.833-21.959-22.734-21.959-36.984zM591.747 918.826c-21.024 0-26.356 4.396-36.984 15.025-9.391 9.391-11.558 13.46-11.558 32.361 0 18.125 3.949 25.909 12.713 34.673 6.628 6.628 15.346 12.713 26.582 12.713h13.869c16.349 0 32.878-15.421 36.984-27.738 2.312-5.779 2.312-8.090 2.312-19.648 0-25.212-8.446-34.273-25.427-42.763-6.935-3.467-8.090-4.623-18.492-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-data-connection"],"defaultCode":61905,"grid":24},"attrs":[],"properties":{"id":4,"order":105,"ligatures":"","prevSize":24,"code":61905,"name":"cloud-data-connection"},"setIdx":0,"setId":2,"iconIdx":5},{"icon":{"paths":["M302.808 243.865c26.239 0 38.528 19.658 45.074 39.296 1.156 3.467 1.156 35.828 1.156 83.214v78.591c29.212 9.737 51.148 28.131 68.19 50.853 16.901 22.534 26.582 44.618 26.582 84.37 0 64.036-29.512 104.328-72.813 125.977-8.206 4.103-13.775 7.674-21.959 10.402v174.519c0 113.264 0 176.831-1.156 180.298-6.939 20.817-18.66 38.14-47.386 38.14-29.112 0-40.252-16.738-47.386-38.14-1.156-3.467-1.156-67.034-1.156-180.298v-174.519c-28.619-9.54-52.564-29.634-69.345-52.009-16.4-21.867-25.427-45.395-25.427-84.37 0-50.161 17.232-77.332 42.763-102.862 10.755-10.755 25.63-21.809 40.451-27.738l11.558-4.623v-78.591c0-47.386 0-79.747 1.156-83.214 7.373-22.118 20.371-39.296 49.698-39.296zM591.747 243.865c26.239 0 38.528 19.658 45.074 39.296 1.156 4.623 1.156 82.059 1.156 227.684v223.061c29.212 9.737 51.148 28.131 68.19 50.853 16.901 22.534 26.582 44.618 26.582 84.37 0 64.036-29.512 104.328-72.813 125.977-8.206 4.103-13.775 7.674-21.959 10.402v30.050c0 42.632-2.652 57.381-28.894 70.501-6.935 3.467-8.090 3.467-19.648 3.467-16.782 0-25.18-4.377-33.517-12.713-15.588-15.588-15.025-25.499-15.025-61.255v-30.050c-28.619-9.54-52.564-29.634-69.345-52.009-16.4-21.867-25.427-45.395-25.427-84.37 0-50.161 17.232-77.332 42.763-102.862 10.755-10.755 25.63-21.809 40.451-27.738l11.558-4.623v-223.061c0-145.625 0-223.061 1.156-227.684 7.373-22.118 20.371-39.296 49.698-39.296zM829.833 294.718c0-29.896 20.604-50.853 50.853-50.853 27.433 0 46.23 23.944 46.23 50.853v5.779c29.212 9.737 51.148 28.131 68.19 50.853 17.17 22.893 26.582 45.017 26.582 85.526 0 63.006-30.191 103.511-72.813 124.822-8.206 4.103-13.775 7.674-21.959 10.402v247.332c0 161.806 0 247.332-1.156 251.955-6.939 20.817-18.66 38.14-47.386 38.14-29.112 0-40.252-16.738-47.386-38.14-1.156-4.623-1.156-90.149-1.156-251.955v-247.332c-28.619-9.54-52.564-29.634-69.345-52.009-16.481-21.976-25.427-46.29-25.427-85.526 0-49.398 17.567-76.511 42.763-101.707 10.755-10.755 25.63-21.809 40.451-27.738l11.558-4.623v-5.779zM925.761 435.72c0-28.115-20.488-47.386-48.542-47.386-2.312 0-6.935 1.156-9.246 1.156-16.654 0-36.984 23.524-36.984 40.451v13.869c0 22.566 23.584 39.296 47.386 39.296 29.541 0 47.386-18.819 47.386-47.386zM347.883 580.19c0-28.115-20.488-47.386-48.542-47.386-2.312 0-6.935 1.156-9.246 1.156-16.654 0-36.984 23.524-36.984 40.451v13.869c0 21.988 24.3 40.451 47.386 40.451 28.478 0 47.386-20.516 47.386-48.542zM588.28 821.743c-2.312 0-6.935 1.156-9.246 1.156-16.654 0-36.984 23.524-36.984 40.451v13.869c0 21.988 24.3 40.451 47.386 40.451 29.052 0 47.386-20.035 47.386-48.542 0-28.6-20.249-47.386-48.542-47.386z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["adjustments"],"defaultCode":59907,"grid":24},"attrs":[],"properties":{"id":15,"order":112,"ligatures":"","prevSize":24,"code":59907,"name":"adjustments"},"setIdx":0,"setId":2,"iconIdx":16},{"icon":{"paths":["M349.038 243.865c17.828 0 28.113 9.621 36.984 18.492 7.487 7.487 9.246 12.641 9.246 28.894 0 16.273-3.999 25.958-11.558 33.517-3.318 3.318-141.371 104.527-146.781 106.33-11.653 3.884-30.134 8.42-42.763 0-6.659-4.438-19.357-14.15-21.959-21.959-7.091-21.271-2.496-42.578 10.402-55.476 3.701-3.701 138.695-101.709 143.314-104.018 6.847-3.423 12.463-5.779 23.115-5.779zM783.603 291.251c0-30.179 18.983-47.386 48.542-47.386 8.090 0 11.558 2.312 17.336 4.623 3.467 2.312 38.14 25.427 75.124 52.009 49.752 35.759 67.045 46.249 80.903 67.034 7.552 11.329 5.563 28.385 1.156 41.607-5.105 15.316-29.333 31.118-52.009 26.582-21.746-5.437-37.726-21.027-86.682-56.632-38.14-27.738-70.501-52.009-72.813-54.321-7.502-7.502-11.558-17.332-11.558-33.517zM587.124 339.792c105.004 0 184.2 36.637 243.865 84.37 14.715 11.771 50.99 48.732 62.411 64.722 47.022 65.832 80.903 132.22 80.903 245.020 0 85.179-27.961 136.828-56.632 194.167-8.578 17.156-21.051 30.116-33.517 45.074-20.911 25.091-46.577 49.929-73.968 68.19l-24.271 16.181c-15.547 10.366-31.877 16.634-49.698 24.271-45.699 19.584-80.452 27.738-146.781 27.738-75.663 0-119.729-13.634-171.052-39.296-6.935-3.467-18.492-8.090-25.427-12.713l-24.271-16.181c-26.328-17.552-53.223-42.546-72.813-67.034-4.623-5.779-12.713-16.181-18.492-23.115-13.806-16.568-21.353-35.054-32.361-54.321-14.318-25.054-25.806-55.442-31.205-87.837-4.155-24.93-9.246-38.588-9.246-73.968 0-57.841 7.277-89.61 19.648-132.912 11.827-41.395 34.143-74.846 56.632-106.33 38.665-54.131 93.586-99.615 159.494-125.977 35.285-14.114 79.862-28.894 127.133-28.894 3.467 0 12.713-1.156 19.648-1.156zM588.28 436.876c-65.219 0-110.194 19.192-151.404 43.919-56.115 33.669-98.824 86.125-121.354 153.716-6.802 18.137-9.006 38.094-12.713 56.632-1.156 5.779-1.156 20.804-1.156 34.673 0 57.562 12.809 89.217 30.050 129.445 20.925 48.825 58.757 84.247 100.551 112.108 29.645 19.763 67.485 36.718 109.797 42.763 8.090 1.156 21.959 3.467 31.205 3.467h32.361c22.56 0 42.542-5.055 61.255-10.402 29.516-8.434 57.054-21.52 80.903-35.828 5.779-3.467 15.025-12.713 21.959-17.336 14.721-9.815 32.095-29.784 43.919-41.607 17.912-17.912 35.244-52.859 45.074-77.436 12.667-31.671 18.492-60.78 18.492-105.174 0-77.721-24.048-127.746-56.632-173.363-18.741-26.237-42.983-48.303-69.345-65.878-42.367-28.246-92.31-49.698-162.962-49.698zM589.436 532.804c-27.913 0-40.35 18.186-47.386 39.296-1.156 3.467-1.156 34.673-1.156 80.903 0 45.074 0 77.436 1.156 80.903 6.218 18.656 15.825 31.063 33.517 38.14h122.51c20.978-6.992 35.828-21.948 35.828-49.698 0-24.248-20.133-36.106-35.828-45.074h-60.099v-49.698c0-44.601 0.262-50.067-5.779-68.19-4.948-14.846-23.329-26.582-42.763-26.582z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["alarm"],"defaultCode":59908,"grid":24},"attrs":[],"properties":{"id":16,"order":109,"ligatures":"","prevSize":24,"code":59908,"name":"alarm"},"setIdx":0,"setId":2,"iconIdx":17},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 89.091-18.86 160.428-52.009 218.438-4.623 8.090-10.402 21.959-15.025 28.894-18.194 27.291-36.713 56.36-60.099 79.747l-26.582 26.582c-23.358 23.358-52.192 41.729-79.747 60.099-6.935 4.623-20.804 10.402-28.894 15.025-48.94 27.966-106.484 41.133-174.519 50.853-8.090 1.156-26.582 1.156-43.919 1.156-166.335 0-270.032-70.085-353.661-153.716-15.518-15.518-30.703-36.231-42.763-54.321-49.101-73.653-85.526-162.801-85.526-286.628 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312h40.451zM587.124 292.406c-11.558 0-25.427 1.156-32.361 1.156-39.439 0-76.109 14.967-107.485 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.2 35.699-18.492 72.287-18.492 119.043 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090s19.648-8.090 26.582-10.402c27.945-9.315 57.653-26.011 78.591-42.763 27.519-22.016 56.948-46.266 78.591-75.124 20.57-27.426 44.502-70.322 58.944-104.018 3.467-8.090 5.779-21.959 8.090-28.894 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM591.747 436.876c25.621 0 37.557 17.9 43.919 36.984 1.156 5.779 2.312 19.648 2.312 106.33 0 69.345 0 101.707-1.156 106.33-6.982 20.947-16.816 32.521-39.296 38.14-30.347 6.069-48.010-15.739-55.476-38.14-1.156-4.623-1.156-36.984-1.156-106.33 0-85.526 0-100.551 1.156-106.33 4.799-14.398 11.324-19.414 20.804-28.894 6.68-6.68 14.63-8.090 28.894-8.090zM591.747 821.743c-28.711 0-43.831 16.982-49.698 40.451-5.333 26.663 12.213 41.659 27.738 52.009 5.779 2.312 9.246 3.467 17.336 3.467 30.223 0 50.853-17.979 50.853-47.386 0-22.842-13.111-36.027-28.894-43.919-6.935-3.467-9.246-4.623-17.336-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["alert-circle"],"defaultCode":59909,"grid":24},"attrs":[],"properties":{"id":17,"order":110,"ligatures":"","prevSize":24,"code":59909,"name":"alert-circle"},"setIdx":0,"setId":2,"iconIdx":18},{"icon":{"paths":["M587.124 194.167c64.013 0 104.097 33.649 128.289 73.968 18.003 30.003 330.191 569.080 345.571 599.837 7.688 15.378 8.090 24.040 8.090 49.698 0 58.897-24.905 92.359-58.944 117.887-15.715 11.785-35.856 19.654-58.944 24.271-9.246 1.156-49.698 2.312-362.907 2.312-315.521 0-353.661-1.156-361.752-2.312-69.782-13.956-119.043-63.088-119.043-146.781 0-27.695 7.471-42.68 17.336-62.411 0.096-0.191 345.563-594.045 345.571-594.059 7.703-12.837 24.16-29.29 36.984-36.984 20.827-12.497 45.746-25.427 79.747-25.427zM595.214 291.251h-12.713c-8.969 0-22.393 8.524-27.738 13.869-9.107 9.107-341.919 589.158-346.727 596.37-3.467 5.779-3.467 8.090-3.467 18.492 0 24.577 16.229 37.77 34.673 43.919 5.779 1.156 43.919 2.312 349.038 2.312 226.528 0 344.415 0 347.883-1.156 18.311-9.154 44.604-23.843 36.984-54.321-2.459-14.756-343.619-599.041-350.194-605.616-5.767-5.767-17.741-13.869-27.738-13.869zM588.28 484.262c27.121 0 41.601 18.475 48.542 39.296 1.156 3.467 1.156 23.115 1.156 56.632 0 45.991 0.326 52.185-5.779 70.501-4.948 14.846-23.329 26.582-42.763 26.582-28.372 0-40.265-17.934-47.386-39.296-1.156-3.467-1.156-27.738-1.156-57.788 0-33.517 0-53.165 1.156-56.632 6.542-19.626 20.453-39.296 46.23-39.296zM588.28 773.201c-27.086 0-52.371 25.931-46.23 56.632 5.563 22.247 19.039 39.296 47.386 39.296 28.432 0 41.688-16.504 47.386-39.296 6.069-30.347-15.739-48.010-38.14-55.476-3.467-1.156-8.090-1.156-10.402-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["alert-triangle"],"defaultCode":59910,"grid":24},"attrs":[],"properties":{"id":18,"order":111,"ligatures":"","prevSize":24,"code":59910,"name":"alert-triangle"},"setIdx":0,"setId":2,"iconIdx":19},{"icon":{"paths":["M598.682 196.479c13.869 0 31.205 0 40.451 1.156 143.738 17.967 245.038 83.427 320.144 171.052 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 87.803-18.745 153.066-48.542 212.659-22.112 44.224-45.466 81.295-78.591 114.42l-26.582 26.582c-23.193 23.193-49.61 42.382-78.591 58.944-67.502 38.573-142.126 68.19-248.488 68.19-44.126 0-69.939-0.665-104.018-10.402-40.844-11.671-72.156-19.897-108.641-38.14-44.224-22.112-81.295-45.466-114.42-78.591l-26.582-26.582c-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c34.964-69.928 86.144-125.76 147.937-169.896 56.393-40.28 123.205-72.416 206.88-84.37 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-12.713 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.205 10.402-69.686 36.374-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-21.503 32.253-34.447 69.709-46.23 110.953-8.258 28.901-11.558 55.569-11.558 92.46 0 48.146 7.822 81.696 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 15.871 47.615 45.291 82.319 73.968 116.731 11.667 14.001 32.461 31.279 46.23 41.607 26.888 20.166 67.693 43.211 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 64.881 0 112.828-10.228 159.494-28.894 91.019-36.407 152.663-102.474 197.634-184.921 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-32.552-21.7-69.269-34.32-110.953-46.23-29.91-8.547-56.204-11.558-94.772-11.558zM591.747 436.876c-30.831 0-41.982 16.149-49.698 39.296-1.156 3.467-1.156 55.476-1.156 141.002v135.223l-57.788-57.788c-48.542-48.542-58.944-57.788-64.722-60.099-11.901-3.968-31.166-8.502-43.919 0-9.586 4.792-16.367 14.725-21.959 23.115-3.467 5.779-3.467 6.935-3.467 19.648s0 13.869 3.467 20.804c3.467 5.779 16.181 17.336 104.018 106.33l105.174 105.174c5.893 5.893 16.282 8.090 27.738 8.090 11.493 0 21.824-2.176 27.738-8.090l105.174-105.174c87.837-88.993 100.551-100.551 104.018-106.33 3.467-6.935 3.467-8.090 3.467-20.804 0-18.516-3.726-23.374-12.713-32.361-8.697-8.697-23.396-18.899-42.763-15.025l-13.869 4.623c-5.779 2.312-16.181 11.558-64.722 60.099l-57.788 57.788v-135.223c0-85.526 0-137.535-1.156-141.002-5.898-17.691-13.769-26.515-27.738-35.828-5.779-2.312-8.090-3.467-17.336-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-circle"],"defaultCode":59921,"grid":24},"attrs":[],"properties":{"id":29,"order":65,"ligatures":"","prevSize":24,"code":59921,"name":"arrow-down-circle"},"setIdx":0,"setId":2,"iconIdx":30},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM587.124 292.406c-11.558 0-26.582 1.156-32.361 1.156-15.107 0-33.688 5.615-48.542 8.090-34.648 5.774-58.135 16.354-87.837 31.205-45.072 24.584-82.523 48.314-114.42 85.526-18.363 21.422-35.921 41.792-48.542 67.034l-10.402 20.804c-23.604 47.209-40.451 100.765-40.451 171.052 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c42.859-28.573 77-72.857 104.018-117.887 14.364-23.94 24.999-55.349 34.673-84.37 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM443.81 484.262c-26.6 0-39.381 19.907-46.23 40.451-1.156 4.623-1.156 47.386-1.156 157.183l1.156 150.248c6.831 20.488 16.109 30.027 36.984 36.984l150.248 1.156c109.797 0 152.56 0 157.183-1.156l13.869-4.623c18.238-6.079 36.364-41.384 20.804-64.722-4.88-7.318-11.937-17.847-20.804-20.804-22.611-7.537-28.159-5.779-106.33-5.779h-86.682l105.174-105.174c92.46-92.46 105.174-107.485 108.641-113.264 15.448-23.173-2.813-58.726-20.804-64.722-12.013-4.005-31.217-8.467-43.919 0-5.779 3.467-20.804 16.181-113.264 108.641l-105.174 105.174v-86.682c0-60.099 0-88.993-1.156-93.616-7.145-21.433-20.619-39.296-48.542-39.296z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-left-circle"],"defaultCode":59922,"grid":24},"attrs":[],"properties":{"id":30,"order":66,"ligatures":"","prevSize":24,"code":59922,"name":"arrow-down-left-circle"},"setIdx":0,"setId":2,"iconIdx":31},{"icon":{"paths":["M829.833 388.334c-9.868 0-18.995 3.718-25.427 6.935-2.312 1.156-94.772 92.46-205.725 203.413l-201.102 201.102v-156.027c0-86.682-1.156-159.494-1.156-164.117 0-24.578-22.997-42.763-47.386-42.763-24.159 0-41.351 14.002-46.23 33.517-2.312 8.090-2.312 10.402-2.312 233.463v225.372c4.257 8.512 5.746 14.992 13.869 23.115s14.601 9.611 23.115 13.869h225.372c221.905 0 226.528 0 233.463-2.312 19.778-4.944 33.517-21.225 33.517-46.23 0-29.439-19.003-39.85-41.607-47.386-4.623-1.156-76.28-1.156-164.117-1.156h-157.183l201.102-201.102c129.445-129.445 201.102-203.413 203.413-206.88 3.028-6.056 6.935-16.4 6.935-25.427 0-27.744-20.811-47.386-48.542-47.386z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-left"],"defaultCode":59923,"grid":24},"attrs":[],"properties":{"id":31,"order":72,"ligatures":"","prevSize":24,"code":59923,"name":"arrow-down-left"},"setIdx":0,"setId":2,"iconIdx":32},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM587.124 292.406c-11.558 0-26.582 1.156-32.361 1.156-15.107 0-33.688 5.615-48.542 8.090-34.648 5.774-58.135 16.354-87.837 31.205-45.072 24.584-82.523 48.314-114.42 85.526-18.363 21.422-35.921 41.792-48.542 67.034l-10.402 20.804c-23.604 47.209-40.451 100.765-40.451 171.052 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c42.859-28.573 77-72.857 104.018-117.887 14.364-23.94 24.999-55.349 34.673-84.37 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM443.81 484.262c-26.964 0-52.359 25.991-46.23 56.632 1.156 4.623 2.312 10.402 4.623 13.869 3.467 5.779 16.181 20.804 108.641 113.264l105.174 105.174h-86.682c-60.099 0-88.993 0-93.616 1.156-20.428 6.81-44.35 24.427-38.14 55.476 4.154 16.614 12.935 26.345 25.427 34.673 3.467 2.312 10.402 3.467 13.869 4.623 4.623 1.156 47.386 1.156 157.183 1.156l150.248-1.156c20.488-6.831 30.027-16.109 36.984-36.984l1.156-150.248c0-109.797 0-152.56-1.156-157.183-4.697-14.092-11.373-29.987-25.427-34.673-12.013-4.005-31.217-8.467-43.919 0-12.26 8.174-20.304 18.152-25.427 33.517-1.156 4.623-1.156 33.517-1.156 93.616v86.682l-106.33-105.174c-90.149-90.149-106.33-106.33-112.108-108.641-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-right-circle"],"defaultCode":59924,"grid":24},"attrs":[],"properties":{"id":32,"order":67,"ligatures":"","prevSize":24,"code":59924,"name":"arrow-down-right-circle"},"setIdx":0,"setId":2,"iconIdx":33},{"icon":{"paths":["M347.883 388.334c-27.195 0-47.386 20.51-47.386 47.386 0 9.010 3.905 19.368 6.935 25.427 2.312 3.467 75.124 77.436 203.413 206.88l201.102 201.102h-157.183c-87.837 0-159.494 0-164.117 1.156-22.616 7.538-41.607 17.447-41.607 47.386 0 24.581 14.034 41.36 33.517 46.23 6.935 2.312 11.558 2.312 233.463 2.312h225.372c8.512-4.257 14.992-5.746 23.115-13.869s9.611-14.601 13.869-23.115v-225.372c0-221.905 0-226.528-2.312-233.463-4.884-19.533-21.59-33.517-46.23-33.517-23.189 0-34.787 11.784-42.763 27.738-2.312 4.623-4.623 10.402-4.623 15.025s-1.156 77.436-1.156 164.117v156.027l-201.102-201.102c-129.445-129.445-203.413-201.102-206.88-203.413-6.41-3.204-15.572-6.935-25.427-6.935z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down-right"],"defaultCode":59925,"grid":24},"attrs":[],"properties":{"id":33,"order":71,"ligatures":"","prevSize":24,"code":59925,"name":"arrow-down-right"},"setIdx":0,"setId":2,"iconIdx":34},{"icon":{"paths":["M591.747 292.406c-30.831 0-41.982 16.149-49.698 39.296-1.156 3.467-1.156 102.862-1.156 285.472v279.693l-106.33-105.174c-76.28-76.28-107.485-106.33-110.953-108.641-5.758-2.879-14.031-5.779-23.115-5.779-27.171 0-41.814 18.165-47.386 40.451-2.027 10.136 0.283 23.539 4.623 30.050 5.964 11.925 295.408 300.448 310.898 309.743 10.506 7.004 30.856 7.167 41.607 0 15.491-9.295 304.936-297.818 310.898-309.743 4.031-8.063 6.836-18.983 4.623-30.050l-4.623-13.869c-4.948-14.846-23.329-26.582-42.763-26.582-9.085 0-17.34 2.891-23.115 5.779-3.467 2.312-34.673 32.361-110.953 108.641l-106.33 105.174v-279.693c0-182.609 0-280.849-1.156-285.472-5.898-17.691-13.769-26.515-27.738-35.828-5.779-2.312-8.090-3.467-17.336-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down"],"defaultCode":59926,"grid":24},"attrs":[],"properties":{"id":34,"order":70,"ligatures":"","prevSize":24,"code":59926,"name":"arrow-down"},"setIdx":0,"setId":2,"iconIdx":35},{"icon":{"paths":["M540.894 339.792c-2.312 0-6.935 1.156-9.246 1.156s-9.246 2.312-12.713 4.623c-11.925 5.964-300.448 295.408-309.743 310.898-7.004 10.506-7.167 30.856 0 41.607 9.295 15.491 297.818 304.936 309.743 310.898 23.966 15.977 56.689-3.579 64.722-19.648 2.879-5.758 5.779-14.031 5.779-23.115 0-9.085-2.891-17.34-5.779-23.115-2.312-3.467-32.361-34.673-108.641-110.953l-105.174-106.33h279.693c182.609 0 280.849 0 285.472-1.156 17.691-5.898 26.515-13.769 35.828-27.738 3.467-5.779 2.312-6.935 2.312-19.648 0-29.899-15.71-39.909-38.14-47.386-4.623-1.156-102.862-1.156-285.472-1.156h-279.693l105.174-106.33c76.28-76.28 106.33-107.485 108.641-110.953 2.879-5.758 5.779-14.031 5.779-23.115 0-28.372-17.934-40.265-39.296-47.386-3.467-1.156-6.935-1.156-9.246-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-left"],"defaultCode":59929,"grid":24},"attrs":[],"properties":{"id":37,"order":58,"ligatures":"","prevSize":24,"code":59929,"name":"arrow-left"},"setIdx":0,"setId":2,"iconIdx":38},{"icon":{"paths":["M591.747 292.406c-29.028 0-42.502 15.398-49.698 36.984-1.156 5.779-1.156 41.607-1.156 286.628v280.849l-57.788-57.788c-48.542-48.542-58.944-57.788-64.722-60.099-11.956-3.985-30.845-8.717-43.919 0-13.135 6.568-25.427 21.143-25.427 40.451 0 13.536 2.655 20.333 6.935 28.894 2.547 5.093 197.894 200.333 212.659 209.192 10.506 7.004 30.856 7.167 41.607 0 11.608-6.965 208.96-202.948 214.971-214.971 3.467-8.090 4.623-8.090 4.623-20.804 0-18.273-6.109-25.757-15.025-34.673-9.365-9.365-22.221-16.36-40.451-12.713-4.623 1.156-10.402 3.467-13.869 4.623-5.779 2.312-16.181 11.558-64.722 60.099l-57.788 57.788v-280.849c0-270.606 3.163-269.046-6.935-299.341-2.754-8.26-15.014-16.174-21.959-20.804-5.779-2.312-8.090-3.467-17.336-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-down"],"defaultCode":59930,"grid":24},"attrs":[],"properties":{"id":38,"order":59,"ligatures":"","prevSize":24,"code":59930,"name":"arrow-narrow-down"},"setIdx":0,"setId":2,"iconIdx":39},{"icon":{"paths":["M446.122 436.876c-14.504 0-19.18 2.655-27.738 6.935-5.093 2.547-200.333 197.894-209.192 212.659-7.004 10.506-7.167 30.856 0 41.607 8.859 14.765 204.098 210.112 209.192 212.659 8.474 4.237 15.452 6.935 28.894 6.935 27.018 0 39.541-18.316 45.074-40.451 1.156-5.779 1.156-9.246 0-15.025l-4.623-13.869c-2.312-5.779-11.558-16.181-60.099-64.722l-57.788-57.788h280.849c245.020 0 280.849 0 286.628-1.156 20.526-6.842 35.828-18.637 35.828-47.386 0-29.171-14.366-40.232-35.828-47.386-5.779-1.156-41.607-1.156-286.628-1.156h-280.849l57.788-57.788c48.542-48.542 57.788-58.944 60.099-64.722 3.985-11.956 8.717-30.845 0-43.919-6.846-13.691-21.216-25.427-41.607-25.427z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-left"],"defaultCode":59931,"grid":24},"attrs":[],"properties":{"id":39,"order":60,"ligatures":"","prevSize":24,"code":59931,"name":"arrow-narrow-left"},"setIdx":0,"setId":2,"iconIdx":40},{"icon":{"paths":["M735.061 436.876c-20.373 0-27.097 6.293-36.984 16.181-7.508 7.508-14.787 23.15-11.558 39.296 1.156 4.623 3.467 10.402 4.623 13.869 2.312 5.779 11.558 16.181 60.099 64.722l57.788 57.788h-280.849c-270.606 0-269.046-3.163-299.341 6.935-8.26 2.754-16.174 15.014-20.804 21.959-3.467 5.779-2.312 6.935-2.312 19.648 0 28.859 14.505 39.122 35.828 46.23 5.779 1.156 38.14 2.312 286.628 2.312h280.849l-57.788 57.788c-48.542 48.542-57.788 58.944-60.099 64.722-3.985 11.956-8.717 30.845 0 43.919 4.792 9.586 14.725 16.367 23.115 21.959 5.779 3.467 6.935 3.467 19.648 3.467s12.713 0 19.648-3.467c5.779-3.467 18.492-16.181 107.485-104.018l105.174-105.174c5.893-5.893 8.090-16.282 8.090-27.738 0-11.493-2.176-21.824-8.090-27.738l-105.174-105.174c-88.993-88.993-101.707-100.551-107.485-104.018-5.779-2.312-9.246-3.467-18.492-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-right"],"defaultCode":59932,"grid":24},"attrs":[],"properties":{"id":40,"order":61,"ligatures":"","prevSize":24,"code":59932,"name":"arrow-narrow-right"},"setIdx":0,"setId":2,"iconIdx":41},{"icon":{"paths":["M592.903 292.406c-11.036 0-16.333-0.67-24.271 4.623-14.765 8.859-210.112 204.098-212.659 209.192-4.237 8.474-6.935 15.452-6.935 28.894 0 19.828 11.923 33.7 25.427 40.451 12.917 8.61 31.167 4.251 43.919 0 5.779-2.312 16.181-11.558 64.722-60.099l57.788-57.788v280.849c0 270.606-3.163 269.046 6.935 299.341 2.754 8.26 15.014 16.174 21.959 20.804 5.779 3.467 6.935 2.312 19.648 2.312 29.899 0 39.909-15.71 47.386-38.14 1.156-4.623 1.156-102.862 1.156-285.472v-279.693l57.788 57.788c48.542 48.542 58.944 57.788 64.722 60.099 13.305 4.435 27.3 6.31 42.763 1.156 8.038-2.679 18.010-15.216 21.959-23.115 3.467-6.935 4.623-8.090 4.623-20.804s0-12.713-3.467-19.648c-3.467-5.779-16.181-18.492-104.018-107.485l-105.174-105.174c-4.607-4.607-15.885-8.090-24.271-8.090z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-narrow-up"],"defaultCode":59933,"grid":24},"attrs":[],"properties":{"id":41,"order":62,"ligatures":"","prevSize":24,"code":59933,"name":"arrow-narrow-up"},"setIdx":0,"setId":2,"iconIdx":42},{"icon":{"paths":["M640.289 340.948c-29.65 0-50.853 17.498-50.853 47.386 0 9.085 2.891 17.34 5.779 23.115 2.312 3.467 32.361 34.673 108.641 110.953l105.174 106.33h-279.693c-182.609 0-280.849 0-285.472 1.156-17.691 5.898-26.515 13.769-35.828 27.738-3.467 5.779-2.312 6.935-2.312 19.648 0 29.899 15.71 39.909 38.14 47.386 4.623 1.156 102.862 1.156 285.472 1.156h279.693l-105.174 106.33c-76.28 76.28-106.33 107.485-108.641 110.953-2.879 5.758-5.779 14.031-5.779 23.115 0 19.738 11.678 37.794 26.582 42.763l13.869 4.623c11.086 2.217 21.982-0.589 30.050-4.623 11.925-5.964 300.448-295.408 309.743-310.898 7.004-10.506 7.167-30.856 0-41.607-9.003-15.003-298.667-304.783-306.275-308.587-6.045-3.022-13.189-6.935-23.115-6.935z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-right"],"defaultCode":59935,"grid":24},"attrs":[],"properties":{"id":43,"order":63,"ligatures":"","prevSize":24,"code":59935,"name":"arrow-right"},"setIdx":0,"setId":2,"iconIdx":44},{"icon":{"paths":["M598.682 196.479c13.869 0 31.205 0 40.451 1.156 143.738 17.967 245.038 83.427 320.144 171.052 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 87.803-18.745 153.066-48.542 212.659-22.112 44.224-45.466 81.295-78.591 114.42l-26.582 26.582c-23.193 23.193-49.61 42.382-78.591 58.944-67.502 38.573-142.126 68.19-248.488 68.19-44.126 0-69.939-0.665-104.018-10.402-40.844-11.671-72.156-19.897-108.641-38.14-44.224-22.112-81.295-45.466-114.42-78.591l-26.582-26.582c-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c34.964-69.928 86.144-125.76 147.937-169.896 56.393-40.28 123.205-72.416 206.88-84.37 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-12.713 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.205 10.402-69.686 36.374-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-21.503 32.253-34.447 69.709-46.23 110.953-8.258 28.901-11.558 55.569-11.558 92.46 0 48.146 7.822 81.696 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 15.871 47.615 45.291 82.319 73.968 116.731 11.667 14.001 32.461 31.279 46.23 41.607 26.888 20.166 67.693 43.211 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 64.881 0 112.828-10.228 159.494-28.894 91.019-36.407 152.663-102.474 197.634-184.921 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-32.552-21.7-69.269-34.32-110.953-46.23-29.91-8.547-56.204-11.558-94.772-11.558zM592.903 436.876c-11.036 0-16.333-0.67-24.271 4.623-14.765 8.859-210.112 204.098-212.659 209.192-4.237 8.474-6.935 15.452-6.935 28.894 0 27.018 18.316 39.541 40.451 45.074 5.779 1.156 9.246 1.156 15.025 0l13.869-4.623c5.779-2.312 16.181-11.558 64.722-60.099l57.788-57.788v135.223c0 85.526 0 137.535 1.156 141.002 5.898 17.691 13.769 26.515 27.738 35.828 5.779 3.467 6.935 3.467 19.648 3.467 29.333 0 40.105-17.451 47.386-39.296 1.156-3.467 1.156-55.476 1.156-141.002v-135.223l57.788 57.788c48.542 48.542 58.944 57.788 64.722 60.099 11.901 3.968 31.166 8.502 43.919 0 9.586-4.792 16.367-14.725 21.959-23.115 3.467-5.779 3.467-6.935 3.467-19.648s0-13.869-3.467-20.804c-3.467-5.779-16.181-17.336-104.018-106.33l-105.174-105.174c-4.607-4.607-15.885-8.090-24.271-8.090z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-circle"],"defaultCode":59936,"grid":24},"attrs":[],"properties":{"id":44,"order":68,"ligatures":"","prevSize":24,"code":59936,"name":"arrow-up-circle"},"setIdx":0,"setId":2,"iconIdx":45},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM587.124 292.406c-11.558 0-26.582 1.156-32.361 1.156-15.107 0-33.688 5.615-48.542 8.090-34.648 5.774-58.135 16.354-87.837 31.205-45.072 24.584-82.523 48.314-114.42 85.526-18.363 21.422-35.921 41.792-48.542 67.034l-10.402 20.804c-23.604 47.209-40.451 100.765-40.451 171.052 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c42.859-28.573 77-72.857 104.018-117.887 14.364-23.94 24.999-55.349 34.673-84.37 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM588.28 484.262c-127.133 0-150.248 1.156-156.027 2.312-18.57 6.189-27.217 14.618-33.517 33.517-1.156 5.779-2.312 25.427-2.312 156.027 0 106.33 0 150.248 1.156 154.871 6.81 20.428 24.427 44.35 55.476 38.14 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-33.517 1.156-93.616v-86.682l105.174 105.174c92.46 92.46 107.485 105.174 113.264 108.641 16.978 11.318 45.398 1.988 55.476-8.090 10.849-10.849 21.982-37.527 9.246-56.632-3.467-5.779-16.181-20.804-108.641-113.264l-105.174-105.174h86.682c77.952 0 83.925 1.69 106.33-5.779 18.238-6.079 36.364-41.384 20.804-64.722-4.88-7.318-11.937-17.847-20.804-20.804-3.467-1.156-9.246-3.467-12.713-4.623-4.623-1.156-49.698-1.156-154.871-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-left-circle"],"defaultCode":59937,"grid":24},"attrs":[],"properties":{"id":45,"order":69,"ligatures":"","prevSize":24,"code":59937,"name":"arrow-up-left-circle"},"setIdx":0,"setId":2,"iconIdx":46},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM587.124 292.406c-11.558 0-26.582 1.156-32.361 1.156-15.107 0-33.688 5.615-48.542 8.090-34.648 5.774-58.135 16.354-87.837 31.205-45.072 24.584-82.523 48.314-114.42 85.526-18.363 21.422-35.921 41.792-48.542 67.034l-10.402 20.804c-23.604 47.209-40.451 100.765-40.451 171.052 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c42.859-28.573 77-72.857 104.018-117.887 14.364-23.94 24.999-55.349 34.673-84.37 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM591.747 484.262c-139.213 0-144-2.854-169.896 5.779-17.718 5.906-34.355 42.662-19.648 64.722 8.174 12.26 18.152 20.304 33.517 25.427 4.623 1.156 33.517 1.156 93.616 1.156h86.682l-105.174 105.174c-92.46 92.46-105.174 107.485-108.641 113.264-6.892 10.337-7.205 33.11 0 43.919 9.096 13.644 25.429 30.512 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 5.779-2.312 20.804-18.492 112.108-108.641l106.33-105.174v86.682c0 60.099 0 88.993 1.156 93.616 6.81 20.428 24.427 44.35 55.476 38.14 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-47.386 1.156-157.183l-1.156-150.248c-6.831-20.488-16.109-30.027-36.984-36.984l-152.56-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up-right-circle"],"defaultCode":59939,"grid":24},"attrs":[],"properties":{"id":47,"order":64,"ligatures":"","prevSize":24,"code":59939,"name":"arrow-up-right-circle"},"setIdx":0,"setId":2,"iconIdx":48},{"icon":{"paths":["M251.955 496.975c-9.656 19.313-21.867 35.828-50.853 35.828-23.924 0-35.76-19.511-43.919-35.828l-1.156-106.33c0-94.772 1.156-106.33 2.312-112.108 5.853-17.561 13.43-26.436 31.205-32.361 5.779-2.312 13.869-2.312 113.264-2.312l106.33 1.156c16.651 8.325 35.828 19.652 35.828 43.919 0 28.986-16.516 41.197-35.828 50.853h-87.837l105.174 106.33c99.395 99.395 106.33 105.174 109.797 113.264s4.623 9.246 4.623 20.804c0 28.621-19.941 48.542-48.542 48.542-11.558 0-12.713-1.156-20.804-4.623s-13.869-10.402-113.264-109.797l-106.33-105.174v87.837zM769.734 339.792c-19.313-9.656-35.828-21.867-35.828-50.853 0-19.412 13.559-31.385 25.427-39.296 15.302-10.201 44.599-5.779 121.354-5.779l106.33 1.156c16.708 5.568 28.983 17.603 34.673 34.673v217.282c-8.266 16.532-19.766 35.828-43.919 35.828-28.986 0-41.197-16.516-50.853-35.828v-87.837l-106.33 105.174c-99.395 99.395-105.174 106.33-113.264 109.797s-9.246 4.623-20.804 4.623c-28.621 0-48.542-19.941-48.542-48.542 0-11.558 1.156-12.713 4.623-20.804s10.402-13.869 109.797-113.264l105.174-106.33h-87.837zM201.102 821.743c28.986 0 41.197 16.516 50.853 35.828v87.837l105.174-105.174c68.19-68.19 107.485-105.174 110.953-107.485 8.803-5.869 11.669-6.935 26.582-6.935 26.659 0 46.23 21.22 46.23 48.542 0 11.558-1.156 12.713-4.623 20.804s-10.402 13.869-109.797 113.264l-105.174 106.33h87.837c19.313 9.656 35.828 21.867 35.828 50.853 0 23.924-19.511 35.76-35.828 43.919l-106.33 1.156c-94.772 0-106.33-1.156-112.108-2.312-16.389-5.463-26.825-15.753-32.361-32.361-1.156-5.779-2.312-17.336-2.312-112.108l1.156-106.33c8.325-16.651 19.652-35.828 43.919-35.828zM687.675 725.815c-27.835 0-35.004 12.055-46.23 28.894-3.467 5.779-3.467 8.090-3.467 19.648s1.156 12.713 4.623 20.804 10.402 13.869 109.797 113.264l105.174 106.33h-87.837c-19.579 9.789-35.828 21.497-35.828 50.853 0 23.924 19.511 35.76 35.828 43.919h217.282c16.708-5.568 28.983-17.603 34.673-34.673v-217.282c-8.325-16.651-19.652-35.828-43.919-35.828-28.249 0-41.345 16.812-50.853 35.828v87.837l-106.33-105.174c-99.395-99.395-105.174-106.33-113.264-109.797-6.935-3.467-9.246-4.623-19.648-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-maximize"],"defaultCode":59944,"grid":24},"attrs":[],"properties":{"id":52,"order":108,"ligatures":"","prevSize":24,"code":59944,"name":"arrows-maximize"},"setIdx":0,"setId":2,"iconIdx":53},{"icon":{"paths":["M902.646 916.515c-71.514 0-106.075-31.363-138.691-70.501-8.487 3.396-21.707 17.598-30.050 24.271-30.242 24.193-65.239 37.263-112.108 45.074-8.090 1.156-20.804 2.312-32.361 2.312-68.991 0-115.815-24.232-154.871-55.476-37.597-30.076-63.752-72.877-78.591-124.822-5.652-19.783-6.935-36.342-6.935-60.099 0-43.403 10.933-72.41 23.115-102.862 9.775-24.438 25.064-44.71 42.763-62.411 5.779-5.779 13.869-15.025 19.648-19.648 41.463-33.17 87.19-55.476 161.806-55.476 29.971 0 38.234 5.104 58.944 9.246 20.86 4.172 43.772 14.047 58.944 25.427 4.623 3.467 13.869 8.090 19.648 12.713 27.27 21.816 52.017 48.558 68.19 80.903 23.494 46.987 27.738 65.909 27.738 144.47 0 61.302-2.991 48.338 9.246 72.813 10.233 20.465 30.422 39.296 60.099 39.296 42.159 0 64.555-23.687 73.968-56.632l1.156-52.009c0-66.213-3.782-81.639-11.558-128.289-7.199-43.193-30.42-82.994-49.698-116.731-35.47-62.073-94.726-103.001-157.183-138.691-27.223-15.555-56.204-21.564-90.149-30.050-25.045-6.262-43.483-6.935-76.28-6.935-43.099 0-73.065 3.167-105.174 13.869l-24.271 8.090c-25.845 8.615-44.168 19.772-67.034 31.205-17.076 8.539-29.376 20.74-45.074 31.205-15.503 10.335-46.417 43.575-57.788 57.788-17.297 21.622-37.606 50.096-48.542 77.436-19.244 48.113-36.984 95.62-36.984 164.117 0 34.43 2.529 62.596 10.402 90.149 34.195 119.684 100.721 204.075 203.413 255.422 11.558 5.779 27.738 12.713 35.828 15.025 36.27 10.363 77.336 25.427 123.666 25.427 70.648 0 121.275-16.154 173.363-33.517 22.938-5.735 41.982 9.994 49.698 25.427 7.109 10.665 7.437 32.765 0 43.919-9.302 18.603-26.679 22.33-47.386 31.205-48.481 20.777-92.907 27.738-162.962 27.738-76.177 0-119.123-7.299-172.208-30.050-117.102-50.188-204.124-125.087-260.045-236.93-21.146-42.291-37.392-87.23-45.074-141.002-3.011-21.079-5.779-36.116-5.779-60.099 0-110.422 29.083-189.587 69.345-260.045 27.364-47.886 64.188-88.548 106.33-123.666 6.935-5.779 18.492-15.025 25.427-19.648l24.271-16.181c23.724-15.817 53.332-29.423 80.903-40.451 52.439-20.975 107.713-33.517 182.609-33.517 51.854 0 71.837 5.247 110.953 15.025 56.785 14.196 103.564 35.526 145.625 63.567 62.649 41.767 113.17 95.003 152.56 160.65 8.571 14.285 20.858 35.99 26.582 53.165 5.986 17.955 15.749 37.574 20.804 57.788 14.543 58.17 18.492 97.621 18.492 175.675 0 43.919-1.156 49.698-3.467 60.099-13.163 65.811-54.309 104.475-110.953 127.133-18.912 7.566-23.619 8.090-54.321 8.090zM594.059 533.959h-18.492c-56.047 0-92.994 40.571-114.42 76.28-11.761 19.602-15.025 36.45-15.025 67.034 0 23.235 0.881 31.094 6.935 46.23 21.724 54.309 60.946 97.084 136.379 97.084 31.418 0 43.517-6.543 64.722-15.025 41.828-16.732 65.587-56.622 77.436-104.018 1.156-4.623 1.156-16.181 1.156-24.271 0-68.109-34.168-102.327-77.436-128.289-17.009-10.205-35.148-15.025-61.255-15.025z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["at"],"defaultCode":59947,"grid":24},"attrs":[],"properties":{"id":55,"order":107,"ligatures":"","prevSize":24,"code":59947,"name":"at"},"setIdx":0,"setId":2,"iconIdx":56},{"icon":{"paths":["M320.144 999.729c-2.751 0.19-140.328 9.246-143.314 9.246-24.467 0-36.725-12.198-45.074-28.894-3.467-6.935-4.623-8.090-4.623-18.492s1.156-12.713 4.623-19.648c2.312-4.623 35.828-65.878 77.436-136.379l75.124-129.445c-18.405-42.948-36.201-98.016-31.205-162.962 1.156-11.558 2.312-26.582 3.467-34.673 2.842-19.893 8.538-34.502 13.869-53.165 21.54-75.387 71.293-128.016 127.133-169.896 37.17-27.878 85.862-46.287 141.002-55.476 6.935-1.156 17.336-3.467 24.271-3.467s17.336-1.156 24.271-1.156c78.568 0 142.81 24.406 189.544 57.788 18.93 13.522 39.307 28.905 55.476 45.074 32.921 32.921 58.031 76.157 76.28 124.822 16.405 43.745 23.455 106.605 13.869 164.117-5.2 31.202-16.292 63.237-27.738 88.993l75.124 129.445c40.451 70.501 75.124 131.756 77.436 136.379 3.467 6.935 4.623 9.246 4.623 19.648 0 27.45-21.616 47.386-48.542 47.386-36.735 0-109.177-6.813-144.47-9.246 0 0-13.869 30.050-32.361 67.034-30.050 60.099-33.517 67.034-39.296 72.813-6.619 6.619-18.969 13.869-31.205 13.869-18.356 0-30.728-5.062-38.14-16.181-6.981-10.471-0.139-0.109-128.289-218.438-66.444 108.967-113.228 199.512-128.289 219.594-10.228 10.228-18.004 15.025-38.14 15.025-12.257 0-24.582-7.245-31.205-13.869-11.991-11.991-71.436-139.863-71.657-139.847zM587.124 292.406c-9.246 0-20.804 1.156-25.427 1.156-23.087 0-44.964 11.136-63.567 17.336-25.535 8.511-43.921 22.423-63.567 38.14-26.751 21.402-46.392 48.865-62.411 80.903-14.271 28.541-23.115 61.124-23.115 102.862 0 52.169 16.042 87.564 33.517 122.51 9.793 19.585 20.711 31.113 36.984 47.386 15.938 15.938 30.622 28.601 49.698 38.14l25.427 12.713c20.607 10.302 43.173 13.488 68.19 18.492 5.779 1.156 18.492 1.156 26.582 1.156 92.6 0 151.321-44.97 193.011-97.084 30.18-37.726 47.386-85.378 47.386-151.404 0-40.706-12.528-67.726-24.271-97.084-9.402-23.505-26.629-41.376-41.607-60.099-11.303-14.129-27.223-25.468-42.763-35.828-35.12-23.413-76.815-39.296-134.068-39.296zM343.26 766.266c0 1.784-0.574 1.485-80.903 141.002 1.934-0.157 87.322-5.779 91.305-5.779 13.615 0 22.37 8.499 30.050 16.181 5.779 5.779 9.246 11.558 25.427 45.074 10.402 21.959 19.648 39.296 19.648 39.296 79.218-135.801 80.903-138.131 80.903-139.847 0-3.991-17.357-5.787-23.115-8.090-27.96-11.184-59.123-23.242-83.214-40.451-18.634-13.311-31.931-22.685-47.386-38.14-8.090-8.090-11.558-10.402-12.713-9.246zM834.456 766.266c-8.949 6.392-16.72 14.992-28.894 25.427-20.566 17.628-41.413 31.747-68.19 43.919-20.76 10.38-37.685 17.707-58.944 21.959-5.779 1.156-9.246 3.467-9.246 4.623 0 1.715 80.503 139.162 80.903 139.847 0 0 9.246-17.336 19.648-39.296 16.181-33.517 19.648-39.296 25.427-45.074 7.695-7.695 16.415-16.181 30.050-16.181 4.121 0 89.253 5.612 91.305 5.779-64.75-113.314-73.767-126.953-82.059-141.002z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["award"],"defaultCode":59948,"grid":24},"attrs":[],"properties":{"id":56,"order":106,"ligatures":"","prevSize":24,"code":59948,"name":"award"},"setIdx":0,"setId":2,"iconIdx":57},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM587.124 292.406c-11.558 0-26.582 1.156-32.361 1.156-15.107 0-33.688 5.615-48.542 8.090-48.334 8.056-91.758 31.074-128.289 54.321-13.191 8.795-20.344 13.409-24.271 17.336 186.558 185.556 362.824 361.457 538.803 537.644l2.091 2.094c14.797-23.675 30.729-43.579 42.763-71.657 15.060-35.136 28.478-72.208 34.673-115.576 1.156-11.558 1.156-21.959 1.156-48.542 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM554.763 711.946l-270.447-270.447-8.090 11.558c-12.093 15.117-19.636 31.475-30.050 49.698-14.38 25.165-20.533 51.195-30.050 79.747-9.077 27.231-11.558 60.578-11.558 94.772 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713 9.247-6.936 27.208-14.494 34.673-21.959 2.312-2.312 5.779-4.623 5.779-4.623s-120.199-121.354-269.291-270.447z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["ban"],"defaultCode":59950,"grid":24},"attrs":[],"properties":{"id":58,"order":41,"ligatures":"","prevSize":24,"code":59950,"name":"banlist"},"setIdx":0,"setId":2,"iconIdx":59},{"icon":{"paths":["M1070.23 1026.312c-10.634 21.269-20.22 35.828-52.009 35.828-12.043 0-14.717-4.469-26.582-10.402-53.261-26.63-105.493-46.23-184.921-46.23-76.901 0-126.916 17.228-177.986 42.763-15.751 7.874-23.983 13.869-43.919 13.869-12.043 0-14.717-4.469-26.582-10.402-53.649-26.824-105.929-46.23-186.077-46.23-54.265 0-86.345 7.593-125.977 20.804-6.935 2.312-19.648 6.935-26.582 10.402l-23.115 11.558c-13.431 6.715-20.635 9.574-33.517 13.869-29.55 7.388-44.781-16.75-54.321-35.828l-1.156-321.3c0-286.628 1.156-322.456 2.312-328.235 6.766-20.295 13.352-26.901 33.517-36.984 42.731-24.418 93.831-43.656 151.404-50.853 14.832-1.854 35.325-5.779 49.698-5.779h35.828c82.49 0 135.73 18.215 193.011 42.763l16.181 6.935 18.492-8.090c58.077-25.812 114.965-41.607 198.79-41.607 74.916 0 124.934 9.624 177.986 32.361 13.54 5.802 53.616 24.957 64.722 32.361 8.382 4.191 16.615 15.174 19.648 24.271 2.312 5.779 1.156 19.648 1.156 330.546v323.612zM370.998 379.088c-40.181 0-60.362 6.401-91.305 11.558-18.776 3.13-43.784 12.656-60.099 19.648l-13.869 5.779-1.156 261.201v261.201l15.025-5.779c30.028-8.579 63.251-17.729 97.084-21.959 12.713-1.156 24.271-1.156 56.632-1.156 62.478 0 81.573 4.502 128.289 16.181 15.865 3.967 27.877 7.637 39.296 12.713v-521.246l-12.713-5.779c-43.983-21.992-92.778-32.361-157.183-32.361zM804.406 379.088c-63.166 0-107.11 11.726-152.56 31.205l-13.869 5.779v522.402l15.025-5.779c51.655-14.759 83.27-23.115 153.716-23.115 62.478 0 81.573 4.502 128.289 16.181 15.865 3.967 27.877 7.637 39.296 12.713v-261.201l-1.156-260.045-11.558-5.779c-43.903-21.951-92.986-32.361-157.183-32.361z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["book"],"defaultCode":59961,"grid":24},"attrs":[],"properties":{"id":69,"order":8,"ligatures":"","prevSize":24,"code":59961,"name":"pages"},"setIdx":0,"setId":2,"iconIdx":70},{"icon":{"paths":["M594.059 243.865c192.401 0 143.181-2.346 189.544 9.246 21.277 5.32 37.369 18.877 52.009 33.517 21.51 21.51 33.159 44.795 41.607 78.591l1.156 352.506c0 320.144-1.156 352.506-2.312 358.284-6.834 20.503-20.596 34.673-48.542 34.673-5.779 0-11.558-2.312-15.025-3.467-2.312-1.156-54.321-31.205-114.42-67.034l-108.641-65.878-108.641 65.878c-60.099 35.828-112.108 65.878-114.42 67.034-3.467 1.156-9.246 3.467-15.025 3.467-27.854 0-41.612-13.884-48.542-34.673-1.156-5.779-2.312-36.984-2.312-352.506 0-240.397 0-350.194 1.156-355.973 2.785-11.144 5.451-27.082 10.402-36.984 9.953-19.907 23.18-35.893 38.14-50.853 14.2-14.2 33.658-25.454 56.632-30.050 5.779-1.156 12.713-4.623 16.181-4.623s80.903-1.156 171.052-1.156zM591.747 340.948c-150.248 0-157.183 0-162.962 2.312-15.522 5.174-23.606 18.541-31.205 31.205v301.652c0 165.273 1.156 300.497 1.156 300.497 89.37-53.621 169.618-103.082 177.986-105.174 3.467-1.156 9.246-1.156 12.713-1.156s9.246 0 12.713 1.156c8.369 2.092 88.616 51.553 177.986 105.174 0 0 1.156-135.223 1.156-300.497v-301.652c-7.11-14.22-18.42-26.944-34.673-32.361l-154.871-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bookmark"],"defaultCode":59962,"grid":24},"attrs":[],"properties":{"id":70,"order":115,"ligatures":"","prevSize":24,"code":59962,"name":"bookmark"},"setIdx":0,"setId":2,"iconIdx":71},{"icon":{"paths":["M594.059 195.323c127.414 0 98.743-1.607 137.535 8.090 29.333 7.333 54.436 29.432 70.501 50.853 21.143 28.191 28.894 51.616 28.894 102.862v31.205h54.321c42.763 0 56.632 1.156 64.722 2.312 33.020 6.604 56.073 17.933 76.28 38.14 20.657 20.657 36.025 43.745 42.763 77.436 2.312 9.246 1.156 23.115 1.156 242.709s1.156 234.619-1.156 243.865c-3.059 15.296-9.927 27.707-15.025 40.451-15.984 39.961-57.74 65.869-104.018 75.124-10.402 1.156-45.074 2.312-360.596 2.312-316.677 0-350.194-1.156-360.596-2.312-62.924-12.585-106.458-52.65-119.043-115.576-2.312-9.246-1.156-24.271-1.156-243.865s-1.156-233.463 1.156-242.709c3.059-15.296 9.927-27.707 15.025-40.451 15.984-39.961 57.74-65.869 104.018-75.124 9.246-1.156 21.959-2.312 64.722-2.312h54.321v-32.361c0-39.592 3.327-39.89 9.246-63.567 2.761-11.046 9.574-23.553 16.181-32.361 12.788-17.052 29.286-36.603 48.542-46.23 13.938-6.969 33.89-17.336 53.165-17.336 4.623 0 57.788-1.156 119.043-1.156zM591.747 292.406c-98.239 0-107.485 0-113.264 2.312-17.423 5.808-26.433 16.89-32.361 34.673-1.156 4.623-1.156 12.713-1.156 32.361v26.582h288.939v-26.582c0-30.577-1.542-28.895-6.935-45.074-4.098-12.295-17.446-17.392-28.894-23.115zM938.474 485.418h-695.765c-18.893 6.299-29.639 16.313-36.984 34.673l-1.156 87.837v87.837l20.804 8.090c26.851 10.74 45.373 20.315 73.968 28.894 52.674 15.803 103.758 31.989 165.273 38.14l80.903 8.090c11.558 1.156 32.361 1.156 43.919 1.156 45.325 0 84.37-5.201 124.822-9.246 90.014-9.001 163.136-34.939 234.619-64.722l25.427-10.402v-87.837l-1.156-87.837c-8.879-17.756-17.54-24.883-34.673-34.673zM588.28 628.731c60.226 0 68.272 97.084 1.156 97.084-21.717 0-38.612-11.816-43.919-27.738-9.664-28.993 3.299-51.125 21.959-63.567 3.467-2.312 9.246-4.623 11.558-4.623s6.935-1.156 9.246-1.156zM205.725 800.939c-1.156 0-1.156 17.336-1.156 88.993l1.156 87.837c7.834 18.279 16.118 26.721 34.673 34.673h698.077c18.279-7.834 26.721-16.118 34.673-34.673l1.156-87.837c0-71.657 0-88.993-1.156-88.993s-6.935 3.467-13.869 5.779c-38.209 12.736-76.696 30.595-120.199 39.296-68.906 13.781-135.344 24.93-217.282 30.050-54.434 2.721-109.576-1.645-157.183-6.935-10.402-1.156-27.738-3.467-39.296-5.779l-40.451-8.090c-56.421-11.285-106.295-25.182-156.027-45.074-11.558-4.623-21.959-9.246-23.115-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["briefcase"],"defaultCode":59974,"grid":24},"attrs":[],"properties":{"id":82,"order":135,"ligatures":"","prevSize":24,"code":59974,"name":"briefcase"},"setIdx":0,"setId":2,"iconIdx":83},{"icon":{"paths":["M396.424 195.323c27.152 0 38.911 16.053 47.386 35.828l1.156 30.050v30.050h288.939v-30.050l1.156-30.050c5.937-11.873 12.525-26.906 25.427-31.205 12.657-4.219 32.301-6.589 43.919 1.156 6.659 4.438 19.357 14.15 21.959 21.959 4.403 13.214 4.623 22.373 4.623 45.074v23.115h23.115c96.305 0 150.353 40.975 166.429 121.354 1.156 9.246 2.312 46.23 2.312 312.054 0 261.201 0 303.964-1.156 313.21-10.090 50.449-37.678 84.717-78.591 105.174-11.129 5.564-20.036 10.275-34.673 12.713l-11.558 2.312h-307.431c-292.406 0-307.431 1.156-316.677-1.156-61.697-12.34-103.158-56.953-115.576-119.043-1.156-9.246-1.156-52.009-1.156-313.21 0-265.824 1.156-302.808 2.312-312.054 6.925-34.626 19.158-57.298 40.451-78.591 19.91-19.91 41.998-29.795 70.501-39.296 3.467-1.156 12.713-1.156 19.648-2.312s23.115-1.156 35.828-1.156h23.115v-23.115c0-43.506 6.421-61.084 38.14-71.657 3.467-1.156 8.090-1.156 10.402-1.156zM321.3 388.334c-42.948 0-55.683 6.294-67.034 34.673l-1.156 78.591v78.591h672.65v-78.591l-1.156-78.591c-6.713-16.78-18.912-27.493-36.984-33.517-3.467-1.156-17.336-1.156-31.205-1.156h-25.427v24.271c0 30.558-1.108 43.871-15.025 57.788-10.886 10.886-36.035 22.208-55.476 9.246-12.117-8.079-19.14-16.539-25.427-31.205l-1.156-30.050v-30.050h-288.939v30.050l-1.156 30.050c-8.744 20.405-18.223 28.419-40.451 35.828-29.089 7.272-48.672-17.86-54.321-40.451-1.156-4.623-1.156-18.492-1.156-31.205v-24.271h-26.582zM925.761 677.273h-672.65v174.519l1.156 174.519c7.677 17.911 14.501 28.335 33.517 34.673 5.779 1.156 49.698 1.156 301.652 1.156 286.628 0 295.874 0 302.808-2.312 17.903-5.967 26.303-15.342 32.361-33.517l1.156-174.519v-174.519zM443.81 773.201c-36.984 0-53.165 0-57.788 1.156-11.041 3.681-16.635 7.389-24.271 15.025-18.363 18.363-13.869 31.93-13.869 80.903 0 26.582 0 50.853 1.156 54.321 6.004 18.012 11.382 28.806 27.738 36.984l6.935 4.623h122.51c11.934-7.956 23.369-13.223 30.050-26.582 8.757-17.514 5.779-28.419 5.779-70.501 0-57.77 3.993-69.765-26.582-90.149-3.467-2.312-9.246-3.467-12.713-4.623s-24.271-1.156-58.944-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar-event"],"defaultCode":59986,"grid":24},"attrs":[],"properties":{"id":94,"order":136,"ligatures":"","prevSize":24,"code":59986,"name":"calendar-event"},"setIdx":0,"setId":2,"iconIdx":95},{"icon":{"paths":["M396.424 195.323c26.733 0 39.088 16.467 47.386 35.828l1.156 30.050v30.050h288.939v-30.050l1.156-30.050c5.728-11.455 13.043-25.922 25.427-30.050l13.869-4.623c19.756-3.952 33.084 5.345 42.763 15.025 13.57 13.57 13.869 26.343 13.869 56.632v23.115h21.959c48.003 0 78.635 4.195 105.174 25.427 5.779 4.623 16.181 11.558 21.959 17.336 20.896 20.896 33.56 44.133 40.451 78.591 1.156 9.246 2.312 46.23 2.312 312.054s-1.156 303.964-2.312 313.21c-12.419 62.095-52.316 106.622-114.42 119.043-9.246 2.312-21.959 1.156-316.677 1.156s-307.431 1.156-316.677-1.156c-13.096-2.62-26.681-8.717-36.984-13.869-40.612-20.307-68.494-54.682-78.591-105.174-1.156-9.246-1.156-52.009-1.156-313.21 0-265.824 1.156-302.808 2.312-312.054 1.156-5.779 2.312-15.025 3.467-19.648 3.275-13.103 12.809-26.743 19.648-38.14 17.643-29.402 50.964-50.88 87.837-60.099 16.428-4.108 33.688-3.467 56.632-3.467h21.959v-23.115c0-43.506 6.421-61.084 38.14-71.657 3.467-1.156 8.090-1.156 10.402-1.156zM321.3 388.334c-42.948 0-55.683 6.294-67.034 34.673l-1.156 78.591v78.591h672.65v-78.591l-1.156-78.591c-11.333-28.335-26.117-34.673-68.19-34.673h-25.427v24.271c0 30.558-1.108 43.871-15.025 57.788-6.241 6.241-16.473 13.869-26.582 13.869h-13.869c-19.835 0-34.146-18.068-39.296-33.517-2.312-5.779-2.312-10.402-2.312-34.673v-27.738h-288.939v27.738c0 24.271 0 28.894-2.312 34.673-5.461 16.381-18.321 33.517-39.296 33.517h-13.869c-22.069 0-35.871-22.13-40.451-40.451-1.156-4.623-1.156-18.492-1.156-31.205v-24.271h-26.582zM925.761 677.273h-672.65v174.519l1.156 174.519c7.677 17.911 14.501 28.335 33.517 34.673 5.779 1.156 49.698 1.156 301.652 1.156s295.874 0 301.652-1.156c18.744-6.248 25.792-16.648 33.517-34.673l1.156-174.519v-174.519zM568.632 773.201c-42.742 0-43.881-2.35-62.411 16.181-3.467 3.467-8.090 8.090-9.246 11.558-4.496 13.49-4.705 27.492 0 41.607 5.225 15.678 25.325 25.082 43.919 27.738v50.853c0 30.050 0 52.009 1.156 55.476 6.775 13.551 12.791 23.938 25.427 32.361 26.058 17.371 54.471-5.427 64.722-20.804 2.312-3.467 3.467-9.246 4.623-12.713s1.156-33.517 1.156-85.526v-78.591c-14.709-29.416-18.706-38.14-69.345-38.14z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar"],"defaultCode":59987,"grid":24},"attrs":[],"properties":{"id":95,"order":137,"ligatures":"","prevSize":24,"code":59987,"name":"calendar"},"setIdx":0,"setId":2,"iconIdx":96},{"icon":{"paths":["M592.903 243.865l158.339 1.156 11.558 3.467c5.779 2.312 15.025 5.779 19.648 8.090 18.059 9.030 27.469 25.6 38.14 41.607 10.92 16.381 7.2 51.251 18.492 68.19 14.312 21.467 26.31 21.959 68.19 21.959 50.9 0 72.293 4.232 100.551 25.427 29.038 21.779 52.809 50.229 61.255 92.46 2.312 9.246 1.156 23.115 1.156 242.709s1.156 234.619-1.156 243.865c-6.644 33.223-19.74 54.413-40.451 75.124-21.451 21.451-44.284 33.591-78.591 40.451-10.402 1.156-45.074 2.312-360.596 2.312-316.677 0-350.194-1.156-360.596-2.312-62.924-12.585-106.458-52.65-119.043-115.576-2.312-9.246-1.156-24.271-1.156-243.865s-1.156-233.463 1.156-242.709c3.059-15.296 9.927-27.707 15.025-40.451 16.068-40.173 57.359-65.793 104.018-75.124 8.090-1.156 18.492-2.312 42.763-2.312 37.994 0 45.042 2.344 61.255-13.869 17.425-17.425 10.309-53.604 25.427-76.28 13.674-20.51 27.805-41.625 55.476-48.542 4.623-1.156 10.402-4.623 13.869-4.623s77.436-1.156 165.273-1.156zM973.147 520.090c-5.964-16.975-18.817-27.596-34.673-34.673h-36.984c-51.512 0-54.88-3.46-86.682-16.181-15.183-6.073-26.090-14.532-36.984-25.427-17.824-17.824-32.11-38.295-39.296-67.034-2.312-6.935-4.623-19.648-4.623-25.427v-10.402h-288.939v10.402c0 30.804-16.026 54.448-27.738 73.968-17.868 29.783-54.027 50.102-92.46 57.788-8.090 1.156-19.648 2.312-47.386 2.312h-38.14c-16.391 7.15-26.684 18.064-33.517 34.673v457.679c5.61 17.328 17.339 29.068 34.673 34.673h698.077c17.328-5.61 29.068-17.339 34.673-34.673v-457.679zM588.28 532.804c80.031 0 128.316 40.487 162.962 86.682 3.467 4.623 6.935 15.025 10.402 20.804 12.052 20.087 15.687 42.781 19.648 70.501 6.328 63.272-19.335 107.094-47.386 142.158-23.895 29.868-62.191 52.427-106.33 61.255-5.779 1.156-16.181 3.467-24.271 3.467h-27.738c-54.452 0-96.843-30.965-124.822-58.944-22.59-22.59-42.134-54.645-49.698-92.46-8.929-44.645-1.313-96.822 16.181-125.977 3.467-5.779 6.935-16.181 10.402-20.804 29.454-39.273 66.649-73.519 124.822-83.214 6.935-1.156 13.869-2.312 16.181-2.312s11.558-1.156 19.648-1.156zM588.28 629.887c-43.295 0-68.559 21.543-83.214 50.853-7.079 11.799-11.558 22.441-11.558 39.296 0 45.239 19.27 73.78 49.698 88.993 4.623 2.312 11.558 6.935 16.181 8.090 9.757 2.439 25.007 4.623 36.984 4.623 26.334 0 57.062-19.138 68.19-35.828 11.517-17.275 20.804-36.106 20.804-65.878 0-34.929-21.853-59.441-42.763-75.124-13.601-10.2-31.65-15.025-54.321-15.025z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["camera"],"defaultCode":59988,"grid":24},"attrs":[],"properties":{"id":96,"order":49,"ligatures":"","prevSize":24,"code":59988,"name":"camera"},"setIdx":0,"setId":2,"iconIdx":97},{"icon":{"paths":["M1022.844 487.729c0 22.648-22.017 45.074-45.074 45.074-14.023 0-19.562-2.847-27.738-6.935-3.467-2.312-36.984-33.517-85.526-82.059l-79.747-79.747-104.018 124.822c-56.632 68.19-105.174 125.977-107.485 128.289-6.997 6.997-17.066 11.558-32.361 11.558h-12.713c63.057 27.163 8.878-0.595-45.436-28.124l-119.837-55.090-61.255 82.059c-33.517 45.074-63.567 83.214-65.878 85.526-28.274 28.274-79.747 4.034-79.747-35.828 0-7.912 2.030-16.772 4.623-21.959 0.128-0.258 155.807-206.661 156.027-206.88 6.997-6.997 17.066-11.558 32.361-11.558h12.713l166.429 83.214s210.868-252.475 223.061-264.668c4.037-4.037 12.717-10.402 19.648-10.402 2.312 0 8.090-1.156 11.558-1.156 9.993 0 23.062 3.414 28.894 9.246 5.834 3.889 200.547 200.846 204.569 206.88 4.060 8.12 6.935 13.753 6.935 27.738zM191.856 1060.984c-20.572-6.858-35.828-22.35-35.828-49.698 0-5.779 1.156-10.402 3.467-15.025 1.156-3.467 47.386-72.813 101.707-153.716s100.551-149.093 102.862-151.404c9.128-9.128 16.779-13.869 35.828-13.869l9.246 1.156 83.214 40.451c45.074 23.115 82.059 41.607 83.214 41.607 3.102 0 161.808-202.26 175.675-216.126 4.037-4.037 12.717-10.402 19.648-10.402 2.312 0 8.090-1.156 11.558-1.156 8.464 0 18.515 4.057 24.271 6.935 6.033 4.022 202.991 198.735 206.88 204.569 3.467 3.467 5.779 10.402 6.935 15.025 2.312 6.935 2.312 10.402 2.312 135.223s0 127.133-2.312 134.068c-4.073 16.293-18.352 27.306-33.517 32.361h-795.16zM785.914 654.158c-109.648 136.662-153.988 193.284-162.962 202.257-7.96 7.96-24.255 16.184-41.607 12.713-7.969-1.594-2.315-0.63-167.585-80.903-1.862 2.672-112.722 168.506-119.043 177.986h632.199v-172.208c-49.294-48.503-95.231-94.073-140.984-139.828l-0.019-0.019z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chart-area-line"],"defaultCode":59991,"grid":24},"attrs":[],"properties":{"id":99,"order":118,"ligatures":"","prevSize":24,"code":59991,"name":"chart-area-line"},"setIdx":0,"setId":2,"iconIdx":100},{"icon":{"paths":["M881.842 243.865c102.862 0 109.797 0 116.731 2.312 38.969 12.991 61.128 38.787 71.657 80.903 1.156 5.779 1.156 115.576 1.156 350.194s0 344.415-1.156 350.194c-9.177 36.702-24.897 58.678-55.476 73.968-4.623 2.312-11.558 5.779-16.181 6.935-6.935 2.312-23.115 1.156-409.138 1.156-339.792 0-401.047 0-406.826-1.156-31.349-10.449-60.945-29.968-69.345-63.567-8.513-34.053-5.779-48.796-5.779-181.454 0-152.56 1.156-153.716 3.467-161.806 9.046-36.184 35.446-61.448 71.657-70.501 6.935-2.312 16.181-2.312 110.953-2.312h102.862v-55.476c0-52.009 1.156-55.476 3.467-64.722 9.469-37.878 35.901-59.829 73.968-69.345 6.935-1.156 24.271-2.312 109.797-2.312h101.707v-49.698c0-57.228-1.589-65.011 13.869-95.928 9.321-18.645 32.151-37.51 53.165-42.763 4.623-1.156 9.246-3.467 12.713-3.467s55.476-1.156 116.731-1.156zM974.302 339.792h-191.856v673.806h27.738c15.025 0 58.944 1.156 95.928 1.156h68.19v-674.962zM685.363 532.804h-191.856v480.795h191.856v-480.795zM300.497 725.815h-95.928v287.783h191.856v-287.783h-95.928z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chart-bar"],"defaultCode":59993,"grid":24},"attrs":[],"properties":{"id":101,"order":119,"ligatures":"","prevSize":24,"code":59993,"name":"hits"},"setIdx":0,"setId":2,"iconIdx":102},{"icon":{"paths":["M302.808 243.865c24.249 0 37.739 17.289 43.919 35.828 1.156 5.779 2.312 13.869 2.312 33.517v26.582h8.090c26.009 0 46.429 16.379 60.099 30.050 11.553 11.553 20.792 24.223 25.427 42.763 2.312 6.935 1.156 13.869 1.156 95.928 0 87.837 0 87.837-2.312 97.084-4.511 18.044-12.906 32.554-24.271 43.919-13.208 13.208-38.781 27.738-63.567 27.738h-4.623v195.323c0 172.208-1.156 196.479-2.312 202.257-6.617 19.848-19.202 34.673-46.23 34.673-27.773 0-39.299-13.881-46.23-34.673-1.156-5.779-2.312-30.050-2.312-202.257v-195.323h-8.090c-12.517 0-24.14-5.713-33.517-10.402-12.517-6.258-17.117-9.026-26.582-18.492-3.467-3.467-10.402-10.402-12.713-15.025l-8.090-16.181c-2.312-4.623-3.467-13.869-4.623-18.492-1.156-8.090-2.312-19.648-2.312-94.772 0-77.436 0-86.682 2.312-92.46 5.996-17.986 18.252-39.135 32.361-48.542 8.776-5.852 19.293-15.515 31.205-18.492 8.276-2.069 20.364-3.546 30.050-4.623v-26.582c0-34.002 1.809-42.26 16.181-56.632 8.562-8.562 17.625-12.713 34.673-12.713zM589.436 1109.526c-31.412 0-44.632-20.018-48.542-47.386h-9.246c-27.439 0-46.69-16.641-61.255-31.205-13.081-13.081-19.26-28.496-24.271-48.542-1.156-4.623-1.156-36.984-1.156-87.837s0-84.37 1.156-88.993c6.466-25.866 18.383-48.085 38.14-61.255 12.109-8.072 28.213-18.492 47.386-18.492h9.246v-219.594c0-194.167 1.156-220.749 2.312-226.528 3.294-9.885 7.588-16.834 13.869-23.115 8.562-8.562 17.625-12.713 34.673-12.713 24.249 0 37.739 17.289 43.919 35.828 1.156 5.779 2.312 32.361 2.312 226.528v219.594h9.246c20.493 0 34.776 10.085 47.386 18.492 17.422 11.615 26.213 27.391 34.673 48.542l3.467 11.558v180.298c-3.236 9.708-7.403 21.741-11.558 30.050-9.030 18.059-25.6 27.469-41.607 38.14-7.092 4.727-21.482 9.246-32.361 9.246h-9.246c-3.91 27.368-17.141 47.386-48.542 47.386zM829.833 292.406c4.047-28.328 19.090-48.542 50.853-48.542 28.299 0 42.636 23.381 46.23 48.542h9.246c19.929 0 35.056 10.274 47.386 18.492 19.978 13.318 29.639 33.443 38.14 58.944v226.528c-5.485 21.94-12.85 39.432-26.582 53.165-13.208 13.208-38.781 27.738-63.567 27.738h-4.623v195.323c0 172.208-1.156 196.479-2.312 202.257-6.617 19.848-19.202 34.673-46.23 34.673-27.773 0-39.299-13.881-46.23-34.673-1.156-5.779-2.312-30.050-2.312-202.257v-195.323h-8.090c-12.517 0-24.14-5.713-33.517-10.402-12.517-6.258-17.117-9.026-26.582-18.492-3.467-3.467-10.402-10.402-12.713-15.025l-8.090-16.181c-2.312-4.623-3.467-12.713-4.623-17.336-1.156-8.090-2.312-23.115-2.312-114.42 0-67.034 0-108.641 1.156-113.264 6.466-25.866 18.383-48.085 38.14-61.255 12.109-8.072 28.213-18.492 47.386-18.492h9.246zM925.761 388.334h-94.772v191.856h94.772v-191.856zM347.883 436.876h-94.772v143.314h94.772v-143.314zM589.436 821.743h-47.386v144.47h94.772v-144.47h-47.386z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chart-candle"],"defaultCode":59994,"grid":24},"attrs":[],"properties":{"id":102,"order":52,"ligatures":"","prevSize":24,"code":59994,"name":"chart-candle"},"setIdx":0,"setId":2,"iconIdx":103},{"icon":{"paths":["M976.614 388.334c-14.751 0-22.322 4.48-31.205 10.402-3.467 2.312-106.33 105.174-228.84 227.684l-223.061 223.061-106.33-106.33c-91.305-91.305-107.485-106.33-113.264-108.641-11.901-3.968-31.166-8.502-43.919 0-9.586 4.792-16.367 14.725-21.959 23.115-3.467 5.779-2.312 6.935-2.312 19.648s-1.156 13.869 2.312 20.804c6.796 11.326 250.794 257.566 264.668 263.512 6.935 3.467 10.402 4.623 17.336 4.623 14.023 0 19.562-2.847 27.738-6.935 3.779-2.52 491.132-486.476 495.819-493.508 6.461-8.614 9.246-19.567 9.246-32.361 0-24.036-22.1-45.074-46.23-45.074z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["check"],"defaultCode":59998,"grid":24},"attrs":[],"properties":{"id":106,"order":123,"ligatures":"","prevSize":24,"code":59998,"name":"check"},"setIdx":0,"setId":2,"iconIdx":107},{"icon":{"paths":["M299.341 484.262c-27.086 0-52.371 25.931-46.23 56.632 1.156 4.623 2.312 10.402 4.623 13.869 10.932 18.22 296.078 301.544 309.743 309.743 12.431 8.287 30.986 4.311 43.919 0 10.648-4.26 303.156-298.764 309.743-309.743 15.448-23.173-2.813-58.726-20.804-64.722-12.013-4.005-31.217-8.467-43.919 0-5.779 3.467-23.115 18.492-137.535 132.912l-129.445 129.445-130.6-129.445c-112.108-112.108-130.6-130.6-136.379-132.912-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-down"],"defaultCode":59999,"grid":24},"attrs":[],"properties":{"id":107,"order":138,"ligatures":"","prevSize":24,"code":59999,"name":"chevron-down"},"setIdx":0,"setId":2,"iconIdx":108},{"icon":{"paths":["M732.749 339.792c-7.281 0-16.564 2.182-21.959 5.779-10.538 4.215-299.784 295.069-308.587 309.743-6.892 10.337-7.205 33.11 0 43.919 10.932 18.22 296.078 301.544 309.743 309.743 16.978 11.318 45.398 1.988 55.476-8.090 10.849-10.849 21.982-37.527 9.246-56.632-3.467-5.779-18.492-23.115-132.912-137.535l-129.445-129.445 129.445-129.445c114.42-114.42 129.445-131.756 132.912-137.535 15.448-23.173-2.813-58.726-20.804-64.722-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-left"],"defaultCode":60000,"grid":24},"attrs":[],"properties":{"id":108,"order":139,"ligatures":"","prevSize":24,"code":60000,"name":"chevron-left"},"setIdx":0,"setId":2,"iconIdx":109},{"icon":{"paths":["M443.81 339.792c-26.964 0-52.359 25.991-46.23 56.632 1.156 4.623 2.312 10.402 4.623 13.869 3.467 5.779 18.492 23.115 132.912 137.535l129.445 129.445-129.445 129.445c-114.42 114.42-129.445 131.756-132.912 137.535-6.892 10.337-7.205 33.11 0 43.919 9.096 13.644 25.429 30.512 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 10.648-4.26 303.156-298.764 309.743-309.743 6.892-10.337 7.205-33.11 0-43.919-6.588-10.979-299.095-305.483-309.743-309.743-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-right"],"defaultCode":60001,"grid":24},"attrs":[],"properties":{"id":109,"order":140,"ligatures":"","prevSize":24,"code":60001,"name":"chevron-right"},"setIdx":0,"setId":2,"iconIdx":110},{"icon":{"paths":["M588.28 484.262c-7.905 0-16.352 2.041-21.959 5.779-10.538 4.215-299.784 295.069-308.587 309.743-6.892 10.337-7.205 33.11 0 43.919 9.096 13.644 25.429 30.512 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 5.779-2.312 24.271-20.804 136.379-132.912l130.6-129.445 129.445 129.445c114.42 114.42 131.756 129.445 137.535 132.912 16.978 11.318 45.398 1.988 55.476-8.090 10.849-10.849 21.982-37.527 9.246-56.632-6.588-10.979-299.095-305.483-309.743-309.743-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevron-up"],"defaultCode":60002,"grid":24},"attrs":[],"properties":{"id":110,"order":141,"ligatures":"","prevSize":24,"code":60002,"name":"chevron-up"},"setIdx":0,"setId":2,"iconIdx":111},{"icon":{"paths":["M833.3 388.334c23.063 0 45.074 22.437 45.074 45.074 0 12.817-2.778 23.739-9.246 32.361-2.3 3.45-245.137 249.228-257.734 254.266-12.013 4.005-31.217 8.467-43.919 0-14.737-8.842-257.433-253.816-257.734-254.266-6.614-8.818-9.246-18.782-9.246-32.361 0-19.412 13.559-31.385 25.427-39.296 6.895-4.598 13.233-5.779 23.115-5.779 8.464 0 18.515 4.057 24.271 6.935 3.467 2.312 45.074 41.607 110.953 107.485l105.174 105.174 105.174-105.174c65.878-65.878 107.485-105.174 110.953-107.485 8.12-4.060 13.753-6.935 27.738-6.935zM349.038 677.273c-23.67 0-35.628 12.315-43.919 28.894-2.312 5.779-4.623 9.246-4.623 16.181 0 13.595 2.627 23.536 9.246 32.361 0.3 0.451 242.997 245.425 257.734 254.266 12.431 8.287 30.986 4.311 43.919 0 12.598-5.039 255.434-250.816 257.734-254.266 6.461-8.614 9.246-19.567 9.246-32.361 0-23.346-22.043-45.074-45.074-45.074-14.023 0-19.562 2.847-27.738 6.935-3.467 2.312-45.074 41.607-110.953 107.485l-105.174 105.174-105.174-105.174c-65.878-65.878-107.485-105.174-110.953-107.485-5.744-2.872-15.805-6.935-24.271-6.935z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-down"],"defaultCode":60003,"grid":24},"attrs":[],"properties":{"id":111,"order":142,"ligatures":"","prevSize":24,"code":60003,"name":"chevrons-down"},"setIdx":0,"setId":2,"iconIdx":112},{"icon":{"paths":["M589.436 921.138c0 23.063-22.437 45.074-45.074 45.074-12.817 0-23.739-2.778-32.361-9.246-0.451-0.3-245.425-242.997-254.266-257.734-6.892-10.337-7.205-33.11 0-43.919 8.788-14.649 253.25-255.901 254.266-256.578 8.837-5.892 16.51-10.402 31.205-10.402 21.524 0 34.324 14.329 41.607 28.894 2.312 5.779 4.623 9.246 4.623 16.181 0 14.023-2.847 19.562-6.935 27.738-2.312 3.467-41.607 45.074-107.485 110.953l-105.174 105.174 105.174 105.174c65.878 65.878 105.174 107.485 107.485 110.953 4.060 8.12 6.935 13.753 6.935 27.738zM832.144 388.334c-14.751 0-22.322 4.48-31.205 10.402-1.016 0.677-245.478 241.929-254.266 256.578-6.892 10.337-7.205 33.11 0 43.919 8.842 14.737 253.816 257.433 254.266 257.734 8.614 6.461 19.567 9.246 32.361 9.246 23.346 0 45.074-22.043 45.074-45.074 0-14.023-2.847-19.562-6.935-27.738-2.312-3.467-41.607-45.074-107.485-110.953l-105.174-105.174 105.174-105.174c65.878-65.878 105.174-107.485 107.485-110.953 4.060-8.12 6.935-13.753 6.935-27.738 0-24.036-22.1-45.074-46.23-45.074z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-left"],"defaultCode":60004,"grid":24},"attrs":[],"properties":{"id":112,"order":143,"ligatures":"","prevSize":24,"code":60004,"name":"chevrons-left"},"setIdx":0,"setId":2,"iconIdx":113},{"icon":{"paths":["M345.571 966.212c-22.648 0-45.074-22.017-45.074-45.074 0-14.023 2.847-19.562 6.935-27.738 2.312-3.467 41.607-45.074 107.485-110.953l105.174-105.174-105.174-105.174c-65.878-65.878-105.174-107.485-107.485-110.953-3.883-7.767-6.935-14.583-6.935-27.738 0-19.412 13.559-31.385 25.427-39.296 6.895-4.598 13.233-5.779 23.115-5.779 11.072 0 21.308 3.556 28.894 9.246 0.451 0.3 245.425 242.997 254.266 257.734 6.892 10.337 7.205 33.11 0 43.919-8.842 14.737-253.816 257.433-254.266 257.734-8.614 6.461-19.567 9.246-32.361 9.246zM637.977 388.334c-23.67 0-35.628 12.315-43.919 28.894-2.312 5.779-4.623 9.246-4.623 16.181 0 13.164 3.034 19.937 6.935 27.738 2.312 3.467 41.607 45.074 107.485 110.953l105.174 105.174-105.174 105.174c-65.878 65.878-105.174 107.485-107.485 110.953-4.060 8.12-6.935 13.753-6.935 27.738 0 22.884 22.573 45.074 45.074 45.074 12.817 0 23.739-2.778 32.361-9.246 0.451-0.3 245.425-242.997 254.266-257.734 6.892-10.337 7.205-33.11 0-43.919-8.842-14.737-253.816-257.433-254.266-257.734-7.594-5.697-17.814-9.246-28.894-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-right"],"defaultCode":60005,"grid":24},"attrs":[],"properties":{"id":113,"order":144,"ligatures":"","prevSize":24,"code":60005,"name":"chevrons-right"},"setIdx":0,"setId":2,"iconIdx":114},{"icon":{"paths":["M345.571 677.273c-22.648 0-45.074-22.017-45.074-45.074 0-13.595 2.627-23.536 9.246-32.361 0.049-0.073 249.033-251.249 256.578-254.266 5.631-3.754 14.012-5.779 21.959-5.779 8.602 0 16.421 3.548 23.115 5.779 12.598 5.039 255.434 250.816 257.734 254.266 6.461 8.614 9.246 19.567 9.246 32.361 0 23.063-22.437 45.074-45.074 45.074-14.023 0-19.562-2.847-27.738-6.935-3.467-2.312-45.074-41.607-110.953-107.485l-105.174-105.174-105.174 105.174c-65.878 65.878-107.485 105.174-110.953 107.485-8.12 4.060-13.753 6.935-27.738 6.935zM588.28 628.731c-7.905 0-16.352 2.041-21.959 5.779-7.609 3.044-256.554 254.229-256.578 254.266-6.614 8.818-9.246 18.782-9.246 32.361 0 22.884 22.573 45.074 45.074 45.074 14.023 0 19.562-2.847 27.738-6.935 3.467-2.312 45.074-41.607 110.953-107.485l105.174-105.174 105.174 105.174c65.878 65.878 107.485 105.174 110.953 107.485 8.12 4.060 13.753 6.935 27.738 6.935 23.346 0 45.074-22.043 45.074-45.074 0-12.817-2.778-23.739-9.246-32.361-2.3-3.45-245.137-249.228-257.734-254.266-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chevrons-up"],"defaultCode":60006,"grid":24},"attrs":[],"properties":{"id":114,"order":145,"ligatures":"","prevSize":24,"code":60006,"name":"chevrons-up"},"setIdx":0,"setId":2,"iconIdx":115},{"icon":{"paths":["M598.682 196.479c13.869 0 31.205 0 40.451 1.156 143.738 17.967 245.038 83.427 320.144 171.052 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 87.803-18.745 153.066-48.542 212.659-22.112 44.224-45.466 81.295-78.591 114.42l-26.582 26.582c-23.193 23.193-49.61 42.382-78.591 58.944-67.502 38.573-142.126 68.19-248.488 68.19-44.126 0-69.939-0.665-104.018-10.402-40.844-11.671-72.156-19.897-108.641-38.14-44.224-22.112-81.295-45.466-114.42-78.591l-26.582-26.582c-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c34.964-69.928 86.144-125.76 147.937-169.896 56.393-40.28 123.205-72.416 206.88-84.37 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-12.713 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.205 10.402-69.686 36.374-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-21.503 32.253-34.447 69.709-46.23 110.953-8.258 28.901-11.558 55.569-11.558 92.46 0 48.146 7.822 81.696 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 15.871 47.615 45.291 82.319 73.968 116.731 11.667 14.001 32.461 31.279 46.23 41.607 26.888 20.166 67.693 43.211 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 64.881 0 112.828-10.228 159.494-28.894 91.019-36.407 152.663-102.474 197.634-184.921 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-32.552-21.7-69.269-34.32-110.953-46.23-29.91-8.547-56.204-11.558-94.772-11.558zM732.749 532.804c-10.020 0-15.391 2.494-21.959 5.779-3.467 2.312-28.894 26.582-86.682 84.37l-83.214 82.059-32.361-33.517c-27.738-27.738-35.828-33.517-41.607-36.984-10.337-6.892-33.11-7.205-43.919 0-15.106 10.070-38.543 38.113-20.804 64.722 3.467 5.779 11.558 15.025 56.632 60.099 31.205 31.205 54.321 53.165 57.788 55.476 8.12 4.060 13.753 6.935 27.738 6.935 5.779 0 11.558-2.312 16.181-4.623 12.168-6.085 209.104-202.111 216.126-213.815 21.509-32.263-11.569-70.501-43.919-70.501z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-check"],"defaultCode":60007,"grid":24},"attrs":[],"properties":{"id":115,"order":124,"ligatures":"","prevSize":24,"code":60007,"name":"circle-check"},"setIdx":0,"setId":2,"iconIdx":116},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 89.091-18.86 160.428-52.009 218.438-4.623 8.090-10.402 21.959-15.025 28.894-18.194 27.291-36.713 56.36-60.099 79.747l-26.582 26.582c-23.358 23.358-52.192 41.729-79.747 60.099-6.935 4.623-20.804 10.402-28.894 15.025-48.94 27.966-106.484 41.133-174.519 50.853-8.090 1.156-26.582 1.156-43.919 1.156-166.335 0-270.032-70.085-353.661-153.716-15.518-15.518-30.703-36.231-42.763-54.321-49.101-73.653-85.526-162.801-85.526-286.628 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312h40.451zM587.124 292.406c-11.558 0-25.427 1.156-32.361 1.156-39.439 0-76.109 14.967-107.485 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.2 35.699-18.492 72.287-18.492 119.043 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090s19.648-8.090 26.582-10.402c27.945-9.315 57.653-26.011 78.591-42.763 27.519-22.016 56.948-46.266 78.591-75.124 20.57-27.426 44.502-70.322 58.944-104.018 3.467-8.090 5.779-21.959 8.090-28.894 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM588.28 628.731c-134.406 0-140.902-2.73-166.429 5.779-17.718 5.906-34.355 42.662-19.648 64.722 8.174 12.26 18.152 20.304 33.517 25.427 4.623 1.156 48.542 1.156 153.716 1.156 104.018 0 149.093 0 153.716-1.156 9.897-3.299 17.12-5.563 24.271-12.713 10.849-10.849 21.982-37.527 9.246-56.632-4.88-7.318-11.937-17.847-20.804-20.804-3.467-1.156-9.246-3.467-12.713-4.623-4.623-1.156-49.698-1.156-154.871-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-minus"],"defaultCode":60008,"grid":24},"attrs":[],"properties":{"id":116,"order":157,"ligatures":"","prevSize":24,"code":60008,"name":"circle-minus"},"setIdx":0,"setId":2,"iconIdx":117},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM587.124 292.406c-11.558 0-26.582 1.156-32.361 1.156-15.107 0-33.688 5.615-48.542 8.090-34.648 5.774-58.135 16.354-87.837 31.205-45.072 24.584-82.523 48.314-114.42 85.526-18.363 21.422-35.921 41.792-48.542 67.034l-10.402 20.804c-23.604 47.209-40.451 100.765-40.451 171.052 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c42.859-28.573 77-72.857 104.018-117.887 14.364-23.94 24.999-55.349 34.673-84.37 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM588.28 484.262c-25.874 0-39.608 19.432-46.23 39.296-1.156 3.467-1.156 23.115-1.156 55.476v49.698h-49.698c-32.361 0-52.009 0-55.476 1.156-20.428 6.81-44.35 24.427-38.14 55.476 5.314 21.258 17.999 32.582 38.14 39.296 3.467 1.156 23.115 1.156 55.476 1.156h49.698v49.698c0 32.361 0 52.009 1.156 55.476 6.81 20.428 24.427 44.35 55.476 38.14 21.847-5.462 32.338-17.267 39.296-38.14 1.156-3.467 1.156-23.115 1.156-55.476v-49.698h49.698c48.299 0 48.949 0.635 68.19-5.779 18.238-6.079 36.364-41.384 20.804-64.722-19.65-29.475-28.168-26.582-88.993-26.582h-49.698v-49.698c0-32.361 0-52.009-1.156-55.476-7.145-21.433-20.619-39.296-48.542-39.296z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-plus"],"defaultCode":60009,"grid":24},"attrs":[],"properties":{"id":117,"order":156,"ligatures":"","prevSize":24,"code":60009,"name":"circle-plus"},"setIdx":0,"setId":2,"iconIdx":118},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 120.313-37.155 202.513-85.526 275.070-12.027 18.041-25.941 36.343-41.607 52.009l-26.582 26.582c-23.193 23.193-49.61 42.382-78.591 58.944-67.931 38.817-141.536 68.19-248.488 68.19-61.871 0-102.828-9.566-150.248-23.115-58.071-16.591-106.434-49.607-150.248-80.903-18.727-13.377-37.065-33.598-53.165-49.698-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c29.731-59.461 70.479-106.311 119.043-147.937 60.214-51.611 138.896-92.489 235.774-106.33 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-11.558 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.39 36.365-18.492 71.799-18.492 119.043 0 47.294 8.049 82.491 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 15.871 47.615 45.291 82.319 73.968 116.731 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090s19.648-8.090 26.582-10.402c47.615-15.871 82.319-45.291 116.731-73.968 14.001-11.667 31.279-32.461 41.607-46.23 13.285-17.713 29.296-42.153 41.607-64.722 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM493.508 532.804c-23.67 0-35.628 12.315-43.919 28.894-2.312 5.779-4.623 9.246-4.623 16.181 0 14.023 2.847 19.562 6.935 27.738 1.156 2.312 17.336 19.648 35.828 38.14l32.361 33.517-32.361 33.517c-18.492 18.492-34.673 35.828-35.828 38.14-4.060 8.12-6.935 13.753-6.935 27.738 0 23.346 22.043 45.074 45.074 45.074 14.023 0 19.562-2.847 27.738-6.935 2.312-1.156 19.648-17.336 38.14-35.828l33.517-32.361 33.517 32.361c18.492 18.492 35.828 34.673 38.14 35.828 8.12 4.060 13.753 6.935 27.738 6.935 22.884 0 45.074-22.573 45.074-45.074 0-14.023-2.847-19.562-6.935-27.738-1.156-2.312-17.336-19.648-35.828-38.14l-32.361-33.517 32.361-33.517c18.492-18.492 34.673-35.828 35.828-38.14 4.060-8.12 6.935-13.753 6.935-27.738 0-22.884-22.573-45.074-45.074-45.074-14.023 0-19.562 2.847-27.738 6.935-2.312 1.156-19.648 17.336-38.14 35.828l-33.517 32.361-33.517-32.361c-26.86-26.86-31.203-34.287-49.698-40.451-3.467-1.156-9.246-2.312-12.713-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["circle-x"],"defaultCode":60010,"grid":24},"attrs":[],"properties":{"id":118,"order":155,"ligatures":"","prevSize":24,"code":60010,"name":"circle-x"},"setIdx":0,"setId":2,"iconIdx":119},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 89.091-18.86 160.428-52.009 218.438-4.623 8.090-10.402 21.959-15.025 28.894-18.194 27.291-36.713 56.36-60.099 79.747l-26.582 26.582c-23.358 23.358-52.192 41.729-79.747 60.099-6.935 4.623-20.804 10.402-28.894 15.025-48.94 27.966-106.484 41.133-174.519 50.853-8.090 1.156-26.582 1.156-43.919 1.156-166.335 0-270.032-70.085-353.661-153.716-15.518-15.518-30.703-36.231-42.763-54.321-49.101-73.653-85.526-162.801-85.526-286.628 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312h40.451zM587.124 292.406c-11.558 0-25.427 1.156-32.361 1.156-39.439 0-76.109 14.967-107.485 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.2 35.699-18.492 72.287-18.492 119.043 0 47.507 6.321 84.66 19.648 120.199 14.449 38.531 28.309 74.394 52.009 104.018 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090s19.648-8.090 26.582-10.402c27.945-9.315 57.653-26.011 78.591-42.763 27.519-22.016 56.948-46.266 78.591-75.124 20.57-27.426 44.502-70.322 58.944-104.018 3.467-8.090 5.779-21.959 8.090-28.894 11.837-35.513 13.869-54.548 13.869-105.174 0-50.983-1.928-69.351-13.869-105.174-2.312-6.935-4.623-20.804-8.090-28.894-15.071-35.167-37.073-74.087-57.788-101.707-26.606-35.475-62.962-66.246-100.551-91.305-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM591.747 388.334c-21.053 0-39.793 10.738-45.074 26.582-1.156 3.467-3.467 9.246-4.623 12.713s-1.156 50.853-1.156 129.445c0 86.682 0 124.822 1.156 129.445 1.156 3.467 2.312 10.402 4.623 13.869 5.776 9.629 153.038 156.776 165.273 164.117 16.978 11.318 45.398 1.988 55.476-8.090 10.849-10.849 21.982-37.527 9.246-56.632-3.467-5.779-13.869-16.181-71.657-75.124l-67.034-68.19v-110.953c0-70.501 0-114.42-1.156-117.887-6.322-18.968-19.632-39.296-45.074-39.296z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clock"],"defaultCode":60016,"grid":24},"attrs":[],"properties":{"id":124,"order":33,"ligatures":"","prevSize":24,"code":60016,"name":"clock"},"setIdx":0,"setId":2,"iconIdx":125},{"icon":{"paths":["M878.375 966.212c0-30.253 23.145-48.542 53.165-48.542 44.372 0 74.283-26.231 93.616-52.009 14.423-19.229 20.804-42.717 20.804-75.124 0-36.522-18.278-61.041-36.984-79.747-28.362-28.362-42.023-31.616-102.862-33.517h-39.296c-11.387-6.507-26.882-13.611-31.205-26.582l-4.623-13.869c-2.486-12.43 3.467-40.146 3.467-56.632 0-53.477-19.674-83.636-42.763-114.42-24.694-32.925-61.344-51.581-102.862-68.19-20.21-8.083-50.452-11.558-76.28-11.558-37.542 0-71.682 9.718-99.395 20.804-5.779 2.312-13.869 6.935-18.492 10.402s-12.713 6.935-16.181 9.246c-16.234 10.821-35.182 28.804-47.386 45.074-8.63 11.506-17.366 20.301-23.115 34.673-3.59 8.976-12.713 27.944-12.713 36.984 0 17.319-19.36 29.906-31.205 35.828-8.829 2.943-53.606 3.786-63.567 5.779-8.090 1.156-18.492 5.779-24.271 8.090-43.889 17.556-79.643 46.546-97.084 90.149-8.399 20.995-12.713 37.578-12.713 68.19 0 21.136 5.635 32.941 9.246 47.386 10.633 42.53 50.884 74.562 86.682 92.46 19.26 9.63 27.033 16.824 32.361 38.14 6.178 30.884-15.322 49.484-39.296 55.476-23.264 4.652-39.807-10.081-56.632-18.492-19.139-9.57-34.495-22.937-49.698-38.14-6.935-6.935-17.336-17.336-21.959-24.271s-12.713-15.025-16.181-20.804c-24.047-40.078-41.607-85.716-41.607-149.093 0-40.933 13.993-71.177 26.582-100.551 7.197-16.791 20.347-34.45 30.050-47.386 21.728-28.971 52.189-53.255 86.682-70.501 25.759-12.88 57.943-28.894 94.772-28.894 10.106-2.526 9.407-13.032 16.181-26.582 25.508-51.015 63.486-91.719 110.953-120.199 13.421-8.053 37.686-21.423 53.165-26.582l24.271-8.090c24.886-8.296 49.524-15.025 80.903-15.025 8.090 0 16.181-1.156 17.336-1.156 48.78 0 92.781 12.435 128.289 24.271 28.865 9.622 54.185 26.155 77.436 42.763 28.089 20.064 57.566 53.951 75.124 83.214 16.623 27.706 30.617 58.88 36.984 97.084 1.156 6.935 3.467 20.804 3.467 28.894v15.025l11.558 1.156c50.443 0 90.498 26.266 120.199 48.542 11.516 8.637 27.166 25.434 35.828 36.984 23.785 31.714 43.919 75.139 43.919 130.6 0 36.469-8.35 57.411-17.336 84.37-11.976 35.929-37.589 63.82-64.722 85.526-31.637 25.309-66.744 39.838-117.887 46.23-33.531 3.353-49.176-5.893-60.099-27.738-3.467-6.935-4.623-8.090-4.623-19.648zM591.747 677.273c-21.053 0-39.793 10.738-45.074 26.582-1.156 3.467-3.467 9.246-4.623 12.713s-1.156 62.411-1.156 165.273v159.494l-33.517-33.517c-30.050-30.050-35.828-33.517-42.763-36.984-8.090-3.467-8.090-4.623-19.648-4.623-36.709 0-55.084 34.693-43.919 68.19 5.507 13.766 154.099 159.493 167.585 167.585 10.45 6.967 30.626 7.321 41.607 0 13.485-8.091 162.077-153.818 167.585-167.585 2.518-7.553 5.85-18.208 3.467-27.738l-4.623-13.869c-4.719-14.157-23.33-26.582-42.763-26.582-11.558 0-11.558 1.156-19.648 4.623-6.935 3.467-12.713 6.935-42.763 36.984l-33.517 33.517v-159.494c0-102.862 0-161.806-1.156-165.273-6.322-18.968-19.632-39.296-45.074-39.296z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-download"],"defaultCode":60017,"grid":24},"attrs":[],"properties":{"id":125,"order":192,"ligatures":"","prevSize":24,"code":60017,"name":"cloud-download"},"setIdx":0,"setId":2,"iconIdx":126},{"icon":{"paths":["M610.239 288.939c63.452 0 116.111 17.025 158.339 38.14 52.128 26.065 93.273 63.381 122.51 112.108 16.623 27.706 30.617 58.88 36.984 97.084 1.156 6.935 3.467 20.804 3.467 28.894v15.025l11.558 1.156c50.443 0 90.498 26.266 120.199 48.542 20.204 15.153 37.68 36.987 50.853 58.944 16.393 27.321 28.894 59.625 28.894 101.707 0 42.951-6.426 70.64-20.804 99.395l-10.402 20.804c-10.654 21.306-32.529 41.971-50.853 56.632-40.178 32.142-83.603 47.386-157.183 47.386-42.673 0-51.694-1.84-68.19-26.582-6.892-10.337-7.205-33.11 0-43.919 15.931-23.898 26.47-26.582 71.657-26.582 39.89 0 41.607 0 64.722-9.246 21.929-8.772 39.764-24.895 53.165-42.763 12.228-16.302 15.984-32.535 20.804-56.632 7.658-53.609-24.074-94.192-57.788-114.42-28.034-16.821-31.954-17.336-84.37-17.336h-36.984c-20.989-11.993-40.735-24.603-35.828-58.944 2.572-12.857 4.623-29.421 4.623-45.074 0-45.682-23.839-80.711-43.919-107.485-16.435-21.913-38.225-35.5-61.255-50.853-9.348-6.233-30.292-12.81-41.607-17.336-20.403-8.162-50.131-11.558-76.28-11.558-50.504 0-88.612 16.568-122.51 33.517-23.688 11.844-43.508 31.427-58.944 52.009-8.63 11.506-17.366 20.301-23.115 34.673-3.59 8.976-12.713 27.944-12.713 36.984 0 17.319-19.36 29.906-31.205 35.828-3.467 1.156-12.713 1.156-23.115 2.312-30.956 0-51.258 9.87-72.813 18.492-5.779 2.312-16.181 8.090-21.959 12.713-13.142 10.514-35.186 25.898-43.919 40.451-15.643 26.074-31.205 54.374-31.205 95.928 0 54.235 22.729 90.919 50.853 119.043 6.935 6.935 18.492 13.869 24.271 18.492 22.808 18.246 55.926 31.205 94.772 31.205 10.402 1.156 19.648 1.156 23.115 2.312 12.486 6.242 21.091 14.878 28.894 26.582 3.467 5.779 2.312 6.935 2.312 19.648 0 19.243-4.6 25.404-13.869 34.673-31.862 31.862-109.057 2.559-141.002-8.090-48.079-16.027-83.559-51.035-113.264-86.682-11.647-13.977-19.971-27.393-26.582-43.919-5.305-13.265-14.204-30.571-17.336-46.23l-8.090-40.451c-1.156-5.779-1.156-18.492-1.156-26.582 0-59.473 18.059-105.102 42.763-142.158 33.694-50.541 80.159-84.236 142.158-107.485 13.911-5.217 37.369-12.713 50.853-12.713 4.908-2.454 13.482-28.248 17.336-34.673 27.26-45.433 62.106-84.88 107.485-112.108 13.421-8.053 37.686-21.423 53.165-26.582l24.271-8.090c24.886-8.296 49.524-15.025 80.903-15.025 8.090 0 16.181-1.156 17.336-1.156zM591.747 628.731c-10.382 0-19.769 3.529-26.582 6.935-0.684 0.457-151.514 145.037-162.962 164.117-6.892 10.337-7.205 33.11 0 43.919 9.096 13.644 25.429 30.512 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 4.623-2.312 13.869-9.246 40.451-35.828l33.517-33.517v159.494c0 114.42 0 160.65 1.156 165.273 6.81 20.428 24.427 44.35 55.476 38.14 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-50.853 1.156-165.273v-159.494l33.517 32.361c27.738 26.582 34.673 33.517 40.451 36.984 16.978 11.318 45.398 1.988 55.476-8.090 10.849-10.849 21.982-37.527 9.246-56.632-8.414-14.024-158.124-161.663-158.339-161.806-6.911-4.607-16.133-9.246-26.582-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["cloud-upload"],"defaultCode":60021,"grid":24},"attrs":[],"properties":{"id":129,"order":85,"ligatures":"","prevSize":24,"code":60021,"name":"cloud-upload"},"setIdx":0,"setId":2,"iconIdx":130},{"icon":{"paths":["M490.041 1110.682c-22.648 0-45.074-22.017-45.074-45.074-2.248-17.986 197.567-795.026 197.634-795.16 7.553-15.106 22.377-26.582 45.074-26.582 21.524 0 34.324 14.329 41.607 28.894 2.312 5.779 4.623 9.246 4.623 16.181 0 24.1-197.237 794.366-197.634 795.16-7.682 15.366-23.298 26.582-46.23 26.582zM395.269 869.129c0 29.641-18.177 48.542-47.386 48.542-11.558 0-12.713-1.156-20.804-4.623-12.219-5.237-207.666-203.567-213.815-213.815-6.892-10.337-7.205-33.11 0-43.919 12.877-21.462 203.866-207.182 210.348-211.503 8.803-5.869 11.669-6.935 26.582-6.935 27.38 0 45.074 20.299 45.074 48.542 0 11.558 0 12.713-3.467 20.804s-9.246 12.713-85.526 88.993l-80.903 82.059 80.903 82.059c76.28 76.28 82.059 80.903 85.526 88.993s3.467 9.246 3.467 20.804zM832.144 436.876c-27.835 0-35.004 12.055-46.23 28.894-3.467 5.779-2.312 8.090-2.312 19.648s0 12.713 3.467 20.804 9.246 12.713 85.526 88.993l80.903 82.059-80.903 82.059c-76.28 76.28-82.059 80.903-85.526 88.993s-3.467 9.246-3.467 20.804c0 29.778 17.986 48.542 47.386 48.542 11.558 0 12.713-1.156 20.804-4.623 12.219-5.237 207.666-203.567 213.815-213.815 6.892-10.337 7.205-33.11 0-43.919-6.149-10.248-201.596-208.578-213.815-213.815-6.935-3.467-9.246-4.623-19.648-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["code"],"defaultCode":60023,"grid":24},"attrs":[],"properties":{"id":131,"order":146,"ligatures":"","prevSize":24,"code":60023,"name":"code"},"setIdx":0,"setId":2,"iconIdx":132},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 89.091-18.86 160.428-52.009 218.438-4.623 8.090-10.402 21.959-15.025 28.894-18.194 27.291-36.713 56.36-60.099 79.747l-26.582 26.582c-23.358 23.358-52.192 41.729-79.747 60.099-6.935 4.623-20.804 10.402-28.894 15.025-48.94 27.966-106.484 41.133-174.519 50.853-8.090 1.156-26.582 1.156-43.919 1.156-166.335 0-270.032-70.085-353.661-153.716-15.518-15.518-30.703-36.231-42.763-54.321-49.101-73.653-85.526-162.801-85.526-286.628 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312h40.451zM540.894 322.456v-27.738l-16.181 3.467c-70.105 10.015-124.673 40.339-171.052 75.124-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-5.172 15.516-15.602 35.823-18.492 53.165-1.156 6.935-3.467 19.648-4.623 27.738l-3.467 16.181h27.738c33.783 0 31.341 0.090 45.074 9.246 11.919 7.947 19.648 18.42 19.648 39.296 0 16.782-4.377 25.18-12.713 33.517-14.153 14.153-24.467 15.025-55.476 15.025h-24.271c4.964 22.336 8.778 48.292 16.181 70.501 13.050 39.148 29.5 75.592 53.165 105.174 11.8 14.751 18.383 22.755 31.205 38.14 11.667 14.001 32.461 31.279 46.23 41.607 42.266 31.7 90.649 56.757 150.248 71.657 14.919 3.73 25.154 4.306 36.984 6.935v-24.271c0-37.976 4.732-52.641 28.894-64.722 6.935-3.467 8.090-4.623 19.648-4.623 28.663 0 40.33 18.128 47.386 39.296 1.156 3.467 1.156 17.336 1.156 30.050v24.271c21.725-4.828 49.485-8.298 70.501-16.181 39.142-14.678 74.944-28.981 105.174-53.165 27.519-22.016 56.948-46.266 78.591-75.124 32.484-43.313 57.744-92.286 72.813-152.56 3.73-14.919 4.306-25.154 6.935-36.984h-24.271c-37.976 0-52.641-4.732-64.722-28.894-3.467-6.935-4.623-8.090-4.623-19.648 0-28.663 18.128-40.33 39.296-47.386 3.467-1.156 17.336-1.156 30.050-1.156h24.271c-2.636-11.866-3.195-22.021-6.935-36.984-27.767-111.068-88.791-185.943-172.208-241.553-15.521-10.346-39.323-22.74-57.788-28.894-15.516-5.172-35.823-15.602-53.165-18.492-6.935-1.156-19.648-3.467-27.738-4.623l-16.181-3.467v27.738c0 33.783-0.090 31.341-9.246 45.074-7.947 11.919-18.42 19.648-39.296 19.648-24.858 0-39.025-11.9-45.074-30.050-2.312-4.623-3.467-10.402-3.467-34.673zM395.269 917.67c-25.333 0-46.23-20.912-46.23-46.23v-10.402l49.698-147.937c27.738-82.059 50.853-150.248 52.009-153.716 2.728-8.18 11.554-15.023 18.492-19.648 3.467-2.312 72.813-25.427 154.871-53.165l147.937-49.698h11.558c25.333 0 46.23 20.912 46.23 46.23v10.402l-49.698 147.937c-27.738 82.059-50.853 150.248-52.009 153.716-2.839 8.518-12.416 15.982-19.648 20.804-3.467 2.312-72.813 25.427-154.871 52.009l-147.937 49.698h-10.402zM703.856 561.698c-1.156 0-39.296 12.713-86.682 28.894l-85.526 28.894-28.894 86.682c-16.181 47.386-28.894 86.682-28.894 86.682s40.451-12.713 87.837-28.894l85.526-28.894 28.894-85.526c16.181-47.386 28.894-86.682 28.894-86.682s0-1.156-1.156-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["compass"],"defaultCode":60025,"grid":24},"attrs":[],"properties":{"id":133,"order":176,"ligatures":"","prevSize":24,"code":60025,"name":"compass"},"setIdx":0,"setId":2,"iconIdx":134},{"icon":{"paths":["M492.352 243.865c183.765 0 208.036 1.156 217.282 2.312 52.663 10.532 86.26 38.452 107.485 80.903 12.356 24.715 13.869 36.85 13.869 77.436v31.205h23.115c97.184 0 150.144 41.091 166.429 122.51 1.156 10.402 2.312 31.205 2.312 220.749l-1.156 210.348c-13.099 52.396-40.023 91.134-86.682 109.797-5.779 2.312-15.025 6.935-21.959 8.090l-11.558 2.312-210.348 1.156c-189.544 0-210.348-1.156-220.749-2.312-79.99-15.998-122.51-69.318-122.51-166.429v-23.115h-31.205c-34.892 0-39.876-3.035-60.099-8.090-14.39-3.597-24.559-8.321-35.828-17.336-18.945-15.155-40.293-30.812-49.698-54.321-5.274-13.187-9.537-26.882-12.713-42.763-1.156-10.402-2.312-31.205-2.312-220.749l1.156-210.348 2.312-11.558c5.061-30.365 27.010-55.904 45.074-73.968 15.834-15.834 39.113-27.471 63.567-32.361 5.779-1.156 11.558-2.312 13.869-2.312s97.084-1.156 210.348-1.156zM494.664 340.948c-196.479 0-204.569 0-210.348 2.312-14.724 4.907-24.484 17.289-30.050 31.205v411.449c5.952 17.859 18.686 28.574 36.984 34.673 3.467 1.156 17.336 1.156 31.205 1.156h25.427v-129.445c0-156.259-2.558-112.282 9.246-159.494 11.909-47.634 57.984-83.716 107.485-93.616 11.558-2.312 11.558-3.467 139.847-3.467h129.445v-24.271c0-34.269-0.18-41.788-16.181-57.788-6.283-6.283-11.473-8.833-19.648-11.558zM685.363 532.804c-108.641 0-199.946 1.156-202.257 1.156-19.031 0-32.053 23.347-36.984 38.14-1.156 3.467-1.156 79.747-1.156 202.257 0 138.691 0 196.479 1.156 201.102 6.086 18.259 16.413 30.897 34.673 36.984l202.257 1.156c201.102 0 203.413 0 210.348-2.312 13.524-4.507 25.548-16.542 30.050-30.050 2.312-6.935 2.312-9.246 2.312-210.348l-1.156-202.257c-5.952-17.859-18.686-28.574-36.984-34.673-4.623-1.156-62.411-1.156-202.257-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["copy"],"defaultCode":60026,"grid":24},"attrs":[],"properties":{"id":134,"order":133,"ligatures":"","prevSize":24,"code":60026,"name":"copy"},"setIdx":0,"setId":2,"iconIdx":135},{"icon":{"paths":["M730.438 339.792c-83.214 0-156.027 1.156-161.806 1.156-34.109 0-65.482 17.458-87.837 32.361-9.246 5.779-17.336 12.713-27.738 23.115-18.145 18.145-24.798 32.855-36.984 53.165-10.868 18.114-13.853 41.529-18.492 64.722-1.156 6.935-1.156 83.214-1.156 196.479v186.077l-57.788-57.788c-48.542-48.542-58.944-57.788-64.722-60.099-11.956-3.985-30.845-8.717-43.919 0-9.586 4.792-16.367 14.725-21.959 23.115-3.467 5.779-2.312 6.935-2.312 19.648s-1.156 12.713 2.312 19.648c11.503 19.172 204.501 209.613 217.282 217.282 6.935 3.467 6.935 2.312 19.648 2.312s12.713 1.156 19.648-2.312c11.517-6.911 210.083-204.038 216.126-216.126 3.467-6.935 3.467-8.090 3.467-20.804 0-19.243-4.6-25.404-13.869-34.673-9.365-9.365-22.221-16.36-40.451-12.713-4.623 1.156-10.402 3.467-13.869 4.623-5.779 2.312-16.181 11.558-64.722 60.099l-57.788 57.788v-187.233c0-166.429 1.156-188.388 2.312-196.479 5.381-21.526 12.869-32.184 24.271-47.386 10.654-14.204 30.389-21.755 49.698-26.582 8.090-1.156 26.582-2.312 160.65-2.312 107.485 0 152.56 0 157.183-1.156 9.897-3.299 17.12-5.563 24.271-12.713 10.849-10.849 21.982-37.527 9.246-56.632-4.88-7.318-11.937-17.847-20.804-20.804-3.467-1.156-9.246-3.467-12.713-4.623-4.623-1.156-49.698-1.156-157.183-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["corner-left-down"],"defaultCode":60030,"grid":24},"attrs":[],"properties":{"id":138,"order":149,"ligatures":"","prevSize":24,"code":60030,"name":"corner-left-down"},"setIdx":0,"setId":2,"iconIdx":139},{"icon":{"paths":["M446.122 292.406c-13.821 0-21.215 1.567-27.738 8.090-24.168 24.168-195.836 188.474-210.348 212.659-3.467 6.935-2.312 6.935-2.312 19.648 0 19.040 1.883 22.686 11.558 32.361 3.467 3.467 8.090 8.090 12.713 10.402 12.917 8.61 31.167 4.251 43.919 0 5.779-2.312 16.181-11.558 64.722-60.099l57.788-57.788v186.077c0 178.014-11.331 186.643 18.492 261.201 5.221 13.050 17.469 27.53 25.427 38.14 6.999 9.332 19.613 23.862 28.894 30.050 21.806 14.537 49.090 30.852 79.747 36.984 38.143 7.628 57.979 4.623 182.609 4.623 105.174 0 151.404 0 156.027-1.156 9.897-3.299 17.12-5.563 24.271-12.713 10.849-10.849 21.982-37.527 9.246-56.632-4.88-7.318-11.937-17.847-20.804-20.804-3.467-1.156-9.246-3.467-12.713-4.623-4.623-1.156-49.698-1.156-157.183-1.156-134.068 0-152.56-1.156-160.65-2.312-21.526-5.381-32.184-12.869-47.386-24.271-14.204-10.654-21.755-30.389-26.582-49.698-1.156-8.090-2.312-30.050-2.312-196.479v-187.233l57.788 57.788c48.542 48.542 58.944 57.788 64.722 60.099 13.305 4.435 27.3 6.31 42.763 1.156 8.038-2.679 18.010-15.216 21.959-23.115 3.467-6.935 3.467-8.090 3.467-20.804s0-13.869-3.467-20.804c-6.045-12.088-204.553-209.181-216.126-216.126-5.779-2.312-9.246-3.467-18.492-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["corner-left-up"],"defaultCode":60031,"grid":24},"attrs":[],"properties":{"id":139,"order":150,"ligatures":"","prevSize":24,"code":60031,"name":"corner-left-up"},"setIdx":0,"setId":2,"iconIdx":140},{"icon":{"paths":["M446.122 339.792c-115.576 0-152.56 0-157.183 1.156-19.295 6.432-41.714 26.054-35.828 55.476 5.314 21.258 17.999 32.582 38.14 39.296 4.623 1.156 49.698 1.156 157.183 1.156 134.068 0 152.56 1.156 160.65 2.312 21.526 5.381 32.184 12.869 47.386 24.271 14.204 10.654 21.755 30.389 26.582 49.698 1.156 8.090 2.312 30.050 2.312 196.479v187.233l-57.788-57.788c-48.542-48.542-58.944-57.788-64.722-60.099-11.956-3.985-30.845-8.717-43.919 0-9.586 4.792-16.367 14.725-21.959 23.115-3.467 5.779-2.312 6.935-2.312 19.648s-1.156 12.713 2.312 19.648c11.503 19.172 204.501 209.613 217.282 217.282 6.935 3.467 6.935 2.312 19.648 2.312s12.713 1.156 19.648-2.312c11.517-6.911 210.083-204.038 216.126-216.126 3.467-6.935 3.467-8.090 3.467-20.804 0-19.243-4.6-25.404-13.869-34.673-9.365-9.365-22.221-16.36-40.451-12.713-4.623 1.156-10.402 3.467-13.869 4.623-5.779 2.312-16.181 11.558-64.722 60.099l-57.788 57.788v-193.011c0-191.856-1.156-193.011-3.467-205.725-7.291-43.743-26.478-75.020-53.165-101.707-18.145-18.145-32.855-24.798-53.165-36.984-18.41-11.046-41.021-13.751-64.722-18.492-6.935-1.156-70.501-1.156-161.806-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["corner-right-down"],"defaultCode":60032,"grid":24},"attrs":[],"properties":{"id":140,"order":151,"ligatures":"","prevSize":24,"code":60032,"name":"corner-right-down"},"setIdx":0,"setId":2,"iconIdx":141},{"icon":{"paths":["M735.061 292.406c-13.821 0-21.215 1.567-27.738 8.090-24.168 24.168-195.836 188.474-210.348 212.659-3.467 6.935-2.312 6.935-2.312 19.648 0 19.040 1.883 22.686 11.558 32.361 3.467 3.467 8.090 8.090 12.713 10.402 12.917 8.61 31.167 4.251 43.919 0 5.779-2.312 16.181-11.558 64.722-60.099l57.788-57.788v187.233c0 166.429-1.156 188.388-2.312 196.479-3.322 13.284-6.506 23.699-13.869 33.517-3.467 4.623-8.090 12.713-12.713 16.181-15.106 11.329-25.676 18.843-47.386 24.271-8.090 1.156-26.582 2.312-160.65 2.312-107.485 0-152.56 0-157.183 1.156-20.428 6.81-44.35 24.427-38.14 55.476 4.154 16.614 12.935 26.345 25.427 34.673 3.467 2.312 10.402 3.467 13.869 4.623 4.623 1.156 48.542 1.156 162.962 1.156 153.716 0 156.027-1.156 168.74-3.467 29.43-4.905 51.468-15.82 72.813-30.050 9.246-6.935 17.336-11.558 28.894-23.115 22.765-22.765 33.708-43.817 46.23-75.124 5.279-13.199 6.183-27.447 9.246-42.763 1.156-6.935 1.156-75.124 1.156-197.634v-184.921l57.788 57.788c48.542 48.542 58.944 57.788 64.722 60.099 13.305 4.435 27.3 6.31 42.763 1.156 8.038-2.679 18.010-15.216 21.959-23.115 3.467-6.935 3.467-8.090 3.467-20.804s0-13.869-3.467-20.804c-6.045-12.088-204.553-209.181-216.126-216.126-5.779-2.312-9.246-3.467-18.492-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["corner-right-up"],"defaultCode":60033,"grid":24},"attrs":[],"properties":{"id":141,"order":152,"ligatures":"","prevSize":24,"code":60033,"name":"corner-right-up"},"setIdx":0,"setId":2,"iconIdx":142},{"icon":{"paths":["M446.122 292.406c-13.821 0-21.215 1.567-27.738 8.090-24.168 24.168-195.836 188.474-210.348 212.659-3.467 6.935-2.312 6.935-2.312 19.648s-1.156 12.713 2.312 19.648c11.503 19.172 204.501 209.613 217.282 217.282 6.935 3.467 6.935 2.312 19.648 2.312 19.040 0 22.686-1.883 32.361-11.558 8.697-8.697 18.899-23.396 15.025-42.763l-4.623-13.869c-2.312-5.779-11.558-16.181-60.099-64.722l-57.788-57.788h187.233c166.429 0 188.388 1.156 196.479 2.312 13.284 3.322 23.699 6.506 33.517 13.869 4.623 3.467 12.713 8.090 16.181 12.713 11.329 15.106 18.843 25.676 24.271 47.386 1.156 8.090 2.312 26.582 2.312 160.65 0 107.485 0 152.56 1.156 157.183 6.81 20.428 24.427 44.35 55.476 38.14 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-48.542 1.156-162.962 0-153.716-1.156-156.027-3.467-168.74-7.291-43.743-26.478-75.020-53.165-101.707-18.145-18.145-32.855-24.798-53.165-36.984-18.114-10.868-41.529-13.853-64.722-18.492-6.935-1.156-83.214-1.156-196.479-1.156h-186.077l57.788-57.788c48.542-48.542 57.788-58.944 60.099-64.722 3.985-11.956 8.717-30.845 0-43.919-6.846-13.691-21.216-25.427-41.607-25.427z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["corner-up-left"],"defaultCode":60034,"grid":24},"attrs":[],"properties":{"id":142,"order":153,"ligatures":"","prevSize":24,"code":60034,"name":"corner-up-left"},"setIdx":0,"setId":2,"iconIdx":143},{"icon":{"paths":["M735.061 292.406c-20.373 0-27.097 6.293-36.984 16.181-7.508 7.508-14.787 23.15-11.558 39.296 1.156 4.623 3.467 10.402 4.623 13.869 2.312 5.779 11.558 16.181 60.099 64.722l57.788 57.788h-184.921c-149.573 0-181.058-3.084-219.594 4.623-40.136 8.027-70.502 26.584-95.928 52.009-18.145 18.145-24.798 32.855-36.984 53.165-11.046 18.41-13.751 41.021-18.492 64.722-1.156 6.935-1.156 70.501-1.156 160.65 0 106.33 0 151.404 1.156 156.027 6.81 20.428 24.427 44.35 55.476 38.14 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-49.698 1.156-157.183 0-134.068 1.156-152.56 2.312-160.65 3.322-13.284 6.506-23.699 13.869-33.517 3.467-4.623 8.090-12.713 12.713-16.181 15.106-11.329 25.676-18.843 47.386-24.271 8.090-1.156 30.050-2.312 196.479-2.312h187.233l-57.788 57.788c-48.542 48.542-57.788 58.944-60.099 64.722-3.985 11.956-8.717 30.845 0 43.919 4.792 9.586 14.725 16.367 23.115 21.959 5.779 3.467 6.935 2.312 19.648 2.312s12.713 1.156 19.648-2.312c11.517-6.911 210.083-204.038 216.126-216.126 3.467-6.935 3.467-8.090 3.467-20.804s0-13.869-3.467-20.804c-6.045-12.088-204.553-209.181-216.126-216.126-5.779-2.312-9.246-3.467-18.492-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["corner-up-right"],"defaultCode":60035,"grid":24},"attrs":[],"properties":{"id":143,"order":154,"ligatures":"","prevSize":24,"code":60035,"name":"corner-up-right"},"setIdx":0,"setId":2,"iconIdx":144},{"icon":{"paths":["M587.124 291.251c160.65 0 294.718 1.156 302.808 1.156 29.357 0 53.001 9.164 73.968 19.648 28.955 14.477 50.639 32.845 69.345 57.788 13.445 17.926 20.971 37.403 30.050 60.099 2.312 5.779 4.623 16.181 5.779 23.115 2.312 11.558 1.156 23.115 1.156 224.217s1.156 212.659-1.156 224.217c-11.335 68.001-52.045 114.438-105.174 141.002-21.271 10.635-44.198 19.648-73.968 19.648-8.090 0-143.314 1.156-300.497 1.156s-293.562-1.156-301.652-1.156c-57.101 0-97.993-30.959-127.133-60.099-24.778-24.778-42.666-58.46-50.853-99.395-2.312-9.246-2.312-26.582-2.312-216.126 0-175.993-4.046-199.364 4.623-242.709 7.006-35.030 24.703-67.466 46.23-88.993l17.336-17.336c20.601-20.601 55.429-36.049 88.993-42.763 5.779-1.156 15.025-2.312 21.959-2.312s142.158-1.156 300.497-1.156zM974.302 503.91c0-73.117-27.892-96.13-79.747-115.576h-300.497c-165.273 0-303.964 1.156-307.431 1.156-31.612 0-55.049 26.519-68.19 46.23-5.451 8.176-8.81 19.061-11.558 30.050-1.156 6.935-2.312 16.181-2.312 38.14v28.894h769.734v-28.894zM974.302 629.887h-769.734v124.822c0 109.797 1.156 125.977 2.312 134.068 11.13 44.52 36.916 62.24 77.436 77.436h607.928c20.702-7.763 46.363-15.226 57.788-32.361 6.204-9.306 11.857-16.778 17.336-27.738 2.312-4.623 3.467-12.713 4.623-17.336 1.156-8.090 2.312-24.271 2.312-134.068v-124.822zM300.497 821.743c0-29.266 21.869-48.542 50.853-48.542 24.285 0 46.23 20.964 46.23 45.074 0 30.45-16.241 44.801-40.451 50.853-30.592 6.119-56.632-17.454-56.632-47.386zM588.28 773.201c-60.285 0-59.891-5.987-82.059 16.181-3.467 3.467-8.090 8.090-9.246 11.558-4.496 13.49-4.705 27.492 0 41.607 4.313 12.942 21.518 22.197 34.673 26.582 3.467 1.156 24.271 1.156 57.788 1.156s54.321 0 57.788-1.156c10.834-3.612 17.825-7.423 25.427-15.025 3.467-3.467 8.090-8.090 9.246-11.558 4.496-13.49 4.705-27.492 0-41.607-4.313-12.942-21.518-22.197-34.673-26.582-3.467-1.156-24.271-1.156-58.944-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["credit-card"],"defaultCode":60036,"grid":24},"attrs":[],"properties":{"id":144,"order":47,"ligatures":"","prevSize":24,"code":60036,"name":"credit-card"},"setIdx":0,"setId":2,"iconIdx":145},{"icon":{"paths":["M584.813 195.323c127.139 0 241.878 16.92 328.235 60.099 27.747 13.874 50.134 27.019 70.501 47.386 18.323 18.323 30.792 39.951 38.14 69.345 1.156 4.623 1.156 102.862 1.156 305.12s0 300.497-1.156 305.12c-7.332 29.326-19.852 51.058-38.14 69.345-58.078 58.078-150.273 80.522-249.643 97.084-77.588 12.931-187.735 13.797-268.135 2.312-21.275-3.040-54.035-6.574-73.968-11.558-9.246-2.312-24.271-5.779-34.673-8.090s-24.271-8.090-33.517-10.402c-23.142-5.786-47.035-15.815-65.878-26.582-43.28-24.731-86.058-50.675-99.395-104.018-2.312-8.090-1.156-18.492-1.156-313.21s-1.156-305.12 1.156-313.21c10.537-42.15 37.886-64.21 69.345-86.682 28.307-20.219 61.122-30.867 95.928-43.919 33.094-12.409 66.703-17.733 105.174-25.427 24.358-4.872 53.614-6.124 78.591-9.246 9.246-1.156 25.427-2.312 35.828-2.312s30.050-1.156 41.607-1.156zM598.682 293.562h-53.165c-90.938 0-174.553 21.974-239.242 49.698-15.139 6.487-31.018 17.149-40.451 26.582l-9.246 9.246c-3.467 3.467-3.467 5.779-3.467 9.246 0 14.75 19.122 23.876 28.894 31.205 27.774 20.83 67.589 31.922 106.33 41.607 64.201 16.050 116.078 21.959 201.102 21.959 62.746 0 82.694-0.299 129.445-8.090 42.532-7.088 86.965-13.661 122.51-28.894 25.241-10.818 54.211-20.694 71.657-38.14 5.154-5.154 12.713-12.145 12.713-19.648 0-7.478-7.576-14.511-12.713-19.648-10.55-10.55-25.312-18.444-41.607-25.427-78.809-33.775-158.52-49.698-272.758-49.698zM253.111 515.467c-1.156 0-1.156 33.517-1.156 82.059v82.059c3.992 5.322 6.657 10.124 12.713 16.181 3.467 3.467 12.713 9.246 17.336 12.713 27.774 20.83 67.589 31.922 106.33 41.607 64.201 16.050 116.078 21.959 201.102 21.959 94.017 0 151.557-7.308 223.061-27.738 30.265-8.647 60.074-21.251 84.37-35.828 13.817-8.29 21.638-17.677 30.050-28.894v-82.059c0-58.944 0-82.059-1.156-82.059-8.501 0-20.786 9.404-31.205 13.869-107.185 45.936-278.043 65.454-428.786 43.919-74.421-10.633-142.611-23.918-198.79-52.009-6.935-3.467-13.869-5.779-13.869-5.779zM253.111 804.406c-1.156 0-1.156 25.427-1.156 79.747 0 52.009 0 82.059 1.156 84.37 17.656 35.314 65.454 49.17 105.174 62.411 49.249 16.416 102.215 22.273 161.806 28.894 11.558 1.156 38.14 1.156 69.345 1.156 94.017 0 151.557-7.308 223.061-27.738 20.621-5.892 40.908-11.653 58.944-21.959 8.090-4.623 20.804-9.246 26.582-13.869 36.51-29.209 28.894-20.661 28.894-113.264 0-54.321 0-79.747-1.156-79.747-8.501 0-20.786 9.404-31.205 13.869-76.453 32.766-164.982 44.717-269.291 50.853-54.073 2.254-113.832-0.41-159.494-6.935-21.275-3.040-54.035-6.574-73.968-11.558-9.246-2.312-24.271-5.779-34.673-8.090s-24.271-8.090-33.517-10.402c-19.032-4.757-45.414-15.771-60.099-23.115-4.623-2.312-9.246-4.623-10.402-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["database"],"defaultCode":60040,"grid":24},"attrs":[],"properties":{"id":148,"order":147,"ligatures":"","prevSize":24,"code":60040,"name":"cache"},"setIdx":0,"setId":2,"iconIdx":149},{"icon":{"paths":["M591.747 243.865l399.892 1.156c43.825 10.957 67.531 36.659 78.591 80.903v510.844c-7.416 33.372-23.776 58.747-53.165 70.501-5.779 2.312-13.869 6.935-19.648 8.090-9.246 2.312-10.402 3.467-112.108 3.467h-102.862v94.772h28.894c25.427 0 28.894 1.156 34.673 3.467 18.455 6.151 32.361 21.785 32.361 46.23 0 24.098-16.408 38.986-34.673 45.074-5.779 1.156-30.050 2.312-254.266 2.312s-248.488-1.156-254.266-2.312c-19.070-6.357-34.673-20.68-34.673-46.23 0-22.549 15.358-39.407 32.361-45.074 5.779-2.312 9.246-3.467 34.673-3.467h28.894v-94.772h-102.862c-101.707 0-102.862-1.156-112.108-3.467-39.103-7.821-64.214-39.896-72.813-78.591v-510.844c3.516-14.063 6.588-29.703 15.025-38.14 6.426-6.426 10.401-16.565 18.492-21.959l13.869-9.246c8.312-5.542 18.337-7.763 28.894-10.402 6.935-1.156 56.632-2.312 406.826-2.312zM974.302 340.948h-769.734v480.795h769.734v-480.795zM589.436 918.826h-95.928v94.772h191.856v-94.772h-95.928z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["device-desktop"],"defaultCode":60041,"grid":24},"attrs":[],"properties":{"id":149,"order":101,"ligatures":"","prevSize":24,"code":60041,"name":"device-desktop"},"setIdx":0,"setId":2,"iconIdx":150},{"icon":{"paths":["M588.28 195.323c27.121 0 41.601 18.475 48.542 39.296 1.156 3.467 1.156 17.336 1.156 31.205v25.427h149.093c143.314 0 147.937 0 153.716 2.312 3.467 1.156 8.090 4.623 11.558 6.935s30.050 26.582 58.944 55.476c42.763 43.919 52.009 53.165 54.321 58.944l4.623 13.869c2.033 10.165-0.969 21.399-3.467 28.894-3.756 9.389-111.888 113.502-116.731 116.731-28.879 9.627-16.382 6.935-165.273 6.935h-146.781v95.928h27.738c33.515 0 29.864-0.67 45.074 6.935 9.105 4.554 17.332 16.169 20.804 26.582 2.312 6.935 2.312 9.246 2.312 110.953 0 102.862 0 104.018-2.312 110.953-5.282 15.842-15.351 25.921-31.205 31.205-6.935 2.312-9.246 2.312-34.673 2.312h-27.738v95.928h26.582c19.648 0 27.738 1.156 33.517 2.312 19.848 6.617 34.673 19.202 34.673 46.23 0 27.773-13.881 39.299-34.673 46.23-5.779 1.156-20.804 2.312-108.641 2.312s-102.862-1.156-108.641-2.312c-19.848-6.617-34.673-19.202-34.673-46.23 0-39.798 25.015-48.542 68.19-48.542h26.582v-95.928h-251.955c-24.358-12.178-11.076-2.985-70.501-62.411-50.853-50.853-54.321-54.321-57.788-62.411s-3.467-8.090-3.467-19.648 0-11.558 3.467-19.648c5.596-13.057 108.814-115.815 119.043-120.199l9.246-4.623h251.955v-95.928h-73.968c-80.753 0-68.398 1.471-93.616-6.935-6.129-2.043-18.763-14.682-20.804-20.804-8.606-25.818-4.623-40.171-4.623-123.666 0-93.616 0-98.239 2.312-104.018 3.548-10.641 13.064-22.134 21.959-26.582 21.728-10.864 5.051-8.090 92.46-8.090h76.28v-25.427c0-39.169 4.057-49.706 26.582-64.722 3.467-2.312 9.246-4.623 11.558-4.623s6.935-1.156 9.246-1.156zM907.269 388.334h-462.302v95.928h461.147c15.884-16.093 32.048-31.905 48.542-47.386-16.093-15.884-31.905-32.048-47.386-48.542zM478.483 774.357h-159.494c-15.542 15.339-30.615 30.778-45.398 46.493l-0.832 0.893c15.121 16.085 30.513 31.898 46.23 47.386h317.833v-94.772h-158.339z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["directions"],"defaultCode":60046,"grid":24},"attrs":[],"properties":{"id":154,"order":100,"ligatures":"","prevSize":24,"code":60046,"name":"directions"},"setIdx":0,"setId":2,"iconIdx":155},{"icon":{"paths":["M251.955 581.345c29.307 0 46.182 11.525 63.567 23.115 19.516 13.012 32.361 40.632 32.361 72.813 0 32.495-12.274 59.421-32.361 72.813-17.11 11.407-34.711 23.115-63.567 23.115-52.283 0-77.492-30.767-92.46-68.19-2.312-9.246-2.312-12.713-2.312-27.738 0-36.574 11.971-52.423 30.050-70.501 14.643-14.643 35.82-25.427 64.722-25.427zM591.747 581.345c21.68 0 29.801 3.086 43.919 11.558 28.533 16.304 48.542 39.924 48.542 84.37 0 44.342-19.975 68.046-48.542 84.37-15.196 9.118-22.37 10.402-46.23 10.402-38.209 0-51.191-10.739-70.501-30.050-16.192-16.192-24.271-33.278-24.271-64.722 0-24.269 1.924-28.12 9.246-42.763 2.312-4.623 4.623-10.402 6.935-13.869 7.481-11.221 26.031-26.785 39.296-31.205l13.869-4.623c3.467-1.156 8.090-2.312 9.246-2.312s9.246-1.156 18.492-1.156zM926.916 581.345c-29.901 0-45.5 11.072-63.567 23.115-19.451 12.968-32.361 41.070-32.361 72.813 0 57.039 39.385 95.928 95.928 95.928 17.069 0 30.003-3.444 41.607-9.246 30.886-15.443 53.165-40.116 53.165-86.682 0-29.414-7.22-42.035-18.492-58.944-14.364-21.546-41.168-36.984-76.28-36.984z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["dots"],"defaultCode":60053,"grid":24},"attrs":[],"properties":{"id":161,"order":193,"ligatures":"","prevSize":24,"code":60053,"name":"dots"},"setIdx":0,"setId":2,"iconIdx":162},{"icon":{"paths":["M591.747 243.865c26.239 0 38.528 19.658 45.074 39.296 1.156 4.623 1.156 86.682 1.156 238.086v231.151l82.059-82.059c77.436-76.28 83.214-82.059 90.149-85.526s8.090-2.312 19.648-2.312c16.865 0 22.322 1.519 30.050 9.246 9.903 9.903 18.492 20.36 18.492 40.451 0 5.779-2.312 11.558-4.623 16.181-7.42 14.843-251.765 257.619-263.512 264.668-10.45 6.967-30.626 7.321-41.607 0-11.857-7.114-256.091-249.825-263.512-264.668-2.312-4.623-4.623-10.402-4.623-16.181 0-19.882 8.532-30.491 18.492-40.451 7.68-7.68 13.257-9.246 30.050-9.246 11.558 0 12.713-1.156 19.648 2.312s12.713 9.246 90.149 85.526l82.059 82.059v-231.151c0-151.404 0-233.463 1.156-238.086 7.373-22.118 20.371-39.296 49.698-39.296zM205.725 870.284c-16.839 0-23.243 2.44-31.205 10.402-6.15 6.15-13.599 12.788-16.181 23.115-2.312 8.090-2.312 10.402-2.312 70.501 0 73.624 0.277 55.432 8.090 86.682 5.966 23.866 22.827 43.631 38.14 58.944 14.181 14.181 33.725 27.78 56.632 32.361 5.779 1.156 13.869 3.467 18.492 4.623 5.779 1.156 70.501 1.156 312.054 1.156 253.111 0 306.275 0 313.21-1.156 62.15-15.537 102.375-51.215 117.887-113.264 1.156-6.935 2.312-16.181 2.312-69.345 0-60.099 0-62.411-2.312-70.501-2.58-10.323-10.020-16.955-16.181-23.115-7.487-7.487-12.641-9.246-28.894-9.246-30.263 0-37.556 15.448-48.542 34.673v57.788c-1.156 56.632-1.156 60.099-3.467 65.878-5.269 15.807-17.29 25.796-33.517 31.205h-600.993c-16.465-5.489-28.137-15.065-33.517-31.205-2.312-5.779-2.312-9.246-3.467-65.878v-57.788c-9.528-16.674-20.301-35.828-46.23-35.828z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["download"],"defaultCode":60054,"grid":24},"attrs":[],"properties":{"id":162,"order":148,"ligatures":"","prevSize":24,"code":60054,"name":"download"},"setIdx":0,"setId":2,"iconIdx":163},{"icon":{"paths":["M926.916 196.479c34.273 0 58.293 10.203 78.591 25.427 36.346 27.26 64.722 59.533 64.722 122.51 0 32.296-6.116 43.607-15.025 65.878-2.312 5.779-6.935 13.869-10.402 18.492-3.467 5.779-17.336 20.804-41.607 45.074-19.648 20.804-114.42 116.731-210.348 212.659-145.625 145.625-175.675 175.675-181.454 177.986-3.467 2.312-9.246 3.467-12.713 4.623-4.623 1.156-28.894 1.156-80.903 1.156s-77.436 0-82.059-1.156c-19.91-6.636-31.405-17.936-38.14-38.14-1.156-4.623-1.156-30.050-1.156-82.059s0-76.28 1.156-80.903c1.156-3.467 2.312-9.246 4.623-12.713 2.312-5.779 32.361-35.828 177.986-181.454 95.928-95.928 191.856-190.7 212.659-210.348 24.271-24.271 39.296-38.14 45.074-41.607 8.692-6.521 25.195-15.834 35.828-18.492 11.315-2.828 18.726-4.103 30.050-6.935 4.623-1.156 15.025 0 23.115 0zM974.302 345.571c0-31.186-21.832-53.165-53.165-53.165-27.995 0-32.234 11.43-50.853 30.050l-18.492 18.492 73.968 73.968 18.492-18.492c18.521-18.521 30.050-23.288 30.050-50.853zM321.3 388.334c47.703 0 44.061-2.169 64.722 18.492 7.68 7.68 9.246 13.257 9.246 30.050 0 28.237-14.803 37.715-34.673 46.23l-34.673 1.156c-42.887 0-42.527-1.392-60.099 16.181-8.295 8.295-9.466 12.435-12.713 25.427-1.156 4.623-1.156 78.591-1.156 223.061 0 141.002 0 219.594 1.156 224.217 4.010 16.038 12.17 32.18 26.582 36.984 25.966 8.657 78.695 4.623 238.086 4.623 158.877 0 211.486 3.858 236.93-4.623 11.176-3.726 21.85-19.32 25.427-30.050 1.156-4.623 2.312-12.713 2.312-39.296l1.156-34.673c8.204-19.139 18.509-34.673 46.23-34.673 16.865 0 22.322 1.519 30.050 9.246 19.939 19.939 18.492 17.599 18.492 69.345 0 68.254-17.796 101.184-60.099 132.912-16.060 12.046-35.018 19.735-57.788 25.427-6.935 1.156-48.542 1.156-242.709 1.156-188.388 0-236.93 0-242.709-1.156-63.163-15.791-104.642-53.969-117.887-120.199-1.156-9.246-1.156-47.386-1.156-239.242s0-228.84 1.156-238.086c10.317-51.585 40.607-87.915 82.059-108.641 25.279-12.638 39.792-13.869 82.059-13.869zM782.447 409.138l-288.939 288.939v75.124h76.28c98.777-99.779 192.551-193.919 286.612-287.771l1.171-1.168-75.124-75.124z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["edit"],"defaultCode":60056,"grid":24},"attrs":[],"properties":{"id":164,"order":20,"ligatures":"","prevSize":24,"code":60056,"name":"edit"},"setIdx":0,"setId":2,"iconIdx":165},{"icon":{"paths":["M492.352 821.743c-27.195 0-47.386-20.51-47.386-47.386 0-9.010 3.905-19.368 6.935-25.427 2.312-3.467 73.968-77.436 203.413-206.88l201.102-201.102h-60.099c-67.761 0-82.53 7.383-105.174-26.582-4.329-6.495-6.643-19.947-4.623-30.050l4.623-13.869c4.317-12.953 18.839-19.821 30.050-25.427 3.467-1.156 31.205-1.156 135.223-1.156l130.6 1.156c16.4 7.029 27.835 14.159 33.517 31.205 2.312 6.935 2.312 8.090 2.312 138.691l-1.156 130.6c-5.728 11.455-13.043 25.922-25.427 30.050l-13.869 4.623c-31.58 6.316-49.299-16.897-55.476-41.607-1.156-4.623-1.156-33.517-1.156-68.19v-60.099l-201.102 201.102c-129.445 129.445-203.413 201.102-206.88 203.413-6.056 3.028-16.4 6.935-25.427 6.935zM417.228 388.334c-72.813 0-134.068 1.156-137.535 1.156s-11.558 3.467-17.336 4.623c-22.975 4.595-40.399 16.72-56.632 28.894-19.602 14.701-38.343 42.621-43.919 70.501-1.156 5.779-3.467 13.869-4.623 18.492-1.156 5.779-1.156 80.903-1.156 236.93s0 232.307 1.156 238.086c2.785 11.144 5.451 27.082 10.402 36.984 9.463 18.924 21.874 38.653 38.14 50.853 15.996 11.997 27.5 21.881 48.542 28.894 6.935 2.312 17.336 3.467 23.115 4.623 9.246 1.156 39.296 2.312 239.242 2.312 181.021 0 221.929 3.75 255.422-4.623 54.374-13.594 93.817-59.949 105.174-116.731 1.156-9.246 1.156-31.205 1.156-141.002 0-129.445 0-130.6-2.312-137.535-6.076-18.226-21.205-33.517-45.074-33.517-29.73 0-39.839 19.58-49.698 39.296v263.512c-7.11 14.22-18.42 26.944-34.673 32.361h-459.991c-14.845-4.948-27.343-17.307-32.361-32.361v-459.991c5.375-16.129 18.745-26.504 32.361-34.673h263.512c19.691-9.846 39.296-19.965 39.296-49.698 0-24.080-15.226-38.978-33.517-45.074-6.935-2.312-8.090-2.312-138.691-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["external-link"],"defaultCode":60057,"grid":24},"attrs":[],"properties":{"id":165,"order":90,"ligatures":"","prevSize":24,"code":60057,"name":"external-link"},"setIdx":0,"setId":2,"iconIdx":166},{"icon":{"paths":["M596.37 292.406c47.124 0 51.743 4.013 84.37 8.090 50.294 6.287 93.797 24.361 132.912 43.919l25.427 12.713c14.1 7.050 16.787 11.904 32.361 20.804 18.402 10.515 31.825 22.224 47.386 34.673 5.779 4.623 19.648 16.181 28.894 25.427l33.517 33.517c9.246 9.246 21.959 25.427 30.050 34.673 21.133 24.153 43.166 53.632 61.255 82.059 14.108 22.171 31.382 47.741 41.607 68.19 4.623 8.090 4.623 8.090 4.623 20.804 0 23.522-9.758 28.659-20.804 48.542-25.137 45.246-53.004 84.023-86.682 122.51-8.090 9.246-20.804 25.427-30.050 34.673l-33.517 33.517c-20.472 20.472-28.304 23.587-48.542 40.451-41.133 34.28-94.321 59.207-149.093 79.747-30.002 11.25-66.057 18.187-100.551 23.115-8.090 1.156-28.894 2.312-48.542 2.312-37.759 0-53.936-0.128-80.903-4.623-58.485-9.748-110.46-25.18-154.871-47.386-9.246-4.623-20.804-10.402-25.427-13.869s-17.336-9.246-25.427-15.025c-48.719-34.8-94.662-70.759-134.068-116.731-27.27-31.815-50.189-60.871-73.968-98.239-14.108-22.171-31.382-47.741-41.607-68.19-4.623-8.090-4.623-8.090-4.623-20.804s0-12.713 4.623-20.804c10.165-20.33 27.542-46.087 41.607-68.19 27.721-43.563 59.198-80.467 92.46-117.887 22.581-25.404 48.962-48.279 73.968-67.034 4.623-3.467 11.558-10.402 17.336-13.869s16.181-10.402 24.271-16.181 20.804-11.558 25.427-15.025c19.861-14.895 51.917-28.537 77.436-35.828 37.496-10.714 79.814-22.63 123.666-28.894 10.402-1.156 28.894-1.156 55.476-1.156zM596.37 389.49h-36.984c-18.899 0-30.685 4.384-48.542 6.935-53.627 7.662-94.78 31.788-135.223 52.009-4.623 2.312-12.713 9.246-19.648 13.869-51.636 34.424-92.289 79.74-132.912 127.133-22.286 26.001-40.558 60.259-58.944 87.837 13.446 20.168 34.511 56.719 52.009 78.591 21.68 27.099 39.729 50.131 63.567 73.968 39.562 39.562 78.716 68.83 130.6 94.772 52.938 26.469 112.175 41.607 191.856 41.607 45.67 0 80.78-10.531 116.731-20.804 19.967-5.705 37.606-16.612 55.476-24.271 20.397-8.741 31.245-17.363 48.542-28.894 28.947-19.298 50.72-36.851 76.28-62.411 9.246-9.246 23.115-26.582 31.205-35.828s23.115-26.582 32.361-38.14c16.678-20.846 32.188-50.622 46.23-69.345l5.779-9.246c-39.115-58.673-81.963-124.304-134.068-169.896-70.828-61.974-152.324-117.887-284.316-117.887zM588.28 532.804c57.434 0 92.936 26.831 117.887 60.099 16.185 21.581 26.582 45.934 26.582 84.37 0 58.659-25.973 92.293-60.099 117.887-21.176 15.882-45.689 25.427-83.214 25.427-69.11 0-107.384-35.625-130.6-82.059-8.502-17.006-13.869-36.337-13.869-61.255 0-66.115 38.772-108.379 83.214-130.6 16.354-8.177 36.634-13.869 60.099-13.869zM592.903 629.887h-10.402c-15.414 0-33.124 15.003-36.984 26.582-10.283 30.849 4.833 68.19 36.984 68.19h13.869c20.319 0 40.451-20.723 40.451-40.451v-13.869c0-11.486-6.053-18.766-12.713-25.427-7.704-7.704-17.46-15.025-31.205-15.025z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye"],"defaultCode":60058,"grid":24},"attrs":[],"properties":{"id":166,"order":45,"ligatures":"","prevSize":24,"code":60058,"name":"eye"},"setIdx":0,"setId":2,"iconIdx":167},{"icon":{"paths":["M588.28 291.251c202.257 0 315.521 0 320.144 1.156 42.046 10.513 73.968 41.536 73.968 93.616 0 17.951-3.096 29.308-9.246 41.607-2.312 4.623-5.779 11.558-8.090 13.869s-54.321 60.099-116.731 129.445l-114.42 124.822v162.962c0 158.339 0 162.962-2.312 169.896-4.683 18.734-22.191 33.517-45.074 33.517-11.347 0-18.533-3.488-25.427-6.935-2.312-1.156-49.698-35.828-104.018-76.28-85.526-64.722-99.395-75.124-102.862-80.903-2.312-3.467-5.779-10.402-6.935-13.869-2.312-6.935-2.312-10.402-2.312-97.084v-91.305l-107.485-117.887c-58.944-64.722-110.953-122.51-116.731-128.289-12.146-14.574-24.271-30.781-24.271-54.321v-18.492c0-5.779 2.312-13.869 3.467-17.336s2.312-10.402 4.623-15.025c9.964-19.928 25.887-37.631 47.386-46.23 5.779-2.312 13.869-5.779 17.336-5.779s146.781-1.156 318.989-1.156zM589.436 388.334h-293.562l11.558 12.713c0.168 0.168 225.047 247.944 228.84 254.266 9.762 19.523 5.779 43.181 5.779 107.485v83.214l46.23 34.673c25.427 18.492 47.386 35.828 47.386 35.828s1.156-53.165 1.156-119.043c0-70.501 0-122.51 1.156-127.133s2.312-10.402 4.623-15.025c3.793-6.322 228.672-254.099 228.84-254.266l11.558-12.713h-293.562z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["filter"],"defaultCode":60069,"grid":24},"attrs":[],"properties":{"id":177,"order":159,"ligatures":"","prevSize":24,"code":60069,"name":"filter"},"setIdx":0,"setId":2,"iconIdx":178},{"icon":{"paths":["M428.786 753.553c-60.342 0-93.709 16.906-128.289 41.607v328.235c-7.044 10.566-13.819 25.796-26.582 30.050l-13.869 4.623c-31.58 6.316-49.299-16.897-55.476-41.607-1.156-5.779-1.156-139.847-1.156-392.957 0-327.079 0-386.023 1.156-392.957 3.379-13.515 6.248-16.65 16.181-26.582 31.397-31.397 69.81-52.55 116.731-68.19 17.148-5.715 39.475-11.558 60.099-11.558h28.894c63.221 0 106.896 18.831 146.781 42.763 21.053 12.632 45.375 32.662 62.411 49.698 3.467 3.467 10.402 8.090 13.869 10.402l13.869 9.246c21.201 14.135 54.667 24.271 86.682 24.271 62.418 0 107.402-20.72 138.691-52.009 17.47-17.47 50.57-23.398 70.501-3.467 7.103 7.103 12.296 14.513 15.025 25.427 1.156 6.935 1.156 41.607 1.156 226.528 0 152.56 0 220.749-1.156 225.372-3.829 11.488-6.42 19.929-16.181 27.738-25.814 25.814-64.451 50.377-104.018 63.567-24.025 8.008-53.238 17.336-84.37 17.336-83.604 0-143.889-26.436-191.856-62.411-11.672-8.754-34.384-30.974-46.23-40.451-11.519-9.216-36.909-19.849-50.853-25.427-15.006-6.003-30.327-9.246-52.009-9.246zM425.318 320.144c-58.742 0-90.572 17.143-124.822 41.607v160.65c0 87.837 1.156 159.494 1.156 159.494 16.204-5.401 35.472-15.351 54.321-18.492 22.991-3.831 32.342-5.779 64.722-5.779 69.527 0 109.113 16.695 152.56 42.763 21.053 12.632 45.375 32.662 62.411 49.698 3.467 3.467 10.402 8.090 13.869 10.402l13.869 9.246c21.201 14.135 54.667 24.271 86.682 24.271 28.418 0 47.653-3.171 69.345-10.402 24.199-8.067 40.093-19.895 58.944-31.205v-321.3c-16.197 6.073-32.717 15.277-52.009 18.492-16.683 2.781-37.837 8.090-56.632 8.090-83.604 0-143.889-26.436-191.856-62.411-11.672-8.754-34.384-30.974-46.23-40.451-11.519-9.216-36.909-19.849-50.853-25.427-17.393-6.958-29.132-9.246-55.476-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["flag"],"defaultCode":60070,"grid":24},"attrs":[],"properties":{"id":178,"order":158,"ligatures":"","prevSize":24,"code":60070,"name":"flag"},"setIdx":0,"setId":2,"iconIdx":179},{"icon":{"paths":["M346.727 243.865l110.953 1.156 6.935 2.312c6.935 3.467 12.713 9.246 76.28 72.813l69.345 68.19h164.117c141.002 0 166.429 1.156 175.675 2.312 33.020 6.604 56.073 17.933 76.28 38.14 20.657 20.657 36.025 43.745 42.763 77.436 2.312 9.246 1.156 23.115 1.156 219.594v210.348l-2.312 11.558c-9.327 55.964-48.886 88.668-95.928 107.485-5.779 2.312-15.025 4.623-20.804 5.779-10.402 2.312-30.050 2.312-361.752 2.312s-351.35 0-361.752-2.312c-41.473-8.295-70.921-30.224-92.46-58.944-11.601-15.469-21.215-35.578-25.427-56.632-2.312-9.246-1.156-23.115-1.156-292.406 0-271.603-1.156-283.16 1.156-292.406 2.62-13.096 8.717-26.681 13.869-36.984 20.19-40.379 53.493-67.331 104.018-77.436 8.090-1.156 28.894-2.312 119.043-2.312zM334.014 340.948h-91.305c-18.993 6.331-30.526 16.455-36.984 35.828v552.451c5.189 12.109 10.679 25.904 23.115 30.050 3.467 1.156 9.246 3.467 12.713 4.623 5.779 1.156 45.074 2.312 347.883 2.312 325.262 0 330.033 3.252 360.596-6.935 12.501-4.167 17.88-17.833 23.115-30.050v-409.138c-8.879-17.756-17.54-24.883-34.673-34.673h-177.986c-161.806 0-180.298-1.156-184.921-2.312-3.467-1.156-8.090-3.467-10.402-4.623s-34.673-33.517-71.657-70.501l-67.034-67.034h-92.46z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folder"],"defaultCode":60077,"grid":24},"attrs":[],"properties":{"id":184,"order":99,"ligatures":"","prevSize":24,"code":60077,"name":"folder"},"setIdx":0,"setId":2,"iconIdx":185},{"icon":{"paths":["M515.467 243.865l85.526 1.156 8.090 2.312c6.935 3.467 11.558 8.090 52.009 48.542l43.919 43.919h120.199c131.638 0 109.615-2.069 145.625 6.935 10.304 2.576 26.677 12.006 34.673 17.336 23.847 15.897 41.032 38.143 54.321 64.722 5.505 11.010 7.707 26.978 10.402 40.451 1.156 8.090 1.156 65.878 1.156 191.856 0 210.044 3.071 159.923-9.246 209.192-3.431 13.725-8.946 20.301-16.181 32.361-3.467 5.779-10.402 15.025-17.336 21.959s-16.181 12.713-20.804 16.181c-26.785 20.087-50.594 25.427-99.395 25.427h-30.050v30.050c0 69.84-19.826 103.699-57.788 134.068-15.946 12.756-37.718 21.275-58.944 26.582-8.090 2.312-28.894 2.312-261.201 2.312-176.831 0-255.422 0-263.512-1.156-22.341-4.468-40.056-9.627-57.788-18.492-18.195-9.098-36.513-29.92-47.386-46.23-10.032-15.049-16.762-34.684-21.959-55.476-1.156-5.779-1.156-56.632-1.156-240.397 0-253.218-4.757-215.591 6.935-262.357 12.4-49.596 60.563-86.774 112.108-97.084 6.935-1.156 19.648-2.312 41.607-2.312h31.205v-30.050c0-20.804 0-33.517 1.156-40.451 10.141-50.704 41.26-87.086 82.059-107.485 10.194-5.097 24.997-8.561 36.984-11.558 6.935-1.156 26.582-2.312 94.772-2.312zM397.58 834.456c5.223 16.233 19.18 27.958 34.673 34.673h506.221c16.906-9.66 25.645-16.616 34.673-34.673l1.156-177.986c0-175.675 0-177.986-2.312-186.077-3.702-14.809-16.423-27.51-31.205-31.205-6.935-2.312-9.246-2.312-132.912-2.312-108.641 0-127.133 0-132.912-1.156-21.185-7.062-23.092-14.218-61.255-50.853l-43.919-43.919h-67.034c-66.001 0-65.249-2.625-82.059 5.779-9.332 4.666-17.965 19.156-23.115 27.738v459.991zM273.914 532.804c-30.543 0-29.629 1.786-45.074 6.935-12.295 4.098-17.392 17.446-23.115 28.894l-1.156 226.528c0 223.061 0 225.372 2.312 233.463 3.702 14.809 16.423 27.51 31.205 31.205 8.090 2.312 10.402 2.312 257.734 2.312l250.799-1.156c17.756-8.879 24.883-17.54 34.673-34.673v-60.099h-174.519c-149.093 0-175.675 0-184.921-1.156-63.045-12.609-107.599-57.194-120.199-120.199-1.156-9.246-1.156-33.517-1.156-161.806v-150.248h-26.582z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["folders"],"defaultCode":60078,"grid":24},"attrs":[],"properties":{"id":185,"order":98,"ligatures":"","prevSize":24,"code":60078,"name":"folders"},"setIdx":0,"setId":2,"iconIdx":186},{"icon":{"paths":["M589.436 316.677c50.348-37.762 103.388-71.657 191.856-71.657 50.348 0 81.862 10.323 116.731 24.271 36.123 14.449 65.499 37.761 91.305 63.567 46.706 46.706 80.903 108.33 80.903 201.102 0 38.034-4.85 60.781-13.869 87.837-12.342 37.025-27.413 65.719-49.698 92.46-11.701 15.602-340.022 337.711-390.646 388.334-4.846 4.846-17.824 8.090-26.582 8.090-8.749 0-21.737-3.245-26.582-8.090-23.364-23.364-320.955-316.332-343.26-338.637-50.614-50.614-68.187-67.027-93.616-130.6-12.794-31.988-18.492-64.089-18.492-109.797 0-38.464 7.757-58.358 16.181-87.837 18.331-64.162 64.878-111.441 114.42-144.47 31.029-20.686 69.432-36.613 113.264-43.919 6.935-1.156 17.336-3.467 24.271-3.467h27.738c60.201 0 104.167 18.812 142.158 41.607 15.56 9.336 31.007 20.138 43.919 31.205zM395.269 339.792c-6.935 0-16.181 1.156-18.492 1.156-34.811 0-66.235 18.707-88.993 32.361-14.469 8.682-24.344 20.876-35.828 32.361-34.24 34.24-65.2 120.163-36.984 190.7 5.316 13.291 11.338 30.527 19.648 41.607 21.636 28.848 77.205 82.047 187.233 190.7 92.46 91.305 167.585 165.273 167.585 165.273 2.892-2.852 335.481-330.961 342.104-339.792 20.433-27.243 33.367-58.192 41.607-99.395 1.156-5.779 1.156-15.025 1.156-21.959 0-37.158-6.626-59.56-20.804-84.37-12.072-21.125-18.98-34.005-35.828-50.853-16.821-16.821-29.717-23.751-50.853-35.828-26.237-14.992-52.036-20.804-92.46-20.804-32.454 0-56.127 7.967-78.591 20.804-27.341 15.624-45.209 28.593-64.722 52.009-11.333 13.6-20.371 23.115-41.607 23.115-33.326 0-40.417-28.174-60.099-43.919-34.877-27.902-70.876-53.165-134.068-53.165z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["heart"],"defaultCode":60094,"grid":24},"attrs":[],"properties":{"id":200,"order":160,"ligatures":"","prevSize":24,"code":60094,"name":"heart"},"setIdx":0,"setId":2,"iconIdx":201},{"icon":{"paths":["M588.28 195.323c8.602 0 16.421 3.548 23.115 5.779 12.902 5.162 445.62 439.892 454.212 454.212 15.448 23.173-2.813 58.726-20.804 64.722-14.052 4.684-17.876 5.779-43.919 5.779h-25.427v152.56c0 137.535 0 152.56-2.312 161.806-3.978 19.891-12.371 41.151-23.115 55.476-7.519 10.025-21.078 25.609-31.205 32.361-3.467 2.312-9.246 8.090-13.869 10.402-12.059 6.030-27.479 14.789-42.763 17.336l-13.869 2.312h-258.889c-276.835 0-239.355 4.884-286.628-6.935-45.606-11.402-74.864-50.206-91.305-91.305-2.312-5.779-4.623-13.869-5.779-19.648-2.312-9.246-2.312-24.271-2.312-161.806v-152.56h-25.427c-39.169 0-49.706-4.057-64.722-26.582-6.892-10.337-7.205-33.11 0-43.919 7.196-11.992 445.68-451.262 453.056-454.212 5.631-3.754 14.012-5.779 21.959-5.779zM878.375 665.716c7.182-14.41 14.638-27.798 30.050-33.517l-318.989-318.989-318.989 318.989c15.404 5.728 22.875 19.099 30.050 33.517v179.142c0 168.74 0 180.298 2.312 184.921 8.024 16.051 16.918 23.596 34.673 31.205h503.91c10.467-4.484 25.462-11.63 30.050-20.804 1.156-2.312 3.467-8.090 4.623-10.402 2.312-4.623 2.312-16.181 2.312-184.921v-179.142zM589.436 628.731c87.837 0 102.862 1.156 108.641 2.312 19.116 6.372 26.845 16.406 34.673 34.673l1.156 105.174c0 102.862 0 106.33-2.312 113.264-4.045 16.182-17.091 27.271-32.361 32.361-5.779 2.312-15.025 1.156-109.797 1.156s-104.018 1.156-109.797-1.156c-14.684-4.895-28.415-16.577-32.361-32.361-2.312-6.935-2.312-10.402-2.312-113.264l1.156-105.174c7.908-18.452 14.992-28.113 34.673-34.673 5.779-1.156 23.115-2.312 108.641-2.312zM589.436 725.815h-47.386v95.928h94.772v-95.928h-47.386z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["home"],"defaultCode":60096,"grid":24},"attrs":[],"properties":{"id":202,"order":7,"ligatures":"","prevSize":24,"code":60096,"name":"home"},"setIdx":0,"setId":2,"iconIdx":203},{"icon":{"paths":["M588.28 195.323c8.602 0 16.421 3.548 23.115 5.779 12.902 5.162 445.62 439.892 454.212 454.212 15.448 23.173-2.813 58.726-20.804 64.722-14.522 4.84-17.632 5.779-45.074 5.779h-25.427v151.404c0 131.756-1.156 153.716-2.312 162.962-12.39 61.949-53.858 104.388-115.576 116.731-9.246 2.312-25.427 1.156-266.98 1.156-211.503 0-257.734 0-264.668-1.156-32.471-8.117-62.513-19.775-80.903-42.763-17.228-21.535-30.456-41.325-36.984-73.968-1.156-9.246-2.312-31.205-2.312-162.962v-151.404h-25.427c-40.396 0-50.268-3.169-65.878-26.582-6.892-10.337-7.205-33.11 0-43.919 7.196-11.992 445.68-451.262 453.056-454.212 5.631-3.754 14.012-5.779 21.959-5.779zM878.375 665.716c7.182-14.41 14.638-27.798 30.050-33.517l-318.989-318.989-318.989 318.989c15.404 5.728 22.875 19.099 30.050 33.517v179.142c0 140.224-1.485 177.328 5.779 191.856 4.935 9.87 16.384 19.331 27.738 23.115 6.935 2.312 9.246 2.312 34.673 2.312h27.738v-129.445c0-155.494-2.342-113.145 9.246-159.494 3.352-13.406 14.062-26.903 20.804-38.14 7.816-13.027 21.89-23.641 33.517-32.361 14.961-11.221 34.492-17.868 55.476-23.115 5.779-1.156 21.959-2.312 73.968-2.312s68.19 1.156 73.968 2.312c59.696 14.924 103.27 51.743 115.576 113.264 2.312 10.402 3.467 12.713 3.467 139.847v129.445h27.738c25.427 0 27.738 0 34.673-2.312 10.624-3.541 23.093-12.671 27.738-21.959 9.738-19.477 5.779-15.027 5.779-193.011v-179.142zM588.28 773.201c-26.582 0-50.853 1.156-54.321 1.156-20.483 0-32.146 20.374-39.296 34.673l-1.156 127.133v125.977h191.856v-125.977l-1.156-127.133c-18.472-36.947-33.032-35.828-95.928-35.828z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["home-2"],"defaultCode":60097,"grid":24},"attrs":[],"properties":{"id":203,"order":6,"ligatures":"","prevSize":24,"code":60097,"name":"home-2"},"setIdx":0,"setId":2,"iconIdx":204},{"icon":{"paths":["M594.059 243.865l309.743 1.156 11.558 2.312c57.873 11.575 94.792 43.173 124.822 83.214 3.467 4.623 6.935 15.025 10.402 20.804 11.107 18.511 14.843 41.855 19.648 65.878 1.156 8.090 1.156 92.46 1.156 260.045s0 251.955-1.156 260.045c-4.787 23.933-8.434 47.186-19.648 65.878-3.467 5.779-6.935 16.181-10.402 20.804-9.378 12.503-20.85 28.005-33.517 38.14-25.692 20.554-52.567 38.618-91.305 45.074l-11.558 2.312h-628.731l-11.558-2.312c-57.608-9.602-95.509-44.131-124.822-83.214-3.467-4.623-6.935-15.025-10.402-20.804-11.107-18.511-14.843-41.855-19.648-65.878-1.156-8.090-1.156-92.46-1.156-260.045s0-251.955 1.156-260.045c4.787-23.933 8.434-47.186 19.648-65.878 3.467-5.779 6.935-16.181 10.402-20.804 25.519-34.025 56.798-65.631 104.018-77.436 10.169-2.543 22.545-8.090 33.517-8.090 4.623 0 146.781-1.156 317.833-1.156zM591.747 340.948c-293.562 0-306.275 0-314.366 2.312-38.884 9.721-60.801 37.13-71.657 75.124l-1.156 254.266c0 229.995 1.156 255.422 2.312 263.512 7.151 28.6 20.956 52.662 45.074 64.722 4.623 2.312 12.713 5.779 18.492 8.090l11.558 3.467h614.862l11.558-3.467c30.785-12.313 54.933-32.503 63.567-67.034 2.312-6.935 1.156-18.492 1.156-264.668 0-243.865 1.156-257.734-1.156-264.668-8.1-32.396-34.624-55.457-63.567-67.034l-11.558-3.467zM453.056 436.876c29.734 0 53.241 12.528 72.813 24.271 22.878 13.727 37.211 36.205 50.853 58.944 3.467 5.779 5.779 18.492 8.090 25.427 2.312 10.402 4.623 17.336 4.623 30.050 0 71.455-33.382 106.942-78.591 134.068-19.301 11.581-35.582 15.025-65.878 15.025-39.259 0-64.324-9.852-86.682-27.738-31.020-24.816-57.788-61.631-57.788-116.731 0-35.613 11.909-58.374 25.427-80.903 12.098-20.163 32.87-38.343 55.476-47.386 16.732-6.693 30.743-15.025 53.165-15.025h18.492zM781.291 435.72c40.836 0 50.602-1.624 69.345 4.623 16.012 5.337 27.738 23.797 27.738 45.074 0 24.080-15.226 38.978-33.517 45.074-6.935 2.312-8.090 2.312-64.722 2.312l-58.944-1.156c-7.168-3.583-15.362-7.272-20.804-12.713-16.446-16.446-19.301-50.044-1.156-68.19 5.585-5.585 16.572-13.869 26.582-13.869 3.467 0 28.894-1.156 55.476-1.156zM444.966 628.731c27.833 0 47.386-20.542 47.386-48.542 0-27.549-21.631-47.386-48.542-47.386-25.392 0-46.23 21.433-46.23 47.386 0 28.017 19.576 48.542 47.386 48.542zM782.447 628.731c45.074 0 54.321 1.156 60.099 2.312 19.236 6.412 35.828 20.379 35.828 46.23 0 26.788-15.721 39.527-35.828 46.23-5.779 1.156-17.336 2.312-60.099 2.312-61.495 0-69.913 4.349-91.305-27.738-16.81-25.216 5.831-53.584 20.804-63.567 3.467-2.312 9.246-4.623 11.558-4.623s30.050-1.156 58.944-1.156zM589.436 821.743c-247.332 0-248.488 0-255.422 2.312-18.226 6.076-33.517 21.205-33.517 45.074 0 25.324 15.449 40.978 34.673 47.386 5.779 2.312 21.959 1.156 254.266 1.156s248.488 1.156 254.266-1.156c19.248-6.417 34.673-22.364 34.673-47.386 0-24.080-15.226-38.978-33.517-45.074-6.935-2.312-6.935-2.312-255.422-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["id"],"defaultCode":60099,"grid":24},"attrs":[],"properties":{"id":205,"order":177,"ligatures":"","prevSize":24,"code":60099,"name":"id"},"setIdx":0,"setId":2,"iconIdx":206},{"icon":{"paths":["M597.526 688.831c23.277 37.244 40.451 82.219 40.451 143.314 0 19.054-5.248 31.489-8.090 48.542-7.671 46.025-36.053 83.439-63.567 110.953-39.063 39.063-90.651 70.501-168.74 70.501-93.35 0-150.844-42.061-193.011-94.772-13.938-17.423-21.825-37.871-32.361-58.944-12.371-24.745-15.025-48.207-15.025-86.682 0-60.44 14.969-87.727 34.673-127.133 26.7-53.402 90.273-95.49 156.027-108.641 16.524-3.305 27.816-4.623 49.698-4.623 43.98 0 72.313 9.528 104.018 23.115 12.763 5.469 20.318 10.245 27.738 16.181l184.921-183.765c150.248-150.248 186.077-184.921 190.7-187.233 3.467-1.156 8.090-4.623 10.402-4.623s8.090-1.156 11.558-1.156c17.828 0 28.113 9.621 36.984 18.492 7.487 7.487 9.246 12.641 9.246 28.894 0 20.584-4.343 27.458-16.181 39.296l-10.402 10.402 33.517 33.517c30.050 30.050 34.673 34.673 38.14 41.607s4.623 10.402 4.623 17.336c0 19.882-8.532 30.491-18.492 40.451-7.487 7.487-12.641 9.246-28.894 9.246-11.558 0-12.713 0-20.804-3.467-6.935-3.467-12.713-6.935-42.763-36.984l-33.517-33.517c-24.872 25.087-49.725 49.574-74.862 73.767l-1.418 1.357 34.673 34.673c31.205 31.205 34.673 35.828 36.984 42.763 2.312 4.623 4.623 10.402 4.623 16.181 0 19.882-8.532 30.491-18.492 40.451-7.351 7.351-14.146 10.402-30.050 10.402-11.558 0-11.558-1.156-19.648-4.623-6.935-3.467-12.713-6.935-42.763-36.984l-33.517-33.517c-47.246 46.243-91.678 90.309-135.822 134.663l-0.557 0.56zM401.047 677.273c-8.090 0-16.181 1.156-17.336 1.156-16.022 0-38.732 7.808-50.853 13.869-17.25 8.624-35.974 21.769-47.386 36.984-15.365 20.487-32.361 46.483-32.361 80.903v23.115c0 44.673 25.646 74.188 48.542 97.084 21.59 21.59 53.425 34.673 95.928 34.673 48.848 0 80.995-17.447 104.018-45.074 5.779-6.935 13.869-15.025 17.336-20.804 12.552-20.919 21.959-44.772 21.959-77.436 0-55.998-27.118-91.995-60.099-116.731-15.723-11.793-33.919-18.882-55.476-24.271-4.623-1.156-16.181-3.467-24.271-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["key"],"defaultCode":60103,"grid":24},"attrs":[],"properties":{"id":209,"order":79,"ligatures":"","prevSize":24,"code":60103,"name":"key"},"setIdx":0,"setId":2,"iconIdx":210},{"icon":{"paths":["M813.652 242.709c61.431 0 102.451 26.253 137.535 54.321 5.779 4.623 13.869 13.869 18.492 19.648 25.458 31.823 54.321 73.344 54.321 129.445 1.156 8.090 1.156 20.804 0 28.894 0 52.922-26.489 95.521-50.853 125.977-4.623 5.779-55.476 57.788-113.264 115.576-82.059 82.059-107.485 105.174-116.731 112.108-20.694 13.796-42.617 30.252-70.501 35.828-14.798 2.959-32.274 8.090-49.698 8.090-41.44 0-76.588-7.667-105.174-21.959-15.545-7.772-28.929-18.23-41.607-27.738-13.387-10.041-31.205-24.426-31.205-46.23 0-19.882 8.532-30.491 18.492-40.451 7.143-7.143 13.548-10.402 28.894-10.402 26.199 0 36.966 18.095 53.165 28.894 18.099 12.066 38.391 20.804 68.19 20.804 31.409 0 52.869-10.59 71.657-23.115 3.467-2.312 53.165-50.853 110.953-108.641 63.567-63.567 105.174-107.485 108.641-112.108 13.116-17.487 23.115-41.563 23.115-71.657 0-27.545-9.521-51.267-20.804-68.19-19.159-28.739-53.982-53.165-100.551-53.165-49.894 0-71.161 20.308-98.239 47.386-18.791 16.912-18.848 19.766-35.828 25.427-3.467 1.156-8.090 1.156-11.558 1.156-21.335 0-28.674-11.338-39.296-21.959-5.899-5.899-8.090-16.88-8.090-28.894 0-8.090 1.156-10.402 4.623-17.336 11.671-23.342 48.594-51.358 68.19-67.034 12.931-10.344 36.166-18.605 53.165-24.271 14.632-4.877 31.72-10.402 49.698-10.402h24.271zM564.009 481.95c-5.779 0-15.025 1.156-20.804 1.156-24.49 0-50.489 12.105-69.345 19.648-15.1 6.040-27.363 16.418-40.451 24.271-5.779 4.623-49.698 46.23-114.42 110.953-57.788 57.788-108.641 109.797-113.264 115.576-22.18 27.727-39.125 59.244-47.386 100.551-1.156 5.779-3.467 17.336-3.467 25.427-5.367 42.936 7.72 78.112 20.804 108.641 13.487 31.47 35.754 57.154 61.255 76.28 24.341 18.256 56.37 37.711 93.616 43.919 52.572 8.762 104.048-0.593 139.847-18.492 28.949-14.475 46.924-30.743 70.501-54.321 13.869-13.869 16.181-18.492 19.648-25.427s4.623-9.246 4.623-17.336c0-29.482-18.476-50.853-47.386-50.853-25.978 0-27.669 8.837-47.386 26.582-26.409 26.409-37.19 37.025-77.436 45.074-5.779 1.156-15.025 2.312-20.804 2.312-54.937 0-90.129-31.167-108.641-68.19-6.859-13.719-12.713-32.985-12.713-53.165 0-30.050 9.826-53.938 23.115-71.657 3.467-4.623 45.074-46.23 106.33-108.641 55.476-55.476 104.018-104.018 108.641-107.485s10.402-9.246 15.025-11.558c17.192-8.597 35.181-16.181 61.255-16.181 37.637 0 64.929 14.076 84.37 33.517 11.811 9.448 17.439 16.181 36.984 16.181 15.432 0 21.703-3.211 28.894-10.402 9.903-9.903 18.492-20.36 18.492-40.451 0-22.312-17.542-35.982-31.205-46.23-35.566-26.675-76.916-49.698-138.691-49.698z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["link"],"defaultCode":60126,"grid":24},"attrs":[],"properties":{"id":232,"order":88,"ligatures":"","prevSize":24,"code":60126,"name":"link"},"setIdx":0,"setId":2,"iconIdx":233},{"icon":{"paths":["M1021.688 195.323c29.391 0 53.974 25.191 48.542 57.788-0.143 0.573-313.907 871.677-318.989 881.842-11.058 22.118-33.242 39.296-65.878 39.296-23.804 0-47.925-12.942-57.788-27.738-3.467-3.467-32.361-62.411-86.682-171.052l-83.214-166.429-165.273-82.059c-115.576-57.788-167.585-84.37-172.208-87.837-13.669-13.669-27.738-30.896-27.738-57.788 0-32.706 17.413-54.937 39.296-65.878 9.396-4.697 879.548-318.61 880.686-318.989 3.467-1.156 6.935-1.156 9.246-1.156zM940.786 324.767c-699.253 253.45-716.111 258.889-716.569 258.889-2.312 1.156 27.738 15.025 147.937 75.124 134.068 67.034 150.248 76.28 154.871 80.903 9.76 9.76 63.783 120.894 156.027 303.964 51.396-143.912 25.889-71.888 258.889-718.88h-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["location"],"defaultCode":60128,"grid":24},"attrs":[],"properties":{"id":234,"order":132,"ligatures":"","prevSize":24,"code":60128,"name":"location"},"setIdx":0,"setId":2,"iconIdx":235},{"icon":{"paths":["M598.682 147.937c51.697 0 90.71 19.521 123.666 39.296 21.788 13.072 43.682 35.127 58.944 55.476 25.362 33.817 48.542 81.052 48.542 139.847 0 24.489-3.188 28.614-15.025 40.451-23.96 23.96-64.098 10.494-76.28-13.869-8.205-16.407-5.755-50.791-12.713-68.19-21.292-53.231-61.683-95.928-136.379-95.928-43.12 0-60.27 13.046-86.682 28.894-27.145 16.288-47.27 49.118-54.321 84.37-2.312 10.402-3.467 15.025-3.467 116.731v105.174h201.102c180.298 0 201.102 1.156 209.192 2.312l18.492 4.623c50.853 12.713 88.822 60.396 99.395 113.264 2.312 9.246 2.312 24.271 2.312 168.74 0 146.781 0 159.494-2.312 169.896-10.786 53.925-43.861 91.282-90.149 109.797-5.779 2.312-16.181 5.779-23.115 6.935l-11.558 2.312h-258.889c-276.835 0-239.355 4.884-286.628-6.935-49.457-12.364-86.803-60.704-97.084-112.108-2.312-10.402-2.312-23.115-2.312-169.896 0-171.306-3.627-144.99 6.935-187.233 8.728-34.913 38.769-68.504 68.19-83.214 15.38-7.689 35.729-17.336 57.788-17.336l10.402-1.156 1.156-106.33c1.156-92.46 1.156-108.641 2.312-119.043 11.716-70.294 46.092-122.695 93.616-158.339 28.474-21.355 63.834-37.963 105.174-46.23 5.779-1.156 17.336-2.312 25.427-2.312h24.271zM878.375 714.257c-7.073-16.6-20.378-29.918-36.984-36.984h-249.643c-138.691 0-250.799 1.156-253.111 1.156-20.431 0-31.639 22.103-36.984 38.14-1.156 3.467-1.156 58.944-1.156 153.716 0 149.672-2.516 139.233 6.935 167.585 4.167 12.501 17.833 17.88 30.050 23.115h503.91c18.561-7.955 29.209-17.128 35.828-36.984 1.156-4.623 1.156-53.165 1.156-158.339v-151.404zM594.059 774.357c-47.992 0-75.13 20.815-91.305 53.165-5.589 11.18-9.246 25.184-9.246 41.607 0 14.463 1.431 20.475 4.623 30.050 1.156 3.467 2.312 10.402 4.623 13.869l9.246 13.869c14.773 22.159 39.93 38.14 77.436 38.14 33.201 0 46.994-10.108 65.878-24.271 4.623-3.467 9.246-10.402 11.558-13.869l9.246-13.869c7.621-11.43 9.246-25.955 9.246-43.919 0-34.291-16.769-59.963-36.984-75.124-15.003-11.252-28.74-19.648-54.321-19.648z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lock-open"],"defaultCode":60129,"grid":24},"attrs":[],"properties":{"id":235,"order":37,"ligatures":"","prevSize":24,"code":60129,"name":"unlock"},"setIdx":0,"setId":2,"iconIdx":236},{"icon":{"paths":["M594.059 195.323c21.312 0 37.456 4.718 54.321 8.090 18.377 3.675 31.341 8.168 47.386 17.336 8.090 4.623 19.648 9.246 25.427 13.869 26.889 21.51 52.167 41.101 70.501 71.657 12.487 20.811 27.834 46.809 32.361 73.968 6.917 41.508 5.358 24.887 6.935 117.887l1.156 82.059 10.402 1.156c41.559 0 71.050 23.664 92.46 45.074 19.015 19.015 32.040 43.468 38.14 73.968 2.312 9.246 2.312 24.271 2.312 168.74 0 146.781 0 159.494-2.312 169.896-10.818 54.087-43.673 91.207-90.149 109.797-5.779 2.312-16.181 5.779-23.115 6.935l-11.558 2.312h-258.889c-279.283 0-239.025 4.966-286.628-6.935-44.849-11.212-75.157-50.936-91.305-91.305-2.312-5.779-4.623-13.869-5.779-19.648-2.312-9.246-2.312-20.804-2.312-169.896 0-171.269-3.585-146.311 6.935-188.388 7.136-28.541 29.824-55.884 50.853-71.657 18.152-13.615 44.766-28.894 75.124-28.894l10.402-1.156 1.156-82.059c2.034-120.021 0.316-141.808 54.321-213.815 3.467-4.623 11.558-11.558 17.336-17.336 32.188-32.188 73.51-57.464 127.133-68.19 5.779-1.156 15.025-2.312 19.648-2.312s17.336-1.156 27.738-1.156zM588.28 292.406c-55.509 0-91.309 27.744-115.576 60.099-11.553 15.404-20.025 33.089-24.271 54.321-2.312 10.402-3.467 15.025-3.467 92.46v80.903h288.939v-80.903c0-98.019 1.096-73.051-8.090-109.797-9.704-38.814-42.501-66.903-75.124-83.214-17.856-8.928-35.88-13.869-62.411-13.869zM878.375 714.257c-7.073-16.6-20.378-29.918-36.984-36.984h-249.643c-138.691 0-250.799 1.156-253.111 1.156-20.431 0-31.639 22.103-36.984 38.14-1.156 3.467-1.156 58.944-1.156 153.716 0 149.672-2.516 139.233 6.935 167.585 4.167 12.501 17.833 17.88 30.050 23.115h503.91c18.561-7.955 29.209-17.128 35.828-36.984 1.156-4.623 1.156-53.165 1.156-158.339v-151.404zM588.28 773.201c-10.552 0-21.499 3.314-28.894 5.779-25.216 8.405-45.654 23.984-55.476 48.542-5.245 13.113-10.402 23.099-10.402 41.607 0 14.463 1.431 20.475 4.623 30.050 1.156 3.467 2.312 10.402 4.623 13.869l9.246 13.869c15.865 23.796 44.023 39.296 83.214 39.296 31.617 0 58.627-19.751 71.657-39.296l9.246-13.869c7.621-11.43 9.246-25.955 9.246-43.919 0-44.138-25.221-67.667-52.009-85.526-10.282-6.854-29.174-10.402-45.074-10.402z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lock"],"defaultCode":60130,"grid":24},"attrs":[],"properties":{"id":236,"order":38,"ligatures":"","prevSize":24,"code":60130,"name":"lock"},"setIdx":0,"setId":2,"iconIdx":237},{"icon":{"paths":["M591.747 195.323c4.623 0 10.402 1.156 13.869 2.312 1.218 0.407 448.092 296.025 455.368 305.12 4.207 6.31 6.81 12.337 9.246 19.648l1.156 247.332c0 197.572 3.849 239.644-4.623 282.005-6.973 34.862-33.921 64.607-60.099 82.059-19.547 13.031-37.13 18.983-63.567 24.271-6.935 1.156-128.289 1.156-353.661 1.156-253.928 0-336.007 3.069-374.465-4.623-34.862-6.973-64.607-33.921-82.059-60.099-8.918-13.377-17.579-26.645-20.804-42.763-8.672-43.357-4.623-83.572-4.623-282.005l1.156-247.332c2.442-7.327 5.025-13.315 9.246-19.648 10.004-12.505 447.985-300.85 449.589-301.652 6.524-3.262 13.314-5.779 24.271-5.779zM935.007 532.804c-344.169-228.676-343.911-229.995-345.571-229.995s-249.039 165.249-345.571 229.995c344.169 228.676 343.911 229.995 345.571 229.995s136.769-92.491 345.571-229.995zM205.725 624.108s-1.156 61.255-1.156 136.379v136.379l82.059-80.903c45.074-45.074 82.059-83.214 82.059-83.214-113.821-76.423-32.31-22.154-162.962-108.641zM973.147 624.108c-146.58 96.324-129.661 86.599-161.806 108.641 0 0 34.673 36.984 80.903 83.214l82.059 80.903v-136.379c0-75.124-1.156-136.379-1.156-136.379zM450.745 788.226l-121.354 121.354c-67.034 67.034-121.354 121.354-121.354 122.51 0 12.087 19.862 25.191 30.050 27.738 6.935 2.312 11.558 2.312 351.35 2.312s344.415 0 351.35-2.312c9.777-2.443 21.073-9.786 25.427-18.492 2.312-3.467 4.623-8.090 4.623-9.246s-54.321-55.476-121.354-122.51l-121.354-121.354c-117.929 77.015-111.754 74.369-117.887 77.436-6.006 3.004-19.413 5.363-28.894 3.467-20.991-5.248-33.324-15.78-73.968-43.919-30.050-20.804-56.632-36.984-56.632-36.984z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail-opened"],"defaultCode":60132,"grid":24},"attrs":[],"properties":{"id":238,"order":74,"ligatures":"","prevSize":24,"code":60132,"name":"mail-opened"},"setIdx":0,"setId":2,"iconIdx":239},{"icon":{"paths":["M596.37 291.251c323.612 0 346.727 0 355.973 2.312 39.825 7.965 69.415 28.986 90.149 56.632 11.295 15.061 21.642 33.92 25.427 56.632l2.312 11.558v517.779l-2.312 11.558c-9.327 55.964-48.886 88.668-95.928 107.485-5.779 2.312-15.025 4.623-20.804 5.779-10.402 2.312-30.050 2.312-361.752 2.312s-351.35 0-361.752-2.312c-41.473-8.295-70.921-30.224-92.46-58.944-11.601-15.469-21.215-35.578-25.427-56.632-2.312-9.246-1.156-23.115-1.156-268.135 0-276.835-4.884-239.355 6.935-286.628 9.238-36.954 41.488-67.552 72.813-83.214 13.744-6.872 32.528-15.025 52.009-15.025 5.779 0 166.429-1.156 355.973-1.156zM589.436 388.334c-291.251 0-344.415 1.156-349.038 2.312-8.164 2.721-14.13 3.728-19.648 9.246-3.271 3.271-8.376 10.492-10.402 13.869 0 0 85.526 57.788 189.544 127.133l189.544 125.977 189.544-125.977c104.018-69.345 189.544-127.133 189.544-127.133-7.248-12.080-16.319-19.308-31.205-24.271-5.779-1.156-47.386-1.156-347.883-1.156zM386.023 648.379l-181.454-121.354v201.102l1.156 201.102c5.189 12.109 10.679 25.904 23.115 30.050 3.467 1.156 9.246 3.467 12.713 4.623 5.779 1.156 45.074 2.312 347.883 2.312 325.262 0 330.033 3.252 360.596-6.935 12.501-4.167 17.88-17.833 23.115-30.050l1.156-201.102v-201.102l-181.454 121.354c-144.47 95.928-183.765 122.51-188.388 123.666-3.467 1.156-10.402 1.156-15.025 1.156s-11.558 0-15.025-1.156c-4.623-1.156-43.919-27.738-188.388-123.666z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mail"],"defaultCode":60133,"grid":24},"attrs":[],"properties":{"id":239,"order":73,"ligatures":"","prevSize":24,"code":60133,"name":"mail"},"setIdx":0,"setId":2,"iconIdx":240},{"icon":{"paths":["M884.153 151.404c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 36.442 21.866 68.123 46.504 90.149 83.214 21.16 35.264 38.14 73.876 38.14 130.6 0 47.933-11.934 80.5-27.738 112.108-3.673 7.345-170.593 246.873-181.454 257.734-11.354 7.57-11.294 10.402-31.205 10.402-20.004 0-19.763-2.774-31.205-10.402-10.894-10.894-172.709-242.686-184.921-264.668-14.653-29.304-24.271-61.63-24.271-105.174 0-77.355 30.178-130.729 69.345-169.896 33.214-33.214 72.916-55.959 128.289-67.034 5.779-1.156 15.025-3.467 20.804-3.467h27.738zM447.278 243.865l10.402 1.156 43.919 20.804c34.673 17.336 43.919 23.115 48.542 27.738 9.169 9.169 13.869 17.221 13.869 34.673 0 17.177-5.123 25.927-13.869 34.673-11.026 7.351-24.62 17.071-43.919 11.558-4.623-1.156-9.246-2.312-10.402-2.312-2.312-1.156-2.312 11.558-2.312 257.734v258.889l95.928 47.386c52.009 26.582 95.928 47.386 95.928 47.386v-82.059c0-56.632 0-84.37 1.156-88.993 6.81-20.428 24.427-44.35 55.476-38.14 21.847 5.462 32.338 17.267 39.296 38.14 1.156 4.623 1.156 32.361 1.156 88.993v82.059s43.919-20.804 95.928-47.386l95.928-47.386v-35.828c0-48.091-0.524-55.897 26.582-73.968 16.978-11.318 45.398-1.988 55.476 8.090 7.126 7.126 10.517 15.369 13.869 25.427 1.156 3.467 1.156 23.115 1.156 56.632 0 45.991 0.326 52.185-5.779 70.501-1.156 3.467-5.779 9.246-9.246 12.713-5.779 5.779-16.181 11.558-158.339 82.059l-151.404 75.124h-25.427c-426.429-198.857-516.998-244.754-607.432-290.88l331.206 153.345c240.468-107.080 149.903-61.185 59.203-15.52l-335.429 153.055h-12.713c-29.112 0-40.252-16.738-47.386-38.14-1.156-4.623-1.156-114.42-1.156-322.456s0-316.677 1.156-321.3c3.522-10.564 6.216-17.773 13.869-25.427 13.69-13.69 293.146-148.883 309.743-157.183 3.467-1.156 8.090-1.156 15.025-1.156zM877.219 247.332c-6.935 0-16.181 1.156-19.648 1.156-48.46 0-84.096 40.619-104.018 70.501-10.153 15.229-19.648 40.738-19.648 64.722 0 23.543 3.369 48.345 11.558 64.722 3.467 6.935 18.492 28.894 68.19 99.395 34.673 49.698 63.567 92.46 64.722 92.46s30.050-42.763 64.722-92.46c49.698-70.501 64.722-92.46 68.19-99.395 8.428-16.856 11.558-40.628 11.558-64.722 0-23.48-9.378-39.625-16.181-56.632-6.403-16.006-16.245-28.948-30.050-40.451-6.935-5.779-15.025-13.869-20.804-17.336-21.465-12.88-44.825-21.959-78.591-21.959zM877.219 339.792c27.176 0 42.966 18.149 48.542 40.451 6.119 30.592-17.454 56.632-47.386 56.632-27.486 0-41.859-18.343-47.386-40.451-3.807-19.035 4.585-32.323 13.869-41.607 8.325-8.325 16.598-15.025 32.361-15.025zM395.269 370.998s-43.919 20.804-95.928 47.386l-94.772 47.386v517.779s43.919-20.804 95.928-47.386l95.928-47.386v-258.889c0-142.158-1.156-258.889-1.156-258.889z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["map-2"],"defaultCode":60135,"grid":24},"attrs":[],"properties":{"id":241,"order":131,"ligatures":"","prevSize":24,"code":60135,"name":"map-2"},"setIdx":0,"setId":2,"iconIdx":242},{"icon":{"paths":["M597.526 196.479c118.559 0 200.001 44.656 266.98 98.239 23.806 19.043 44.841 40.865 64.722 64.722 5.779 6.935 12.713 18.492 17.336 24.271 39.625 49.531 63.095 119.212 73.968 195.323 1.156 8.090 2.312 25.427 2.312 38.14 0 96.909-22.359 170.177-58.944 231.151-9.855 16.426-24.057 35.529-35.828 52.009-11.27 14.089-229.488 233.982-257.734 256.578-9.758 7.319-22.177 14.212-34.673 17.336l-18.492 4.623c-4.623 1.156-13.869 3.467-20.804 3.467-38.703 0-69.757-11.867-92.46-28.894-14.047-11.239-231.34-225.119-253.111-253.111-50.602-70.844-94.772-149.18-94.772-270.447 0-40.295 3.656-78.002 13.869-108.641 4.563-13.691 6.241-27.663 12.713-42.763 28.565-66.651 63.086-124.74 114.42-168.74 8.090-6.935 19.648-17.336 26.582-23.115 24.389-20.323 47.807-32.572 77.436-47.386 42.711-21.355 84.035-33.186 142.158-40.451 9.246-1.156 18.492-2.312 23.115-2.312h31.205zM587.124 292.406c-60.658 0-107.388 13.302-147.937 35.828-37.088 20.605-63.312 37.886-92.46 67.034-46.653 46.653-76.939 105.658-90.149 184.921-1.156 6.935-3.467 20.804-3.467 30.050v35.828c0 70.961 27.58 120.788 54.321 167.585 4.623 8.090 12.713 18.492 18.492 25.427 6.935 8.090 47.386 49.698 121.354 123.666 61.255 61.255 114.42 113.264 116.731 115.576 5.283 5.283 16.909 6.935 27.738 6.935 8.090 0 12.713-1.156 18.492-3.467 20.426-12.256 232.178-230.422 242.709-242.709 20.725-24.871 38.045-59.877 52.009-92.46 10.504-24.507 13.95-54.723 19.648-83.214 1.156-5.779 1.156-21.959 1.156-34.673 0-39.612-4.154-65.625-13.869-94.772-13.622-40.868-27.649-74.723-52.009-105.174-4.623-5.779-10.402-13.869-12.713-17.336s-11.558-10.402-18.492-18.492c-25.495-29.743-54.405-44.959-88.993-64.722-35.623-20.355-72.744-26.764-120.199-34.673-6.935-1.156-20.804-1.156-32.361-1.156zM594.059 438.032c48.913 0 70.056 11.753 100.551 30.050 28.937 17.363 46.077 41.376 64.722 69.345 2.312 3.467 5.779 12.713 8.090 19.648 6.539 19.62 15.025 39.134 15.025 63.567 0 118.568-71.472 180.030-171.052 199.946-5.779 1.156-15.025 1.156-21.959 1.156-47.062 0-77.686-15.637-107.485-33.517-5.779-3.467-15.025-10.402-19.648-15.025l-17.336-17.336c-16.874-16.874-27.256-39.246-36.984-63.567-7.727-19.317-11.558-44.573-11.558-71.657 0-14.909 4.22-29.189 6.935-42.763 6.356-31.78 26.79-61.463 46.23-80.903 25.425-25.425 55.091-48.285 98.239-55.476 6.935-1.156 15.025-3.467 17.336-3.467h28.894zM592.903 532.804c-14.119 0-25.295 0.512-33.517 4.623-14.543 7.271-35.135 16.874-43.919 30.050l-9.246 13.869c-8.192 12.286-11.558 25.739-11.558 47.386 0 35.015 10.28 51.888 27.738 69.345 15.718 15.718 36.071 26.582 67.034 26.582 21.19 0 38.274-5.483 50.853-13.869 24.888-16.591 43.919-40.425 43.919-82.059 0-21.81-3.282-34.973-11.558-47.386l-9.246-13.869c-12.253-18.381-40.91-34.673-70.501-34.673z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["map-pin"],"defaultCode":60136,"grid":24},"attrs":[],"properties":{"id":242,"order":130,"ligatures":"","prevSize":24,"code":60136,"name":"map-pin"},"setIdx":0,"setId":2,"iconIdx":243},{"icon":{"paths":["M587.124 291.251c131.756 0 247.332 1.156 255.422 1.156 52.825 0 92.454 25.42 120.199 53.165 14.99 14.99 27.539 29.653 36.984 48.542l10.402 20.804c5.89 11.777 7.923 27.891 10.402 42.763 1.156 11.558 2.312 33.517 2.312 177.986 0 164.117-1.156 162.962-3.467 174.519-10.937 54.686-40.524 90.67-77.436 120.199-18.591 14.875-48.408 27.909-75.124 32.361-11.558 2.312-16.181 3.467-62.411 3.467h-50.853l-68.19 68.19c-63.567 63.567-69.345 69.345-76.28 72.813s-9.246 2.312-19.648 2.312-12.713 1.156-19.648-2.312-12.713-9.246-76.28-72.813l-68.19-68.19h-50.853c-67.774 0-51.343 0.356-88.993-10.402-40.787-11.653-69.852-40.796-93.616-70.501-15.517-19.396-27.598-46.545-32.361-75.124l-2.312-12.713-1.156-162.962c0-144.47 1.156-165.273 2.312-176.831 10.078-60.477 40.157-104.206 83.214-132.912 24.252-16.169 55.705-32.361 93.616-32.361 6.935 0 120.199-1.156 251.955-1.156zM594.059 388.334c-138.691 0-254.266 1.156-255.422 1.156-16.199 0-31.19 7.212-41.607 15.025-10.067 7.549-19.907 13.102-26.582 23.115-7.306 10.958-11.479 22.879-16.181 36.984l-1.156 160.65c0 158.339 0 160.65 2.312 171.052 6.945 34.722 35.818 63.564 70.501 70.501 9.246 2.312 13.869 2.312 63.567 2.312 44.283 0 56.849-1.468 75.124 4.623 4.623 2.312 15.025 10.402 65.878 61.255l58.944 58.944 58.944-58.944c50.853-50.853 61.255-58.944 65.878-61.255 18.348-6.116 30.734-4.623 75.124-4.623 49.698 0 54.321 0 63.567-2.312 18.649-3.731 33.824-14.177 45.074-25.427 10.923-10.923 21.769-26.786 25.427-45.074 2.312-9.246 2.312-13.869 2.312-171.052l-1.156-160.65c-2.276-6.827-4.249-17.354-8.090-23.115l-9.246-13.869c-11.814-17.721-32.228-29.62-54.321-36.984-6.935-2.312-24.271-2.312-258.889-2.312zM589.436 484.262c195.811 0 186.561-2.921 216.126 6.935 11.31 3.77 24.271 20.347 24.271 34.673v13.869c0 21.541-20.444 33.783-36.984 39.296-5.779 1.156-30.050 2.312-203.413 2.312-194.6 0-186.703 2.873-216.126-6.935-11.31-3.77-24.271-20.347-24.271-34.673v-13.869c0-20.72 19.96-34.007 35.828-39.296 5.779-1.156 35.828-2.312 204.569-2.312zM540.894 677.273c-145.625 0-151.404 0-158.339 2.312-18.164 6.054-33.517 21.156-33.517 45.074 0 24.121 15.519 41.388 33.517 47.386 5.779 2.312 11.558 2.312 158.339 2.312 144.47 0 153.716 0 159.494-2.312 18.509-6.169 33.517-23.307 33.517-47.386 0-24.080-15.226-38.978-33.517-45.074-6.935-2.312-8.090-2.312-159.494-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["message-2"],"defaultCode":60140,"grid":24},"attrs":[],"properties":{"id":246,"order":4,"ligatures":"","prevSize":24,"code":60140,"name":"message-2"},"setIdx":0,"setId":2,"iconIdx":247},{"icon":{"paths":["M375.621 1065.607c-5.577 0-200.755 45.074-223.061 45.074-17.15 0-35.034-13.796-39.296-26.582l-4.623-13.869c-1.156-3.467-1.156-8.090-1.156-11.558s13.869-43.919 30.050-91.305l27.738-85.526c-10.747-21.495-23.873-47.548-33.517-71.657-16.4-41.003-21.959-76.127-21.959-135.223 0-25.427 0-35.828 1.156-47.386 11.909-83.359 44.011-150.074 86.682-203.413 4.623-5.779 13.869-17.336 20.804-24.271l23.115-23.115c14.501-14.501 28.99-23.58 45.074-36.984 38.779-32.315 86.055-51.197 137.535-70.501 30.456-11.421 65.164-16.904 100.551-21.959 8.090-1.156 20.804-3.467 27.738-3.467s23.115-1.156 34.673-1.156c172.625 0 285.249 67.967 372.153 154.871 22.868 22.868 37.247 46.623 55.476 73.968 10.453 15.678 25.612 46.295 31.205 65.878 11.784 41.245 25.427 74.271 25.427 129.445 0 112.314-33.251 188.035-82.059 253.111-43.083 57.445-99.089 101.554-166.429 135.223-21.876 10.938-44.113 18.711-68.19 27.738-52.448 19.669-92.599 25.427-165.273 25.427-84.479 0-137.177-11.569-196.479-36.984-8.090-3.467-16.181-5.779-17.336-5.779zM228.84 997.418c152.484-30.973 146.5-31.205 153.716-31.205 19.12 0 42.139 15.202 58.944 20.804 38.45 12.816 77.972 20.51 127.133 25.427 61.847 4.757 115.222-9.805 161.806-23.115 42.652-12.186 77.27-34.555 109.797-57.788 8.090-5.779 20.804-15.025 27.738-21.959l24.271-24.271c6.935-6.935 15.025-18.492 19.648-24.271 38.238-47.796 63.567-110.167 63.567-195.323 0-62.775-24.306-112.165-48.542-152.56-9.379-15.63-23.398-34.956-36.984-48.542-28.412-28.412-58.623-55.894-97.084-75.124-57.182-28.591-110.207-48.542-196.479-48.542h-40.451c-24.005 0-48.925 6.164-70.501 11.558-42.534 10.633-82.219 25.919-114.42 47.386-15.060 10.041-37.547 22.522-49.698 34.673-11.355 11.355-35.976 34.569-46.23 47.386-19.506 24.383-42.362 59.852-52.009 93.616-2.312 8.090-6.935 20.804-9.246 28.894-16.407 57.427-7.511 142.159 13.869 184.921 7.724 15.448 16.192 33.538 25.427 49.698 8.853 15.492 12.713 16.038 12.713 35.828v10.402l-18.492 55.476c-10.402 30.050-18.492 56.632-18.492 56.632zM396.424 725.815c-28.859 0-47.386-20.838-47.386-50.853 0-19.421 12.072-33.775 25.427-40.451 3.467-2.312 10.402-4.623 12.713-4.623s6.935-1.156 9.246-1.156c27.191 0 47.386 19.897 47.386 48.542 0 29.332-18.92 48.542-47.386 48.542zM588.28 628.731c27.176 0 42.966 18.149 48.542 40.451 6.119 30.592-17.454 56.632-47.386 56.632-27.486 0-41.859-18.343-47.386-40.451-3.807-19.035 4.585-32.323 13.869-41.607 8.325-8.325 16.598-15.025 32.361-15.025zM781.291 628.731c-2.312 0-6.935 1.156-9.246 1.156-14.551 0-27.974 16.651-33.517 27.738-3.467 6.935-3.467 8.090-3.467 19.648 0 29.332 18.92 48.542 47.386 48.542 29.252 0 47.386-20.767 47.386-50.853 0-27.056-18.534-38.154-39.296-45.074-3.467-1.156-6.935-1.156-9.246-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["message-circle"],"defaultCode":60141,"grid":24},"attrs":[],"properties":{"id":247,"order":162,"ligatures":"","prevSize":24,"code":60141,"name":"message-circle"},"setIdx":0,"setId":2,"iconIdx":248},{"icon":{"paths":["M587.124 291.251c131.756 0 247.332 1.156 255.422 1.156 52.845 0 92.546 25.512 120.199 53.165 31.007 31.007 50.119 63.786 58.944 116.731 1.156 9.246 1.156 55.476 1.156 174.519 0 161.806-1.156 162.962-3.467 174.519-3.14 18.842-8.027 32.251-17.336 48.542-4.623 8.090-9.246 19.648-13.869 25.427s-11.558 13.869-16.181 18.492l-17.336 17.336c-16.427 16.427-41.464 26.525-64.722 35.828-5.779 2.312-16.181 4.623-23.115 5.779l-11.558 3.467h-439.187l-92.46 92.46c-73.968 73.968-93.616 92.46-98.239 94.772-7.73 2.577-17.554 6.892-28.894 4.623l-13.869-4.623c-12.249-4.082-19.761-18.719-25.427-30.050v-663.404l2.312-12.713c7.429-44.572 30.084-76.315 56.632-102.862 18.036-18.036 36.131-29.765 61.255-38.14 19.377-6.46 32.904-13.869 57.788-13.869 6.935 0 120.199-1.156 251.955-1.156zM594.059 388.334c-138.691 0-254.266 1.156-255.422 1.156-16.199 0-31.19 7.212-41.607 15.025-10.067 7.549-19.907 13.102-26.582 23.115-7.306 10.958-11.479 22.879-16.181 36.984l-1.156 264.668v263.512l57.788-57.788c49.698-49.698 58.944-57.788 64.722-60.099 3.467-1.156 10.402-3.467 15.025-4.623s90.149-1.156 229.995-1.156c217.282 0 223.061 0 232.307-2.312 18.649-3.731 33.824-14.177 45.074-25.427 10.923-10.923 21.769-26.786 25.427-45.074 2.312-9.246 2.312-13.869 2.312-171.052l-1.156-160.65c-12.857-38.571-32.552-60.934-71.657-73.968-6.935-2.312-24.271-2.312-258.889-2.312zM588.28 484.262c139.847 0 198.79 0 203.413 1.156 10.834 3.612 17.825 7.423 25.427 15.025 3.467 3.467 8.090 8.090 9.246 11.558 4.496 13.49 4.705 27.492 0 41.607-4.313 12.942-21.518 22.197-34.673 26.582-4.623 1.156-62.411 1.156-202.257 1.156s-197.634 0-202.257-1.156c-10.834-3.612-17.825-7.423-25.427-15.025-3.467-3.467-8.090-8.090-9.246-11.558-4.496-13.49-4.705-27.492 0-41.607 4.288-12.868 20.508-22.246 33.517-26.582 4.623-1.156 52.009-1.156 202.257-1.156zM540.894 677.273c-145.625 0-151.404 0-158.339 2.312-15.811 5.27-33.517 19.102-33.517 39.296-1.156 4.623-1.156 9.246 0 13.869l4.623 13.869c4.962 14.885 21.111 22.614 36.984 26.582 4.623 1.156 62.411 1.156 150.248 1.156 78.591 0 147.937-1.156 151.404-1.156 23.916 0 41.607-23.382 41.607-47.386 0-25.792-15.061-39.693-34.673-46.23-5.779-1.156-21.959-2.312-158.339-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["message"],"defaultCode":60143,"grid":24},"attrs":[],"properties":{"id":249,"order":2,"ligatures":"","prevSize":24,"code":60143,"name":"message"},"setIdx":0,"setId":2,"iconIdx":250},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 120.313-37.155 202.513-85.526 275.070-12.027 18.041-25.941 36.343-41.607 52.009l-26.582 26.582c-23.193 23.193-49.61 42.382-78.591 58.944-67.931 38.817-141.536 68.19-248.488 68.19-61.871 0-102.828-9.566-150.248-23.115-58.071-16.591-106.434-49.607-150.248-80.903-18.727-13.377-37.065-33.598-53.165-49.698-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c29.731-59.461 70.479-106.311 119.043-147.937 60.214-51.611 138.896-92.489 235.774-106.33 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-11.558 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.39 36.365-18.492 71.799-18.492 119.043 0 47.294 8.049 82.491 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 15.871 47.615 45.291 82.319 73.968 116.731 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090s19.648-8.090 26.582-10.402c47.615-15.871 82.319-45.291 116.731-73.968 14.001-11.667 31.279-32.461 41.607-46.23 13.285-17.713 29.296-42.153 41.607-64.722 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM443.81 484.262c28.009 0 48.542 19.236 48.542 48.542 0 28.432-16.504 41.688-39.296 47.386-29.897 5.98-49.562-15.639-55.476-39.296-3.807-19.035 4.585-32.323 13.869-41.607 8.073-8.073 17.066-15.025 32.361-15.025zM732.749 484.262c28.009 0 48.542 19.236 48.542 48.542 0 28.432-16.504 41.688-39.296 47.386-29.897 5.98-49.562-15.639-55.476-39.296-3.807-19.035 4.585-32.323 13.869-41.607 8.073-8.073 17.066-15.025 32.361-15.025zM589.436 677.273c197.634 0 199.946 0 206.88 2.312 10.323 2.58 16.955 10.020 23.115 16.181 7.751 7.751 10.402 13.876 10.402 31.205 0 60.878-21.090 108.999-48.542 143.314-4.623 5.779-11.558 16.181-17.336 21.959-19.058 19.058-39.697 34.873-64.722 47.386-32.633 16.317-58.406 25.427-109.797 25.427-31.413 0-43.988-0.794-65.878-8.090-43.422-14.474-74.702-31.939-104.018-61.255-39.77-39.77-70.501-91.525-70.501-168.74 0-17.403 2.603-23.406 10.402-31.205 5.816-5.816 13.083-13.222 21.959-16.181 6.935-2.312 12.713-2.312 208.036-2.312zM589.436 773.201c-117.887 0-135.223 0-135.223 1.156 0 7.198 8.005 17.165 11.558 24.271 11.953 23.907 34.863 45.382 60.099 55.476 19.856 7.942 35.12 15.025 63.567 15.025 45.002 0 70.091-16.45 95.928-35.828 13.507-10.13 30.395-33.397 35.828-49.698 1.156-3.467 3.467-8.090 3.467-9.246s-17.336-1.156-135.223-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mood-happy"],"defaultCode":60148,"grid":24},"attrs":[],"properties":{"id":254,"order":161,"ligatures":"","prevSize":24,"code":60148,"name":"mood-happy"},"setIdx":0,"setId":2,"iconIdx":255},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 120.313-37.155 202.513-85.526 275.070-12.027 18.041-25.941 36.343-41.607 52.009l-26.582 26.582c-23.193 23.193-49.61 42.382-78.591 58.944-67.931 38.817-141.536 68.19-248.488 68.19-61.871 0-102.828-9.566-150.248-23.115-58.071-16.591-106.434-49.607-150.248-80.903-18.727-13.377-37.065-33.598-53.165-49.698-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c29.731-59.461 70.479-106.311 119.043-147.937 60.214-51.611 138.896-92.489 235.774-106.33 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-11.558 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.39 36.365-18.492 71.799-18.492 119.043 0 47.294 8.049 82.491 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 15.871 47.615 45.291 82.319 73.968 116.731 11.667 14.001 32.461 31.279 46.23 41.607 27.293 20.468 67.451 43.107 101.707 57.788 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090s19.648-8.090 26.582-10.402c47.615-15.871 82.319-45.291 116.731-73.968 14.001-11.667 31.279-32.461 41.607-46.23 13.285-17.713 29.296-42.153 41.607-64.722 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM493.508 580.19c0 29.755-20.144 48.542-50.853 48.542-49.521 0-61.574-76.174-19.648-90.149 9.4-3.132 10.393-5.779 24.271-5.779 18.937 0 28.717 12.536 38.14 21.959 4.863 4.863 8.090 16.562 8.090 25.427zM782.447 580.19c0 29.755-20.144 48.542-50.853 48.542-49.521 0-61.574-76.174-19.648-90.149 9.4-3.132 10.393-5.779 24.271-5.779 18.937 0 28.717 12.536 38.14 21.959 4.863 4.863 8.090 16.562 8.090 25.427zM469.237 773.201c-29.553 0-48.542 22.264-48.542 52.009 0 10.945 5.666 18.323 10.402 25.427 13.707 20.561 37.235 33.164 60.099 46.23 22.402 12.801 51.599 23.115 83.214 23.115h28.894c20.523 0 24.002-3.999 41.607-6.935 6.935-1.156 15.025-4.623 20.804-6.935 16.162-6.465 34.422-13.899 47.386-24.271 17.331-13.864 45.074-28.145 45.074-56.632 0-30.45-16.241-44.801-40.451-50.853-21.349-4.269-32.153 5.844-45.074 16.181-22.089 17.672-43.744 33.517-83.214 33.517-38.36 0-61.834-16.412-83.214-33.517-12.411-9.928-17.999-17.336-36.984-17.336z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["mood-smile"],"defaultCode":60151,"grid":24},"attrs":[],"properties":{"id":257,"order":117,"ligatures":"","prevSize":24,"code":60151,"name":"smilies"},"setIdx":0,"setId":2,"iconIdx":258},{"icon":{"paths":["M592.903 243.865l308.587 1.156 11.558 2.312c23.792 3.964 42.757 19.067 58.944 31.205 23.421 17.565 40.794 44.475 47.386 77.436l2.312 11.558v619.485l-2.312 11.558c-3.753 18.765-10.779 34.020-20.804 47.386-17.133 22.845-34.541 41.554-63.567 53.165-5.779 2.312-16.181 6.935-23.115 8.090l-12.713 2.312h-619.485l-11.558-2.312c-24.925-4.985-46.868-16.819-62.411-32.361-18.972-18.972-40.798-42.535-46.23-75.124l-2.312-12.713v-619.485l2.312-12.713c5.321-31.932 26.161-56.21 45.074-75.124 15.834-15.834 39.113-27.471 63.567-32.361 5.779-1.156 11.558-2.312 13.869-2.312s141.002-1.156 310.898-1.156zM318.989 340.948c-25.427 0-28.894 0-34.673 2.312-14.724 4.907-24.484 17.289-30.050 31.205l-1.156 31.205v30.050h94.772v-94.772h-28.894zM733.905 340.948h-288.939v287.783h288.939v-287.783zM861.038 340.948h-30.050v94.772h94.772v-30.050l-1.156-31.205c-4.948-14.845-17.307-27.343-32.361-32.361zM347.883 532.804h-94.772v95.928h94.772v-95.928zM925.761 532.804h-94.772v95.928h94.772v-95.928zM347.883 725.815h-94.772v95.928h94.772v-95.928zM733.905 725.815h-288.939v287.783h288.939v-287.783zM925.761 725.815h-94.772v95.928h94.772v-95.928zM347.883 918.826h-94.772v30.050l1.156 31.205c4.948 14.845 17.307 27.343 32.361 32.361l31.205 1.156h30.050v-94.772zM878.375 918.826h-47.386v94.772h30.050l31.205-1.156c14.845-4.948 27.343-17.307 32.361-32.361l1.156-31.205v-30.050h-47.386z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["movie"],"defaultCode":60154,"grid":24},"attrs":[],"properties":{"id":260,"order":134,"ligatures":"","prevSize":24,"code":60154,"name":"movie"},"setIdx":0,"setId":2,"iconIdx":261},{"icon":{"paths":["M492.352 243.865c225.372 0 253.111 1.156 261.201 2.312 26.482 6.621 44.535 18.261 57.788 38.14l9.246 13.869c4.659 6.99 9.246 22.068 9.246 32.361v9.246h56.632l56.632 1.156c16.791 4.198 34.569 10.298 45.074 20.804l12.713 12.713c10.179 10.179 16.991 30.978 20.804 46.23v566.321l-2.312 11.558c-5.982 29.911-20.458 50.508-39.296 69.345-18.758 18.758-39.679 33.362-69.345 39.296l-11.558 2.312h-573.255l-13.869-2.312c-42.801-7.133-76.441-30.21-101.707-55.476-23.116-23.116-44.196-57.141-50.853-97.084l-2.312-13.869v-619.485c8.221-32.887 25.592-54.403 53.165-68.19 3.829-1.914 22.751-8.090 27.738-8.090 2.312 0 115.576-1.156 254.266-1.156zM733.905 340.948h-480.795v294.718c0 290.095 0 295.874 2.312 305.12 6.431 32.153 28.354 51.74 54.321 64.722 4.623 2.312 10.402 4.623 16.181 5.779 9.246 2.312 15.025 2.312 212.659 2.312h202.257s-1.156-5.779-3.467-12.713l-2.312-11.558-1.156-324.767v-323.612zM637.977 484.262c0 27.114-15.864 38.83-35.828 47.386h-218.438c-19.241-9.621-27.304-18.345-34.673-40.451-5.226-20.91 11.147-44.552 26.582-49.698 3.467-1.156 9.246-4.623 12.713-4.623s49.698-1.156 104.018-1.156c80.903 0 100.551 0 106.33 1.156 20.715 5.178 39.296 21.462 39.296 47.386zM925.761 436.876h-94.772v271.603l1.156 271.603c4.355 13.064 14.801 22.965 25.427 30.050 6.935 3.467 8.090 2.312 20.804 2.312 25.265 0 33.676-10.062 43.919-25.427l2.312-6.935 1.156-271.603v-271.603zM494.664 628.731c105.174 0 106.33 1.156 112.108 3.467 18.132 6.045 30.050 20.359 30.050 45.074 0 24.648-11.685 38.952-30.050 45.074-5.779 2.312-6.935 3.467-109.797 3.467-75.124 0-105.174 0-109.797-1.156-13.306-4.436-29.075-13.26-33.517-26.582l-4.623-13.869c-1.156-5.779-1.156-8.090 0-13.869l4.623-13.869c3.886-11.657 19.654-22.731 31.205-26.582 4.623-1.156 27.738-1.156 109.797-1.156zM495.819 821.743c-82.059 0-107.485 0-112.108 1.156-8.6 2.866-17.218 6.759-21.959 13.869-6.056 9.085-16.812 24.059-12.713 40.451 5.655 22.62 17.725 34.77 40.451 40.451 4.623 1.156 43.919 1.156 105.174 1.156 78.591 0 98.239 0 104.018-1.156 20.715-5.178 39.296-21.462 39.296-47.386 0-27.152-16.053-38.911-35.828-47.386l-106.33-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["news"],"defaultCode":60157,"grid":24},"attrs":[],"properties":{"id":263,"order":75,"ligatures":"","prevSize":24,"code":60157,"name":"news"},"setIdx":0,"setId":2,"iconIdx":264},{"icon":{"paths":["M739.684 184.921c-31.786 0-52.409 1.289-76.28 9.246-24.942 8.313-49.911 16.814-69.345 32.361-5.779 4.623-17.336 11.558-23.115 17.336s-85.526 84.37-176.831 175.675-168.74 169.896-173.363 174.519-11.558 13.869-16.181 20.804l-16.181 24.271c-15.198 22.796-25.051 44.725-32.361 73.968-9.721 38.885-16.181 55.644-16.181 108.641 0 88.707 23.611 144.635 58.944 197.634 25.447 38.169 58.441 69.151 95.928 95.928 52.451 37.465 119.531 61.255 209.192 61.255 33.093 0 54.191-5.081 80.903-12.713 54.124-15.464 98.653-39.063 136.379-70.501 15.954-13.295 342.359-339.851 345.571-347.883 11.33-33.991-7.39-68.19-43.919-68.19-8.464 0-18.515 4.057-24.271 6.935-11.919 7.947-315.777 317.447-350.194 343.26-41.509 27.672-85.788 52.009-156.027 52.009-46.709 0-79.626-11.010-113.264-25.427-8.090-3.467-19.648-12.713-27.738-17.336-33.33-19.046-59.238-48.648-78.591-80.903-22.763-37.939-42.108-89.928-36.984-151.404 7.628-61.017 27.648-106.98 56.632-145.625 3.467-4.623 79.747-82.059 168.74-171.052s166.429-166.429 172.208-171.052c28.215-22.572 56.829-35.828 106.33-35.828 37.394 0 59.984 13.106 84.37 27.738 5.779 3.467 13.869 12.713 19.648 18.492 17.32 17.32 25.721 34.105 36.984 56.632 7.399 14.801 8.090 29.275 8.090 53.165 0 42.178-9.437 60.031-25.427 86.682-12.32 19.71-335.273 339.477-340.948 343.26-8.202 5.467-16.047 8.090-28.894 8.090-38.361 0-67.743-39.032-48.542-77.436 9.832-19.663 327.549-327.679 332.858-340.948 11.33-33.991-7.39-68.19-43.919-68.19-10.059 0-19.731 3.523-26.582 8.090-5.634 3.756-326.401 321.371-338.637 340.948-14.618 24.363-25.427 45.111-25.427 84.37 0 70.657 37.509 107.337 82.059 134.068 18.078 10.847 35.876 16.181 62.411 16.181 35.62 0 57.18-7.785 80.903-19.648 4.623-2.312 11.558-9.246 16.181-12.713s84.37-80.903 175.675-172.208 167.585-169.896 171.052-174.519c29.52-39.36 54.321-87.248 54.321-156.027 0-93.035-40.997-157.303-94.772-197.634-4.623-3.467-13.869-11.558-19.648-15.025-36.164-21.697-74.819-39.296-131.756-39.296z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paperclip"],"defaultCode":60162,"grid":24},"attrs":[],"properties":{"id":268,"order":77,"ligatures":"","prevSize":24,"code":60162,"name":"paperclip"},"setIdx":0,"setId":2,"iconIdx":269},{"icon":{"paths":["M191.856 1109.526c-17.917-5.714-27.678-18.469-34.673-34.673v-217.282l3.467-8.090c7.726-13.519 527.012-531.474 538.582-539.738 21.531-12.919 45.22-24.3 73.968-30.050 5.779-1.156 12.713-2.312 15.025-2.312h23.115c56.651 0 94.834 23.178 123.666 52.009 31.309 31.309 54.321 68.019 54.321 130.6 0 50.221-13.386 75.86-32.361 107.485-8.393 11.749-526.219 530.856-539.738 538.582l-8.090 3.467h-217.282zM811.341 373.309c-33.927 0-50.928 9.321-69.345 27.738l-11.558 11.558c41.083 42.275 81.384 82.576 122.251 122.297l1.415 1.369 11.558-11.558c16.971-16.971 22.438-27.817 27.738-54.321 6.283-37.694-16.476-66.967-38.14-83.214-9.942-7.456-16.92-7.567-28.894-11.558-3.467-1.156-10.402-2.312-15.025-2.312zM723.503 543.205l-62.411-62.411c-135.19 134.98-268.49 268.645-401.503 402.596l-7.635 7.697v123.666h124.822c135.19-134.98 268.49-268.645 401.503-402.596l7.635-7.697-62.411-61.255z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pencil"],"defaultCode":60164,"grid":24},"attrs":[],"properties":{"id":270,"order":21,"ligatures":"","prevSize":24,"code":60164,"name":"pencil"},"setIdx":0,"setId":2,"iconIdx":271},{"icon":{"paths":["M736.217 195.323c27.571 0 53.558 4.432 77.436 10.402 77.254 19.313 134.383 58.736 179.142 110.953 6.935 8.090 16.181 21.959 21.959 30.050 5.779 9.246 16.181 24.271 21.959 36.984 19.035 41.877 28.088 74.003 33.517 128.289 2.953 41.334-6.893 60.089-39.296 68.19-33.244 6.649-56.632-20.073-56.632-53.165 0-34.418-9.94-59.872-18.492-85.526-9.624-28.871-29.15-51.462-46.23-72.813-11.51-14.389-28.377-25.475-42.763-36.984-5.779-4.623-17.336-9.246-25.427-13.869-23.687-13.536-51.359-18.363-80.903-24.271-5.779-1.156-15.025-1.156-20.804-1.156-30.512 0-46.985-15.732-53.165-40.451-3.807-19.035 4.585-32.323 13.869-41.607 9.096-9.096 17.991-15.025 35.828-15.025zM344.415 243.865c98.218 0 105.086-4.089 122.51 4.623 6.228 3.114 14.314 9.913 18.492 16.181 0 0 102.264 253.627 102.862 255.422 1.156 3.467 1.156 9.246 1.156 12.713 0 16.516-6.146 22.511-12.713 32.361-3.467 4.623-16.181 11.558-48.542 31.205l-42.763 26.582 9.246 13.869c24.99 34.985 50.228 66.498 83.214 94.772 8.090 6.935 18.492 17.336 25.427 21.959s18.492 12.713 26.582 18.492l13.869 9.246 26.582-42.763c19.648-32.361 26.582-45.074 31.205-48.542 9.926-6.618 15.446-12.713 32.361-12.713 3.467 0 9.246 0 12.713 1.156 1.838 0.613 255.422 102.862 255.422 102.862 11.251 7.501 15.057 16.279 19.648 30.050 1.156 4.623 1.156 33.517 1.156 115.576 0 122.547 1.18 96.982-8.090 134.068-7.952 31.81-32.457 55.548-55.476 72.813-20.873 15.655-43.141 24.271-79.747 24.271-9.246 0-25.427 0-35.828-1.156-118.68-13.187-218.357-46.057-303.964-93.616-24.838-13.8-48.314-24.967-70.501-41.607-20.304-15.229-48.433-34.198-67.034-49.698-30.365-25.305-70.607-64.349-98.239-95.928-33.742-38.563-58.932-78.111-86.682-122.51-20.18-32.29-39.181-72.508-53.165-109.797-24.738-65.967-45.269-139.278-54.321-220.749-1.156-10.402-1.156-26.582-1.156-35.828 0-81.333 52.034-124.539 117.887-141.002 4.623-1.156 9.246-1.156 10.402-1.156s48.542-1.156 107.485-1.156zM331.702 339.792c-43.919 0-83.214 1.156-86.682 1.156-16.703 0-29.829 15.738-35.828 27.738-3.467 6.935-3.467 8.090-3.467 21.959 0 125.368 47.673 228.201 93.616 310.898 24.618 44.312 58.4 86.953 88.993 123.666 23.591 28.309 64.972 62.619 92.46 85.526 34.939 29.116 75.788 56.542 120.199 76.28 42.665 18.961 83.299 38.74 131.756 50.853 41.517 10.379 84.575 16.539 130.6 23.115 8.090 1.156 18.492 1.156 21.959 1.156 22.881 0 35.765-22.861 40.451-41.607 1.156-4.623 1.156-41.607 1.156-86.682 0-61.255 0-78.591-1.156-79.747-2.693-2.693-168.433-65.607-172.208-67.034-1.567-0.594-46.921 82.75-57.788 93.616-16.129 16.129-40.706 16.053-63.567 4.623-69.348-34.674-130.412-86.462-179.142-143.314-27.714-32.332-51.685-67.542-71.657-107.485-6.635-13.27-11.175-21.563-8.090-36.984 2.735-10.937 5.362-19.231 12.713-26.582 4.623-4.623 18.492-12.713 49.698-31.205 24.271-13.869 43.919-26.582 43.919-26.582-1.427-3.775-64.341-169.516-67.034-172.208-1.156-1.156-18.492-1.156-80.903-1.156zM736.217 388.334c-29.368 0-43.708 16.496-49.698 40.451-6.625 33.129 17.896 52.2 47.386 55.476 31.245 3.124 44.781 18.457 48.542 48.542 3.207 28.872 14.675 40.942 40.451 47.386 31.726 6.345 55.476-18.338 55.476-49.698 0-33.055-11.574-56.274-24.271-77.436-12.107-20.176-34.153-40.706-56.632-49.698-19.050-7.621-34.747-15.025-61.255-15.025z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["phone-call"],"defaultCode":60165,"grid":24},"attrs":[],"properties":{"id":271,"order":127,"ligatures":"","prevSize":24,"code":60165,"name":"phone-call"},"setIdx":0,"setId":2,"iconIdx":272},{"icon":{"paths":["M347.883 243.865l109.797 1.156c11.242 4.496 21.488 10.271 27.738 19.648 2.312 3.467 24.271 57.788 53.165 130.6l49.698 124.822v12.713c0 17.383-5.018 22.553-11.558 32.361-3.467 4.623-16.181 11.558-48.542 31.205l-42.763 26.582 9.246 13.869c5.779 8.090 13.869 19.648 18.492 26.582s15.025 17.336 21.959 25.427c14.301 16.686 34.687 36.765 50.853 49.698 13.638 10.91 31.163 25.632 46.23 34.673 5.779 3.467 10.402 6.935 11.558 6.935 2.331 0 56.632-88.993 56.632-88.993 8.291-8.291 16.828-12.713 33.517-12.713h12.713l124.822 49.698c72.813 28.894 127.133 50.853 130.6 53.165 9.209 6.139 15.175 16.56 19.648 27.738v112.108c0 90.149 0 112.108-1.156 119.043-5.844 23.375-13.12 44.427-26.582 61.255-10.169 12.711-22.194 23.002-34.673 32.361-20.873 15.655-43.141 24.271-79.747 24.271-46.315 0-77.91-8.169-119.043-15.025-48.808-8.134-96.166-24.938-137.535-40.451-70.305-26.363-133.070-63.304-188.388-106.33-10.402-8.090-25.427-18.492-32.361-24.271-30.365-25.305-70.607-64.349-98.239-95.928-33.742-38.563-58.932-78.111-86.682-122.51-20.474-32.759-38.894-72.896-53.165-110.953-24.594-65.586-45.277-138.201-54.321-219.594-1.156-10.402-1.156-26.582-1.156-35.828 0-81.333 52.034-124.539 117.887-141.002 4.623-1.156 9.246-1.156 10.402-1.156s50.853-1.156 110.953-1.156zM976.614 243.865c21.524 0 34.324 14.329 41.607 28.894 2.312 5.779 4.623 9.246 4.623 16.181 0 14.023-2.847 19.562-6.935 27.738-2.312 3.467-33.517 36.984-83.214 86.682l-80.903 80.903h38.14c52.107 0 61.38-0.391 80.903 28.894 3.467 5.779 2.312 6.935 2.312 19.648 0 29.899-15.71 39.909-38.14 47.386-4.623 1.156-42.763 1.156-109.797 1.156-101.707 0-102.862-1.156-108.641-3.467-13.159-4.386-23.335-14.528-27.738-27.738-2.312-5.779-3.467-6.935-3.467-109.797 0-71.657 0-105.174 1.156-109.797 5.612-16.839 14.385-25.771 27.738-34.673 5.779-3.467 6.935-2.312 19.648-2.312 19.040 0 22.686 1.883 32.361 11.558 17.747 17.747 16.181 27.942 16.181 71.657v38.14l80.903-80.903c45.074-45.074 83.214-82.059 85.526-83.214 7.808-3.904 15.028-6.935 27.738-6.935zM331.702 339.792c-43.919 0-83.214 1.156-86.682 1.156-16.703 0-29.829 15.738-35.828 27.738-3.467 6.935-3.467 8.090-3.467 21.959 0 125.368 47.673 228.201 93.616 310.898 24.618 44.312 58.4 86.953 88.993 123.666 23.591 28.309 64.972 62.619 92.46 85.526 71.26 59.383 163.921 104.547 268.135 130.6l32.361 8.090c19.98 4.994 49.644 7.119 69.345 10.402 6.935 1.156 17.336 1.156 25.427 1.156 31.876 0 43.505-15.679 49.698-40.451 1.156-4.623 1.156-41.607 1.156-86.682 0-61.255 0-78.591-1.156-79.747-2.693-2.693-168.433-65.607-172.208-67.034-1.567-0.594-46.921 82.75-57.788 93.616-16.129 16.129-40.706 16.053-63.567 4.623-21.757-10.878-34.839-20.144-56.632-34.673-35.806-23.871-63.647-43.864-92.46-76.28-32.968-37.091-64.929-68.602-87.837-114.42-8.425-16.847-26.793-38.244-21.959-62.411 2.735-10.937 5.362-19.231 12.713-26.582 4.623-4.623 18.492-12.713 49.698-31.205 24.271-13.869 43.919-26.582 43.919-26.582-1.427-3.775-64.341-169.516-67.034-172.208-1.156-1.156-18.492-1.156-80.903-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["phone-incoming"],"defaultCode":60166,"grid":24},"attrs":[],"properties":{"id":272,"order":128,"ligatures":"","prevSize":24,"code":60166,"name":"phone-incoming"},"setIdx":0,"setId":2,"iconIdx":273},{"icon":{"paths":["M594.059 243.865l261.201 1.156 11.558 2.312c54.748 10.95 90.738 40.61 120.199 77.436 15.517 19.396 27.598 46.545 32.361 75.124l2.312 13.869v263.512c0 251.955 1.156 263.512-1.156 275.070-2.951 17.703-9.647 35.373-18.492 50.853-12.072 21.125-18.98 34.005-35.828 50.853-20.805 20.805-46.89 35.63-76.28 47.386-5.779 2.312-16.181 4.623-23.115 5.779l-13.869 2.312h-529.336l-11.558-2.312c-55.194-9.199-91.289-41.297-120.199-77.436-15.517-19.396-27.598-46.545-32.361-75.124l-2.312-13.869v-527.025l2.312-13.869c9.188-55.127 41.208-91.218 77.436-120.199 19.396-15.517 46.545-27.598 75.124-32.361 6.935-1.156 13.869-2.312 16.181-2.312s121.354-1.156 265.824-1.156zM591.747 340.948c-251.955 0-256.578 0-265.824 2.312-34.379 8.595-63.342 34.703-70.501 70.501-2.312 9.246-2.312 12.713-2.312 150.248v139.847l60.099-60.099c65.182-65.182 55.67-60.196 108.641-86.682 12.155-6.078 28.744-8.090 46.23-8.090 36.837 0 65.271 11.766 86.682 28.894 8.090 5.779 25.427 20.804 71.657 67.034l60.099 60.099 11.558-11.558c30.878-25.732 51.907-47.386 108.641-47.386 51.72 0 81.421 21.321 107.485 47.386l11.558 10.402v-139.847c0-137.535 0-141.002-2.312-150.248-7.241-36.201-35.515-59.609-68.19-70.501-6.935-2.312-19.648-2.312-263.512-2.312zM782.447 480.795c0 33.036-19.1 52.009-52.009 52.009-25.362 0-49.609-27.030-43.919-55.476 5.686-17.064 9.743-27.987 25.427-35.828 3.467-2.312 10.402-4.623 13.869-4.623h12.713c22.716 0 43.919 21.083 43.919 43.919zM469.237 644.912c-8.686 0-23.954 5.462-28.894 10.402-2.312 2.312-46.23 45.074-95.928 94.772l-91.305 90.149v45.074c0 41.607 0 46.23 2.312 55.476 6.945 34.722 35.818 63.564 70.501 70.501 9.246 2.312 12.713 2.312 263.512 2.312s254.266 0 263.512-2.312c27.765-5.553 52.77-25.594 62.411-49.698 11.711-29.279 10.402-17.050 10.402-76.28v-45.074l-43.919-42.763c-24.271-24.271-46.23-45.074-49.698-47.386-7.007-4.672-14.489-8.090-25.427-8.090-20.472 0-31.37 10.566-42.763 21.959l-10.402 9.246 34.673 33.517c28.894 28.894 33.517 34.673 36.984 41.607 2.312 4.623 4.623 11.558 4.623 15.025v13.869c0 12.704-12.595 28.046-20.804 33.517-6.594 4.396-16.926 6.935-26.582 6.935-12.881 0-16.98-4.119-25.427-6.935-16.548-11.033-254.489-253.801-264.668-258.889-4.94-3.294-17.417-6.935-23.115-6.935z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["photo"],"defaultCode":60170,"grid":24},"attrs":[],"properties":{"id":276,"order":48,"ligatures":"","prevSize":24,"code":60170,"name":"photo"},"setIdx":0,"setId":2,"iconIdx":277},{"icon":{"paths":["M591.747 292.406c-28.851 0-42.605 15.707-49.698 36.984-1.156 5.779-1.156 26.582-1.156 152.56v146.781h-146.781c-125.977 0-146.781 0-152.56 1.156-20.526 6.842-35.828 18.637-35.828 47.386 0 29.171 14.366 40.232 35.828 47.386 5.779 1.156 26.582 1.156 152.56 1.156h146.781v146.781c0 125.977 0 146.781 1.156 152.56 6.842 20.526 18.637 35.828 47.386 35.828 29.171 0 40.232-14.366 47.386-35.828 1.156-5.779 1.156-26.582 1.156-152.56v-146.781h146.781c125.977 0 146.781 0 152.56-1.156 20.526-6.842 35.828-18.637 35.828-47.386 0-29.171-14.366-40.232-35.828-47.386-5.779-1.156-26.582-1.156-152.56-1.156h-146.781v-146.781c0-125.977 0-146.781-1.156-152.56-6.224-18.669-19.729-36.984-45.074-36.984z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plus"],"defaultCode":60171,"grid":24},"attrs":[],"properties":{"id":277,"order":194,"ligatures":"","prevSize":24,"code":60171,"name":"plus"},"setIdx":0,"setId":2,"iconIdx":278},{"icon":{"paths":["M591.747 243.865c26.239 0 38.528 19.658 45.074 39.296 1.156 4.623 1.156 75.124 1.156 202.257 0 141.002 0 196.479-1.156 201.102-6.982 20.947-16.816 32.521-39.296 38.14-30.347 6.069-48.010-15.739-55.476-38.14-1.156-4.623-1.156-60.099-1.156-201.102 0-127.133 0-197.634 1.156-202.257 7.373-22.118 20.371-39.296 49.698-39.296zM349.038 339.792c-2.312 0-8.090 1.156-10.402 1.156s-8.090 3.467-11.558 4.623-10.402 5.779-16.181 11.558l-23.115 23.115c-31.987 31.987-61.72 68.197-79.747 113.264-2.312 5.779-6.935 13.869-8.090 17.336l-6.935 20.804c-14.99 44.973-28.709 100.826-24.271 162.962 4.958 54.533 13.377 98.246 31.205 139.847 15.582 36.359 33.98 64.262 54.321 94.772 11.399 17.099 30.238 34.861 45.074 49.698 31.212 31.212 65.419 52.936 107.485 73.968 54.020 27.010 100.933 40.451 182.609 40.451 45.984 0 52.29 1.086 84.37-6.935l32.361-8.090c56.875-14.219 98.013-41.775 139.847-71.657 33.405-23.861 63.174-54.309 85.526-87.837 4.623-6.935 12.713-16.181 16.181-23.115 14.435-28.871 31.225-55.541 41.607-90.149 13.321-44.406 25.37-94.347 20.804-153.716-12.131-121.313-52.152-204.712-119.043-271.603l-23.115-23.115c-11.021-11.021-24.563-20.284-45.074-16.181-3.467 1.156-11.558 2.312-15.025 4.623-9.586 4.792-16.367 14.725-21.959 23.115-3.467 5.779-2.312 6.935-2.312 19.648 0 30.378 2.64 22.288 26.582 46.23 47.388 42.65 75.145 93.109 94.772 161.806 6.233 21.813 9.246 41.68 9.246 69.345 0 29.668-2.432 48.226-5.779 71.657-1.156 8.090-5.779 19.648-8.090 27.738-14.037 49.128-38.317 94.949-70.501 127.133l-21.959 21.959c-13.876 13.876-34.139 25.843-50.853 36.984-22.653 15.101-47.224 23.832-76.28 33.517-28.776 9.592-50.33 12.713-91.305 12.713-100.947 0-161.582-35.641-217.282-82.059-45.217-37.68-73.853-89.799-94.772-152.56-10.171-30.512-11.558-48.131-11.558-90.149 0-49.136 4.777-77.409 19.648-112.108 3.467-8.090 6.935-19.648 10.402-26.582 19.793-39.588 36.453-61.879 69.345-94.772 19.648-19.648 25.427-24.271 27.738-30.050 3.467-6.935 2.312-8.090 2.312-20.804 0-29.171-14.366-40.232-35.828-47.386-3.467-1.156-8.090-1.156-10.402-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["power"],"defaultCode":60173,"grid":24},"attrs":[],"properties":{"id":279,"order":93,"ligatures":"","prevSize":24,"code":60173,"name":"power"},"setIdx":0,"setId":2,"iconIdx":280},{"icon":{"paths":["M203.413 293.562c29.987 0 37.759 15.801 48.542 34.673v35.828c0 19.648 1.156 35.828 1.156 35.828 16.776-18.453 41.319-42.331 61.255-58.944 15.71-13.091 29.252-21.043 46.23-32.361 38.258-25.504 89.021-46.813 141.002-55.476 23.047-3.841 39.041-8.090 67.034-8.090h30.050c55.112 0 99.938 12.894 141.002 26.582 53.071 17.691 97.236 48.283 136.379 80.903 58.709 48.924 107.014 117.389 130.6 199.946 6.718 23.513 16.181 52.61 16.181 80.903 0 22.099-22.562 43.919-45.074 43.919-19.882 0-30.491-8.532-40.451-18.492-7.894-7.894-9.389-15.018-11.558-32.361-6.572-52.571-29.075-95.621-53.165-131.756-10.834-16.25-23.471-35.029-36.984-48.542-29.975-29.975-63.748-56.215-105.174-73.968-40.232-17.243-85.451-31.205-142.158-31.205-42.281 0-83.153 6.248-114.42 19.648-32.517 13.936-65.224 28.926-90.149 49.698-6.935 5.779-18.492 13.869-25.427 19.648-15.128 12.606-27.32 30.787-40.451 43.919-4.623 4.623-6.935 9.246-6.935 9.246s19.648 1.156 43.919 1.156c40.551 0 46.257 0.009 63.567 5.779 14.774 4.924 25.427 22.163 25.427 42.763 0 29.112-16.738 40.252-38.14 47.386-3.467 1.156-42.763 1.156-105.174 1.156s-101.707 0-105.174-1.156c-20.11-6.703-28.859-16.111-38.14-34.673l-1.156-106.33c0-102.862 0-105.174 2.312-113.264 2.58-10.323 10.020-16.955 16.181-23.115 7.487-7.487 12.641-9.246 28.894-9.246zM204.569 677.273c-22.602 0-36.004 11.91-43.919 27.738-2.312 5.779-4.623 10.402-4.623 16.181 0 41.255 15.514 80.666 27.738 113.264 28.113 74.967 75.993 130.19 131.756 177.986 16.643 14.264 31.893 26.349 50.853 35.828 14.366 7.183 36.441 20.817 50.853 26.582 49.679 19.871 103.889 34.673 173.363 34.673 84.874 0 139.961-18.549 197.634-47.386 11.558-5.779 26.582-13.869 33.517-18.492l24.271-16.181c29.169-19.446 56.528-47.27 79.747-72.813 0 0 1.156 16.181 1.156 35.828v35.828c10.55 18.462 18.897 34.673 48.542 34.673 16.337 0 21.355-1.707 28.894-9.246 6.15-6.15 13.599-12.788 16.181-23.115 2.312-8.090 2.312-10.402 2.312-113.264l-1.156-106.33c-5.728-11.455-13.043-25.922-25.427-30.050-3.467-1.156-9.246-3.467-12.713-4.623s-42.763-1.156-105.174-1.156-101.707 0-105.174 1.156c-20.817 6.939-38.14 18.66-38.14 47.386 0 16.782 4.377 25.18 12.713 33.517 18.654 18.654 28.495 15.025 76.28 15.025 24.271 0 43.919 1.156 43.919 1.156-5.639 7.518-17.057 21.68-25.427 30.050-5.779 5.779-15.025 17.336-21.959 23.115-24.37 20.309-48.761 36.778-77.436 53.165-32.143 18.368-71.333 26.336-114.42 33.517-6.935 1.156-24.271 1.156-38.14 1.156-69.958 0-120.366-14.663-165.273-41.607-28.543-17.125-51.709-33.216-76.28-57.788-41.898-41.898-69.371-87.924-87.837-152.56-2.312-8.090-6.935-23.115-8.090-32.361-2.166-17.325-3.657-24.46-11.558-32.361-8.832-8.832-19.049-18.492-36.984-18.492z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["refresh"],"defaultCode":60179,"grid":24},"attrs":[],"properties":{"id":285,"order":43,"ligatures":"","prevSize":24,"code":60179,"name":"refresh"},"setIdx":0,"setId":2,"iconIdx":286},{"icon":{"paths":["M594.059 246.176c-19.648 0-38.14 1.156-40.451 1.156-29.66 0-60.735 10.416-86.682 16.181-25.712 5.713-53.121 17.825-75.124 30.050-23.080 12.823-43.878 22.697-62.411 38.14-18.504 15.421-35.855 27.384-52.009 46.23-14.744 17.201-29.417 31.413-41.607 49.698-4.623 6.935-11.558 16.181-15.025 20.804-10.245 13.661-19.078 37-27.738 54.321-17.624 35.248-33.517 76.746-33.517 125.977 0 23.384 10.645 35.95 26.582 43.919 5.779 2.312 10.402 4.623 16.181 4.623 35.068 0 50.332-20.099 54.321-52.009 8.132-65.055 36.332-115.918 69.345-157.183 4.623-5.779 12.713-16.181 18.492-21.959s16.181-13.869 21.959-19.648c34.96-34.96 86.182-56.081 139.847-73.968 26.17-8.724 59.48-10.402 93.616-10.402 23.59 0 37.994 5.097 58.944 8.090 42.242 6.035 78.965 25.42 109.797 43.919 46.916 28.148 92.996 78.507 117.887 128.289 23.388 46.776 39.296 97.763 39.296 168.74 0 20.675-5.412 39.038-8.090 57.788-4.655 32.589-15.305 52.929-27.738 80.903-23.218 52.24-59.682 86.141-100.551 120.199-6.935 5.779-18.492 13.869-25.427 17.336l-25.427 12.713c-39.162 19.581-81.669 35.828-139.847 35.828-38.696 0-65.432-1.687-95.928-10.402-29.251-8.357-52.656-19.971-77.436-32.361-47.17-23.584-84.96-61.617-114.42-102.862h69.345c47.386 0 71.657 0 76.28-1.156 10.038-3.346 18.301-6.744 25.427-13.869 10.737-10.737 19.769-37.96 8.090-55.476-4.268-6.403-13.267-18.291-20.804-20.804l-13.869-4.623c-4.623-1.156-40.451-1.156-131.756-1.156l-127.133 1.156c-18.214 7.286-29.31 15.117-35.828 34.673-2.312 6.935-2.312 18.492-2.312 136.379l1.156 129.445c7.18 16.753 21.173 35.828 43.919 35.828 25.256 0 42.217-13.389 48.542-32.361 2.312-5.779 3.467-6.935 3.467-63.567v-57.788l9.246 10.402c10.545 13.181 34.209 34.533 47.386 45.074 71.397 57.117 159.485 100.551 288.939 100.551 34.881 0 59.868-5.985 90.149-12.713 47.522-10.561 93.783-30.003 129.445-55.476 35.785-25.56 74.263-52.787 100.551-87.837 21.672-28.895 47.227-60.832 61.255-98.239 7.748-20.664 16.972-39.755 23.115-61.255 11.782-41.236 15.025-60.018 15.025-117.887 0-79.337-12.454-121.137-35.828-175.675-3.467-8.090-8.090-19.648-11.558-25.427-20.288-33.814-39.651-66.233-67.034-93.616-6.935-6.935-16.181-18.492-23.115-24.271-33.014-27.513-72.884-57.983-115.576-76.28-51.191-21.939-99.006-38.14-173.363-38.14z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rotate-clockwise"],"defaultCode":60181,"grid":24},"attrs":[],"properties":{"id":287,"order":32,"ligatures":"","prevSize":24,"code":60181,"name":"rotate-clockwise"},"setIdx":0,"setId":2,"iconIdx":288},{"icon":{"paths":["M490.041 195.323c68.083 0 124.139 14.684 171.052 38.14 49.674 24.837 90.615 56.035 124.822 97.084 21.569 25.883 39.601 50.095 54.321 83.214 9.454 21.272 14.757 33.866 21.959 55.476 8.060 24.181 10.432 53.345 15.025 80.903 1.156 6.935 1.156 19.648 1.156 30.050 0 86.635-26.411 151.506-58.944 205.725-3.467 5.779-10.402 13.869-13.869 19.648l-6.935 11.558 131.756 131.756c115.576 116.731 131.756 134.068 135.223 139.847 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-23.115-19.648-139.847-135.223l-131.756-131.756c-49.142 30.713-100.537 65.010-172.208 73.968-22.044 2.755-38.726 5.779-64.722 5.779-66.667 0-120.23-15.619-165.273-38.14-49.31-24.656-89.925-53.127-123.666-93.616-5.779-6.935-15.025-17.336-20.804-24.271-38.098-45.718-61.27-111.054-71.657-183.765-1.156-8.090-3.467-23.115-3.467-32.361 0-32.607 3.549-64.064 8.090-91.305 1.156-6.935 5.779-19.648 8.090-28.894 24.338-97.349 85.451-163.733 157.183-214.971 8.090-5.779 19.648-12.713 26.582-16.181l25.427-12.713c30.855-15.428 67.050-23.503 106.33-30.050 6.935-1.156 18.492-3.467 25.427-3.467s18.492-1.156 25.427-1.156zM498.131 293.562h-30.050c-22.528 0-50.902 8.876-69.345 15.025-29.25 9.75-53.871 24.742-77.436 40.451-15.374 10.248-30.447 24.189-41.607 38.14-40.19 50.238-73.968 101.542-73.968 193.011 0 109.122 44.907 176.234 106.33 225.372 12.431 9.944 27.736 20.802 41.607 27.738l20.804 10.402c33.585 16.793 68.887 25.427 117.887 25.427 55.643 0 100.721-12.12 136.379-33.517 5.779-3.467 16.181-8.090 24.271-13.869 40.309-28.792 69.78-62.749 95.928-106.33 17.32-28.867 24.733-64.029 31.205-102.862 1.156-6.935 1.156-20.804 1.156-32.361 0-38.019-6.629-61.922-15.025-91.305-2.312-8.090-6.935-19.648-10.402-26.582l-10.402-20.804c-10.648-21.295-26.632-42.813-42.763-58.944-4.623-4.623-13.869-15.025-20.804-20.804-28.805-24.005-62.467-40.706-99.395-55.476-5.779-2.312-16.181-4.623-23.115-5.779s-16.181-4.623-23.115-5.779-21.959-1.156-38.14-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["search"],"defaultCode":60188,"grid":24},"attrs":[],"properties":{"id":294,"order":80,"ligatures":"","prevSize":24,"code":60188,"name":"search"},"setIdx":0,"setId":2,"iconIdx":295},{"icon":{"paths":["M588.28 243.865c231.119 0 295.745-4.078 330.546 4.623 32.576 8.143 66.075 22.156 86.682 42.763 26.768 26.768 52.371 59.594 61.255 104.018 5.543 27.715 4.623 39.441 4.623 88.993 0 68.773 0.955 90.551-19.648 131.756-3.467 6.935-8.090 17.336-11.558 21.959-9.288 12.384-13.973 17.179-24.271 30.050l-9.246 9.246 9.246 9.246c21.109 26.386 42.717 54.087 50.853 94.772 5.543 27.715 4.623 39.441 4.623 88.993 0 71.853 0.083 92.293-21.959 136.379-28.311 56.623-77.639 88.571-149.093 102.862-6.935 1.156-107.485 1.156-310.898 1.156-228.723 0-294.771 4.031-329.391-4.623-52.394-13.098-94.359-39.763-119.043-80.903-11.515-19.191-23.888-40.851-28.894-65.878-5.543-27.712-4.623-40.436-4.623-90.149 0-70.039-1.195-88.915 19.648-130.6 3.467-6.935 8.090-17.336 11.558-21.959 9.288-12.384 13.973-17.179 24.271-30.050l9.246-9.246-9.246-9.246c-21.109-26.386-42.717-54.087-50.853-94.772-5.543-27.715-4.623-39.441-4.623-88.993 0-72.377 2.652-87.534 20.804-132.912 5.451-13.626 17.817-31.686 27.738-41.607l17.336-17.336c21.971-21.971 52.841-35.17 87.837-43.919 4.623-1.156 11.558-3.467 16.181-3.467s144.47-1.156 310.898-1.156zM595.214 339.792c-162.962 0-299.341 1.156-303.964 1.156-29.365 0-49.436 18.231-64.722 33.517-6.46 6.46-16.59 27.807-19.648 36.984-2.312 5.779-2.312 15.025-2.312 69.345 0 53.165 1.156 62.411 2.312 70.501 5.571 22.285 12.561 32.929 24.271 48.542 10.654 14.204 30.389 21.755 49.698 26.582 8.090 1.156 39.296 2.312 308.587 2.312s300.497-1.156 308.587-2.312c13.284-3.322 23.699-6.506 33.517-13.869 4.623-3.467 12.713-8.090 16.181-12.713 8.282-11.044 13.351-17.457 19.648-30.050 2.312-4.623 3.467-13.869 4.623-18.492 1.156-8.090 2.312-17.336 2.312-70.501 0-75.263 2.525-56.1-9.246-85.526-12.185-30.462-38.831-45.826-72.813-54.321zM349.038 532.804c-28.027 0-48.542-19.873-48.542-47.386 0-18.168 9.451-29.098 18.492-38.14 7.679-7.679 14.746-10.402 31.205-10.402 27.38 0 45.074 20.299 45.074 48.542 0 28.808-18.358 47.386-46.23 47.386zM588.28 725.815c-262.357 0-301.652 1.156-308.587 2.312-20.782 5.195-31.427 13.17-46.23 24.271-14.725 11.044-21.548 30.711-26.582 50.853-1.156 8.090-2.312 17.336-2.312 70.501 0 75.263-2.525 56.1 9.246 85.526 13.102 32.754 40.755 44.020 75.124 55.476h600.993c7.589-2.529 19.781-5.823 26.582-8.090 27.729-9.243 46.363-36.227 55.476-63.567 2.312-5.779 2.312-15.025 2.312-69.345 0-53.165-1.156-62.411-2.312-70.501-5.571-22.285-12.561-32.929-24.271-48.542-10.654-14.204-30.389-21.755-49.698-26.582-8.090-1.156-40.451-2.312-309.743-2.312zM349.038 821.743c-23.67 0-35.628 12.315-43.919 28.894-3.467 6.935-4.623 8.090-4.623 19.648 0 27.486 18.343 41.859 40.451 47.386 31.113 6.223 54.321-15.501 54.321-47.386 0-16.865-1.519-22.322-9.246-30.050-8.832-8.832-19.049-18.492-36.984-18.492z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["server"],"defaultCode":60191,"grid":24},"attrs":[],"properties":{"id":297,"order":53,"ligatures":"","prevSize":24,"code":60191,"name":"server"},"setIdx":0,"setId":2,"iconIdx":298},{"icon":{"paths":["M594.059 196.479c31.29 0 51.158 8.319 69.345 21.959 4.623 3.467 11.558 6.935 15.025 10.402 13.662 13.662 31.321 37.562 35.828 60.099 2.060 10.301 5.948 16.349 11.558 21.959 7.145 7.145 10.319 10.402 25.427 10.402 11.032 0 42.813-16.198 53.165-19.648 8.090-2.312 15.025-3.467 26.582-3.467 64.232 0 103.181 30.688 124.822 73.968 7.59 15.182 12.713 33.899 12.713 56.632 0 31.275-10.336 51.88-20.804 72.813-2.312 3.467-2.312 6.935-2.312 13.869 0 35.328 31.588 34.286 55.476 46.23 37.099 18.549 56.052 45.068 67.034 88.993 1.156 4.623 3.467 13.869 3.467 19.648 0 45.196-14.825 77.236-38.14 100.551-16.518 13.215-34.343 27.672-57.788 32.361-11.656 2.331-13.438 4.192-19.648 10.402-7.145 7.145-10.402 10.319-10.402 25.427 0 11.38 16.044 42.353 19.648 53.165 2.312 8.090 3.467 15.025 3.467 26.582 0 65.645-30.119 98.743-71.657 123.666-16.179 9.708-35.224 13.869-60.099 13.869-31.242 0-48.858-9.404-69.345-19.648-6.935-3.467-8.090-3.467-16.181-3.467-35.328 0-34.286 31.588-46.23 55.476-20.589 41.177-54.829 69.345-115.576 69.345-39.865 0-68.781-13.305-88.993-33.517-13.656-13.656-31.27-36.152-35.828-58.944-2.060-10.301-5.948-16.349-11.558-21.959-7.145-7.145-10.319-10.402-25.427-10.402-11.38 0-42.353 16.044-53.165 19.648-8.090 2.312-15.025 3.467-26.582 3.467-65.185 0-101.67-29.975-123.666-73.968-8.394-16.787-13.869-32.048-13.869-57.788 0-31.242 9.404-48.858 19.648-69.345 3.467-6.935 3.467-8.090 3.467-16.181 0-35.328-31.588-34.286-55.476-46.23-41.258-20.63-69.345-54.829-69.345-115.576 0-32.821 8.11-55.503 21.959-73.968 3.467-4.623 6.935-11.558 10.402-15.025 13.662-13.662 37.562-31.321 60.099-35.828 10.301-2.060 16.349-5.948 21.959-11.558 7.145-7.145 10.402-10.319 10.402-25.427 0-11.38-16.044-42.353-19.648-53.165-2.312-8.090-3.467-15.025-3.467-26.582 0-54.768 22.699-88.392 54.321-112.108 20.633-15.474 42.258-25.427 77.436-25.427 31.242 0 48.858 9.404 69.345 19.648 6.935 3.467 8.090 3.467 16.181 3.467 36.175 0 32.702-30.732 45.074-55.476 18.531-37.063 49.146-57.071 93.616-68.19 4.623-1.156 10.402-1.156 11.558-1.156h16.181zM871.44 429.941c0-21.52-13.158-34.673-34.673-34.673-8.090 0-9.246 0-23.115 6.935-14.194 8.111-21.268 9.401-34.673 13.869-3.467 1.156-11.558 2.312-17.336 2.312-62.558 10.426-108.799-33.832-129.445-75.124-5.232-10.467-8.492-37.763-18.492-42.763-7.304-3.652-10.42-8.090-21.959-8.090-24.15 0-34.177 12.547-38.14 32.361-4.743 23.711-20.087 42.046-34.673 56.632-21.017 21.017-48.756 36.984-91.305 36.984-30.547 0-41.53-6.736-63.567-16.181-12.713-6.935-13.869-6.935-21.959-6.935-21.52 0-34.673 13.158-34.673 34.673 0 8.090 0 9.246 6.935 23.115 8.111 14.194 9.401 21.268 13.869 34.673 1.156 3.467 2.312 11.558 2.312 17.336 7.434 44.603-16.614 82.492-39.296 105.174-16.532 16.532-32.459 24.303-56.632 32.361-18.827 6.276-30.050 12.348-30.050 36.984 0 30.269 30.309 30.178 50.853 40.451 34.194 17.097 58.627 45.278 71.657 84.37 3.467 10.402 2.312 13.869 2.312 34.673 0 32.975-0.938 37.978-13.869 61.255-8.090 16.181-8.090 16.181-8.090 24.271 0 21.52 13.158 34.673 34.673 34.673 16.6 0 29.59-13.753 43.919-17.336 12.413-3.103 24.056-5.779 41.607-5.779 62.734 0 98.020 33.078 119.043 75.124 5.232 10.467 8.492 37.763 18.492 42.763 8.666 4.333 8.951 6.935 24.271 6.935 24.085 0 30.622-9.794 34.673-30.050 7.633-38.165 38.068-65.266 69.345-80.903 14.468-7.234 26.676-13.869 47.386-13.869h21.959c20.878 0 31.658 6.005 49.698 15.025 16.181 8.090 16.181 8.090 24.271 8.090 21.52 0 34.673-13.158 34.673-34.673 0-16.6-13.753-29.59-17.336-43.919-3.103-12.413-5.779-24.056-5.779-41.607 0-45.577 15.961-71.437 39.296-94.772 14.895-14.895 32.287-26.567 55.476-31.205 19.83-3.967 30.050-12.346 30.050-35.828 0-34.566-26.166-32.888-50.853-42.763-27.833-11.133-46.73-34.513-60.099-61.255-9.137-18.276-13.869-31.315-13.869-57.788 0-27.203 5.178-43.156 16.181-62.411 6.935-13.869 6.935-15.025 6.935-23.115zM594.059 485.418c45.105 0 75.055 13.823 102.862 32.361 9.246 6.935 17.336 11.558 28.894 23.115 22.765 22.765 33.708 43.817 46.23 75.124 35.967 89.914-19.536 186.729-73.968 220.749-21.744 14.497-45.217 25.066-75.124 30.050-6.935 1.156-18.492 3.467-25.427 3.467-62.256 0-108.283-21.601-139.847-53.165-5.779-5.779-13.869-12.713-17.336-17.336-18.545-24.727-34.209-51.539-40.451-88.993-1.156-6.935-3.467-19.648-3.467-26.582 0-67.643 25.087-111.769 58.944-145.625 31.39-31.39 75.955-53.165 138.691-53.165zM588.28 581.345c-31.567 0-47.617 12.887-65.878 26.582-16.976 12.733-28.894 41.046-28.894 69.345 0 22.385 6.095 39.718 16.181 53.165 3.467 4.623 8.090 12.713 12.713 16.181 17.636 13.225 35.739 26.582 67.034 26.582 32.071 0 48.514-12.691 67.034-26.582 16.976-12.733 28.894-41.046 28.894-69.345 0-22.385-6.095-39.718-16.181-53.165-3.467-4.623-8.090-12.713-12.713-16.181-18.014-13.511-36.071-26.582-68.19-26.582z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["settings"],"defaultCode":60192,"grid":24},"attrs":[],"properties":{"id":298,"order":94,"ligatures":"","prevSize":24,"code":60192,"name":"settings"},"setIdx":0,"setId":2,"iconIdx":299},{"icon":{"paths":["M688.831 421.851c0-11.191-3.467-27.228-3.467-41.607 0-28.669 9.508-54.844 19.648-75.124 31.030-62.057 84.829-108.641 177.986-108.641 45.105 0 75.055 13.823 102.862 32.361 9.246 6.935 17.336 11.558 28.894 23.115 22.765 22.765 33.708 43.817 46.23 75.124 12.879 32.194 13.15 89.634 0 122.51-26.211 65.528-70.889 115.255-149.093 128.289-6.935 1.156-18.492 3.467-25.427 3.467-64.473 0-109.406-22.724-142.158-55.476l-12.713-11.558c-13.649 6.825-56.529 29.268-127.133 65.878l-114.42 57.788v5.779c0 12.395 3.92 31.298 2.312 47.386-1.156 8.090-2.312 17.336-2.312 19.648v5.779l114.42 57.788c71.085 36.859 114.178 58.397 127.133 67.034l10.402-11.558c33.218-33.218 78.227-56.632 144.47-56.632 40.953 0 73.551 16.288 99.395 33.517 9.246 6.935 17.336 11.558 28.894 23.115 22.765 22.765 33.708 43.817 46.23 75.124 12.879 32.194 13.15 89.634 0 122.51-26.211 65.528-70.889 115.255-149.093 128.289-6.935 1.156-18.492 3.467-25.427 3.467-62.256 0-108.283-21.601-139.847-53.165-5.779-5.779-13.869-12.713-17.336-17.336-18.545-24.727-34.209-51.539-40.451-88.993-1.156-6.935-3.467-18.492-3.467-25.427 0-14.381 3.467-30.388 3.467-41.607v-5.779l-110.953-56.632c-72.189-36.776-110.567-58.13-130.6-67.034l-12.713 12.713c-25.943 25.943-58.118 43.78-100.551 50.853-6.935 1.156-18.492 3.467-25.427 3.467-62.256 0-108.283-21.601-139.847-53.165-5.779-5.779-13.869-12.713-17.336-17.336-23.826-31.768-42.763-66.285-42.763-122.51 0-36.557 6.264-58.761 18.492-83.214 13.351-26.703 28.042-48.769 50.853-65.878 33.382-25.036 72.053-43.919 130.6-43.919 40.953 0 73.551 16.288 99.395 33.517 8.090 5.779 18.492 12.713 26.582 20.804l12.713 12.713c20.532-9.126 57.991-30.044 130.6-67.034l110.953-56.632v-5.779zM877.219 292.406c-31.567 0-47.617 12.887-65.878 26.582-16.976 12.733-28.894 41.046-28.894 69.345 0 22.385 6.095 39.718 16.181 53.165 3.467 4.623 8.090 12.713 12.713 16.181 17.636 13.225 35.739 26.582 67.034 26.582 32.071 0 48.514-12.691 67.034-26.582 16.976-12.733 28.894-41.046 28.894-69.345 0-22.385-6.095-39.718-16.181-53.165-3.467-4.623-8.090-12.713-12.713-16.181-18.014-13.511-36.071-26.582-68.19-26.582zM299.341 581.345c-31.567 0-47.617 12.887-65.878 26.582-16.976 12.733-28.894 41.046-28.894 69.345 0 22.385 6.095 39.718 16.181 53.165 3.467 4.623 8.090 12.713 12.713 16.181 17.636 13.225 35.739 26.582 67.034 26.582 32.071 0 48.514-12.691 67.034-26.582 16.976-12.733 28.894-41.046 28.894-69.345 0-22.385-6.095-39.718-16.181-53.165-3.467-4.623-8.090-12.713-12.713-16.181-18.014-13.511-36.071-26.582-68.19-26.582zM877.219 870.284c-31.567 0-47.617 12.887-65.878 26.582-16.976 12.733-28.894 41.046-28.894 69.345 0 22.385 6.095 39.718 16.181 53.165 3.467 4.623 8.090 12.713 12.713 16.181 17.636 13.225 35.739 26.582 67.034 26.582 32.071 0 48.514-12.691 67.034-26.582 16.976-12.733 28.894-41.046 28.894-69.345 0-22.385-6.095-39.718-16.181-53.165-3.467-4.623-8.090-12.713-12.713-16.181-18.014-13.511-36.071-26.582-68.19-26.582z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["share"],"defaultCode":60193,"grid":24},"attrs":[],"properties":{"id":299,"order":163,"ligatures":"","prevSize":24,"code":60193,"name":"share"},"setIdx":0,"setId":2,"iconIdx":300},{"icon":{"paths":["M588.28 195.323c28.644 0 50.19 26.607 68.19 41.607 6.935 5.779 19.648 12.713 26.582 17.336 25.847 17.232 54.178 33.32 85.526 45.074 9.246 3.467 23.115 10.402 31.205 12.713 54.594 15.598 102.123 27.738 174.519 27.738 41.151 0 36.173-1.312 52.009 9.246 18.586 12.39 26.022 44.616 30.050 72.813 3.085 21.594 8.936 44.601 11.558 68.19 1.156 15.025 1.156 27.738 1.156 60.099 0 138.866-36.041 232.678-86.682 321.3-17.473 30.577-37.483 56.829-60.099 83.214-6.935 8.090-18.492 23.115-27.738 32.361-28.33 28.33-54.465 50.956-86.682 73.968-47.848 34.177-103.793 65.579-166.429 84.37-18.2 5.46-35.416 13.869-52.009 13.869-16.455 0-33.898-8.436-52.009-13.869-35.754-10.725-68.971-25.377-99.395-42.763-64.149-36.656-121.681-78.010-168.74-132.912-6.935-8.090-18.492-20.804-24.271-28.894s-16.181-18.492-20.804-25.427c-64.472-96.708-114.42-203.387-114.42-365.219 0-72.983 6.923-108.591 20.804-164.117 5.54-20.312 8.118-24.299 18.492-34.673 10.787-10.787 22.389-10.402 43.919-10.402 53.543 0 106.896-5.279 149.093-17.336 79.131-22.61 149.346-60.151 204.569-107.485 15.203-13.030 21.401-20.804 41.607-20.804zM974.302 565.165c0-44.848-5.446-91.952-12.713-128.289h-8.090c-42.651 0-85.595-10.222-121.354-16.181-50.778-8.462-91.418-27.999-134.068-47.386-36.533-16.606-68.987-35.542-98.239-58.944l-10.402-8.090-10.402 8.090c-79.485 63.589-182.384 103.267-308.587 119.043-9.246 1.156-24.271 3.467-34.673 3.467h-18.492c-6.742 33.709-11.558 68.439-11.558 113.264 0 98.563 22.115 170.207 55.476 236.93l12.713 25.427c2.312 4.623 8.090 13.869 12.713 20.804l16.181 24.271c12.027 18.041 25.941 36.343 41.607 52.009l23.115 23.115c22.912 22.912 50.876 43.934 78.591 62.411 38.563 25.709 82.386 45.184 130.6 61.255l12.713 4.623 16.181-5.779c51.576-12.894 94.015-38.021 134.068-64.722 104.368-69.579 177.48-168.703 216.126-303.964 8.245-28.857 11.492-57.331 16.181-90.149 1.156-8.090 2.312-23.115 2.312-31.205zM732.749 532.804c-10.020 0-15.391 2.494-21.959 5.779-3.467 2.312-28.894 26.582-86.682 84.37l-83.214 82.059-32.361-33.517c-27.738-27.738-35.828-33.517-41.607-36.984-10.337-6.892-33.11-7.205-43.919 0-15.106 10.070-38.543 38.113-20.804 64.722 3.467 5.779 11.558 15.025 56.632 60.099 31.205 31.205 54.321 53.165 57.788 55.476 8.12 4.060 13.753 6.935 27.738 6.935 5.779 0 11.558-2.312 16.181-4.623 12.168-6.085 209.104-202.111 216.126-213.815 21.509-32.263-11.569-70.501-43.919-70.501z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shield-check"],"defaultCode":60194,"grid":24},"attrs":[],"properties":{"id":300,"order":83,"ligatures":"","prevSize":24,"code":60194,"name":"shield-check"},"setIdx":0,"setId":2,"iconIdx":301},{"icon":{"paths":["M250.799 195.323c79.488 0 98.239 0 98.239 72.813v26.582h2.312c0.409 0 630.309 45.6 632.199 46.23 18.267 6.090 39.296 19.606 39.296 43.919 0 8.090-3.467 38.14-24.271 181.454l-25.427 172.208c-8.536 19.917-19.107 27.558-40.451 34.673-4.623 1.156-128.289 1.156-295.874 1.156h-287.783v94.772h248.488c226.528 0 249.643 0 257.734 2.312l18.492 4.623c23.896 5.974 45.979 24.020 61.255 39.296 23.353 23.353 39.296 54.022 39.296 99.395 0 54.050-26.158 91.854-57.788 115.576-23.21 17.408-45.878 27.738-86.682 27.738-71.274 0-109.036-40.087-132.912-87.837-10.738-21.476-14.068-61.617-6.935-90.149 1.156-4.623 2.312-10.402 2.312-11.558l1.156-2.312h-256.578l3.467 12.713c2.312 10.402 4.623 17.336 4.623 30.050 0 79.992-42.682 120.166-100.551 143.314-14.523 5.809-23.805 5.779-43.919 5.779-21.146 0-32.648-1.040-47.386-6.935-44.114-17.646-72.236-47.677-90.149-92.46-5.706-14.264-6.935-29.238-6.935-49.698 0-19.301 4.705-28.069 8.090-41.607 5.486-21.945 19.865-43.861 35.828-56.632 12.852-10.282 24.539-21.373 40.451-27.738l11.558-4.623v-585.968h-26.582c-19.648 0-27.738-1.156-33.517-2.312-19.848-6.617-34.673-19.202-34.673-46.23 0-27.773 13.881-39.299 34.673-46.23 4.623-1.156 16.181-2.312 58.944-2.312zM353.661 391.801h-4.623v285.472h535.115l17.336-120.199c9.246-65.878 17.336-120.199 17.336-121.354v-3.467l-280.849-19.648c-154.871-10.402-282.005-20.804-284.316-20.804zM300.497 1060.984c29.414 0 46.23-17.882 46.23-47.386 0-27.962-16.031-39.246-36.984-46.23-3.467-1.156-8.090-1.156-10.402-1.156-26.348 0-45.074 20.222-45.074 47.386 0 29.525 16.837 47.386 46.23 47.386zM828.677 966.212c-10.789 0-28.626 7.688-33.517 15.025-4.838 7.258-12.713 18.527-12.713 30.050 0 31.571 19.347 50.853 50.853 50.853 17.133 0 33.385-13.603 39.296-25.427 15.945-23.917-2.494-58.62-20.804-64.722-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart"],"defaultCode":60197,"grid":24},"attrs":[],"properties":{"id":303,"order":29,"ligatures":"","prevSize":24,"code":60197,"name":"shopping-cart"},"setIdx":0,"setId":2,"iconIdx":304},{"icon":{"paths":["M590.591 147.937c13.701 0 25.008 6.516 32.361 13.869 9.206 9.206 44.952 84.767 146.781 290.095 45.76 7.151 177.598 26.692 233.463 34.673 40.451 5.779 76.28 11.558 80.903 12.713 19.244 4.811 33.517 21.817 33.517 46.23 0 12.907-3.176 17.91-6.935 25.427-1.156 2.312-46.23 46.23-98.239 97.084s-102.862 101.707-113.264 110.953l-18.492 18.492 26.582 152.56c23.115 135.223 26.582 152.56 26.582 161.806 0 36.137-35.404 53.692-68.19 42.763-3.467-1.156-67.034-35.828-141.002-75.124l-135.223-70.501-71.657 38.14c-39.296 20.804-102.862 53.165-139.847 72.813-57.788 30.050-69.345 36.984-76.28 38.14-22.87 4.574-46.323-8.368-52.009-25.427-2.435-7.308-5.779-11.955-5.779-20.804 0-2.312 11.558-75.124 26.582-160.65l26.582-154.871-23.115-21.959c-12.713-12.713-63.567-62.411-112.108-109.797s-90.149-87.837-92.46-91.305c-4.835-7.25-9.246-17.236-9.246-28.894 0-24.635 14.64-35.637 31.205-43.919 14.326-4.776 220.24-34.255 316.677-48.542l63.567-127.133c34.673-69.345 65.878-132.912 69.345-141.002 9.794-22.034 20.258-35.828 49.698-35.828zM589.436 305.12l-30.050 60.099c-22.295 44.59-62.999 135.623-84.37 164.117-18.989 18.989-29.258 15.514-84.37 23.115-33.517 4.623-86.682 12.713-117.887 17.336s-56.632 9.246-57.788 9.246c-2.046 2.046 142.657 141.502 149.093 147.937 30.344 30.344 25.681 19.515 32.361 46.23 1.464 10.247-2.951 26.137-39.296 248.488 34.661-17.331 205.723-109.026 218.438-113.264 4.623-1.156 8.090-2.312 16.181-2.312 9.246 0 10.402 1.156 24.271 8.090 5.289 2.265 200.356 104.64 205.725 107.485-0.458-2.635-40.451-231.075-40.451-242.709 0-10.923 3.421-18.425 8.090-25.427 2.891-4.336 1.356-1.356 174.519-174.519-40.139-6.69-181.579-27.261-225.372-33.517-18.381-1.838-27.812-5.491-35.828-16.181-4.623-5.779-9.246-12.713-19.648-34.673-7.497-16.244-85.674-173.432-93.616-189.544z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star"],"defaultCode":60206,"grid":24},"attrs":[],"properties":{"id":312,"order":10,"ligatures":"","prevSize":24,"code":60206,"name":"star"},"setIdx":0,"setId":2,"iconIdx":313},{"icon":{"paths":["M439.187 243.865c112.383 0 99.56-3.427 136.379 5.779 11.879 2.97 32.55 12.854 41.607 19.648 17.205 11.47 419.377 417.957 426.474 426.474 14.462 24.103 26.582 43.468 26.582 83.214 0 39.155-10.432 64.763-27.738 87.837-5.952 7.935-250.927 255.893-265.824 265.824-22.73 17.049-47.196 25.427-85.526 25.427-40.238 0-57.944-11.419-83.214-26.582-24.139-20.115-410.795-404.11-426.474-427.63-11.633-15.51-19.897-37.074-24.271-58.944-1.156-8.090-1.156-28.894-1.156-115.576 0-114.665-3.259-96.971 5.779-142.158 10.884-54.418 52.32-94.263 93.616-119.043 11.762-7.057 30.748-15.626 45.074-18.492 40.13-8.026 31.972-5.779 138.691-5.779zM446.122 339.792c-54.321 0-102.862 1.156-107.485 1.156-29.245 0-49.518 19.469-64.722 34.673-8.475 8.475-15.161 24.818-18.492 38.14-2.312 9.246-3.467 9.246-3.467 107.485 0 86.471-2.703 97.065 5.779 122.51 4.324 10.81 399.626 407.703 413.761 413.761 6.935 3.467 9.246 4.623 17.336 4.623 14.539 0 20.487-2.73 28.894-6.935 10.856-7.237 242.665-238.019 247.332-245.020 6.614-8.818 9.246-18.782 9.246-32.361 0-6.935-1.156-11.558-3.467-17.336-10.358-20.716-373.106-375.417-409.138-411.449-2.312-2.312-8.090-4.623-11.558-5.779-6.935-2.312-5.779-3.467-104.018-3.467zM423.007 412.605c-10.402 0-17.336 0-21.959 1.156l-13.869 4.623c-34.408 11.47-62.411 44.633-62.411 90.149 0 50.265 32.627 80.991 70.501 93.616 3.467 1.156 10.402 2.312 16.181 2.312 21.167 4.234 41.256-4.447 55.476-11.558 20.204-10.101 39.095-30.401 45.074-54.321 1.156-4.623 4.623-13.869 4.623-19.648v-19.648c0-24.425-13.44-43.49-26.582-56.632-16.631-16.631-34.386-30.050-67.034-30.050z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tag"],"defaultCode":60212,"grid":24},"attrs":[],"properties":{"id":318,"order":164,"ligatures":"","prevSize":24,"code":60212,"name":"tag"},"setIdx":0,"setId":2,"iconIdx":319},{"icon":{"paths":["M250.799 243.865c75.525 0 80.637-2.34 116.731 27.738l10.402 10.402c20.896-15.671 46.756-29.368 78.591-34.673l12.713-2.312h386.023c60.282 15.071 93.172 55.302 112.108 112.108 3.467 9.246 11.558 49.698 30.050 139.847l25.427 127.133v13.869c0 17.839-6.234 40.958-13.869 54.321-14.142 28.285-36.861 53.809-67.034 65.878-40.225 16.090-26.37 16.181-102.862 16.181h-56.632v105.174c0 126.958 1.205 93.415-9.246 135.223-3.352 13.406-14.062 26.903-20.804 38.14-7.816 13.027-21.89 23.641-33.517 32.361-22.72 17.040-47.545 25.427-86.682 25.427-26.467 0-43.852-5.738-61.255-16.181-26.667-16-50.118-33.993-62.411-64.722-13.963-34.907-14.064-32.042-16.181-91.305-1.62-53.477-1.389-43.699-8.090-70.501-11.211-44.846-56.817-78.927-101.707-90.149-26.25-6.562-174.852-0.372-201.102-6.935-39.905-7.98-63.156-38.806-72.813-77.436v-367.53c8.979-35.915 25.457-53.955 52.009-71.657 8.094-5.395 13.938-5.508 24.271-8.090 5.779-1.156 20.804-2.312 65.878-2.312zM836.767 340.948h-183.765c-167.585 1.156-179.142 0-186.077 2.312-31.508 10.502-60.028 35.471-67.034 70.501-2.312 9.246-2.312 12.713-2.312 138.691v129.445c101.366 25.341 168.442 92.129 189.544 197.634 1.156 8.090 1.156 23.115 2.312 54.321 0 43.137-0.7 50.153 15.025 65.878 8.332 8.332 15.365 12.713 32.361 12.713 29.094 0 38.633-14.25 47.386-34.673l1.156-131.756c0-130.6 1.156-131.756 3.467-137.535 5.238-15.716 18.98-23.176 32.361-31.205h83.214c67.898 0 81.609-0.621 97.084-5.779 8.955-2.985 24.271-22.481 24.271-33.517 0-18.33-49.258-250.197-49.698-251.955-2.703-10.811-11.239-25.108-18.492-32.361-6.909-6.909-9.452-12.713-20.804-12.713zM251.955 340.948h-47.386v336.325h95.928v-336.325h-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["thumb-down"],"defaultCode":60219,"grid":24},"attrs":[],"properties":{"id":325,"order":165,"ligatures":"","prevSize":24,"code":60219,"name":"thumb-down"},"setIdx":0,"setId":2,"iconIdx":326},{"icon":{"paths":["M636.822 243.865c56.193 0 91.339 26.047 116.731 57.788 12.513 15.642 21.177 35.385 25.427 56.632 2.312 10.402 3.467 15.025 3.467 116.731v105.174h56.632c68.329 0 53.41-0.228 86.682 8.090 29.613 7.403 52.952 30.151 69.345 52.009 13.272 17.695 27.738 47.124 27.738 76.28v13.869l-25.427 127.133c-24.926 121.516-20.537 119.959-40.451 166.429-14.714 34.333-44.728 70.126-83.214 79.747-38.719 9.679-19.172 6.935-216.126 6.935l-190.7-1.156-11.558-2.312c-29.616-4.935-56.881-19.256-77.436-34.673l-9.246 9.246c-13.963 13.963-29.249 20.921-49.698 27.738h-65.878c-79.115 0-60.469 6.172-88.993-8.090-25.043-12.521-46.875-32.118-53.165-63.567l-2.312-9.246v-367.53c8.12-32.483 23.878-57.629 53.165-69.345 5.779-2.312 13.869-6.935 19.648-8.090 26.25-6.562 174.852-0.372 201.102-6.935 43.711-10.928 76.22-38.021 94.772-75.124 15.452-30.903 13.259-27.227 15.025-85.526 1.156-32.361 1.156-46.23 2.312-53.165 8.686-43.423 35.331-81.81 70.501-99.395 13.633-6.817 32.912-18.492 52.009-18.492 3.467 0 12.713-1.156 19.648-1.156zM639.133 340.948c-29.257 0-37.701 14.144-47.386 33.517-1.156 2.312-2.312 23.115-2.312 46.23-1.156 31.205-1.156 46.23-2.312 54.321-5.103 25.514-13.591 49.139-24.271 70.501-12.092 24.184-26.994 40.388-42.763 60.099-11.836 14.796-24.471 20.501-39.296 32.361-20.844 16.675-55.225 27.675-83.214 34.673v129.445c0 125.977 0 129.445 2.312 138.691 6.945 34.722 35.818 63.564 70.501 70.501 9.246 2.312 13.869 2.312 190.7 2.312h180.298c15.161-6.064 30.359-27.819 34.673-45.074 0.439-1.758 49.698-233.625 49.698-251.955 0-8.763-8.416-18.818-13.869-24.271-3.467-3.467-6.935-8.090-10.402-9.246-15.953-5.316-28.783-5.779-97.084-5.779h-83.214c-13.444-8.067-27.050-15.276-32.361-31.205-2.312-5.779-3.467-6.935-3.467-137.535l-1.156-131.756c-7.659-17.873-19.966-35.828-45.074-35.828zM251.955 677.273h-47.386v336.325h95.928v-336.325h-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["thumb-up"],"defaultCode":60220,"grid":24},"attrs":[],"properties":{"id":326,"order":166,"ligatures":"","prevSize":24,"code":60220,"name":"thumb-up"},"setIdx":0,"setId":2,"iconIdx":327},{"icon":{"paths":["M447.278 191.856c38.691 0 66.367 3.245 94.772 12.713l24.271 8.090c56.696 18.899 106.309 56.317 139.847 98.239 42.185 52.731 79.747 115.095 79.747 209.192 0 46.413-3.65 73.362-15.025 107.485l-3.467 13.869 137.535 137.535c101.707 101.707 138.691 141.002 143.314 147.937 14.524 19.367 28.894 47.282 28.894 79.747 0 37.217-9.872 61.353-21.959 85.526-13.052 26.105-35.483 40.706-60.099 55.476-19.162 11.496-38.058 16.181-68.19 16.181-38.256 0-65.93-11.308-87.837-27.738-6.935-4.623-46.23-41.607-147.937-143.314l-137.535-137.535-13.869 3.467c-29.951 9.985-59.013 15.025-99.395 15.025-11.558 0-28.894 0-36.984-1.156s-20.804-4.623-28.894-5.779c-97.831-13.977-163.266-74.373-211.503-138.691-9.911-13.214-18.032-27.819-25.427-45.074-3.467-8.090-10.402-19.648-12.713-26.582-12.023-36.071-20.804-70.38-20.804-119.043 0-59.028 14.551-100.522 31.205-142.158 7.353-17.157 25.469-35.358 52.009-30.050 3.467 1.156 11.558 2.312 15.025 4.623 5.779 2.312 15.025 11.558 86.682 83.214l80.903 79.747h75.124v-75.124l-79.747-80.903c-70.501-70.501-80.903-80.903-83.214-86.682-18.457-27.685 6.257-58.819 25.427-67.034 40.33-16.132 82.411-31.205 139.847-31.205zM446.122 287.783c-4.623 0-9.246 1.156-11.558 1.156s-6.935 1.156-11.558 1.156h-6.935l57.788 58.944c62.39 62.39 54.811 52.577 67.034 73.968v171.052c-8.449 12.672-13.465 22.913-27.738 30.050l-6.935 4.623h-171.052c-21.624-12.357-11.292-5.69-73.968-67.034l-58.944-57.788v4.623c0 2.312-2.312 11.558-2.312 18.492 0 44.242 9.228 83.179 24.271 113.264 37.519 75.040 99.137 123.778 199.946 136.379 43.173 3.925 83.789-4.911 113.264-19.648 11.261-5.63 22.208-10.050 34.673-6.935l13.869 4.623c17.44 8.721 304.983 303.919 315.521 307.431 7.707 3.853 14.497 5.779 27.738 5.779 29.579 0 50.853-23.69 50.853-53.165 0-9.18-2.739-19.345-5.779-25.427-3.496-10.49-299.829-299.161-307.431-314.366-12.947-25.894 4.185-53.006 11.558-75.124 7.838-23.517 13.355-55.355 10.402-87.837-4.191-33.525-10.613-61.677-23.115-86.682-20.168-40.336-46.066-74.101-84.37-97.084-35.583-21.35-78.262-40.451-135.223-40.451z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tool"],"defaultCode":60224,"grid":24},"attrs":[],"properties":{"id":330,"order":18,"ligatures":"","prevSize":24,"code":60224,"name":"tool"},"setIdx":0,"setId":2,"iconIdx":331},{"icon":{"paths":["M208.036 485.418c-29.547-3.693-52.009-17.113-52.009-49.698 0-24.080 15.226-38.978 33.517-45.074 6.935-2.312 8.090-2.312 106.33-2.312h100.551v-50.853c0-41.607 1.156-54.321 2.312-62.411 8.68-43.396 36.023-68.238 77.436-78.591 5.779-1.156 32.361-1.156 112.108-1.156 88.993 0 105.174 1.156 114.42 2.312 42.26 8.452 64.653 34.466 77.436 72.813 1.156 5.779 2.312 16.181 2.312 62.411v55.476h100.551c98.239 0 99.395 0 106.33 2.312 18.234 6.078 33.517 21.231 33.517 45.074 0 32.845-22.056 45.953-52.009 49.698-36.391 420.533-40.655 516.687-45.074 543.205-2.765 16.587-4.37 29.545-10.402 41.607-18.060 36.12-46.394 73.076-91.305 82.059-5.779 1.156-13.869 3.467-18.492 4.623-5.779 1.156-52.009 1.156-216.126 1.156s-210.348 0-216.126-1.156c-39.369-9.842-65.981-23.532-87.837-50.853-4.623-5.779-10.402-13.869-13.869-18.492-11.356-15.14-14.84-37.034-18.492-58.944-2.18-13.077-44.987-542.103-45.074-543.205zM685.363 292.406h-191.856v95.928h191.856v-95.928zM589.436 485.418c-226.528 0-284.316 0-284.316 1.156 0 15.748 42.645 533.666 47.386 545.517 4.247 12.741 16.325 24.307 30.050 27.738 6.935 2.312 10.402 2.312 206.88 2.312s199.946 0 206.88-2.312c13.263-3.317 26.005-15.603 30.050-27.738 4.741-11.851 47.386-529.769 47.386-545.517 0-1.156-57.788-1.156-284.316-1.156zM496.975 581.345c26.152 0 38.502 21.097 43.919 42.763 1.156 4.623 1.156 65.878 1.156 154.871 0 136.379 0 147.937-2.312 153.716-6.169 18.509-23.307 33.517-47.386 33.517-24.080 0-38.978-15.226-45.074-33.517-2.312-6.935-2.312-8.090-2.312-158.339 0-149.093 0-152.56 2.312-159.494 3.876-15.503 21.009-33.517 39.296-33.517h10.402zM688.831 581.345h-10.402c-13.927 0-30.843 15.456-35.828 25.427-2.312 5.779-3.467 12.713-4.623 17.336s-1.156 63.567-1.156 154.871c0 136.379 0 147.937 2.312 153.716 6.169 18.509 23.307 33.517 47.386 33.517 24.080 0 38.978-15.226 45.074-33.517 2.312-6.935 2.312-8.090 2.312-158.339 0-146.781 0-152.56-2.312-159.494-5.978-17.932-19.588-33.517-42.763-33.517z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trash"],"defaultCode":60225,"grid":24},"attrs":[],"properties":{"id":331,"order":26,"ligatures":"","prevSize":24,"code":60225,"name":"trash"},"setIdx":0,"setId":2,"iconIdx":332},{"icon":{"paths":["M399.892 196.479c21.608 0 38.39 16.023 42.763 33.517 2.312 6.935 2.312 10.402 2.312 64.722l-1.156 57.788c-7.18 16.753-21.173 35.828-43.919 35.828-31.121 0-38.311-15.859-50.853-34.673v-122.51c5.796-11.59 13.477-24.074 25.427-30.050 8.343-5.563 13.753-4.623 25.427-4.623zM813.652 242.709c61.431 0 102.451 26.253 137.535 54.321 5.779 4.623 13.869 13.869 18.492 19.648 25.458 31.823 54.321 73.344 54.321 129.445 1.156 8.090 1.156 20.804 0 28.894 0 52.72-26.555 95.604-50.853 125.977-4.623 5.779-55.476 57.788-113.264 115.576-82.059 82.059-107.485 105.174-116.731 112.108-20.694 13.796-42.617 30.252-70.501 35.828-14.798 2.959-32.274 8.090-49.698 8.090-41.44 0-76.588-7.667-105.174-21.959-15.545-7.772-28.929-18.23-41.607-27.738-13.387-10.041-31.205-24.426-31.205-46.23 0-19.882 8.532-30.491 18.492-40.451 7.143-7.143 13.548-10.402 28.894-10.402 26.199 0 36.966 18.095 53.165 28.894 18.099 12.066 38.391 20.804 68.19 20.804 22.142 0 38.529-7.449 54.321-12.713 3.467-1.156 9.246-4.623 13.869-8.090 18.885-11.332 219.126-217.97 219.594-218.438 16.264-16.264 26.582-45.953 26.582-76.28 0-46.872-24.433-82.618-54.321-100.551-18.493-11.095-37.808-20.804-67.034-20.804-49.894 0-71.161 20.308-98.239 47.386-18.791 16.912-18.848 19.766-35.828 25.427-3.467 1.156-8.090 1.156-11.558 1.156-21.335 0-28.674-11.338-39.296-21.959-5.899-5.899-8.090-16.88-8.090-28.894 0-8.090 1.156-10.402 4.623-17.336 11.671-23.342 48.594-51.358 68.19-67.034 12.931-10.344 36.166-18.605 53.165-24.271 14.632-4.877 31.72-10.402 49.698-10.402h24.271zM265.824 436.876c18.13 10.878 34.673 21.72 34.673 50.853 0 24.085-19.708 36.515-36.984 43.919l-55.476 1.156c-49.698 0-57.788-1.156-64.722-2.312-19.847-6.616-29.385-16.987-34.673-38.14-5.15-25.753 12.39-46.892 31.205-53.165 5.779-2.312 10.402-2.312 65.878-2.312h60.099zM564.009 481.95c69.645 0 119.549 29.401 154.871 64.722 6.683 8.911 15.025 16.742 15.025 31.205 0 19.882-8.532 30.491-18.492 40.451-7.143 7.143-13.548 10.402-28.894 10.402-26.199 0-36.966-18.095-53.165-28.894-18.099-12.066-38.391-20.804-68.19-20.804-26.285 0-43.801 7.455-61.255 16.181-4.623 2.312-10.402 8.090-15.025 11.558s-53.165 52.009-108.641 107.485c-61.255 62.411-102.862 104.018-106.33 108.641-13.284 17.712-23.115 41.668-23.115 71.657 0 54.515 31.459 90.276 68.19 108.641 14.811 7.405 30.815 12.713 53.165 12.713 49.555 0 71.336-20.482 98.239-47.386 18.791-16.912 18.848-19.766 35.828-25.427 3.467-1.156 8.090-1.156 11.558-1.156 21.335 0 28.674 11.338 39.296 21.959 5.899 5.899 8.090 16.88 8.090 28.894 0 8.090-1.156 10.402-4.623 17.336-15.368 30.735-60.255 64.8-90.149 79.747-26.199 13.099-49.281 17.112-83.214 21.959-8.090 1.156-19.648 1.156-28.894 0-40.989 0-76.91-17.252-104.018-33.517-5.779-3.467-12.713-10.402-17.336-13.869-37.724-28.293-69.214-72.022-78.591-128.289-2.714-16.279-5.871-37.4-3.467-56.632 0-24.763 8.951-43.896 13.869-63.567 3.059-12.239 15.548-30.922 21.959-41.607 3.467-5.779 10.402-15.025 15.025-20.804s55.476-57.788 113.264-115.576c64.722-64.722 108.641-106.33 114.42-110.953 25.435-15.261 50.337-33.431 85.526-39.296 6.935-1.156 18.492-4.623 24.271-4.623s15.025-1.156 20.804-1.156zM913.047 917.67c-18.13-10.878-34.673-21.72-34.673-50.853 0-19.412 13.559-31.385 25.427-39.296 13.587-9.058 26.84-5.779 70.501-5.779 50.853 0 55.476 0 62.411 2.312 13.044 4.348 25.713 12.417 30.050 25.427 4.099 12.297 6.532 31.23-1.156 42.763-5.909 11.82-18.487 19.646-30.050 25.427h-122.51zM782.447 966.212c-27.819 0-38.71 16.739-47.386 36.984l-1.156 56.632c0 47.386 0 57.788 1.156 63.567 3.066 9.2 9.024 17.114 15.025 23.115 9.906 9.906 37.020 18.469 54.321 6.935 11.82-5.909 19.646-18.487 25.427-30.050v-122.51c-10.056-16.76-20.559-34.673-47.386-34.673z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["unlink"],"defaultCode":60230,"grid":24},"attrs":[],"properties":{"id":336,"order":89,"ligatures":"","prevSize":24,"code":60230,"name":"unlink"},"setIdx":0,"setId":2,"iconIdx":337},{"icon":{"paths":["M591.747 243.865c9.246 0 10.402 1.156 18.492 4.623 19.471 11.126 258.142 251.614 264.668 264.668 3.467 6.935 2.312 9.246 2.312 19.648 0 37.381-33.027 55.254-67.034 43.919-5.779-2.312-15.025-12.713-88.993-85.526l-83.214-82.059v232.307c0 227.411 3.022 222.084-6.935 251.955-2.754 8.26-15.014 16.174-21.959 20.804-5.779 3.467-6.935 3.467-19.648 3.467-28.317 0-39.337-16.304-46.23-36.984-1.156-5.779-2.312-33.517-2.312-239.242v-232.307l-83.214 82.059c-73.968 72.813-83.214 83.214-88.993 85.526-34.378 11.459-67.034-7.484-67.034-43.919 0-10.402-1.156-12.713 2.312-19.648 6.861-13.721 259.137-261.751 260.045-262.357 7.827-3.913 14.477-6.935 27.738-6.935zM205.725 870.284c-25.907 0-42.264 13.031-47.386 33.517-2.312 8.090-2.312 10.402-2.312 70.501 0 73.624 0.277 55.432 8.090 86.682 9.872 39.492 41.927 63.396 71.657 83.214 8.090 5.394 25.943 10.506 36.984 12.713 10.402 2.312 21.959 1.156 316.677 1.156 253.111 0 306.275 0 313.21-1.156 62.15-15.537 102.375-51.215 117.887-113.264 1.156-6.935 2.312-16.181 2.312-69.345 0-60.099 0-62.411-2.312-70.501-5.144-20.578-22.564-33.517-48.542-33.517-25.2 0-35.664 19.361-45.074 35.828v57.788c0 53.165 0 60.099-2.312 64.722-5.284 15.854-18.559 26.989-34.673 32.361h-600.993c-16.465-5.489-28.137-15.065-33.517-31.205-2.312-5.779-2.312-9.246-3.467-65.878v-57.788c-9.528-16.674-20.301-35.828-46.23-35.828z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["upload"],"defaultCode":60231,"grid":24},"attrs":[],"properties":{"id":337,"order":87,"ligatures":"","prevSize":24,"code":60231,"name":"upload"},"setIdx":0,"setId":2,"iconIdx":338},{"icon":{"paths":["M450.745 196.479c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 45.053 27.032 79.793 59.033 104.018 107.485 15.693 31.386 24.271 60.7 24.271 106.33 0 31.587-3.624 49.013-11.558 72.813-17.224 51.673-44.662 88.2-83.214 119.043-17.423 13.938-37.871 21.825-58.944 32.361-24.745 12.371-48.207 15.025-86.682 15.025-60.44 0-87.727-14.969-127.133-34.673-15.228-7.614-29.546-21.455-42.763-34.673-40.42-40.42-70.501-90.959-70.501-169.896 0-77.528 30.926-130.321 70.501-169.896 41.89-41.89 91.816-70.501 175.675-70.501zM443.81 292.406c-6.935 0-17.336 1.156-20.804 1.156s-10.402 3.467-16.181 4.623c-34.213 6.842-60.499 30.198-78.591 54.321-17.229 22.972-26.582 44.91-26.582 84.37 0 45.236 13.106 65.631 32.361 91.305 12.007 16.010 27.775 29.14 47.386 36.984 19.427 7.771 35.155 15.025 63.567 15.025 45.215 0 70.054-16.423 95.928-35.828 29.54-22.155 48.542-64.826 48.542-115.576 0-23.26-9.164-39.090-16.181-56.632-6.403-16.006-16.245-28.948-30.050-40.451-6.935-5.779-15.025-13.869-20.804-17.336-21.465-12.88-44.825-21.959-78.591-21.959zM1070.23 484.262c23.453 0 35.563 14.627 45.074 28.894 3.467 5.779 3.467 6.935 3.467 19.648s0 12.713-3.467 19.648c-11.506 19.176-203.439 209.669-216.126 217.282-6.935 3.467-8.090 2.312-20.804 2.312s-13.869 1.156-20.804-2.312c-6.44-2.576-114.476-109.543-119.043-120.199-3.467-6.935-4.623-10.402-4.623-17.336 0-19.882 8.532-30.491 18.492-40.451 7.487-7.487 12.641-9.246 28.894-9.246 11.558 0 12.713 0 20.804 3.467 6.935 3.467 12.713 6.935 42.763 36.984l33.517 33.517 82.059-82.059c69.345-69.345 83.214-82.059 88.993-84.37 3.467-1.156 9.246-4.623 11.558-4.623s6.935-1.156 9.246-1.156zM450.745 773.201c-62.411 0-117.887 1.156-123.666 1.156-35.724 0-66.283 15.228-91.305 27.738-30.691 15.345-57.039 37.527-77.436 64.722-9.945 13.261-19.27 24.544-26.582 41.607-22.682 52.924-24.271 55.964-24.271 143.314 0 43.919 0 62.411 1.156 67.034 7.004 21.010 23.524 45.687 55.476 39.296 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-25.427 1.156-62.411 0-88.333 7.012-120.547 58.944-159.494 16.382-12.286 37.295-20.635 61.255-25.427 9.246-1.156 26.582-2.312 120.199-2.312s110.953 1.156 120.199 2.312c5.779 1.156 15.025 2.312 19.648 3.467 22.638 5.659 42.527 21.724 57.788 36.984 11.74 11.74 22.718 23.855 28.894 39.296 16.496 41.237 13.869 32.798 13.869 105.174 0 36.984 0 57.788 1.156 62.411 6.81 20.428 24.427 44.35 55.476 38.14 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-23.115 1.156-67.034 0-72.743 1.624-61.351-9.246-99.395-7.291-25.513-14.701-49.265-28.894-68.19-36.617-48.821-76.467-80.965-142.158-102.862-6.935-2.312-18.492-4.623-25.427-5.779-10.402-2.312-24.271-2.312-125.977-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-check"],"defaultCode":60233,"grid":24},"attrs":[],"properties":{"id":339,"order":16,"ligatures":"","prevSize":24,"code":60233,"name":"user-check"},"setIdx":0,"setId":2,"iconIdx":340},{"icon":{"paths":["M450.745 196.479c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 45.322 27.193 79.577 58.605 104.018 107.485 15.693 31.386 24.271 60.7 24.271 106.33 0 63.169-19.918 108.691-48.542 144.47-4.623 5.779-11.558 16.181-17.336 21.959-19.058 19.058-39.697 34.873-64.722 47.386-32.845 16.422-58.625 25.427-109.797 25.427-60.44 0-87.727-14.969-127.133-34.673-15.228-7.614-29.546-21.455-42.763-34.673-42.382-42.382-70.501-93.401-70.501-176.831 0-74.917 32.417-124.877 70.501-162.962 41.746-41.746 91.891-70.501 175.675-70.501zM443.81 292.406c-6.935 0-17.336 1.156-20.804 1.156s-10.402 3.467-16.181 4.623c-34.213 6.842-60.499 30.198-78.591 54.321-11.847 15.795-18.962 34.242-24.271 55.476-1.156 4.623-3.467 15.025-3.467 20.804 0 23.414 3.56 47.569 11.558 63.567 2.312 4.623 4.623 12.713 8.090 17.336 7.59 10.12 18.769 27.079 28.894 34.673 25.042 18.782 51.647 35.828 95.928 35.828 45.215 0 70.054-16.423 95.928-35.828 29.54-22.155 48.542-64.826 48.542-115.576 0-23.26-9.164-39.090-16.181-56.632-6.403-16.006-16.245-28.948-30.050-40.451-6.935-5.779-15.025-13.869-20.804-17.336-21.465-12.88-44.825-21.959-78.591-21.959zM769.734 677.273c-16.022-9.156-35.828-21.247-35.828-45.074 0-25.293 12.645-41.969 32.361-48.542 5.779-2.312 13.869-2.312 161.806-2.312l156.027 1.156c16.223 8.112 34.673 20.199 34.673 43.919 0 25.906-12.74 43.348-33.517 48.542-6.935 2.312-10.402 2.312-161.806 2.312h-153.716zM450.745 773.201c-62.411 0-116.731 1.156-119.043 1.156-22.385 0-53.366 9.327-70.501 16.181-42.895 17.158-76.876 41.633-102.862 76.28-9.945 13.261-19.27 24.544-26.582 41.607-22.682 52.924-24.271 55.964-24.271 143.314 0 43.919 0 62.411 1.156 67.034 7.004 21.010 23.524 45.687 55.476 39.296 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-25.427 1.156-62.411 0-64.378 0.667-55.343 6.935-86.682 10.685-53.424 60.192-87.625 113.264-98.239 9.246-1.156 26.582-2.312 120.199-2.312s110.953 1.156 120.199 2.312c5.779 1.156 15.025 2.312 19.648 3.467 22.638 5.659 42.527 21.724 57.788 36.984 19.532 19.532 32.981 41.775 40.451 71.657 1.156 6.935 1.156 18.492 2.312 71.657 0 52.399 0.797 62.494 5.779 77.436 4.803 14.41 29.649 28.511 50.853 24.271 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-23.115 1.156-67.034 0-72.743 1.624-61.351-9.246-99.395-26.158-91.552-82.494-141.533-171.052-171.052-6.935-2.312-18.492-4.623-25.427-5.779-10.402-2.312-23.115-2.312-125.977-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-minus"],"defaultCode":60234,"grid":24},"attrs":[],"properties":{"id":340,"order":15,"ligatures":"","prevSize":24,"code":60234,"name":"user-minus"},"setIdx":0,"setId":2,"iconIdx":341},{"icon":{"paths":["M450.745 196.479c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 45.322 27.193 79.577 58.605 104.018 107.485 15.693 31.386 24.271 60.7 24.271 106.33 0 63.169-19.918 108.691-48.542 144.47-4.623 5.779-11.558 16.181-17.336 21.959-19.058 19.058-39.697 34.873-64.722 47.386-32.845 16.422-58.625 25.427-109.797 25.427-60.44 0-87.727-14.969-127.133-34.673-15.228-7.614-29.546-21.455-42.763-34.673-42.382-42.382-70.501-93.401-70.501-176.831 0-74.917 32.417-124.877 70.501-162.962 41.746-41.746 91.891-70.501 175.675-70.501zM443.81 292.406c-6.935 0-17.336 1.156-20.804 1.156s-10.402 3.467-16.181 4.623c-34.213 6.842-60.499 30.198-78.591 54.321-11.847 15.795-18.962 34.242-24.271 55.476-1.156 4.623-3.467 15.025-3.467 20.804 0 23.414 3.56 47.569 11.558 63.567 2.312 4.623 4.623 12.713 8.090 17.336 7.59 10.12 18.769 27.079 28.894 34.673 25.042 18.782 51.647 35.828 95.928 35.828 45.215 0 70.054-16.423 95.928-35.828 29.54-22.155 48.542-64.826 48.542-115.576 0-23.26-9.164-39.090-16.181-56.632-6.403-16.006-16.245-28.948-30.050-40.451-6.935-5.779-15.025-13.869-20.804-17.336-21.465-12.88-44.825-21.959-78.591-21.959zM769.734 677.273c-16.022-9.156-35.828-21.247-35.828-45.074 0-26.28 13.295-41.801 33.517-48.542 4.623-1.156 16.181-2.312 58.944-2.312h52.009v-52.009c0-48.542 0-52.009 2.312-58.944 5.045-20.18 21.861-33.517 47.386-33.517 25.425 0 36.392 17.309 45.074 34.673 0.747 36.239 1.514 72.454 2.312 108.641 36.187 0.797 72.402 1.565 108.641 2.312 16.223 8.112 34.673 20.199 34.673 43.919 0 25.906-12.74 43.348-33.517 48.542-6.935 2.312-10.402 2.312-58.944 2.312h-52.009v52.009c0 42.763-1.156 54.321-2.312 58.944-6.65 19.951-22.327 33.517-48.542 33.517-23.832 0-35.919-19.807-45.074-35.828v-108.641h-108.641zM450.745 773.201c-62.411 0-116.731 1.156-119.043 1.156-22.385 0-53.366 9.327-70.501 16.181-42.895 17.158-76.876 41.633-102.862 76.28-9.945 13.261-19.27 24.544-26.582 41.607-22.682 52.924-24.271 55.964-24.271 143.314 0 43.919 0 62.411 1.156 67.034 7.004 21.010 23.524 45.687 55.476 39.296 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-25.427 1.156-62.411 0-64.378 0.667-55.343 6.935-86.682 10.685-53.424 60.192-87.625 113.264-98.239 9.246-1.156 26.582-2.312 120.199-2.312s110.953 1.156 120.199 2.312c5.779 1.156 15.025 2.312 19.648 3.467 22.638 5.659 42.527 21.724 57.788 36.984 19.532 19.532 32.981 41.775 40.451 71.657 1.156 6.935 1.156 18.492 2.312 71.657 0 52.399 0.797 62.494 5.779 77.436 4.803 14.41 29.649 28.511 50.853 24.271 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-23.115 1.156-67.034 0-72.743 1.624-61.351-9.246-99.395-26.158-91.552-82.494-141.533-171.052-171.052-6.935-2.312-18.492-4.623-25.427-5.779-10.402-2.312-23.115-2.312-125.977-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-plus"],"defaultCode":60235,"grid":24},"attrs":[],"properties":{"id":341,"order":14,"ligatures":"","prevSize":24,"code":60235,"name":"user-plus"},"setIdx":0,"setId":2,"iconIdx":342},{"icon":{"paths":["M450.745 196.479c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 45.322 27.193 79.577 58.605 104.018 107.485 15.693 31.386 24.271 60.7 24.271 106.33 0 63.169-19.918 108.691-48.542 144.47-4.623 5.779-11.558 16.181-17.336 21.959-19.058 19.058-39.697 34.873-64.722 47.386-32.845 16.422-58.625 25.427-109.797 25.427-60.44 0-87.727-14.969-127.133-34.673-15.228-7.614-29.546-21.455-42.763-34.673-42.382-42.382-70.501-93.401-70.501-176.831 0-74.917 32.417-124.877 70.501-162.962 41.746-41.746 91.891-70.501 175.675-70.501zM443.81 292.406c-6.935 0-17.336 1.156-20.804 1.156s-10.402 3.467-16.181 4.623c-34.213 6.842-60.499 30.198-78.591 54.321-11.847 15.795-18.962 34.242-24.271 55.476-1.156 4.623-3.467 15.025-3.467 20.804 0 23.414 3.56 47.569 11.558 63.567 2.312 4.623 4.623 12.713 8.090 17.336 7.59 10.12 18.769 27.079 28.894 34.673 25.042 18.782 51.647 35.828 95.928 35.828 45.215 0 70.054-16.423 95.928-35.828 29.54-22.155 48.542-64.826 48.542-115.576 0-23.26-9.164-39.090-16.181-56.632-6.403-16.006-16.245-28.948-30.050-40.451-6.935-5.779-15.025-13.869-20.804-17.336-21.465-12.88-44.825-21.959-78.591-21.959zM830.989 772.045c-30.195 0-47.386-17.209-47.386-47.386 0-12.713 0-12.713 3.467-20.804 3.467-6.935 6.935-11.558 36.984-41.607l33.517-33.517-33.517-34.673c-28.894-28.894-35.828-35.828-38.14-41.607-3.467-6.935-2.312-6.935-2.312-19.648 0-19.040 1.883-22.686 11.558-32.361 9.23-9.23 20.697-16.181 38.14-16.181 9.936 0 17.883 2.858 23.115 8.090 2.312 2.312 19.648 18.492 36.984 35.828l32.361 32.361 33.517-33.517c27.738-27.738 35.828-33.517 41.607-36.984 16.978-11.318 45.398-1.988 55.476 8.090 10.849 10.849 21.982 37.527 9.246 56.632-3.467 5.779-9.246 13.869-36.984 41.607l-33.517 32.361 33.517 34.673c27.738 27.738 34.673 34.673 36.984 40.451 3.985 11.956 8.717 30.845 0 43.919-4.792 9.586-14.725 16.367-23.115 21.959-5.779 3.467-6.935 2.312-19.648 2.312s-12.713 1.156-19.648-2.312c-5.779-2.312-12.713-9.246-41.607-38.14l-34.673-33.517-33.517 33.517c-30.050 30.050-34.673 33.517-41.607 36.984-8.090 3.467-8.090 3.467-20.804 3.467zM450.745 773.201c-62.411 0-116.731 1.156-119.043 1.156-22.385 0-53.366 9.327-70.501 16.181-42.895 17.158-76.876 41.633-102.862 76.28-9.945 13.261-19.27 24.544-26.582 41.607-22.682 52.924-24.271 55.964-24.271 143.314 0 43.919 0 62.411 1.156 67.034 7.004 21.010 23.524 45.687 55.476 39.296 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-25.427 1.156-62.411 0-64.378 0.667-55.343 6.935-86.682 10.685-53.424 60.192-87.625 113.264-98.239 9.246-1.156 26.582-2.312 120.199-2.312s110.953 1.156 120.199 2.312c5.779 1.156 15.025 2.312 19.648 3.467 22.638 5.659 42.527 21.724 57.788 36.984 19.532 19.532 32.981 41.775 40.451 71.657 1.156 6.935 1.156 18.492 2.312 71.657 0 52.399 0.797 62.494 5.779 77.436 4.803 14.41 29.649 28.511 50.853 24.271 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-23.115 1.156-67.034 0-72.743 1.624-61.351-9.246-99.395-26.158-91.552-82.494-141.533-171.052-171.052-6.935-2.312-18.492-4.623-25.427-5.779-10.402-2.312-23.115-2.312-125.977-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-x"],"defaultCode":60236,"grid":24},"attrs":[],"properties":{"id":342,"order":17,"ligatures":"","prevSize":24,"code":60236,"name":"user-x"},"setIdx":0,"setId":2,"iconIdx":343},{"icon":{"paths":["M595.214 196.479c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 36.948 22.17 67.814 45.989 90.149 83.214 21.355 35.592 38.14 73.171 38.14 130.6 0 63.169-19.918 108.691-48.542 144.47-4.623 5.779-11.558 16.181-17.336 21.959-19.058 19.058-39.697 34.873-64.722 47.386-32.444 16.222-58.77 25.427-109.797 25.427-32.379 0-40.379-0.31-63.567-6.935-64.928-18.55-112.787-58.148-144.47-110.953-20.78-34.635-32.361-73.003-32.361-128.289 0-74.917 32.417-124.877 70.501-162.962 41.711-41.711 91.772-70.501 175.675-70.501zM588.28 292.406c-6.935 0-16.181 1.156-19.648 1.156-33.060 0-57.782 21.763-77.436 38.14-13.807 11.506-23.638 24.421-30.050 40.451-6.866 17.165-16.181 33.583-16.181 56.632 0 62.804 25.577 101.806 63.567 127.133 20.918 13.945 46.975 24.271 80.903 24.271 45.002 0 70.091-16.45 95.928-35.828 29.54-22.155 48.542-64.826 48.542-115.576 0-23.26-9.164-39.090-16.181-56.632-6.478-16.196-16.498-26.9-28.894-39.296-24.2-24.2-53.722-40.451-100.551-40.451zM595.214 773.201c-63.567 0-119.043 1.156-123.666 1.156-34.364 0-66.729 15.45-91.305 27.738-52.444 26.222-89.287 70.080-112.108 127.133-6.077 15.194-9.955 26.923-12.713 46.23-2.312 12.713-3.467 18.492-3.467 75.124 0 43.919 0 63.567 1.156 68.19 7.004 21.010 23.524 45.687 55.476 39.296 21.847-5.462 32.338-17.267 39.296-38.14 1.156-4.623 1.156-25.427 1.156-62.411 0-86.807 6.547-121.064 57.788-159.494 16.021-12.015 37.762-19.842 60.099-25.427 6.935-1.156 28.894-1.156 122.51-1.156s115.576 0 122.51 1.156c61.581 15.395 100.181 50.533 115.576 112.108 1.156 6.935 1.156 18.492 2.312 71.657 0 52.399 0.797 62.494 5.779 77.436 4.803 14.41 29.649 28.511 50.853 24.271 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-23.115 1.156-67.034 0-72.085-0.866-59.807-8.090-95.928-16.613-83.065-76.187-137.73-147.937-166.429-15.469-6.188-27.519-9.875-47.386-12.713-13.869-2.312-15.025-3.467-128.289-3.467z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user"],"defaultCode":60237,"grid":24},"attrs":[],"properties":{"id":343,"order":199,"ligatures":"","prevSize":24,"code":60237,"name":"user"},"setIdx":0,"setId":2,"iconIdx":344},{"icon":{"paths":["M587.124 195.323c106.466 0 184.27 31.824 251.955 70.501 46.84 26.767 85.624 62.525 120.199 102.862 63.921 74.574 110.953 171.648 110.953 308.587 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-89.263 0-154.322-19.374-214.971-49.698-136.38-68.19-231.927-186.103-261.201-361.752-3.973-23.848-4.623-35.734-4.623-69.345 0-90.386 20.374-156.323 50.853-217.282 31.167-62.335 70.5-108.97 121.354-152.56 26.519-22.73 52.957-41.503 85.526-57.788 39.477-19.74 78.591-32.874 128.289-43.919 17.039-3.786 40.656-9.246 57.788-9.246 3.467 0 19.648-1.156 34.673-1.156zM589.436 299.341c-4.949 0-15.665 28.858-19.648 35.828-24.745 43.304-39.312 96.21-55.476 147.937 0 0 33.517 1.156 75.124 1.156s75.124-1.156 75.124-1.156c-17.779-57.78-36.804-114.79-63.567-162.962-5.779-10.402-10.402-20.804-11.558-20.804zM473.86 310.898c-47.001 11.751-86.171 36.889-120.199 62.411-39.093 29.322-70.939 67.965-97.084 109.797 0 0 34.673 1.156 78.591 1.156h79.747c1.864-13.055 5.311-20.628 10.402-39.296 13.236-48.533 30.72-92.48 48.542-134.068zM705.011 310.898c4.071 12.214 12.717 27.747 19.648 45.074 14.485 36.214 24.346 77.661 36.984 115.576l2.312 12.713h79.747c43.919 0 78.591-1.156 78.591-1.156-28.687-44.625-59.012-82.767-101.707-113.264-32.649-23.321-70.481-49.924-115.576-58.944zM204.569 677.273c0 36.177 5.181 67.234 11.558 95.928h182.609l-2.312-13.869c-3.764-22.588-3.467-54.789-3.467-82.059 0-27.328-0.314-59.368 3.467-82.059l2.312-13.869h-182.609c-6.345 28.547-11.558 59.718-11.558 95.928zM589.436 581.345h-93.616v2.312c0 1.156-2.312 11.558-3.467 21.959-1.156 15.025-1.156 31.205-1.156 71.657s0 55.476 1.156 71.657c1.156 11.558 3.467 20.804 3.467 21.959 0 2.312 5.779 2.312 93.616 2.312s93.616 0 93.616-2.312c0-1.156 2.312-11.558 3.467-23.115 1.156-17.336 2.312-32.361 2.312-70.501s-1.156-53.165-2.312-70.501c-1.156-11.558-3.467-21.959-3.467-23.115 0-2.312-5.779-2.312-93.616-2.312zM974.302 677.273c0-36.177-5.181-67.234-11.558-95.928h-182.609l2.312 13.869c4.323 25.931 3.467 65.863 3.467 98.239 0 17.336-1.156 43.919-2.312 55.476s-3.467 21.959-3.467 23.115 18.492 1.156 91.305 1.156h91.305c6.379-28.7 11.558-59.742 11.558-95.928zM335.169 870.284c-43.919 0-78.591 1.156-78.591 1.156 25.896 41.434 55.771 78.133 92.46 107.485 13.683 10.945 44.096 28.996 60.099 38.14 20.295 11.597 40.58 20.546 64.722 26.582l-4.623-11.558c-2.312-5.779-9.246-19.648-13.869-31.205-10.198-25.496-20.203-59.452-28.894-85.526-3.467-10.402-8.090-25.427-9.246-32.361l-2.312-12.713h-79.747zM589.436 870.284c-41.607 0-75.124 1.156-75.124 1.156 18.157 58.106 36.45 115.309 63.567 164.117 5.779 10.402 10.402 18.492 11.558 18.492s5.779-8.090 11.558-18.492c13.476-24.257 22.128-46.034 33.517-71.657 11.852-26.667 21.547-64.824 30.050-92.46 0 0-33.517-1.156-75.124-1.156zM843.702 870.284h-79.747l-2.312 12.713c-12.398 37.196-22.635 79.703-36.984 115.576-7.049 17.623-14.141 32.959-19.648 45.074 8.775 0 24.56-7.281 32.361-10.402 23.73-9.492 46.082-23.257 67.034-35.828 5.779-3.467 12.713-10.402 16.181-12.713 18.835-12.557 37.727-30.017 53.165-48.542 5.779-6.935 15.025-16.181 18.492-20.804 6.978-9.304 23.981-35.971 30.050-45.074h-78.591z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["world"],"defaultCode":60244,"grid":24},"attrs":[],"properties":{"id":350,"order":122,"ligatures":"","prevSize":24,"code":60244,"name":"referers"},"setIdx":0,"setId":2,"iconIdx":351},{"icon":{"paths":["M299.341 339.792c-27.086 0-52.371 25.931-46.23 56.632 1.156 4.623 2.312 10.402 4.623 13.869 3.467 5.779 18.492 23.115 132.912 137.535l129.445 129.445-129.445 129.445c-114.42 114.42-129.445 131.756-132.912 137.535-6.892 10.337-7.205 33.11 0 43.919 9.096 13.644 25.429 30.512 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 5.779-2.312 24.271-20.804 136.379-132.912l130.6-129.445 129.445 129.445c114.42 114.42 131.756 129.445 137.535 132.912 16.978 11.318 45.398 1.988 55.476-8.090 10.849-10.849 21.982-37.527 9.246-56.632-3.467-5.779-18.492-23.115-132.912-137.535l-129.445-129.445 129.445-129.445c114.42-114.42 129.445-131.756 132.912-137.535 15.448-23.173-2.813-58.726-20.804-64.722-12.013-4.005-31.217-8.467-43.919 0-5.779 3.467-23.115 18.492-137.535 132.912l-129.445 129.445-130.6-129.445c-112.108-112.108-130.6-130.6-136.379-132.912-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["x"],"defaultCode":60245,"grid":24},"attrs":[],"properties":{"id":351,"order":167,"ligatures":"","prevSize":24,"code":60245,"name":"close"},"setIdx":0,"setId":2,"iconIdx":352},{"icon":{"paths":["M490.041 195.323c68.083 0 124.139 14.684 171.052 38.14 80.925 40.462 138.491 100.151 179.142 181.454 19.94 39.882 28.044 81.579 36.984 135.223 1.156 6.935 1.156 19.648 1.156 30.050 0 86.635-26.411 151.506-58.944 205.725-3.467 5.779-10.402 13.869-13.869 19.648l-6.935 11.558 131.756 131.756c115.576 116.731 131.756 134.068 135.223 139.847 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-23.115-19.648-139.847-135.223l-131.756-131.756-11.558 6.935c-5.779 3.467-13.869 9.246-18.492 12.713s-15.025 8.090-21.959 12.713c-24.89 16.593-58.651 26.83-90.149 35.828-31.542 9.013-63.927 11.558-104.018 11.558-67.883 0-114.409-20.139-161.806-40.451-28.147-12.064-49.582-27.833-71.657-46.23-71.228-59.356-122.359-138.786-138.691-253.111-1.156-8.090-3.467-23.115-3.467-32.361 0-32.607 3.549-64.064 8.090-91.305 1.156-6.935 5.779-19.648 8.090-28.894 24.338-97.349 85.451-163.733 157.183-214.971 8.090-5.779 19.648-12.713 26.582-16.181l25.427-12.713c30.855-15.428 67.050-23.503 106.33-30.050 6.935-1.156 18.492-3.467 25.427-3.467s18.492-1.156 25.427-1.156zM492.352 292.406c-10.402 0-21.959 1.156-24.271 1.156-22.528 0-50.902 8.876-69.345 15.025-29.25 9.75-53.871 24.742-77.436 40.451-6.935 4.623-16.181 13.869-21.959 18.492s-15.025 13.869-19.648 19.648c-40.136 50.169-73.968 101.672-73.968 193.011 0 47.484 4.268 69.037 17.336 101.707 23.208 58.017 58.952 108.185 109.797 138.691 43.785 26.27 88.522 48.542 159.494 48.542 46.157 0 75.956-6.796 108.641-20.804 56.433-24.185 99.225-57.534 131.756-106.33 28.841-43.26 48.542-90.77 48.542-161.806 0-49.191-8.523-84.079-25.427-117.887l-10.402-20.804c-10.648-21.295-26.632-42.813-42.763-58.944-4.623-4.623-13.869-15.025-20.804-20.804-24.599-20.5-55.969-38.105-87.837-50.853-27.65-11.061-62.492-18.492-101.707-18.492zM493.508 388.334c-27.819 0-38.71 16.739-47.386 36.984l-1.156 53.165v54.321h-54.321l-53.165 1.156c-17.677 7.576-36.984 19.36-36.984 43.919 0 28.405 16.776 40.115 34.673 50.853h109.797v52.009c0 48.542 0 52.009 2.312 58.944 2.58 10.323 10.020 16.955 16.181 23.115 7.487 7.487 12.641 9.246 28.894 9.246 30.263 0 37.556-15.448 48.542-34.673v-108.641h108.641c18.462-10.55 34.673-18.897 34.673-48.542 0-16.337-1.707-21.355-9.246-28.894-6.15-6.15-12.788-13.599-23.115-16.181-6.935-2.312-10.402-2.312-58.944-2.312h-52.009v-109.797c-10.056-16.76-20.559-34.673-47.386-34.673z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["zoom-in"],"defaultCode":60246,"grid":24},"attrs":[],"properties":{"id":352,"order":168,"ligatures":"","prevSize":24,"code":60246,"name":"zoom-in"},"setIdx":0,"setId":2,"iconIdx":353},{"icon":{"paths":["M490.041 195.323c68.083 0 124.139 14.684 171.052 38.14 80.925 40.462 138.491 100.151 179.142 181.454 19.94 39.882 28.044 81.579 36.984 135.223 1.156 6.935 1.156 19.648 1.156 30.050 0 86.635-26.411 151.506-58.944 205.725-3.467 5.779-10.402 13.869-13.869 19.648l-6.935 11.558 131.756 131.756c115.576 116.731 131.756 134.068 135.223 139.847 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-23.115-19.648-139.847-135.223l-131.756-131.756-11.558 6.935c-5.779 3.467-13.869 9.246-18.492 12.713s-15.025 8.090-21.959 12.713c-24.89 16.593-58.651 26.83-90.149 35.828-31.542 9.013-63.927 11.558-104.018 11.558-67.883 0-114.409-20.139-161.806-40.451-28.147-12.064-49.582-27.833-71.657-46.23-71.228-59.356-122.359-138.786-138.691-253.111-1.156-8.090-3.467-23.115-3.467-32.361 0-32.607 3.549-64.064 8.090-91.305 1.156-6.935 5.779-19.648 8.090-28.894 24.338-97.349 85.451-163.733 157.183-214.971 8.090-5.779 19.648-12.713 26.582-16.181l25.427-12.713c30.855-15.428 67.050-23.503 106.33-30.050 6.935-1.156 18.492-3.467 25.427-3.467s18.492-1.156 25.427-1.156zM492.352 292.406c-10.402 0-21.959 1.156-24.271 1.156-22.528 0-50.902 8.876-69.345 15.025-29.25 9.75-53.871 24.742-77.436 40.451-6.935 4.623-16.181 13.869-21.959 18.492s-15.025 13.869-19.648 19.648c-40.136 50.169-73.968 101.672-73.968 193.011 0 47.484 4.268 69.037 17.336 101.707 23.208 58.017 58.952 108.185 109.797 138.691 43.785 26.27 88.522 48.542 159.494 48.542 46.157 0 75.956-6.796 108.641-20.804 56.433-24.185 99.225-57.534 131.756-106.33 28.841-43.26 48.542-90.77 48.542-161.806 0-49.191-8.523-84.079-25.427-117.887l-10.402-20.804c-10.648-21.295-26.632-42.813-42.763-58.944-4.623-4.623-13.869-15.025-20.804-20.804-24.599-20.5-55.969-38.105-87.837-50.853-27.65-11.061-62.492-18.492-101.707-18.492zM493.508 532.804c-128.743 0-165.881-16.12-188.388 28.894-2.312 5.779-4.623 9.246-4.623 16.181 0 28.405 16.776 40.115 34.673 50.853h314.366c18.462-10.55 34.673-18.897 34.673-48.542 0-16.337-1.707-21.355-9.246-28.894-6.15-6.15-12.788-13.599-23.115-16.181-6.935-2.312-9.246-2.312-158.339-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["zoom-out"],"defaultCode":60247,"grid":24},"attrs":[],"properties":{"id":353,"order":169,"ligatures":"","prevSize":24,"code":60247,"name":"zoom-out"},"setIdx":0,"setId":2,"iconIdx":354},{"icon":{"paths":["M350.194 436.876c-14.2 0-20.519 2.507-28.894 8.090-3.467 2.312-52.009 49.698-106.33 104.018-85.526 85.526-99.395 100.551-101.707 106.33-2.669 8.005-6.985 18.24-4.623 30.050 1.156 4.623 3.467 10.402 4.623 13.869 4.19 10.473 199.626 207.733 213.815 213.815 8.090 3.467 9.246 4.623 20.804 4.623 29.482 0 47.386-18.726 47.386-48.542 0-11.558 0-12.713-3.467-20.804-3.467-6.935-8.090-11.558-61.255-64.722l-56.632-57.788h631.043l-56.632 57.788c-53.165 53.165-57.788 57.788-61.255 64.722-3.467 8.090-3.467 9.246-3.467 20.804 0 29.778 17.986 48.542 47.386 48.542 11.558 0 12.713-1.156 20.804-4.623 14.29-6.124 209.625-203.341 213.815-213.815 2.669-8.005 6.985-18.24 4.623-30.050-1.156-4.623-3.467-10.402-4.623-13.869-4.19-10.473-199.626-207.733-213.815-213.815-8.090-3.467-9.246-4.623-20.804-4.623-29.482 0-47.386 18.726-47.386 48.542 0 11.558 0 12.713 3.467 20.804 3.467 6.935 8.090 11.558 61.255 64.722l56.632 57.788h-631.043l56.632-57.788c53.165-53.165 57.788-57.788 61.255-64.722 3.467-8.090 3.467-9.246 3.467-20.804 0-24.687-10.141-35.698-26.582-43.919-6.935-3.467-9.246-4.623-18.492-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-horizontal"],"defaultCode":60249,"grid":24},"attrs":[],"properties":{"id":355,"order":170,"ligatures":"","prevSize":24,"code":60249,"name":"arrows-horizontal"},"setIdx":0,"setId":2,"iconIdx":356},{"icon":{"paths":["M353.661 292.406c7.316 0 12.84 2.011 18.492 5.779 8.557 4.279 205.988 199.315 213.815 214.971 3.467 6.935 2.312 9.246 2.312 19.648 0 16.782-4.377 25.18-12.713 33.517-3.467 3.467-9.246 8.090-12.713 9.246l-13.869 4.623c-9.819 1.965-19.789-0.817-27.738-3.467-5.779-2.312-12.713-9.246-64.722-61.255l-58.944-57.788v277.381c0 160.65 0 280.849-1.156 285.472-7.538 22.616-17.447 41.607-47.386 41.607-24.159 0-41.351-14.002-46.23-33.517-2.312-6.935-2.312-10.402-2.312-288.939v-282.005l-57.788 57.788c-48.542 48.542-58.944 57.788-64.722 60.099-12.013 4.005-31.217 8.467-43.919 0-3.467-2.312-9.246-5.779-12.713-9.246-10.671-10.671-20.048-37.54-8.090-55.476 4.663-11.659 199.69-206.753 213.815-213.815 4.623-2.312 11.558-4.623 15.025-4.623h11.558zM833.3 292.406h-10.402c-13.927 0-30.843 15.456-35.828 25.427-2.312 4.623-3.467 11.558-4.623 16.181s-1.156 119.043-1.156 285.472v277.381l-58.944-57.788c-63.023-63.023-48.766-54.781-78.591-64.722-5.779-1.156-8.090-1.156-13.869 0l-13.869 4.623c-14.774 4.924-25.427 22.163-25.427 42.763 0 10.402-1.156 12.713 2.312 19.648 6.65 13.3 202.27 210.188 216.126 216.126 4.623 2.312 10.402 4.623 13.869 4.623h13.869c3.467 0 10.402-2.312 15.025-4.623 14.319-7.159 209.235-202.365 213.815-213.815 2.669-8.005 6.985-18.24 4.623-30.050-3.034-12.135-5.964-17.521-13.869-25.427-10.755-10.755-36.024-22.214-55.476-9.246-5.779 3.467-15.025 12.713-64.722 61.255l-57.788 56.632v-282.005c0-276.226 0-282.005-2.312-288.939-5.978-17.932-19.588-33.517-42.763-33.517z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-sort"],"defaultCode":60250,"grid":24},"attrs":[],"properties":{"id":356,"order":171,"ligatures":"","prevSize":24,"code":60250,"name":"arrows-sort"},"setIdx":0,"setId":2,"iconIdx":357},{"icon":{"paths":["M591.747 195.323c-10.382 0-19.769 3.529-26.582 6.935-3.235 2.157-205.619 198.93-211.503 212.659-3.467 8.090-4.623 9.246-4.623 20.804 0 29.482 18.726 47.386 48.542 47.386 11.558 0 12.713 0 20.804-3.467 6.935-3.467 11.558-8.090 64.722-61.255l57.788-56.632v631.043l-57.788-56.632c-53.165-53.165-57.788-57.788-64.722-61.255-8.090-3.467-9.246-3.467-20.804-3.467-29.778 0-48.542 17.986-48.542 47.386 0 11.558 1.156 12.713 4.623 20.804 6.124 14.29 203.341 209.625 213.815 213.815 8.005 2.669 18.24 6.985 30.050 4.623 4.623-1.156 10.402-3.467 13.869-4.623 10.473-4.19 207.733-199.626 213.815-213.815 3.467-8.090 4.623-9.246 4.623-20.804 0-29.482-18.726-47.386-48.542-47.386-11.558 0-12.713 0-20.804 3.467-6.935 3.467-11.558 8.090-64.722 61.255l-57.788 56.632v-631.043l57.788 56.632c53.165 53.165 57.788 57.788 64.722 61.255 8.090 3.467 9.246 3.467 20.804 3.467 29.778 0 48.542-17.986 48.542-47.386 0-11.558-1.156-12.713-4.623-20.804-4.454-10.391-206.876-210.345-206.88-210.348-6.911-4.607-16.133-9.246-26.582-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["arrows-vertical"],"defaultCode":60251,"grid":24},"attrs":[],"properties":{"id":357,"order":172,"ligatures":"","prevSize":24,"code":60251,"name":"arrows-vertical"},"setIdx":0,"setId":2,"iconIdx":358},{"icon":{"paths":["M374.465 268.135c26.845 0 46.23 21.22 46.23 48.542 0 12.713-1.156 12.713-4.623 20.804-5.33 10.662-130.73 136.444-142.158 142.158-8.090 3.467-9.246 3.467-20.804 3.467s-13.869 0-21.959-3.467c-6.935-3.467-11.558-6.935-49.698-45.074-34.673-34.673-41.607-42.763-43.919-48.542-6.717-20.149-5.451-41.935 8.090-55.476 8.571-8.571 23.8-17.43 41.607-13.869 4.623 1.156 10.402 3.467 13.869 4.623 4.623 2.312 11.558 6.935 28.894 24.271l21.959 21.959 45.074-45.074c36.101-36.101 43.031-44.053 61.255-53.165 3.467-1.156 9.246-1.156 16.181-1.156zM757.020 339.792c144.47 0 221.905 0 226.528 1.156 20.817 6.939 38.14 18.66 38.14 47.386 0 29.112-16.738 40.252-38.14 47.386-4.623 1.156-82.059 1.156-226.528 1.156-215.7 0-209.532 2.968-239.242-6.935-6.824-2.275-18.538-15.164-20.804-21.959-2.312-5.779-2.312-8.090-2.312-19.648 0-28.091 14.159-39.393 34.673-46.23 5.779-1.156 38.14-2.312 227.684-2.312zM374.465 557.074c26.845 0 46.23 21.22 46.23 48.542 0 12.713-1.156 12.713-4.623 20.804-5.33 10.662-130.73 136.444-142.158 142.158-8.090 3.467-9.246 3.467-20.804 3.467s-13.869 0-21.959-3.467c-6.935-3.467-11.558-6.935-49.698-45.074-34.673-34.673-41.607-42.763-43.919-48.542-6.717-20.149-5.451-41.935 8.090-55.476 8.571-8.571 23.8-17.43 41.607-13.869 4.623 1.156 10.402 3.467 13.869 4.623 4.623 2.312 11.558 6.935 28.894 24.271l21.959 21.959 45.074-45.074c36.101-36.101 43.031-44.053 61.255-53.165 3.467-1.156 9.246-1.156 16.181-1.156zM757.020 628.731c144.47 0 221.905 0 226.528 1.156 20.817 6.939 38.14 18.66 38.14 47.386 0 29.112-16.738 40.252-38.14 47.386-4.623 1.156-82.059 1.156-226.528 1.156-215.7 0-209.532 2.968-239.242-6.935-6.824-2.275-18.538-15.164-20.804-21.959-2.312-5.779-2.312-8.090-2.312-19.648 0-28.091 14.159-39.393 34.673-46.23 5.779-1.156 38.14-2.312 227.684-2.312zM374.465 846.014c26.845 0 46.23 21.22 46.23 48.542 0 12.713-1.156 12.713-4.623 20.804-5.33 10.662-130.73 136.444-142.158 142.158-8.090 3.467-9.246 3.467-20.804 3.467s-13.869 0-21.959-3.467c-6.935-3.467-11.558-6.935-49.698-45.074-34.673-34.673-41.607-42.763-43.919-48.542-6.717-20.149-5.451-41.935 8.090-55.476 8.571-8.571 23.8-17.43 41.607-13.869 4.623 1.156 10.402 3.467 13.869 4.623 4.623 2.312 11.558 6.935 28.894 24.271l21.959 21.959 45.074-45.074c36.101-36.101 43.031-44.053 61.255-53.165 3.467-1.156 9.246-1.156 16.181-1.156zM757.020 917.67c-189.544 0-221.905 1.156-227.684 2.312-20.604 6.868-34.673 17.92-34.673 46.23 0 28.956 14.576 39.147 35.828 46.23 5.779 1.156 32.361 2.312 226.528 2.312 144.47 0 221.905 0 226.528-1.156 20.817-6.939 38.14-18.66 38.14-47.386 0-29.112-16.738-40.252-38.14-47.386-4.623-1.156-82.059-1.156-226.528-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["list-check"],"defaultCode":60266,"grid":24},"attrs":[],"properties":{"id":372,"order":126,"ligatures":"","prevSize":24,"code":60266,"name":"polls"},"setIdx":0,"setId":2,"iconIdx":373},{"icon":{"paths":["M761.643 195.323c212.659 0 228.84 0 235.774 2.312 36.958 12.32 59.231 35.535 71.657 72.813 2.312 5.779 2.312 27.738 2.312 256.578 0 224.217-1.156 251.955-2.312 257.734-1.156 3.467-2.312 10.402-4.623 13.869-8.39 12.584-19.973 21.959-41.607 21.959-10.402 0-12.713 1.156-19.648-2.312s-12.713-9.246-76.28-72.813l-69.345-68.19h-166.429l-166.429-1.156c-21.355-5.34-38.729-14.459-52.009-27.738-3.467-3.467-10.402-10.402-12.713-15.025l-8.090-16.181c-2.312-4.623-3.467-13.869-4.623-18.492-1.156-8.090-2.312-25.427-2.312-166.429 0-146.781 0-157.183 2.312-164.117 12.565-37.697 37.646-61.71 77.436-71.657 6.935-1.156 53.165-1.156 236.93-1.156zM974.302 292.406h-432.253v287.783h167.585c127.442 0 164.368-2.612 189.544 5.779 5.779 2.312 11.558 8.090 40.451 36.984l34.673 33.517v-364.063zM253.111 532.804c-32.361 0-61.255 1.156-63.567 1.156-20.806 0-40.914 15.487-52.009 26.582-14.997 14.997-22.744 29.719-28.894 54.321l-1.156 248.488c0 183.765 0 250.799 1.156 255.422l4.623 13.869c5.097 15.287 28.337 29.929 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 5.779-2.312 17.336-12.713 75.124-70.501l68.19-68.19h165.273l165.273-1.156c39.051-9.763 70.001-32.672 79.747-71.657 2.312-6.935 1.156-13.869 1.156-70.501v-62.411c-3.583-7.168-7.272-15.362-12.713-20.804-10.819-10.819-37.295-22.137-56.632-9.246-31.17 15.584-26.582 37.675-26.582 91.305v47.386h-169.896c-121.354 0-171.052 0-175.675 1.156-25.831 8.61-17.383 5.825-53.165 41.607l-33.517 32.361v-362.907h47.386c60.617 0 84.428 4.395 95.928-41.607 1.156-5.779 1.156-9.246 0-15.025l-4.623-13.869c-4.179-12.538-19.034-20.21-31.205-25.427l-58.944-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["messages"],"defaultCode":60268,"grid":24},"attrs":[],"properties":{"id":374,"order":3,"ligatures":"","prevSize":24,"code":60268,"name":"comments"},"setIdx":0,"setId":2,"iconIdx":375},{"icon":{"paths":["M833.3 195.323c9.936 0 17.883 2.858 23.115 8.090 51.652 51.652 156.196 151.742 162.962 165.273 3.467 6.935 2.312 9.246 2.312 19.648 0 11.558 0 12.713-3.467 20.804-5.372 12.536-160.337 163.993-166.429 166.429-11.956 3.985-30.845 8.717-43.919 0-9.586-4.792-16.367-14.725-21.959-23.115-3.467-5.779-2.312-6.935-2.312-19.648s-1.156-12.713 2.312-19.648c2.312-5.779 9.246-12.713 38.14-41.607l33.517-34.673h-263.512l-263.512 1.156c-38.521 11.005-65.319 32.431-75.124 71.657-2.312 9.246-2.312 13.869-3.467 95.928v85.526c-6.434 9.651-15.133 26.233-26.582 30.050-35.093 11.697-57.221-6.768-68.19-32.361l-1.156-83.214c0-100.962-5.263-97.794 18.492-157.183 2.312-5.779 9.246-15.025 13.869-21.959 31.455-47.183 73.926-74.153 142.158-85.526 8.090-1.156 97.084-1.156 269.291-1.156h257.734l-33.517-34.673c-28.894-28.894-35.828-35.828-38.14-41.607-3.467-6.935-2.312-6.935-2.312-19.648 0-19.040 1.883-22.686 11.558-32.361 9.23-9.23 20.697-16.181 38.14-16.181zM973.147 628.731c-23.515 0-37.134 19.515-46.23 34.673v85.526c-1.455 103.259 2.433 75.915-9.246 110.953-10.173 30.519-37.311 47.48-69.345 56.632l-263.512 1.156h-263.512l33.517-34.673c28.894-28.894 35.828-35.828 38.14-41.607 3.467-6.935 2.312-6.935 2.312-19.648 0-19.243-4.6-25.404-13.869-34.673-9.365-9.365-22.221-16.36-40.451-12.713-4.623 1.156-10.402 3.467-13.869 4.623-6.249 2.5-161.13 154.063-166.429 166.429-3.467 8.090-3.467 9.246-3.467 20.804s0 12.713 3.467 20.804c5.372 12.536 160.337 163.993 166.429 166.429 13.305 4.435 27.3 6.31 42.763 1.156 8.038-2.679 18.010-15.216 21.959-23.115 3.467-6.935 3.467-8.090 3.467-20.804s1.156-12.713-2.312-19.648c-2.312-5.779-9.246-12.713-38.14-41.607l-33.517-34.673h257.734c203.457 0 250.057 3.846 292.406-4.623 32.823-6.565 65.203-23.596 85.526-43.919l17.336-17.336c26.345-26.345 38.475-61.772 47.386-106.33 1.156-6.935 1.156-39.296 1.156-93.616l-1.156-83.214c-8.534-19.914-21.175-36.984-48.542-36.984z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["repeat"],"defaultCode":60274,"grid":24},"attrs":[],"properties":{"id":380,"order":42,"ligatures":"","prevSize":24,"code":60274,"name":"repeat"},"setIdx":0,"setId":2,"iconIdx":381},{"icon":{"paths":["M263.512 677.273c16.338 9.335 36.984 19.928 36.984 45.074 0 19.882-8.532 30.491-18.492 40.451-4.291 4.291-13.26 10.402-20.804 10.402h-4.623v6.935c0 3.467 3.467 12.713 4.623 19.648 8.848 53.095 36.698 100.193 64.722 135.223 20.994 26.243 50.006 52.065 77.436 71.657 8.090 5.779 20.804 11.558 28.894 16.181 31.467 17.981 66.195 26.652 107.485 35.828 0 0 1.156-108.641 1.156-241.553v-242.709c-24.084-4.014-50.583-18.867-67.034-31.205-18.137-13.603-34.383-31.108-46.23-50.853-3.467-5.779-10.402-15.025-12.713-20.804-14.925-37.312-26.387-98.727-8.090-144.47 25.080-62.701 68.875-112.476 142.158-127.133 5.779-1.156 13.869-3.467 19.648-3.467s13.869-1.156 18.492-1.156c62.084 0 106.367 24.308 138.691 56.632 27.456 27.456 45.565 57.257 53.165 102.862 1.156 6.935 3.467 18.492 3.467 25.427 0 66.595-22.399 110.236-56.632 144.47-22.14 22.14-44.564 35.657-76.28 46.23l-11.558 4.623v483.106h4.623c20.092 0 46.733-11.34 64.722-17.336 28.451-9.484 63.977-31.225 85.526-47.386 4.623-3.467 11.558-9.246 15.025-11.558s10.402-11.558 18.492-18.492c46.557-39.906 72.185-96.043 91.305-162.962 2.312-8.090 4.623-17.336 4.623-20.804v-6.935h-4.623c-23.554 0-39.296-27.063-39.296-50.853 0-25.146 20.649-35.741 36.984-45.074h120.199c10.566 7.044 25.796 13.819 30.050 26.582l4.623 13.869c3.955 19.776-5.594 33.332-15.025 42.763-6.803 6.803-15.344 12.713-26.582 12.713-8.090 0-8.090 0-8.090 3.467 0 20.378-9.512 51.209-15.025 70.501-5.586 19.55-13.488 42-21.959 58.944l-12.713 25.427c-8.371 16.742-18.649 29.926-27.738 45.074-14.753 24.588-39.259 47.349-60.099 68.19-15.020 15.020-29.282 23.194-45.074 35.828-17.548 14.038-39.202 23.577-61.255 35.828-21.123 11.734-43.15 19.456-67.034 25.427l-32.361 8.090c-77.518 19.38-182.109 6.488-240.397-18.492-31.397-13.456-62.889-28.827-88.993-46.23-28.619-19.079-54.153-42.595-78.591-67.034-16.298-16.298-26.935-34.242-40.451-53.165-30.395-42.553-48.873-91.476-63.567-150.248-3.709-14.836-6.935-26.21-6.935-38.14 0-3.467 0-3.467-8.090-3.467-16.19 0-31.105-13.669-36.984-25.427-12.873-19.309-1.099-46.287 9.246-56.632 5.548-5.548 14.257-9.505 20.804-13.869h120.199zM588.28 292.406c-31.567 0-47.617 12.887-65.878 26.582-16.976 12.733-28.894 41.046-28.894 69.345 0 22.385 6.095 39.718 16.181 53.165 3.467 4.623 8.090 12.713 12.713 16.181 17.636 13.225 35.739 26.582 67.034 26.582 32.071 0 48.514-12.691 67.034-26.582 16.976-12.733 28.894-41.046 28.894-69.345 0-22.385-6.095-39.718-16.181-53.165-3.467-4.623-8.090-12.713-12.713-16.181-18.014-13.511-36.071-26.582-68.19-26.582z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["anchor"],"defaultCode":60278,"grid":24},"attrs":[],"properties":{"id":384,"order":174,"ligatures":"","prevSize":24,"code":60278,"name":"anchor"},"setIdx":0,"setId":2,"iconIdx":385},{"icon":{"paths":["M594.059 195.323l305.12 1.156c8.407 2.101 18.902 5.015 26.582 6.935 49.733 12.434 84.4 61.405 94.772 113.264 1.156 9.246 2.312 52.009 2.312 360.596s-1.156 351.35-2.312 360.596c-12.583 62.91-52.774 106.483-115.576 119.043-9.246 2.312-27.738 1.156-315.521 1.156-288.939 0-306.275 1.156-315.521-1.156-15.296-3.059-27.707-9.927-40.451-15.025-39.961-15.984-65.869-57.74-75.124-104.018-1.156-9.246-2.312-52.009-2.312-360.596s1.156-351.35 2.312-360.596c11.746-58.73 43.95-92.936 94.772-113.264 9.437-3.776 24.199-6.935 33.517-6.935 2.312 0 139.847-1.156 307.431-1.156zM889.932 1060.984c17.328-5.61 29.068-17.339 34.673-34.673v-698.077c-7.834-18.279-16.118-26.721-34.673-34.673l-298.185-1.156c-171.052 0-300.497 0-302.808 1.156-17.175 0-29.115 21.705-34.673 34.673v698.077c5.61 17.328 17.339 29.068 34.673 34.673h600.993zM588.28 388.334c101.707 0 157.183 0 161.806 1.156 25.866 6.466 48.085 18.383 61.255 38.14l9.246 13.869c11.942 17.914 10.402 44.935 10.402 77.436 0 38.98-5.82 44.001-17.336 67.034-5.108 10.217-16.379 22.637-26.582 27.738l-16.181 8.090c-4.623 2.312-12.713 4.623-17.336 5.779-9.246 2.312-20.804 1.156-164.117 1.156s-154.871 1.156-164.117-1.156c-13.896-2.778-22.652-9.593-33.517-15.025-10.217-5.108-22.637-16.379-27.738-26.582l-8.090-16.181c-2.312-4.623-3.467-11.558-4.623-16.181-1.156-5.779-3.467-16.181-3.467-35.828 0-32.422-1.925-57.789 10.402-76.28l9.246-13.869c9.61-14.417 27.447-28.82 46.23-33.517 4.623-1.156 10.402-4.623 13.869-4.623s76.28-1.156 160.65-1.156zM733.905 485.418h-288.939v47.386h288.939v-47.386zM401.047 725.815c25.164 0 43.919 21.783 43.919 47.386 0 21.677-12.817 39.715-28.894 45.074-7.344 2.448-17.030 5.855-26.582 3.467l-13.869-4.623c-14.819-4.94-26.582-22.876-26.582-42.763 0-10.587 2.584-22.232 8.090-27.738 8.586-8.586 17.896-20.804 34.673-20.804h9.246zM592.903 725.815c27.072 0 48.904 25.565 43.919 55.476-3.265 13.064-6.745 19.458-15.025 27.738-3.467 3.467-8.090 8.090-11.558 9.246-13.49 4.496-27.492 4.705-41.607 0-18.461-6.153-37.972-43.014-21.959-67.034 7.464-11.197 18.404-25.427 35.828-25.427h10.402zM785.914 725.815c25.363 0 43.919 22.544 43.919 48.542 0 35.982-31.007 55.927-67.034 43.919-16.493-5.498-28.894-23.063-28.894-45.074 0-21.685 13.347-38.351 30.050-43.919 3.467-1.156 8.090-3.467 11.558-3.467h10.402zM401.047 870.284c25.164 0 43.919 21.783 43.919 47.386 0 21.677-12.817 39.715-28.894 45.074-7.344 2.448-17.030 5.855-26.582 3.467l-13.869-4.623c-15.613-5.204-26.582-22.861-26.582-43.919 0-10.091 2.805-21.297 8.090-26.582 8.586-8.586 17.896-20.804 34.673-20.804h9.246zM592.903 870.284c27.072 0 48.904 25.565 43.919 55.476-3.265 13.064-6.745 19.458-15.025 27.738-3.467 3.467-8.090 8.090-11.558 9.246-13.49 4.496-27.492 4.705-41.607 0-18.461-6.153-37.972-43.014-21.959-67.034 7.464-11.197 18.404-25.427 35.828-25.427h10.402zM785.914 870.284h-10.402c-23.123 0-41.607 24.019-41.607 47.386 0 31.522 24.753 54.048 57.788 48.542 21.832-5.459 38.14-20.633 38.14-47.386 0-26.517-17.733-48.542-43.919-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calculator"],"defaultCode":60288,"grid":24},"attrs":[],"properties":{"id":394,"order":173,"ligatures":"","prevSize":24,"code":60288,"name":"calculator"},"setIdx":0,"setId":2,"iconIdx":395},{"icon":{"paths":["M566.321 243.865c243.865 0 278.537 1.156 287.783 2.312 34.626 6.925 57.298 19.158 78.591 40.451 5.779 5.779 12.713 16.181 17.336 21.959 16.79 20.989 19.582 37.68 24.271 70.501 1.156 9.246 1.156 115.576 1.156 309.743l-1.156 293.562-2.312 11.558c-12.413 62.061-55.052 101.853-117.887 114.42-9.246 1.156-31.205 2.312-186.077 2.312h-174.519v25.427c0 34.96 0.090 41.517-16.181 57.788-3.467 3.467-8.090 8.090-11.558 9.246-13.49 4.496-27.492 4.705-41.607 0-12.942-4.313-22.197-21.518-26.582-34.673-1.156-3.467-1.156-17.336-1.156-32.361v-25.427h-52.009c-30.050 0-55.476 0-60.099-1.156-45.348-11.338-71.584-37.697-79.747-86.682-1.156-8.090-1.156-122.51-1.156-345.571s0-337.481 1.156-345.571c5.032-30.186 13.511-44.716 31.205-62.411 9.441-9.441 19.755-16.207 33.517-19.648 4.623-1.156 10.402-4.623 13.869-4.623s130.6-1.156 283.16-1.156zM396.424 340.948h-95.928v672.65h95.928v-672.65zM668.027 340.948h-174.519v672.65h174.519l175.675-1.156c16.78-6.713 27.493-18.912 33.517-36.984 1.156-4.623 1.156-88.993 1.156-298.185 0-212.659 0-293.562-1.156-298.185-6.328-18.983-15.354-29.719-33.517-36.984zM684.208 435.72c59.412 0 71.725-4.521 92.46 26.582 10.869 16.303 3.344 45.198-6.935 55.476-4.68 6.239-14.921 10.356-23.115 13.869l-57.788 1.156c-63.474 0-56.077 2.589-75.124-6.935-15.491-7.746-24.271-21.601-24.271-45.074 0-19.229 14.36-32.607 27.738-39.296 3.467-2.312 9.246-4.623 12.713-4.623s27.738-1.156 54.321-1.156zM685.363 628.731c-43.919 0-55.476 1.156-60.099 2.312-19.236 6.412-35.828 20.379-35.828 46.23 0 26.788 15.721 39.527 35.828 46.23 5.779 1.156 16.181 2.312 60.099 2.312 31.205 0 55.476 0 58.944-1.156 13.551-6.775 23.938-12.791 32.361-25.427 12.871-19.306 1.249-44.981-9.246-55.476-7.478-7.478-13.973-9.299-23.115-13.869-3.467-1.156-26.582-1.156-58.944-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["notebook"],"defaultCode":60310,"grid":24},"attrs":[],"properties":{"id":415,"order":9,"ligatures":"","prevSize":24,"code":60310,"name":"notebook"},"setIdx":0,"setId":2,"iconIdx":416},{"icon":{"paths":["M205.725 977.77c5.61 17.328 17.339 29.068 34.673 34.673h362.907c14.845-4.948 27.343-17.307 32.361-32.361l1.156-60.099c0-50.853 1.156-60.099 2.312-64.722 6.169-18.509 23.307-33.517 47.386-33.517 24.056 0 39.008 15.316 45.074 33.517 2.312 6.935 2.312 9.246 2.312 64.722 0 46.23 0 61.255-1.156 69.345-12.609 63.045-57.194 107.599-120.199 120.199-9.246 1.156-36.984 1.156-191.856 1.156-161.806 0-182.609-1.156-191.856-2.312-63.235-12.646-106.399-52.356-119.043-115.576-2.312-9.246-1.156-26.582-1.156-315.521s-1.156-306.275 1.156-315.521c3.059-15.296 9.927-27.707 15.025-40.451 14.345-35.864 47.363-56.162 83.214-70.501 5.779-2.312 16.181-3.467 20.804-4.623 8.090-1.156 39.296-2.312 190.7-2.312 156.027 0 183.765 0 193.011 1.156 63.045 12.609 107.599 57.194 120.199 120.199 1.156 8.090 1.156 23.115 1.156 69.345 0 68.061 3.571 54.113-6.935 75.124-6.056 12.113-22.691 23.115-40.451 23.115-24.345 0-41.249-15.107-47.386-33.517-1.156-4.623-2.312-13.869-2.312-64.722l-1.156-60.099c-8.044-16.087-15.353-25.557-32.361-32.361h-364.063c-17.794 6.477-27.046 17.379-33.517 34.673v600.993zM492.352 484.262c-7.028 0-18.776 3.271-24.271 6.935-8.036 5.358-157.033 152.259-164.117 166.429-3.467 6.935-2.312 9.246-2.312 19.648 0 11.558 0 12.713 3.467 20.804 4.934 11.511 158.276 163.169 166.429 166.429 11.956 3.985 30.845 8.717 43.919 0 12.343-6.172 25.427-18.761 25.427-35.828v-13.869c0-3.467-3.467-10.402-4.623-13.869-2.312-5.779-8.090-11.558-36.984-40.451l-33.517-34.673h256.578c227.684 0 258.889-1.156 264.668-2.312 19.848-6.617 34.673-19.202 34.673-46.23 0-27.773-13.881-39.299-34.673-46.23-5.779-1.156-36.984-2.312-264.668-2.312h-256.578l33.517-34.673c28.894-28.894 34.673-34.673 36.984-40.451 1.156-3.467 4.623-10.402 4.623-13.869v-13.869c0-11.486-6.053-18.766-12.713-25.427-8.148-8.148-20.995-16.181-35.828-16.181z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["login"],"defaultCode":60327,"grid":24},"attrs":[],"properties":{"id":431,"order":91,"ligatures":"","prevSize":24,"code":60327,"name":"login"},"setIdx":0,"setId":2,"iconIdx":432},{"icon":{"paths":["M205.725 977.77c5.61 17.328 17.339 29.068 34.673 34.673h362.907c16.042-6.417 24.83-17.301 32.361-32.361l1.156-60.099c0-50.853 1.156-60.099 2.312-64.722 6.507-19.523 23.861-33.517 49.698-33.517 23.439 0 36.684 18.946 43.919 35.828l1.156 60.099c0 48.542 0 61.255-1.156 70.501-12.777 63.883-56.371 108.589-120.199 121.354-9.246 1.156-36.984 1.156-191.856 1.156-161.806 0-182.609-1.156-191.856-2.312-62.924-12.585-106.458-52.65-119.043-115.576-2.312-9.246-1.156-26.582-1.156-315.521s-1.156-306.275 1.156-315.521c3.059-15.296 9.927-27.707 15.025-40.451 14.345-35.864 47.363-56.162 83.214-70.501 5.779-2.312 16.181-3.467 20.804-4.623 8.090-1.156 39.296-2.312 190.7-2.312 156.027 0 183.765 0 193.011 1.156 63.844 12.769 107.416 57.439 120.199 121.354 1.156 9.246 1.156 21.959 1.156 70.501l-1.156 60.099c-8.325 16.651-19.652 35.828-43.919 35.828-26.037 0-43.127-13.804-49.698-33.517-1.156-4.623-2.312-15.025-2.312-65.878l-1.156-58.944c-8.044-16.087-15.353-25.557-32.361-32.361h-364.063c-17.794 6.477-27.046 17.379-33.517 34.673v600.993zM877.219 484.262c-27.086 0-52.371 25.931-46.23 56.632 1.156 4.623 2.312 10.402 4.623 13.869 3.467 5.779 10.402 12.713 36.984 40.451l32.361 33.517h-280.849c-249.643 0-282.005 1.156-287.783 2.312-19.236 6.412-35.828 20.379-35.828 46.23 0 26.788 15.721 39.527 35.828 46.23 5.779 1.156 38.14 2.312 287.783 2.312h280.849l-32.361 33.517c-26.582 27.738-33.517 34.673-36.984 40.451-6.892 10.337-7.205 33.11 0 43.919 9.096 13.644 25.429 30.512 50.853 25.427 4.623-1.156 10.402-3.467 13.869-4.623 11.109-4.444 154.117-146.678 165.273-165.273 6.892-10.337 7.205-33.11 0-43.919-11.157-18.595-154.164-160.829-165.273-165.273-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["logout"],"defaultCode":60328,"grid":24},"attrs":[],"properties":{"id":432,"order":92,"ligatures":"","prevSize":24,"code":60328,"name":"logout"},"setIdx":0,"setId":2,"iconIdx":433},{"icon":{"paths":["M1022.844 1065.607c0 24.151-19.298 35.654-35.828 43.919h-265.824c-11.455-5.728-25.922-13.043-30.050-25.427-1.156-3.467-3.467-9.246-4.623-12.713s-1.156-50.853-1.156-129.445c0-86.682 0-124.822 1.156-129.445 6.81-20.428 24.427-44.35 55.476-38.14 21.258 5.314 32.582 17.999 39.296 38.14 1.156 4.623 1.156 27.738 1.156 73.968 0 36.984 1.156 68.19 1.156 68.19 17.112-13.31 39.712-29.854 54.321-47.386 23.59-28.308 44.504-53.759 60.099-90.149 3.467-8.090 8.090-20.804 11.558-28.894s5.779-21.959 8.090-28.894c8.724-26.17 10.402-59.48 10.402-93.616 0-35.886-9.188-66.25-17.336-94.772-18.509-64.78-60.369-118.334-107.485-156.027-14.255-11.404-36.253-27.373-53.165-35.828-45.257-22.63-92.049-39.296-160.65-39.296-20.804 0-32.361 0-42.763 1.156-28.196 4.028-53.234 9.276-77.436 19.648-12.713 4.623-16.181 5.779-24.271 5.779-17.44 0-27.094-7.447-35.828-16.181-10.026-10.026-18.069-36.464-6.935-53.165 10.289-15.434 19.426-22.887 40.451-28.894 37.839-10.811 76.315-25.427 124.822-25.427h26.582c4.623 0 15.025 1.156 23.115 1.156 40.94 0 74.53 10.233 107.485 19.648 89.973 25.706 162.724 85.98 212.659 152.56 23.782 31.709 43.47 70.997 60.099 109.797 14.532 33.91 18.663 72.688 25.427 113.264 1.156 6.935 1.156 24.271 1.156 38.14 0 142.072-56.149 235.291-128.289 307.431-14.766 14.766-21.902 20.746-30.050 28.894 0 0 27.738 1.156 61.255 1.156h60.099c19.313 9.656 35.828 21.867 35.828 50.853zM234.619 447.278c0-30.603 18.937-50.853 49.698-50.853 26.002 0 46.23 20.91 46.23 47.386 0 30.064-19.33 48.542-48.542 48.542-26.078 0-47.386-18.998-47.386-45.074zM209.192 581.345c21.638 0 34.203 12.931 41.607 27.738 2.312 4.623 4.623 10.402 4.623 16.181 0 22.748-10.441 41.621-27.738 47.386-7.852 2.618-16.522 7.428-27.738 4.623-35.167 0-55.143-53.498-28.894-79.747 9.934-9.934 17.376-16.181 38.14-16.181zM233.463 777.824c19.67 0 40.173 14.189 45.074 28.894 11.521 34.562-8.175 68.19-41.607 68.19-20.253 0-28.175-6.216-38.14-16.181-10.111-10.111-18.136-37.518-6.935-54.321 6.77-10.156 19.139-25.427 34.673-25.427 3.467 0 5.779-1.156 6.935-1.156zM358.284 936.163c15.239 0 21.847 4.511 30.050 12.713 9.023 9.023 16.181 18.684 16.181 35.828 0 29.1-24.855 53.51-55.476 47.386-23.529-5.883-40.451-20.145-40.451-49.698 0-24.766 17.079-36.856 33.517-45.074 3.467-1.156 9.246-1.156 16.181-1.156zM540.894 1011.287c-16.423 0-25.735 7.243-34.673 16.181-9.391 9.391-11.558 13.46-11.558 32.361 0 32.315 19.329 48.542 50.853 48.542 24.263 0 43.919-23.779 43.919-48.542 0-29.026-20.162-48.542-48.542-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["rotate-clockwise-2"],"defaultCode":60341,"grid":24},"attrs":[],"properties":{"id":445,"order":34,"ligatures":"","prevSize":24,"code":60341,"name":"rotate-clockwise-2"},"setIdx":0,"setId":2,"iconIdx":446},{"icon":{"paths":["M1025.156 195.323c21.472 0 37.288 14.782 42.763 31.205 1.156 3.467 3.467 9.246 3.467 12.713 0 17.878-9.328 61.128-12.713 79.747-10.598 58.289-33.42 106.454-52.009 156.027-3.467 9.246-11.558 25.427-17.336 35.828s-13.869 27.738-19.648 36.984c-21.52 34.433-45.005 69.253-69.345 101.707-6.935 9.246-17.336 20.804-23.115 26.582-15.313 15.313-53.411 57.008-70.501 71.657-8.090 6.935-19.648 19.648-27.738 25.427-45.666 32.619-92.218 68.068-145.625 94.772l-32.361 16.181-12.713 4.623 1.156 19.648c0 33.367-2.945 58.531-11.558 84.37-2.312 6.935-6.935 17.336-9.246 24.271s-9.246 16.181-12.713 23.115c-9.793 19.585-20.711 31.113-36.984 47.386-34.038 34.038-74.5 59.845-132.912 68.19-13.869 2.312-16.181 3.467-122.51 3.467-79.747 0-110.953 0-115.576-1.156-20.723-6.908-32.279-17.090-39.296-38.14-1.156-4.623-1.156-35.828-1.156-107.485 0-63.567 0-107.485 1.156-115.576 13.12-78.719 43.641-130.147 94.772-171.052 5.779-4.623 16.181-11.558 23.115-15.025s16.181-10.402 23.115-12.713c32.283-10.76 63.431-20.804 108.641-20.804l19.648 1.156 4.623-11.558c21.347-53.367 55.242-105.633 87.837-149.093 6.935-9.246 17.336-21.959 23.115-30.050s18.492-19.648 25.427-27.738 21.959-23.115 33.517-34.673c38.84-38.84 73.893-68.525 120.199-99.395 90.443-60.295 194.016-103.991 321.3-127.133 16.181-2.312 25.427-3.467 31.205-3.467zM961.589 303.964c-63.854 16.805-122.518 40.455-175.675 67.034-66.737 33.368-121.427 78.665-172.208 129.445l-17.336 17.336c22.267 16.701 48.857 33.832 69.345 54.321l28.894 28.894c17.513 17.513 31.843 34.343 43.919 55.476 4.623 8.090 10.402 13.869 10.402 13.869l18.492-18.492c91.812-91.812 156.937-202.015 195.323-347.883h-1.156zM535.115 594.059c-16.446 23.758-33.378 51.299-48.542 78.591-9.084 16.349-11.454 25.22-17.336 36.984l10.402 6.935c28.387 17.032 53.495 42.159 70.501 70.501l6.935 10.402c10.083-5.040 17.361-7.524 34.673-16.181 25.554-12.777 44.049-23.705 65.878-39.296 10.402-6.935 13.869-10.402 13.869-11.558s-4.623-8.090-10.402-16.181-13.869-21.959-20.804-30.050c-30.060-35.070-65.242-65.189-105.174-90.149zM354.817 774.357h-19.648c-26.515 0-47.87 12.31-65.878 23.115-32.373 21.583-53.529 52.67-62.411 97.084-1.156 9.246-2.312 25.427-2.312 88.993v78.591h78.591c64.722 0 79.747-1.156 88.993-2.312 52.826-10.566 85.017-37.124 106.33-79.747 9.44-18.882 13.869-33.902 13.869-62.411 0-83.803-53.806-125.271-121.354-142.158-4.623-1.156-11.558-1.156-16.181-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brush"],"defaultCode":60344,"grid":24},"attrs":[],"properties":{"id":448,"order":178,"ligatures":"","prevSize":24,"code":60344,"name":"brush"},"setIdx":0,"setId":2,"iconIdx":449},{"icon":{"paths":["M342.104 1014.754c34.305 0 53.165 15.658 53.165 48.542 0 16.337-1.707 21.355-9.246 28.894-6.15 6.15-12.788 13.599-23.115 16.181-6.935 2.312-10.402 2.312-88.993 2.312l-82.059-1.156c-16.651-8.325-35.828-19.652-35.828-43.919 0-19.882 8.532-30.491 18.492-40.451 7.351-7.351 14.146-10.402 30.050-10.402h13.869l138.691-367.53c81.428-215.907 134.947-367.693 145.625-383.711 4.88-7.319 14.378-14.424 23.115-17.336 6.935-2.312 11.558-2.312 63.567-2.312 53.165 0 55.476 0 62.411 2.312 9.087 2.272 19.637 9.23 24.271 16.181 3.467 3.467 49.698 110.953 166.429 379.088l164.117 373.309h15.025c18.984 0 24.529 3.725 33.517 12.713 10.641 10.641 23.766 36.585 10.402 56.632-7.908 11.862-16.407 18.605-30.050 25.427l-177.986 1.156c-175.675 0-177.986 0-186.077-2.312-10.323-2.58-16.955-10.020-23.115-16.181-7.143-7.143-10.402-13.548-10.402-28.894 0-31.508 20.374-48.542 53.165-48.542 9.246 0 17.336-1.156 17.336-1.156s-13.869-32.361-30.050-71.657l-30.050-70.501-136.379-1.156h-136.379l-26.582 71.657c-15.025 39.296-26.582 71.657-26.582 71.657s9.246 1.156 19.648 1.156zM590.591 339.792c-13.869 0-15.025 0-16.181 2.312-0.312 0.312-20.804 55.223-20.804 55.476 0 3.182 259.556 615.529 260.045 616.018 1.156 1.156 11.558 1.156 43.919 1.156 23.115 0 42.763-1.156 42.763-1.156s-65.878-151.404-146.781-336.325l-147.937-337.481h-15.025zM503.91 530.492c-20.811 54.107-91.305 239.239-91.305 241.553 0 1.156 40.451 1.156 97.084 1.156 62.411 0 97.084 0 97.084-1.156 0-2.366-2.201-3.627-102.862-241.553z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["typography"],"defaultCode":60357,"grid":24},"attrs":[],"properties":{"id":459,"order":179,"ligatures":"","prevSize":24,"code":60357,"name":"typography"},"setIdx":0,"setId":2,"iconIdx":460},{"icon":{"paths":["M587.124 195.323c188.388 0 302.808 0 309.743 1.156 23.33 4.666 46.489 7.552 64.722 18.492 20.145 12.087 35.133 18.952 53.165 36.984 27.001 27.001 45.724 57.055 53.165 101.707 2.312 12.713 3.467 15.025 3.467 218.438 0 142.158 0 209.192-1.156 218.438-9.381 56.286-27.991 97.748-64.722 127.133-28.353 22.683-57.874 40.080-101.707 47.386-11.558 1.156-53.165 1.156-314.366 1.156-229.935 0-294.639 4.065-329.391-4.623-34.877-8.719-63.556-24.494-87.837-43.919-34.988-27.991-54.529-71.754-63.567-125.977-1.156-8.090-1.156-79.747-1.156-211.503 0-168.958-8.239-196.032 10.402-251.955 20.242-60.723 61.78-99.142 120.199-122.51 11.555-4.622 28.259-9.246 41.607-9.246 5.779 0 143.314-1.156 307.431-1.156zM588.28 292.406c-262.357 0-301.652 1.156-308.587 2.312-20.782 5.195-31.427 13.17-46.23 24.271-14.204 10.654-21.755 30.389-26.582 49.698-1.156 8.090-2.312 24.271-2.312 124.822v114.42l60.099-60.099c41.607-41.607 63.567-61.255 70.501-65.878 22.466-16.849 46.233-28.894 85.526-28.894 40.22 0 62.741 13.319 87.837 30.050 9.246 6.935 28.894 25.427 70.501 67.034l57.788 58.944 35.828-35.828c19.648-19.648 39.296-38.14 43.919-41.607 20.355-15.266 47.912-31.205 82.059-31.205 42.931 0 71.367 12.785 95.928 31.205 4.623 3.467 24.271 21.959 43.919 41.607l35.828 34.673v-114.42c0-100.551-1.156-116.731-2.312-124.822-5.381-21.526-12.869-32.184-24.271-47.386-10.654-14.204-30.389-21.755-49.698-26.582-8.090-1.156-40.451-2.312-309.743-2.312zM732.749 339.792c22.194 0 36.266 13.058 45.074 27.738 4.623 8.090 3.467 9.246 3.467 20.804 0 17.177-5.123 25.927-13.869 34.673-3.467 2.312-8.090 8.090-11.558 9.246-12.303 4.101-32.479 6.471-43.919-1.156-15.106-10.070-38.543-38.113-20.804-64.722 8.963-13.445 20.382-26.582 41.607-26.582zM733.905 722.348c0 31.282-18.91 50.853-50.853 50.853-8.090 0-11.558-1.156-17.336-3.467-16.199-8.1-202.878-205.458-224.217-216.126-8.090-3.467-11.558-4.623-18.492-4.623-12.405 0-20.633 3.738-28.894 9.246-4.623 2.312-39.296 35.828-98.239 94.772l-91.305 91.305v23.115c0 56.105 29.712 89.198 75.124 100.551 9.246 2.312 20.804 1.156 309.743 1.156h300.497c25.684-5.707 41.018-12.124 56.632-27.738 18.455-18.455 27.738-35.1 27.738-73.968v-23.115l-67.034-67.034c-47.386-47.386-69.345-68.19-75.124-71.657-10.159-5.081-14.281-8.090-28.894-8.090-11.244 0-22.12 4.784-28.894 11.558l-68.19 68.19 9.246 10.402c10.394 10.394 18.492 18.082 18.492 34.673zM396.424 1062.14c14.708 0 27.631 7.983 35.828 16.181 3.467 3.467 8.090 8.090 9.246 11.558 12.085 36.253-7.468 60.81-36.984 68.19-26.663 5.333-41.659-12.213-52.009-27.738-3.467-5.779-3.467-6.935-3.467-19.648 0-18.516 3.726-23.374 12.713-32.361 8.113-8.113 20.040-16.181 34.673-16.181zM588.28 1062.14c27.572 0 49.698 19.971 49.698 48.542 0 16.654-6.967 26.615-15.025 34.673-3.467 2.312-8.090 8.090-11.558 9.246-12.303 4.101-32.479 6.471-43.919-1.156-15.106-10.070-38.543-38.113-20.804-64.722 8.828-13.24 20.452-26.582 41.607-26.582zM781.291 1062.14c-2.312 0-6.935 1.156-9.246 1.156-14.551 0-27.974 16.651-33.517 27.738-3.467 6.935-3.467 8.090-3.467 19.648 0 28.432 16.504 41.688 39.296 47.386 24.96 4.993 41.087-10.779 50.853-25.427 12.871-19.306 1.249-44.981-9.246-55.476-8.431-8.431-18.908-15.025-34.673-15.025z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["slideshow"],"defaultCode":60361,"grid":24},"attrs":[],"properties":{"id":463,"order":195,"ligatures":"","prevSize":24,"code":60361,"name":"gallery"},"setIdx":0,"setId":2,"iconIdx":464},{"icon":{"paths":["M347.883 195.323c6.958 0 14.998 2.688 20.804 4.623 5.779 2.312 18.492 16.181 113.264 109.797l107.485 106.33 85.526-84.37c67.11-67.11 81.668-83.724 108.641-101.707 30.045-20.030 83.642-31.813 132.912-21.959 40.761 8.153 72.001 29.238 97.084 54.321 28.2 28.2 40.555 64.198 48.542 112.108 2.073 16.59-0.164 37.64-3.467 50.853-6.432 25.729-14.486 47.155-27.738 67.034-8.090 11.558-15.025 18.492-94.772 98.239l-85.526 86.682 106.33 107.485c94.772 94.772 107.485 107.485 109.797 113.264 2.655 7.965 5.515 17.495 3.467 27.738-1.156 4.623-3.467 10.402-4.623 13.869-3.872 9.677-204.994 210.286-213.815 213.815-12.986 4.328-26.548 6.176-41.607 1.156-5.779-2.312-18.492-15.025-113.264-109.797l-107.485-106.33-107.485 106.33c-94.772 93.616-107.485 107.485-113.264 109.797-18.645 6.215-40.901 4.623-116.731 4.623-68.19 0-100.551 0-105.174-1.156-20.205-6.735-31.32-17.677-38.14-38.14-1.156-4.623-1.156-36.984-1.156-105.174 0-75.403-1.423-98.593 4.623-116.731 2.312-5.779 16.181-18.492 109.797-113.264l106.33-107.485-106.33-107.485c-94.772-94.772-107.485-107.485-109.797-113.264-2.655-7.965-5.515-17.495-3.467-27.738 1.156-4.623 3.467-10.402 4.623-13.869 4.357-10.894 207.256-211.113 212.659-213.815 6.476-2.158 13.359-5.779 21.959-5.779zM877.219 300.497c-17.209 0-34.125 5.415-45.074 12.713-4.623 2.312-15.025 12.713-30.050 27.738l-23.115 23.115c41.083 42.275 81.384 82.576 122.251 122.297l1.415 1.369 20.804-20.804c23.293-23.293 31.276-27.953 40.451-55.476 1.156-3.467 2.312-12.713 2.312-18.492 0-33.552-9.473-48.768-26.582-65.878-15.907-15.907-30.987-26.582-62.411-26.582zM347.883 436.876c29.227 0 47.386 18.921 47.386 48.542 0 12.713 0 11.558-3.467 19.648-3.467 6.935-6.935 11.558-25.427 30.050l-20.804 21.959c16.929 18.122 33.887 35.080 51.404 51.449l0.605 0.56c42.268-43.27 82.572-83.941 123.164-124.323l0.502-0.499c-59.968-58.966-116.453-115.085-172.65-171.491l-0.714-0.717c-42.268 43.27-82.572 83.941-123.164 124.323l-0.502 0.499c16.864 17.068 33.808 33.646 51.030 49.935l0.979 0.918 21.959-20.804c18.492-18.492 23.115-21.959 30.050-25.427 8.090-3.467 6.935-4.623 19.648-4.623zM709.634 433.409s-114.42 113.264-253.111 251.955l-251.955 253.111v123.666h124.822c166.687-166.477 330.927-331.084 494.88-495.976l9.029-9.089zM867.973 832.144l-86.682-86.682c-42.268 43.27-82.572 83.941-123.164 124.323l-0.502 0.499c16.864 17.068 33.808 33.646 51.030 49.935l0.979 0.918 21.959-20.804c18.492-18.492 23.115-21.959 30.050-25.427 8.090-3.467 6.935-3.467 19.648-3.467 29.778 0 48.542 17.986 48.542 47.386 0 12.713-1.156 11.558-4.623 19.648-3.467 6.935-6.935 11.558-25.427 30.050l-20.804 21.959c16.929 18.122 33.887 35.080 51.404 51.449l0.605 0.56c42.268-43.27 82.572-83.941 123.164-124.323l0.502-0.499-86.682-85.526z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["tools"],"defaultCode":60362,"grid":24},"attrs":[],"properties":{"id":464,"order":19,"ligatures":"","prevSize":24,"code":60362,"name":"tools"},"setIdx":0,"setId":2,"iconIdx":465},{"icon":{"paths":["M362.907 390.646c-32.046 0-62.411-15.769-62.411-47.386 0-24.153 12.824-39.351 28.894-47.386 8.719-2.907 33.845-5.944 40.451-9.246 14.85-9.899 23.705-18.586 26.582-41.607 0-5.779 2.312-12.713 2.312-15.025 0-8.081 7.435-14.37 12.713-19.648 8.073-8.073 17.066-15.025 32.361-15.025 14.262 0 26.834 6.031 34.673 13.869 5.224 5.224 12.713 13.020 12.713 20.804 0 2.312 2.312 9.246 2.312 15.025 2.901 23.211 11.361 31.46 26.582 41.607 12.283 6.141 40.219 5.546 49.698 15.025 10.363 10.363 19.648 20.492 19.648 41.607 0 31.544-31.101 47.386-62.411 47.386-17.518 0-33.517 26-33.517 43.919 0 23.312-14.389 36.56-28.894 46.23-5.779 3.467-6.935 2.312-19.648 2.312-19.040 0-22.686-1.883-32.361-11.558-8.528-8.528-16.181-21.149-16.181-36.984 0-18.7-12.861-34.169-25.427-40.451-2.312-1.156-5.779-3.467-8.090-3.467zM877.219 195.323c8.602 0 16.421 3.548 23.115 5.779 11.109 4.444 154.117 146.678 165.273 165.273 6.892 10.337 7.205 33.11 0 43.919-9.399 15.664-730.916 738.258-743.151 743.151-12.013 4.005-31.217 8.467-43.919 0-14.582-8.749-159.44-155.551-165.273-165.273-6.892-10.337-7.205-33.11 0-43.919 7.25-12.083 734.482-740.145 741.995-743.151 5.631-3.754 14.012-5.779 21.959-5.779zM878.375 313.21l-75.124 75.124c24.722 25.915 49.209 50.402 74.259 74.304l0.865 0.82c25.915-24.722 50.402-49.209 74.304-74.259l0.82-0.865zM733.905 457.679l-508.533 508.533c24.722 25.915 49.209 50.402 74.259 74.304l0.865 0.82 508.533-508.533zM926.916 677.273c-29.628 0-45.115 19.971-48.542 47.386 0 23.531-10.408 28.9-21.959 40.451-4.607 4.607-15.885 8.090-24.271 8.090-23.312 0-36.56 14.389-46.23 28.894-3.467 5.779-2.312 6.935-2.312 19.648 0 19.040 1.883 22.686 11.558 32.361 8.528 8.528 21.149 16.181 36.984 16.181 19.121 0 33.964 12.451 40.451 25.427 1.156 2.312 3.467 5.779 3.467 8.090s2.312 9.246 2.312 15.025c3.148 25.186 18.003 47.386 45.074 47.386 23.75 0 39.439-13 47.386-28.894 2.907-8.719 5.944-33.845 9.246-40.451 9.899-14.85 18.586-23.705 41.607-26.582 5.779 0 12.713-2.312 15.025-2.312 23.707 0 44.808-44.321 28.894-68.19-5.632-8.447-16.559-24.271-28.894-24.271-2.312 0-9.246-2.312-15.025-2.312-23.211-2.901-31.46-11.361-41.607-26.582-6.141-12.283-5.546-40.219-15.025-49.698-9.241-9.241-19.409-19.648-38.14-19.648z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["wand"],"defaultCode":60363,"grid":24},"attrs":[],"properties":{"id":465,"order":180,"ligatures":"","prevSize":24,"code":60363,"name":"wand"},"setIdx":0,"setId":2,"iconIdx":466},{"icon":{"paths":["M201.102 1110.682c-22.648 0-45.074-22.017-45.074-45.074 0-14.023 2.847-19.562 6.935-27.738 5.589-8.383 103.581-107.475 150.248-154.871-4.168-8.335-17.989-25.577-23.115-35.828l-12.713-25.427c-12.172-24.345-19.22-59.843-24.271-90.149-1.156-6.935-3.467-21.959-3.467-32.361 0-95.456 28.845-163.366 72.813-216.126 5.779-8.090 32.361-35.828 70.501-73.968 52.009-52.009 62.411-61.255 68.19-63.567 7.73-2.577 17.554-6.892 28.894-4.623l13.869 4.623c5.779 2.312 10.402 8.090 31.205 27.738l25.427 24.271 70.501-71.657c39.296-39.296 72.813-71.657 76.28-73.968 6.866-4.577 16.488-8.090 26.582-8.090 36.882 0 55.257 34.176 43.919 68.19-2.312 5.779-11.558 15.025-76.28 79.747l-72.813 73.968c57.449 58.641 113.566 114.759 170.253 170.298l1.955 1.909 73.968-72.813c64.722-64.722 73.968-73.968 79.747-76.28 37.077-12.359 68.19 9.303 68.19 43.919 0 10.059-3.523 19.731-8.090 26.582-2.312 3.467-34.673 36.984-73.968 76.28l-71.657 70.501 24.271 25.427c19.648 20.804 25.427 25.427 27.738 31.205l4.623 13.869c2.273 11.367-2.038 21.136-4.623 28.894-6.23 15.576-123.672 127.139-139.847 141.002-16.487 10.991-28.306 21.087-46.23 30.050-47.339 23.67-96.598 40.451-168.74 40.451-34.591 0-59.568-9.113-87.837-16.181-38.417-9.604-65.73-29.771-95.928-47.386l-73.968 73.968c-45.074 45.074-76.28 73.968-79.747 76.28-8.12 4.060-13.753 6.935-27.738 6.935zM646.068 620.641l-164.117-164.117-36.984 38.14c-35.889 35.889-41.222 38.718-60.099 67.034-22 33.001-38.14 72.973-38.14 127.133 0 22.075 1.203 39.437 6.935 56.632l8.090 24.271c17.466 52.399 52.737 91.279 97.084 117.887 5.779 3.467 15.025 8.090 20.804 10.402l23.115 9.246c20.925 8.37 44.721 12.713 73.968 12.713 22.18 0 40.197-1.071 57.788-6.935 37.697-12.565 67.040-26.587 94.772-49.698 6.935-5.779 27.738-26.582 46.23-45.074l34.673-34.673-164.117-162.962z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plug"],"defaultCode":60377,"grid":24},"attrs":[],"properties":{"id":479,"order":200,"ligatures":"","prevSize":24,"code":60377,"name":"plug"},"setIdx":0,"setId":2,"iconIdx":480},{"icon":{"paths":["M800.939 245.020c23.917 0 40.139 6.727 54.321 16.181 4.623 2.312 32.361 28.894 72.813 69.345 36.984 35.828 69.345 70.501 72.813 75.124 12.757 17.009 20.804 33.528 20.804 63.567 0 24.187-6.491 36.32-16.181 50.853-2.312 3.467-38.14 39.296-79.747 80.903l-75.124 76.28 9.246 10.402c10.394 10.394 18.492 18.082 18.492 34.673 0 20.547-5.742 27.701-16.181 38.14-9.391 9.391-13.46 11.558-32.361 11.558-19.848 0-26.574-4.615-38.14-16.181l-10.402-10.402-177.986 177.986c-171.052 171.052-177.986 177.986-186.077 182.609l-8.090 3.467h-217.282c-12.771-6.386-25.64-12.671-31.205-26.582l-3.467-8.090-1.156-112.108v-112.108l365.219-365.219-10.402-10.402c-11.546-11.546-16.181-18.365-16.181-38.14 0-18.974 2.119-22.922 11.558-32.361 10.721-10.721 16.805-16.181 38.14-16.181 16.578 0 24.297 8.117 34.673 18.492l10.402 9.246 76.28-75.124c41.607-41.607 78.591-77.436 80.903-79.747 5.605-5.605 16.886-8.711 25.427-11.558 3.467-1.156 8.090-3.467 10.402-3.467s11.558-1.156 18.492-1.156zM925.761 464.614c-43.27-42.268-83.941-82.572-124.323-123.164l-0.499-0.502c-47.564 47.355-94.267 94.424-140.682 141.776l-2.632 2.693c43.27 42.268 83.941 82.572 124.323 123.164l0.499 0.502c47.564-47.355 94.267-94.424 140.682-141.776l2.632-2.693zM589.436 553.607l-337.481 337.481v123.666h124.822c115.449-116.451 225.034-226.401 334.905-336.064l1.42-1.417-123.666-123.666z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["color-picker"],"defaultCode":60390,"grid":24},"attrs":[],"properties":{"id":491,"order":175,"ligatures":"","prevSize":24,"code":60390,"name":"color-picker"},"setIdx":0,"setId":2,"iconIdx":492},{"icon":{"paths":["M450.745 196.479c32.762 0 59.027 4.665 82.059 16.181 6.935 3.467 18.492 6.935 24.271 10.402 45.322 27.193 79.577 58.605 104.018 107.485 15.693 31.386 24.271 60.7 24.271 106.33 0 63.169-19.918 108.691-48.542 144.47-4.623 5.779-11.558 16.181-17.336 21.959-19.058 19.058-39.697 34.873-64.722 47.386-32.845 16.422-58.625 25.427-109.797 25.427-60.44 0-87.727-14.969-127.133-34.673-15.228-7.614-29.546-21.455-42.763-34.673-42.382-42.382-70.501-93.401-70.501-176.831 0-74.917 32.417-124.877 70.501-162.962 41.746-41.746 91.891-70.501 175.675-70.501zM733.905 250.799c0-29.16 19.434-48.542 49.698-48.542 17.899 0 43.259 12.265 57.788 18.492 20.162 8.642 34.866 21.349 50.853 34.673 22.433 18.694 40.388 44.198 55.476 69.345 18.222 30.369 26.582 64.453 26.582 112.108 0 45.695-8.461 67.385-20.804 98.239-14.793 36.982-42.176 67.72-71.657 91.305-24.545 19.636-47.55 30.489-80.903 41.607-11.558 3.467-13.869 3.467-21.959 3.467-22.648 0-45.074-22.017-45.074-45.074 0-52.652 51.676-47.714 82.059-70.501 36.24-27.181 62.411-62.459 62.411-124.822 0-20.555-5.592-29.303-9.246-43.919-7.651-30.604-32.099-51.57-54.321-69.345-18.709-14.967-47.767-15.406-64.722-32.361-8.112-8.112-16.181-18.7-16.181-34.673zM443.81 292.406c-6.935 0-17.336 1.156-20.804 1.156s-10.402 3.467-16.181 4.623c-34.213 6.842-60.499 30.198-78.591 54.321-11.847 15.795-18.962 34.242-24.271 55.476-1.156 4.623-3.467 15.025-3.467 20.804 0 23.414 3.56 47.569 11.558 63.567 2.312 4.623 4.623 12.713 8.090 17.336 7.59 10.12 18.769 27.079 28.894 34.673 25.042 18.782 51.647 35.828 95.928 35.828 45.215 0 70.054-16.423 95.928-35.828 29.54-22.155 48.542-64.826 48.542-115.576 0-23.26-9.164-39.090-16.181-56.632-6.403-16.006-16.245-28.948-30.050-40.451-6.935-5.779-15.025-13.869-20.804-17.336-21.465-12.88-44.825-21.959-78.591-21.959zM450.745 773.201c102.862 0 115.576 0 125.977 2.312 67.523 11.254 120.581 45.584 154.871 91.305 21.83 29.107 41.218 68.168 48.542 112.108 1.156 10.402 2.312 23.115 2.312 72.813 0 43.919 0 62.411-1.156 67.034-4.697 14.092-11.373 29.987-25.427 34.673-12.013 4.005-31.217 8.467-43.919 0-30.485-20.324-26.582-26.74-26.582-97.084-1.156-53.165-1.156-64.722-2.312-71.657-7.39-29.555-21.121-52.327-40.451-71.657-11.74-11.74-23.855-22.718-39.296-28.894-5.779-2.312-13.869-6.935-18.492-8.090s-13.869-2.312-19.648-3.467c-9.246-1.156-26.582-2.312-120.199-2.312-118.898 0-99.592-1.116-139.847 6.935-31.376 6.276-56.491 30.246-72.813 52.009-12.286 16.382-20.635 37.295-25.427 61.255-1.156 8.090-2.312 21.959-2.312 67.034 0 36.984 0 57.788-1.156 62.411-6.982 20.947-16.816 32.521-39.296 38.14-25.352 5.070-41.004-10.655-50.853-25.427-2.312-3.467-3.467-10.402-4.623-13.869-1.156-4.623-1.156-23.115-1.156-67.034 0-72.085 0.866-59.807 8.090-95.928 11.419-57.101 45.762-101.933 85.526-131.756 30.052-22.54 66.548-40.713 113.264-47.386 8.090-1.156 15.025-2.312 17.336-2.312s56.632-1.156 119.043-1.156zM881.842 781.291c-32.265 0-52.009 19.81-52.009 52.009 0 36.010 39.377 42.564 65.878 53.165 29.793 11.918 50.042 41.794 65.878 68.19 3.467 5.779 5.779 18.492 8.090 25.427l3.467 13.869 1.156 62.411c0 52.399 0.797 62.494 5.779 77.436 4.803 14.41 29.649 28.511 50.853 24.271 21.847-5.462 32.338-17.267 39.296-38.14 1.156-3.467 1.156-24.271 1.156-58.944 0-88.666-7.601-128.134-41.607-179.142-28.078-42.116-63.85-71.077-114.42-91.305-10.139-4.057-22.237-9.246-33.517-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["users"],"defaultCode":60402,"grid":24},"attrs":[],"properties":{"id":503,"order":12,"ligatures":"","prevSize":24,"code":60402,"name":"users"},"setIdx":0,"setId":2,"iconIdx":504},{"icon":{"paths":["M346.727 243.865c84.37 0 109.797 1.156 113.264 2.312 8.428 4.214 17.727 9.254 23.115 17.336 7.304 9.738 102.002 247.063 105.174 256.578 1.156 3.467 1.156 9.246 1.156 12.713 0 16.628-6.634 26.282-15.025 34.673-2.312 2.312-23.115 15.025-46.23 28.894l-42.763 26.582 9.246 13.869c24.99 34.985 50.228 66.498 83.214 94.772 8.090 6.935 18.492 17.336 25.427 21.959s18.492 12.713 26.582 18.492l13.869 9.246 26.582-42.763c22.944-38.239 22.506-50.65 50.853-60.099 3.467-1.156 9.246-1.156 12.713-1.156s9.246 0 12.713 1.156c9.515 3.171 246.839 97.869 256.578 105.174 8.073 5.382 13.113 14.668 17.336 23.115 1.156 3.467 1.156 30.050 1.156 115.576 0 88.993 0 110.953-1.156 117.887-5.844 23.375-13.12 44.427-26.582 61.255-10.169 12.711-22.194 23.002-34.673 32.361-20.734 15.55-43.503 24.271-79.747 24.271-9.246 0-25.427 0-35.828-1.156-51.831-5.758-98.927-18.773-144.47-28.894-58.128-12.918-112.374-38.544-159.494-64.722-24.838-13.8-48.314-24.967-70.501-41.607-20.304-15.229-48.433-34.198-67.034-49.698-30.365-25.305-70.607-64.349-98.239-95.928-33.742-38.563-58.932-78.111-86.682-122.51-20.18-32.29-39.181-72.508-53.165-109.797-24.738-65.967-45.269-139.278-54.321-220.749-1.156-10.402-1.156-26.582-1.156-35.828 0-23.069 0.721-29.541 6.935-45.074 11.785-29.465 26.178-50.53 49.698-69.345 16.767-13.413 37.712-20.696 61.255-26.582 4.623-1.156 9.246-1.156 10.402-1.156s49.698-1.156 109.797-1.156zM1021.688 243.865c18.297 0 27.802 6.998 36.984 16.181 9.906 9.906 18.469 37.020 6.935 54.321-7.022 11.704-203.959 207.73-216.126 213.815-4.623 2.312-10.402 4.623-16.181 4.623-14.023 0-19.562-2.847-27.738-6.935-3.467-2.312-26.582-24.271-57.788-55.476-45.074-45.074-53.165-54.321-56.632-60.099-6.892-10.337-7.205-33.11 0-43.919 10.070-15.106 38.113-38.543 64.722-20.804 5.779 3.467 13.869 9.246 41.607 36.984l33.517 33.517 79.747-80.903c53.165-53.165 83.214-82.059 87.837-84.37 6.651-4.435 12.829-6.935 23.115-6.935zM331.702 339.792c-43.919 0-83.214 1.156-86.682 1.156-18.358 0-40.451 22.357-40.451 40.451 0 18.079 3.86 40.911 5.779 60.099 7.22 72.2 30.085 136.464 54.321 193.011 18.978 44.28 44.064 86.654 70.501 123.666 53.191 74.469 120.87 141.277 199.946 190.7 80.099 50.062 172.47 93.215 286.628 107.485 19.769 2.471 33.422 4.623 54.321 4.623 31.876 0 43.505-15.679 49.698-40.451 1.156-4.623 1.156-41.607 1.156-86.682 0-61.255 0-78.591-1.156-79.747-2.693-2.693-168.433-65.607-172.208-67.034-1.567-0.594-46.921 82.75-57.788 93.616-16.129 16.129-40.706 16.053-63.567 4.623-69.348-34.674-130.412-86.462-179.142-143.314-27.714-32.332-51.685-67.542-71.657-107.485-6.635-13.27-11.175-21.563-8.090-36.984 2.735-10.937 5.362-19.231 12.713-26.582 4.623-4.623 18.492-12.713 49.698-31.205 24.271-13.869 43.919-26.582 43.919-26.582-1.427-3.775-64.341-169.516-67.034-172.208-1.156-1.156-18.492-1.156-80.903-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["phone-check"],"defaultCode":60421,"grid":24},"attrs":[],"properties":{"id":517,"order":125,"ligatures":"","prevSize":24,"code":60421,"name":"phone-check"},"setIdx":0,"setId":2,"iconIdx":518},{"icon":{"paths":["M288.939 199.946h-16.181c-46.132 0-57.027 53.982-64.722 92.46-1.156 5.779-2.312 20.804-2.312 31.205 0 23.196 1.518 38.001 4.623 56.632 2.312 11.558 2.312 11.558 0 13.869-1.156 1.156-4.623 8.090-9.246 15.025-29.102 43.653-43.919 81.402-43.919 154.871 0 58.009 3.485 94.812 20.804 135.223 3.467 8.090 8.090 24.271 12.713 33.517 40.524 81.047 109.014 124.46 205.725 150.248 0 7.094-2.312 23.534-2.312 33.517 0 6.935 2.312 23.115 2.312 36.984v24.271l-6.935 1.156h-26.582c-34.432 0-44.823-6.683-62.411-24.271-17.102-17.102-22.646-25.3-38.14-48.542-6.935-10.402-18.492-24.271-23.115-31.205s-13.869-16.181-19.648-20.804c-18.855-15.085-35.498-32.361-68.19-32.361-23.334 0-37.99 21.358-42.763 40.451-5.351 26.762 12.502 46.546 32.361 53.165 9.412 3.138 15.545 11.095 21.959 19.648 8.345 11.125 34.902 51.082 45.074 61.255 11.629 11.629 19.122 25.237 32.361 35.828 34.002 27.202 71.625 45.074 134.068 45.074 9.246 0 18.492-2.312 19.648-2.312h2.312v19.648c0 38.188 10.061 55.969 40.451 63.567 25.704 5.141 40.868-10.448 50.853-25.427 2.312-3.467 3.467-10.402 4.623-13.869 1.156-4.623 1.156-32.361 1.156-99.395 0-50.853-2.312-98.239-2.312-105.174-3.026-30.258 19.174-33.935 25.427-58.944 1.156-4.623 0-10.402 0-13.869 0-18.949-15.563-35.623-30.050-40.451-10.745-3.582-35.066-6.038-47.386-8.090-29.036-4.84-60.319-15.806-84.37-25.427-5.779-2.312-13.869-9.246-19.648-12.713-20.323-12.193-31.229-26.614-45.074-45.074-22.341-29.787-28.277-66.799-35.828-112.108-1.156-6.935-1.156-23.115-1.156-34.673 0-59.033 18.751-90.762 45.074-123.666 4.623-5.779 10.402-11.558 11.558-15.025l4.623-13.869c1.156-3.467 0-9.246 0-12.713 0-10.813-7.301-25.312-9.246-36.984-2.312-8.090-2.312-16.181-2.312-27.738 0-13.881 1.036-23.319 2.312-33.517l3.467 1.156c10.629 0 27.275 10.247 38.14 13.869 17.944 5.982 26.178 11.673 41.607 21.959 6.935 4.623 16.181 9.246 19.648 11.558 8.275 5.515 16.518 11.558 28.894 11.558 12.459 0 50.111-9.636 63.567-11.558 33.868-4.839 37.961-5.779 88.993-5.779 64.214 0 79.969 2.078 127.133 13.869 15.025 3.467 18.492 3.467 25.427 3.467 15.672 0 20.926-6.866 35.828-16.181 25.689-16.056 47.632-28.205 77.436-38.14 6.935-2.312 12.713-4.623 15.025-4.623 3.467-1.156 2.312-1.156 3.467 3.467 0 2.312 2.312 10.402 2.312 16.181 0 29.43-4.469 53.861-11.558 75.124-6.025 30.124 19.551 44.142 31.205 63.567 13.879 23.132 30.050 50.282 30.050 85.526v33.517c0 77.47-28.042 137.474-72.813 171.052-36.184 27.138-84.964 40.536-141.002 48.542-34.898 4.985-60.189 27.469-46.23 69.345 2.164 6.49 15.71 18.707 18.492 24.271 1.156 3.467 1.156 23.115 1.156 113.264 0 77.436 0 110.953 1.156 115.576 6.81 20.428 24.427 44.35 55.476 38.14 22.693-5.672 32.063-17.599 39.296-39.296 1.156-4.623 1.156-38.14 1.156-121.354l-1.156-114.42 12.713-3.467c35.676-5.946 67.308-22.356 93.616-38.14 33.525-20.115 62.214-43.862 82.059-78.591 4.623-8.090 13.869-20.804 18.492-30.050 9.877-19.752 15.164-42.023 21.959-62.411 9.829-29.486 12.713-58.181 12.713-97.084 0-39.076-0.979-61.879-10.402-90.149l-8.090-24.271c-5.15-15.452-18.729-37.765-26.582-50.853-3.467-5.779-8.090-12.713-9.246-13.869-3.864-3.864 2.201-29.275 3.467-38.14 1.156-8.090 1.156-21.959 1.156-33.517 0-23.687-4.638-34.745-8.090-52.009-8.128-40.642-21.24-70.501-70.501-70.501-48.196 0-82.467 17.774-117.887 33.517-10.402 4.623-24.271 12.713-32.361 17.336l-13.869 8.090-19.648-3.467c-30.759-6.835-51.416-6.283-84.37-10.402-9.246-1.156-26.582-1.156-36.984-1.156-47.109 0-91.059 6.191-129.445 13.869l-11.558 1.156-18.492-10.402c-36.275-20.152-71.672-38.335-119.043-46.23-6.935-1.156-17.336-2.312-21.959-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-github"],"defaultCode":60444,"grid":24},"attrs":[],"properties":{"id":539,"order":191,"ligatures":"","prevSize":24,"code":60444,"name":"brand-github"},"setIdx":0,"setId":2,"iconIdx":540},{"icon":{"paths":["M591.747 292.406c132.912 0 152.56 1.156 157.183 2.312 8.608 2.869 13.957 7.022 19.648 12.713 4.71 4.71 300.215 495.562 301.652 502.754 1.156 4.623 1.156 10.402 1.156 15.025s-1.156 9.246-2.312 11.558c-20.11 40.22-151.52 251.030-154.871 257.734-3.21 6.42-15.506 11.333-23.115 13.869-6.935 2.312-31.205 2.312-305.12 2.312l-298.185-1.156c-8.368-3.586-17.221-7.551-21.959-13.869-2.312-3.467-39.296-61.255-78.591-127.133-46.669-78.239-72.916-115.986-78.591-138.691-2.097-10.487 0.974-21.416 3.467-28.894 1.268-3.802 289.725-485.048 299.341-494.664 5.553-5.553 16.354-13.869 25.427-13.869h154.871zM707.323 388.334h-176.831c4.587 9.174 52.197 88.212 117.887 196.479l112.108 188.388h176.831c-4.587-9.174-52.197-88.212-117.887-196.479zM446.122 435.72c-1.156-1.156-31.205 48.542-117.887 193.011l-115.576 193.011 42.763 72.813c24.271 40.451 45.074 72.813 45.074 72.813s53.165-86.682 116.731-193.011l115.576-193.011-42.763-71.657c-23.115-39.296-42.763-72.813-43.919-73.968zM589.436 676.117s-13.869 21.959-30.050 48.542l-28.894 47.386 30.050 1.156h57.788l30.050-1.156-28.894-47.386c-16.181-26.582-30.050-48.542-30.050-48.542zM705.011 870.284h-233.463l-42.763 71.657c-23.115 39.296-42.763 71.657-42.763 71.657s99.395 1.156 232.307 1.156h232.307l42.763-70.501c23.115-38.14 41.607-70.501 42.763-71.657 1.156-2.312-10.402-2.312-231.151-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-google-drive"],"defaultCode":60446,"grid":24},"attrs":[],"properties":{"id":541,"order":197,"ligatures":"","prevSize":24,"code":60446,"name":"brand-google-drive"},"setIdx":0,"setId":2,"iconIdx":542},{"icon":{"paths":["M594.059 243.865c199.946 0 216.126 0 226.528 2.312 63.657 12.732 116.067 43.803 149.093 87.837 22.429 29.905 43.376 67.245 50.853 112.108 2.312 10.402 1.156 26.582 1.156 231.151 0 240.353 4.286 197.011-6.935 253.111-8.916 44.578-35.085 82.471-62.411 109.797-29.108 29.108-63.632 47.793-107.485 62.411-6.935 2.312-17.336 4.623-24.271 5.779-10.402 2.312-26.582 1.156-231.151 1.156s-220.749 1.156-231.151-1.156c-54.423-9.070-99.464-35.898-131.756-68.19-18.284-18.284-30.333-37.456-43.919-60.099-3.467-5.779-8.090-17.336-10.402-24.271-5.1-15.302-11.064-30.556-13.869-47.386-2.312-10.402-1.156-26.582-1.156-231.151s-1.156-220.749 1.156-231.151c6.050-36.302 20.755-66.568 36.984-93.616 16.126-26.877 42.384-53.168 69.345-69.345 14.091-8.454 28.323-17.532 45.074-23.115 18.282-6.093 44.218-15.025 65.878-15.025 1.156 0 99.395-1.156 218.438-1.156zM588.28 340.948c-175.675 0-209.192 1.156-217.282 2.312-61.38 15.345-102.643 50.909-115.576 115.576-1.156 9.246-2.312 35.828-2.312 218.438s1.156 209.192 2.312 218.438c12.39 61.945 53.052 103.070 115.576 115.576 9.246 1.156 35.828 2.312 218.438 2.312s209.192-1.156 218.438-2.312c62.42-12.484 103.040-52.901 115.576-115.576 1.156-9.246 2.312-35.828 2.312-218.438s-1.156-209.192-2.312-218.438c-12.39-61.945-53.052-103.070-115.576-115.576-9.246-1.156-35.828-2.312-219.594-2.312zM758.176 463.458c0-31.201 18.804-50.853 49.698-50.853 27.011 0 45.074 19.797 45.074 47.386 0 24.687-10.141 35.698-26.582 43.919-6.935 3.467-8.090 4.623-19.648 4.623-26.663 0-48.542-19.434-48.542-45.074zM587.124 484.262c50.792 0 90.099 16.141 119.043 39.296 28.017 22.414 49.322 51.069 63.567 86.682 23.639 59.098 5.051 136.892-20.804 175.675-17.012 27.218-48.655 51.488-77.436 65.878-22.377 11.188-38.008 13.189-67.034 17.336-40.668 4.067-70.413-7.362-98.239-18.492-46.226-18.49-78.621-60.174-97.084-106.33-23.666-59.165-5.081-136.85 20.804-175.675 19.606-31.37 55.579-59.363 92.46-71.657 13.23-4.409 30.474-11.558 46.23-11.558 4.623 0 12.713-1.156 18.492-1.156zM592.903 581.345c-8.090 0-16.181 1.156-19.648 1.156-8.867 0-20.723 6.908-27.738 9.246-23.235 7.745-39.518 35.229-48.542 57.788-3.467 9.246-2.312 11.558-2.312 27.738 0 23.568 2.804 35.328 12.713 48.542 3.467 5.779 8.090 13.869 13.869 19.648 14.58 14.58 31.078 19.606 52.009 26.582 3.467 1.156 11.558 1.156 16.181 1.156 44.883 0 80.991-28.093 90.149-64.722 2.729-10.917 5.779-17.218 5.779-31.205 0-13.935-3.055-20.304-5.779-31.205-7.717-30.866-33.256-48.9-61.255-60.099-9.246-3.467-12.713-4.623-25.427-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-instagram"],"defaultCode":60448,"grid":24},"attrs":[],"properties":{"id":543,"order":196,"ligatures":"","prevSize":24,"code":60448,"name":"brand-instagram"},"setIdx":0,"setId":2,"iconIdx":544},{"icon":{"paths":["M1025.156 243.865c28.065 0 46.23 24.333 46.23 52.009 0 0.826-193.496 780.557-198.79 789.381-7.908 11.863-19.873 25.427-39.296 25.427-14.023 0-19.562-2.847-27.738-6.935-3.467-2.312-45.074-41.607-108.641-105.174l-102.862-102.862-56.632 75.124c-31.205 41.607-58.944 77.436-61.255 79.747-8.568 8.568-13.244 10.402-31.205 10.402-19.040 0-22.686-1.883-32.361-11.558-3.467-3.467-8.090-8.090-9.246-11.558s-23.115-67.034-48.542-142.158l-45.074-136.379-90.149-45.074c-83.214-41.607-91.305-45.074-97.084-50.853-10.737-10.737-22.135-37.3-9.246-56.632 4.34-8.68 12.956-16.88 20.804-20.804 20.931-10.465 865.598-335.716 876.063-340.948 3.467-1.156 9.246-1.156 15.025-1.156zM952.343 370.998c-6.169 2.39-667.574 259.634-677.273 263.512l50.853 25.427c39.296 19.648 52.009 26.582 55.476 30.050 16.843 16.843 47.619 122.010 80.903 220.749l31.205-41.607c17.336-23.115 31.205-42.763 31.205-42.763-12.156-13.372-30.050-27.571-30.050-52.009 0-11.558 0-12.713 3.467-20.804 7.577-17.678 201.454-209.839 216.126-216.126 8.090-3.467 8.090-3.467 19.648-3.467 37.381 0 55.254 33.027 43.919 67.034-2.312 5.779-12.713 16.181-85.526 88.993l-82.059 83.214 194.167 194.167 73.968-298.185c40.451-164.117 73.968-298.185 73.968-298.185z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-telegram"],"defaultCode":60454,"grid":24},"attrs":[],"properties":{"id":549,"order":181,"ligatures":"","prevSize":24,"code":60454,"name":"brand-telegram"},"setIdx":0,"setId":2,"iconIdx":550},{"icon":{"paths":["M809.029 239.242c38.109 0 49.915 5.852 77.436 15.025 16.237 5.412 30.214 14.231 42.763 24.271 5.779 4.623 10.402 6.935 11.558 6.935 8.046 0 46.431-12.395 54.321-15.025 16.192-5.397 34.415-12.378 49.698-18.492 13.825-5.53 32.974-12.69 48.542-2.312 9.586 4.792 16.367 14.725 21.959 23.115 3.467 5.779 3.467 6.935 3.467 19.648 0 21.829-11.368 44.938-19.648 63.567-4.623 10.402-20.804 45.074-36.984 77.436l-30.050 58.944-1.156 26.582c-2.315 30.092-4.527 58.269-8.090 83.214-5.982 41.874-18.876 84.364-31.205 121.354-38.704 116.114-112.946 198.717-197.634 269.291-6.935 5.779-20.804 12.713-28.894 18.492-39.823 28.444-86.758 49.724-138.691 67.034-58.007 19.336-113.977 28.894-191.856 28.894-63.673 0-108.446-11.771-159.494-23.115-41.907-9.313-77.346-24.466-114.42-39.296-17.053-6.821-77.933-35.17-86.682-43.919-10.231-10.231-13.869-15.261-13.869-34.673 0-18.516 3.726-23.374 12.713-32.361 16.747-16.747 15.325-14.269 55.476-16.181 44.415 0 58.909-4.613 91.305-13.869 25.786-7.368 56.381-19.976 77.436-31.205-6.863-5.491-28.801-18.882-36.984-25.427-39.417-31.532-85.026-72.969-108.641-120.199l-12.713-25.427c-21.832-43.666-33.517-92.91-33.517-158.339 0-88.935 23.24-158.588 53.165-218.438 9.931-17.38 19.010-32.361 43.919-32.361 33.112 0 41.494 19.258 56.632 40.451 27.565 38.591 73.097 77 115.576 98.239 26.481 13.24 56.026 29.051 87.837 38.14 21.943 6.27 53.852 10.24 77.436 13.869 0 0 1.156-5.779 1.156-12.713s2.312-17.336 3.467-24.271c4.42-26.515 10.566-49.201 21.959-68.19 12.658-21.096 23.416-40.752 40.451-57.788l17.336-17.336c4.623-4.623 16.181-11.558 23.115-16.181 15.747-10.498 39.884-24.274 60.099-30.050 20.989-5.996 46.092-16.181 71.657-16.181 2.312 0 16.181-1.156 30.050-1.156zM803.251 335.169c-3.467 0-10.402 1.156-15.025 1.156-34.005 0-66.767 17.868-88.993 31.205-42.32 25.392-61.255 66.548-61.255 135.223 0 55.869-6.3 78.591-61.255 78.591-78.824 0-140.958-18.765-198.79-40.451-59.024-22.134-103.27-59.861-147.937-97.084l-11.558-11.558c-9.281 32.481-17.336 69.375-17.336 110.953 0 29.426 2.681 55.43 10.402 78.591 5.439 16.316 11.219 35.649 19.648 49.698 40.371 67.284 93.417 109.12 166.429 145.625 25.427 12.713 28.894 15.025 33.517 19.648 6.336 6.336 13.869 18.542 13.869 30.050 0 26.983-13.774 39.238-31.205 49.698-40.745 24.447-84.698 49.738-131.756 69.345 0 0 1.156 1.156 2.312 1.156s10.402 3.467 20.804 5.779c41.232 9.163 72.057 13.065 119.043 17.336 52.816 4.064 96.614-6.664 139.847-13.869 19.991-3.332 49.016-14.594 68.19-23.115 57.672-25.632 107.69-55.681 149.093-97.084 15.829-15.829 32.048-33.834 46.23-50.853 27.384-32.862 47.933-72.547 65.878-114.42 25.868-60.358 35.82-125.863 41.607-206.88 2.607-54.759 7.744-46.693 31.205-93.616 9.246-18.492 17.336-35.828 17.336-35.828s-11.558 3.467-25.427 6.935c-23.115 6.935-25.427 6.935-34.673 6.935-26.155 0-36.38-25.702-54.321-34.673-15.83-10.554-39.185-18.492-65.878-18.492z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-twitter"],"defaultCode":60455,"grid":24},"attrs":[],"properties":{"id":550,"order":182,"ligatures":"","prevSize":24,"code":60455,"name":"brand-twitter"},"setIdx":0,"setId":2,"iconIdx":551},{"icon":{"paths":["M284.316 484.262c-50.2 0-62.902 4.449-78.591 35.828v457.679c5.268 12.291 12.768 26.986 25.427 31.205 3.467 2.312 11.558 3.467 16.181 4.623 5.779 1.156 122.51 1.156 349.038 1.156 330.546 0 338.637 0 344.415-2.312 15.854-5.284 26.989-18.559 32.361-34.673l1.156-203.413c0-203.413 1.156-204.569 3.467-210.348 4.658-13.972 15.155-20.122 26.582-27.738 5.779-2.312 8.090-2.312 18.492-2.312 29.112 0 40.252 16.738 47.386 38.14 1.156 4.623 1.156 73.968 1.156 210.348 0 202.257-1.156 203.413-3.467 213.815-12.33 61.646-55.94 97.199-115.576 112.108-6.935 1.156-64.722 1.156-362.907 1.156s-355.973 0-362.907-1.156c-61.159-15.291-104.067-52.254-116.731-115.576-2.312-9.246-1.156-24.271-1.156-243.865s-1.156-233.463 1.156-242.709c8.264-41.315 32.642-71.002 61.255-92.46 14.127-10.595 33.29-18.435 52.009-23.115 19.809-3.301 86.595-1.113 93.616-4.623 13.398-6.699 24.934-17.015 30.050-32.361 5.831-17.492 2.909-42.503 11.558-55.476 6.727-10.089 10.658-21.286 20.804-28.894 14.78-11.084 27.313-18.097 47.386-23.115 5.779-1.156 23.115-2.312 91.305-2.312l83.214 1.156c7.963 3.413 16.231 6.985 21.959 12.713 10.819 10.819 22.137 37.295 9.246 56.632-5.798 11.597-18.29 19.064-28.894 25.427h-158.339v10.402c0 31.773-15.229 54.274-27.738 75.124-12.208 20.348-31.713 31.741-52.009 43.919-25.227 15.137-37.911 15.025-80.903 15.025zM877.219 339.792c105.174 0 150.248 0 154.871 1.156 9.897 3.299 17.12 5.563 24.271 12.713 10.849 10.849 21.982 37.527 9.246 56.632-4.88 7.318-11.937 17.847-20.804 20.804-3.467 1.156-9.246 3.467-12.713 4.623-4.623 1.156-49.698 1.156-153.716 1.156-105.174 0-149.093 0-153.716-1.156-20.428-6.81-44.35-24.427-38.14-55.476 5.15-20.601 17.895-32.932 36.984-39.296 4.623-1.156 39.296-1.156 153.716-1.156zM588.28 532.804c48.595 0 79.382 15.268 109.797 33.517 50.351 30.211 84.37 88.469 84.37 167.585 0 26.854-8.823 53.476-18.492 72.813-31.754 63.506-85.933 110.953-180.298 110.953-25.371 0-42.708-3.445-60.099-10.402-70.131-28.051-113.634-80.015-125.977-166.429-7.359-73.594 26.899-122.827 63.567-159.494 22.173-22.173 53.529-35.054 88.993-43.919 4.623-1.156 11.558-3.467 16.181-3.467s13.869-1.156 21.959-1.156zM596.37 629.887h-16.181c-20.040 0-30.116 9.278-43.919 16.181-23.245 11.622-42.763 40.724-42.763 73.968 0 41.31 16.564 61.639 36.984 82.059 3.467 3.467 10.402 5.779 13.869 8.090 11.852 7.902 32.155 11.558 52.009 11.558 33.479 0 63.724-23.427 75.124-46.23 7.955-15.91 13.869-31.136 13.869-55.476 0-17.937-6.236-25.989-11.558-39.296-6.568-16.42-20.255-28.143-33.517-36.984-10.718-7.146-26.736-13.869-43.919-13.869z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["camera-minus"],"defaultCode":60474,"grid":24},"attrs":[],"properties":{"id":567,"order":50,"ligatures":"","prevSize":24,"code":60474,"name":"camera-minus"},"setIdx":0,"setId":2,"iconIdx":568},{"icon":{"paths":["M877.219 195.323c27.567 0 41.479 18.106 48.542 39.296 1.156 3.467 1.156 23.115 1.156 55.476v49.698h49.698c48.299 0 48.949-0.635 68.19 5.779 18.238 6.079 36.364 41.384 20.804 64.722-19.65 29.475-28.168 26.582-88.993 26.582h-49.698v49.698c0 32.361 0 52.009-1.156 55.476-6.982 20.947-16.816 32.521-39.296 38.14-30.347 6.069-48.010-15.739-55.476-38.14-1.156-3.467-1.156-23.115-1.156-55.476v-49.698h-49.698c-32.361 0-52.009 0-55.476-1.156-20.428-6.81-44.35-24.427-38.14-55.476 5.314-21.258 17.999-32.582 38.14-39.296 3.467-1.156 23.115-1.156 55.476-1.156h49.698v-49.698c0-32.361 0-52.009 1.156-55.476 6.542-19.626 20.453-39.296 46.23-39.296zM308.587 484.262c-68.294 0-83.337-3.221-102.862 35.828v457.679c5.268 12.291 12.768 26.986 25.427 31.205 3.467 2.312 11.558 3.467 16.181 4.623 5.779 1.156 122.51 1.156 349.038 1.156 330.546 0 338.637 0 344.415-2.312 15.854-5.284 26.989-18.559 32.361-34.673l1.156-179.142c0-188.551-4.547-170.049 8.090-195.323 3.268-6.537 14.47-14.27 20.804-18.492 5.779-3.467 6.935-2.312 19.648-2.312 29.043 0 40.144 15.261 47.386 36.984 1.156 4.623 1.156 58.944 1.156 186.077 0 177.986-1.156 180.298-3.467 190.7-12.33 61.646-55.94 97.199-115.576 112.108-6.935 1.156-64.722 1.156-362.907 1.156s-355.973 0-362.907-1.156c-61.159-15.291-104.067-52.254-116.731-115.576-2.312-9.246-1.156-24.271-1.156-243.865s-1.156-233.463 1.156-242.709c8.264-41.315 32.642-71.002 61.255-92.46 14.127-10.595 33.29-18.435 52.009-23.115 22.705-3.784 133.707-0.975 141.002-4.623 10.66-5.329 23.705-13.324 27.738-25.427 1.156-3.467 3.467-6.935 3.467-10.402 0-49.427 24.813-81.751 57.788-98.239 6.825-3.413 19.001-6.935 25.427-6.935 2.312 0 31.205-1.156 63.567-1.156l58.944 1.156c7.963 3.413 16.231 6.985 21.959 12.713 10.819 10.819 22.137 37.295 9.246 56.632-5.798 11.597-18.29 19.064-28.894 25.427h-109.797v9.246c0 5.779-2.312 13.869-3.467 18.492l-4.623 18.492c-12.682 50.73-58.384 85.414-110.953 95.928-8.090 1.156-21.959 2.312-65.878 2.312zM588.28 532.804c48.595 0 79.382 15.268 109.797 33.517 50.351 30.211 84.37 88.469 84.37 167.585 0 26.854-8.823 53.476-18.492 72.813-31.754 63.506-85.933 110.953-180.298 110.953-25.371 0-42.708-3.445-60.099-10.402-70.131-28.051-113.634-80.015-125.977-166.429-7.359-73.594 26.899-122.827 63.567-159.494 22.173-22.173 53.529-35.054 88.993-43.919 4.623-1.156 11.558-3.467 16.181-3.467s13.869-1.156 21.959-1.156zM596.37 629.887h-16.181c-20.040 0-30.116 9.278-43.919 16.181-23.245 11.622-42.763 40.724-42.763 73.968 0 41.31 16.564 61.639 36.984 82.059 3.467 3.467 10.402 5.779 13.869 8.090 11.852 7.902 32.155 11.558 52.009 11.558 33.479 0 63.724-23.427 75.124-46.23 7.955-15.91 13.869-31.136 13.869-55.476 0-17.937-6.236-25.989-11.558-39.296-6.568-16.42-20.255-28.143-33.517-36.984-10.718-7.146-26.736-13.869-43.919-13.869z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["camera-plus"],"defaultCode":60475,"grid":24},"attrs":[],"properties":{"id":568,"order":51,"ligatures":"","prevSize":24,"code":60475,"name":"camera-plus"},"setIdx":0,"setId":2,"iconIdx":569},{"icon":{"paths":["M588.28 339.792c258.889 0 390.646 0 395.269 1.156 20.817 6.939 38.14 18.66 38.14 47.386 0 29.112-16.738 40.252-38.14 47.386-4.623 1.156-136.379 1.156-394.113 1.156s-389.49 0-394.113-1.156c-20.817-6.939-38.14-18.66-38.14-47.386 0-16.782 4.377-25.18 12.713-33.517 5.506-5.506 16.279-13.869 24.271-13.869 2.312 0 177.986-1.156 394.113-1.156zM588.28 628.731c258.889 0 390.646 0 395.269 1.156 20.817 6.939 38.14 18.66 38.14 47.386 0 29.112-16.738 40.252-38.14 47.386-4.623 1.156-136.379 1.156-394.113 1.156s-389.49 0-394.113-1.156c-20.817-6.939-38.14-18.66-38.14-47.386 0-16.782 4.377-25.18 12.713-33.517 5.506-5.506 16.279-13.869 24.271-13.869 2.312 0 177.986-1.156 394.113-1.156zM588.28 917.67c-216.126 0-391.801 1.156-394.113 1.156-14.551 0-27.974 16.651-33.517 27.738-3.467 6.935-3.467 8.090-3.467 19.648 0 29.112 16.738 40.252 38.14 47.386 4.623 1.156 136.379 1.156 394.113 1.156s389.49 0 394.113-1.156c20.817-6.939 38.14-18.66 38.14-47.386 0-29.112-16.738-40.252-38.14-47.386-4.623-1.156-136.379-1.156-395.269-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["menu-2"],"defaultCode":60482,"grid":24},"attrs":[],"properties":{"id":575,"order":103,"ligatures":"","prevSize":24,"code":60482,"name":"menu"},"setIdx":0,"setId":2,"iconIdx":576},{"icon":{"paths":["M596.37 197.634c77.839 0 125.25 15.908 181.454 36.984 9.246 3.467 20.804 9.246 26.582 12.713 22.881 13.728 51.893 27.183 72.813 43.919 32.214 25.771 73.155 61.767 95.928 95.928 9.835 14.753 25.674 37.011 34.673 52.009 37.976 63.294 62.411 138.544 62.411 239.242 0 103.011-23.802 180.75-65.878 243.865-4.623 6.935-9.246 17.336-12.713 21.959s-10.402 15.025-15.025 21.959-13.869 16.181-17.336 20.804-11.558 13.869-18.492 20.804l-24.271 24.271c-15.896 15.896-30.208 27.072-48.542 39.296-37.121 24.747-82.133 51.206-129.445 64.722-39.592 11.311-78.219 23.115-128.289 23.115h-41.607c-27.865 0-43.896-5.197-67.034-8.090-23.365-2.921-39.125-7.159-60.099-15.025-9.246-3.467-25.427-8.090-33.517-11.558l-15.025-6.935-46.23 8.090c-52.052 9.463-110.701 19.136-159.494 28.894-28.894 4.623-31.205 4.623-38.14 3.467-21.768-5.441-34.95-17.292-40.451-39.296-1.156-5.779-1.156-9.246 0-15.025 2.145-8.583-0.193-1.007 71.657-171.052l-6.935-11.558c-21.19-35.318-38.527-78.984-49.698-123.666-7.968-31.868-15.025-58.256-15.025-97.084v-43.919c0-47.714 12.486-84.615 21.959-122.51 14.93-59.718 50.468-115.962 84.37-158.339 55.506-69.382 128.098-119.405 219.594-153.716 30.928-11.598 65.281-17.406 101.707-21.959 9.246-1.156 20.804-2.312 23.115-2.312h36.984zM236.93 1047.115c97.673-17.236 155.165-27.738 162.962-27.738 14.233 0 19.9 4.172 32.361 10.402 44.418 22.209 102.293 33.517 168.74 33.517 37.1 0 65.007-8.451 95.928-16.181 20.965-5.241 41.757-13.366 58.944-21.959l25.427-12.713c26.985-13.492 41.993-27.905 64.722-47.386 53.814-46.126 88.234-105.205 113.264-180.298 11.185-33.554 15.025-60.786 15.025-105.174 0-40.516-3.599-62.94-11.558-94.772-10.312-41.245-25.309-79.57-46.23-110.953l-16.181-24.271c-4.623-6.935-13.869-16.181-18.492-21.959-12.071-15.090-36.728-36.963-52.009-49.698-26.852-22.375-55.462-40.446-90.149-54.321-43.891-17.556-88.918-30.050-151.404-30.050-15.025 0-28.894 1.156-31.205 1.156-12.297 0-39.642 6.223-50.853 8.090-44.936 7.489-82.449 26.64-116.731 46.23-19.235 10.991-42.341 28.472-57.788 43.919-36.655 36.655-69.264 72.239-91.305 123.666-11.221 26.181-23.034 53.751-27.738 86.682-2.932 20.526-8.090 39.082-8.090 62.411 0 94.987 24.635 162.158 61.255 220.749 9.13 14.608 17.336 19.893 17.336 34.673v13.869c-1.12 5.597-46.224 112.094-46.23 112.108zM473.86 461.147h-13.869c-30.518 0-53.614 29.085-61.255 52.009-2.312 5.779-1.156 11.558-1.156 49.698 0 34.673 0 45.074 1.156 56.632 9.768 68.379 42.171 124.23 82.059 164.117 40.656 40.656 96.136 74.328 166.429 84.37 11.558 1.156 23.115 1.156 56.632 1.156 54.125 0 40.605 3.391 63.567-8.090 21.668-8.667 38.14-33.963 38.14-63.567 0-36.183-17.624-50.274-39.296-64.722-3.467-2.312-11.558-3.467-15.025-4.623-5.779-1.156-12.713-2.312-40.451-2.312-46.438 0-56.046 1.726-76.28 21.959-5.861 5.861-8.547 9.003-11.558 15.025-56.297-18.766-100.173-62.432-119.043-119.043 13.641-6.82 22.718-20.785 31.205-33.517 2.312-3.467 3.467-11.558 4.623-15.025 1.156-4.623 1.156-18.492 1.156-42.763 0-34.673-1.156-35.828-3.467-42.763-6.191-24.768-33.314-48.542-63.567-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-whatsapp"],"defaultCode":60532,"grid":24},"attrs":[],"properties":{"id":622,"order":184,"ligatures":"","prevSize":24,"code":60532,"name":"brand-whatsapp"},"setIdx":0,"setId":2,"iconIdx":623},{"icon":{"paths":["M349.038 278.537c12.312-18.469 19.307-34.673 49.698-34.673 25.58 0 36.476 18.632 45.074 35.828l1.156 154.871c0 151.404 0 152.56-2.312 160.65-2.58 10.323-10.020 16.955-16.181 23.115-7.143 7.143-13.548 10.402-28.894 10.402-28.782 0-37.063-17.454-48.542-34.673v-315.521zM591.747 243.865c20.715 0 37.487 15.375 42.763 31.205 2.312 5.779 3.467 5.779 3.467 84.37 0 50.853 0 80.903-1.156 85.526-5.898 17.691-13.769 26.515-27.738 35.828-5.779 3.467-6.935 2.312-19.648 2.312-29.899 0-39.909-15.71-47.386-38.14-1.156-3.467-1.156-35.828-1.156-80.903 0-46.23 0-77.436 1.156-80.903 7.488-22.463 19.153-39.296 49.698-39.296zM829.833 594.059c-11.476 17.214-19.775 34.673-48.542 34.673-15.432 0-21.703-3.211-28.894-10.402-6.15-6.15-13.599-12.788-16.181-23.115-2.312-8.090-2.312-9.246-2.312-160.65l1.156-154.871c3.337-6.673 6.447-15.693 11.558-20.804 8.298-8.298 20.474-15.025 35.828-15.025 26.299 0 38.569 18.193 47.386 35.828v314.366zM591.747 581.345c14.468 0 23.559 5.067 31.205 12.713 5.779 5.779 6.935 8.090 38.14 70.501l32.361 65.878 63.567 10.402c54.321 9.246 64.722 11.558 70.501 13.869 11.51 7.674 26.582 20.437 26.582 39.296 0 11.020-2.064 17.75-4.623 25.427-2.312 4.623-12.713 16.181-45.074 48.542l-42.763 42.763 10.402 76.28c10.402 70.501 10.402 76.28 9.246 83.214-5.709 22.838-18.795 40.451-47.386 40.451-3.467 0-9.246 0-12.713-1.156s-33.517-16.181-68.19-33.517l-63.567-31.205-63.567 31.205c-34.673 17.336-64.722 32.361-68.19 33.517s-9.246 1.156-12.713 1.156c-27.801 0-41.715-17.764-47.386-40.451-1.156-6.935-1.156-12.713 9.246-83.214l10.402-76.28-42.763-42.763c-40.045-40.045-41.524-37.89-48.542-58.944-1.156-3.467-1.156-10.402-1.156-15.025 0-17.608 13.083-31.968 25.427-38.14 8.090-4.623 10.402-4.623 71.657-15.025l63.567-10.402 31.205-64.722c21.959-42.763 34.673-64.722 36.984-68.19 10.052-10.052 17.288-16.181 38.14-16.181zM589.436 738.528s-8.090 13.869-16.181 31.205c-21.459 42.918-20.355 46.348-68.19 54.321-13.869 2.312-25.427 5.779-27.738 5.779-3.467 1.156-3.467 1.156 13.869 18.492 18.858 20.572 20.34 17.791 25.427 38.14 1.156 6.935 1.156 10.402-4.623 47.386-3.467 21.959-5.779 41.607-5.779 42.763 0 0.925 57.716-30.035 75.124-33.517 5.779-1.156 10.402-1.156 16.181 0 17.408 3.482 75.124 34.442 75.124 33.517 0-1.156-2.312-20.804-5.779-42.763-7.697-49.258-7.735-38.047 0-61.255 2.312-4.623 8.090-11.558 20.804-24.271 16.181-16.181 17.336-18.492 15.025-18.492-4.967 0-54.834-10.082-57.788-11.558-22.8-11.399-22.188-14.327-39.296-48.542-8.090-17.336-16.181-31.205-16.181-31.205z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["medal"],"defaultCode":60536,"grid":24},"attrs":[],"properties":{"id":626,"order":186,"ligatures":"","prevSize":24,"code":60536,"name":"ratings"},"setIdx":0,"setId":2,"iconIdx":627},{"icon":{"paths":["M591.747 243.865c26.239 0 38.528 19.658 45.074 39.296 1.156 4.623 1.156 136.379 1.156 394.113s0 389.49-1.156 394.113c-6.939 20.817-18.66 38.14-47.386 38.14-29.112 0-40.252-16.738-47.386-38.14-1.156-4.623-1.156-136.379-1.156-394.113s0-389.49 1.156-394.113c7.373-22.118 20.371-39.296 49.698-39.296zM397.58 436.876c13.823 0 22.070 3.578 28.894 10.402 9.903 9.903 18.492 20.36 18.492 40.451 0 5.779-2.312 11.558-4.623 16.181-3.467 6.935-8.090 12.713-85.526 90.149l-82.059 83.214 82.059 83.214c77.436 77.436 82.059 83.214 85.526 90.149 2.312 4.623 4.623 10.402 4.623 16.181 0 19.882-8.532 30.491-18.492 40.451-7.143 7.143-13.548 10.402-28.894 10.402-11.558 0-12.713-1.156-20.804-4.623-15.753-6.752-210.507-201.857-216.126-214.971-3.467-8.090-3.467-9.246-3.467-20.804 0-10.402-1.156-12.713 2.312-19.648 7.673-15.345 207.882-212.005 209.192-212.659 9.265-4.632 13.393-8.090 28.894-8.090zM783.603 436.876c-16.839 0-23.243 2.44-31.205 10.402-9.903 9.903-18.492 20.36-18.492 40.451 0 5.779 2.312 11.558 4.623 16.181 3.467 6.935 8.090 12.713 85.526 90.149l82.059 83.214-82.059 83.214c-77.436 77.436-82.059 83.214-85.526 90.149-2.312 4.623-4.623 10.402-4.623 16.181 0 19.882 8.532 30.491 18.492 40.451 7.143 7.143 13.548 10.402 28.894 10.402 11.558 0 12.713-1.156 20.804-4.623 15.753-6.752 210.507-201.857 216.126-214.971 3.467-8.090 3.467-9.246 3.467-20.804s0-12.713-3.467-20.804c-5.619-13.113-200.372-208.219-216.126-214.971-6.935-3.467-9.246-4.623-18.492-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["separator-vertical"],"defaultCode":60538,"grid":24},"attrs":[],"properties":{"id":628,"order":185,"ligatures":"","prevSize":24,"code":60538,"name":"separator-vertical"},"setIdx":0,"setId":2,"iconIdx":629},{"icon":{"paths":["M515.467 195.323c145.625 0 177.986 0 182.609 1.156 3.467 1.156 8.090 3.467 11.558 4.623 5.88 2.94 256.2 256.010 258.889 260.045 1.156 3.467 4.623 9.246 5.779 13.869 1.156 5.779 1.156 17.336 1.156 55.476 0 26.582-1.156 50.853-1.156 55.476 0 24.578-22.997 42.763-47.386 42.763-24.159 0-41.351-14.002-46.23-33.517-2.312-6.935-2.312-10.402-2.312-34.673v-27.738h-80.903l-80.903-1.156-11.558-3.467c-5.779-2.312-15.025-5.779-19.648-8.090-18.059-9.030-27.469-25.6-38.14-41.607-6.216-9.322-6.842-20.245-9.246-34.673-1.156-6.935-1.156-43.919-1.156-82.059v-69.345h-150.248l-149.093 1.156c-12.109 5.189-25.904 10.679-30.050 23.115-9.355 28.063-6.935 15.915-6.935 145.625 0 122.51 0 125.977-2.312 132.912-4.884 19.533-21.59 33.517-46.23 33.517-29.246 0-42.391-18.941-47.386-43.919-1.156-5.779-1.156-60.099-1.156-135.223 0-112.108 0-125.977 2.312-135.223 9.008-45.042 36.513-82.401 72.813-100.551l16.181-8.090c8.468-4.234 26.634-9.246 36.984-9.246 4.623 0 86.682-1.156 183.765-1.156zM733.905 360.596v75.124h75.124l-36.984-38.14c-20.804-20.804-38.14-36.984-38.14-36.984zM226.528 724.659c59.429 0 73.174-2.577 94.772 4.623 8.599 2.866 17.802 13.647 21.959 21.959 12.873 19.309 1.099 46.287-9.246 56.632-5.718 5.718-14.008 9.304-21.959 12.713h-168.74c-7.168-3.583-15.362-7.272-20.804-12.713-16.446-16.446-19.301-50.044-1.156-68.19 5.585-5.585 16.572-13.869 26.582-13.869 3.467 0 39.296-1.156 78.591-1.156zM588.28 724.659c39.296 0 73.968 1.156 78.591 1.156 24.139 0 42.763 23.487 42.763 48.542 0 26.714-16.943 39.55-36.984 46.23l-80.903 1.156c-72.813 0-82.059-1.156-87.837-2.312-20.118-6.707-33.517-18.372-33.517-46.23 0-23.286 10.471-34.707 26.582-42.763 4.623-2.312 10.402-4.623 13.869-4.623s38.14-1.156 77.436-1.156zM950.032 724.659c59.391 0 71.926-2.607 93.616 4.623 8.599 2.866 17.802 13.647 21.959 21.959 12.873 19.309 1.099 46.287-9.246 56.632-5.432 5.432-13.648 9.135-20.804 12.713h-168.74c-7.963-3.413-16.231-6.985-21.959-12.713-26.667-26.667-10.332-82.059 26.582-82.059 3.467 0 39.296-1.156 78.591-1.156zM251.955 917.67c-14.336 0-26.7 8.209-34.673 16.181-15.444 15.444-13.869 30.666-13.869 67.034 0 39.662 3.949 52.973 16.181 77.436 13.24 26.481 35.996 53.232 64.722 64.722 13.297 5.319 22.013 10.876 36.984 13.869 9.246 2.312 23.115 1.156 268.135 1.156h258.889l11.558-2.312c22.445-3.74 41.475-14.059 56.632-25.427 36.418-27.314 58.944-65.199 58.944-129.445 0-50.864-1.363-71.998-41.607-82.059-5.779-1.156-9.246-1.156-15.025 0l-13.869 4.623c-12.78 4.26-20.185 20.011-26.582 31.205v34.673c0 51.396-2.398 56.834-36.984 71.657h-503.91c-34.414-14.75-36.984-20.457-36.984-71.657v-34.673c-10.524-18.419-20.33-36.984-48.542-36.984z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["page-break"],"defaultCode":60545,"grid":24},"attrs":[],"properties":{"id":635,"order":76,"ligatures":"","prevSize":24,"code":60545,"name":"page-break"},"setIdx":0,"setId":2,"iconIdx":636},{"icon":{"paths":["M598.682 291.251c263.873 0 233.997-3.591 286.628 6.935 76.085 15.217 124.022 65.316 158.339 122.51 12.548 20.915 20.842 49.925 25.427 77.436 2.312 12.713 1.156 24.271 1.156 179.142s1.156 166.429-1.156 179.142c-3.085 18.511-7.289 37.693-15.025 53.165-3.467 6.935-6.935 18.492-10.402 24.271-34.121 56.87-82.514 107.345-158.339 122.51-5.779 1.156-16.181 3.467-23.115 4.623-12.713 2.312-28.894 2.312-272.758 2.312s-260.045 0-272.758-2.312c-58.56-8.365-103.424-34.079-137.535-68.19-14.042-14.042-19.998-23.842-32.361-39.296-15.147-18.936-22.923-45.654-31.205-70.501-2.312-6.935-4.623-18.492-5.779-25.427-2.312-11.558-1.156-24.271-1.156-180.298s-1.156-168.74 1.156-180.298c4.667-28.004 13.168-48.445 23.115-71.657 24.415-56.97 73.803-94.706 131.756-117.887 20.533-8.213 41.037-15.025 68.19-15.025 8.090 0 127.133-1.156 265.824-1.156zM594.059 388.334c-139.847 0-256.578 1.156-258.889 1.156s-9.246 1.156-13.869 2.312l-18.492 4.623c-23.344 5.837-42.103 21.299-57.788 36.984-20.075 20.075-32.849 44.042-39.296 76.28-1.156 9.246-1.156 34.673-1.156 167.585s0 158.339 1.156 167.585c9.83 49.146 37.906 88.397 79.747 106.33 8.090 3.467 18.492 8.090 25.427 9.246l23.115 4.623c8.090 1.156 80.903 1.156 262.357 1.156 251.955 0 253.111-1.156 263.512-3.467 20.219-4.044 36.41-11.126 50.853-21.959 30.512-22.884 53.604-51.899 62.411-95.928 1.156-9.246 1.156-34.673 1.156-167.585s0-158.339-1.156-167.585c-11.907-59.531-53.581-105.95-113.264-117.887l-11.558-2.312zM446.122 520.090c9.575-19.151 20.557-35.828 48.542-35.828 4.623 0 11.558 2.312 15.025 3.467s61.255 35.828 129.445 76.28c92.46 55.476 125.977 75.124 129.445 79.747 16.194 16.194 17.648 49.385 0 67.034-3.467 4.623-36.984 24.271-129.445 79.747-68.19 40.451-125.977 75.124-129.445 76.28s-9.246 3.467-12.713 3.467c-30.592 0-40.602-15.324-50.853-35.828v-314.366zM590.591 647.223l-48.542-28.894v117.887l48.542-28.894c26.582-16.181 48.542-30.050 48.542-30.050s-21.959-13.869-48.542-30.050z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-youtube"],"defaultCode":60560,"grid":24},"attrs":[],"properties":{"id":649,"order":183,"ligatures":"","prevSize":24,"code":60560,"name":"brand-youtube"},"setIdx":0,"setId":2,"iconIdx":650},{"icon":{"paths":["M592.903 243.865l308.587 1.156 11.558 2.312c29.662 4.943 58.68 25.845 73.968 46.23 3.467 4.623 10.402 11.558 13.869 17.336 10.404 17.34 15.286 34.562 20.804 56.632 1.156 5.779 1.156 102.862 1.156 309.743s0 303.964-1.156 309.743c-2.785 11.144-5.451 27.082-10.402 36.984-9.463 18.924-21.874 38.653-38.14 50.853-4.623 3.467-11.558 10.402-17.336 13.869-13.589 8.154-26.571 13.095-42.763 18.492l-13.869 2.312h-621.797c-41.927-9.318-76.169-28.324-95.928-61.255-9.92-16.534-17.722-28.51-21.959-49.698l-2.312-11.558v-619.485l2.312-11.558c5.982-29.911 20.458-50.508 39.296-69.345 5.779-5.779 12.713-13.869 17.336-16.181 17.83-8.914 39.145-25.427 65.878-25.427 1.156 0 141.002-1.156 310.898-1.156zM892.244 1012.442c14.998-5.238 27.121-17.366 32.361-32.361v-605.616c-4.948-14.845-17.307-27.343-32.361-32.361l-300.497-1.156c-291.251 0-301.652 0-307.431 2.312-14.724 4.907-24.484 17.289-30.050 31.205v605.616c5.238 14.998 17.366 27.121 32.361 32.361h605.616zM443.81 580.19c-35.575 0-53.886 37.132-42.763 70.501 2.338 5.847 156.168 161.537 167.585 166.429 8.090 3.467 9.246 3.467 20.804 3.467s12.713 1.156 20.804-3.467c16.815-9.608 163.991-157.445 167.585-166.429 4.219-12.657 6.589-32.301-1.156-43.919-4.667-7.002-13.552-18.001-21.959-20.804l-13.869-4.623c-9.827-1.965-18.821 0.881-26.582 3.467-4.623 2.312-16.181 11.558-65.878 61.255l-58.944 58.944-58.944-57.788c-40.451-39.296-60.099-60.099-63.567-61.255-3.999-1.999-16.656-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["select"],"defaultCode":60574,"grid":24},"attrs":[],"properties":{"id":663,"order":187,"ligatures":"","prevSize":24,"code":60574,"name":"select"},"setIdx":0,"setId":2,"iconIdx":664},{"icon":{"paths":["M299.341 291.251c52.009 0 98.239 1.156 102.862 1.156 25.601 0 42.763 22.834 42.763 48.542 0 24.056-15.316 39.008-33.517 45.074-6.935 2.312-9.246 2.312-34.673 2.312h-27.738v95.928h191.856v-8.090c0-26.009 16.379-46.429 30.050-60.099 10.67-10.67 25.82-20.163 41.607-25.427 6.935-2.312 17.336-2.312 165.273-2.312 165.286 0 145.111-2.729 183.765 6.935 30.763 7.69 51.192 39.495 58.944 70.501 1.156 6.935 2.312 18.492 2.312 67.034s-1.156 60.099-2.312 67.034c-7.419 29.675-21.335 46.341-42.763 62.411-9.78 7.336-20.692 9.507-33.517 12.713-8.090 1.156-26.582 2.312-166.429 2.312-147.937 0-158.339 0-165.273-2.312-32.86-10.954-59.458-34.418-68.19-69.345-1.156-4.623-3.467-11.558-3.467-16.181v-8.090h-191.856v287.783h191.856v-8.090c0-44.271 39.562-76.636 75.124-85.526 8.090-2.312 15.025-1.156 167.585-1.156h159.494c41.122 10.282 64.519 32.908 77.436 71.657 2.312 5.779 2.312 12.713 2.312 67.034 0 58.389 0.362 59.81-5.779 84.37-4.66 18.639-19.27 36.731-33.517 46.23-8.607 5.738-17.794 12.25-28.894 15.025-4.623 1.156-15.025 2.312-21.959 3.467-9.246 1.156-63.567 1.156-160.65 1.156l-147.937-1.156c-37.227-9.307-70.924-31.009-78.591-69.345-1.156-5.779-4.623-13.869-4.623-18.492v-8.090h-105.174c-97.084 0-105.174 0-112.108-2.312-32.86-10.954-59.458-34.418-68.19-69.345l-3.467-9.246v-496.975h-27.738c-25.427 0-27.738 0-34.673-2.312-18.234-6.078-33.517-21.231-33.517-45.074 0-22.705 12.673-39.282 30.050-45.074 3.467-1.156 8.090-3.467 11.558-3.467s49.698-1.156 101.707-1.156zM925.761 485.418h-287.783v94.772h287.783v-94.772zM781.291 870.284h-143.314v95.928h287.783v-95.928h-144.47z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["forums"],"defaultCode":60575,"grid":24},"attrs":[],"properties":{"id":664,"order":188,"ligatures":"","prevSize":24,"code":60575,"name":"forums"},"setIdx":0,"setId":2,"iconIdx":665},{"icon":{"paths":["M589.436 243.865c42.031 0 73.678 11.749 99.395 28.894 15.185 10.123 271.746 211.647 284.316 224.217 19.913 19.913 37.544 43.248 43.919 75.124 9.307 46.538 6.935 27.139 6.935 220.749 0 191.835 1.894 174.297-6.935 218.438-9.534 47.667-52.506 77.172-93.616 93.616-5.779 2.312-15.025 3.467-19.648 4.623-6.935 1.156-62.411 2.312-314.366 2.312h-305.12l-11.558-3.467c-45.731-7.622-72.979-37.591-95.928-68.19-11.185-14.914-14.305-36.849-18.492-57.788-1.156-8.090-1.156-67.034-1.156-197.634 0-184.921 1.156-186.077 3.467-197.634 5.455-27.28 16.167-50.835 30.050-69.345 3.467-4.623 10.402-15.025 17.336-21.959 18.838-18.838 284.63-222.43 285.472-223.061 15.641-11.731 40.265-20.998 62.411-25.427 5.779-1.156 12.713-2.312 15.025-2.312s10.402-1.156 18.492-1.156zM596.37 340.948h-13.869c-9.827 0-23.431 4.835-30.050 9.246-0.551 0.366-254.903 193.648-279.693 218.438-7.952 7.952-13.072 19.923-16.181 32.361-2.312 8.090-2.312 13.869-2.312 190.7 0 159.494 1.156 184.921 2.312 189.544 4.934 14.801 15.626 27.311 31.205 31.205 6.935 2.312 11.558 2.312 306.275 2.312h298.185c11.172-7.448 23.837-13.002 30.050-25.427 2.312-3.467 3.467-10.402 4.623-13.869 1.156-4.623 1.156-68.19 1.156-187.233 0-168.74 0-180.298-2.312-187.233-4.080-12.236-10.708-26.889-19.648-35.828-7.281-9.102-269.195-209.828-279.693-216.126-8.069-4.035-19.945-8.090-30.050-8.090zM399.892 773.201c-24.635 0-37.272 13.723-47.386 28.894-3.467 5.779-3.467 6.935-3.467 19.648 0 36.918 32.246 46.172 57.788 58.944 51.932 25.966 102.413 35.828 182.609 35.828 52.39 0 60.87 0.963 97.084-8.090l32.361-8.090c30.7-7.674 53.28-19.706 78.591-32.361 18.337-9.17 32.361-19.716 32.361-46.23 0-31.365-21.141-48.542-52.009-48.542-13.542 0-15.262 5.32-27.738 11.558-45.865 22.933-91.348 35.828-160.65 35.828-33.342 0-43.105-2.499-69.345-5.779-44.308-5.538-75.17-23.138-107.485-39.296-2.312-1.156-8.090-2.312-12.713-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["index"],"defaultCode":60638,"grid":24},"attrs":[],"properties":{"id":720,"order":202,"ligatures":"","prevSize":24,"code":60638,"name":"index"},"setIdx":0,"setId":2,"iconIdx":721},{"icon":{"paths":["M561.698 977.77c-38.103 0-70.067-5.291-101.707-9.246l-4.623 11.558c-5.825 14.56-18.764 37.392-27.738 50.853l-16.181 24.271c-14.008 21.012-37.077 45.105-61.255 53.165-3.467 1.156-9.246 2.312-15.025 2.312-59.809 0-96.291-28.101-127.133-58.944-15.871-15.871-28.247-27.923-40.451-46.23-20.361-30.541-44.656-65.261-50.853-108.641-13.681-95.764-6.62-215.812 12.713-302.808 13.326-59.965 26.406-119.91 43.919-176.831 8.682-28.214 14.891-68.056 31.205-84.37 23.462-23.462 60.126-41.123 93.616-55.476 18.928-8.112 36.919-12.986 58.944-18.492 26.465-6.617 58.8-15.025 90.149-15.025 13.37 0 22.017 4.681 28.894 11.558 2.312 2.312 6.935 5.779 9.246 9.246s13.869 30.050 25.427 60.099l20.804 54.321h4.623c2.312 0 15.025-2.312 28.894-2.312h48.542c13.869 0 26.582 2.312 28.894 2.312h4.623l20.804-54.321c11.558-30.050 23.115-56.632 25.427-60.099 6.997-10.494 19.521-20.804 35.828-20.804 84.902 0 160.633 32.353 218.438 61.255 15.834 7.917 39.022 22.567 46.23 36.984 8.249 16.497 22.034 68.417 28.894 88.993 9.882 29.646 19.376 61.052 25.427 91.305 2.312 11.558 8.090 30.050 10.402 41.607 14.597 72.988 28.894 147.056 28.894 234.619 0 64.006-4.324 112.741-27.738 153.716-30.861 54.008-67.17 101.094-120.199 132.912-21.936 13.162-48.239 25.427-82.059 25.427-31.626 0-47.84-15.479-64.722-32.361-19.355-19.355-37.161-39.651-49.698-64.722-4.739-9.48-21.959-33.032-21.959-43.919 0-1.156-1.156-1.156-2.312-1.156-12.659 0-38.984 5.23-54.321 6.935-10.402 1.156-32.361 2.312-47.386 2.312h-55.476zM745.463 394.113c40.503 13.502 107.485 12.65 107.485 65.878 0 24.687-10.141 35.698-26.582 43.919-5.779 3.467-9.246 4.623-17.336 4.623-15.596 0-49.123-9.97-64.722-13.869-50.969-12.742-88.908-20.804-154.871-20.804-66.552 0-102.724 7.767-154.871 20.804-15.56 3.89-49.195 13.869-64.722 13.869-26.686 0-43.919-21.019-43.919-48.542 0-16.782 4.377-25.18 12.713-33.517 11.81-11.81 17.66-12.216 42.763-18.492 13.869-3.467 31.205-8.090 38.14-9.246s13.869-4.623 13.869-4.623c-1.203-3.159-19.136-48.542-20.804-48.542-23.431 0-54.601 13.192-73.968 19.648-20.147 6.715-40.558 20.004-56.632 30.050l-6.935 19.648c-10.102 30.31-21.556 74.871-31.205 108.641-16.951 59.332-25.271 120.108-33.517 186.077-3.507 28.055-5.779 37.943-5.779 75.124 0 55.319 0.725 90.443 18.492 125.977 12.356 24.714 29.46 46.070 46.23 67.034 9.496 11.87 23.723 22.264 36.984 28.894 4.623 2.312 11.558 5.779 12.713 5.779 2.312 1.156 3.467-1.156 10.402-9.246l13.869-18.492c5.293-7.056 16.209-29.534 19.648-36.984-2.893-0.964-33.094-9.035-35.828-10.402-13.983-6.991-26.582-22.469-26.582-42.763 0-27.268 19.035-48.542 46.23-48.542 13.603 0 54.373 11.44 70.501 15.025 55.39 12.309 101.878 19.648 172.208 19.648 83.996 0 147.021-9.203 212.659-28.894 19.648-5.779 21.959-5.779 30.050-5.779 27.195 0 46.23 21.273 46.23 48.542 0 38.327-32.090 43.443-61.255 53.165 9.9 19.803 29.929 49.578 45.074 64.722 6.187 6.187 35.957-13.972 41.607-18.492 14.486-11.589 33.297-30.297 43.919-46.23l16.181-24.271c34.536-51.803 28.511-152.538 19.648-232.307-1.156-10.402-4.623-25.427-5.779-34.673-10.278-82.219-33.888-153.746-56.632-226.528l-10.402-34.673c-16.511-8.256-38.495-22.463-57.788-28.894-19.116-6.372-38.713-11.172-61.255-16.181-10.402-2.312-20.804-4.623-23.115-4.623h-3.467c-4.126 9.624-2.873 4.507-19.648 48.542zM443.81 581.345c26.964 0 37.096 7.568 54.321 16.181 24.83 12.415 42.763 43.562 42.763 79.747 0 41.913-20.244 64.734-46.23 82.059-14.932 9.956-27.865 13.869-53.165 13.869-20.561 0-28.039-3.416-41.607-11.558-28.689-14.345-50.853-42.291-50.853-84.37 0-23.188 3.355-25.091 8.090-39.296 3.497-10.492 10.232-18.321 18.492-26.582 4.623-4.623 9.246-10.402 12.713-12.713 6.724-4.483 19.844-10.083 27.738-12.713 3.467-1.156 8.090-3.467 10.402-3.467s10.402-1.156 17.336-1.156zM732.749 581.345c-6.935 0-15.025 1.156-17.336 1.156-37.346 0-65.813 41.413-75.124 69.345-1.156 5.779-2.312 11.558-2.312 25.427 0 35.745 12.933 52.229 31.205 70.501 14.603 14.603 33.832 25.427 61.255 25.427 44.809 0 71.324-20.799 87.837-49.698 8.903-14.838 11.558-23.411 11.558-46.23 0-31.813-10.211-47.618-25.427-65.878-15.264-19.080-38.845-30.050-71.657-30.050z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-discord"],"defaultCode":60643,"grid":24},"attrs":[],"properties":{"id":725,"order":24,"ligatures":"","prevSize":24,"code":60643,"name":"brand-discord"},"setIdx":0,"setId":2,"iconIdx":726},{"icon":{"paths":["M154.871 195.323c8.602 0 16.421 3.548 23.115 5.779 9.313 3.726 880.106 875.096 887.621 887.621 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-17.336-13.869-84.37-79.747l-77.436-77.436-18.492 10.402c-49.392 27.44-105.511 43.801-171.052 53.165-8.090 1.156-28.894 2.312-48.542 2.312-97.617 0-164.438-16.919-229.995-49.698-69.831-34.915-128.41-78.566-177.986-135.223-30.715-35.104-60.379-69.62-86.682-110.953-14.108-22.171-31.382-47.741-41.607-68.19-3.467-6.935-4.623-8.090-4.623-18.492 0-21.711 5.053-25.757 17.336-46.23 46.613-77.689 99.966-151.687 167.585-208.036l12.713-10.402-70.501-70.501c-61.255-61.255-70.501-72.813-73.968-78.591-6.892-10.337-7.205-33.11 0-43.919 8.963-13.445 20.382-26.582 41.607-26.582zM951.187 892.244c-29.426 0-47.386-16.682-47.386-46.23 0-11.558 0-13.869 3.467-20.804 6.477-12.955 34.039-42.601 45.074-55.476 21.37-24.93 37.134-57.217 56.632-83.214l5.779-9.246c-14.542-23.268-32.697-54.451-52.009-78.591-27.863-34.829-49.054-62.426-82.059-91.305-73.392-64.217-155.532-117.887-292.406-117.887-44.092 0-65.395 3.745-100.551 11.558-17.336 4.623-20.804 4.623-28.894 4.623-25.944 0-49.661-26.767-43.919-55.476 6.711-26.845 20.655-36.309 49.698-42.763 26.6-5.911 56.567-13.869 85.526-13.869h43.919c95.944 0 151.605 20.508 217.282 49.698 37.972 16.876 69.855 39.143 100.551 64.722 18.088 15.072 23.587 17.808 40.451 34.673l28.894 28.894c23.169 23.169 39.025 46.469 60.099 72.813 26.315 32.893 54.213 74.91 72.813 112.108 4.623 8.090 4.623 8.090 4.623 20.804s-1.156 13.869-4.623 20.804c-2.312 3.467-8.090 15.025-13.869 25.427s-19.648 28.894-27.738 41.607c-18.152 28.526-38.845 58.922-60.099 83.214-18.143 20.734-29.021 43.919-61.255 43.919zM392.957 548.984l-67.034-65.878c-8.192 8.192-14.921 13.199-28.894 25.427-9.246 8.090-23.115 23.115-31.205 32.361s-20.804 21.959-26.582 28.894c-25.057 30.069-54.334 74.222-75.124 107.485 28.241 45.185 62.246 98.074 99.395 135.223 24.516 24.516 48.089 49.397 76.28 68.19 6.935 4.623 15.025 12.713 20.804 16.181 22.573 13.544 51.128 31.298 78.591 40.451 29.778 9.926 58.504 19.574 93.616 25.427 61.59 10.265 134.527-0.923 180.298-16.181 18.234-6.078 40.687-12.871 54.321-21.959-38.419-38.212-76.088-76.247-113.469-114.564l-2.106-2.167c-18.010 9.004-41.554 13.869-69.345 13.869-44.148 0-72.113-20.104-94.772-42.763-20.374-20.374-29.35-38.353-39.296-68.19-3.467-11.558-2.312-13.869-2.312-33.517 0-32.651 3.176-40.953 12.713-62.411l-65.878-65.878z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["eye-off"],"defaultCode":60656,"grid":24},"attrs":[],"properties":{"id":738,"order":44,"ligatures":"","prevSize":24,"code":60656,"name":"eye-off"},"setIdx":0,"setId":2,"iconIdx":739},{"icon":{"paths":["M594.059 243.865c330.546 0 354.817 0 361.752 2.312 48.507 12.126 76.079 40.729 100.551 77.436 5.394 8.090 10.506 25.943 12.713 36.984 2.312 10.402 1.156 18.492 1.156 177.986 0 130.6 0 169.896-1.156 182.609-5.426 37.99-11.373 78.485-23.115 109.797-13.303 35.477-28.626 68.587-46.23 99.395-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-89.263 0-154.322-19.374-214.971-49.698-94.567-47.283-167.399-118.672-214.971-213.815-21.406-42.813-38.351-89.318-46.23-144.47-8.058-56.406-4.623-46.464-4.623-211.503 0-156.027-1.156-167.585 1.156-176.831 12.432-62.159 56.451-100.505 116.731-115.576 4.623-1.156 9.246-1.156 10.402-1.156s161.806-1.156 357.129-1.156zM588.28 339.792c-184.921 0-339.792 1.156-343.26 1.156-20.711 0-32.785 20.637-39.296 35.828l-1.156 157.183c0 194.607-7.010 181.227 30.050 292.406 13.83 41.489 43.994 79.376 69.345 109.797 37.779 45.335 92.934 77.803 151.404 102.862 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c18.835-12.557 37.727-30.017 53.165-48.542 5.779-6.935 15.025-16.181 18.492-20.804 38.12-50.827 68.749-112.557 79.747-189.544 2.312-13.869 1.156-27.738 1.156-182.609v-166.429c-5.268-12.291-12.768-26.986-25.427-31.205-3.467-1.156-10.402-3.467-15.025-4.623s-128.289-1.156-344.415-1.156zM398.736 581.345c-27.835 0-35.004 12.055-46.23 28.894-3.467 5.779-3.467 8.090-3.467 19.648s1.156 12.713 4.623 20.804c4.785 11.166 203.285 207.496 213.815 213.815 12.431 8.287 30.986 4.311 43.919 0 10.473-4.19 207.733-199.626 213.815-213.815 3.467-8.090 4.623-9.246 4.623-20.804 0-29.482-18.726-47.386-48.542-47.386-11.558 0-12.713 0-20.804 3.467s-12.713 9.246-88.993 85.526l-82.059 80.903-82.059-80.903c-76.28-76.28-82.059-82.059-88.993-85.526s-9.246-4.623-19.648-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-pocket"],"defaultCode":60672,"grid":24},"attrs":[],"properties":{"id":754,"order":189,"ligatures":"","prevSize":24,"code":60672,"name":"brand-pocket"},"setIdx":0,"setId":2,"iconIdx":755},{"icon":{"paths":["M691.142 195.323c149.093 0 159.494 0 167.585 2.312 58.776 14.694 102.118 55.227 114.42 116.731 2.312 10.402 2.312 26.582 2.312 312.054 0 288.939 0 300.497-2.312 306.275-6.169 18.509-23.307 33.517-47.386 33.517-4.623 0-10.402-1.156-13.869-2.312-8.524-2.841-63.689-35.951-68.19-40.451-3.467-3.467-6.935-9.246-8.090-12.713l-4.623-13.869c-3.952-19.756 5.345-33.084 15.025-42.763 6.676-6.676 13.893-12.713 25.427-12.713l6.935-1.156v-251.955c0-176.831 0-253.111-1.156-257.734-6.564-19.691-16.983-28.908-35.828-36.984l-152.56-1.156c-150.248 0-154.871 0-161.806 2.312-11.068 2.767-20.621 9.711-26.582 19.648-9.020 12.024-16.534 25.427-35.828 25.427h-13.869c-11.486 0-18.766-6.053-25.427-12.713-10.206-10.206-16.181-19.469-16.181-39.296 0-12.392 6.617-18.732 12.713-28.894 18.163-30.269 51.667-52.171 91.305-60.099 5.779-1.156 11.558-2.312 13.869-2.312s76.28-1.156 164.117-1.156zM492.352 388.334c135.223 0 159.494 1.156 168.74 2.312 49.516 9.903 85.383 36.699 105.174 76.28 6.941 13.881 10.861 29.578 15.025 46.23l1.156 300.497c0 193.011 0 302.808-1.156 306.275-7.319 21.959-22.447 39.296-52.009 39.296-3.467 0-9.246-2.312-11.558-3.467s-54.321-31.205-114.42-67.034l-109.797-65.878-109.797 65.878c-60.099 35.828-110.953 65.878-114.42 67.034s-9.246 3.467-12.713 3.467c-19.284 0-29.251-6.136-39.296-16.181-8.916-8.916-9.132-13.414-12.713-27.738-1.156-5.779-1.156-102.862-1.156-303.964l1.156-295.874c10.047-45.213 27.486-80.753 62.411-101.707 11.423-6.854 24.989-16.36 38.14-19.648 4.623-1.156 13.869-2.312 18.492-3.467 8.090-1.156 36.984-2.312 168.74-2.312zM494.664 485.418c-141.978 0-150.946-3.695-169.896 5.779-12.472 6.236-18.247 18.913-23.115 33.517-1.156 4.623-1.156 72.813-1.156 253.111v247.332l85.526-50.853c46.23-27.738 86.682-52.009 90.149-53.165s9.246-3.467 12.713-3.467c10.152 0 19.050 2.59 25.427 5.779 2.312 1.156 42.763 24.271 87.837 52.009l83.214 49.698v-251.955l-1.156-253.111c-8.879-17.756-17.54-24.883-34.673-34.673h-154.871z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["bookmarks"],"defaultCode":60680,"grid":24},"attrs":[],"properties":{"id":762,"order":116,"ligatures":"","prevSize":24,"code":60680,"name":"bookmarks"},"setIdx":0,"setId":2,"iconIdx":763},{"icon":{"paths":["M154.871 195.323c8.602 0 16.421 3.548 23.115 5.779 9.313 3.726 880.106 875.096 887.621 887.621 15.448 23.173-2.813 58.726-20.804 64.722-39.34 13.113-47.482-0.096-75.124-27.738l-24.271-23.115-10.402 10.402c-21.015 21.015-44.157 37.032-78.591 43.919-9.246 2.312-25.427 1.156-266.98 1.156-211.503 0-257.734 0-264.668-1.156-32.471-8.117-62.513-19.775-80.903-42.763-17.228-21.535-30.456-41.325-36.984-73.968-1.156-9.246-2.312-32.361-2.312-171.052 0-166.956-1.587-145.779 6.935-188.388 9.949-49.747 58.991-85.249 106.33-97.084 4.623-1.156 13.869-2.312 19.648-2.312l11.558-1.156v-73.968l-115.576-116.731c-101.707-101.707-116.731-117.887-120.199-123.666-6.892-10.337-7.205-33.11 0-43.919 8.963-13.445 20.382-26.582 41.607-26.582zM587.124 195.323c77.594 0 131.695 29.988 171.052 69.345 33.355 33.355 58.278 76.416 69.345 131.756 2.312 9.246 2.312 20.804 2.312 97.084v86.682l11.558 1.156c14.802 0 20.183 4.267 33.517 6.935 21.147 4.23 42.212 19.097 55.476 32.361 20.826 20.826 34.669 45.057 41.607 79.747 1.156 9.246 2.312 18.492 2.312 72.813l-1.156 61.255c-4.828 11.264-13.966 27.384-25.427 31.205-29.94 9.98-54.020-2.865-64.722-24.271l-4.623-6.935v-60.099c-1.156-58.944-1.156-60.099-3.467-65.878-3.853-11.561-16.273-23.916-27.738-27.738-5.779-2.312-6.935-2.312-65.878-3.467h-60.099c-6.56-4.372-15.244-8.31-20.804-13.869-10.819-10.819-22.137-37.295-9.246-56.632 5.767-11.533 20.294-25.427 35.828-25.427h6.935v-82.059c0-99.885 1.075-73.134-8.090-109.797-5.619-22.479-21.763-41.411-36.984-56.632-23.858-23.858-53.35-40.451-99.395-40.451-54.876 0-91.647 25.883-115.576 57.788-3.467 4.623-9.246 10.402-11.558 12.713-11.036 11.036-31.779 14.834-52.009 8.090-16.626-5.542-27.738-26.989-27.738-48.542 0-17.261 14.782-30.496 23.115-41.607 19.034-25.378 43.862-41.11 71.657-57.788 21.438-12.864 48.521-19.451 77.436-24.271 6.935-1.156 13.869-2.312 16.181-2.312s10.402-1.156 16.181-1.156zM432.253 677.273c-73.968 0-90.149 1.156-95.928 2.312-18.18 6.060-27.484 15.418-33.517 33.517-1.156 5.779-2.312 25.427-2.312 156.027 0 106.33 0 150.248 1.156 154.871 5.739 17.218 15.221 30.116 32.361 35.828 6.935 2.312 6.935 2.312 255.422 2.312s248.488 0 255.422-2.312c14.268-4.756 23.792-15.224 30.050-27.738l-98.239-98.239c-54.321-54.321-95.928-94.772-95.928-94.772 5.446 5.446 4.623 22.256 4.623 35.828 0 19.364-6.197 25.528-10.402 38.14-3.452 10.359-9.481 13.644-15.025 21.959-13.482 20.222-43.29 31.205-76.28 31.205-26.287 0-53.87-14.925-64.722-31.205-2.312-3.467-6.935-8.090-9.246-10.402-9.82-9.82-16.181-30.408-16.181-49.698 0-31.491 8.714-48.217 21.959-65.878 15.278-20.369 38.635-34.673 73.968-34.673 9.246 0 16.181 0 20.804 1.156s8.090 3.467 9.246 3.467-19.648-23.115-47.386-50.853l-50.853-50.853h-88.993z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["lock-off"],"defaultCode":60702,"grid":24},"attrs":[],"properties":{"id":784,"order":40,"ligatures":"","prevSize":24,"code":60702,"name":"lock-off"},"setIdx":0,"setId":2,"iconIdx":785},{"icon":{"paths":["M592.903 196.479c18.607 0 37.473 9.127 46.23 20.804 13.576 13.576 47.502 98.239 54.321 98.239 15.723 0 103.333 15.723 110.953 20.804 3.467 2.312 11.558 6.935 16.181 11.558 11.739 11.739 18.492 26.599 18.492 48.542 0 12.050-2.878 25.698-8.090 33.517-3.467 4.623-15.025 16.181-41.607 42.763l-35.828 35.828 8.090 48.542c6.935 42.763 8.090 48.542 8.090 57.788 0 35.701-31.338 62.411-67.034 62.411-10.958 0-19.677-2.327-26.582-5.779-2.312-1.156-24.271-11.558-46.23-23.115l-40.451-21.959-42.763 23.115c-23.115 12.713-46.23 23.115-49.698 24.271s-10.402 3.467-15.025 3.467c-36.403 0-60.259-17.813-69.345-45.074-1.156-4.623-3.467-11.558-3.467-17.336 0-9.246 1.156-16.181 8.090-58.944l8.090-47.386-36.984-36.984c-35.828-34.673-38.14-38.14-41.607-46.23-5.164-10.327-8.090-19.79-8.090-34.673 0-24.222 19.477-47.317 36.984-54.321 18.411-9.206 23.263-6.956 63.567-12.713 24.271-3.467 45.074-8.090 46.23-8.090 2.312 0 5.779-5.779 25.427-45.074l21.959-46.23 9.246-8.090c13.023-13.023 26.009-19.648 50.853-19.648zM515.467 555.919c13.471-7.028 55.083-31.205 73.968-31.205 20.831 0 22.567 4.595 46.23 17.336 15.025 8.090 27.738 13.869 27.738 13.869s-2.312-15.025-5.779-32.361c-4.623-30.050-4.623-32.361-3.467-39.296 6.094-24.382 5.189-17.903 31.205-43.919 21.959-20.804 23.115-23.115 20.804-24.271-1.156 0-15.025-2.312-31.205-4.623-26.582-3.467-30.050-5.779-38.14-9.246-5.779-2.312-10.402-4.623-13.869-9.246-0.159-0.213-31.939-59.498-33.517-62.411-1.482 2.718-33.51 62.403-33.517 62.411-3.467 4.623-8.090 6.935-13.869 9.246-6.935 3.467-10.402 4.623-35.828 8.090-15.025 2.312-30.050 5.779-32.361 5.779h-4.623l24.271 23.115c20.235 20.235 24.354 22.211 30.050 39.296 1.156 3.467 2.312 9.246 2.312 11.558 0 1.676-10.057 63.47-10.402 65.878zM129.445 1087.567c0-3.561 16.181-91.821 16.181-97.084 0-1.156-3.467-5.779-8.090-10.402s-21.959-19.648-36.984-34.673c-32.146-32.146-29.608-26.415-38.14-52.009-1.156-3.467-2.312-11.558-2.312-17.336 0-32.427 21.652-54.218 46.23-62.411 1.678-0.559 99.491-15.699 102.862-16.181l23.115-46.23c21.959-45.074 21.959-46.23 30.050-54.321 11.209-11.209 26.349-19.648 47.386-19.648 24.391 0 43.142 11.548 53.165 26.582 1.445 2.167 46.923 90.377 48.542 93.616 0.816 1.632 86.839 10.84 102.862 16.181 16.036 5.345 23.753 12.407 33.517 25.427 6.532 8.71 12.713 19.243 12.713 32.361 0 15.909-2.184 24.014-8.090 35.828-4.623 10.402-5.779 10.402-41.607 46.23l-36.984 35.828 8.090 46.23c5.779 32.361 8.090 49.698 8.090 56.632 0 24.735-10.257 41.896-25.427 52.009-12.968 8.645-19.396 13.869-41.607 13.869-12.466 0-19.273-0.969-26.582-4.623-2.312-1.156-21.959-11.558-45.074-23.115l-41.607-21.959-13.869 6.935c-23.38 10.019-68.236 42.763-99.395 42.763-20.023 0-28.219-4.558-40.451-12.713-3.467-2.312-8.090-9.246-11.558-12.713-10.24-10.24-15.025-24.989-15.025-45.074zM1033.246 990.483c0 5.115 16.181 93.674 16.181 97.084 0 40.918-25.962 70.501-67.034 70.501-9.246 0-12.713 0-18.492-2.312-4.623-1.156-27.738-12.713-52.009-25.427l-42.763-21.959c-26.226 14.988-73.562 40.701-97.084 48.542-3.467 1.156-9.246 1.156-16.181 1.156-37.641 0-67.034-25.429-67.034-62.411 0-11.558 1.156-17.336 8.090-60.099l8.090-46.23-38.14-36.984c-34.673-34.673-38.14-38.14-41.607-45.074-4.939-9.877-6.935-16.434-6.935-30.050 0-35.26 20.937-54.75 47.386-63.567 2.746-0.915 97.451-15.573 101.707-16.181 0.777-0.111 48.505-93.561 48.542-93.616 10.091-15.138 27.477-26.582 52.009-26.582 22.043 0 35.1 7.362 47.386 19.648l9.246 8.090c28.006 60.848 43.066 91.187 58.418 121.352l-13.343-28.892c3.188 0.504 101.344 15.674 102.862 16.181 24.82 8.273 46.23 29.595 46.23 62.411 0 14.465-2.277 19.563-6.935 31.205-4.623 9.246-5.779 10.402-33.517 38.14-16.181 16.181-32.361 32.361-36.984 35.828-4.623 4.623-8.090 8.090-8.090 9.246zM383.711 1035.558c0-3.396-9.246-55.319-9.246-58.944 0-9.328 0.42-17.020 4.623-25.427 3.467-6.935 6.935-10.402 26.582-30.050l23.115-23.115c-16.474-2.471-61.286-6.956-71.657-13.869-18.816-12.545-15.926-11.048-32.361-43.919l-15.025-28.894-13.869 27.738c-12.513 23.239-13.134 32.257-25.427 40.451-13.549 9.031-18.824 8.633-47.386 12.713-16.181 2.312-30.050 4.623-31.205 4.623-2.507 0 46.415 46.693 50.853 57.788 1.156 4.623 3.467 10.402 3.467 15.025 0 2.473-9.814 65.133-10.402 68.19 3.010-1.641 58.493-29.899 62.411-31.205 4.623-1.156 8.090-1.156 15.025-1.156 14.572 0 42.628 16.93 55.476 24.271 10.402 5.779 15.025 6.935 15.025 5.779zM869.129 811.341s-6.935 12.713-15.025 28.894c-16.397 31.153-13.806 31.549-32.361 43.919-14.563 7.281-52.721 10.527-71.657 13.869l23.115 23.115c28.096 26.536 23.107 20.78 31.205 45.074 1.156 5.779 0 10.402-4.623 38.14-3.467 17.336-4.623 32.361-4.623 32.361 2.782-1.335 59.475-29.071 62.411-30.050 3.467-1.156 8.090-1.156 11.558-1.156 14.193 0 62.518 26.636 73.968 32.361 0 0-3.467-13.869-5.779-30.050-4.623-23.115-4.623-31.205-4.623-38.14 0-4.623 2.312-11.558 3.467-15.025 4.584-11.458 53.592-57.788 50.853-57.788-4.311 0-63.528-9.234-67.034-10.402-6.141-2.047-17.024-9.778-19.648-15.025-0.652-1.305-30.092-57.872-31.205-60.099z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["stars"],"defaultCode":60728,"grid":24},"attrs":[],"properties":{"id":809,"order":114,"ligatures":"","prevSize":24,"code":60728,"name":"stars"},"setIdx":0,"setId":2,"iconIdx":810},{"icon":{"paths":["M375.621 1065.607c-5.577 0-200.755 45.074-223.061 45.074-17.15 0-35.034-13.796-39.296-26.582l-4.623-13.869c-1.156-3.467-1.156-8.090-1.156-11.558s13.869-43.919 30.050-91.305l27.738-85.526c-10.747-21.495-23.873-47.548-33.517-71.657-16.4-41.003-21.959-76.127-21.959-135.223 0-25.427 0-35.828 1.156-47.386 11.909-83.359 44.011-150.074 86.682-203.413 4.623-5.779 13.869-17.336 20.804-24.271l23.115-23.115c14.501-14.501 28.99-23.58 45.074-36.984 38.779-32.315 86.055-51.197 137.535-70.501 30.456-11.421 65.164-16.904 100.551-21.959 8.090-1.156 20.804-3.467 27.738-3.467s23.115-1.156 34.673-1.156c172.625 0 285.249 67.967 372.153 154.871 22.868 22.868 37.247 46.623 55.476 73.968 10.453 15.678 25.612 46.295 31.205 65.878 11.784 41.245 25.427 74.271 25.427 129.445 0 112.314-33.251 188.035-82.059 253.111-43.083 57.445-99.089 101.554-166.429 135.223-21.876 10.938-44.113 18.711-68.19 27.738-52.448 19.669-92.599 25.427-165.273 25.427-84.479 0-137.177-11.569-196.479-36.984-8.090-3.467-16.181-5.779-17.336-5.779zM596.37 340.948h-40.451c-24.005 0-48.925 6.164-70.501 11.558-42.534 10.633-82.219 25.919-114.42 47.386-15.060 10.041-37.547 22.522-49.698 34.673-11.355 11.355-35.976 34.569-46.23 47.386-19.506 24.383-42.362 59.852-52.009 93.616-2.312 8.090-6.935 20.804-9.246 28.894-16.407 57.427-7.511 142.159 13.869 184.921 7.724 15.448 16.192 33.538 25.427 49.698 8.853 15.492 12.713 16.038 12.713 35.828v10.402l-18.492 55.476c-10.402 30.050-18.492 56.632-18.492 56.632 152.484-30.973 146.5-31.205 153.716-31.205 19.12 0 42.139 15.202 58.944 20.804 38.45 12.816 77.972 20.51 127.133 25.427 61.847 4.757 115.222-9.805 161.806-23.115 42.652-12.186 77.27-34.555 109.797-57.788 8.090-5.779 20.804-15.025 27.738-21.959l24.271-24.271c6.935-6.935 15.025-18.492 19.648-24.271 38.238-47.796 63.567-110.167 63.567-195.323 0-62.775-24.306-112.165-48.542-152.56-9.379-15.63-23.398-34.956-36.984-48.542-28.412-28.412-58.623-55.894-97.084-75.124-57.182-28.591-110.207-48.542-196.479-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["message-circle-2"],"defaultCode":60735,"grid":24},"attrs":[],"properties":{"id":814,"order":5,"ligatures":"","prevSize":24,"code":60735,"name":"message-circle-2"},"setIdx":0,"setId":2,"iconIdx":815},{"icon":{"paths":["M834.456 245.020c26.356 0 43.637 9.323 58.944 20.804 4.623 3.467 9.246 10.402 12.713 13.869 7.813 7.813 15.441 22.463 18.492 34.673 1.156 6.935 2.312 16.181 2.312 68.19v60.099l11.558 3.467c23.431 9.371 47.25 19.511 63.567 35.828 27.267 27.267 51.405 53.061 62.411 97.084 2.977 11.91 6.935 27.699 6.935 41.607 0 37.323-6.242 69.348-20.804 93.616-3.467 5.779-6.935 16.181-10.402 20.804-9.378 12.503-20.85 28.005-33.517 38.14-11.549 9.239-30.096 24.521-43.919 30.050-5.779 2.312-16.181 5.779-23.115 8.090l-12.713 4.623v60.099c0 50.853-1.156 61.255-2.312 67.034-13.608 40.825-40.082 70.501-94.772 70.501-20.018 0-34.767-8.925-47.386-17.336-3.467-2.312-52.009-41.607-108.641-88.993l-101.707-85.526h-30.050v93.616c0 96.302 8.666 113.558-19.648 156.027-11.615 17.422-27.391 26.213-48.542 34.673l-11.558 3.467h-40.451c-55.751 0-40.698 1.058-69.345-10.402-27.309-10.923-43.254-37.793-50.853-68.19l-1.156-104.018v-105.174h-56.632c-68.080 0-53.449 3.903-79.747-9.246-30.229-15.115-46.256-35.93-55.476-72.813v-221.905c8.684-39.080 33.191-70.668 72.813-78.591l10.402-2.312 381.4-2.312 91.305-76.28c50.853-41.607 98.239-80.903 106.33-87.837 19.65-14.737 32.435-25.427 63.567-25.427zM829.833 910.736v-562.853l-106.33 88.993c-90.482 75.19-102.539 86.214-122.51 94.772l-28.894 1.156h-30.050v191.856h23.115c22.43 0 30.751 0.233 43.919 4.623 3.467 2.312 38.14 30.050 113.264 92.46zM444.966 532.804h-240.397v191.856h240.397v-191.856zM926.916 711.946c22.993-15.328 47.386-39.915 47.386-77.436 0-43.389-18.908-71.443-46.23-87.837 0 0-1.156 38.14-1.156 83.214v82.059zM420.695 821.743h-23.115v191.856h47.386v-191.856h-24.271z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["speakerphone"],"defaultCode":60769,"grid":24},"attrs":[],"properties":{"id":848,"order":129,"ligatures":"","prevSize":24,"code":60769,"name":"speakerphone"},"setIdx":0,"setId":2,"iconIdx":849},{"icon":{"paths":["M590.591 147.937c13.701 0 25.008 6.516 32.361 13.869 9.206 9.206 44.952 84.767 146.781 290.095 45.436 7.1 179.688 26.594 234.619 34.673 39.296 5.779 75.124 11.558 79.747 12.713 19.244 4.811 33.517 21.817 33.517 46.23 0 12.907-3.176 17.91-6.935 25.427-3.925 7.85-206.856 204.219-212.659 209.192-15.055 15.055-17.459 14.297-33.517 19.648-29.174 7.293-55.476-18.778-55.476-47.386 0-15.813 4.673-18.59 9.246-27.738 2.15-4.299 13.38-11.212 145.625-145.625-38.736-6.456-77.21-10.887-143.314-20.804-46.23-6.935-87.837-12.713-91.305-13.869-11.217-3.739-19.876-6.084-26.582-15.025-4.623-5.779-9.246-11.558-20.804-34.673-8.090-16.181-30.050-63.567-49.698-104.018-22.664-46.661-38.225-74.183-42.763-85.526l-27.738 56.632c-26.582 54.321-28.894 56.632-34.673 62.411-7.965 7.965-17.043 12.713-31.205 12.713-35.335 0-63.438-33.776-45.074-70.501 5.119-10.237 86.065-173.285 91.305-183.765 10.432-20.866 18.867-34.673 48.542-34.673zM154.871 195.323c8.602 0 16.421 3.548 23.115 5.779 9.313 3.726 880.106 875.096 887.621 887.621 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-12.713-9.246-38.14-34.673l-31.205-30.050 1.156 4.623c0 3.467 1.156 11.558 1.156 18.492 0 15.991-7.258 25.75-15.025 33.517-9.195 6.131-21.899 17.062-39.296 12.713-3.467-1.156-10.402-2.312-13.869-3.467s-67.034-35.828-141.002-75.124l-135.223-70.501-71.657 38.14c-39.296 20.804-102.862 53.165-139.847 72.813-57.788 30.050-69.345 36.984-76.28 38.14-22.87 4.574-46.323-8.368-52.009-25.427-2.435-7.308-5.779-11.955-5.779-20.804 0-2.312 11.558-75.124 26.582-160.65l26.582-154.871-23.115-21.959c-12.713-12.713-63.567-62.411-112.108-109.797s-90.149-87.837-92.46-91.305c-4.835-7.25-9.246-17.236-9.246-28.894 0-20.886 12.631-35.787 26.582-42.763 15.027-7.514 48.604-9.712 116.731-19.648 55.476-8.090 102.862-15.025 104.018-15.025 2.312 0-8.090-11.558-93.616-97.084-84.37-84.37-97.084-98.239-100.551-104.018-6.892-10.337-7.205-33.11 0-43.919 8.963-13.445 20.382-26.582 41.607-26.582zM394.113 552.451c-8.724 0-179.531 26.462-180.298 26.582 0.581 0.581 173.004 170.514 173.363 171.052 4.65 6.975 9.246 13.541 9.246 24.271 3.131 15.656-39.296 237.836-39.296 246.176 0 1.156 39.296-19.648 107.485-55.476 58.944-31.205 107.485-56.632 110.953-57.788s9.246-1.156 13.869-1.156 9.246 0 11.558 1.156c66.709 33.355 44.774 21.7 220.749 114.42 0 0-2.312-12.713-4.623-26.582l-4.623-25.427-208.036-209.192c-144.47-144.47-209.192-208.036-210.348-208.036z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["star-off"],"defaultCode":60770,"grid":24},"attrs":[],"properties":{"id":849,"order":11,"ligatures":"","prevSize":24,"code":60770,"name":"star-off"},"setIdx":0,"setId":2,"iconIdx":850},{"icon":{"paths":["M156.027 433.409c0-23.832 19.807-35.919 35.828-45.074h39.296l-56.632-57.788c-48.542-48.542-57.788-58.944-61.255-64.722-6.892-10.337-7.205-33.11 0-43.919 8.963-13.445 20.382-26.582 41.607-26.582 8.602 0 16.421 3.548 23.115 5.779 9.313 3.726 880.106 875.096 887.621 887.621 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-15.025-10.402-47.386-42.763l-39.296-39.296c-5.090 25.45-32.398 49.337-52.009 62.411-19.977 13.318-37.486 18.824-64.722 24.271-6.935 1.156-80.903 1.156-208.036 1.156-154.66 0-192.35 2.907-229.995-4.623-34.862-6.973-64.607-33.921-82.059-60.099-8.918-13.377-17.579-26.645-20.804-42.763-8.111-40.555-12.689-126.591-26.582-301.652-11.558-145.625-21.959-263.512-21.959-264.668s-2.312-1.156-5.779-1.156c-28.046 0-46.23-22.283-46.23-50.853zM1022.844 433.409c0 28.576-18.182 50.853-46.23 50.853-3.467 0-5.779 0-5.779 1.156 0 0.588-24.819 307.311-26.582 314.366-3.075 12.302-7.117 18.675-15.025 26.582-3.467 3.467-8.090 8.090-11.558 9.246-13.49 4.496-27.492 4.705-41.607 0-13.002-4.334-23.028-21.613-26.582-35.828-2.303-13.819 24.271-296.312 24.271-313.21 0-2.312-11.558-2.312-171.052-2.312-168.74 0-171.052 0-176.831-2.312-14.847-4.949-20.852-14.52-28.894-26.582-2.312-5.779-3.467-8.090-3.467-16.181 0-25.906 12.74-43.348 33.517-48.542 6.935-2.312 10.402-2.312 83.214-2.312h75.124v-95.928h-191.856v25.427c0 39.088-4.215 53.538-28.894 65.878-6.935 3.467-8.090 4.623-19.648 4.623-28.663 0-40.33-18.128-47.386-39.296-1.156-4.623-1.156-18.492-1.156-39.296 0-25.427 1.156-33.517 2.312-39.296 12.421-37.263 32.771-61.647 72.813-71.657 4.623-1.156 10.402-2.312 11.558-2.312s52.009-1.156 110.953-1.156c98.239 0 107.485 0 113.264 2.312 35.47 11.823 62.144 32.446 71.657 70.501 2.312 8.090 3.467 12.713 3.467 64.722v55.476h204.569c16.022 9.156 35.828 21.247 35.828 45.074zM316.677 484.262c-10.402 0-11.558 0-11.558 2.312 0 5.326 42.769 533.978 46.23 544.361 6.142 12.286 16.154 25.131 31.205 28.894 6.935 2.312 11.558 2.312 206.88 2.312 196.479 0 199.946 0 206.88-2.312 23.191-5.798 32.115-23.876 34.673-52.009l1.156-18.492c-33.124-34.121-64.765-66.128-96.691-97.85l-0.392-0.39-2.312 39.296c-7.18 16.753-21.173 35.828-43.919 35.828-26.28 0-41.801-13.295-48.542-33.517-1.156-4.623-2.312-16.181-2.312-71.657v-67.034c-33.719-32.715-65.35-63.98-96.692-95.533l-0.392-0.395v114.42c0 98.239-1.156 115.576-2.312 120.199-6.65 19.951-22.327 33.517-48.542 33.517-23.439 0-36.684-18.946-43.919-35.828l-1.156-153.716c0-167.133-2.39-145.35 4.623-169.896-40.346-40.133-79.897-80.050-119.157-120.252l-2.197-2.258h-11.558z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trash-off"],"defaultCode":60773,"grid":24},"attrs":[],"properties":{"id":852,"order":27,"ligatures":"","prevSize":24,"code":60773,"name":"trash-off"},"setIdx":0,"setId":2,"iconIdx":853},{"icon":{"paths":["M256.578 243.865c37.366 0 57.086 13.448 80.903 27.738 12.404 7.443 24.074 21.312 32.361 32.361 15.332 20.443 26.582 48.964 26.582 84.37 0 45.647-17.237 77.336-40.451 100.551-14.44 14.44-34.981 28.997-55.476 35.828v104.018h240.397v-104.018c-10.309-4.583-21.234-9.041-31.205-15.025-33.779-27.024-64.722-61.982-64.722-121.354 0-66.479 38.497-108.241 83.214-130.6 17.47-8.735 35.453-13.869 61.255-13.869 66.479 0 108.241 38.497 130.6 83.214 8.735 17.47 13.869 35.453 13.869 61.255 0 67.242-37.898 107.942-83.214 130.6-4.623 2.312-9.246 4.623-10.402 4.623-2.312 1.156-2.312 4.623-2.312 53.165v52.009h100.551c98.239 0 99.395 0 106.33-2.312 18.266-6.089 26.295-18.785 32.361-36.984 1.156-4.623 1.156-17.336 1.156-35.828v-28.894c-24.779-9.292-43.831-24.183-61.255-41.607-20.933-20.933-34.673-53.837-34.673-94.772 0-56.62 26.216-92.185 58.944-116.731 22.893-17.17 45.017-26.582 85.526-26.582 47.614 0 74.943 14.843 99.395 39.296 24.801 24.801 43.919 54.425 43.919 104.018 0 43.254-12.881 59.993-28.894 86.682-11.555 19.258-33.93 36.456-55.476 45.074l-11.558 4.623v35.828c0 41.754 2.231 42.966-6.935 65.878-19.958 49.894-53.654 83.048-109.797 97.084-8.090 1.156-20.804 2.312-114.42 2.312h-105.174v104.018c36.283 13.607 65.246 41.497 82.059 75.124 8.735 17.47 13.869 35.453 13.869 61.255 0 67.242-37.898 107.942-83.214 130.6-17.47 8.735-35.453 13.869-61.255 13.869-66.479 0-108.241-38.497-130.6-83.214-8.735-17.47-13.869-35.453-13.869-61.255 0-59.764 30.778-94.199 64.722-121.354 9.938-5.964 20.927-10.457 31.205-15.025v-104.018h-240.397v104.018c27.805 9.269 53.083 30.325 69.345 52.009 15.332 20.443 26.582 48.964 26.582 84.37 0 45.647-17.237 77.336-40.451 100.551-25.1 25.1-53.716 42.763-104.018 42.763-30.402 0-46.258-3.252-65.878-15.025-42.784-25.669-77.436-60.325-77.436-128.289 0-41.607 13.467-60.972 28.894-86.682 11.555-19.258 33.93-36.456 55.476-45.074l11.558-4.623v-305.12l-11.558-4.623c-14.244-5.698-28.989-16.275-39.296-26.582-25.383-25.383-45.074-55.227-45.074-105.174 0-82.277 51.224-125.492 117.887-142.158 4.623-1.156 9.246-2.312 10.402-2.312h19.648zM256.578 340.948h-11.558c-22.566 0-39.296 23.584-39.296 47.386 0 23.811 11.284 34.49 25.427 43.919 6.935 3.467 8.090 2.312 20.804 2.312 29.666 0 41.496-15.739 47.386-39.296 6.611-26.44-13.268-45.644-32.361-52.009-3.467-1.156-8.090-2.312-10.402-2.312zM582.501 340.948c-19.833 0-40.451 20.827-40.451 40.451v13.869c0 16.349 15.421 32.878 27.738 36.984 5.779 2.312 8.090 2.312 19.648 2.312 18.125 0 25.909-3.949 34.673-12.713 6.628-6.628 12.713-15.346 12.713-26.582v-13.869c0-11.486-6.053-18.766-12.713-25.427-7.704-7.704-17.46-15.025-31.205-15.025h-10.402zM931.54 340.948h-12.713c-16.084 0-27.992 15.406-34.673 25.427-11.865 17.796-2.062 45.324 8.090 55.476 8.714 8.714 16.651 12.713 34.673 12.713 29.475 0 46.23-16.412 46.23-46.23 0-23.639-8.384-28.032-19.648-39.296-4.364-4.364-13.956-8.090-21.959-8.090zM254.266 918.826c-28.148 0-35.002 12.051-46.23 28.894-2.312 5.779-2.312 8.090-2.312 18.492 0 16.782 4.377 25.18 12.713 33.517 6.241 6.241 16.473 13.869 26.582 13.869h13.869c33.294 0 56.276-52.365 27.738-80.903-7.496-7.496-18.032-13.869-32.361-13.869zM591.747 918.826c-21.024 0-26.356 4.396-36.984 15.025-6.676 6.676-12.713 13.893-12.713 25.427v13.869c0 20.319 20.723 40.451 40.451 40.451h13.869c20.319 0 40.451-20.723 40.451-40.451v-13.869c0-22.17-22.476-40.451-45.074-40.451z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["manual-gearbox"],"defaultCode":60795,"grid":24},"attrs":[],"properties":{"id":874,"order":95,"ligatures":"","prevSize":24,"code":60795,"name":"manual-gearbox"},"setIdx":0,"setId":2,"iconIdx":875},{"icon":{"paths":["M591.747 195.323c-28.783 0-42.398 17.396-49.698 39.296-1.156 4.623-1.156 58.944-1.156 194.167 0 122.51 0 190.7 1.156 195.323 6.752 20.253 19.74 39.296 47.386 39.296 28.663 0 40.33-18.128 47.386-39.296 1.156-3.467 1.156-63.567 1.156-167.585v-160.65h3.467c24.432 0 50.802 11.378 71.657 17.336 56.395 16.112 98.949 48.942 138.691 82.059 47.98 39.983 77.863 95.842 102.862 158.339 5.948 14.869 9.073 29.995 11.558 47.386 1.156 8.090 4.623 20.804 5.779 28.894 1.156 12.713 1.156 23.115 1.156 48.542 0 79.115-16.66 125.781-42.763 177.986-18.108 36.217-40.235 64.506-68.19 92.46-47.042 47.042-102.373 76.887-173.363 100.551-33.802 11.267-50.819 11.558-99.395 11.558-119.974 0-192.693-43.075-258.889-98.239-6.935-5.779-16.181-16.181-21.959-23.115-18.197-21.837-37.057-43.269-52.009-68.19-27.218-45.365-41.596-98.156-50.853-162.962-1.156-9.246-1.156-24.271-1.156-40.451 0-58.664 13.1-98.631 30.050-141.002 18.293-45.733 48.664-87.96 80.903-120.199 9.913-9.913 10.738-16.035 15.025-28.894 7.41-29.639-17.843-54.321-47.386-54.321-31.954 0-46.721 25.091-62.411 43.919-28.167 33.8-50.795 71.539-71.657 113.264-3.467 6.935-6.935 19.648-10.402 27.738-21.543 50.27-31.205 112.492-31.205 182.609 0 25.625 5.226 46.436 8.090 69.345 2.799 22.395 10.544 46.152 16.181 65.878 12.36 43.26 32.671 84.341 56.632 117.887 40.080 56.112 88.601 109.242 150.248 144.47 71.978 41.131 150.674 70.501 264.668 70.501 34.29 0 63.451-7.878 92.46-12.713 41.608-6.935 73.298-22.433 108.641-38.14 61.803-27.469 112.654-72.080 153.716-121.354 25.512-30.616 49.3-64.18 65.878-102.862 15.256-35.597 31.892-75.771 39.296-120.199 8.258-49.543 10.001-119.892 0-169.896-3.355-16.779-11.571-50.902-16.181-67.034-15.771-55.201-47.774-110.494-80.903-150.248-36.32-43.582-77.595-83.14-128.289-112.108-45.068-25.753-97.079-51.348-158.339-60.099-26.233-3.747-57.649-9.246-87.837-9.246z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["admin"],"defaultCode":60876,"grid":24},"attrs":[],"properties":{"id":953,"order":46,"ligatures":"","prevSize":24,"code":60876,"name":"admin"},"setIdx":0,"setId":2,"iconIdx":954},{"icon":{"paths":["M587.124 224.217c70.351 0 118.68 11.333 173.363 27.738 72.791 21.838 126.812 58.998 177.986 102.862 40.38 34.61 71.289 79.011 95.928 128.289 23.277 46.555 35.828 93.518 35.828 161.806 0 73.881-14.314 119.933-39.296 169.896-22.948 45.894-46.38 76.43-82.059 112.108l-19.648 19.648c5.879 8.818 9.964 14.836 17.336 27.738 13.187 23.076 35.245 44.478 43.919 70.501 1.156 3.467 1.156 10.402 1.156 16.181 0 30.997-15.629 46.248-34.673 58.944-14.482 9.654-19.879 9.246-48.542 9.246-66.294 0-107.955-16.723-158.339-33.517-22.013-7.338-40.101-19.473-58.944-28.894l-13.869-6.935-32.361 1.156c-18.492 1.156-47.386 1.156-67.034 1.156-79.308 0-128.020-16.090-187.233-35.828-23.057-7.686-45.302-20.108-64.722-31.205-55.644-31.797-104.107-72.16-141.002-121.354-45.848-61.13-77.436-133.578-77.436-240.397 0-21.379 5.312-40.646 8.090-60.099 3.204-22.431 8.116-38.971 16.181-57.788 3.467-8.090 8.090-23.115 12.713-32.361 14.667-29.332 30.096-49.189 47.386-75.124 4.623-6.935 16.181-18.492 23.115-26.582 22.557-26.317 47.253-45.969 75.124-65.878 26.143-18.674 52.929-33.91 84.37-47.386 36.774-15.761 77.022-30.142 122.51-35.828 16.126-2.016 42.621-6.935 57.788-6.935 3.467 0 17.336-1.156 32.361-1.156zM585.968 320.144c-4.623 0-10.402 1.156-15.025 1.156-67.035 0-122.085 21.116-169.896 41.607-46.233 19.814-83.313 50.952-116.731 84.37-26.995 26.995-50.361 65.558-63.567 105.174-10.757 32.269-15.025 48.382-15.025 94.772 0 75.806 21.936 125.369 56.632 168.74 12.012 15.014 27.418 34.599 42.763 47.386 51.959 43.3 115.866 81.143 197.634 94.772 33.631 5.605 63.595 8.090 105.174 8.090 15.025 0 40.451-1.156 55.476-2.312 17.336-1.156 31.205-2.312 34.673-1.156 3.467 0 8.090 2.312 10.402 3.467 31.712 15.856 68.422 37.447 105.174 49.698 6.935 2.312 19.648 4.623 27.738 6.935s18.492 5.779 20.804 5.779h4.623l-6.935-10.402c-12.135-20.226-25.612-40.914-34.673-63.567-4.623-10.402-3.467-12.713-3.467-23.115 0-25.066 11.712-32.023 26.582-43.919 24.47-19.576 46.782-42.733 67.034-67.034 12.282-14.738 16.182-26.199 25.427-41.607 17.379-28.967 25.756-65.542 32.361-105.174 1.156-6.935 1.156-18.492 1.156-27.738 0-34.696-7.199-61.602-15.025-88.993-13.727-48.042-44.099-89.174-75.124-120.199-30.207-30.207-63.341-55.376-105.174-73.968-53.866-23.94-115.377-42.763-193.011-42.763zM374.465 701.544c-29.935 0-48.542 17.064-48.542 47.386 0 33.088 21.956 43.255 41.607 60.099 16.693 14.308 33.145 26.396 52.009 35.828l25.427 12.713c17.639 8.818 39.377 14.468 60.099 19.648 25.224 6.306 42.185 10.402 75.124 10.402 103.931 0 171.142-30.354 229.995-77.436 5.779-4.623 13.869-11.558 19.648-17.336l13.869-13.869c7.68-7.68 9.246-13.257 9.246-30.050 0-28.905-17.252-46.23-46.23-46.23-23.020 0-25.561 5.729-40.451 18.492-20.651 17.209-40.99 35.812-67.034 46.23-5.779 2.312-16.181 6.935-21.959 9.246-26.753 10.702-50.208 13.869-87.837 13.869-68.795 0-115.133-19.988-153.716-50.853-10.906-8.725-30.949-27.61-42.763-33.517-6.935-3.467-9.246-4.623-18.492-4.623z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["brand-hipchat"],"defaultCode":60877,"grid":24},"attrs":[],"properties":{"id":954,"order":97,"ligatures":"","prevSize":24,"code":60877,"name":"pm"},"setIdx":0,"setId":2,"iconIdx":955},{"icon":{"paths":["M635.666 195.323c90.149 0 105.174 1.156 110.953 2.312 3.467 1.156 9.246 2.312 12.713 4.623 3.643 2.429 254.955 252.176 260.045 262.357l2.312 6.935 1.156 180.298c0 156.027 0 182.609-1.156 191.856-10.317 51.585-40.607 87.915-82.059 108.641-25.363 12.682-36.57 13.869-78.591 13.869h-30.050v31.205c0 44.052-2.765 54.071-16.181 80.903-16.419 32.839-42.155 56.389-77.436 70.501-5.779 2.312-15.025 5.779-21.959 6.935l-12.713 2.312h-184.921c-204.346 0-169.992 4.311-214.971-6.935-49.457-12.364-86.803-60.704-97.084-112.108-2.312-10.402-2.312-25.427-2.312-265.824 0-274.568-4.632-234.582 8.090-285.472 5.671-22.685 20.222-38.858 33.517-55.476 16.466-20.583 45.209-34.418 73.968-41.607 5.779-1.156 16.181-2.312 42.763-2.312h34.673v-33.517c0-51.349 4.625-65.304 24.271-94.772 18.334-27.501 48.687-50.889 85.526-60.099 4.623-1.156 12.713-3.467 17.336-3.467s54.321-1.156 112.108-1.156zM609.084 292.406c-71.657 0-76.28 0-83.214 2.312-13.615 4.539-26.387 16.553-30.050 31.205-2.312 8.090-2.312 10.402-2.312 257.734l1.156 250.799c8.879 17.756 17.54 24.883 34.673 34.673h362.907c14.22-7.11 26.944-18.42 32.361-34.673l1.156-150.248v-151.404h-80.903c-72.813 0-80.903 0-86.682-2.312-34.411-11.471-60.189-33.876-69.345-70.501-2.312-9.246-3.467-9.246-3.467-87.837v-79.747h-76.28zM782.447 361.752v73.968h73.968l-35.828-36.984c-20.804-20.804-38.14-36.984-38.14-36.984zM367.53 485.418c-45.25 0-55.001 5.509-65.878 38.14-1.156 4.623-1.156 73.968-1.156 250.799 0 237.934-3.063 233.524 6.935 263.512 4.167 12.501 17.833 17.88 30.050 23.115h360.596c11.377-5.689 24.797-10.825 28.894-23.115 5.37-16.109 6.935-14.541 6.935-45.074v-26.582h-102.862c-88.993 0-104.018-1.156-113.264-2.312-62.251-12.451-105.471-51.182-117.887-113.264-2.312-10.402-3.467-11.558-3.467-187.233v-177.986h-28.894z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["page"],"defaultCode":60911,"grid":24},"attrs":[],"properties":{"id":988,"order":203,"ligatures":"","prevSize":24,"code":60911,"name":"page"},"setIdx":0,"setId":2,"iconIdx":989},{"icon":{"paths":["M300.497 231.151c11.157-16.735 20.378-35.828 47.386-35.828 14.708 0 27.631 7.983 35.828 16.181 13.398 13.398 13.869 26.801 13.869 56.632v23.115h287.783v-25.427c0-39.721 4.317-49.879 26.582-64.722 12.431-8.287 30.986-4.311 43.919 0 13.12 4.373 21.141 20.661 25.427 33.517 1.156 3.467 1.156 17.336 1.156 31.205v25.427h31.205c77.296 0 119.97 29.592 145.625 80.903 3.467 6.935 8.090 16.181 9.246 20.804l4.623 18.492c1.156 8.090 2.312 23.115 2.312 113.264 0 73.968 0 106.33-1.156 112.108-5.629 22.513-17.629 30.052-35.828 40.451h-733.905v172.208c0 168.74 0 172.208 2.312 179.142 3.702 14.809 16.423 27.51 31.205 31.205 6.935 2.312 10.402 2.312 176.831 2.312 146.781 0 169.896 0 175.675 1.156 21.324 7.108 35.828 18.996 35.828 47.386 0 30.2-15.3 39.773-38.14 47.386-3.467 1.156-61.255 1.156-180.298 1.156-162.962 0-175.675 0-183.765-2.312-51.477-12.869-83.677-43.688-105.174-86.682-5.505-11.010-7.707-26.978-10.402-40.451-1.156-8.090-1.156-99.395-1.156-312.054 0-284.316 0-301.652 2.312-309.743 14.556-58.224 57.040-102.25 117.887-114.42 6.935-1.156 20.804-2.312 41.607-2.312h31.205v-60.099zM273.914 388.334c-44.672 0-55.419 7.185-68.19 36.984l-1.156 77.436v77.436h673.806v-77.436c0-77.436-1.156-77.436-3.467-83.214-3.853-11.561-16.273-23.916-27.738-27.738-5.779-2.312-9.246-3.467-35.828-3.467h-28.894v26.582c0 30.577-1.542 28.895-6.935 45.074-3.77 11.31-20.347 24.271-34.673 24.271h-13.869c-11.486 0-18.766-6.053-25.427-12.713-14.819-14.819-16.181-22.308-16.181-56.632v-26.582h-287.783v23.115c0 12.713-1.156 25.427-1.156 30.050 0 24.578-22.997 42.763-47.386 42.763-24.159 0-41.351-14.002-46.23-33.517-2.312-6.935-2.312-10.402-2.312-34.673v-27.738h-26.582zM887.621 725.815c51.697 0 90.71 19.521 123.666 39.296 21.788 13.072 43.682 35.127 58.944 55.476 26.653 35.537 48.542 82.060 48.542 144.47 0 93.512-43.306 152.070-95.928 194.167-5.779 4.623-15.025 10.402-19.648 12.713-19.214 9.608-42.098 23.582-67.034 27.738-19.381 3.23-32.937 6.935-57.788 6.935-59.036 0-95.862-17.066-132.912-39.296-21.788-13.072-43.682-35.127-58.944-55.476-26.906-35.875-48.542-82.534-48.542-145.625 0-58.567 17.055-95.846 39.296-132.912 13.072-21.788 35.127-43.682 55.476-58.944 28.474-21.355 63.834-37.963 105.174-46.23 5.779-1.156 17.336-2.312 25.427-2.312h24.271zM882.998 822.898h-18.492c-46.686 0-80.345 29.928-101.707 56.632-18.004 22.506-27.738 47.098-27.738 86.682 0 46.026 14.884 74.983 38.14 98.239 24.548 24.548 56.165 45.074 105.174 45.074 38.971 0 64.46-9.963 86.682-27.738 31.818-25.453 56.632-58.717 56.632-115.576 0-56.911-24.603-89.953-56.632-115.576-20.206-16.164-47.28-27.738-82.059-27.738zM881.842 846.014h-10.402c-21.541 0-33.783 20.444-39.296 36.984-1.156 5.779-2.312 13.869-2.312 46.23 0 40.134-0.11 41.278 5.779 58.944 2.312 4.623 9.246 12.713 32.361 35.828 25.427 25.427 30.050 30.050 36.984 33.517 4.623 2.312 11.558 4.623 15.025 4.623h13.869c17.010 0 29.699-15.48 35.828-27.738 2.312-4.623 4.623-10.402 4.623-13.869v-12.713c0-3.467-2.312-10.402-4.623-15.025-3.467-5.779-6.935-11.558-23.115-27.738l-19.648-19.648v-27.738c0-31.077 1.241-32.19-5.779-46.23-6.21-12.42-21.417-25.427-39.296-25.427z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["calendar-time"],"defaultCode":60961,"grid":24},"attrs":[],"properties":{"id":1038,"order":35,"ligatures":"","prevSize":24,"code":60961,"name":"calendar-time"},"setIdx":0,"setId":2,"iconIdx":1039},{"icon":{"paths":["M585.968 195.323c106.732 0 185.3 31.752 253.111 70.501 46.84 26.767 85.624 62.525 120.199 102.862 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 108.842-30.784 183.603-70.501 253.111-4.623 8.090-13.869 19.648-18.492 26.582-20.63 30.944-52.221 65.092-80.903 88.993-35.038 29.199-77.383 57.767-123.666 75.124-21.974 8.241-43.574 17.646-68.19 23.115-39.258 8.724-69.633 13.869-119.043 13.869-149.954 0-246.081-57.707-327.079-127.133-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.103-64.208-54.321-139.695-54.321-236.93 0-35.575 4.588-56.482 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 46.876-23.439 101.186-42.028 162.962-50.853 8.090-1.156 20.804-2.312 28.894-2.312s20.804-1.156 27.738-1.156zM540.894 294.718c-101.503 18.455-181.106 58.539-236.93 123.666-18.363 21.422-35.921 41.792-48.542 67.034l-10.402 20.804c-23.604 47.209-40.451 100.765-40.451 171.052 0 47.507 6.321 84.66 19.648 120.199 11.058 29.489 20.786 54.678 35.828 79.747 3.467 5.779 5.779 9.246 6.935 9.246s62.411-52.009 137.535-115.576l136.379-115.576v-360.596zM640.289 295.874l-2.312-1.156v334.014h334.014c-2.636-11.866-3.195-22.021-6.935-36.984-27.767-111.068-88.791-185.943-172.208-241.553-15.521-10.346-39.323-22.74-57.788-28.894-24.078-8.026-50.097-19.043-78.591-23.115-8.090-1.156-15.025-2.312-16.181-2.312zM789.381 725.815h-183.765c-56.827 49.788-146.712 126.488-237.128 202.578l-39.097 32.041c32.263 32.263 79.765 58.785 125.977 78.591 8.090 3.467 21.959 5.779 28.894 8.090 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 19.849-5.671 34.467-13.945 53.165-21.959 8.090-3.467 17.336-9.246 21.959-12.713s15.025-8.090 20.804-11.558 12.713-10.402 16.181-12.713c42.859-28.573 77-72.857 104.018-117.887 14.131-23.554 24.182-51.742 33.517-79.747 6.039-18.116 9.667-42.346 13.869-61.255h-182.609z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["chart-pie-3"],"defaultCode":60978,"grid":24},"attrs":[],"properties":{"id":1055,"order":120,"ligatures":"","prevSize":24,"code":60978,"name":"chart-pie-3"},"setIdx":0,"setId":2,"iconIdx":1056},{"icon":{"paths":["M589.436 196.479c29.77 0 48.403 7.804 69.345 16.181 5.779 2.312 13.869 6.935 18.492 10.402 6.878 5.159 56.866 54.863 64.722 60.099 21.161 14.106 85.988 4.591 114.42 12.713 46.147 11.537 77.685 37.785 99.395 73.968 10.366 17.275 13.045 33.688 18.492 55.476 1.156 4.623 1.156 21.959 1.156 39.296 0 63.208 0.111 51.227 36.984 90.149 27.471 29.434 30.307 29.409 43.919 56.632 10.012 20.023 15.025 37.606 15.025 65.878 0 38.543-11.904 62.22-26.582 86.682-4.623 6.935-13.869 17.336-32.361 35.828-21.61 21.61-27.427 25.652-33.517 43.919-5.059 12.647-1.841 73.453-5.779 97.084-12.56 50.241-43.025 86.234-85.526 107.485-30.659 15.33-29.928 13.080-84.37 15.025-53.234 1.613-36.524 1.387-60.099 9.246-3.467 1.156-17.336 13.869-31.205 27.738-18.492 18.492-28.894 27.738-35.828 32.361-24.67 14.802-47.748 26.582-86.682 26.582-26.54 0-45.344-6.117-64.722-13.869-5.779-2.312-15.025-9.246-20.804-12.713-6.935-4.623-16.181-13.869-35.828-32.361-21.959-21.959-28.894-26.582-34.673-30.050-16.871-8.436-21.39-6.935-56.632-6.935-46.654 0-66.709-2.811-94.772-19.648-36.321-21.792-62.426-54.381-73.968-100.551-8.009-28.037 1.167-92.443-12.713-113.264-2.312-3.467-15.025-16.181-28.894-30.050-36.88-36.88-57.788-60.236-57.788-127.133 0-19.488 4.525-29.657 8.090-43.919 3.537-14.15 13.419-30.934 21.959-41.607 6.77-8.464 55.951-59.551 58.944-67.034 9.038-13.557 6.935-20.023 6.935-57.788 1.545-52.552 0.586-44.522 9.246-70.501 12.862-38.586 41.964-66.056 76.28-83.214 30.771-15.387 26.236-14.47 84.37-16.181 37.712 0 44.276 2.073 57.788-6.935 5.779-2.312 13.869-9.246 32.361-27.738 23.711-21.736 25.386-28.873 46.23-39.296 9.389-4.695 19.082-11.128 30.050-13.869l18.492-4.623c4.623-1.156 10.402-2.312 11.558-2.312s10.402-1.156 18.492-1.156zM589.436 292.406c-2.312 0-6.935 1.156-9.246 1.156-7.039 0-17.614 5.578-23.115 9.246-7.783 5.189-55.613 54.171-63.567 58.944-14.613 10.959-36.932 19.347-56.632 24.271-19.628 3.271-79.262-0.162-97.084 5.779-17.061 5.686-30.088 18.607-35.828 35.828-5.941 17.822-2.508 77.455-5.779 97.084-11.428 45.712-23.931 57.332-55.476 91.305-20.39 20.39-29.174 26.267-34.673 42.763-1.156 3.467-2.312 10.402-2.312 13.869 0 4.623-1.156 10.402 0 16.181 1.156 4.623 4.623 11.558 5.779 15.025 2.906 5.811 54.318 58.169 58.944 65.878 3.467 5.779 10.402 15.025 13.869 21.959 7.42 14.842 10.406 28.915 13.869 46.23 1.156 8.090 2.312 20.804 2.312 43.919 0 39.894-1.133 49.721 17.336 68.19 17.519 17.519 31.284 17.336 70.501 17.336 42.252 0 53.41 0.123 78.591 12.713 30.84 15.42 37.542 20.206 65.878 48.542 29.345 29.345 23.212 26.896 49.698 33.517 12.75 2.55 23.498-1.346 32.361-5.779 8.090-3.467 11.558-5.779 33.517-27.738 41.549-41.549 62.777-61.255 143.314-61.255 39.017 0 52.705 0.459 70.501-17.336 17.519-17.519 17.336-31.284 17.336-70.501 0-80.39 19.664-101.723 61.255-143.314 21.959-21.959 24.271-25.427 27.738-33.517 6.844-13.688 8.98-32.891 1.156-48.542-3.467-6.935-5.779-11.558-27.738-33.517-28.432-28.432-34.253-34.989-49.698-65.878-12.526-25.052-12.713-36.288-12.713-78.591 0-39.017 0.459-52.705-17.336-70.501-17.224-17.224-28.747-17.336-68.19-17.336-23.115 0-36.984 0-43.919-1.156-24.597-4.92-45.942-15.314-64.722-26.582-6.935-4.623-19.648-16.181-36.984-33.517-19.648-19.648-27.738-25.427-32.361-27.738-6.068-2.023-19.481-6.935-26.582-6.935zM468.081 484.262c42.041 0 72.813 29.961 72.813 71.657 0 12.465-1.67 24.465-6.935 32.361l-9.246 13.869c-10.194 15.291-31.15 26.582-56.632 26.582-44.679 0-71.657-32.425-71.657-77.436 0-28.215 25.533-55.126 47.386-62.411 3.467-1.156 9.246-3.467 12.713-3.467s8.090-1.156 11.558-1.156zM732.749 484.262c26.76 0 43.057 18.511 48.542 40.451 2.123 10.614-0.215 23.436-4.623 30.050-10.932 18.22-296.078 301.544-309.743 309.743-10.337 6.892-33.11 7.205-43.919 0-15.106-10.070-38.543-38.113-20.804-64.722 8.57-14.282 298.049-305.528 308.587-309.743 5.407-3.604 14.661-5.779 21.959-5.779zM711.946 725.815c-23.468 0-32.272 5.719-46.23 15.025-15.961 10.64-27.738 31.012-27.738 57.788 0 45.143 32.051 71.657 77.436 71.657 18.765 0 34.132-11.017 45.074-21.959 13.113-13.113 20.804-24.93 20.804-49.698 0-32.3-13.423-47.051-32.361-61.255-11.107-8.33-18.696-11.558-36.984-11.558z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["discount-2"],"defaultCode":61052,"grid":24},"attrs":[],"properties":{"id":1128,"order":113,"ligatures":"","prevSize":24,"code":61052,"name":"discount-2"},"setIdx":0,"setId":2,"iconIdx":1129},{"icon":{"paths":["M926.916 196.479c34.273 0 58.293 10.203 78.591 25.427 36.346 27.26 64.722 59.533 64.722 122.51 0 38.63-8.483 61.781-25.427 84.37-3.467 5.779-17.336 20.804-41.607 45.074-19.648 20.804-116.731 119.043-214.971 217.282l-179.142 179.142h-84.37c-57.788 0-84.37 0-88.993-1.156-19.91-6.636-31.405-17.936-38.14-38.14-1.156-4.623-1.156-30.050-1.156-82.059s0-76.28 1.156-80.903c1.156-3.467 2.312-9.246 4.623-12.713 2.312-5.779 32.361-35.828 177.986-181.454 95.928-95.928 191.856-190.7 212.659-210.348 24.271-24.271 39.296-38.14 45.074-41.607 8.692-6.521 25.195-15.834 35.828-18.492 11.315-2.828 18.726-4.103 30.050-6.935 4.623-1.156 15.025 0 23.115 0zM974.302 344.415c0-30.223-22.455-52.009-53.165-52.009-27.995 0-32.234 11.43-50.853 30.050l-18.492 18.492 73.968 73.968 18.492-18.492c17.327-17.327 21.933-19.567 27.738-36.984 1.156-3.467 2.312-11.558 2.312-15.025zM446.122 391.801c25.984 0 40.937 19.278 46.23 40.451 3.846 19.232-4.035 31.773-13.869 41.607-16.218 16.218-58.252 19.417-83.214 27.738-30.527 10.176-58.932 31.197-83.214 47.386-6.935 4.623-16.181 15.025-23.115 21.959-54.002 54.002-98.622 138.708-79.747 251.955 10.074 60.441 37.879 111.847 73.968 147.937 5.779 5.779 15.025 16.181 21.959 21.959 48.776 40.648 108.127 69.345 196.479 69.345 37.096 0 59.609-8.115 87.837-16.181 30.935-8.838 62.064-29.541 84.37-47.386 42.221-33.777 70.735-76.285 92.46-130.6 2.312-5.779 4.623-16.181 5.779-21.959 6.408-32.035 13.12-71.657 49.698-71.657 3.467 0 9.246-1.156 13.869 0 18.717 6.239 39.296 18.927 39.296 43.919 0 25.658-8.625 52.459-15.025 71.657-17.989 53.97-42.42 102.519-78.591 138.691-68.713 68.713-149.525 129.445-287.783 129.445-118.531 0-192.333-43.738-257.734-98.239-24.7-20.584-44.719-44.506-62.411-72.813-36.147-57.836-64.722-120.23-64.722-213.815 0-70.671 16.389-124.083 40.451-172.208 28.445-56.892 70.883-107.738 122.51-142.158 23.123-15.415 45.837-27.542 71.657-40.451 22.611-11.306 54.54-18.767 82.059-24.271 6.935-1.156 13.869-2.312 20.804-2.312zM782.447 409.138l-288.939 288.939v75.124h76.28c98.777-99.779 192.551-193.919 286.612-287.771l1.171-1.168-75.124-75.124z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["edit-circle"],"defaultCode":61061,"grid":24},"attrs":[],"properties":{"id":1137,"order":22,"ligatures":"","prevSize":24,"code":61061,"name":"edit-circle"},"setIdx":0,"setId":2,"iconIdx":1138},{"icon":{"paths":["M588.28 339.792c258.889 0 390.646 0 395.269 1.156 20.817 6.939 38.14 18.66 38.14 47.386 0 29.112-16.738 40.252-38.14 47.386-4.623 1.156-136.379 1.156-394.113 1.156s-389.49 0-394.113-1.156c-20.817-6.939-38.14-18.66-38.14-47.386 0-16.782 4.377-25.18 12.713-33.517 5.506-5.506 16.279-13.869 24.271-13.869 2.312 0 177.986-1.156 394.113-1.156zM866.817 1022.844c-33.735 22.49-76.691 39.296-132.912 39.296-93.107 0-151.062-43.491-193.011-95.928-11.021-13.777-16.034-25.133-24.271-41.607-14.652-29.303-23.115-59.658-23.115-102.862 0-43.787 8.466-71.378 21.959-102.862 3.467-8.090 9.246-17.336 12.713-21.959s8.090-13.869 12.713-19.648c16.719-20.898 44.108-49.214 68.19-61.255 16.531-8.265 33.977-20.203 54.321-24.271 23.411-4.681 38.541-10.402 69.345-10.402 44.85 0 71.886 8.189 104.018 21.959 8.090 3.467 17.336 9.246 21.959 12.713s13.869 8.090 19.648 12.713c28.582 22.865 58.574 54.555 72.813 90.149 5.721 14.302 13.356 28.122 16.181 45.074 3.182 19.093 6.935 34.143 6.935 57.788 0 43.003-8.287 75.517-23.115 105.174-5.61 11.219-10.933 18.559-16.181 27.738l63.567 62.411c54.321 54.321 63.567 65.878 67.034 71.657 15.448 23.173-2.813 58.726-20.804 64.722-12.013 4.005-31.217 8.467-43.919 0-5.779-3.467-17.336-12.713-71.657-67.034zM299.341 628.731c63.567 0 102.862 0 106.33 1.156 20.817 6.939 38.14 18.66 38.14 47.386 0 29.112-16.738 40.252-38.14 47.386-3.467 1.156-42.763 1.156-105.174 1.156s-101.707 0-105.174-1.156c-20.817-6.939-38.14-18.66-38.14-47.386 0-16.782 4.377-25.18 12.713-33.517 5.506-5.506 16.279-13.869 24.271-13.869 2.312 0 49.698-1.156 105.174-1.156zM737.372 678.429h-16.181c-20.14 0-37.035 9.035-52.009 15.025-21.096 8.439-37.308 24.675-50.853 41.607-18.004 22.506-27.738 47.098-27.738 86.682 0 61.105 27.322 92.726 62.411 119.043 21.183 15.887 43.619 24.271 80.903 24.271 61.105 0 92.726-27.322 119.043-62.411 15.887-21.183 24.271-43.619 24.271-80.903 0-39.259-9.852-64.324-27.738-86.682-24.637-30.799-57.337-56.632-112.108-56.632zM299.341 917.67c-55.476 0-102.862 1.156-105.174 1.156-14.551 0-27.974 16.651-33.517 27.738-3.467 6.935-3.467 8.090-3.467 19.648 0 29.112 16.738 40.252 38.14 47.386 3.467 1.156 42.763 1.156 105.174 1.156s101.707 0 105.174-1.156c20.817-6.939 38.14-18.66 38.14-47.386 0-29.112-16.738-40.252-38.14-47.386-3.467-1.156-42.763-1.156-106.33-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["list-search"],"defaultCode":61097,"grid":24},"attrs":[],"properties":{"id":1173,"order":81,"ligatures":"","prevSize":24,"code":61097,"name":"list-search"},"setIdx":0,"setId":2,"iconIdx":1174},{"icon":{"paths":["M587.124 195.323c50.772 0 92.541 9.007 135.223 18.492 32.492 7.22 57.366 22.604 85.526 34.673 32.821 14.066 64.237 36.733 90.149 58.944 18.613 15.954 42.984 39.169 58.944 57.788 13.404 15.639 28.732 41.271 13.869 63.567-3.467 5.779-17.336 21.959-123.666 128.289l-120.199 120.199 120.199 120.199c106.33 106.33 120.199 122.51 123.666 128.289 8.187 12.281 4.234 30.064 0 42.763-5.362 16.082-28.007 37.253-41.607 50.853-17.856 17.856-33.11 28.568-50.853 42.763-31.706 25.364-69.165 46.74-110.953 62.411-30.422 11.408-59.993 22.090-95.928 26.582-9.246 1.156-21.959 3.467-28.894 4.623-114.983 19.164-217.94-23.445-293.562-61.255-19.32-9.66-44.365-28.286-61.255-42.763-8.090-6.935-26.582-21.959-38.14-33.517-47.334-47.334-79.143-96.829-107.485-162.962-21.761-50.775-33.517-106.107-33.517-177.986 0-90.32 20.838-150.328 48.542-212.659 20.161-45.363 48.434-79.237 78.591-114.42 36.112-42.131 81.354-74.772 132.912-100.551 42.83-21.414 87.914-40.316 144.47-47.386 15.865-1.983 37.606-5.779 53.165-5.779 2.312 0 12.713-1.156 20.804-1.156zM862.194 404.515c-67.448-57.813-141.134-110.953-266.98-110.953h-40.451c-16.063 0-38.401 6.785-53.165 9.246-28.611 4.769-59.553 18.219-83.214 30.050-38.785 19.391-71.693 41.643-101.707 71.657-17.244 17.244-35.511 38.161-47.386 58.944-34.78 60.864-63.567 116.24-63.567 213.815 0 23.115 0 34.673 1.156 46.23 9.246 64.726 31.066 112.729 57.788 159.494 10.381 18.168 20.514 32.071 34.673 46.23 5.779 5.779 15.025 17.336 23.115 24.271 17.008 14.579 31.884 29.732 49.698 41.607 31.326 20.885 66.8 37.678 106.33 50.853 25.102 8.368 53.98 10.849 83.214 15.025 8.090 1.156 19.648 1.156 27.738 1.156 15.796 0 39.365-0.306 52.009-3.467 28.307-7.077 62.296-12.17 87.837-23.115 27.553-11.81 49.016-21.142 72.813-38.14 16.163-11.546 37.893-26.335 50.853-39.296l9.246-8.090-122.51-122.51c-108.641-108.641-122.51-122.51-124.822-128.289-7.151-10.725-7.284-32.995 0-43.919 2.312-5.779 16.181-19.648 124.822-128.289zM568.632 364.063c-36.144 0-57.944 15.181-76.28 33.517-14.193 14.193-21.959 33.442-21.959 62.411 0 40.2 15.069 55.52 34.673 75.124 14.786 14.786 36.171 21.959 64.722 21.959 27.121 0 47.259-12.586 61.255-26.582 16.768-16.768 30.050-36.918 30.050-70.501 0-38.845-18.929-63.858-42.763-79.747-12.872-8.581-28.463-16.181-49.698-16.181z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["pacman"],"defaultCode":61116,"grid":24},"attrs":[],"properties":{"id":1192,"order":121,"ligatures":"","prevSize":24,"code":61116,"name":"pacman"},"setIdx":0,"setId":2,"iconIdx":1193},{"icon":{"paths":["M594.059 196.479c31.29 0 51.158 8.319 69.345 21.959 4.623 3.467 11.558 6.935 15.025 10.402 13.662 13.662 31.321 37.562 35.828 60.099 2.060 10.301 5.948 16.349 11.558 21.959 7.145 7.145 10.319 10.402 25.427 10.402 11.032 0 42.813-16.198 53.165-19.648 8.090-2.312 15.025-3.467 26.582-3.467 64.232 0 103.181 30.688 124.822 73.968 7.59 15.182 12.713 33.899 12.713 56.632 0 31.275-10.336 51.88-20.804 72.813-2.312 3.467-2.312 6.935-2.312 13.869 0 35.328 31.588 34.286 55.476 46.23 37.099 18.549 56.052 45.068 67.034 88.993 1.156 4.623 3.467 13.869 3.467 19.648 0 45.196-14.825 77.236-38.14 100.551-16.518 13.215-34.343 27.672-57.788 32.361-11.656 2.331-13.438 4.192-19.648 10.402-7.145 7.145-10.402 10.319-10.402 25.427 0 11.38 16.044 42.353 19.648 53.165 2.312 8.090 3.467 15.025 3.467 26.582 0 65.645-30.119 98.743-71.657 123.666-16.179 9.708-35.224 13.869-60.099 13.869-31.242 0-48.858-9.404-69.345-19.648-6.935-3.467-8.090-3.467-16.181-3.467-35.328 0-34.286 31.588-46.23 55.476-20.589 41.177-54.829 69.345-115.576 69.345-39.865 0-68.781-13.305-88.993-33.517-13.656-13.656-31.27-36.152-35.828-58.944-2.060-10.301-5.948-16.349-11.558-21.959-7.145-7.145-10.319-10.402-25.427-10.402-11.38 0-42.353 16.044-53.165 19.648-8.090 2.312-15.025 3.467-26.582 3.467-65.185 0-101.67-29.975-123.666-73.968-8.394-16.787-13.869-32.048-13.869-57.788 0-31.242 9.404-48.858 19.648-69.345 3.467-6.935 3.467-8.090 3.467-16.181 0-35.328-31.588-34.286-55.476-46.23-41.258-20.63-69.345-54.829-69.345-115.576 0-32.821 8.11-55.503 21.959-73.968 3.467-4.623 6.935-11.558 10.402-15.025 13.662-13.662 37.562-31.321 60.099-35.828 10.301-2.060 16.349-5.948 21.959-11.558 7.145-7.145 10.402-10.319 10.402-25.427 0-11.38-16.044-42.353-19.648-53.165-2.312-8.090-3.467-15.025-3.467-26.582 0-54.768 22.699-88.392 54.321-112.108 20.633-15.474 42.258-25.427 77.436-25.427 31.242 0 48.858 9.404 69.345 19.648 6.935 3.467 8.090 3.467 16.181 3.467 36.175 0 32.702-30.732 45.074-55.476 18.531-37.063 49.146-57.071 93.616-68.19 4.623-1.156 10.402-1.156 11.558-1.156h16.181zM871.44 429.941c0-21.52-13.158-34.673-34.673-34.673-8.090 0-9.246 0-23.115 6.935-14.194 8.111-21.268 9.401-34.673 13.869-3.467 1.156-11.558 2.312-17.336 2.312-62.558 10.426-108.799-33.832-129.445-75.124-5.232-10.467-8.492-37.763-18.492-42.763-7.304-3.652-10.42-8.090-21.959-8.090-24.15 0-34.177 12.547-38.14 32.361-4.743 23.711-20.087 42.046-34.673 56.632-21.017 21.017-48.756 36.984-91.305 36.984-30.547 0-41.53-6.736-63.567-16.181-12.713-6.935-13.869-6.935-21.959-6.935-21.52 0-34.673 13.158-34.673 34.673 0 8.090 0 9.246 6.935 23.115 8.111 14.194 9.401 21.268 13.869 34.673 1.156 3.467 2.312 11.558 2.312 17.336 7.434 44.603-16.614 82.492-39.296 105.174-16.532 16.532-32.459 24.303-56.632 32.361-18.827 6.276-30.050 12.348-30.050 36.984 0 30.269 30.309 30.178 50.853 40.451 34.194 17.097 58.627 45.278 71.657 84.37 3.467 10.402 2.312 13.869 2.312 34.673 0 32.975-0.938 37.978-13.869 61.255-8.090 16.181-8.090 16.181-8.090 24.271 0 21.52 13.158 34.673 34.673 34.673 16.6 0 29.59-13.753 43.919-17.336 12.413-3.103 24.056-5.779 41.607-5.779 62.734 0 98.020 33.078 119.043 75.124 5.232 10.467 8.492 37.763 18.492 42.763 8.666 4.333 8.951 6.935 24.271 6.935 24.085 0 30.622-9.794 34.673-30.050 7.633-38.165 38.068-65.266 69.345-80.903 14.468-7.234 26.676-13.869 47.386-13.869h21.959c20.878 0 31.658 6.005 49.698 15.025 16.181 8.090 16.181 8.090 24.271 8.090 21.52 0 34.673-13.158 34.673-34.673 0-16.6-13.753-29.59-17.336-43.919-3.103-12.413-5.779-24.056-5.779-41.607 0-45.577 15.961-71.437 39.296-94.772 14.895-14.895 32.287-26.567 55.476-31.205 19.83-3.967 30.050-12.346 30.050-35.828 0-34.566-26.166-32.888-50.853-42.763-27.833-11.133-46.73-34.513-60.099-61.255-9.137-18.276-13.869-31.315-13.869-57.788 0-27.203 5.178-43.156 16.181-62.411 6.935-13.869 6.935-15.025 6.935-23.115zM495.819 485.418c4.623 0 10.402 1.156 13.869 2.312 0.589 0.196 249.985 147.123 258.889 156.027 16.12 16.12 17.507 49.526 0 67.034-9.53 9.53-256.047 154.607-258.889 156.027-2.312 1.156-8.090 2.312-11.558 2.312s-10.402 1.156-13.869 0c-18.677-6.226-31.824-15.723-38.14-34.673-1.156-4.623-1.156-34.673-1.156-157.183s0-152.56 1.156-157.183c6.894-20.682 22.311-34.673 49.698-34.673zM542.050 618.33s-1.156 25.427-1.156 58.944 1.156 58.944 1.156 58.944c39.036-23.236 10.174-5.143 97.084-58.944-48.005-30.319-77.565-47.325-97.084-58.944z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["settings-automation"],"defaultCode":61142,"grid":24},"attrs":[],"properties":{"id":1218,"order":96,"ligatures":"","prevSize":24,"code":61142,"name":"settings-automation"},"setIdx":0,"setId":2,"iconIdx":1219},{"icon":{"paths":["M251.955 195.323c66.577 0 82.029-2.402 95.928 39.296 1.156 4.623 1.156 67.034 1.156 224.217v218.438h535.115l21.959-151.404c19.648-136.379 21.959-151.404 24.271-157.183 2.715-8.143 14.071-19.172 21.959-23.115 29.235-19.49 70.501 9.5 70.501 38.14 0 13.906-44.975 345.371-53.165 361.752-6.965 13.93-16.442 20.255-31.205 26.582l-294.718 1.156h-294.718v97.084h248.488c241.553 0 248.488 0 260.045 2.312 61.426 10.238 102.425 56.757 114.42 116.731 1.156 5.779 2.312 15.025 2.312 24.271 0 19.819-1.341 32.243-6.935 46.23-11.614 29.035-27.195 52.758-50.853 70.501-9.94 7.455-27.393 17.54-40.451 20.804l-18.492 4.623c-4.623 1.156-13.869 3.467-19.648 3.467-62.191 0-101.819-26.75-127.133-64.722-8.918-13.377-17.579-26.645-20.804-42.763-4.377-21.885-5.35-51.412 0-72.813 1.156-4.623 3.467-9.246 3.467-10.402 1.156-2.312-6.935-2.312-128.289-2.312s-129.445 0-128.289 2.312c0 1.156 2.312 4.623 3.467 9.246 3.273 13.090 4.623 24.792 4.623 42.763 0 18.845-4.748 27.084-8.090 40.451-13.089 52.358-59.806 82.852-112.108 95.928-4.623 1.156-16.181 1.156-25.427 1.156-23.069 0-29.541-0.721-45.074-6.935-53.782-21.512-97.084-60.712-97.084-136.379 0-50.587 17.244-78.499 42.763-104.018 10.755-10.755 25.63-21.809 40.451-27.738l11.558-4.623v-585.968h-25.427c-39.088 0-53.538-4.215-65.878-28.894-3.467-6.935-3.467-8.090-3.467-19.648 0-16.782 4.377-25.18 12.713-33.517 5.506-5.506 16.279-13.869 24.271-13.869 2.312 0 28.894-1.156 57.788-1.156zM520.090 243.865c39.507 0 69.345 33.43 69.345 72.813 0 40.767-31.286 71.657-71.657 71.657-41.54 0-72.813-30.554-72.813-71.657 0-43.722 31.391-72.813 75.124-72.813zM782.447 243.865c17.828 0 28.113 9.621 36.984 18.492 7.143 7.143 10.402 13.548 10.402 28.894 0 11.558-1.156 12.713-4.623 20.804s-10.402 15.025-153.716 158.339-150.248 150.248-158.339 153.716-9.246 4.623-20.804 4.623c-15.432 0-21.703-3.211-28.894-10.402-9.903-9.903-18.492-20.36-18.492-40.451 0-5.779 2.312-11.558 4.623-16.181 9.085-18.172 301.464-308.743 309.743-312.054 6.895-4.598 13.233-5.779 23.115-5.779zM518.935 292.406c-12.849 0-25.427 8.962-25.427 21.959 0 12.849 8.962 25.427 21.959 25.427 12.849 0 25.427-8.962 25.427-21.959 0-12.849-8.962-25.427-21.959-25.427zM761.643 485.418c39.244 0 68.19 31.091 68.19 70.501 0 26.76-11.418 46.908-27.738 57.788-11.976 7.984-24.818 15.025-45.074 15.025-44.231 0-71.657-32.849-71.657-77.436 0-10.64 4.922-19.092 9.246-27.738 12.007-24.014 31.437-38.14 67.034-38.14zM781.291 555.919c0-11.759-11.274-23.115-23.115-23.115-13.7 0-24.271 11.924-24.271 25.427 0 11.148 12.052 21.959 23.115 21.959 15.915 0 24.271-8.291 24.271-24.271zM347.883 1007.819c0-23.043-24.307-41.607-47.386-41.607-21.917 0-35.086 12.386-42.763 27.738-2.312 3.467-4.623 10.402-4.623 13.869v13.869c0 22.49 23.464 39.296 47.386 39.296 16.782 0 25.18-4.377 33.517-12.713 6.241-6.241 13.869-16.473 13.869-26.582v-13.869zM829.833 966.212c-29.312 0-47.386 20.792-47.386 50.853 0 26.201 22.363 45.074 48.542 45.074 27.092 0 40.789-18.685 46.23-40.451 5.752-28.759-13.237-46.019-34.673-53.165-3.467-1.156-10.402-2.312-12.713-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart-discount"],"defaultCode":61147,"grid":24},"attrs":[],"properties":{"id":1223,"order":31,"ligatures":"","prevSize":24,"code":61147,"name":"shopping-cart-discount"},"setIdx":0,"setId":2,"iconIdx":1224},{"icon":{"paths":["M250.799 195.323c79.488 0 98.239 0 98.239 72.813v26.582h2.312c0.51 0 244.276 18.244 245.020 18.492 21.601 7.2 41.607 19.058 41.607 47.386 0 28.909-17.295 40.052-39.296 47.386-16.464 3.293-231.58-16.181-245.020-16.181h-4.623v285.472h535.115l1.156-6.935c0-23.97 27.536-44.915 54.321-40.451 20.002 5 28.385 13.105 38.14 27.738 2.312 5.779 3.467 9.246 3.467 17.336s0 17.336-3.467 36.984c-6.11 42.773-11.335 50.008-45.074 61.255-4.623 1.156-128.289 1.156-295.874 1.156h-287.783v94.772h248.488c225.372 0 249.643 1.156 257.734 2.312l18.492 4.623c23.896 5.974 45.979 24.020 61.255 39.296 23.353 23.353 39.296 54.022 39.296 99.395 0 54.050-26.158 91.854-57.788 115.576-23.21 17.408-45.878 27.738-86.682 27.738-71.274 0-109.036-40.087-132.912-87.837-10.738-21.476-14.068-61.617-6.935-90.149 1.156-4.623 2.312-10.402 2.312-11.558l1.156-2.312h-256.578l3.467 12.713c2.312 10.402 4.623 17.336 4.623 30.050 0 79.992-42.682 120.166-100.551 143.314-14.523 5.809-23.805 5.779-43.919 5.779-21.146 0-32.648-1.040-47.386-6.935-44.114-17.646-72.236-47.677-90.149-92.46-5.706-14.264-6.935-29.238-6.935-49.698 0-19.301 4.705-28.069 8.090-41.607 5.486-21.945 19.865-43.861 35.828-56.632 12.852-10.282 24.539-21.373 40.451-27.738l11.558-4.623v-585.968h-26.582c-19.648 0-27.738-1.156-33.517-2.312-19.848-6.617-34.673-19.202-34.673-46.23 0-27.773 13.881-39.299 34.673-46.23 4.623-1.156 16.181-2.312 58.944-2.312zM877.219 195.323c26.94 0 41.725 18.845 48.542 39.296 1.156 3.467 1.156 23.115 1.156 55.476v49.698h49.698c48.299 0 48.949-0.635 68.19 5.779 15.407 5.135 29.867 28.651 25.427 50.853-5.312 21.246-18.344 32.697-38.14 39.296-3.467 1.156-23.115 1.156-55.476 1.156h-49.698v49.698c0 48.299 0.635 48.949-5.779 68.19-6.143 18.43-41.607 36.214-64.722 20.804-29.475-19.65-26.582-28.168-26.582-88.993v-49.698h-49.698c-32.361 0-52.009 0-55.476-1.156-20.947-6.982-32.521-16.816-38.14-39.296-6.119-30.593 15.545-47.944 38.14-55.476 3.467-1.156 23.115-1.156 55.476-1.156h49.698v-49.698c0-48.299-0.635-48.949 5.779-68.19 4.833-14.498 23.108-26.582 41.607-26.582zM300.497 1060.984c29.414 0 46.23-17.882 46.23-47.386 0-27.962-16.031-39.246-36.984-46.23-3.467-1.156-8.090-1.156-10.402-1.156-26.786 0-45.074 19.511-45.074 47.386 0 29.525 16.837 47.386 46.23 47.386zM828.677 966.212c-10.789 0-28.626 7.688-33.517 15.025-4.838 7.258-12.713 18.527-12.713 30.050 0 31.571 19.347 50.853 50.853 50.853 17.133 0 33.385-13.603 39.296-25.427 15.945-23.917-2.494-58.62-20.804-64.722-6.711-2.238-14.474-5.779-23.115-5.779z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shopping-cart-plus"],"defaultCode":61149,"grid":24},"attrs":[],"properties":{"id":1225,"order":30,"ligatures":"","prevSize":24,"code":61149,"name":"shopping-cart-plus"},"setIdx":0,"setId":2,"iconIdx":1226},{"icon":{"paths":["M268.135 580.19c34.648 0 58.59 14.79 79.747 28.894 0 0 1.156-70.501 1.156-157.183v-158.339c6.019-16.051 10.174-31.286 19.648-43.919 16.257-21.677 37.909-42.127 68.19-49.698 4.623-1.156 12.713-3.467 16.181-3.467s10.402-1.156 13.869-1.156c67.854 0 110.037 43.965 121.354 100.551 1.156 8.090 1.156 23.115 1.156 76.28v67.034c7.941-1.588 14.902-2.312 28.894-2.312 38.614 0 69.371 18.524 86.682 41.607 5.008 6.678 6.624 12.713 11.558 12.713 6.567 0 24.035-6.935 33.517-6.935 56.237 0 84.919 24.38 109.797 55.476 11.356-3.785 22.787-5.779 41.607-5.779 52.603 0 77.721 21.57 100.551 52.009 7.056 9.408 14.336 26.137 17.336 38.14 2.312 9.246 3.467 11.558 3.467 134.068 0 119.258 3.534 119.8-4.623 168.74-4.806 28.833-12.764 57.89-24.271 80.903-17.804 35.61-37.805 67.854-64.722 94.772-13.796 13.796-29.592 29.359-46.23 40.451-23.601 15.734-52.613 35.177-83.214 43.919-8.090 2.312-19.648 6.935-27.738 9.246-18.319 5.236-29.753 6.562-48.542 9.246-11.558 1.156-30.050 1.156-80.903 1.156-83.105 0-74.477-0.102-125.977-10.402-35.326-7.065-62.822-22.744-91.305-36.984-25.659-12.829-49.587-36.873-69.345-56.632-25.942-25.942-41.886-53.768-63.567-87.837-28.437-44.687-88.816-155.888-117.887-205.725-16.181-27.738-28.894-53.165-31.205-57.788-7.192-14.383-9.246-24.339-9.246-47.386 0-43.006 11.551-62.404 33.517-84.37 23.539-23.539 53.047-39.296 100.551-39.296zM688.831 218.438c14.998 0 41.969 10.908 54.321 15.025 25.929 8.644 59.392 21.605 85.526 34.673 13.869 6.935 32.361 18.492 42.763 24.271 23.725 13.181 32.746 17.719 39.296 43.919 6.166 30.829-18.579 55.476-48.542 55.476-15.852 0-23.514-5.883-38.14-15.025-40.466-25.291-89.883-48.764-139.847-61.255-23.336-5.834-32.394-10.468-41.607-28.894-3.467-6.935-4.623-8.090-4.623-20.804 0-19.49 4.259-23.907 13.869-33.517 6.285-6.285 14.187-13.869 24.271-13.869h12.713zM251.955 251.955c27.928 0 48.542 19.96 48.542 47.386 0 18.601-9.282 28.93-18.492 38.14-2.312 2.312-13.869 8.090-25.427 13.869s-30.050 15.025-38.14 19.648c-20.418 11.667-53.18 39.299-76.28 45.074-39.471 7.894-77.815-45.851-42.763-80.903 11.233-11.233 47.3-33.318 62.411-42.763 15.152-9.47 58.664-32.654 75.124-38.14 3.467-1.156 10.402-2.312 15.025-2.312zM468.081 292.406c-7.85 0-18.083 7.273-20.804 12.713-2.312 3.467-2.312 21.959-2.312 218.438l-1.156 214.971c-9.523 19.043-24.497 40.638-54.321 34.673-4.623-1.156-10.402-3.467-13.869-4.623-16.001-6.401-82.756-81.83-94.772-87.837-3.467-1.156-9.246-3.467-12.713-3.467-15.852-5.284-38.14 8.2-38.14 24.271 0 5.779 1.156 8.090 2.312 11.558 16.979 33.96 73.474 132.215 94.772 169.896 26.707 47.252 41.34 75.443 65.878 109.797 5.779 8.090 12.713 19.648 16.181 24.271 15.877 21.169 35.089 38.031 57.788 53.165 20.564 13.71 47.247 28.173 73.968 33.517l23.115 4.623c9.246 1.156 23.115 2.312 69.345 2.312 84.405 0 102.688-0.915 157.183-24.271 29.712-12.734 52.911-34.418 73.968-55.476 5.779-5.779 12.713-16.181 17.336-21.959 24.074-30.092 31.899-66.34 42.763-109.797 1.156-6.935 2.312-42.763 2.312-125.977 0-87.837 0-120.199-1.156-124.822-3.118-12.475-12.275-18.492-27.738-18.492-6.992 0-13.595 6.387-16.181 11.558-2.312 4.623-3.467 6.935-3.467 26.582-1.884 33.927-7.007 38.958-26.582 52.009-27.675 18.45-60.243-7.366-67.034-27.738-2.312-5.779-2.312-9.246-2.312-49.698 0-41.607-1.156-43.919-3.467-48.542-3.663-7.325-10.955-12.713-21.959-12.713-7.85 0-18.083 7.273-20.804 12.713-1.156 3.467-2.312 10.402-2.312 49.698l-1.156 45.074c-3.413 7.963-6.985 16.231-12.713 21.959-15.406 15.406-48.091 20.099-65.878 2.312-5.863-5.863-10.814-12.798-13.869-21.959-1.156-4.623-2.312-15.025-2.312-72.813v-68.19c-5.138-6.424-12.442-17.336-23.115-17.336-10.639 0-19.461 5.404-23.115 12.713-2.312 3.467-2.312 11.558-2.312 73.968v69.345c-6.507 11.387-13.611 26.882-26.582 31.205l-13.869 4.623c-31.24 6.248-46.958-16.847-55.476-38.14v-188.388l-1.156-188.388c-4.626-9.253-10.332-17.336-24.271-17.336z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["hand-move"],"defaultCode":61264,"grid":24},"attrs":[],"properties":{"id":1339,"order":57,"ligatures":"","prevSize":24,"code":61264,"name":"hand-move"},"setIdx":0,"setId":2,"iconIdx":1340},{"icon":{"paths":["M598.682 196.479c62.722 0 103.838 12.661 152.56 26.582 31.029 8.865 64.95 27.12 90.149 43.919 6.935 4.623 19.648 11.558 27.738 17.336 32.502 23.216 63.908 53.754 90.149 84.37 52.246 60.955 86.199 133.964 105.174 228.84 6.099 30.499 5.779 42.097 5.779 79.747 0 120.313-37.155 202.513-85.526 275.070-25.216 37.824-58.339 72.328-93.616 100.551-25.091 20.073-54.055 36.502-83.214 53.165-48.94 27.966-106.484 41.133-174.519 50.853-8.090 1.156-26.582 1.156-43.919 1.156-61.871 0-102.828-9.566-150.248-23.115-58.071-16.591-106.434-49.607-150.248-80.903-18.727-13.377-37.065-33.598-53.165-49.698-15.518-15.518-30.703-36.231-42.763-54.321-47.877-71.815-84.37-152.949-84.37-272.758 0-69.741 11.769-115.054 28.894-166.429 2.312-6.935 5.779-18.492 9.246-25.427l15.025-30.050c29.731-59.461 70.479-106.311 119.043-147.937 60.214-51.611 138.896-92.489 235.774-106.33 13.927-1.99 35.767-4.623 49.698-4.623h32.361zM587.124 292.406c-11.558 0-27.738 1.156-33.517 1.156-38.412 0-75.645 15.198-106.33 25.427-31.705 10.568-69.436 36.186-93.616 54.321-35.475 26.606-66.246 62.962-91.305 100.551-10.346 15.521-22.74 39.323-28.894 57.788-2.312 6.935-8.090 18.492-10.402 26.582-10.39 36.365-18.492 71.799-18.492 119.043 0 47.294 8.049 82.491 18.492 119.043 2.312 8.090 8.090 19.648 10.402 26.582 13.111 39.333 37.776 73.532 61.255 101.707 8.056-8.056 15.856-20.479 27.738-32.361 28.306-28.306 57.030-42.922 97.084-58.944 13.823-5.529 27.188-6.458 43.919-9.246 11.558-1.156 32.361-2.312 125.977-2.312 94.772 0 114.42 1.156 125.977 2.312 72.146 12.023 125.494 44.046 161.806 92.46 3.467 4.623 6.935 8.090 6.935 8.090l9.246-11.558c14.118-17.647 30.124-41.756 41.607-64.722 5.779-11.558 12.713-28.894 16.181-36.984s5.779-21.959 8.090-28.894c5.337-16.012 8.554-37.455 11.558-55.476 1.156-6.935 3.467-24.271 3.467-38.14 0-54.205-4.785-92.122-19.648-131.756-16.701-44.535-33.097-80.667-60.099-114.42-28.398-35.498-62.885-66.578-101.707-92.46-15.521-10.346-39.323-22.74-57.788-28.894-6.935-2.312-18.492-8.090-26.582-10.402-36.617-10.462-73.103-18.492-121.354-18.492zM588.28 388.334c69.793 0 111.537 30.634 146.781 65.878 29.902 29.902 47.386 77.225 47.386 135.223 0 24.897-8.353 43.549-15.025 63.567-15.083 45.249-48.276 77.881-88.993 98.239-27.442 13.721-53.043 21.959-95.928 21.959-24.897 0-41.797-3.542-58.944-10.402-43.311-17.325-77.765-46.394-100.551-84.37-13.952-23.255-26.582-54.251-26.582-88.993 0-27.1 3.709-52.036 11.558-71.657 26.573-66.434 66.983-106.029 142.158-124.822 4.623-1.156 11.558-3.467 16.181-3.467s13.869-1.156 21.959-1.156zM596.37 485.418h-16.181c-13.023 0-19.836 5.071-28.894 8.090-15.328 5.108-25.338 16.092-35.828 26.582-14.41 14.41-20.804 33.953-20.804 62.411 0 21.299 3.441 34.054 11.558 46.23l9.246 13.869c14.803 22.204 43.805 34.673 79.747 34.673 34.274 0 64.618-22.905 76.28-46.23 7.955-15.91 13.869-31.136 13.869-55.476 0-22.886-10.274-39.102-19.648-53.165-2.312-3.467-6.935-9.246-10.402-11.558-16.393-10.929-31.456-25.427-58.944-25.427zM587.124 917.67c-52.009 0-99.395 1.156-106.33 1.156-27.262 0-48.747 12.144-67.034 23.115-17.9 11.934-36.196 31.635-46.23 49.698 29.1 23.279 77.262 42.32 116.731 55.476 16.012 5.337 37.455 8.554 55.476 11.558 6.935 1.156 24.271 3.467 38.14 3.467 40.839 0 70.001-1.343 101.707-10.402 8.090-2.312 20.804-5.779 28.894-8.090 34.363-9.818 65.73-28.343 93.616-45.074 5.779-4.623 8.090-6.935 8.090-8.090s-2.312-4.623-5.779-9.246-9.246-13.869-16.181-20.804c-23.941-23.941-50.865-35.664-92.46-41.607-8.090-1.156-52.009-1.156-108.641-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["user-circle"],"defaultCode":61288,"grid":24},"attrs":[],"properties":{"id":1363,"order":13,"ligatures":"","prevSize":24,"code":61288,"name":"user-circle"},"setIdx":0,"setId":2,"iconIdx":1364},{"icon":{"paths":["M545.517 195.323c77.89 0 58.514 0.759 92.46 9.246 22.716 5.679 41.894 22.246 56.632 36.984 10.307 10.307 20.876 25.030 26.582 39.296l4.623 11.558h35.828c26.582 0 38.14 1.156 46.23 2.312 63.241 12.647 101.549 53.692 116.731 114.42 2.312 8.090 2.312 21.959 2.312 138.691 0 94.772 0 132.912-1.156 137.535-4.697 14.092-11.373 29.987-25.427 34.673-12.013 4.005-31.217 8.467-43.919 0-12.26-8.174-20.304-18.152-25.427-33.517-1.156-4.623-1.156-42.763-1.156-131.756 0-124.822 0-125.977-2.312-132.912-5.818-17.454-18.52-26.592-35.828-32.361-3.467-1.156-18.492-1.156-35.828-1.156h-30.050c-16.229 48.686-57.984 83.947-112.108 94.772-8.090 1.156-21.959 1.156-72.813 1.156-76.484 0-59.723 1.539-93.616-6.935-34.584-8.645-62.173-36.202-78.591-63.567-5.765-9.608-8.639-15.211-11.558-25.427h-30.050c-49.226 0-64.611 5.337-73.968 42.763 0 4.623-1.156 135.223-1.156 294.718 0 182.609 0 290.095 1.156 294.718 5.617 22.469 15.599 31.782 35.828 40.451l147.937 1.156c147.937 0 149.093 1.156 154.871 3.467 13.972 4.658 20.122 15.155 27.738 26.582 2.312 5.779 2.312 8.090 2.312 18.492 0 29.112-16.738 40.252-38.14 47.386-4.623 1.156-55.476 1.156-154.871 1.156-136.379 0-147.937 0-156.027-2.312-62.232-15.556-98.739-54.004-114.42-116.731-1.156-6.935-1.156-56.632-1.156-314.366 0-292.406-1.156-308.587 1.156-317.833 7.757-38.789 30.625-68.622 57.788-88.993 28.426-21.319 51.755-26.582 105.174-26.582h34.673l5.779-11.558c15.271-30.542 35.668-56.563 68.19-70.501 14.155-8.088 30.685-9.983 46.23-13.869 4.623-1.156 34.673-1.156 69.345-1.156zM543.205 292.406c-53.165 0-58.944 0-64.722 2.312-25.017 8.34-39.735 34.509-28.894 67.034 4.195 12.59 18.319 19.975 31.205 24.271 5.779 1.156 17.336 2.312 60.099 2.312 44.759 0 52.548 0.206 70.501-5.779 14.976-4.993 24.271-21.621 24.271-42.763 0-29.28-13.711-37.247-34.673-46.23zM349.038 626.42c0-25.23 18.805-37.804 36.984-45.074h108.641l108.641 1.156c11.529 4.611 23.33 13.142 28.894 24.271 12.873 19.309 1.099 46.287-9.246 56.632-5.771 5.771-14.731 9.74-21.959 13.869h-105.174c-102.862 0-106.33 0-113.264-2.312-20.578-5.144-33.517-22.564-33.517-48.542zM468.081 773.201c47.386 0 78.591 0 82.059 1.156 20.253 6.752 39.296 19.74 39.296 47.386 0 28.663-18.128 40.33-39.296 47.386-3.467 1.156-35.828 1.156-82.059 1.156-82.011 0-69.415 1.518-94.772-6.935-8.26-2.754-16.174-15.014-20.804-21.959-3.467-5.779-3.467-6.935-3.467-19.648 0-27.454 15.88-39.581 35.828-46.23 4.623-1.156 20.804-2.312 83.214-2.312zM886.465 1091.034c-25.514 11.34-41.835 18.492-79.747 18.492-28.116 0-34.807-1.586-54.321-8.090-29.597-9.866-55.97-24.93-72.813-47.386-20.633-27.51-41.607-57.568-41.607-106.33 0-58.954 18.698-88.383 45.074-121.354 13.975-17.469 29.91-23.493 48.542-34.673 14.059-8.436 40.462-17.336 60.099-17.336h19.648c25.436 0 45.998 5.663 62.411 13.869 20.9 10.449 41.153 20.237 55.476 38.14 22.537 28.172 45.074 58.756 45.074 108.641 0 39.501-8.085 60.666-19.648 86.682l54.321 54.321c45.074 45.074 54.321 55.476 56.632 61.255 3.985 11.956 8.717 30.845 0 43.919-4.792 9.586-14.725 16.367-23.115 21.959-5.779 3.467-6.935 3.467-19.648 3.467s-12.713 0-19.648-3.467c-5.779-2.312-15.025-10.402-62.411-57.788zM809.029 870.284c-45.583 0-75.124 29.664-75.124 75.124 0 29.434 18.981 49.94 39.296 60.099 10.514 5.256 17.215 8.090 33.517 8.090 37.739 0 56.025-21.019 67.034-48.542 3.467-9.246 3.467-10.402 3.467-21.959 0-24.309-6.178-37.383-18.492-49.698-12.382-12.382-25.361-23.115-49.698-23.115z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["report-search"],"defaultCode":61316,"grid":24},"attrs":[],"properties":{"id":1391,"order":82,"ligatures":"","prevSize":24,"code":61316,"name":"report-search"},"setIdx":0,"setId":2,"iconIdx":1392},{"icon":{"paths":["M156.027 433.409c0-23.832 19.807-35.919 35.828-45.074h204.569v-55.476c0-48.542 1.156-56.632 2.312-62.411 12.421-37.263 32.771-61.647 72.813-71.657 4.623-1.156 10.402-2.312 11.558-2.312s52.009-1.156 110.953-1.156c98.239 0 107.485 0 113.264 2.312 35.47 11.823 62.144 32.446 71.657 70.501 2.312 8.090 3.467 12.713 3.467 64.722v55.476h204.569c16.022 9.156 35.828 21.247 35.828 45.074 0 28.576-18.182 50.853-46.23 50.853-3.467 0-5.779 0-5.779 1.156 0 22.141-46.654 556.886-48.542 566.321-6.973 34.862-33.921 64.607-60.099 82.059-19.977 13.318-37.486 18.824-64.722 24.271-6.935 1.156-80.903 1.156-208.036 1.156-154.66 0-192.35 2.907-229.995-4.623-34.862-6.973-64.607-33.921-82.059-60.099-8.918-13.377-17.579-26.645-20.804-42.763-8.111-40.555-12.689-126.591-26.582-301.652-11.558-145.625-21.959-263.512-21.959-264.668s-2.312-1.156-5.779-1.156c-28.046 0-46.23-22.283-46.23-50.853zM685.363 292.406h-191.856v95.928h191.856v-95.928zM589.436 484.262c-268.135 0-284.316 0-284.316 2.312 0 5.326 42.769 533.978 46.23 544.361 6.142 12.286 16.154 25.131 31.205 28.894 6.935 2.312 11.558 2.312 206.88 2.312 196.479 0 199.946 0 206.88-2.312 13.263-3.317 26.005-15.603 30.050-27.738 4.741-11.851 47.386-529.769 47.386-545.517 0-2.312-16.181-2.312-284.316-2.312zM493.508 628.731c-2.312 0-8.090 1.156-10.402 1.156-14.551 0-27.974 16.651-33.517 27.738-3.467 6.935-3.467 8.090-3.467 19.648s0 11.558 3.467 19.648c3.467 6.935 6.935 11.558 38.14 42.763l33.517 34.673-33.517 33.517c-30.050 30.050-34.673 33.517-38.14 41.607-3.467 6.935-4.623 9.246-4.623 17.336 0 31.722 18.565 50.853 50.853 50.853 8.090 0 10.402-1.156 17.336-4.623s12.713-6.935 42.763-36.984l33.517-33.517 33.517 33.517c30.050 30.050 35.828 33.517 42.763 36.984s9.246 4.623 17.336 4.623c32.205 0 50.853-18.885 50.853-50.853 0-8.090-1.156-10.402-4.623-17.336-3.467-8.090-8.090-11.558-38.14-41.607l-33.517-33.517 33.517-34.673c31.205-31.205 34.673-35.828 38.14-42.763 3.467-8.090 3.467-8.090 3.467-19.648 0-37.747-33.574-55.457-68.19-43.919-5.779 2.312-11.558 9.246-40.451 38.14l-34.673 33.517-34.673-33.517c-30.423-30.423-30.588-34.852-50.853-41.607-3.467-1.156-8.090-1.156-10.402-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["trash-x"],"defaultCode":61320,"grid":24},"attrs":[],"properties":{"id":1395,"order":28,"ligatures":"","prevSize":24,"code":61320,"name":"trash-x"},"setIdx":0,"setId":2,"iconIdx":1396},{"icon":{"paths":["M777.824 590.591c0 20.357 4.623 37.889 4.623 63.567 0 34.207 0.949 41.814-15.025 57.788-10.655 10.655-37.308 20.203-55.476 8.090-7.693-5.129-15.672-13.106-20.804-20.804-7.771-11.656-5.779-21.907-5.779-46.23 0-13.869-1.156-35.828-2.312-47.386s-3.467-21.959-3.467-23.115-19.648-1.156-90.149-1.156h-90.149v4.623c0 2.312-1.156 8.090-2.312 15.025-3.705 22.233-3.467 48.093-3.467 76.28 0 28.206-0.248 53.984 3.467 76.28 1.156 6.935 2.312 12.713 2.312 15.025v4.623h47.386c45.571 0 45.934-0.484 64.722 5.779 18.238 6.079 36.364 41.384 20.804 64.722-17.306 25.958-27.182 26.582-77.436 26.582-35.828 0-38.14 0-36.984 2.312 0 1.156 3.467 8.090 5.779 17.336 5.894 23.579 16.393 49.492 24.271 70.501 8.787 23.432 22.468 55.467 34.673 77.436 5.779 10.402 11.558 19.648 12.713 21.959s2.312 4.623 5.779 4.623c25.126 0 48.442 42.333 31.205 68.19-11.469 17.202-23.068 26.582-52.009 26.582-51.090 0-99.122-12.965-138.691-24.271-72.518-20.719-128.986-61.026-179.142-104.018-24.88-21.326-46.881-47.207-64.722-73.968-11.933-17.9-25.481-35.937-35.828-56.632-32.122-64.245-54.321-139.696-54.321-236.93 0-34.932 4.685-56.911 11.558-87.837 26.225-118.017 83.88-201.342 161.806-268.135 26.519-22.73 52.957-41.503 85.526-57.788 47.444-23.722 99.647-40.653 162.962-49.698 8.090-1.156 20.804-3.467 25.427-3.467s20.804-1.156 34.673-1.156c30.995 0 35.535 1.114 60.099 4.623 139.553 19.936 235.83 82.508 309.743 168.74 56.579 66.009 94.98 148.442 108.641 257.734 1.156 9.246 3.467 24.271 3.467 34.673 0 28.037-1.306 37.134-15.025 50.853-10.655 10.655-37.308 20.203-55.476 8.090-15.984-10.656-26.582-23.692-26.582-50.853 0-30.539-6.016-62.902-11.558-87.837h-184.921v9.246zM591.747 301.652c-28.034 49.060-52.804 101.422-68.19 162.962-2.312 9.246-5.779 16.181-5.779 17.336-1.156 2.312 3.467 2.312 71.657 2.312 39.296 0 72.813-1.156 72.813-1.156l-4.623-16.181c-16.932-59.263-38.394-117.171-65.878-165.273zM477.327 308.587c-45.306 13.592-89.481 39.083-123.666 64.722-39.093 29.322-70.939 67.965-97.084 109.797 0 0 36.984 1.156 80.903 1.156h80.903l1.156-3.467c0-2.312 2.312-10.402 4.623-18.492 10.231-35.806 21.988-78.66 35.828-110.953 4.722-11.018 14.734-32.99 18.492-42.763h-1.156zM703.856 309.743c21.575 43.149 41.558 103.793 53.165 156.027l4.623 18.492h80.903c43.919 0 79.747-1.156 79.747-1.156-28.687-44.625-59.012-82.767-101.707-113.264-25.241-18.029-52.758-36.359-83.214-48.542-8.456-3.383-25.796-8.469-33.517-11.558zM402.203 769.734c0-18.521-5.779-50.105-5.779-73.968 0-27.951-0.425-71.418 3.467-94.772 1.156-6.935 2.312-13.869 2.312-16.181v-3.467h-186.077c-6.345 28.547-11.558 59.718-11.558 95.928 0 36.177 5.181 67.234 11.558 95.928h186.077v-3.467zM880.686 725.815c9.246 0 12.713 1.156 18.492 3.467 8.312 3.325 160.009 156.886 166.429 167.585 12.658 18.988 1.017 45.213-9.246 55.476-7.944 7.944-17.828 13.869-33.517 13.869-11.558 0-11.558-1.156-19.648-4.623-6.935-3.467-12.713-6.935-42.763-36.984l-33.517-33.517v110.953c0 78.591 0 113.264-1.156 117.887-6.982 20.947-16.816 32.521-39.296 38.14-30.347 6.069-48.010-15.739-55.476-38.14-1.156-4.623-1.156-39.296-1.156-117.887v-110.953l-33.517 33.517c-30.050 30.050-35.828 33.517-42.763 36.984-8.090 3.467-8.090 4.623-19.648 4.623-36.709 0-55.084-34.693-43.919-68.19 4.014-10.032 53.503-55.815 161.806-164.117 6.68-6.68 14.63-8.090 28.894-8.090zM337.481 870.284c-43.919 0-80.903 1.156-80.903 1.156 31.991 51.188 70.94 96.058 122.51 128.289 17.327 10.829 36.94 23.871 55.476 30.050 9.992 3.331 35.181 13.060 43.919 16.181-13.867-34.666-31.929-76.764-43.919-116.731-3.467-11.558-8.090-28.894-10.402-36.984s-4.623-16.181-4.623-18.492l-1.156-3.467h-80.903z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["world-upload"],"defaultCode":61323,"grid":24},"attrs":[],"properties":{"id":1398,"order":86,"ligatures":"","prevSize":24,"code":61323,"name":"world-upload"},"setIdx":0,"setId":2,"iconIdx":1399},{"icon":{"paths":["M591.747 195.323c11.428 0 20.264 5.418 27.738 10.402 3.467 2.312 12.713 10.402 20.804 17.336 27.324 23.421 57.349 41.966 91.305 58.944 70.529 35.266 149.068 58.944 255.422 58.944 28.356 0 26.637 0.036 40.451 9.246 18.558 12.372 22.193 42.541 28.894 69.345 11.622 46.488 12.713 68.369 12.713 130.6 0 138.999-36.146 232.864-86.682 321.3-33.296 58.267-79.576 112.351-130.6 154.871-6.935 5.779-19.648 17.336-28.894 24.271-30.614 22.96-58.069 38.682-92.46 57.788-37.037 20.577-70.69 33.853-115.576 45.074-13.869 3.467-17.336 4.623-25.427 4.623-31.181 0-73.186-19.809-97.084-30.050-86.934-37.257-162.074-87.766-219.594-154.871-6.935-8.090-18.492-20.804-26.582-30.050s-18.492-25.427-25.427-34.673c-30.957-41.277-59.556-96.607-77.436-150.248-21.509-64.522-33.517-118.056-33.517-205.725 0-73.132 6.595-109.595 20.804-166.429 5.039-20.158 7.163-27.121 21.959-36.984 15.781-10.521 10.903-9.246 52.009-9.246 50.735 0 75.013-5.182 113.264-11.558 57.67-9.611 106.861-34.939 152.56-57.788 18.969-9.485 36.325-22.975 54.321-35.828 8.090-5.779 19.648-15.025 25.427-20.804 12.119-12.119 21.503-18.492 41.607-18.492zM204.569 566.321c0 22.479 3.537 42.226 5.779 62.411h330.546v-287.783c-22.045 13.226-58.094 33.153-83.214 43.919-36.837 15.788-75.934 26.154-117.887 38.14-19.368 5.534-48.171 7.755-69.345 10.402-9.246 1.156-24.271 3.467-34.673 3.467h-18.492c-7.395 36.977-12.713 83.662-12.713 129.445zM639.133 340.948s-1.156 63.567-1.156 143.314v144.47h330.546v-5.779c0-3.467 1.156-10.402 2.312-15.025s1.156-20.804 2.312-33.517c2.888-40.428-2.434-85.105-8.090-119.043-1.156-6.935-3.467-15.025-3.467-16.181 0-2.312-1.156-1.156-18.492-2.312-71.487 0-133.791-20.711-189.544-39.296-26.374-8.791-43.14-16.776-67.034-30.050-10.402-5.779-26.582-12.713-33.517-17.336zM387.178 725.815c-145.625 0-153.716 0-152.56 2.312 0 1.156 2.312 4.623 3.467 8.090 7.809 23.427 26.407 56.28 36.984 77.436 16.65 33.301 48.646 70.239 71.657 97.084 36.281 42.328 80.323 73.389 129.445 102.862 15.108 9.065 27.703 14.515 45.074 21.959 8.090 3.467 16.181 6.935 17.336 6.935l2.312 1.156v-317.833h-153.716zM791.693 725.815h-153.716v317.833c45.939-15.313 86.378-42.382 122.51-68.19 50.007-35.719 87.517-78.959 123.666-130.6 20.667-29.525 33.903-51.817 47.386-85.526 2.312-5.779 5.779-16.181 8.090-20.804s4.623-9.246 4.623-10.402c1.156-2.312-6.935-2.312-152.56-2.312z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["shield-checkered"],"defaultCode":61338,"grid":24},"attrs":[],"properties":{"id":1413,"order":84,"ligatures":"","prevSize":24,"code":61338,"name":"shield-checkered"},"setIdx":0,"setId":2,"iconIdx":1414},{"icon":{"paths":["M372.153 339.792c65.073 0 77.21-1.501 101.707 4.623 31.457 7.865 58.184 36.654 64.722 69.345l2.312 9.246 1.156 145.625c0 128.586 3.103 150.852-4.623 212.659-8.027 64.22-33.884 111.32-70.501 147.937-6.935 6.935-16.181 16.181-23.115 20.804s-16.181 13.869-21.959 17.336c-29.753 17.851-64.517 36.018-104.018 43.919-5.779 1.156-15.025 3.467-17.336 3.467-26.224 0-41.946-19.844-47.386-41.607-4.26-17.040 5.393-31.975 13.869-40.451 13.109-13.109 29.313-15.806 50.853-21.959 40.468-11.562 74.942-37.866 95.928-69.345 23.901-35.852 31.205-63.378 31.205-125.977v-38.14h-76.28c-47.386 0-79.747 0-84.37-1.156-25.866-6.466-48.085-18.383-61.255-38.14l-9.246-13.869c-6.338-9.508-6.839-21.381-9.246-35.828-1.156-8.090-1.156-39.296-1.156-88.993 0-72.813 1.156-76.28 3.467-85.526 7.813-39.071 40.008-63.456 77.436-72.813 5.779-1.156 28.894-1.156 87.837-1.156zM804.406 339.792c63.778 0 80.508-0.966 102.862 4.623 37.567 9.392 57.605 40.877 67.034 78.591l1.156 145.625c0 128.586 3.103 150.852-4.623 212.659-13.927 111.42-79.232 169.637-162.962 211.503-13.389 6.695-41.534 15.473-56.632 18.492-5.779 1.156-15.025 3.467-17.336 3.467-26.224 0-41.946-19.844-47.386-41.607-4.26-17.040 5.393-31.975 13.869-40.451 13.109-13.109 29.313-15.806 50.853-21.959 40.468-11.562 74.942-37.866 95.928-69.345 23.901-35.852 31.205-63.378 31.205-125.977v-38.14h-76.28c-47.386 0-79.747 0-84.37-1.156-25.866-6.466-48.085-18.383-61.255-38.14l-9.246-13.869c-6.338-9.508-6.839-21.381-9.246-35.828-1.156-8.090-1.156-39.296-1.156-88.993 0-72.813 1.156-76.28 3.467-85.526 7.837-39.188 39.92-63.434 77.436-72.813 5.779-1.156 27.738-1.156 86.682-1.156zM444.966 436.876h-144.47v143.314h144.47v-143.314zM806.718 436.876h-72.813v143.314h144.47v-143.314h-71.657z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["quote"],"defaultCode":61374,"grid":24},"attrs":[],"properties":{"id":1449,"order":204,"ligatures":"","prevSize":24,"code":61374,"name":"quote"},"setIdx":0,"setId":2,"iconIdx":1450},{"icon":{"paths":["M444.966 1097.968c-37.724 16.167-11.756 11.558-97.084 11.558h-63.567c-23.139-5.143-36.87-12.599-50.853-26.582-11.924-11.924-22.599-26.307-26.582-46.23-2.312-9.246-2.312-16.181-2.312-359.44 0-345.571 0-350.194 2.312-359.44 2.42-12.101 8.155-23.79 13.869-32.361 2.312-3.467 6.935-6.935 9.246-10.402 10.425-15.639 31.337-23.725 52.009-28.894 5.779-1.156 18.492-2.312 69.345-2.312 81.784 0 57-2.98 93.616 12.713 32.789-13.116 33.592-12.713 97.084-12.713 61.305 0 54.855-2.52 79.747 5.779 14.193 4.732 24.374 11.66 33.517 20.804 2.312 2.312 4.623 3.467 5.779 3.467 6.441 0 103.446-26.679 109.797-27.738 8.090-1.156 17.336-2.312 23.115-2.312 30.142 0 52.552 12.101 68.19 27.738 8.964 8.964 18.044 19.458 21.959 31.205 18.862 56.586 187.233 666.825 187.233 677.273 0 37.047-13.689 59.919-32.361 78.591-9.046 9.046-19.385 16.404-32.361 19.648-4.623 1.156-33.517 10.402-63.567 17.336-46.111 10.641-51.392 15.025-80.903 15.025-34.621 0-54.989-19.16-72.813-36.984-3.467-4.623-10.402-13.869-12.713-19.648-5.256-9.199-1.568-3.657-91.305-322.456v146.781c0 130.6-1.156 147.937-2.312 156.027-9.528 38.112-31.56 59.086-65.878 72.813l-11.558 2.312-58.944 1.156c-68.912 0-66.768 1.262-101.707-12.713zM396.424 339.792h-95.928v97.084h95.928v-97.084zM589.436 339.792h-95.928v481.95h95.928v-481.95zM825.21 447.278c0-1.041-28.894-105.174-28.894-105.174 0-1.156-1.156-2.312-2.312-2.312s-5.779 1.156-12.713 3.467c-6.288 2.095-94.772 18.687-94.772 24.271 0 0.022 28.732 107.522 28.894 107.485 2.538-0.581 109.797-25.49 109.797-27.738zM396.424 532.804h-95.928v481.95h95.928v-481.95zM918.826 785.914c-13.407-49.004-60.278-220.532-67.034-245.020-21.944 5.603-10.918 3.018-109.797 27.738 35.274 141.097 65.878 236.134 65.878 243.865 0 2.926 109.904-26.32 110.953-26.582zM974.302 988.172c-0.868-3.139-31.205-108.641-31.205-108.641-4.951 0-0.509 0.63-108.641 26.582 0.111 0.4 29.546 107.485 31.205 107.485 2.303 0 108.641-25.427 108.641-25.427zM540.894 917.67h-47.386v97.084h95.928v-97.084h-48.542z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["books"],"defaultCode":61426,"grid":24},"attrs":[],"properties":{"id":1500,"order":102,"ligatures":"","prevSize":24,"code":61426,"name":"dic"},"setIdx":0,"setId":2,"iconIdx":1501},{"icon":{"paths":["M1021.688 195.323c26.76 0 43.057 18.511 48.542 40.451 2.123 10.614-0.215 23.436-4.623 30.050-16.646 27.744-97.679 97.049-94.772 102.862 5.303 5.303 13.994 26.317 17.336 34.673 10.056 25.141 13.869 51.45 13.869 87.837 0 58.282-23.967 99.305-50.853 132.912-4.623 5.779-27.738 28.894-50.853 52.009-34.673 33.517-42.763 41.607-48.542 43.919l-13.869 4.623c-9.547 2.387-20.168-0.943-27.738-3.467-10.371-4.148-256.779-252.29-263.512-263.512-8.187-12.281-4.234-30.064 0-42.763 2.312-5.779 9.246-13.869 43.919-48.542 23.115-23.115 46.23-46.23 52.009-50.853 20.412-16.33 43.965-30.065 71.657-39.296 19.901-6.634 33.824-11.558 62.411-11.558 56.162 0 87.112 14.085 123.666 32.361l46.23-46.23c36.984-36.984 48.542-47.386 53.165-49.698 5.407-3.604 14.661-5.779 21.959-5.779zM783.603 360.596c-4.623 0-12.713 1.156-16.181 1.156-20.411 0-44.705 14.459-57.788 24.271-4.623 3.467-18.492 17.336-30.050 28.894l-21.959 21.959c59.968 58.966 116.453 115.085 172.65 171.491l0.714 0.717 23.115-24.271c12.713-12.713 25.427-26.582 28.894-31.205 11.523-15.363 23.115-38.011 23.115-63.567 0-36.952-9.897-71.707-32.361-86.682-8.632-5.756-13.218-16.132-21.959-21.959-16.475-10.984-41.099-20.804-68.19-20.804zM636.822 725.815c29.227 0 47.386 18.921 47.386 48.542 0 12.713 0 12.713-3.467 20.804-3.467 6.935-6.935 11.558-36.984 41.607l-33.517 33.517 9.246 10.402c12.228 12.228 21.83 22.611 17.336 45.074-1.156 4.623-3.467 10.402-4.623 13.869-2.312 5.779-9.246 13.869-43.919 48.542-37.096 37.096-44.259 48.746-72.813 65.878-30.87 18.522-63.661 35.828-112.108 35.828-47.062 0-80.090-6.447-109.797-24.271-5.779-3.467-11.558-5.779-12.713-6.935-5.813-2.907-75.118 78.126-102.862 94.772-10.337 6.892-33.11 7.205-43.919 0-15.106-10.070-38.543-38.113-20.804-64.722 16.646-27.744 97.679-97.049 94.772-102.862-5.303-5.303-13.994-26.317-17.336-34.673-9.92-24.801-13.869-50.874-13.869-86.682 0-59.421 23.566-99.957 50.853-134.068 4.623-5.779 27.738-28.894 50.853-52.009 34.673-33.517 42.763-41.607 48.542-43.919l13.869-4.623c22.416-4.483 33.112 5.374 45.074 17.336l10.402 9.246 33.517-32.361c27.692-26.065 31.387-33.029 48.542-41.607 3.467-1.156 9.246-1.156 16.181-1.156 26.659 0 46.23 21.22 46.23 48.542 0 12.713-1.156 12.713-4.623 20.804-3.467 6.935-6.935 11.558-36.984 41.607l-33.517 33.517c24.722 25.915 49.209 50.402 74.259 74.304l0.865 0.82 33.517-33.517c30.050-30.050 34.673-33.517 41.607-36.984 8.090-3.467 8.090-4.623 20.804-4.623zM434.564 832.144l-86.682-86.682-23.115 24.271c-12.713 12.713-25.427 26.582-28.894 31.205-12.198 16.263-23.115 38.542-23.115 65.878 0 35.679 10.634 69.886 32.361 84.37 8.632 5.756 13.218 16.132 21.959 21.959 18.914 12.609 42.948 20.804 75.124 20.804 26.971 0 53.242-13.7 69.345-26.582l49.698-49.698-86.682-85.526z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["plug-connected"],"defaultCode":61450,"grid":24},"attrs":[],"properties":{"id":1524,"order":201,"ligatures":"","prevSize":24,"code":61450,"name":"plug-connected"},"setIdx":0,"setId":2,"iconIdx":1525},{"icon":{"paths":["M587.124 195.323c129.445 0 203.413 0 210.348 1.156 68.185 13.637 110.746 51.183 127.133 116.731 3.717 22.299 0.942 129.639 5.779 151.404 1.156 6.935 4.623 18.492 6.935 25.427 2.257 9.026 62.035 127.16 65.878 138.691 8.155 24.465 14.157 49.4 18.492 79.747 1.156 10.402 1.156 60.099 1.156 171.052 0 142.158 0 157.183-2.312 164.117-15.348 61.391-55.988 97.789-117.887 113.264-6.935 1.156-60.099 1.156-313.21 1.156-294.718 0-306.275 1.156-316.677-1.156-62.744-12.548-99.216-55.913-114.42-116.731-1.156-6.935-1.156-36.984-1.156-171.052 0-152.56-1.156-162.962 1.156-175.675 2.832-19.819 9.825-39.59 15.025-57.788 3.467-9.246 17.336-40.451 41.607-87.837l36.984-73.968v-69.345c0-84.668-3.888-100.496 25.427-144.47 17.737-26.606 47.49-52.954 83.214-60.099 5.779-1.156 13.869-3.467 18.492-3.467s98.239-1.156 208.036-1.156zM589.436 292.406c-193.011 0-199.946 0-206.88 2.312-14.357 4.785-27.345 15.768-31.205 31.205-2.312 6.935-2.312 10.402-2.312 77.436v70.501l35.828 70.501c39.839 79.678 47.567 84.489 58.944 164.117 1.156 10.402 1.156 60.099 1.156 171.052 0 141.002-1.156 157.183-2.312 164.117-1.848 7.39-3.419 12.592-5.779 18.492h226.528l226.528-1.156c19.886-8.523 30.188-17.891 35.828-40.451 1.156-4.623 1.156-65.878 1.156-144.47 0-77.436 0-144.47-1.156-153.716-2.48-19.841-5.259-38.577-11.558-54.321-4.593-11.48-56.906-116.261-61.255-127.133-22.117-55.291-21.019-61.001-23.115-149.093-1.496-71.776 4.813-58.659-9.246-79.747-5.073-7.609-14.264-14.834-24.271-17.336-6.935-2.312-10.402-2.312-206.88-2.312zM529.336 483.106c-17.595-7.54-35.828-19.776-35.828-43.919 0-20.089 6.198-32.257 18.492-40.451 3.467-2.312 9.246-6.935 13.869-8.090 6.935-2.312 9.246-2.312 63.567-2.312 52.009 0 55.476 0 62.411 2.312 20.578 5.144 33.517 22.564 33.517 48.542 0 24.148-18.233 36.379-35.828 43.919h-120.199zM300.497 594.059l-17.336 34.673c-20.33 40.66-24.392 48.356-30.050 93.616-1.156 9.246-1.156 76.28-1.156 153.716 0 78.591 0 139.847 1.156 144.47 5.701 22.803 18.055 40.451 47.386 40.451 29.273 0 41.489-16.861 47.386-40.451 1.156-4.623 1.156-65.878 1.156-144.47 0-77.436 0-144.47-1.156-153.716-5.624-44.997-9.964-53.444-30.050-93.616zM688.831 677.273c20.6 0 29.104 4.386 43.919 8.090 29.483 7.371 54.347 30.469 70.501 52.009 15.332 20.443 26.582 48.964 26.582 84.37 0 45.647-17.237 77.336-40.451 100.551-24.098 24.098-55.236 43.919-102.862 43.919-22.185 0-30.239-1.001-45.074-6.935-15.21-6.084-30.424-12.088-42.763-21.959-12.711-10.169-23.002-22.194-32.361-34.673-15.887-21.183-24.271-43.619-24.271-80.903 0-82.789 50.728-125.368 117.887-142.158 4.623-1.156 9.246-2.312 10.402-2.312h18.492zM689.986 774.357h-11.558c-21.988 0-40.451 24.3-40.451 47.386 0 20.049 11.957 37.888 26.582 42.763 3.467 1.156 10.402 4.623 13.869 4.623h13.869c30.963 0 57.144-51.497 30.050-78.591-6.796-6.796-19.417-16.181-32.361-16.181z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["paper-bag"],"defaultCode":61487,"grid":24},"attrs":[],"properties":{"id":1561,"order":78,"ligatures":"","prevSize":24,"code":61487,"name":"paper-bag"},"setIdx":0,"setId":2,"iconIdx":1562},{"icon":{"paths":["M515.467 195.323c145.625 0 177.986 0 182.609 1.156 3.467 1.156 8.090 3.467 11.558 4.623 7.53 3.765 255.083 249.954 260.045 262.357 1.156 3.467 3.467 9.246 4.623 13.869 1.156 5.779 1.156 87.837 1.156 280.849 0 253.111 0 272.758-2.312 282.005-3.978 19.891-12.371 41.151-23.115 55.476-20.671 27.561-49.441 53.315-90.149 60.099l-11.558 2.312h-258.889c-276.835 0-239.355 4.884-286.628-6.935-50.006-12.501-86.672-60.055-97.084-112.108-2.312-10.402-2.312-30.050-2.312-361.752s0-351.35 2.312-361.752c9.186-45.932 35.869-83.235 72.813-101.707l16.181-8.090c8.468-4.234 26.634-9.246 36.984-9.246 4.623 0 86.682-1.156 183.765-1.156zM488.885 292.406c-137.535 0-149.093 0-154.871 2.312-17.423 5.808-26.433 16.89-32.361 34.673-1.156 5.779-1.156 48.542-1.156 347.883 0 325.262-3.252 330.033 6.935 360.596 4.167 12.501 17.833 17.88 30.050 23.115h503.91c12.109-5.189 25.904-10.679 30.050-23.115 10.141-30.422 6.935-25.191 6.935-262.357v-242.709h-80.903l-80.903-1.156-11.558-3.467c-5.779-2.312-15.025-5.779-19.648-8.090-18.059-9.030-27.469-25.6-38.14-41.607-6.216-9.322-6.842-20.245-9.246-34.673-1.156-6.935-1.156-43.919-1.156-82.059v-69.345h-147.937zM733.905 360.596v75.124h75.124l-36.984-38.14c-20.804-20.804-38.14-36.984-38.14-36.984zM689.986 561.698c51.986 0 84.102 31.824 101.707 67.034 7.374 14.747 9.246 25.501 9.246 48.542 0 30.165-4.436 45.21-17.336 62.411-4.623 6.935-24.271 28.894-137.535 142.158l-132.912 132.912h-61.255c-66.813 0-54.577 1.070-78.591-6.935-6.129-2.043-18.763-14.682-20.804-20.804-6.124-18.372-4.623-29.667-4.623-69.345 0-40.059-3.179-51.429 5.779-69.345 5.864-11.729 256.809-261.779 266.98-268.135 13.648-8.189 35.613-18.492 54.321-18.492h15.025zM687.675 657.625c-3.467 0-8.090 0-9.246 1.156s-54.321 53.165-117.887 116.731l-115.576 114.42v27.738h28.894l114.42-114.42c64.722-64.722 114.42-115.576 115.576-117.887s1.156-5.779 1.156-8.090c0-10.699-6.439-19.648-17.336-19.648z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-pencil"],"defaultCode":61497,"grid":24},"attrs":[],"properties":{"id":1571,"order":23,"ligatures":"","prevSize":24,"code":61497,"name":"file-pencil"},"setIdx":0,"setId":2,"iconIdx":1572},{"icon":{"paths":["M515.467 195.323c146.781 0 177.986 0 182.609 1.156 3.467 1.156 8.090 3.467 11.558 4.623 5.727 2.864 256.595 254.301 261.201 263.512 8.566 25.699 4.623 78.004 4.623 293.562l-1.156 272.758-2.312 11.558c-8.059 40.292-30.839 69.070-58.944 90.149-14.901 11.175-34.65 20.104-55.476 24.271-9.246 2.312-23.115 1.156-268.135 1.156-242.709 0-258.889 1.156-268.135-1.156-54.844-13.711-89.999-47.587-109.797-97.084-2.312-5.779-4.623-13.869-5.779-19.648-2.312-10.402-2.312-27.738-2.312-362.907s0-352.506 2.312-362.907c7.965-39.825 28.986-69.415 56.632-90.149 4.623-3.467 10.402-8.090 15.025-10.402l16.181-8.090c9.428-4.713 25.709-9.246 36.984-9.246 4.623 0 87.837-1.156 184.921-1.156zM488.885 292.406c-137.535 0-149.093 0-154.871 2.312-17.423 5.808-26.433 16.89-32.361 34.673-1.156 5.779-1.156 48.542-1.156 347.883 0 325.262-3.252 330.033 6.935 360.596 4.167 12.501 17.833 17.88 30.050 23.115h503.91c12.109-5.189 25.904-10.679 30.050-23.115 10.141-30.422 6.935-25.191 6.935-262.357v-242.709h-76.28c-47.386 0-79.747 0-84.37-1.156-25.866-6.466-48.085-18.383-61.255-38.14-24.294-36.441-19.648-52.901-19.648-130.6v-70.501h-147.937zM733.905 360.596v75.124h75.124l-36.984-38.14c-20.804-20.804-38.14-36.984-38.14-36.984zM588.28 580.19c-78.591 0-146.781 1.156-150.248 1.156-21.978 0-34.747 21.027-40.451 38.14-1.156 3.467-1.156 17.336-1.156 33.517 0 47.039 6.929 60.097 41.607 71.657 32.373 6.475 50.845-19.602 55.476-47.386h47.386v240.397c-16.839 2.405-24.97 6.477-34.673 16.181-6.676 6.676-12.713 13.893-12.713 25.427v13.869c0 21.978 21.027 34.747 38.14 40.451 3.467 1.156 24.271 1.156 57.788 1.156s54.321 0 57.788-1.156c16.765-5.588 38.14-18.731 38.14-40.451v-13.869c0-24.859-24.751-38.373-47.386-41.607v-240.397h47.386c4.583 27.497 17.154 39.234 41.607 47.386 29.249 5.85 47.049-16.324 54.321-38.14 1.156-3.467 1.156-18.492 1.156-33.517 0-36.186 0.503-42.26-16.181-58.944-8.621-8.621-12.866-9.284-26.582-12.713-4.623-1.156-60.099-1.156-151.404-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["file-typography"],"defaultCode":61505,"grid":24},"attrs":[],"properties":{"id":1579,"order":55,"ligatures":"","prevSize":24,"code":61505,"name":"file-typography"},"setIdx":0,"setId":2,"iconIdx":1580},{"icon":{"paths":["M588.28 243.865c231.119 0 295.745-4.078 330.546 4.623 32.576 8.143 66.075 22.156 86.682 42.763 26.768 26.768 52.371 59.594 61.255 104.018 5.543 27.715 4.623 39.441 4.623 88.993 0 68.773 0.955 90.551-19.648 131.756-3.467 6.935-8.090 17.336-11.558 21.959-9.288 12.384-13.973 17.179-24.271 30.050l-9.246 9.246 9.246 9.246c21.109 26.386 42.717 54.087 50.853 94.772 5.543 27.715 4.623 39.441 4.623 88.993 0 71.853 0.083 92.293-21.959 136.379-28.311 56.623-77.639 88.571-149.093 102.862-6.935 1.156-107.485 1.156-310.898 1.156-228.723 0-294.771 4.031-329.391-4.623-52.394-13.098-94.359-39.763-119.043-80.903-11.515-19.191-23.888-40.851-28.894-65.878-5.543-27.712-4.623-40.436-4.623-90.149 0-70.039-1.195-88.915 19.648-130.6 3.467-6.935 8.090-17.336 11.558-21.959 9.288-12.384 13.973-17.179 24.271-30.050l9.246-9.246-9.246-9.246c-21.109-26.386-42.717-54.087-50.853-94.772-5.543-27.715-4.623-39.441-4.623-88.993 0-72.377 2.652-87.534 20.804-132.912 5.451-13.626 17.817-31.686 27.738-41.607l17.336-17.336c21.971-21.971 52.841-35.17 87.837-43.919 4.623-1.156 11.558-3.467 16.181-3.467s144.47-1.156 310.898-1.156zM595.214 339.792c-162.962 0-299.341 1.156-303.964 1.156-29.365 0-49.436 18.231-64.722 33.517-6.46 6.46-16.59 27.807-19.648 36.984-2.312 5.779-2.312 15.025-2.312 69.345 0 53.165 1.156 62.411 2.312 70.501 5.571 22.285 12.561 32.929 24.271 48.542 10.654 14.204 30.389 21.755 49.698 26.582 8.090 1.156 39.296 2.312 308.587 2.312s300.497-1.156 308.587-2.312c13.284-3.322 23.699-6.506 33.517-13.869 4.623-3.467 12.713-8.090 16.181-12.713 8.282-11.044 13.351-17.457 19.648-30.050 2.312-4.623 3.467-13.869 4.623-18.492 1.156-8.090 2.312-17.336 2.312-70.501 0-75.263 2.525-56.1-9.246-85.526-12.185-30.462-38.831-45.826-72.813-54.321zM349.038 532.804c-28.027 0-48.542-19.873-48.542-47.386 0-18.168 9.451-29.098 18.492-38.14 7.679-7.679 14.746-10.402 31.205-10.402 27.38 0 45.074 20.299 45.074 48.542 0 28.808-18.358 47.386-46.23 47.386zM843.702 436.876c18.13 10.878 34.673 21.72 34.673 50.853 0 23.439-18.946 36.684-35.828 43.919l-153.716 1.156c-138.691 0-154.871-1.156-160.65-2.312-19.105-6.368-33.517-18.603-33.517-45.074 0-28.39 13.891-38.15 32.361-47.386 3.467-1.156 36.984-1.156 160.65-1.156h156.027zM588.28 725.815c-262.357 0-301.652 1.156-308.587 2.312-20.782 5.195-31.427 13.17-46.23 24.271-14.725 11.044-21.548 30.711-26.582 50.853-1.156 8.090-2.312 17.336-2.312 70.501 0 75.263-2.525 56.1 9.246 85.526 13.102 32.754 40.755 44.020 75.124 55.476h600.993c7.589-2.529 19.781-5.823 26.582-8.090 27.729-9.243 46.363-36.227 55.476-63.567 2.312-5.779 2.312-15.025 2.312-69.345 0-53.165-1.156-62.411-2.312-70.501-5.571-22.285-12.561-32.929-24.271-48.542-10.654-14.204-30.389-21.755-49.698-26.582-8.090-1.156-40.451-2.312-309.743-2.312zM300.497 870.284c0-28.367 20.747-48.542 48.542-48.542 17.828 0 28.113 9.621 36.984 18.492 7.68 7.68 9.246 13.257 9.246 30.050 0 18.125-3.949 25.909-12.713 34.673-28.145 28.145-82.059 8.128-82.059-34.673zM687.675 821.743c-144.47 0-154.871 0-160.65 2.312-18.737 6.246-32.361 19.11-32.361 45.074 0 30.263 15.448 37.556 34.673 48.542h314.366c18.336-11.002 34.673-21.368 34.673-50.853 0-24.085-19.708-36.515-36.984-43.919l-153.716-1.156z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["server-2"],"defaultCode":61564,"grid":24},"attrs":[],"properties":{"id":1637,"order":54,"ligatures":"","prevSize":24,"code":61564,"name":"pfs"},"setIdx":0,"setId":2,"iconIdx":1638},{"icon":{"paths":["M235.774 1109.526c-42.569-8.467-67.274-36.153-78.591-76.28v-711.946c8.221-32.887 25.592-54.403 53.165-68.19 3.829-1.914 22.751-8.090 27.738-8.090 2.312 0 161.806-1.156 354.817-1.156l352.506 1.156c43.369 10.841 65.29 35.788 76.28 79.747 1.156 5.779 1.156 121.354 1.156 357.129l-1.156 351.35-3.467 11.558c-4.981 14.944-9.13 21.844-18.492 31.205-3.467 3.467-8.090 10.402-11.558 12.713l-13.869 9.246c-6.472 4.314-19.975 8.585-28.894 11.558h-709.634zM878.375 677.273c0-31.517 20.444-44.052 47.386-48.542v-287.783h-672.65v287.783c26.941 4.49 47.386 17.031 47.386 48.542 0 31.517-20.444 44.052-47.386 48.542v287.783h287.783c4.49-26.941 17.031-47.386 48.542-47.386 31.517 0 44.052 20.444 48.542 47.386h287.783v-287.783c-26.941-4.49-47.386-17.031-47.386-48.542zM591.747 388.334c-29.046 0-42.509 15.418-49.698 36.984-1.156 5.779-1.156 24.271-1.156 131.756 0 128.149-2.258 116.89 6.935 144.47 5.998 8.996 150.885 157.668 164.117 162.962 12.431 8.287 30.986 4.311 43.919 0 15.407-5.135 29.867-28.651 25.427-50.853-1.156-4.623-3.467-10.402-4.623-13.869-2.312-5.779-12.713-17.336-70.501-75.124l-68.19-68.19v-112.108c0-95.928 0-113.264-1.156-119.043-6.38-19.143-19.483-36.984-45.074-36.984z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["clock-2"],"defaultCode":61593,"grid":24},"attrs":[],"properties":{"id":1666,"order":36,"ligatures":"","prevSize":24,"code":61593,"name":"clock-2"},"setIdx":0,"setId":2,"iconIdx":1667},{"icon":{"paths":["M154.871 195.323c8.602 0 16.421 3.548 23.115 5.779 9.313 3.726 880.106 875.096 887.621 887.621 15.448 23.173-2.813 58.726-20.804 64.722-35.424 11.808-47.83 0.712-71.657-23.115l-19.648-19.648h-137.535c-134.068 0-137.535 0-144.47-2.312-20.578-5.144-33.517-22.564-33.517-48.542 0-19.992 13.73-33.448 27.738-40.451 8.090-3.467 8.090-4.623 25.427-4.623 16.181 0 17.336 0 17.336-2.312 0-1.156-15.025-33.517-31.205-71.657l-30.050-69.345-135.223-1.156h-136.379l-26.582 71.657c-15.025 39.296-26.582 71.657-26.582 71.657s9.246 1.156 19.648 1.156c29.978 0 40.204 8.751 49.698 27.738 3.467 6.935 4.623 9.246 4.623 17.336 0 25.906-12.74 43.348-33.517 48.542-6.935 2.312-10.402 2.312-88.993 2.312l-82.059-1.156c-16.651-8.325-35.828-19.652-35.828-43.919 0-20.792 9.265-31.224 19.648-41.607 6.542-6.542 14.634-9.246 28.894-9.246h13.869c-109.511 341.691-50.459 187.959 8.084 33.977l166.435-498.591-137.535-138.691c-121.354-122.51-138.691-139.847-142.158-145.625-6.892-10.337-7.205-33.11 0-43.919 8.963-13.445 20.382-26.582 41.607-26.582zM873.752 721.192c0 28.039-19.849 47.386-48.542 47.386-15.706 0-25.042-4.238-32.361-11.558-2.312-2.312-6.935-6.935-8.090-9.246s-41.607-93.616-90.149-204.569l-88.993-203.413h-15.025c-13.869 0-15.025 0-16.181 2.312-1.156 1.156-6.935 17.336-13.869 36.984s-16.181 38.14-17.336 41.607c-2.275 6.824-15.164 18.538-21.959 20.804-5.779 2.312-8.090 2.312-19.648 2.312-17.903 0-25.748-4.944-34.673-13.869-6.131-9.195-17.062-21.899-12.713-39.296 1.156-3.467 10.402-32.361 21.959-63.567 15.025-39.296 21.959-57.788 25.427-62.411 4.8-7.2 14.953-16.162 24.271-18.492 6.935-2.312 9.246-2.312 63.567-2.312 52.009 0 55.476 0 62.411 2.312 11.595 2.899 19.454 9.532 25.427 18.492 6.085 9.126 189.73 429.344 194.167 442.655 1.156 3.467 2.312 10.402 2.312 13.869zM468.081 625.264c-0.284 0.853-55.476 143.34-55.476 145.625-1.156 2.312 4.623 2.312 95.928 2.312h97.084l-4.623-9.246-3.467-10.402c-44.86-43.857-87.037-85.668-128.926-127.767l-0.519-0.522zM819.431 975.458c-20.804-20.804-38.14-38.14-38.14-36.984 0 0.2 32.099 74.861 32.361 75.124 1.156 1.156 6.935 1.156 23.115 1.156h20.804l-38.14-39.296z"],"width":1167,"attrs":[],"isMulticolor":false,"isMulticolor2":false,"tags":["typography-off"],"defaultCode":61882,"grid":24},"attrs":[],"properties":{"id":1955,"order":56,"ligatures":"","prevSize":24,"code":61882,"name":"typography-off"},"setIdx":0,"setId":2,"iconIdx":1956}],"height":1024,"metadata":{"name":"Seditio","url":"https://seditio.org/"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"ic-","metadata":{"fontFamily":"Seditio","majorVersion":1,"minorVersion":0,"fontURL":"https://seditio.org/"},"metrics":{"emSize":1024,"baseline":-11.286681715575622,"whitespace":0},"embed":false,"showSelector":true,"showMetrics":true,"showMetadata":true},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}} \ No newline at end of file diff --git a/system/adminskin/simple/fonts/Seditio/style.css b/system/adminskin/simple/fonts/Seditio/style.css new file mode 100644 index 0000000..169adad --- /dev/null +++ b/system/adminskin/simple/fonts/Seditio/style.css @@ -0,0 +1,627 @@ +@font-face { + font-family: 'Seditio'; + src: url('Seditio.eot?7b0a3o'); + src: url('Seditio.eot?7b0a3o#iefix') format('embedded-opentype'), + url('Seditio.ttf?7b0a3o') format('truetype'), + url('Seditio.woff?7b0a3o') format('woff'), + url('Seditio.svg?7b0a3o#Seditio') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="ic-"], [class*=" ic-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'Seditio' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ic-github:before { + content: "\e900"; +} +.ic-cloud-computing:before { + content: "\f1d0"; +} +.ic-cloud-data-connection:before { + content: "\f1d1"; +} +.ic-adjustments:before { + content: "\ea03"; +} +.ic-alarm:before { + content: "\ea04"; +} +.ic-alert-circle:before { + content: "\ea05"; +} +.ic-alert-triangle:before { + content: "\ea06"; +} +.ic-arrow-down-circle:before { + content: "\ea11"; +} +.ic-arrow-down-left-circle:before { + content: "\ea12"; +} +.ic-arrow-down-left:before { + content: "\ea13"; +} +.ic-arrow-down-right-circle:before { + content: "\ea14"; +} +.ic-arrow-down-right:before { + content: "\ea15"; +} +.ic-arrow-down:before { + content: "\ea16"; +} +.ic-arrow-left:before { + content: "\ea19"; +} +.ic-arrow-narrow-down:before { + content: "\ea1a"; +} +.ic-arrow-narrow-left:before { + content: "\ea1b"; +} +.ic-arrow-narrow-right:before { + content: "\ea1c"; +} +.ic-arrow-narrow-up:before { + content: "\ea1d"; +} +.ic-arrow-right:before { + content: "\ea1f"; +} +.ic-arrow-up-circle:before { + content: "\ea20"; +} +.ic-arrow-up-left-circle:before { + content: "\ea21"; +} +.ic-arrow-up-right-circle:before { + content: "\ea23"; +} +.ic-arrows-maximize:before { + content: "\ea28"; +} +.ic-at:before { + content: "\ea2b"; +} +.ic-award:before { + content: "\ea2c"; +} +.ic-banlist:before { + content: "\ea2e"; +} +.ic-pages:before { + content: "\ea39"; +} +.ic-bookmark:before { + content: "\ea3a"; +} +.ic-briefcase:before { + content: "\ea46"; +} +.ic-calendar-event:before { + content: "\ea52"; +} +.ic-calendar:before { + content: "\ea53"; +} +.ic-camera:before { + content: "\ea54"; +} +.ic-chart-area-line:before { + content: "\ea57"; +} +.ic-hits:before { + content: "\ea59"; +} +.ic-chart-candle:before { + content: "\ea5a"; +} +.ic-check:before { + content: "\ea5e"; +} +.ic-chevron-down:before { + content: "\ea5f"; +} +.ic-chevron-left:before { + content: "\ea60"; +} +.ic-chevron-right:before { + content: "\ea61"; +} +.ic-chevron-up:before { + content: "\ea62"; +} +.ic-chevrons-down:before { + content: "\ea63"; +} +.ic-chevrons-left:before { + content: "\ea64"; +} +.ic-chevrons-right:before { + content: "\ea65"; +} +.ic-chevrons-up:before { + content: "\ea66"; +} +.ic-circle-check:before { + content: "\ea67"; +} +.ic-circle-minus:before { + content: "\ea68"; +} +.ic-circle-plus:before { + content: "\ea69"; +} +.ic-circle-x:before { + content: "\ea6a"; +} +.ic-clock:before { + content: "\ea70"; +} +.ic-cloud-download:before { + content: "\ea71"; +} +.ic-cloud-upload:before { + content: "\ea75"; +} +.ic-code:before { + content: "\ea77"; +} +.ic-compass:before { + content: "\ea79"; +} +.ic-copy:before { + content: "\ea7a"; +} +.ic-corner-left-down:before { + content: "\ea7e"; +} +.ic-corner-left-up:before { + content: "\ea7f"; +} +.ic-corner-right-down:before { + content: "\ea80"; +} +.ic-corner-right-up:before { + content: "\ea81"; +} +.ic-corner-up-left:before { + content: "\ea82"; +} +.ic-corner-up-right:before { + content: "\ea83"; +} +.ic-credit-card:before { + content: "\ea84"; +} +.ic-cache:before { + content: "\ea88"; +} +.ic-device-desktop:before { + content: "\ea89"; +} +.ic-directions:before { + content: "\ea8e"; +} +.ic-dots:before { + content: "\ea95"; +} +.ic-download:before { + content: "\ea96"; +} +.ic-edit:before { + content: "\ea98"; +} +.ic-external-link:before { + content: "\ea99"; +} +.ic-eye:before { + content: "\ea9a"; +} +.ic-filter:before { + content: "\eaa5"; +} +.ic-flag:before { + content: "\eaa6"; +} +.ic-folder:before { + content: "\eaad"; +} +.ic-folders:before { + content: "\eaae"; +} +.ic-heart:before { + content: "\eabe"; +} +.ic-home:before { + content: "\eac0"; +} +.ic-home-2:before { + content: "\eac1"; +} +.ic-id:before { + content: "\eac3"; +} +.ic-key:before { + content: "\eac7"; +} +.ic-link:before { + content: "\eade"; +} +.ic-location:before { + content: "\eae0"; +} +.ic-unlock:before { + content: "\eae1"; +} +.ic-lock:before { + content: "\eae2"; +} +.ic-mail-opened:before { + content: "\eae4"; +} +.ic-mail:before { + content: "\eae5"; +} +.ic-map-2:before { + content: "\eae7"; +} +.ic-map-pin:before { + content: "\eae8"; +} +.ic-message-2:before { + content: "\eaec"; +} +.ic-message-circle:before { + content: "\eaed"; +} +.ic-message:before { + content: "\eaef"; +} +.ic-mood-happy:before { + content: "\eaf4"; +} +.ic-smilies:before { + content: "\eaf7"; +} +.ic-movie:before { + content: "\eafa"; +} +.ic-news:before { + content: "\eafd"; +} +.ic-paperclip:before { + content: "\eb02"; +} +.ic-pencil:before { + content: "\eb04"; +} +.ic-phone-call:before { + content: "\eb05"; +} +.ic-phone-incoming:before { + content: "\eb06"; +} +.ic-photo:before { + content: "\eb0a"; +} +.ic-plus:before { + content: "\eb0b"; +} +.ic-power:before { + content: "\eb0d"; +} +.ic-refresh:before { + content: "\eb13"; +} +.ic-rotate-clockwise:before { + content: "\eb15"; +} +.ic-search:before { + content: "\eb1c"; +} +.ic-server:before { + content: "\eb1f"; +} +.ic-settings:before { + content: "\eb20"; +} +.ic-share:before { + content: "\eb21"; +} +.ic-shield-check:before { + content: "\eb22"; +} +.ic-shopping-cart:before { + content: "\eb25"; +} +.ic-star:before { + content: "\eb2e"; +} +.ic-tag:before { + content: "\eb34"; +} +.ic-thumb-down:before { + content: "\eb3b"; +} +.ic-thumb-up:before { + content: "\eb3c"; +} +.ic-tool:before { + content: "\eb40"; +} +.ic-trash:before { + content: "\eb41"; +} +.ic-unlink:before { + content: "\eb46"; +} +.ic-upload:before { + content: "\eb47"; +} +.ic-user-check:before { + content: "\eb49"; +} +.ic-user-minus:before { + content: "\eb4a"; +} +.ic-user-plus:before { + content: "\eb4b"; +} +.ic-user-x:before { + content: "\eb4c"; +} +.ic-user:before { + content: "\eb4d"; +} +.ic-referers:before { + content: "\eb54"; +} +.ic-close:before { + content: "\eb55"; +} +.ic-zoom-in:before { + content: "\eb56"; +} +.ic-zoom-out:before { + content: "\eb57"; +} +.ic-arrows-horizontal:before { + content: "\eb59"; +} +.ic-arrows-sort:before { + content: "\eb5a"; +} +.ic-arrows-vertical:before { + content: "\eb5b"; +} +.ic-polls:before { + content: "\eb6a"; +} +.ic-comments:before { + content: "\eb6c"; +} +.ic-repeat:before { + content: "\eb72"; +} +.ic-anchor:before { + content: "\eb76"; +} +.ic-calculator:before { + content: "\eb80"; +} +.ic-notebook:before { + content: "\eb96"; +} +.ic-login:before { + content: "\eba7"; +} +.ic-logout:before { + content: "\eba8"; +} +.ic-rotate-clockwise-2:before { + content: "\ebb5"; +} +.ic-brush:before { + content: "\ebb8"; +} +.ic-typography:before { + content: "\ebc5"; +} +.ic-gallery:before { + content: "\ebc9"; +} +.ic-tools:before { + content: "\ebca"; +} +.ic-wand:before { + content: "\ebcb"; +} +.ic-plug:before { + content: "\ebd9"; +} +.ic-color-picker:before { + content: "\ebe6"; +} +.ic-users:before { + content: "\ebf2"; +} +.ic-phone-check:before { + content: "\ec05"; +} +.ic-brand-github:before { + content: "\ec1c"; +} +.ic-brand-google-drive:before { + content: "\ec1e"; +} +.ic-brand-instagram:before { + content: "\ec20"; +} +.ic-brand-telegram:before { + content: "\ec26"; +} +.ic-brand-twitter:before { + content: "\ec27"; +} +.ic-camera-minus:before { + content: "\ec3a"; +} +.ic-camera-plus:before { + content: "\ec3b"; +} +.ic-menu:before { + content: "\ec42"; +} +.ic-brand-whatsapp:before { + content: "\ec74"; +} +.ic-ratings:before { + content: "\ec78"; +} +.ic-separator-vertical:before { + content: "\ec7a"; +} +.ic-page-break:before { + content: "\ec81"; +} +.ic-brand-youtube:before { + content: "\ec90"; +} +.ic-select:before { + content: "\ec9e"; +} +.ic-forums:before { + content: "\ec9f"; +} +.ic-index:before { + content: "\ecde"; +} +.ic-brand-discord:before { + content: "\ece3"; +} +.ic-eye-off:before { + content: "\ecf0"; +} +.ic-brand-pocket:before { + content: "\ed00"; +} +.ic-bookmarks:before { + content: "\ed08"; +} +.ic-lock-off:before { + content: "\ed1e"; +} +.ic-stars:before { + content: "\ed38"; +} +.ic-message-circle-2:before { + content: "\ed3f"; +} +.ic-speakerphone:before { + content: "\ed61"; +} +.ic-star-off:before { + content: "\ed62"; +} +.ic-trash-off:before { + content: "\ed65"; +} +.ic-manual-gearbox:before { + content: "\ed7b"; +} +.ic-admin:before { + content: "\edcc"; +} +.ic-pm:before { + content: "\edcd"; +} +.ic-page:before { + content: "\edef"; +} +.ic-calendar-time:before { + content: "\ee21"; +} +.ic-chart-pie-3:before { + content: "\ee32"; +} +.ic-discount-2:before { + content: "\ee7c"; +} +.ic-edit-circle:before { + content: "\ee85"; +} +.ic-list-search:before { + content: "\eea9"; +} +.ic-pacman:before { + content: "\eebc"; +} +.ic-settings-automation:before { + content: "\eed6"; +} +.ic-shopping-cart-discount:before { + content: "\eedb"; +} +.ic-shopping-cart-plus:before { + content: "\eedd"; +} +.ic-hand-move:before { + content: "\ef50"; +} +.ic-user-circle:before { + content: "\ef68"; +} +.ic-report-search:before { + content: "\ef84"; +} +.ic-trash-x:before { + content: "\ef88"; +} +.ic-world-upload:before { + content: "\ef8b"; +} +.ic-shield-checkered:before { + content: "\ef9a"; +} +.ic-quote:before { + content: "\efbe"; +} +.ic-dic:before { + content: "\eff2"; +} +.ic-plug-connected:before { + content: "\f00a"; +} +.ic-paper-bag:before { + content: "\f02f"; +} +.ic-file-pencil:before { + content: "\f039"; +} +.ic-file-typography:before { + content: "\f041"; +} +.ic-pfs:before { + content: "\f07c"; +} +.ic-clock-2:before { + content: "\f099"; +} +.ic-typography-off:before { + content: "\f1ba"; +} diff --git a/system/adminskin/simple/img/b.png b/system/adminskin/simple/img/b.png new file mode 100644 index 0000000..f184e62 Binary files /dev/null and b/system/adminskin/simple/img/b.png differ diff --git a/system/adminskin/simple/img/bg-body.gif b/system/adminskin/simple/img/bg-body.gif new file mode 100644 index 0000000..5ca2145 Binary files /dev/null and b/system/adminskin/simple/img/bg-body.gif differ diff --git a/system/adminskin/simple/img/bg-button-green.gif b/system/adminskin/simple/img/bg-button-green.gif new file mode 100644 index 0000000..c58a9bc Binary files /dev/null and b/system/adminskin/simple/img/bg-button-green.gif differ diff --git a/system/adminskin/simple/img/bg-content-box.gif b/system/adminskin/simple/img/bg-content-box.gif new file mode 100644 index 0000000..613162b Binary files /dev/null and b/system/adminskin/simple/img/bg-content-box.gif differ diff --git a/system/adminskin/simple/img/bg-form-field.gif b/system/adminskin/simple/img/bg-form-field.gif new file mode 100644 index 0000000..c304dd9 Binary files /dev/null and b/system/adminskin/simple/img/bg-form-field.gif differ diff --git a/system/adminskin/simple/img/bg-login-top.png b/system/adminskin/simple/img/bg-login-top.png new file mode 100644 index 0000000..7fcbf7d Binary files /dev/null and b/system/adminskin/simple/img/bg-login-top.png differ diff --git a/system/adminskin/simple/img/bg-login.gif b/system/adminskin/simple/img/bg-login.gif new file mode 100644 index 0000000..b5aa84a Binary files /dev/null and b/system/adminskin/simple/img/bg-login.gif differ diff --git a/system/adminskin/simple/img/bg-menu-item-current.gif b/system/adminskin/simple/img/bg-menu-item-current.gif new file mode 100644 index 0000000..f5debe4 Binary files /dev/null and b/system/adminskin/simple/img/bg-menu-item-current.gif differ diff --git a/system/adminskin/simple/img/bg-menu-item-green.gif b/system/adminskin/simple/img/bg-menu-item-green.gif new file mode 100644 index 0000000..6709fa0 Binary files /dev/null and b/system/adminskin/simple/img/bg-menu-item-green.gif differ diff --git a/system/adminskin/simple/img/bg-radial-gradient.gif b/system/adminskin/simple/img/bg-radial-gradient.gif new file mode 100644 index 0000000..b30cd8a Binary files /dev/null and b/system/adminskin/simple/img/bg-radial-gradient.gif differ diff --git a/system/adminskin/simple/img/bg-sidebar.gif b/system/adminskin/simple/img/bg-sidebar.gif new file mode 100644 index 0000000..d97e978 Binary files /dev/null and b/system/adminskin/simple/img/bg-sidebar.gif differ diff --git a/system/adminskin/simple/img/bl.png b/system/adminskin/simple/img/bl.png new file mode 100644 index 0000000..f627185 Binary files /dev/null and b/system/adminskin/simple/img/bl.png differ diff --git a/system/adminskin/simple/img/br.png b/system/adminskin/simple/img/br.png new file mode 100644 index 0000000..31f204f Binary files /dev/null and b/system/adminskin/simple/img/br.png differ diff --git a/system/adminskin/simple/img/closelabel.gif b/system/adminskin/simple/img/closelabel.gif new file mode 100644 index 0000000..87b4f8b Binary files /dev/null and b/system/adminskin/simple/img/closelabel.gif differ diff --git a/system/adminskin/simple/img/g_list_arrow.png b/system/adminskin/simple/img/g_list_arrow.png new file mode 100644 index 0000000..85ebfaa Binary files /dev/null and b/system/adminskin/simple/img/g_list_arrow.png differ diff --git a/system/adminskin/simple/img/g_list_check.png b/system/adminskin/simple/img/g_list_check.png new file mode 100644 index 0000000..25bf5d4 Binary files /dev/null and b/system/adminskin/simple/img/g_list_check.png differ diff --git a/system/adminskin/simple/img/g_list_circle.png b/system/adminskin/simple/img/g_list_circle.png new file mode 100644 index 0000000..e68472f Binary files /dev/null and b/system/adminskin/simple/img/g_list_circle.png differ diff --git a/system/adminskin/simple/img/g_list_cross.png b/system/adminskin/simple/img/g_list_cross.png new file mode 100644 index 0000000..a82d427 Binary files /dev/null and b/system/adminskin/simple/img/g_list_cross.png differ diff --git a/system/adminskin/simple/img/g_list_minus.png b/system/adminskin/simple/img/g_list_minus.png new file mode 100644 index 0000000..7da9f6a Binary files /dev/null and b/system/adminskin/simple/img/g_list_minus.png differ diff --git a/system/adminskin/simple/img/g_list_plus.png b/system/adminskin/simple/img/g_list_plus.png new file mode 100644 index 0000000..6849c03 Binary files /dev/null and b/system/adminskin/simple/img/g_list_plus.png differ diff --git a/system/adminskin/simple/img/g_list_square.png b/system/adminskin/simple/img/g_list_square.png new file mode 100644 index 0000000..32259fd Binary files /dev/null and b/system/adminskin/simple/img/g_list_square.png differ diff --git a/system/adminskin/simple/img/g_list_star.png b/system/adminskin/simple/img/g_list_star.png new file mode 100644 index 0000000..7a89aa7 Binary files /dev/null and b/system/adminskin/simple/img/g_list_star.png differ diff --git a/system/adminskin/simple/img/icons/bullet_black.png b/system/adminskin/simple/img/icons/bullet_black.png new file mode 100644 index 0000000..5761970 Binary files /dev/null and b/system/adminskin/simple/img/icons/bullet_black.png differ diff --git a/system/adminskin/simple/img/icons/clock_48.png b/system/adminskin/simple/img/icons/clock_48.png new file mode 100644 index 0000000..9f35bce Binary files /dev/null and b/system/adminskin/simple/img/icons/clock_48.png differ diff --git a/system/adminskin/simple/img/icons/comment_48.png b/system/adminskin/simple/img/icons/comment_48.png new file mode 100644 index 0000000..69c57b2 Binary files /dev/null and b/system/adminskin/simple/img/icons/comment_48.png differ diff --git a/system/adminskin/simple/img/icons/cross.png b/system/adminskin/simple/img/icons/cross.png new file mode 100644 index 0000000..62c181d Binary files /dev/null and b/system/adminskin/simple/img/icons/cross.png differ diff --git a/system/adminskin/simple/img/icons/cross_circle.png b/system/adminskin/simple/img/icons/cross_circle.png new file mode 100644 index 0000000..d4507c0 Binary files /dev/null and b/system/adminskin/simple/img/icons/cross_circle.png differ diff --git a/system/adminskin/simple/img/icons/cross_grey_small.png b/system/adminskin/simple/img/icons/cross_grey_small.png new file mode 100644 index 0000000..0cdfc1d Binary files /dev/null and b/system/adminskin/simple/img/icons/cross_grey_small.png differ diff --git a/system/adminskin/simple/img/icons/exclamation.png b/system/adminskin/simple/img/icons/exclamation.png new file mode 100644 index 0000000..056f680 Binary files /dev/null and b/system/adminskin/simple/img/icons/exclamation.png differ diff --git a/system/adminskin/simple/img/icons/hammer_screwdriver.png b/system/adminskin/simple/img/icons/hammer_screwdriver.png new file mode 100644 index 0000000..485fcf2 Binary files /dev/null and b/system/adminskin/simple/img/icons/hammer_screwdriver.png differ diff --git a/system/adminskin/simple/img/icons/image_add_48.png b/system/adminskin/simple/img/icons/image_add_48.png new file mode 100644 index 0000000..d022e8f Binary files /dev/null and b/system/adminskin/simple/img/icons/image_add_48.png differ diff --git a/system/adminskin/simple/img/icons/information.png b/system/adminskin/simple/img/icons/information.png new file mode 100644 index 0000000..d39b18d Binary files /dev/null and b/system/adminskin/simple/img/icons/information.png differ diff --git a/system/adminskin/simple/img/icons/paper_content_pencil_48.png b/system/adminskin/simple/img/icons/paper_content_pencil_48.png new file mode 100644 index 0000000..1c5d322 Binary files /dev/null and b/system/adminskin/simple/img/icons/paper_content_pencil_48.png differ diff --git a/system/adminskin/simple/img/icons/pencil.png b/system/adminskin/simple/img/icons/pencil.png new file mode 100644 index 0000000..69b9cca Binary files /dev/null and b/system/adminskin/simple/img/icons/pencil.png differ diff --git a/system/adminskin/simple/img/icons/pencil_48.png b/system/adminskin/simple/img/icons/pencil_48.png new file mode 100644 index 0000000..5473e17 Binary files /dev/null and b/system/adminskin/simple/img/icons/pencil_48.png differ diff --git a/system/adminskin/simple/img/icons/tick_circle.png b/system/adminskin/simple/img/icons/tick_circle.png new file mode 100644 index 0000000..de8f000 Binary files /dev/null and b/system/adminskin/simple/img/icons/tick_circle.png differ diff --git a/system/adminskin/simple/img/input_icons.svg b/system/adminskin/simple/img/input_icons.svg new file mode 100644 index 0000000..4008cc5 --- /dev/null +++ b/system/adminskin/simple/img/input_icons.svg @@ -0,0 +1,74 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/system/adminskin/simple/img/loading.gif b/system/adminskin/simple/img/loading.gif new file mode 100644 index 0000000..f864d5f Binary files /dev/null and b/system/adminskin/simple/img/loading.gif differ diff --git a/system/adminskin/simple/img/logo.png b/system/adminskin/simple/img/logo.png new file mode 100644 index 0000000..f2201fa Binary files /dev/null and b/system/adminskin/simple/img/logo.png differ diff --git a/system/adminskin/simple/img/menu-current-arrow.gif b/system/adminskin/simple/img/menu-current-arrow.gif new file mode 100644 index 0000000..079ed59 Binary files /dev/null and b/system/adminskin/simple/img/menu-current-arrow.gif differ diff --git a/system/adminskin/simple/img/shortcut-button-bg.gif b/system/adminskin/simple/img/shortcut-button-bg.gif new file mode 100644 index 0000000..48e77b9 Binary files /dev/null and b/system/adminskin/simple/img/shortcut-button-bg.gif differ diff --git a/system/adminskin/simple/img/tl.png b/system/adminskin/simple/img/tl.png new file mode 100644 index 0000000..d99c8f6 Binary files /dev/null and b/system/adminskin/simple/img/tl.png differ diff --git a/system/adminskin/simple/img/tr.png b/system/adminskin/simple/img/tr.png new file mode 100644 index 0000000..e99b6ec Binary files /dev/null and b/system/adminskin/simple/img/tr.png differ diff --git a/system/adminskin/simple/js/app.js b/system/adminskin/simple/js/app.js new file mode 100644 index 0000000..f169f61 --- /dev/null +++ b/system/adminskin/simple/js/app.js @@ -0,0 +1,74 @@ +$(document).ready(function(){ + + //Sidebar Accordion Menu: + + $("#main-nav li ul").hide(); // Hide all sub menus + $("#main-nav li a.current").parent().find("ul").slideToggle("slow"); // Slide down the current menu item's sub menu + + $("#main-nav li a.nav-top-item").click( // When a top menu item is clicked... + function () { + $(this).parent().siblings().find("ul").slideUp("normal"); // Slide up all sub menus except the one clicked + $(this).next().slideToggle("normal"); // Slide down the clicked sub menu + return false; + } + ); + + $("#main-nav li a.no-submenu").click( // When a menu item with no sub menu is clicked... + function () { + window.location.href=(this.href); // Just open the link instead of a sub menu + return false; + } + ); + + // Sidebar Accordion Menu Hover Effect: + + $("#main-nav li .nav-top-item").hover( + function () { + $(this).stop().animate({ paddingRight: "25px" }, 200); + }, + function () { + $(this).stop().animate({ paddingRight: "15px" }); + } + ); + + //Minimize Content Box + + $(".content-box-header h3").css({ "cursor":"s-resize" }); // Give the h3 in Content Box Header a different cursor + $(".closed-box .content-box-content").hide(); // Hide the content of the header if it has the class "closed" + $(".closed-box .content-box-tabs").hide(); // Hide the tabs in the header if it has the class "closed" + + $(".content-box-header h3").click( // When the h3 is clicked... + function () { + $(this).parent().next().toggle(); // Toggle the Content Box + $(this).parent().parent().toggleClass("closed-box"); // Toggle the class "closed-box" on the content box + $(this).parent().find(".content-box-tabs").toggle(); // Toggle the tabs + } + ); + + //Close button: + + $(".close").click( + function () { + $(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent + $(this).slideUp(400); + }); + return false; + } + ); + + // Alternating table rows: + + $('tbody tr:even').addClass("alt-row"); // Add class "alt-row" to even table rows + + // Check all checkboxes when the one in a table head is checked: + + $('.check-all').click( + function(){ + $(this).parent().parent().parent().parent().find("input[type='checkbox']").attr('checked', $(this).is(':checked')); + } + ); + +}); + + + diff --git a/system/adminskin/simple/js/jquery.min.js b/system/adminskin/simple/js/jquery.min.js new file mode 100644 index 0000000..bd87406 --- /dev/null +++ b/system/adminskin/simple/js/jquery.min.js @@ -0,0 +1,16 @@ +/*! + * jQuery v1.11.3 + */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
    a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
    ","
    "],area:[1,"",""],param:[1,"",""],thead:[1,"","
    "],tr:[2,"","
    "],col:[2,"","
    "],td:[3,"","
    "],_default:k.htmlSerialize?[0,"",""]:[1,"X
    ","
    "]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("'; + } + window.frames["_iframe-" + t.id].location.replace(contentsource); + } else if (contenttype == "ajax") { + sedjs.ajax.bind({ url: contentsource, method: 'GET', update: 'area-' + t.id, loading: t.id }); + } + t.contentarea.datatype = contenttype; + }, + + setupdrag: function(e) { + var d = sedjs.modal; + var t = this._parent; + d.etarget = this; + var e = window.event || e; + d.initmousex = e.clientX; + d.initmousey = e.clientY; + d.initx = parseInt(t.offsetLeft); + d.inity = parseInt(t.offsetTop); + d.width = parseInt(t.offsetWidth); + d.contentheight = parseInt(t.contentarea.offsetHeight); + if (t.contentarea.datatype == "iframe") { + t.style.backgroundColor = "#F8F8F8"; + t.contentarea.style.visibility = "hidden"; + } + document.onmousemove = d.getdistance; + document.onmouseup = function() { + if (t.contentarea.datatype == "iframe") { + t.contentarea.style.backgroundColor = "white"; + t.contentarea.style.visibility = "visible"; + } + d.stop(); + }; + return false; + }, + + getdistance: function(e) { + var d = sedjs.modal; + var etarget = d.etarget; + var e = window.event || e; + d.distancex = e.clientX - d.initmousex; + d.distancey = e.clientY - d.initmousey; + if (etarget.className == "modal-handle") + d.move(etarget._parent, e); + else if (etarget.className == "modal-resizearea") + d.resize(etarget._parent, e); + return false; + }, + + //get window viewpoint numbers + getviewpoint: function() { + var ie = document.all && !window.opera; + var domclientWidth = document.documentElement && parseInt(document.documentElement.clientWidth) || 100000; + this.standardbody = (document.compatMode == "CSS1Compat") ? document.documentElement : document.body; + this.scroll_top = (ie) ? this.standardbody.scrollTop : window.pageYOffset; + this.scroll_left = (ie) ? this.standardbody.scrollLeft : window.pageXOffset; + this.docwidth = (ie) ? this.standardbody.clientWidth : (/Safari/i.test(navigator.userAgent)) ? window.innerWidth : Math.min(domclientWidth, window.innerWidth - 16); + this.docheight = (ie) ? this.standardbody.clientHeight : window.innerHeight; + }, + + //remember certain attributes of the window when it's minimized or closed, such as dimensions, position on page + rememberattrs: function(t) { + this.getviewpoint(); + t.lastx = parseInt((t.style.left || t.offsetLeft)) - sedjs.modal.scroll_left; + t.lasty = parseInt((t.style.top || t.offsetTop)) - sedjs.modal.scroll_top; + t.lastwidth = parseInt(t.style.width); + }, + + move: function(t, e) { + t.style.left = sedjs.modal.distancex + sedjs.modal.initx + "px"; + t.style.top = sedjs.modal.distancey + sedjs.modal.inity + "px"; + }, + + resize: function(t, e) { + t.style.width = Math.max(sedjs.modal.width + sedjs.modal.distancex, 150) + "px"; + t.contentarea.style.height = Math.max(sedjs.modal.contentheight + sedjs.modal.distancey, 100) + "px"; + }, + + enablecontrols: function(e) { + var d = sedjs.modal; + var sourceobj = window.event ? window.event.srcElement : e.target; + if (/Minimize/i.test(sourceobj.getAttribute("title"))) + d.minimize(sourceobj, this._parent); + else if (/Restore/i.test(sourceobj.getAttribute("title"))) + d.restore(sourceobj, this._parent); + else if (/Close/i.test(sourceobj.getAttribute("title"))) + d.close(this._parent); + return false; + }, + + minimize: function(button, t) { + sedjs.modal.rememberattrs(t); + button.setAttribute("src", sedjs.modal.imagefiles[2]); + button.setAttribute("title", "Restore"); + t.state = "minimized"; + t.contentarea.style.display = "none"; + t.statusarea.style.display = "none"; + if (typeof t.minimizeorder == "undefined") { + sedjs.modal.minimizeorder++; + t.minimizeorder = sedjs.modal.minimizeorder; + } + t.style.left = "10px"; + t.style.width = "200px"; + var windowspacing = t.minimizeorder * 10; + t.style.top = sedjs.modal.scroll_top + sedjs.modal.docheight - (t.handle.offsetHeight * t.minimizeorder) - windowspacing + "px"; + }, + + restore: function(button, t) { + sedjs.modal.getviewpoint(); + button.setAttribute("src", sedjs.modal.imagefiles[0]); + button.setAttribute("title", "Minimize"); + t.state = "fullview"; + t.style.display = "block"; + t.contentarea.style.display = "block"; + if (t.resizeBool) + t.statusarea.style.display = "block"; + t.style.left = parseInt(t.lastx) + sedjs.modal.scroll_left + "px"; + t.style.top = parseInt(t.lasty) + sedjs.modal.scroll_top + "px"; + t.style.width = parseInt(t.lastwidth) + "px"; + }, + + close: function(t) { + try { + var closewinbol = t.onclose(); + } catch (err) { + var closewinbol = true; + } finally { + if (typeof closewinbol == "undefined") { + alert("An error has occured somwhere inside your \"onclose\" event handler"); + var closewinbol = true; + } + } + if (closewinbol) { + if (t.state != "minimized") + sedjs.modal.rememberattrs(t); + if (window.frames["_iframe-" + t.id]) + window.frames["_iframe-" + t.id].location.replace("about:blank"); + else + t.contentarea.innerHTML = ""; + t.style.display = "none"; + t.isClosed = true; + document.body.removeChild(t); // ??? + } + return closewinbol; + }, + + //Sets the opacity of targetobject based on the passed in value setting (0 to 1 and in between) + setopacity: function(targetobject, value) { + if (!targetobject) + return; + if (targetobject.filters && targetobject.filters[0]) { + if (typeof targetobject.filters[0].opacity == "number") + targetobject.filters[0].opacity = value * 100; + else + targetobject.style.filter = "alpha(opacity=" + value * 100 + ")"; + } else if (typeof targetobject.style.MozOpacity != "undefined") + targetobject.style.MozOpacity = value; + else if (typeof targetobject.style.opacity != "undefined") + targetobject.style.opacity = value; + }, + + //Sets focus to the currently active window + setfocus: function(t) { + this.zIndexvalue++; + t.style.zIndex = this.zIndexvalue; + t.isClosed = false; + this.setopacity(this.lastactivet.handle, 0.5); + this.setopacity(t.handle, 1); + this.lastactivet = t; + }, + + show: function(t) { + if (t.isClosed) { + alert("Modal Window has been closed, so nothing to show. Open/Create the window again."); + return; + } + if (t.lastx) + sedjs.modal.restore(t.controls.firstChild, t); + else + t.style.display = "block"; + this.setfocus(t); + t.state = "fullview"; + }, + + hide: function(t) { + t.style.display = "none"; + }, + + stop: function() { + sedjs.modal.etarget = null; + document.onmousemove = null; + document.onmouseup = null; + }, + + //assign a function to execute to an event handler (ie: onunload) + addEvent: function(target, functionref, tasktype) { + var tasktype = (window.addEventListener) ? tasktype : "on" + tasktype; + if (target.addEventListener) + target.addEventListener(tasktype, functionref, false); + else if (target.attachEvent) + target.attachEvent(tasktype, functionref); + }, + + cleanup: function() { + for (var i = 0; i < sedjs.modal.tobjects.length; i++) { + sedjs.modal.tobjects[i].handle._parent = sedjs.modal.tobjects[i].resizearea._parent = sedjs.modal.tobjects[i].controls._parent = null; + } + window.onload = null; + } + }, + + setActiveStyleSheet: function(title) {       + var i, a, main;       + for (i = 0; + (a = document.getElementsByTagName("link")[i]); i++) {         if (a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title"))         {                   a.disabled = true;                   if (a.getAttribute("title") == title) a.disabled = false;           }       } + }, + + getActiveStyleSheet: function() {     + var i, a;       + for (i = 0; + (a = document.getElementsByTagName("link")[i]); i++)     {             if (a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled)         return a.getAttribute("title");       }     + return null; + }, + + getPreferredStyleSheet: function() {       + var i, a;       + for (i = 0; + (a = document.getElementsByTagName("link")[i]); i++)     {             if (a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("rel").indexOf("alt") == -1 && a.getAttribute("title"))         return a.getAttribute("title");       }       + return null; + }, + + createCookie: function(name, value, days) {       + if (days)     {         + var date = new Date();         + date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));         + var expires = "; expires=" + date.toGMTString();       + }       + else expires = "";       + document.cookie = name + "=" + value + expires + "; path=/"; + }, + + readCookie: function(name) {       + var nameEQ = name + "=";       + var ca = document.cookie.split(';');       + for (var i = 0; i < ca.length; i++)     {             var c = ca[i];             while (c.charAt(0) == ' ') c = c.substring(1, c.length);             if (c.indexOf(nameEQ) == 0)         return c.substring(nameEQ.length, c.length);       }       + return null; + }, + + antispam: function() { + if (document.getElementById('anti1')) { + document.getElementById('anti1').value += document.getElementById('anti2').value; + } + }, + + genSEF: function(from, to, allow_slashes) { + var str = from.value.toLowerCase(); + var slash = ""; + if (allow_slashes) slash = "\\/"; + + var LettersFrom = "абвгдезиклмнопрстуфыэйхё"; + var LettersTo = "abvgdeziklmnoprstufyejxe"; + var Consonant = "бвгджзйклмнпрстфхцчшщ"; + var Vowel = "аеёиоуыэюя"; + var BiLetters = { + "ж": "zh", + "ц": "ts", + "ч": "ch", + "ш": "sh", + "щ": "sch", + "ю": "ju", + "я": "ja" + }; + + str = str.replace(/[_\s\.,?!\[\](){}]+/g, "_"); + str = str.replace(/-{2,}/g, "--"); + str = str.replace(/_\-+_/g, "--"); + + str = str.toLowerCase(); + + //here we replace ъ/ь + str = str.replace( + new RegExp("(ь|ъ)([" + Vowel + "])", "g"), "j$2"); + str = str.replace(/(ь|ъ)/g, ""); + + //transliterating + var _str = ""; + for (var x = 0; x < str.length; x++) + if ((index = LettersFrom.indexOf(str.charAt(x))) > -1) + _str += LettersTo.charAt(index); + else + _str += str.charAt(x); + str = _str; + + var _str = ""; + for (var x = 0; x < str.length; x++) + if (BiLetters[str.charAt(x)]) + _str += BiLetters[str.charAt(x)]; + else + _str += str.charAt(x); + str = _str; + + str = str.replace(/j{2,}/g, "j"); + + str = str.replace(new RegExp("[^" + slash + "0-9a-z_\\-]+", "g"), ""); + + to.value = str; + }, + + /*= Add poll option */ + add_poll_option: function(apo) { + let delete_button = ''; + let elem = document.querySelectorAll(apo); + let last = elem[elem.length - 1]; + let clone = last.cloneNode(true); + if (clone.querySelector('.poll-option-delete') == null) clone.innerHTML += delete_button; + let num = clone.querySelector('.num').innerHTML; + clone.querySelector('.num').innerHTML = parseInt(num) + 1; + clone.querySelector('input').value = ''; + clone.querySelector('input').setAttribute('name', 'poll_option[]'); + clone.querySelector('input').setAttribute('value', ''); + last.after(clone); + }, + + /*= Remove poll option */ + remove_poll_option: function(apo) { + let root = apo.parentNode; + root.parentNode.removeChild(root); + }, + + /*= Copy url from href */ + copyurl: function(el) { + event.preventDefault(); + var cpLink = el.getAttribute('href'); + var dummy = document.createElement("input"); + document.body.appendChild(dummy); + dummy.setAttribute('value', cpLink); + dummy.select(); + document.execCommand('copy'); + document.body.removeChild(dummy); + }, + + /*= Auto set file title from file name without extension */ + autofiletitle: function() { + var fileUpload = document.getElementsByClassName('file'); + for (var i = 0; i < fileUpload.length; i++) { + fileUpload[i].onchange = function() { + var filename = this.value; + var inputFileTitleName = this.name.replace('userfile', 'ntitle'); + var k = filename.split('\\').pop().split('/').pop(); + var a = k.split("."); + if (a.length === 1 || (a[0] === "" && a.length === 2)) { + return ""; + } + document.getElementsByName(inputFileTitleName)[0].value = a[0]; + } + } + } + +}; + +function addLoadEvent(funct) { + var oldonload = window.onload; + if (typeof window.onload != 'function') { + window.onload = funct; + } else { + window.onload = function() { + oldonload(); + funct(); + } + } +} + +onloadfunct = function() { + sedjs.sedtabs(); + sedjs.autofiletitle(); + // sedjs.sedtabs({c:"sedtabs2", e:"click", s:"selected", d:0, f:false }); //Example other tab conteiner + sedjs.getrel("sedthumb"); + var cookie = sedjs.readCookie("style");   + var title = cookie ? cookie : sedjs.getPreferredStyleSheet();   + sedjs.setActiveStyleSheet(title); +}; + +addLoadEvent(onloadfunct); + +window.onunload = function() {   + var title = sedjs.getActiveStyleSheet();   + sedjs.createCookie("style", title, 365); + //sedjs.modal.cleanup(); +}; \ No newline at end of file diff --git a/system/lang/en/admin.lang.php b/system/lang/en/admin.lang.php new file mode 100644 index 0000000..1e15c5c --- /dev/null +++ b/system/lang/en/admin.lang.php @@ -0,0 +1,504 @@ +You should double check that you uploaded all the files from the newest package."; // New in v130 +$L['upg_codeissame'] = "The code and SQL versions are matching."; // New in v130 +$L['upg_upgradenow'] = "It is highly recommended to upgrade the SQL database right now, click here to upgrade !"; // New in v130 +$L['upg_upgradenotavail'] = "There's no upgrade available for these version numbers."; // New in v130 +$L['upg_manual'] = "If you prefer to manually upgrade the database, the SQL scripts are in the folder /docs/upgrade/."; // New in v130 +$L['upg_success'] = "The upgrade was successful, click here to continue..."; // New in v130 +$L['upg_failure'] = "The upgrade failed, click here to continue..."; // New in v130 +$L['upg_force'] = "For some reasons, it may happen that the Seditio version number written in the SQL database is wrong. Below is a button to force the SQL version number, this will only tag the SQL database, it will NOT perform any other change.
    Force the SQL version number to : "; // New in v130 + +/* ====== General ====== */ + +$L['editdeleteentries'] = "Edit or delete entries"; +$L['viewdeleteentries'] = "View or delete entries"; +$L['addnewentry'] = "Add a new entry"; +$L['adm_purgeall'] = "Purge all"; +$L['adm_listisempty'] = "List is empty"; +$L['adm_totalsize'] = "Total size"; +$L['adm_showall'] = "Show all"; +$L['adm_area'] = "Area"; +$L['adm_option'] = "Option"; +$L['adm_setby'] = "Set by"; +$L['adm_more'] = "More tools..."; +$L['adm_from'] = "From"; +$L['adm_to'] = "To"; +$L['adm_confirm'] = "Press this button to confirm : "; +$L['adm_done'] = "Done"; +$L['adm_failed'] = "Failed"; +$L['adm_warnings'] = "Warnings"; +$L['adm_valqueue'] = "Waiting for validation"; +$L['adm_required'] = "(Required)"; +$L['adm_clicktoedit'] = "(Click to edit)"; +$L['adm_manage'] = "Manage"; // New in v150 +$L['adm_pagemanager'] = "Page manager"; // New in v177 +$L['adm_module_name'] = "Module name"; // New in v178 +$L['adm_tool_name'] = "Tool name"; // New in v178 + +/* ====== Banlist ====== */ + +$L['adm_ipmask'] = "IP mask"; +$L['adm_emailmask'] = "Email mask"; +$L['adm_neverexpire'] = "Never expire"; +$L['adm_help_banlist'] = "Samples for IP masks :194.31.13.41 , 194.31.13.* , 194.31.*.* , 194.*.*.*
    Samples for email masks : @hotmail.com, @yahoo (Wildcards are not supported)
    A single entry can contain one IP mask or one email mask or both.
    IPs are filtered for each and every page displayed, and email masks at user registration only."; + +/* ====== Cache ====== */ + +$L['adm_internalcache'] = "Internal cache"; +$L['adm_help_cache'] = "Not available"; + +/* ====== Configuration ====== */ + +$L['adm_help_config'] = "Not available"; +$L['cfg_adminemail'] = array("Administrator's email", "Required"); +$L['cfg_maintitle'] = array("Site title", "Main title for the website, required"); +$L['cfg_subtitle'] = array("Description", "Optional, will be displayed after the title of the site"); +$L['cfg_mainurl'] = array("Site URL", "With http://, and without ending slash !"); +$L['cfg_clustermode'] = array("Cluster of servers", "Set to yes if it's a load balanced setup."); // New in v125 +$L['cfg_hostip'] = array("Server IP", "The IP of the server, optional."); +$L['cfg_gzip'] = array("Gzip", "Gzip compression of the HTML output"); +$L['cfg_cache'] = array("Internal cache", "Keep it enabled for better performance"); +$L['cfg_devmode'] = array("Debugging mode", "Don't let this enabled on live sites"); +$L['cfg_doctypeid'] = array("Document Type", "<!DOCTYPE> of the HTML layout"); +$L['cfg_charset'] = array("HTML charset", ""); +$L['cfg_cookiedomain'] = array("Domain for cookies", "Default: empty"); +$L['cfg_cookiepath'] = array("Path for cookies", "Default: empty"); +$L['cfg_cookielifetime'] = array("Maximum cookie lifetime", "In seconds"); +$L['cfg_metakeywords'] = array("HTML Meta keywords (comma separated)", "Search engines"); +$L['cfg_disablesysinfos'] = array("Turn off page creation time", "In footer.tpl"); +$L['cfg_keepcrbottom'] = array("Keep the copyright notice in the tag {FOOTER_BOTTOMLINE}", "In footer.tpl"); +$L['cfg_showsqlstats'] = array("Show SQL queries statistics", "In footer.tpl"); +$L['cfg_shieldenabled'] = array("Enable the Shield", "Anti-spamming and anti-hammering"); +$L['cfg_shieldtadjust'] = array("Adjust Shield timers (in %)", "The higher, the harder to spam"); +$L['cfg_shieldzhammer'] = array("Anti-hammer after * fast hits", "The smaller, the faster the auto-ban 3 minutes happens"); +$L['cfg_maintenance'] = array("Maintenance mode", "Wake up the technical work on the site"); // New in v175 +$L['cfg_maintenancelevel'] = array("User Access Level", "Select the level of access users"); // New in v175 +$L['cfg_maintenancereason'] = array("Reason maintenance", "Describe the cause of maintenance"); // New in v175 +$L['cfg_multihost'] = array("Multihost mode", "To enable multiple hosts"); // New in v175 +$L['cfg_absurls'] = array("Absolute URL", "Enables the use of the absolute URL"); // New in v175 +$L['cfg_sefurls'] = array("SEF URLs", "To enables SEF URLs on the site"); // New in v175 +$L['cfg_sefurls301'] = array("301 redirect to the SEF URLs", "Enable 301 redirect from the old URL to SEF URLs"); // New in v175 +$L['cfg_dateformat'] = array("Main date mask", "Default: Y-m-d H:i"); +$L['cfg_formatmonthday'] = array("Short date mask", "Default: m-d"); +$L['cfg_formatyearmonthday'] = array("Medium date mask", "Default: Y-m-d"); +$L['cfg_formatmonthdayhourmin'] = array("Forum date mask", "Default: m-d H:i"); +$L['cfg_servertimezone'] = array("Server time zone", "Offset of the server from the GMT+00"); +$L['cfg_defaulttimezone'] = array("Default time zone", "For guests and new members, from -12 to +12"); +$L['cfg_timedout'] = array("Idle delay, in seconds", "After this delay, user is away"); +$L['cfg_maxusersperpage'] = array("Maximum lines in userlist", ""); +$L['cfg_regrequireadmin'] = array("Administrators must validate new accounts", ""); +$L['cfg_regnoactivation'] = array("Skip email check for new users", "\"No\"recommended, for security reasons"); +$L['cfg_useremailchange'] = array("Allow users to change their email address", "\"No\" recommended, for security reasons"); +$L['cfg_usertextimg'] = array("Allow images and HTML in user signature", "\"No\" recommended, for security reasons"); +$L['cfg_av_maxsize'] = array("Avatar, maximum file size", "Default: 8000 bytes"); +$L['cfg_av_maxx'] = array("Avatar, maximum width", "Default: 64 pixels"); +$L['cfg_av_maxy'] = array("Avatar, maximum height", "Default: 64 pixels"); +$L['cfg_usertextmax'] = array("Maximum length for user signature", "Default: 300 chars"); +$L['cfg_sig_maxsize'] = array("Signature, maximum file size", "Default: 50000 bytes"); +$L['cfg_sig_maxx'] = array("Signature, maximum width", "Default: 468 pixels"); +$L['cfg_sig_maxy'] = array("Signature, maximum height", "Default: 60 pixels"); +$L['cfg_ph_maxsize'] = array("Photo, maximum file size", "Default: 8000 bytes"); +$L['cfg_ph_maxx'] = array("Photo, maximum width", "Default: 96 pixels"); +$L['cfg_ph_maxy'] = array("Photo, maximum height", "Default: 96 pixels"); +$L['cfg_maxrowsperpage'] = array("Maximum lines in lists", ""); +$L['cfg_showpagesubcatgroup'] = array("Show in groups pages from the subsections", ""); //New Sed171 +$L['cfg_genseourls'] = array("Generate SEO url (auto gen* page alias)? ", ""); //New Sed178 +$L['cfg_maxcommentsperpage'] = array("Maximum comments per page", ""); //New Sed173 +$L['cfg_commentsorder'] = array("Sorting order for comments", "ASC - new bottom, DESC - newest on top"); //New Sed173 +$L['cfg_maxtimeallowcomedit'] = array("The time allowed to edit comments", "In minutes, if 0 - editing is prohibited"); //New Sed173 +$L['cfg_showcommentsonpage'] = array("Show comments on pages", "By default displays comment on the page"); //New Sed171 +$L['cfg_maxcommentlenght'] = array("The maximum length of a comment", "Default: 2000 characters"); //New Sed175 +$L['cfg_countcomments'] = array("Count comments", "Display the count of comments near the icon"); +$L['cfg_hideprivateforums'] = array("Hide private forums", ""); +$L['cfg_hottopictrigger'] = array("Posts for a topic to be 'hot'", ""); +$L['cfg_maxtopicsperpage'] = array("Maximum topics or posts per page", ""); +$L['cfg_antibumpforums'] = array("Anti-bump protection", "Will prevent users from posting twice in a row in the same topic"); +$L['cfg_pfsuserfolder'] = array("Folder storage mode", "If enabled, will store the user files in subfolders /datas/users/USERID/... instead of prepending the USERID to the filename. Must be set at the FIRST setup of the site ONLY. As soon as a file is uploaded to a PFS, it's too late to change this."); +$L['cfg_th_amode'] = array("Thumbnails generation", ""); +$L['cfg_th_x'] = array("Thumbnails, width", "Default: 112 pixels"); +$L['cfg_th_y'] = array("Thumbnails, height", "Default: 84 pixel, recommended : Width x 0.75"); +$L['cfg_th_border'] = array("Thumbnails, border size", "Default: 4 pixels"); +$L['cfg_th_keepratio'] = array("Thumbnail, keep ratio ?", ""); +$L['cfg_th_jpeg_quality'] = array("Thumbnails, Jpeg quality", "Default: 85"); +$L['cfg_th_colorbg'] = array("Thumbnails, border color", "Default: 000000, hex color code"); +$L['cfg_th_colortext'] = array("Thumbnails, text color", "Default: FFFFFF, hex color code"); +$L['cfg_th_rel'] = array("Thumbnail rel attribute", "Default: sedthumb"); // New in v175 +$L['cfg_th_dimpriority'] = array("Thumbnails, resize by", "Default: Width"); // New in v160 +$L['cfg_th_textsize'] = array("Thumbnails, size of the text", ""); +$L['cfg_pfs_filemask'] = array("File names based on pattern of time", "Generate file names on a pattern of time"); // New in sed172 + +$L['cfg_disable_gallery'] = array("Disable the gallery", ""); // New in v150 +$L['cfg_gallery_gcol'] = array("Number of columns for the galleries", "Default : 4"); // New in v150 +$L['cfg_gallery_bcol'] = array("Number of columns for the pictures", "Default : 6"); // New in v150 +$L['cfg_gallery_logofile'] = array("Png/jpeg/Gif logo that will be added to all the new PFS images", "Leave empty to disable"); // New in v150 +$L['cfg_gallery_logopos'] = array("Position of the logo in the PFS images", "Default : Bottom left"); // New in v150 +$L['cfg_gallery_logotrsp'] = array("Merging level for the logo in %", "Default : 50"); // New in v150 +$L['cfg_gallery_logojpegqual'] = array("Quality of the final image afer the logo is inserted, if it's a Jpeg", "Default : 90"); // New in v150 +$L['cfg_gallery_imgmaxwidth'] = array("Max width in pixel for a picture displayed, if it's larger a sized-down copy will be processed", ""); // New in v150 + +$L['cfg_pm_maxsize'] = array("Maximum length for messages", "Default: 10000 chars"); +$L['cfg_pm_allownotifications'] = array("Allow PM notifications by email", ""); +$L['cfg_disablehitstats'] = array("Disable hit statistics", "Referers and hits per day"); +$L['cfg_disablereg'] = array("Disable registration process", "Prevent users from registering new accounts"); +$L['cfg_disablewhosonline'] = array("Disable who's online", "Automatically enabled if you turn on the Shield"); +$L['cfg_defaultcountry'] = array("Default country for the new users", "2 letters country code"); // New in v130 +$L['cfg_forcedefaultskin'] = array("Force the default skin for all users", ""); +$L['cfg_forcedefaultlang'] = array("Force the default language for all users", ""); +$L['cfg_separator'] = array("Generic separator", "Default:>"); +$L['cfg_menu1'] = array("Menu slot #1
    {PHP.cfg.menu1} in all tpl files", ""); +$L['cfg_menu2'] = array("Menu slot #2
    {PHP.cfg.menu2} in all tpl files", ""); +$L['cfg_menu3'] = array("Menu slot #3
    {PHP.cfg.menu3} in all tpl files", ""); +$L['cfg_menu4'] = array("Menu slot #4
    {PHP.cfg.menu4} in all tpl files", ""); +$L['cfg_menu5'] = array("Menu slot #5
    {PHP.cfg.menu5} in all tpl files", ""); +$L['cfg_menu6'] = array("Menu slot #6
    {PHP.cfg.menu6} in all tpl files", ""); +$L['cfg_menu7'] = array("Menu slot #7
    {PHP.cfg.menu7} in all tpl files", ""); +$L['cfg_menu8'] = array("Menu slot #8
    {PHP.cfg.menu8} in all tpl files", ""); +$L['cfg_menu9'] = array("Menu slot #9
    {PHP.cfg.menu9} in all tpl files", ""); +$L['cfg_topline'] = array("Top line
    {HEADER_TOPLINE} in header.tpl", ""); +$L['cfg_banner'] = array("Banner
    {HEADER_BANNER} in header.tpl", ""); +$L['cfg_motd'] = array("Message of the day
    {NEWS_MOTD} in index.tpl", ""); +$L['cfg_bottomline'] = array("Bottom line
    {FOOTER_BOTTOMLINE} in footer.tpl", ""); +$L['cfg_freetext1'] = array("Freetext Slot #1
    {PHP.cfg.freetext1} in all tpl files", ""); +$L['cfg_freetext2'] = array("Freetext Slot #2
    {PHP.cfg.freetext2} in all tpl files", ""); +$L['cfg_freetext3'] = array("Freetext Slot #3
    {PHP.cfg.freetext3} in all tpl files", ""); +$L['cfg_freetext4'] = array("Freetext Slot #4
    {PHP.cfg.freetext4} in all tpl files", ""); +$L['cfg_freetext5'] = array("Freetext Slot #5
    {PHP.cfg.freetext5} in all tpl files", ""); +$L['cfg_freetext6'] = array("Freetext Slot #6
    {PHP.cfg.freetext6} in all tpl files", ""); +$L['cfg_freetext7'] = array("Freetext Slot #7
    {PHP.cfg.freetext7} in all tpl files", ""); +$L['cfg_freetext8'] = array("Freetext Slot #8
    {PHP.cfg.freetext8} in all tpl files", ""); +$L['cfg_freetext9'] = array("Freetext Slot #9
    {PHP.cfg.freetext9} in all tpl files", ""); +$L['cfg_extra1title'] = array("Field #1 (String), title", ""); +$L['cfg_extra2title'] = array("Field #2 (String), title", ""); +$L['cfg_extra3title'] = array("Field #3 (String), title", ""); +$L['cfg_extra4title'] = array("Field #4 (String), title", ""); +$L['cfg_extra5title'] = array("Field #5 (String), title", ""); +$L['cfg_extra6title'] = array("Field #6 (Select box), title", ""); +$L['cfg_extra7title'] = array("Field #7 (Select box), title", ""); +$L['cfg_extra8title'] = array("Field #8 (Select box), title", ""); +$L['cfg_extra9title'] = array("Field #9 (Long text), title", ""); +$L['cfg_extra1tsetting'] = array("Maximum characters in this field", ""); +$L['cfg_extra2tsetting'] = array("Maximum characters in this field", ""); +$L['cfg_extra3tsetting'] = array("Maximum characters in this field", ""); +$L['cfg_extra4tsetting'] = array("Maximum characters in this field", ""); +$L['cfg_extra5tsetting'] = array("Maximum characters in this field", ""); +$L['cfg_extra6tsetting'] = array("Values for the select box, comma separated", ""); +$L['cfg_extra7tsetting'] = array("Values for the select box, comma separated", ""); +$L['cfg_extra8tsetting'] = array("Values for the select box, comma separated", ""); +$L['cfg_extra9tsetting'] = array("Maximum length for the text", ""); +$L['cfg_extra1uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra2uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra3uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra4uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra5uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra6uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra7uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra8uchange'] = array("Editable in user profile ?", ""); +$L['cfg_extra9uchange'] = array("Editable in user profile ?", ""); +$L['cfg_disable_comments'] = array("Disable the comments", ""); +$L['cfg_disable_forums'] = array("Disable the forums", ""); +$L['cfg_disable_pfs'] = array("Disable the PFS", ""); +$L['cfg_disable_polls'] = array("Disable the polls", ""); +$L['cfg_disable_pm'] = array("Disable the private messages", ""); +$L['cfg_disable_ratings'] = array("Disable the ratings", ""); +$L['cfg_disable_page'] = array("Disable the pages", ""); +$L['cfg_disable_plug'] = array("Disable the plugins", ""); +$L['cfg_trash_prunedelay'] = array("Remove the items from the trash can after * days (Zero to keep forever)", ""); +$L['cfg_trash_comment'] = array("Use the trash can for the comments", ""); +$L['cfg_trash_forum'] = array("Use the trash can for the forums", ""); +$L['cfg_trash_page'] = array("Use the trash can for the pages", ""); +$L['cfg_trash_pm'] = array("Use the trash can for the private messages", ""); +$L['cfg_trash_user'] = array("Use the trash can for the users", ""); + +$L['cfg_parser_vid'] = array("Allow BBcodes for the videos", ""); // New in v120 +$L['cfg_parser_vid_autolink'] = array("Auto-link URLs to known video sites", ""); // New in v120 +$L['cfg_parsebbcodecom'] = array("Parse BBcode in comments and private messages", ""); +$L['cfg_parsebbcodepages'] = array("Parse BBcode in pages", ""); +$L['cfg_parsebbcodeusertext'] = array("Parse BBcode in user signature", ""); +$L['cfg_parsebbcodeforums'] = array("Parse BBcode in forums", ""); +$L['cfg_parsesmiliescom'] = array("Parse smilies in comments and private messages", ""); +$L['cfg_parsesmiliespages'] = array("Parse smilies in pages", ""); +$L['cfg_parsesmiliesusertext'] = array("Parse smilies in user signature", ""); +$L['cfg_parsesmiliesforums'] = array("Parse smilies in forums", ""); + +$L['cfg_color_group'] = array("Colorize group of users", "Default: No, for better performance"); // New in v175 + +$L['cfg_ajax'] = array("Enable AJAX", ""); // New in v175 +$L['cfg_enablemodal'] = array("Enable modal windows", ""); // New in v175 + +$L['cfg_hometitle'] = array("Homepage title", "Optional, for SEO"); // New in v179 +$L['cfg_homemetadescription'] = array("Homepage meta description", "Optional, for SEO"); // New in v179 +$L['cfg_homemetakeywords'] = array("Homepage meta keywords", "Optional, for SEO"); // New in v179 + +/* ====== HTML Meta ====== */ + +$L['cfg_defaulttitle'] = array("Default Title", "Available options: {MAINTITLE}, {SUBTITLE}"); //Sed 175 +$L['cfg_indextitle'] = array("Title for Homepage", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 179 +$L['cfg_listtitle'] = array("Title for lists of pages", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_pagetitle'] = array("Title for pages", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}, {CATEGORY}"); //Sed 175 +$L['cfg_forumstitle'] = array("Title for forums", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_userstitle'] = array("Title for users", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_pmtitle'] = array("Title for PM", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_gallerytitle'] = array("Title for gallery", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_pfstitle'] = array("Title for PFS", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); ///Sed 175 +$L['cfg_plugtitle'] = array("Title for plugins", "Available options: {MAINTITLE}, {SUBTITLE}, {TITLE}"); ///Sed 175 + +/* ====== Rss ====== */ + +$L['cfg_disable_rss'] = array("Disable RSS feeds", ""); +$L['cfg_disable_rsspages'] = array("Disable RSS feed for pages", ""); +$L['cfg_disable_rsscomments'] = array("Disable RSS feed for comments", ""); +$L['cfg_disable_rssforums'] = array("Disable RSS feed for the forums", ""); +$L['cfg_rss_timetolive'] = array("Cash time for RSS feed", "in seconds"); +$L['cfg_rss_defaultcode'] = array("Default RSS feed", "enter the category code"); +$L['cfg_rss_maxitems'] = array("The maximum number of rows in the RSS feed", ""); + +$L['adm_help_config_rss'] = "Links to open RSS feeds:
    " . $cfg['mainurl'] . "/" . "rss (by default, the output of news categories specified in the settings)
    " . $cfg['mainurl'] . "/" . "rss/pages?c=XX (XX - Category code, the last pages of the category)
    " . $cfg['mainurl'] . "/" . "rss/comments?id=XX (XX - ID page, comments page)
    " . $cfg['mainurl'] . "/" . "rss/forums (latest posts from all sections of the forum)
    " . $cfg['mainurl'] . "/" . "rss/forums?s=XX (XX - ID section, recent posts section)
    " . $cfg['mainurl'] . "/" . "rss/forums?q=XX (XX - ID topic, recent posts in the topic)
    " . $cfg['mainurl'] . "/" . "rss/forums?s=XX&q=YY (XX - ID section, YY - ID topic)"; + +/* ====== Forums ====== */ + +$L['adm_diplaysignatures'] = "Display signatures"; +$L['adm_enablebbcodes'] = "Enable BBcodes"; +$L['adm_enablesmilies'] = "Enable smilies"; +$L['adm_enableprvtopics'] = "Allow private topics"; +$L['adm_countposts'] = "Count posts"; +$L['adm_autoprune'] = "Auto-prune topics after * days"; +$L['adm_postcounters'] = "Check the counters"; +$L['adm_help_forums'] = "Not available"; +$L['adm_forum_structure'] = "Structure of the forums (categories)"; +$L['adm_forum_structure_cat'] = "Structure of the forums"; +$L['adm_help_forums_structure'] = "Not available"; +$L['adm_defstate'] = "Default state"; +$L['adm_defstate_0'] = "Folded"; +$L['adm_defstate_1'] = "Unfolded"; +$L['adm_parentcat'] = "Parent category"; // New in v172 + +/* ====== IP search ====== */ + +$L['adm_searchthisuser'] = "Search for this IP in the user database"; +$L['adm_dnsrecord'] = "DNS record for this address"; + +/* ====== Smilies ====== */ + +$L['adm_help_smilies'] = "Not available"; + +/* ====== Dictionary ====== */ + +$L['adm_dic_list'] = "Directories list"; +$L['adm_dictionary'] = "Directory"; +$L['adm_dic_title'] = "Title of the directory"; +$L['adm_dic_code'] = "Code of the directory (name of extra field)"; +$L['adm_dic_list'] = "List of the directories"; +$L['adm_dic_term_list'] = "List of terms"; +$L['adm_dic_add'] = "Add new directory"; +$L['adm_dic_edit'] = "Edit directory"; +$L['adm_dic_add_term'] = "Add a new term"; +$L['adm_dic_term_title'] = "Title of the term"; +$L['adm_dic_term_value'] = "Value of the term"; +$L['adm_dic_term_defval'] = "Make a term default?"; +$L['adm_dic_term_edit'] = "Edit term from directory"; +$L['adm_dic_children'] = "Children directory"; + +$L['adm_dic_mera'] = "Unit"; +$L['adm_dic_values'] = "List of values for directory"; + +$L['adm_dic_form_title'] = "Title for form element"; +$L['adm_dic_form_desc'] = "Text for form element"; +$L['adm_dic_form_size'] = "Size of text field"; +$L['adm_dic_form_maxsize'] = "The maximum size of text field"; +$L['adm_dic_form_cols'] = "The cols of text field"; +$L['adm_dic_form_rows'] = "The rows of text field"; + +$L['adm_dic_extra'] = "Extra field"; +$L['adm_dic_addextra'] = "Add extra field"; +$L['adm_dic_editextra'] = "Edit extra field"; +$L['adm_dic_extra_location'] = "Name of table"; +$L['adm_dic_extra_type'] = "Data type of field"; +$L['adm_dic_extra_size'] = "Length of field"; + +$L['adm_dic_comma_separat'] = "(values comma separated)"; + +$L['adm_help_dic'] = ""; //Need add + +/* ====== Menu manager ====== */ + +$L['adm_menuitems'] = "Menu items"; +$L['adm_additem'] = "Add item"; +$L['adm_position'] = "Position"; +$L['adm_confirm_delete'] = "Confirm delete?"; +$L['adm_addmenuitem'] = "Add menu item"; +$L['adm_editmenuitem'] = "Edit menu item"; +$L['adm_parentitem'] = "Parent item"; +$L['adm_url'] = "URL"; +$L['adm_activity'] = "Active?"; + +/* ====== PFS ====== */ + +$L['adm_gd'] = "GD graphical library"; +$L['adm_allpfs'] = "All PFS"; +$L['adm_allfiles'] = "All files"; +$L['adm_thumbnails'] = "Thumbnails"; +$L['adm_orphandbentries'] = "Orphan DB entries"; +$L['adm_orphanfiles'] = "Orphan files"; +$L['adm_delallthumbs'] = "Delete all thumbnails"; +$L['adm_rebuildallthumbs'] = "Delete and rebuild all thumbnails"; +$L['adm_help_pfsthumbs'] = "Not available"; +$L['adm_help_check1'] = "Not available"; +$L['adm_help_check2'] = "Not available"; +$L['adm_help_pfsfiles'] = "Not available"; +$L['adm_help_allpfs'] = "Not available"; +$L['adm_nogd'] = "The GD graphical library is not supported by this host, Seditio won't be able to create thumbnails for the PFS images. You must go into the configuration panel, tab 'Personal File Space', and set Thumbnails generation = 'Disabled'."; + +/* ====== Pages ====== */ + +$L['adm_structure'] = "Structure of the pages (categories)"; +$L['adm_syspages'] = "View the category 'system'"; +$L['adm_help_page'] = "The pages that belongs to the category 'system' are not displayed in the public listings, it's to make standalone pages."; +$L['adm_sortingorder'] = "Set a default sorting order for the categories"; +$L['adm_fileyesno'] = "File (yes/no)"; +$L['adm_fileurl'] = "File URL"; +$L['adm_filesize'] = "File size"; +$L['adm_filecount'] = "File hit count"; + +$L['adm_tpl_mode'] = "Template mode"; +$L['adm_tpl_empty'] = "Default"; +$L['adm_tpl_forced'] = "Same as"; +$L['adm_tpl_parent'] = "Same as the parent category"; + +$L['adm_enablecomments'] = "Enable Comments"; // New v173 +$L['adm_enableratings'] = "Enable Ratings"; // New v173 + +/* ====== Polls ====== */ + +$L['adm_help_polls'] = "Once you created a new poll topics, select 'Edit' to add options (choices) for this poll.
    'Delete' will delete the selected poll, the options, and all related votes.
    'Reset' will delete all votes for the selected poll. It won't delete the poll itself or the options.
    'Bump' will change the poll creation date to the current date, and so will make the poll 'current', top of the list."; +$L['adm_poll_title'] = "Poll title"; + +/* ====== Statistics ====== */ + +$L['adm_phpver'] = "PHP engine version"; +$L['adm_zendver'] = "Zend engine version"; +$L['adm_interface'] = "Interface between webserver and PHP"; +$L['adm_os'] = "Operating system"; +$L['adm_clocks'] = "Clocks"; +$L['adm_time1'] = "#1 : Raw server time"; +$L['adm_time2'] = "#2 : GMT time returned by the server"; +$L['adm_time3'] = "#3 : GMT time + server offset (Seditio reference)"; +$L['adm_time4'] = "#4 : Your local time, adjusted from your profile"; +$L['adm_help_versions'] = "Adjust the Server time zone to have the clock #3 properlly set.
    Clock #4 depends of the timezone setting in your profile.
    Clocks #1 and #2 are ignored by Seditio."; +$L['adm_log'] = "System log"; +$L['adm_infos'] = "Informations"; +$L['adm_versiondclocks'] = "Versions and clocks"; +$L['adm_checkcoreskins'] = "Check core files and skins"; +$L['adm_checkcorenow'] = "Check core files now !"; +$L['adm_checkingcore'] = "Checking core files..."; +$L['adm_checkskins'] = "Check if all files are present in skins"; +$L['adm_checkskin'] = "Check TPL files for the skin"; +$L['adm_checkingskin'] = "Checking the skin..."; +$L['adm_hits'] = "Hits"; +$L['adm_check_ok'] = "Ok"; +$L['adm_check_missing'] = "Missing"; +$L['adm_ref_lowhits'] = "Purge entries where hits are lower than 5"; +$L['adm_maxhits'] = "Maximum hitcount was reached %1\$s, %2\$s pages displayed this day."; +$L['adm_byyear'] = "By year"; +$L['adm_bymonth'] = "By month"; +$L['adm_byweek'] = "By week"; + +/* ====== Ratings ====== */ + +$L['adm_ratings_totalitems'] = "Total pages rated"; +$L['adm_ratings_totalvotes'] = "Total votes"; +$L['adm_help_ratings'] = "To reset a rating, simply delete it. It will be re-created with the first new vote."; + +/* ====== Trash can ====== */ + +$L['adm_help_trashcan'] = "Here are listed the items recently deleted by the users and moderators.
    Note that restoring a forum topic will also restore all the posts that belongs to the topic.
    And restoring a post in a deleted topic will restore the whole topic (if available) and all the child posts.
     
    Wipe : Delete the item forever.
    Restore : Put the item back in the live database."; + +/* ====== Users ====== */ + +$L['adm_defauth_members'] = "Default rights for the members"; +$L['adm_deflock_members'] = "Lock mask for the members"; +$L['adm_defauth_guests'] = "Default rights for the guests"; +$L['adm_deflock_guests'] = "Lock mask for the guests"; +$L['adm_rightspergroup'] = "Rights per group"; +$L['adm_copyrightsfrom'] = "Set the same rights as the group"; +$L['adm_maxsizesingle'] = "PFS max size for a single file (KB)"; +$L['adm_maxsizeallpfs'] = "Max size of all PFS files together (KB)"; +$L['adm_rights_allow10'] = "Allowed"; +$L['adm_rights_allow00'] = "Denied"; +$L['adm_rights_allow11'] = "Allowed and locked for security reasons"; +$L['adm_rights_allow01'] = "Denied and locked for security reasons"; +$L['adm_color'] = "Color for group"; // New in v175 + +/* ====== Plugins ====== */ + +$L['adm_extplugins'] = "Extended plugins"; +$L['adm_present'] = "Present"; +$L['adm_missing'] = "Missing"; +$L['adm_paused'] = "Paused"; +$L['adm_running'] = "Running"; +$L['adm_partrunning'] = "Partially running"; +$L['adm_notinstalled'] = "Not installed"; + +$L['adm_opt_installall'] = "Install all"; +$L['adm_opt_installall_explain'] = "This will install or reset all the parts of the plugin."; +$L['adm_opt_uninstallall'] = "Un-install all"; +$L['adm_opt_uninstallall_explain'] = "This will disable all the parts of the plugin, but won't physically remove the files."; +$L['adm_opt_pauseall'] = "Pause all"; +$L['adm_opt_pauseall_explain'] = "This will pause (disable) all the parts of the plugin."; +$L['adm_opt_unpauseall'] = "Un-pause all"; +$L['adm_opt_unpauseall_explain'] = "This will un-pause (enable) all the parts of the plugin."; + +/* ====== Private messages ====== */ + +$L['adm_pm_totaldb'] = "Private messages in the database"; +$L['adm_pm_totalsent'] = "Total of private messages ever sent"; diff --git a/system/lang/en/main.lang.php b/system/lang/en/main.lang.php new file mode 100644 index 0000000..4fc3fbe --- /dev/null +++ b/system/lang/en/main.lang.php @@ -0,0 +1,629 @@ +This post was edited by %1\$s (%2\$s, %3\$s ago)"; +$L['for_antibump'] = "The anti-bump protection is up, you cannot post twice in a row."; +$L['for_mod_clear'] = "Clear the ratings"; // New in v160 +$L['for_mod_force'] = "Force the rating to "; // New in v160 + +$L['for_quickpost'] = "Quick response"; // New in v178 +$L['for_post_text'] = "Текст поста"; // New in v178 + +/* ====== List ====== */ + +$L['lis_submitnew'] = "Submit a new entry"; + +/* ====== Messages ====== */ + +// It's in message.lang.php + +/* ====== Pages ====== */ + +$L['pag_catmissing'] = "The category code is missing"; +$L['pag_titletooshort'] = "The title is too short or missing"; +$L['pag_desctooshort'] = "The description is too short or missing"; +$L['pag_authortooshort'] = "The author name is too short or missing"; +$L['pagadd_title'] = "New page submission form"; +$L['pagadd_subtitle'] = "Submit a new page"; +$L['paged_title'] = "Page properties"; +$L['paged_subtitle'] = "Update values for this page"; + +/* ====== Personal file space ====== */ + +$L['pfs_title'] = "My Personal File Space"; +$L['pfs_filetoobigorext'] = "The upload failed, this file is too big maybe, or the extension is not allowed ?"; +$L['pfs_fileexists'] = "The upload failed, there's already a file with this name ?"; +$L['pfs_filelistempty'] = "List is empty."; +$L['pfs_folderistempty'] = "This folder is empty."; +$L['pfs_totalsize'] = "Total size"; +$L['pfs_maxspace'] = "Maximum space allowed"; +$L['pfs_maxsize'] = "Maximum size for a file"; +$L['pfs_filesintheroot'] = "File(s) in the root"; +$L['pfs_filesinthisfolder'] = "File(s) in this folder"; +$L['pfs_newfile'] = "Upload a file :"; +$L['pfs_newfolder'] = "Create a new folder :"; +$L['pfs_editfolder'] = "Editing a folder"; +$L['pfs_editfile'] = "Editing a file"; +$L['pfs_extallowed'] = "Extensions allowed"; + +$L['pfs_insertasthumbnail'] = "Insert as thumbnail"; // New in v175 +$L['pfs_insertasimage'] = "Insert as full size image"; // New in v175 +$L['pfs_insertaslink'] = "Insert as a link to the file"; // New in v175 +$L['pfs_multiuploading'] = "Multiple File Upload"; // New in v175 + +$L['pfs_setassample'] = "Set as sample"; // New in v150 +$L['pfs_addlogo'] = "Add the logo"; // New in v150 +$L['pfs_resize'] = "Resize if larger than %1\$s pixels"; // New in v150 + +/* ====== Plug ====== */ + +// Empty + +/* ====== Pm ====== */ + +$L['pm_titletooshort'] = "The title is too short or missing"; +$L['pm_bodytooshort'] = "The body of the private message is too short or missing"; +$L['pm_bodytoolong'] = "The body of the private message is too long, " . $cfg['pm_maxsize'] . " chars maximum"; +$L['pm_wrongname'] = "At least one recipient was wrong, and so removed from the list"; +$L['pm_toomanyrecipients'] = "%1\$s recipients maximum please"; +$L['pmsend_title'] = "Send a new private message"; +$L['pmsend_subtitle'] = ""; +$L['pm_sendnew'] = "Send a new private message"; +$L['pm_inbox'] = "In-box"; +$L['pm_inboxsubtitle'] = "Private messages, newest is at top"; +$L['pm_sentbox'] = "Sent-box"; +$L['pm_sentboxsubtitle'] = "Messages sent and not yet displayed by the recipient"; +$L['pm_archives'] = "Archives"; +$L['pm_arcsubtitle'] = "Old messages, newest is at top"; +$L['pm_replyto'] = "Reply to this user"; +$L['pm_putinarchives'] = "Put in archives"; +$L['pm_notifytitle'] = "New private message"; +$L['pm_notify'] = "Hi %1\$s,\n\nYou are receiving this email because there is a new private message in your inbox.\nThe sender is : %2\$s\nClick this link to read it : %3\$s"; +$L['pm_multiplerecipients'] = "This private messages was also sent to %1\$s other recipient(s)."; + +/* ====== Polls ====== */ + +$L['polls_viewresults'] = "View results"; +$L['polls_viewarchives'] = "View all polls"; +$L['polls_Vote'] = "Vote"; +$L['polls_votes'] = "votes"; +$L['polls_since'] = "since"; +$L['polls_alreadyvoted'] = "You've already voted for this poll."; +$L['polls_notyetvoted'] = "You can vote by clicking a line above."; +$L['polls_votecasted'] = "Done, vote succesfully recorded"; +$L['polls_add'] = "Add poll"; +$L['polls_edit'] = "Edit poll"; +$L['polls_title'] = "Poll title"; +$L['polls_option'] = "Poll option"; +$L['polls_addoption'] = "Add poll option"; +$L['polls_options'] = "Poll options"; +$L['polls_emptytitle'] = "Poll title is empty or there are less than 2 answer options"; + +/* ====== Ratings ====== */ + +$L['rat_choice1'] = "Very poor"; +$L['rat_choice2'] = "Poor"; +$L['rat_choice3'] = "Not that bad"; +$L['rat_choice4'] = "Fair"; +$L['rat_choice5'] = "Average"; +$L['rat_choice6'] = "Almost good"; +$L['rat_choice7'] = "Good"; +$L['rat_choice8'] = "Very good"; +$L['rat_choice9'] = "Excellent"; +$L['rat_choice10'] = "Perfect"; +$L['rat_votecasted'] = "Done, vote successfully recorded"; +$L['rat_since'] = "since"; +$L['rat_notyetrated'] = "Not yet rated"; +$L['rat_alreadyvoted'] = "You've already voted for this item."; +$L['rat_registeredonly'] = "Only registered users can rate items."; + +$L['rat_disable'] = "Rating change is disabled!"; // New in v173 + +/* ====== Users ====== */ + +$L['use_title'] = "Users"; +$L['use_subtitle'] = "Registered members"; +$L['useed_accountactivated'] = "Account activated"; +$L['useed_email'] = "You are receiving this email because an administrator activated your account.\nYou may now login using the username and password you received in a previous email.\n\n"; +$L['useed_title'] = "Edit"; +$L['useed_subtitle'] = " "; +$L['use_byfirstletter'] = "Name starting by"; +$L['use_allusers'] = "All users"; +$L['use_allbannedusers'] = "Users banned"; +$L['use_allinactiveusers'] = "Users inactive"; + +$L['pro_title'] = "Profile"; +$L['pro_subtitle'] = "Your personal account"; +$L['pro_passtoshort'] = "The password must be at least 4 chars long and must consist of alphanumerical characters and underscore only."; +$L['pro_passdiffer'] = "The 2 password fields do not match"; +$L['pro_wrongpass'] = "You didn't enter your present password, or it's wrong"; +$L['pro_avatarsupload'] = "Upload an avatar"; +$L['pro_sigupload'] = "Upload a signature"; +$L['pro_photoupload'] = "Upload a photography"; +$L['pro_avatarspreset'] = "...or click here to display a gallery of pre-loaded avatars"; +$L['pro_avatarschoose'] = "Click an image below to set it as your own avatar"; +$L['pro_avataruploadfailed'] = "The upload failed, delete the old avatar before to free the slot !"; + +/* ====== Rss ====== */ + +$L['rss_lastforums'] = "Latest on forums"; // New in v173 +$L['rss_lastsections'] = "Latest posts in the forum: "; // New in v173 +$L['rss_lasttopics'] = "Last post in the topic: "; // New in v173 +$L['rss_commentauthor'] = "User Comments"; // New in v173 +$L['rss_lastcomments'] = "Recent Comments"; // New in v173 + +/* ====== Metadata information ====== */ + +$L['mt_title'] = "Title"; // New in v175 +$L['mt_description'] = "Meta description"; // New in v175 +$L['mt_keywords'] = "Meta keywords"; // New in v175 + +/* ====== Captcha Errors ====== */ +$L['captcha_error_many_incorrect'] = "You have entered too many incorrect captchas! Contact your administrator for help!"; +$L['captcha_error_you_robot_or_too_fast'] = "You or a robot or are entering captcha too fast!"; +$L['captcha_error_go_bad_robot'] = "Robot, go away!"; +$L['captcha_error_incorrect'] = "Incorrect captcha!"; +$L['captcha_error_hacker_go_home'] = "Hacker, go away!"; + +$sed_translit = array( + //cyr + 'А' => 'A', 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Ѓ' => 'G', + 'Ґ' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'YO', 'Є' => 'YE', + 'Ж' => 'ZH', 'З' => 'Z', 'Ѕ' => 'Z', 'И' => 'I', 'Й' => 'J', + 'Ј' => 'J', 'І' => 'I', 'Ї' => 'YI', 'К' => 'K', 'Ќ' => 'K', + 'Л' => 'L', 'Љ' => 'L', 'М' => 'M', 'Н' => 'N', 'Њ' => 'N', + 'О' => 'O', 'П' => 'P', 'Р' => 'R', 'С' => 'S', 'Т' => 'T', + 'У' => 'U', 'Ў' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'TS', + 'Ч' => 'CH', 'Џ' => 'DH', 'Ш' => 'SH', 'Щ' => 'SHH', 'Ъ' => '', + 'Ы' => 'Y', 'Ь' => '', 'Э' => 'E', 'Ю' => 'YU', 'Я' => 'YA', + 'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'ѓ' => 'g', + 'ґ' => 'g', 'д' => 'd', 'е' => 'e', 'ё' => 'yo', 'є' => 'ye', + 'ж' => 'zh', 'з' => 'z', 'ѕ' => 'z', 'и' => 'i', 'й' => 'j', + 'ј' => 'j', 'і' => 'i', 'ї' => 'yi', 'к' => 'k', 'ќ' => 'k', + 'л' => 'l', 'љ' => 'l', 'м' => 'm', 'н' => 'n', 'њ' => 'n', + 'о' => 'o', 'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', + 'у' => 'u', 'ў' => 'u', 'ф' => 'f', 'х' => 'h', 'ц' => 'ts', + 'ч' => 'ch', 'џ' => 'dh', 'ш' => 'sh', 'щ' => 'shh', 'ъ' => '', + 'ы' => 'y', 'ь' => '', 'э' => 'e', 'ю' => 'yu', 'я' => 'ya', + //turk + 'Ç' => 'c', 'Ş' => 's', 'Ğ' => 'g', 'Ü' => 'u', 'İ' => 'i', + 'Ö' => 'o', 'ç' => 'c', 'ş' => 's', 'ğ' => 'g', 'ü' => 'u', + 'ö' => 'o', 'ı' => 'i', '+' => 'plus', '#' => 'sharp' +); + +$sed_months_list = array( + 1 => 'january', 2 => 'february', 3 => 'march', 4 => 'april', + 5 => 'may', 6 => 'june', 7 => 'july', 8 => 'august', + 9 => 'september', 10 => 'october', 11 => 'november', 12 => 'december' +); + +$sed_daysweek_list = array( + 'sunday', 'monday', 'tuesday', 'wednesday', + 'thursday', 'friday', 'saturday' +); diff --git a/system/lang/en/message.lang.php b/system/lang/en/message.lang.php new file mode 100644 index 0000000..6f569f9 --- /dev/null +++ b/system/lang/en/message.lang.php @@ -0,0 +1,122 @@ +and please confirm the registration process
    by clicking the URL in the body of the message ...
    Until this, your account is marked as 'Inactive' in the user list."; +$L['msg106_0'] = "Registration completed"; +$L['msg106_1'] = "Welcome, your account is now valid and activated.
    You're now able to login with your password."; +$L['msg109_0'] = "User deleted"; +$L['msg109_1'] = "Done, user deleted."; +$L['msg113_0'] = "Profile updated"; +$L['msg113_1'] = "Done, changes applied to your account."; +$L['msg117_0'] = "Registration disabled"; +$L['msg117_1'] = "Registration for new users is disabled."; +$L['msg118_0'] = "Registration done (1st step)"; +$L['msg118_1'] = "Your account is currently inactive,
    the site administrator will need to activate it before you can log in.
    You will receive another email when this has occured."; +$L['msg151_0'] = "Login failed (wrong name or password)"; +$L['msg151_1'] = "Error, the user name you provided isn't in the database or the password do not match !"; +$L['msg152_0'] = "Login failed (account isn't activated)"; +$L['msg152_1'] = "Error, your account is registered but not activated yet."; +$L['msg153_0'] = "Login failed (user banned)"; +$L['msg153_1'] = "Error, your account is banned."; +$L['msg157_0'] = "Wrong validation URL"; +$L['msg157_1'] = "This validation URL isn't valid."; + +/* ======== General ======== */ + +$L['msg300_0'] = "New submission"; +$L['msg300_1'] = "Ok, this item is now recorded in the database.
    A moderator will check it as soon as possible,
    Thanks !"; +$L['msg301_0'] = "New submission"; +$L['msg301_1'] = "Ok, this item is now recorded in the database."; +$L['msg302_0'] = "Record deleted"; +$L['msg302_1'] = "Ok, record is deleted from the database."; +$L['msg303_0'] = "An error occurred while data entry"; +$L['msg303_1'] = "An error occurred, one / more of the required fields unfilled, or filled incorrectly."; + +/* ======== Error Pages ======== */ + +$L['msg400_0'] = "Bad Syntax"; +$L['msg400_1'] = "There is a bad syntax in your request"; +$L['msg401_0'] = "Unauthorized"; +$L['msg401_1'] = "The URL you've requested requires a correct username and password.
    Either you entered an incorrect username/password, or your browser doesn't support this feature."; +$L['msg403_0'] = "Forbidden"; +$L['msg403_1'] = "You do not have permission to retrieve the URL or link you requested.
    Please inform the administrator of the referring page, if you think this was a mistake."; +$L['msg404_0'] = "Not Found"; +$L['msg404_1'] = "The requested object or URL was not found on this server.
    The link you followed is either outdated, inaccurate, or the server has been instructed not to let you access the page."; +$L['msg500_0'] = "Internal Server Error"; +$L['msg500_1'] = "The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the administrator and inform them of the time the error occurred, and anything you might have done that may have caused the error."; + +/* ======== Private messages ======== */ + +$L['msg502_0'] = "Private message sent"; +$L['msg502_1'] = "Done, your private message was successfully sent.
    Click "; +$L['msg502_2'] = "here"; +$L['msg502_3'] = " to go back to private messages or to send a new PM."; + +/* ======== Forums ======== */ + +$L['msg602_0'] = "Section locked"; +$L['msg602_1'] = "This section is locked."; +$L['msg603_0'] = "Topic locked"; +$L['msg603_1'] = "This topic is locked."; + +/* ======== System ======== */ + +$L['msg900_0'] = "Under construction"; +$L['msg900_1'] = "Page not yet done, come back later please."; +$L['msg904_0'] = "System pages for administrator eyes only"; +$L['msg904_1'] = "You cannot list system pages with your level."; +$L['msg907_0'] = "Plug-in not loaded"; +$L['msg907_1'] = "An error occured while attempting to load this plug-in, file(s) missing ?"; +$L['msg911_0'] = "Language file missing"; +$L['msg911_1'] = "An error occured while attempting to check this language pack."; +$L['msg915_0'] = "Error !"; +$L['msg915_1'] = "At least 1 field is empty."; +$L['msg916_0'] = "Database updated"; +$L['msg916_1'] = "Done, database successfully updated.
    Affected entries : " . (isset($num) ? $num : ''); +$L['msg917_0'] = "Database updated"; +$L['msg917_1'] = "Done, database successfully updated."; +$L['msg930_0'] = "Access denied"; +$L['msg930_1'] = "You're not allowed to do this."; +$L['msg940_0'] = "Section disabled"; +$L['msg940_1'] = "This section of the website is disabled."; +$L['msg950_0'] = "Error"; +$L['msg950_1'] = "An error occured, maybe a wrong URL ?"; + +/* ======== Overall ======== */ + +$L['msgredir'] = "Redirecting..."; diff --git a/system/lang/ru/admin.lang.php b/system/lang/ru/admin.lang.php new file mode 100644 index 0000000..f8b1016 --- /dev/null +++ b/system/lang/ru/admin.lang.php @@ -0,0 +1,506 @@ +Проверьте, что вы действительно обновили все необходимые файлы из последнего релиза."; // New in v130 +$L['upg_codeissame'] = "Версия файлов движка и версия SQL базы совпадают."; // New in v130 +$L['upg_upgradenow'] = "Рекомендуется обновить базу вашу базу данных SQL немедленно. Кликните, чтобы обновить!"; // New in v130 +$L['upg_upgradenotavail'] = "Для данной версии обновление пока не доступно."; // New in v130 +$L['upg_manual'] = "Если нужно обновить базу данных вручную, необходимые SQL файлы находятся в папке /docs/upgrade/ ."; // New in v130 +$L['upg_success'] = "Обновление выполнено, нажми сюда для продолжения..."; // New in v130 +$L['upg_failure'] = "Обновление прошло не удачно, нажми сюда для продолжения... "; // New in v130 +$L['upg_force'] = "Если по каким-либо причинам версия Seditio, записанная в SQL базе - ошибочна, можно исправить её, выбрав номер версии и нажав Обновить. Это не внесёт в таблицы никаких других изменений. Изменить номер версии на: "; // New in v130 + +/* ====== General ====== */ + +$L['editdeleteentries'] = "Редактировать/удалить записи"; +$L['viewdeleteentries'] = "Посмотреть/удалить записи"; +$L['addnewentry'] = "Добавить новую запись"; +$L['adm_purgeall'] = "Очистить все"; +$L['adm_listisempty'] = "Список пуст"; +$L['adm_totalsize'] = "Общий размер"; +$L['adm_showall'] = "Показать все"; +$L['adm_area'] = "Область"; +$L['adm_option'] = "Опция"; +$L['adm_setby'] = "Установлено"; +$L['adm_more'] = "Дополнительные инструменты"; +$L['adm_from'] = "Из"; +$L['adm_to'] = "В"; +$L['adm_confirm'] = "Нажми для подтверждения:"; +$L['adm_done'] = "Готово"; +$L['adm_failed'] = "Неудачно"; +$L['adm_warnings'] = "Предупреждения"; +$L['adm_valqueue'] = "В очереди на публикацию"; +$L['adm_required'] = "(обязательное)"; +$L['adm_clicktoedit'] = "(нажми для редактирования)"; +$L['adm_manage'] = "Инструменты"; // New in v150 +$L['adm_pagemanager'] = "Менеджер страниц"; // New in v177 +$L['adm_module_name'] = "Название модуля"; // New in v178 +$L['adm_tool_name'] = "Название инструмента"; // New in v178 + +/* ====== Banlist ====== */ + +$L['adm_ipmask'] = "Маска IP"; +$L['adm_emailmask'] = "Маска e-mail"; +$L['adm_neverexpire'] = "Навсегда"; +$L['adm_help_banlist'] = "Примеры IP-масок: 194.31.13.41 , 194.31.13.* , 194.31.*.* , 194.*.*.*
    Примеры email-масок: @hotmail.com, @yahoo (подстановочные групповые символы (напр. *) не поддерживаются)
    Каждая запись может содержать только одну IP-маску и/или одну e-mail-маску.
    Фильтрация по IP действует для всех отображаемых страниц, маска e-mail - только при регистрации пользователей."; + +/* ====== Cache ====== */ + +$L['adm_internalcache'] = "Внутренний кэш"; +$L['adm_help_cache'] = "Недоступно"; + +/* ====== Configuration ====== */ + +$L['adm_help_config'] = "Недоступно"; +$L['cfg_adminemail'] = array("Администраторский e-mail", "Обязательно"); +$L['cfg_maintitle'] = array("Название сайта", "Основной заголовок сайта, обязательно"); +$L['cfg_subtitle'] = array("Описание", "Опционально, отображается сразу за названием сайта"); +$L['cfg_mainurl'] = array("URL сайта", "Включая http://, и без слэша в конце !"); +$L['cfg_clustermode'] = array("Серверный кластер", "Выбери Да, если используется кластерная балансировка нагрузки."); // New in v125 +$L['cfg_hostip'] = array("IP Сервера", "IP Сервера, опционально"); +$L['cfg_gzip'] = array("Gzip", "Gzip компрессия при выводе HTML"); +$L['cfg_cache'] = array("Внутренний кэш", "Оставьте включенным для лучшей производительности"); +$L['cfg_devmode'] = array("Режим отладки", "Не включать на действующих сайтах"); +$L['cfg_doctypeid'] = array("Тип документа", "<!DOCTYPE> в шапке HTML"); +$L['cfg_charset'] = array("HTML кодировка", ""); +$L['cfg_cookiedomain'] = array("Домен для cookies", "По умолчанию: пусто"); +$L['cfg_cookiepath'] = array("Путь для cookies", "По умолчанию: пусто"); +$L['cfg_cookielifetime'] = array("Продолжительность жизни cookie", "В секундах"); +$L['cfg_metakeywords'] = array("HTML Meta keywords - ключевые слова, разделенные запятой", "Для поисковых машин"); +$L['cfg_disablesysinfos'] = array("Отключить время создания страницы", "В footer.tpl"); +$L['cfg_keepcrbottom'] = array("Показывать копирайт в тэге {FOOTER_BOTTOMLINE}", "В footer.tpl"); +$L['cfg_showsqlstats'] = array("Показывать статистику SQL запросов", "В footer.tpl"); +$L['cfg_shieldenabled'] = array("Включить Щит", "Анти-спамминг и анти-хаммеринг"); +$L['cfg_shieldtadjust'] = array("Настроить таймеры Щита (в %)", "Чем больше значение, тем жестче ограничение на спам"); +$L['cfg_shieldzhammer'] = array("Анти-хаммеринг после * быстрых кликов", "Чем меньше значение, тем быстрее включится 3-х минутная автоблокировка"); +$L['cfg_maintenance'] = array("Режим техобслуживания", "Включить при проведении технических работ на сайте"); // New in v175 +$L['cfg_maintenancelevel'] = array("Уровень доступа пользователей", "Выберите уровень доступа пользователей"); // New in v175 +$L['cfg_maintenancereason'] = array("Причина техобслуживания", "Опишите причину техобслуживания"); // New in v175 +$L['cfg_multihost'] = array("Мультихост", "Включить поддержку нескольких хостов"); // New in v175 +$L['cfg_absurls'] = array("Абсолютные URL", "Включает использование абсолютных URL"); // New in v175 +$L['cfg_sefurls'] = array("SEF URLs", "Включает использование SEF URLs на сайте"); // New in v175 +$L['cfg_sefurls301'] = array("301 редирект на SEF URLs", "Включает 301 редирект со старых URL на SEF URLs"); // New in v175 +$L['cfg_dateformat'] = array("Основная маска даты", "По умолчанию: Y-m-d H:i"); +$L['cfg_formatmonthday'] = array("Краткая маска даты", "По умолчанию: m-d"); +$L['cfg_formatyearmonthday'] = array("Средняя маска даты", "По умолчанию: Y-m-d"); +$L['cfg_formatmonthdayhourmin'] = array("Маска даты в форуме", "По умолчанию: m-d H:i"); +$L['cfg_servertimezone'] = array("Часовой пояс сервера", "Смещение времени на сервере от GMT+00"); +$L['cfg_defaulttimezone'] = array("Часовой пояс по умолчанию", "Для гостей и новых пользователей, от -12 до +12"); +$L['cfg_timedout'] = array("Время бездействия, в секундах", "Время бездействия, после которого пользователь считается отсутствующим"); +$L['cfg_maxusersperpage'] = array("Максимальное количество строк в списке пользователей", ""); +$L['cfg_regrequireadmin'] = array("Администраторы должны утверждать регистрацию новых пользовательских счетов", ""); +$L['cfg_regnoactivation'] = array("Отключить проверку e-mail для новых пользователей", "Рекомендуется \"Нет\", в целях безопасности"); +$L['cfg_useremailchange'] = array("Разрешить пользователям менять свой e-mail адрес", "Рекомендуется \"Нет\", в целях безопасности"); +$L['cfg_usertextimg'] = array("Разрешить изображения и HTML в подписях", "Рекомендуется \"Нет\", в целях безопасности"); +$L['cfg_av_maxsize'] = array("Аватар, макс. размер файла", "По умолчанию: 8000 байт"); +$L['cfg_av_maxx'] = array("Аватар, макс. ширина", "По умолчанию: 64 пикселя"); +$L['cfg_av_maxy'] = array("Аватар, макс. высота", "По умолчанию: 64 пикселя"); +$L['cfg_usertextmax'] = array("Макс. длина подписи пользователя", "По умолчанию: 300 знаков"); +$L['cfg_sig_maxsize'] = array("Подпись, макс. размер файла", "По умолчанию: 50000 байт"); +$L['cfg_sig_maxx'] = array("Подпись, макс. ширина", "По умолчанию: 468 пикселей"); +$L['cfg_sig_maxy'] = array("Подпись, макс. высота", "По умолчанию: 60 пикселей"); +$L['cfg_ph_maxsize'] = array("Фото, макс. размер файла", "По умолчанию: 8000 байт"); +$L['cfg_ph_maxx'] = array("Фото, макс. ширина", "По умолчанию: 96 пикселей"); +$L['cfg_ph_maxy'] = array("Фото, макс. высота", "По умолчанию: 96 пикселей"); +$L['cfg_maxrowsperpage'] = array("Максимальное кол-во строк в списках", ""); +$L['cfg_showpagesubcatgroup'] = array("Отображать в группах страницы из подразделов", ""); //New Sed171 +$L['cfg_genseourls'] = array("Генерировать SEO url (авто page alias)? ", ""); //New Sed178 +$L['cfg_showcommentsonpage'] = array("Отображать комментарии на страницах", "По умолчанию показывать комментарии на странице"); //New Sed171 +$L['cfg_maxcommentsperpage'] = array("Максимум комментариев на страницу", ""); //New Sed173 +$L['cfg_commentsorder'] = array("Сортировка комментариев", "ASC - новые снизу, DESC - новые сверху"); //New Sed173 +$L['cfg_maxtimeallowcomedit'] = array("Разрешенное время на редактирование комментария", "В минутах, если 0 - редактирование запрещено"); //New Sed173 +$L['cfg_maxcommentlenght'] = array("Максимальная длина комментария", "В символах, по-умолчанию: 2000 символов"); //New Sed175 +$L['cfg_countcomments'] = array("Считать комментарии", "Показывать общее число комментариев рядом с иконкой"); +$L['cfg_hideprivateforums'] = array("Скрывать приватные разделы форума", ""); +$L['cfg_hottopictrigger'] = array("Сообщений в теме для присвоения ей статуса 'популярная'", ""); +$L['cfg_maxtopicsperpage'] = array("Максимум тем или сообщений на страницу", ""); +$L['cfg_antibumpforums'] = array("'Анти-бамп' защита", "Запрет на добавление пользователями нескольких сообщений подряд в одной и той же теме форума"); +$L['cfg_pfsuserfolder'] = array("Метод хранения в папках", "Если включено, файлы пользователя будут сохраняться в подпапках /datas/users/USERID/... вместо добавления USERID к имени файла. Должна быть установлена ТОЛЬКО при ПЕРВОЙ установке сайта. Как только файл закачан в Персональный Файловый Архив, уже поздно изменять эту опцию. Не рекомендуется менять первоначально установленную опцию."); +$L['cfg_th_amode'] = array("Генератор эскизов", ""); +$L['cfg_th_x'] = array("Ширина эскиза", "По умолчанию: 112 пикселей"); +$L['cfg_th_y'] = array("Высота эскиза", "По умолчанию: 84 пикселя, рекомендуется: Ширина x 0.75"); +$L['cfg_th_border'] = array("Толщина рамки для эскизов", "По умолчанию: 4 пикселя"); +$L['cfg_th_keepratio'] = array("Сохранять пропорции для эскизов?", ""); +$L['cfg_th_jpeg_quality'] = array("Качество Jpeg эскизов", "По умолчанию: 85"); +$L['cfg_th_colorbg'] = array("Цвет рамки для эскизов", "По умолчанию: 000000, hex-код цвета"); +$L['cfg_th_colortext'] = array("Цвет текста в эскизах", "По умолчанию: FFFFFF, hex-код цвета"); +$L['cfg_th_rel'] = array("Атрибут rel ссылки на миниатюре", "По умолчанию: sedthumb"); // New in v175 +$L['cfg_th_dimpriority'] = array("Приоритет формирования эскизов", "По-умолчанию: Width"); +$L['cfg_th_textsize'] = array("Размер шрифта для текста в эскизах", ""); +$L['cfg_pfs_filemask'] = array("Имена файлов на основе шаблона времени", "Генерировать имена файлов по шаблону времени."); // New Sed 172 + +$L['cfg_disable_gallery'] = array("Отключить галерею", ""); // New in v150 +$L['cfg_gallery_gcol'] = array("Количество колонок для галерей", "По умолчанию : 4"); // New in v150 +$L['cfg_gallery_bcol'] = array("Количество колонок для изображений", "По умолчанию : 6"); // New in v150 +$L['cfg_gallery_logofile'] = array("Png/jpeg/Gif водяной знак, будет добавлен во все загружаемые в PFS изображения", "Оставьте пустым для отключения"); // New in v150 + +$L['cfg_gallery_logopos'] = array("Позиция вставки лого в PFS изображении", "Default : Bottom left"); // New in v150 +$L['cfg_gallery_logotrsp'] = array("Слияние уровня для логотипа в %", "Default : 50"); // New in v150 +$L['cfg_gallery_logojpegqual'] = array("Качество конечного изображения после вставки лого, если это Jpeg", "Default : 90"); // New in v150 +$L['cfg_gallery_imgmaxwidth'] = array("Ширина отображаемой картинки, до которой будет уменьшено изображение, если оно больше", ""); // New in v150 + +$L['cfg_pm_maxsize'] = array("Макс. длина сообщений", "По умолчанию: 10000 знаков"); +$L['cfg_pm_allownotifications'] = array("Разрешить уведомления на e-mail о получении личных сообщений", ""); +$L['cfg_disablehitstats'] = array("Отключить статистику просмотров", "Переходов с других сайтов и просмотров в день"); +$L['cfg_disablereg'] = array("Отключить регистрацию", "Запрещает регистрацию новых пользователей"); +$L['cfg_disablewhosonline'] = array("Отключить 'кто онлайн?'", "Автоматически включается, если вы активизировали Щит"); +$L['cfg_defaultcountry'] = array("Страна по умолчанию для новых пользователей", "код страны из двух букв"); // New in v130 +$L['cfg_forcedefaultskin'] = array("Использовать установленный по умолчанию скин для всех пользователей", ""); +$L['cfg_forcedefaultlang'] = array("Использовать установленный по умолчанию язык для всех пользователей", ""); +$L['cfg_separator'] = array("Разделитель", "По умолчанию:>"); +$L['cfg_menu1'] = array("Слот меню #1
    {PHP.cfg.menu1} во всех tpl файлах", ""); +$L['cfg_menu2'] = array("Слот меню #2
    {PHP.cfg.menu2} во всех tpl файлах", ""); +$L['cfg_menu3'] = array("Слот меню #3
    {PHP.cfg.menu3} во всех tpl файлах", ""); +$L['cfg_menu4'] = array("Слот меню #4
    {PHP.cfg.menu4} во всех tpl файлах", ""); +$L['cfg_menu5'] = array("Слот меню #5
    {PHP.cfg.menu5} во всех tpl файлах", ""); +$L['cfg_menu6'] = array("Слот меню #6
    {PHP.cfg.menu6} во всех tpl файлах", ""); +$L['cfg_menu7'] = array("Слот меню #7
    {PHP.cfg.menu7} во всех tpl файлах", ""); +$L['cfg_menu8'] = array("Слот меню #8
    {PHP.cfg.menu8} во всех tpl файлах", ""); +$L['cfg_menu9'] = array("Слот меню #9
    {PHP.cfg.menu9} во всех tpl файлах", ""); +$L['cfg_topline'] = array("Верхняя линия
    {HEADER_TOPLINE} в header.tpl", ""); +$L['cfg_banner'] = array("Баннер
    {HEADER_BANNER} в header.tpl", ""); +$L['cfg_motd'] = array("Фраза дня
    {NEWS_MOTD} в index.tpl", ""); +$L['cfg_bottomline'] = array("Нижняя линия
    {FOOTER_BOTTOMLINE} в footer.tpl", ""); +$L['cfg_freetext1'] = array("Свободный текст, слот #1
    {PHP.cfg.freetext1} во всех tpl файлах", ""); +$L['cfg_freetext2'] = array("Свободный текст, слот #2
    {PHP.cfg.freetext2} во всех tpl файлах", ""); +$L['cfg_freetext3'] = array("Свободный текст, слот #3
    {PHP.cfg.freetext3} во всех tpl файлах", ""); +$L['cfg_freetext4'] = array("Свободный текст, слот #4
    {PHP.cfg.freetext4} во всех tpl файлах", ""); +$L['cfg_freetext5'] = array("Свободный текст, слот #5
    {PHP.cfg.freetext5} во всех tpl файлах", ""); +$L['cfg_freetext6'] = array("Свободный текст, слот #6
    {PHP.cfg.freetext6} во всех tpl файлах", ""); +$L['cfg_freetext7'] = array("Свободный текст, слот #7
    {PHP.cfg.freetext7} во всех tpl файлах", ""); +$L['cfg_freetext8'] = array("Свободный текст, слот #8
    {PHP.cfg.freetext8} во всех tpl файлах", ""); +$L['cfg_freetext9'] = array("Свободный текст, слот #9
    {PHP.cfg.freetext9} во всех tpl файлах", ""); +$L['cfg_extra1title'] = array("Поле #1 (Строка), заголовок", ""); +$L['cfg_extra2title'] = array("Поле #2 (Строка), заголовок", ""); +$L['cfg_extra3title'] = array("Поле #3 (Строка), заголовок", ""); +$L['cfg_extra4title'] = array("Поле #4 (Строка), заголовок", ""); +$L['cfg_extra5title'] = array("Поле #5 (Строка), заголовок", ""); +$L['cfg_extra6title'] = array("Поле #6 (Поле выбора), заголовок", ""); +$L['cfg_extra7title'] = array("Поле #7 (Поле выбора), заголовок", ""); +$L['cfg_extra8title'] = array("Поле #8 (Поле выбора), заголовок", ""); +$L['cfg_extra9title'] = array("Поле #9 (Длинный текст), заголовок", ""); +$L['cfg_extra1tsetting'] = array("Максимум символов в этом поле", ""); +$L['cfg_extra2tsetting'] = array("Максимум символов в этом поле", ""); +$L['cfg_extra3tsetting'] = array("Максимум символов в этом поле", ""); +$L['cfg_extra4tsetting'] = array("Максимум символов в этом поле", ""); +$L['cfg_extra5tsetting'] = array("Максимум символов в этом поле", ""); +$L['cfg_extra6tsetting'] = array("Значения для поля выбора, через запятую", ""); +$L['cfg_extra7tsetting'] = array("Значения для поля выбора, через запятую", ""); +$L['cfg_extra8tsetting'] = array("Значения для поля выбора, через запятую", ""); +$L['cfg_extra9tsetting'] = array("Максимальная длина текста", ""); +$L['cfg_extra1uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra2uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra3uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra4uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra5uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra6uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra7uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra8uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_extra9uchange'] = array("Доступно для редактирования в профиле пользователя?", ""); +$L['cfg_disable_comments'] = array("Отключить комментарии", ""); +$L['cfg_disable_forums'] = array("Отключить форум", ""); +$L['cfg_disable_pfs'] = array("Отключить Персональные Файловые Архивы", ""); +$L['cfg_disable_polls'] = array("Отключить опросы", ""); +$L['cfg_disable_pm'] = array("Отключить личные сообщения", ""); +$L['cfg_disable_ratings'] = array("Отключить рейтинги", ""); +$L['cfg_disable_page'] = array("Отключить страницы", ""); +$L['cfg_disable_plug'] = array("Отключить плагины", ""); +$L['cfg_trash_prunedelay'] = array("Удалить элементы из корзины через * дней (0 - не удалять никогда)", ""); // New in v110 +$L['cfg_trash_comment'] = array("Разрешить использование корзины для комментариев", ""); // New in v110 +$L['cfg_trash_forum'] = array("Разрешить использование корзины для форумов", ""); // New in v110 +$L['cfg_trash_page'] = array("Разрешить использование корзины для страниц", ""); // New in v110 +$L['cfg_trash_pm'] = array("Разрешить использование корзины для личных сообщений", ""); // New in v110 +$L['cfg_trash_user'] = array("Разрешить использование корзины для пользователей", ""); // New in v110 + +$L['cfg_parser_vid'] = array("Разрешить BB-коды для видео-файлов", ""); // New in v120 +$L['cfg_parser_vid_autolink'] = array("Автоматическя обработка ссылок на известные видео-сайты", ""); // New in v120 +$L['cfg_parsebbcodecom'] = array("Парсить BB-коды в комментриях и личных сообщениях", ""); +$L['cfg_parsebbcodepages'] = array("Парсить BB-коды в страницах", ""); +$L['cfg_parsebbcodeusertext'] = array("Парсить BB-коды в подписях пользователей", ""); +$L['cfg_parsebbcodeforums'] = array("Парсить BB-коды в форумах", ""); +$L['cfg_parsesmiliescom'] = array("Парсить смайлики в комментариях и личных сообщениях", ""); +$L['cfg_parsesmiliespages'] = array("Парсить смайлики в страницах", ""); +$L['cfg_parsesmiliesusertext'] = array("Парсить смайлики в подписях пользователей", ""); +$L['cfg_parsesmiliesforums'] = array("Парсить смайлики в форумах", ""); + +$L['cfg_color_group'] = array("Раскрашивать пользователей по группам", "По-умолчанию: Нет, для лучшей производительности"); // New in v175 + +$L['cfg_ajax'] = array("Включить AJAX", ""); // New in v175 +$L['cfg_enablemodal'] = array("Включить модальные окна", ""); // New in v175 + +$L['cfg_hometitle'] = array("Заголовок главной", "Опционально, для SEO"); // New in v179 +$L['cfg_homemetadescription'] = array("Мета описание главной", "Опционально, для SEO"); // New in v179 +$L['cfg_homemetakeywords'] = array("Ключевые слова главной", "Опционально, для SEO"); // New in v179 + +/* ====== HTML Meta ====== */ + +$L['cfg_defaulttitle'] = array("Заголовок по-умолчанию", "Доступные опции: {MAINTITLE}, {SUBTITLE}"); //Sed 175 +$L['cfg_indextitle'] = array("Заголовок для главной", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 179 +$L['cfg_listtitle'] = array("Заголовок для списков страниц", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_pagetitle'] = array("Заголовок для страниц", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}, {CATEGORY}"); //Sed 175 +$L['cfg_forumstitle'] = array("Заголовок для форумов", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_userstitle'] = array("Заголовок для пользователей", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_pmtitle'] = array("Заголовок для личных сообщений", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_gallerytitle'] = array("Заголовок для галереи", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); //Sed 175 +$L['cfg_pfstitle'] = array("Заголовок для файлового архива", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); ///Sed 175 +$L['cfg_plugtitle'] = array("Заголовок для плагинов", "Доступные опции: {MAINTITLE}, {SUBTITLE}, {TITLE}"); ///Sed 175 + +/* ====== Rss ====== */ + +$L['cfg_disable_rss'] = array("Отключить RSS ленты", ""); +$L['cfg_disable_rsspages'] = array("Отключить RSS ленту для страниц", ""); +$L['cfg_disable_rsscomments'] = array("Отключить RSS ленту для комментариев", ""); +$L['cfg_disable_rssforums'] = array("Отключить RSS ленту для форума", ""); +$L['cfg_rss_defaultcode'] = array("RSS лента по-умолчанию", "ввести код категории"); +$L['cfg_rss_timetolive'] = array("Время кэша для RSS ленты", "в секундах"); +$L['cfg_rss_maxitems'] = array("Максимальное количество строк в RSS ленте", ""); + +$L['adm_help_config_rss'] = "Ссылки для вызова RSS лент:
    " . $cfg['mainurl'] . "/" . "rss (по-умолчанию, выводятся новости из категории указанной в настройках)
    " . $cfg['mainurl'] . "/" . "rss/pages?c=XX (XX - код категории, последние страницы из категории)
    " . $cfg['mainurl'] . "/" . "rss/comments?id=XX (XX - ID страницы, комментарии к странице)
    " . $cfg['mainurl'] . "/" . "rss/forums (последние посты из всех секций форума)
    " . $cfg['mainurl'] . "/" . "rss/forums?s=XX (XX - ID секции, последние посты в секции)
    " . $cfg['mainurl'] . "/" . "rss/forums?q=XX (XX - ID топика, последние посты в топике)
    " . $cfg['mainurl'] . "/" . "rss/forums?s=XX&q=YY(XX - ID секции, YY - ID топика)"; + +/* ====== Forums ====== */ + +$L['adm_diplaysignatures'] = "Показывать подписи"; +$L['adm_enablebbcodes'] = "Включить BB-коды"; +$L['adm_enablesmilies'] = "Включить смайлы"; +$L['adm_enableprvtopics'] = "Разрешить приватные темы"; +$L['adm_countposts'] = "Включить счётчик сообщений"; +$L['adm_autoprune'] = "Автоматически удалять темы после * дней"; +$L['adm_postcounters'] = "Сверить счётчики"; +$L['adm_help_forums'] = "Не доступно"; +$L['adm_forum_structure'] = "Структура категорий форума"; // New in v11 +$L['adm_forum_structure_cat'] = "Структура разделов форума"; // New in v11 +$L['adm_help_forums_structure'] = "Недоступно"; // New in v11 +$L['adm_defstate'] = "Состояние по умолчанию"; // New in v11 +$L['adm_defstate_0'] = "Свёрнуто"; // New in v11 +$L['adm_defstate_1'] = "Развёрнуто"; // New in v11 +$L['adm_parentcat'] = "Родительский раздел"; // New in v172 + + +/* ====== IP search ====== */ + +$L['adm_searchthisuser'] = "Поиск этого IP в базе данных пользователей"; +$L['adm_dnsrecord'] = "Запись DNS для этого адреса"; + +/* ====== Smilies ====== */ + +$L['adm_help_smilies'] = "Недоступно"; + +/* ====== Directories ====== */ + +$L['adm_directory'] = "Справочник"; +$L['adm_dic_title'] = "Заголовок справочника"; +$L['adm_dic_code'] = "Код справочника (имя экстраполя)"; +$L['adm_dic_list'] = "Список справочников"; +$L['adm_dic_term_list'] = "Список терминов"; + +$L['adm_dic_add'] = "Добавить новый справочник"; +$L['adm_dic_edit'] = "Редактирование справочника"; +$L['adm_dic_add_term'] = "Добавить новый термин"; +$L['adm_dic_term_title'] = "Название термина"; +$L['adm_dic_term_value'] = "Значение термина"; +$L['adm_dic_term_defval'] = "Термин по умолчанию?"; +$L['adm_dic_term_edit'] = "Редактирование термина из справочника"; +$L['adm_dic_children'] = "Дочерний справочник"; + +$L['adm_dic_mera'] = "Единица измерения"; +$L['adm_dic_values'] = "Значения справочника"; + +$L['adm_dic_form_title'] = "Заголовок для элемента формы"; +$L['adm_dic_form_desc'] = "Подпись для элемента формы"; +$L['adm_dic_form_size'] = "Размер текстового поля"; +$L['adm_dic_form_maxsize'] = "Максимальный размер поля"; +$L['adm_dic_form_cols'] = "Ширина текстового поля"; +$L['adm_dic_form_rows'] = "Высота текстового поля"; + +$L['adm_dic_extra'] = "Экстраполе"; +$L['adm_dic_addextra'] = "Добавление экстраполя"; +$L['adm_dic_editextra'] = "Редактирование экстраполя"; +$L['adm_dic_extra_location'] = "Наименование таблицы"; +$L['adm_dic_extra_type'] = "Тип данных поля"; +$L['adm_dic_extra_size'] = "Длина поля"; + +$L['adm_dic_comma_separat'] = "(значения, разделенные через запятую)"; + +$L['adm_help_dic'] = ""; //Need add + +/* ====== Menu manager ====== */ + +$L['adm_menuitems'] = "Пункты меню"; +$L['adm_additem'] = "Добавить пункт"; +$L['adm_position'] = "Позиция"; +$L['adm_confirm_delete'] = "Вы подтверждаете удаление?"; +$L['adm_addmenuitem'] = "Добавление пункта меню"; +$L['adm_editmenuitem'] = "Редактирование пункта меню"; +$L['adm_parentitem'] = "Родительский пункт"; +$L['adm_url'] = "URL адрес"; +$L['adm_activity'] = "Активен?"; + +/* ====== PFS ====== */ + +$L['adm_gd'] = "Графическая библиотека GD"; +$L['adm_allpfs'] = "Все Персональные Файловые Архивы"; +$L['adm_allfiles'] = "Все файлы"; +$L['adm_thumbnails'] = "Миниатюры"; +$L['adm_orphandbentries'] = "Потерянные записи БД"; +$L['adm_orphanfiles'] = "Потерянные файлы"; +$L['adm_delallthumbs'] = "Удалить все миниатюры"; +$L['adm_rebuildallthumbs'] = "Удалить и реконструировать все миниатюры"; +$L['adm_help_pfsthumbs'] = "Недоступно"; +$L['adm_help_check1'] = "Недоступно"; +$L['adm_help_check2'] = "Недоступно"; +$L['adm_help_pfsfiles'] = "Недоступно"; +$L['adm_help_allpfs'] = "Недоступно"; // и неизвестно, когда будет.. +$L['adm_nogd'] = "Графическая библиотека GD не поддерживается на данном хостинге. Система не сможет создать миниатюры для изображений в файловом архиве. Вам необходимо из админпанели пройти по закладке 'Персональный Файловый Архив' и отключить опцию генерации миниатюр."; + +/* ====== Pages ====== */ + +$L['adm_structure'] = "Структура страниц (категорий)"; +$L['adm_syspages'] = "Смотреть категорию 'системные'"; +$L['adm_help_page'] = "Страницы, которые относятся к категории 'системные', не показываются в публично доступных списках страниц. Это сделано для создания изолированных страниц."; +$L['adm_sortingorder'] = "Порядок сортировки для категорий"; +$L['adm_fileyesno'] = "Файл (да/нет)"; +$L['adm_fileurl'] = "URL файла"; +$L['adm_filesize'] = "Размер файла"; +$L['adm_filecount'] = "Счётчик загрузок файла"; + +$L['adm_tpl_mode'] = "Использовать TPL"; +$L['adm_tpl_empty'] = "По умолчанию"; +$L['adm_tpl_forced'] = "Такой же, как у"; +$L['adm_tpl_parent'] = "Такой же, как у родительского раздела"; + +$L['adm_enablecomments'] = "Включить комментарии"; // New v173 +$L['adm_enableratings'] = "Включить рейтинги"; // New v173 + +/* ====== Polls ====== */ + +$L['adm_help_polls'] = "Как только создана тема нового опроса, нажми 'Редактировать', чтобы добавить варианты ответов для этого опроса.
    Кнопка 'Удалить' удалит выбранный опрос, его опции, и все относящиеся к нему записи о голосовании.
    Кнопка 'Сбросить' удалит все голоса для выбранного опроса, не удаляя сам опрос и его опции.
    Кнопка 'Переместить наверх' изменит дату создания опроса на сегодняшнюю, и таким образом сделает опрос 'текущим', т.е. первым в списке."; +$L['adm_poll_title'] = "Заголовок опроса"; + +/* ====== Statistics ====== */ + +$L['adm_phpver'] = "Установленная версия PHP"; +$L['adm_zendver'] = "Установленная версия Zend"; +$L['adm_interface'] = "Интерфейс между веб-сервером и PHP"; +$L['adm_os'] = "Операционная система"; +$L['adm_clocks'] = "Часы"; +$L['adm_time1'] = "#1: Время на сервере"; +$L['adm_time2'] = "#2: GMT время, возвращённое сервером"; +$L['adm_time3'] = "#3: GMT время + смещение времени сервера (Транслируемое Seditio)"; +$L['adm_time4'] = "#4: Локальное время, установленное в вашем профиле"; +$L['adm_help_versions'] = "Установи нужный часовой пояс сервера здесь, чтобы время №3 отражалось правильно.
    Время №4 зависит от установленного в вашем профиле часового пояса.
    Значения времени #1 и #2 игнорируются Seditio."; +$L['adm_log'] = "Системный лог"; +$L['adm_infos'] = "Информация"; +$L['adm_versiondclocks'] = "Версии и часы"; +$L['adm_checkcoreskins'] = "Проверить файлы ядра и скины"; +$L['adm_checkcorenow'] = "Проверить файлы ядра сейчас!"; +$L['adm_checkingcore'] = "Идёт проверка файлов ядра..."; +$L['adm_checkskins'] = "Проверить наличие всех файлов в скинах"; +$L['adm_checkskin'] = "Проверить наличие TPL файлов для скина"; +$L['adm_checkingskin'] = "Идёт проверка скина..."; +$L['adm_hits'] = "Просмотров"; +$L['adm_check_ok'] = "Ok"; +$L['adm_check_missing'] = "Отсутствует"; +$L['adm_ref_lowhits'] = "Удалить записи с количеством просмотров меньше 5"; +$L['adm_maxhits'] = "Максимум просмотров был зафиксирован %1\$s, в этот день было показано %2\$s страниц."; // Новое в v102 +$L['adm_byyear'] = "По годам"; +$L['adm_bymonth'] = "По месяцам"; +$L['adm_byweek'] = "По неделям"; + +/* ====== Ratings ====== */ + +$L['adm_ratings_totalitems'] = "Всего оценённых страниц"; +$L['adm_ratings_totalvotes'] = "Всего голосов"; +$L['adm_help_ratings'] = "Чтобы обнулить рейтинг, просто удалите его. Он будет воссоздан с первым новым голосом."; + +/* ====== Trash can ====== */ + +$L['adm_help_trashcan'] = "Здесь находится список элементов сайта, недавно удаленных модераторами и пользователями.
    Обратите внимание, что восстановление темы форума восстанавливает также все сообщения из этой темы.
    Также, восстановление сообщения в удаленной теме восстанавливает всю тему (если она доступна), и все сообщения в этой теме.
     
    Окончательное удаление: удаление элемента без возможности восстановления.
    Восстановление: возвращает удалённый элемент на сайт."; // New in v110 + +/* ====== Users ====== */ + +$L['adm_defauth_members'] = "Права по умолчанию для пользователей"; +$L['adm_deflock_members'] = "Маска-замок для пользователей"; +$L['adm_defauth_guests'] = "Права по умолчанию для посетителей"; +$L['adm_deflock_guests'] = "Маска-замок для гостей"; +$L['adm_rightspergroup'] = "Права по группам"; +$L['adm_copyrightsfrom'] = "Установить набор прав как в группе"; +$L['adm_maxsizesingle'] = "Максимальный размер одного файла для Файлового Архива (KB)"; +$L['adm_maxsizeallpfs'] = "Суммарный размер всех файлов в Файловом Архиве (KB)"; +$L['adm_rights_allow10'] = "Разрешено"; +$L['adm_rights_allow00'] = "Запрещено"; +$L['adm_rights_allow11'] = "Разрешено и закрыто в целях безопасности"; +$L['adm_rights_allow01'] = "Запрещено и закрыто в целях безопасности"; +$L['adm_color'] = "Цвет группы"; // New in v175 + +/* ====== Plugins ====== */ + +$L['adm_extplugins'] = "Расширенные плагины"; +$L['adm_present'] = "Присутствует"; +$L['adm_missing'] = "Отсутствует"; +$L['adm_paused'] = "Приостановлен"; +$L['adm_running'] = "Работает"; +$L['adm_partrunning'] = "Работает частично"; +$L['adm_notinstalled'] = "Не установлен"; + +$L['adm_opt_installall'] = "Установить"; +$L['adm_opt_installall_explain'] = "Эта опция установит или перезапустит все модули плагина."; +$L['adm_opt_uninstallall'] = "Отключить"; +$L['adm_opt_uninstallall_explain'] = "Эта опция отключит все модули плагина (файлы плагина при этом физически не удаляются)."; +$L['adm_opt_pauseall'] = "Приостановить"; +$L['adm_opt_pauseall_explain'] = "Эта опция приостановит работу всех модулей плагина."; +$L['adm_opt_unpauseall'] = "Возобновить"; +$L['adm_opt_unpauseall_explain'] = "Эта опция возобновит работу всех модулей плагина."; + +/* ====== Private messages ====== */ + +$L['adm_pm_totaldb'] = "Личных сообщений в базе данных"; +$L['adm_pm_totalsent'] = "Общее количество отправленных на этот момент личных сообщений"; diff --git a/system/lang/ru/main.lang.php b/system/lang/ru/main.lang.php new file mode 100644 index 0000000..3c6c141 --- /dev/null +++ b/system/lang/ru/main.lang.php @@ -0,0 +1,877 @@ +отредактировал(а) %1\$s: %2\$s"; +$L['for_antibump'] = "Включена система защиты от спама. Вы не можете добавлять несколько сообщений подряд."; +$L['for_mod_clear'] = "Очистить рейтинги"; // New in v160 +$L['for_mod_force'] = "Принудительно установить рейтинг "; // New in v160 + +$L['for_quickpost'] = "Быстрый ответ"; // New in v178 +$L['for_post_text'] = "Текст поста"; // New in v178 + +/* ====== List ====== */ + +$L['lis_submitnew'] = "Добавить новую запись"; + +/* ====== Messages ====== */ + +// It's in message.lang.php + +/* ====== Pages ====== */ + +$L['pag_catmissing'] = "Отсутствует код категории"; +$L['pag_titletooshort'] = "Заголовок слишком короткий либо отсутствует"; +$L['pag_desctooshort'] = "Описание слишком короткое либо отсутствует"; +$L['pag_authortooshort'] = "Имя автора слишком короткое либо отсутствует"; +$L['pagadd_title'] = "Форма добавления новых страниц"; +$L['pagadd_subtitle'] = "Добавить новую страницу"; +$L['paged_title'] = "Свойства страницы"; +$L['paged_subtitle'] = "Отредактировать страницу"; + +/* ====== Personal file space ====== */ + +$L['pfs_title'] = "Персональный Файловый Архив"; +$L['pfs_filetoobigorext'] = "Загрузка не удалась. Возможно, этот файл слишком большой или расширение файла не поддерживается."; +$L['pfs_fileexists'] = "Загрузка прервана, файл с таким именем уже существует."; +$L['pfs_filelistempty'] = "Список пуст."; +$L['pfs_folderistempty'] = "Эта папка пуста."; +$L['pfs_totalsize'] = "Общий размер"; +$L['pfs_maxspace'] = "Максимально доступный объем"; +$L['pfs_maxsize'] = "Максимальный размер файла"; +$L['pfs_filesintheroot'] = "Файл(ов) в корневом каталоге"; +$L['pfs_filesinthisfolder'] = "Файл(ов) в этой папке"; +$L['pfs_newfile'] = "Загрузить файл"; +$L['pfs_newfolder'] = "Создать новую папку"; +$L['pfs_editfolder'] = "Редактирование папки"; +$L['pfs_editfile'] = "Редактирование файла"; +$L['pfs_ispublic'] = "Публичная?"; +$L['pfs_isgallery'] = "Галерея?"; +$L['pfs_extallowed'] = "Допустимые расширения"; + +$L['pfs_insertasthumbnail'] = "Вставить как эскиз"; // New in v175 +$L['pfs_insertasimage'] = "Вставить изображение"; // New in v175 +$L['pfs_insertaslink'] = "Вставить ссылку на файл"; // New in v175 +$L['pfs_multiuploading'] = "Мультизагрузка файлов"; // New in v175 + +$L['pfs_setassample'] = "Образец"; // New in v150 +$L['pfs_addlogo'] = "Добавить лого"; // New in v150 +$L['pfs_resize'] = "Изменить размер, если больше чем %1\$s пикселей"; // New in v150 + +/* ====== Plug ====== */ + +// Empty + +/* ====== Pm ====== */ + +$L['pm_titletooshort'] = "Заголовок слишком короткий либо отсутствует"; +$L['pm_bodytooshort'] = "Текст сообщения слишком короткий либо отсутствует"; +$L['pm_bodytoolong'] = "Текст сообщения слишком длинный, максимальное количество символов " . $cfg['pm_maxsize'] . "."; +$L['pm_wrongname'] = "По крайней мере одно имя получателя было указано неверно и поэтому было удалено из списка"; +$L['pm_toomanyrecipients'] = "Максимальное количество получателей %1\$s"; +$L['pmsend_title'] = "Написать новое личное сообщение (ЛС)"; +$L['pmsend_subtitle'] = ""; +$L['pm_sendnew'] = "Написать новое личное сообщение"; +$L['pm_inbox'] = "Входящие"; +$L['pm_inboxsubtitle'] = "Личные сообщения, новые сверху"; +$L['pm_sentbox'] = "Отправленные"; +$L['pm_sentboxsubtitle'] = "Здесь находятся сообщения, отосланные вами, но еще не прочитанные получателем. При необходимости, эти сообщения можно редактировать или удалять."; +$L['pm_archives'] = "Архив"; +$L['pm_arcsubtitle'] = "Старые сообщения, последние сверху"; +$L['pm_replyto'] = "Ответить на это сообщение"; +$L['pm_putinarchives'] = "Переместить в архив"; +$L['pm_notifytitle'] = "Новое Личное Сообщение"; +$L['pm_notify'] = "Здравствуйте, %1\$s!\n\nВам пришло новое Личное Сообщение, которое находится в вашей папке inbox.\nОтправитель : %2\$s\nКликните на ссылку, чтобы прочитать полученное сообщение : %3\$s"; +$L['pm_multiplerecipients'] = "Это сообщение также было отправлено ещё %1\$s пользователю(ям)."; + +/* ====== Polls ====== */ + +$L['polls_viewresults'] = "Результаты"; +$L['polls_viewarchives'] = "Все опросы"; +$L['polls_Vote'] = "Голос"; +$L['polls_votes'] = "голосов"; +$L['polls_since'] = "с"; +$L['polls_alreadyvoted'] = "Вы уже голосовали в этом опросе."; +$L['polls_notyetvoted'] = "Вы можете проголосовать, кликнув на расположенную выше линию."; +$L['polls_votecasted'] = "Готово, ваш голос учтен"; +$L['polls_add'] = "Новый опрос"; +$L['polls_edit'] = "Редактирование опроса"; +$L['polls_title'] = "Заголовок опроса"; +$L['polls_option'] = "Вариант ответа"; +$L['polls_addoption'] = "Добавить вариант ответа"; +$L['polls_options'] = "Варианты ответа"; +$L['polls_emptytitle'] = "Заголовок опроса пустой или вариантов ответов меньше 2"; + +/* ====== Ratings ====== */ + +$L['rat_choice1'] = "Очень плохо"; +$L['rat_choice2'] = "Плохо"; +$L['rat_choice3'] = "Не так уж плохо"; +$L['rat_choice4'] = "Нормально"; +$L['rat_choice5'] = "Средне"; +$L['rat_choice6'] = "Почти хорошо"; +$L['rat_choice7'] = "Хорошо"; +$L['rat_choice8'] = "Очень хорошо"; +$L['rat_choice9'] = "Отлично"; +$L['rat_choice10'] = "Идеально"; +$L['rat_votecasted'] = "Готово, ваш голос учтён"; +$L['rat_since'] = "с"; +$L['rat_notyetrated'] = "Пока не оценено"; +$L['rat_alreadyvoted'] = "Вы уже проголосовали за это."; +$L['rat_registeredonly'] = "Только зарегистрированные пользователи могут участвовать в голосовании."; + +$L['rat_disable'] = "Изменение рейтинга запрещено!"; // New in v173 + +/* ====== Users ====== */ + +$L['use_title'] = "Пользователи"; +$L['use_subtitle'] = "Зарегистрированные пользователи"; +$L['useed_accountactivated'] = "Учетная запись активирована"; +$L['useed_email'] = "Вы получили это письмо, потому что администрация сайта активизировала вашу учетную запись.\nТеперь вы можете войти, используя имя пользователя и пароль, полученные в предыдущем письме.\n\n"; +$L['useed_title'] = "Редактировать"; +$L['useed_subtitle'] = " "; +$L['use_byfirstletter'] = "Имя начинается на"; +$L['use_allusers'] = "Все пользователи"; +$L['use_allbannedusers'] = "Заблокированные пользователи"; +$L['use_allinactiveusers'] = "Неактивные пользователи"; + +$L['pro_title'] = "Профиль"; +$L['pro_subtitle'] = "настройки учетной записи"; +$L['pro_passtoshort'] = "Пароль должен быть длиной не меньше 4-х символов и состоять только из букв, цифр и символов подчёркивания."; +$L['pro_passdiffer'] = "Введенные вами пароли не совпадают"; +$L['pro_wrongpass'] = "Вы не ввели свой действующий пароль, либо ввели его неправильно"; +$L['pro_avatarsupload'] = "Загрузить аватар"; +$L['pro_sigupload'] = "Загрузить картинку в подпись"; +$L['pro_photoupload'] = "Загрузить фотографию"; +$L['pro_avatarspreset'] = "...или выберите себе аватар из галлереи"; +$L['pro_avatarschoose'] = "Кликните на изображение ниже, чтобы установить его в качестве своего аватара"; +$L['pro_avataruploadfailed'] = "Загрузка не удалась, сначала удалите старый аватар !"; + +/* ====== Rss ====== */ + +$L['rss_lastforums'] = "Последние сообщения на форуме"; // New in v173 +$L['rss_lastsections'] = "Последние сообщения в форуме: "; // New in v173 +$L['rss_lasttopics'] = "Последние сообщения в теме: "; // New in v173 +$L['rss_commentauthor'] = 'Комментарий пользователя'; // New in v173 +$L['rss_lastcomments'] = 'Последние комментарии'; // New in v173 + +/* ====== Metadata information ====== */ + +$L['mt_title'] = "Тег title"; // New in v175 +$L['mt_description'] = "Meta-тег description"; // New in v175 +$L['mt_keywords'] = "Meta-тег keywords"; // New in v175 + +/* ====== Captcha Errors ====== */ +$L['captcha_error_many_incorrect'] = "Вы ввели слишком много неверных капчей! Обратитесь за помощью к администратору!"; +$L['captcha_error_you_robot_or_too_fast'] = "Вы или робот или вводите капчу слишком быстро!"; +$L['captcha_error_go_bad_robot'] = "Робот, уходи!"; +$L['captcha_error_incorrect'] = "Неверная капча!"; +$L['captcha_error_hacker_go_home'] = "Хакер, уходи!"; + +/* ====== Fix ====== */ + +$sed_languages['ru'] = 'Русский'; + +$sed_countries = array( + 'ru' => "Россия", + 'by' => "Белоруссия", + 'ua' => "Украина", + 'md' => "Молдавия", + 'ge' => "Грузия", + 'am' => "Армения", + 'az' => "Азербайджан", + 'kz' => "Казахстан", + 'uz' => "Узбекистан", + 'tm' => "Туркмения", + 'kg' => "Кыргызстан", + 'tj' => "Таджикистан", + 'ee' => "Эстония", + 'lt' => "Литва", + 'lv' => "Латвия", + '00' => '---', + 'au' => "Австралия", + 'at' => "Австрия", + 'al' => "Албания", + 'dz' => "Алжир", + 'as' => "Американские Острова Самоа", + 'ai' => "Ангилья", + 'ao' => "Ангола", + 'ad' => "Андорра", + 'aq' => "Антарктида", + 'ag' => "Антигуа и Барбуда", + 'ar' => "Аргентина", + 'aw' => "Аруба", + 'af' => "Афганистан", + 'bs' => "Багамы", + 'bd' => "Бангладеш", + 'bb' => "Барбадос", + 'bh' => "Бахрейн", + 'bz' => "Белиз", + 'be' => "Бельгия", + 'bj' => "Бенин", + 'bm' => "Бермуды", + 'bg' => "Болгария", + 'bo' => "Боливия", + 'ba' => "Босния и Герцеговина", + 'bw' => "Ботсвана", + 'br' => "Бразилия", + 'io' => "Британская Территория Индийского океана", + 'bn' => "Брунейский Даруссалам", + 'bf' => "Буркина-Фасо", + 'bi' => "Бурунди", + 'bt' => "Бутан", + 'vu' => "Вануату", + 'va' => "Ватикан", + 'uk' => "Великобритания", + 'hu' => "Венгрия", + 've' => "Венесуэла", + 'vg' => "Виргинские острова (британские)", + 'vi' => "Виргинские острова (США)", + 'tp' => "Восточный Тимор", + 'vn' => "Вьетнам", + 'ga' => "Габон", + 'ht' => "Гаити", + 'gy' => "Гайана", + 'gm' => "Гамбия", + 'gh' => "Гана", + 'gt' => "Гватемала", + 'gw' => "Гвинея - Бисау", + 'gn' => "Гвинея", + 'de' => "Германия", + 'gi' => "Гибралтар", + 'hn' => "Гондурас", + 'hk' => "Гонконг", + 'gd' => "Гренада", + 'gr' => "Греция", + 'gu' => "Гуам", + 'dk' => "Дания", + 'dj' => "Джибути", + 'dm' => "Доминика", + 'do' => "Доминиканская Республика", + 'eu' => "Европа", + 'eg' => "Египет", + 'zr' => "Заир", + 'zm' => "Замбия", + 'eh' => "Западная Сахара", + 'cv' => "Зеленый мыс", + 'zw' => "Зимбабве", + 'il' => "Израиль", + 'in' => "Индия", + 'id' => "Индонезия", + 'jo' => "Иордания", + 'iq' => "Ирак", + 'ir' => "Иран", + 'ie' => "Ирландия", + 'is' => "Исландия", + 'es' => "Испания", + 'it' => "Италия", + 'ye' => "Йемен", + 'kh' => "Камбоджа", + 'cm' => "Камерун", + 'ca' => "Канада", + 'qa' => "Катар", + 'ke' => "Кения", + 'cy' => "Кипр", + 'ki' => "Кирибати", + 'cn' => "Китай", + 'cc' => "Кокосовые острова", + 'co' => "Колумбия", + 'km' => "Коморские острова", + 'cg' => "Конго", + 'cr' => "Коста-Рика", + 'ci' => "Кот-д'Ивуар", + 'cu' => "Куба", + 'kw' => "Кувейт", + 'la' => "Лаос", + 'ls' => "Лесото", + 'lr' => "Либерия", + 'lb' => "Ливан", + 'ly' => "Ливия", + 'li' => "Лихтенштейн", + 'lu' => "Люксембург", + 'mu' => "Маврикий", + 'mr' => "Мавритания", + 'mg' => "Мадагаскар", + 'yt' => "Майоттэ", + 'mo' => "Макау", + 'mk' => "Македония", + 'mw' => "Малави", + 'my' => "Малайзия", + 'ml' => "Мали", + 'mv' => "Мальдивы", + 'mt' => "Мальта", + 'ma' => "Марокко", + 'mq' => "Мартиника", + 'mh' => "Маршалловы острова", + 'mm' => "Маянмар", + 'mx' => "Мексика", + 'fm' => "Микронезия", + 'mz' => "Мозамбик", + 'mc' => "Монако", + 'mn' => "Монголия", + 'ms' => "Монтсеррат", + 'na' => "Намибия", + 'nr' => "Науру", + 'np' => "Непал", + 'ne' => "Нигер", + 'ng' => "Нигерия", + 'an' => "Нидерландские Антильские острова", + 'nl' => "Нидерланды", + 'ni' => "Никарагуа", + 'nu' => "Ниуэ", + 'nz' => "Новая Зеландия", + 'nc' => "Новая Каледония", + 'no' => "Норвегия", + 'ae' => "Объединенные Арабские Эмираты", + 'om' => "Оман", + 'bv' => "Остров Бувет", + 'gp' => "Остров Гваделупа", + 'gl' => "Остров Гренландия", + 'nf' => "Остров Норфолк", + 'cx' => "Остров Рождества", + 'ky' => "Острова Кайман", + 'ck' => "Острова Кука", + 'ws' => "Острова Самоа", + 'sj' => "Острова Свальбарда и Жан Майена", + 'tc' => "Острова Теркс и Кайкос", + 'wf' => "Острова Уоллис и Футуна", + 'fo' => "Острова Фароэ", + 'hm' => "Острова Херда и МакДональда", + 'pk' => "Пакистан", + 'pw' => "Палау", + 'ps' => "Палестина", + 'pa' => "Панама", + 'pg' => "Папуа-Новая Гвинея", + 'py' => "Парагвай", + 'pe' => "Перу", + 'pn' => "Питкаирн", + 'pl' => "Польша", + 'pt' => "Португалия", + 'pr' => "Пуэрто-Рико", + 're' => "Реюнион", + 'rw' => "Руанда", + 'ro' => "Румыния", + 'sh' => "С-. Элена", + 'sv' => "Сальвадор", + 'sm' => "Сан-Марино", + 'st' => "Сао Том И Принципе", + 'sa' => "Саудовская Аравия", + 'sz' => "Свазиленд", + 'kp' => "Северная Корея", + 'mp' => "Северные Марианские острова", + 'sc' => "Сейшельские острова", + 'sn' => "Сенегал", + 'vc' => "Сент-Винсент", + 'kn' => "Сент-Киттс И Невис", + 'lc' => "Сент-Люсия", + 'sg' => "Сингапур", + 'sy' => "Сирия", + 'sk' => "Словакия", + 'si' => "Словения", + 'sb' => "Соломоновы Острова", + 'so' => "Сомали", + 'pm' => "С-Пиерр И Миквелон", + 'sd' => "Судан", + 'sr' => "Суринам", + 'us' => "США", + 'sl' => "Сьерра-Леоне", + 'th' => "Таиланд", + 'tw' => "Tайвань", + 'tz' => "Танзания", + 'tg' => "Того", + 'tk' => "Токелау", + 'to' => "Тонга", + 'tt' => "Тринидад и Тобаго", + 'tv' => "Тувалу", + 'tn' => "Тунис", + 'tr' => "Турция", + 'ug' => "Уганда", + 'uy' => "Уругвай", + 'fj' => "Фиджи", + 'ph' => "Филиппины", + 'fi' => "Финляндия", + 'fk' => "Фолклендские острова", + 'fr' => "Франция", + 'gf' => "Французская Гвиана", + 'pf' => "Французская Полинезия", + 'tf' => "Французские Южные Территории", + 'hr' => "Хорватия", + 'cf' => "Центральноафриканская Республика", + 'td' => "Чад", + 'cz' => "Чешская республика", + 'cl' => "Чили", + 'ch' => "Швейцария", + 'se' => "Швеция", + 'lk' => "Шри-Ланка", + 'ec' => "Эквадор", + 'gq' => "Экваториальная Гвинея", + 'er' => "Эритрея", + 'et' => "Эфиопия", + 'yu' => "Югославия", + 'za' => "Южная Африка", + 'gs' => "Южная Грузия", + 'kr' => "Южная Корея", + 'jm' => "Ямайка", + 'jp' => "Япония", +); + +$sed_translit = array( + //cyr + 'А' => 'A', 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Ѓ' => 'G', + 'Ґ' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'YO', 'Є' => 'YE', + 'Ж' => 'ZH', 'З' => 'Z', 'Ѕ' => 'Z', 'И' => 'I', 'Й' => 'J', + 'Ј' => 'J', 'І' => 'I', 'Ї' => 'YI', 'К' => 'K', 'Ќ' => 'K', + 'Л' => 'L', 'Љ' => 'L', 'М' => 'M', 'Н' => 'N', 'Њ' => 'N', + 'О' => 'O', 'П' => 'P', 'Р' => 'R', 'С' => 'S', 'Т' => 'T', + 'У' => 'U', 'Ў' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'TS', + 'Ч' => 'CH', 'Џ' => 'DH', 'Ш' => 'SH', 'Щ' => 'SHH', 'Ъ' => '', + 'Ы' => 'Y', 'Ь' => '', 'Э' => 'E', 'Ю' => 'YU', 'Я' => 'YA', + 'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'ѓ' => 'g', + 'ґ' => 'g', 'д' => 'd', 'е' => 'e', 'ё' => 'yo', 'є' => 'ye', + 'ж' => 'zh', 'з' => 'z', 'ѕ' => 'z', 'и' => 'i', 'й' => 'j', + 'ј' => 'j', 'і' => 'i', 'ї' => 'yi', 'к' => 'k', 'ќ' => 'k', + 'л' => 'l', 'љ' => 'l', 'м' => 'm', 'н' => 'n', 'њ' => 'n', + 'о' => 'o', 'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', + 'у' => 'u', 'ў' => 'u', 'ф' => 'f', 'х' => 'h', 'ц' => 'ts', + 'ч' => 'ch', 'џ' => 'dh', 'ш' => 'sh', 'щ' => 'shh', 'ъ' => '', + 'ы' => 'y', 'ь' => '', 'э' => 'e', 'ю' => 'yu', 'я' => 'ya', + //turk + 'Ç' => 'c', 'Ş' => 's', 'Ğ' => 'g', 'Ü' => 'u', 'İ' => 'i', + 'Ö' => 'o', 'ç' => 'c', 'ş' => 's', 'ğ' => 'g', 'ü' => 'u', + 'ö' => 'o', 'ı' => 'i', '+' => 'plus', '#' => 'sharp' +); + +$sed_months_list = array( + 1 => 'января', 2 => 'февраля', 3 => 'марта', 4 => 'апреля', + 5 => 'мая', 6 => 'июня', 7 => 'июля', 8 => 'августа', + 9 => 'сентября', 10 => 'октября', 11 => 'ноября', 12 => 'декабря' +); + +$sed_daysweek_list = array( + 'воскресенье', 'понедельник', 'вторник', 'среда', + 'четверг', 'пятница', 'суббота' +); diff --git a/system/lang/ru/message.lang.php b/system/lang/ru/message.lang.php new file mode 100644 index 0000000..45ba780 --- /dev/null +++ b/system/lang/ru/message.lang.php @@ -0,0 +1,123 @@ +Теперь вы можете войти на сайт, используя имя и пароль, указанные при регистрации."; +$L['msg109_0'] = "Пользователь удалён"; +$L['msg109_1'] = "Готово, пользователь удалён."; +$L['msg113_0'] = "Профиль обновлен"; +$L['msg113_1'] = "Готово, изменения в вашей учётной записи сохранены."; +$L['msg117_0'] = "Регистрация отключена"; +$L['msg117_1'] = "Регистрация новых пользователей отключена."; +$L['msg118_0'] = "Регистрация прошла успешно (шаг 1)"; +$L['msg118_1'] = "Ваша учетная запись на данный момент не активна.
    Администратор сайта должен проверить и активировать ее перед тем, как вы сможете войти.
    Вы получите еще одно письмо, когда это произойдет."; +$L['msg151_0'] = "Ошибка входа (неверное имя пользователя или пароль)"; +$L['msg151_1'] = "Ошибка, введенное имя пользователя отсутствует в базе данных, либо неправильно введен пароль !"; +$L['msg152_0'] = "Ошибка входа (учетная запись не активирована)."; +$L['msg152_1'] = "Ошибка, учетная запись зарегистрирована, но еще не активирована. Пожалуйста, проверьте свой почтовый ящик и подтвердите регистрацию на сайте, нажав на ссылку в тексте письма. После этого ваша учетная запись будет активирована."; +$L['msg153_0'] = "В доступе отказано (пользователь отключен)"; +$L['msg153_1'] = "Ошибка, ваша учетная запись заблокирована либо отключена."; +$L['msg157_0'] = "Неверная ссылка на подтверждение регистрации учётной записи."; +$L['msg157_1'] = "Данная ссылка на подтверждение регистрации не действительна. Попробуйте перейти еще раз по ссылке в теле письма, или сообщите об ошибке владельцу сайта."; + +/* ======== General ======== */ + +$L['msg300_0'] = "Новая запись"; +$L['msg300_1'] = "Готово, запись внесена в базу данных.
    Администратор сайта скоро проверит её.
    Спасибо!"; +$L['msg301_0'] = "Новая запись"; +$L['msg301_1'] = "Готово, запись внесена в базу данных."; +$L['msg302_0'] = "Запись удалена"; +$L['msg302_1'] = "Готово, запись удалена из базы данных."; +$L['msg303_0'] = "Ошибка при внесении данных"; +$L['msg303_1'] = "Произошла ошибка, одно/несколько обязательных полей незаполнены, или заполнены неверно."; + +/* ======== Error Pages ======== */ + +$L['msg400_0'] = "Ошибка в синтаксисе"; +$L['msg400_1'] = "В вашем запросе есть синтаксическая ошибка"; +$L['msg401_0'] = "Не авторизован"; +$L['msg401_1'] = "Чтобы пройти по запрошенной ссылке необходимо ввести имя и пароль.
    Либо введены не правильные имя/пароль, либо ваш браузер не поддерживает данную функцию."; +$L['msg403_0'] = "Запрещено"; +$L['msg403_1'] = "Недостаточно прав чтобы открыть запрошенную ссылку.
    Пожалуйста, сообщите владельцу сайта, если вы считаете, что произошла ошибка."; +$L['msg404_0'] = "Не найдено"; +$L['msg404_1'] = "Запрошенный объект или ссылка не найдены на этом сервере.
    Запрашиваемая ссылка, устарела, ошибочна, либо на сервере был запрещен её просмотр."; +$L['msg500_0'] = "Внутренняя ошибка на сервере"; +$L['msg500_1'] = "Произошла внутренняя ошибка или ошибка в конфигурации сервера.
    Пожалуйста свяжитесь с администратором сайта, и сообщите об ошибке и порядок действий при которых она появилась."; + +/* ======== Private messages ======== */ + +$L['msg502_0'] = "Личное сообщение отправлено"; +$L['msg502_1'] = "Личное сообщение успешно отправлено.
    Нажмите "; +$L['msg502_2'] = "здесь"; +$L['msg502_3'] = " чтобы вернуться к личным сообщениям, или послать новое личное сообщение."; + +/* ======== Forums ======== */ + +$L['msg602_0'] = "Раздел заблокирован"; +$L['msg602_1'] = "Этот раздел заблокирован."; +$L['msg603_0'] = "Тема заблокирована."; +$L['msg603_1'] = "Эта тема заблокирована."; + +/* ======== System ======== */ + +$L['msg900_0'] = "В разработке"; +$L['msg900_1'] = "Страница ещё не готова, зайдите, пожалуйста, позже."; +$L['msg904_0'] = "Системные страницы доступны только владельцу сайта"; +$L['msg904_1'] = "Недостаточно прав для просмотра этой страницы."; +$L['msg907_0'] = "Плагин не загружен"; +$L['msg907_1'] = "Произошла ошибка при попытке загрузить этот плагин, возможно, отсутствуют некоторые файлы."; +$L['msg911_0'] = "Языковой файл отсутствует"; +$L['msg911_1'] = "Ошибка при попытке проверки данного языкового набора."; +$L['msg915_0'] = "Ошибка!"; +$L['msg915_1'] = "По меньшей мере одно поле не заполнено."; +$L['msg916_0'] = "База данных обновлена"; +$L['msg916_1'] = "Готово, база данных успешно обновлена.
    Затронутые записи : " . (isset($num) ? $num : ''); +$L['msg917_0'] = "База данных обновлена"; +$L['msg917_1'] = "Готово, база данных успешно обновлена."; +$L['msg930_0'] = "Доступ запрещён, или страница не существует"; +$L['msg930_1'] = "Зарегистрируйтесь или войди на сайт, чтобы иметь доступ к запрашиваемой информации. Возможно также, что ссылка устарела. Попробуйте поиск, чтобы найти необходимую информацию."; +$L['msg940_0'] = "Секция закрыта"; +$L['msg940_1'] = "Доступ к этому разделу сайта закрыт."; +$L['msg950_0'] = "Ошибка"; +$L['msg950_1'] = "Возникла ошибка, возможно, неверный адрес?"; + +/* ======== Overall ======== */ + +$L['msgredir'] = "Перенаправление..."; diff --git a/system/smilies/icon_biggrin.gif b/system/smilies/icon_biggrin.gif new file mode 100644 index 0000000..c1271c0 Binary files /dev/null and b/system/smilies/icon_biggrin.gif differ diff --git a/system/smilies/icon_blush.gif b/system/smilies/icon_blush.gif new file mode 100644 index 0000000..b59be3a Binary files /dev/null and b/system/smilies/icon_blush.gif differ diff --git a/system/smilies/icon_confused.gif b/system/smilies/icon_confused.gif new file mode 100644 index 0000000..9384358 Binary files /dev/null and b/system/smilies/icon_confused.gif differ diff --git a/system/smilies/icon_cool.gif b/system/smilies/icon_cool.gif new file mode 100644 index 0000000..c2be37a Binary files /dev/null and b/system/smilies/icon_cool.gif differ diff --git a/system/smilies/icon_cry.gif b/system/smilies/icon_cry.gif new file mode 100644 index 0000000..33fec3c Binary files /dev/null and b/system/smilies/icon_cry.gif differ diff --git a/system/smilies/icon_dontgetit.gif b/system/smilies/icon_dontgetit.gif new file mode 100644 index 0000000..e58ee83 Binary files /dev/null and b/system/smilies/icon_dontgetit.gif differ diff --git a/system/smilies/icon_dozingoff.gif b/system/smilies/icon_dozingoff.gif new file mode 100644 index 0000000..55670d8 Binary files /dev/null and b/system/smilies/icon_dozingoff.gif differ diff --git a/system/smilies/icon_love.gif b/system/smilies/icon_love.gif new file mode 100644 index 0000000..9468b34 Binary files /dev/null and b/system/smilies/icon_love.gif differ diff --git a/system/smilies/icon_mad.gif b/system/smilies/icon_mad.gif new file mode 100644 index 0000000..133d7f2 Binary files /dev/null and b/system/smilies/icon_mad.gif differ diff --git a/system/smilies/icon_neutral.gif b/system/smilies/icon_neutral.gif new file mode 100644 index 0000000..7bf0746 Binary files /dev/null and b/system/smilies/icon_neutral.gif differ diff --git a/system/smilies/icon_no.gif b/system/smilies/icon_no.gif new file mode 100644 index 0000000..e040912 Binary files /dev/null and b/system/smilies/icon_no.gif differ diff --git a/system/smilies/icon_o_o.gif b/system/smilies/icon_o_o.gif new file mode 100644 index 0000000..92fbaa7 Binary files /dev/null and b/system/smilies/icon_o_o.gif differ diff --git a/system/smilies/icon_razz.gif b/system/smilies/icon_razz.gif new file mode 100644 index 0000000..966d493 Binary files /dev/null and b/system/smilies/icon_razz.gif differ diff --git a/system/smilies/icon_sad.gif b/system/smilies/icon_sad.gif new file mode 100644 index 0000000..3ea921f Binary files /dev/null and b/system/smilies/icon_sad.gif differ diff --git a/system/smilies/icon_satisfied.gif b/system/smilies/icon_satisfied.gif new file mode 100644 index 0000000..c74666a Binary files /dev/null and b/system/smilies/icon_satisfied.gif differ diff --git a/system/smilies/icon_smile.gif b/system/smilies/icon_smile.gif new file mode 100644 index 0000000..2dd9bd9 Binary files /dev/null and b/system/smilies/icon_smile.gif differ diff --git a/system/smilies/icon_void.gif b/system/smilies/icon_void.gif new file mode 100644 index 0000000..6a5f920 Binary files /dev/null and b/system/smilies/icon_void.gif differ diff --git a/system/smilies/icon_wink.gif b/system/smilies/icon_wink.gif new file mode 100644 index 0000000..13c44da Binary files /dev/null and b/system/smilies/icon_wink.gif differ diff --git a/system/smilies/icon_yes.gif b/system/smilies/icon_yes.gif new file mode 100644 index 0000000..f06ed68 Binary files /dev/null and b/system/smilies/icon_yes.gif differ diff --git a/system/templates.php b/system/templates.php new file mode 100644 index 0000000..d97b3e3 --- /dev/null +++ b/system/templates.php @@ -0,0 +1,962 @@ +'; + public $block_start_word = 'BEGIN:'; + public $block_end_word = 'END:'; + public $tag_start_delim = '{'; + public $tag_end_delim = '}'; + public $comment_delim = '#'; + public $comment_preg = '( ?#.*?)?'; + public $callback_delim = '|'; + public $callback_preg = '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(\(.*?\))?'; + public $allow_callbacks = true; + public $allowed_callbacks = array( + 'strtoupper', 'strtolower', 'ucwords', 'ucfirst', 'strrev', 'str_word_count', 'strlen', + 'str_replace', 'str_ireplace', 'preg_replace', 'strip_tags', 'stripcslashes', 'stripslashes', 'substr', + 'str_pad', 'str_repeat', 'strtr', 'trim', 'ltrim', 'rtrim', 'nl2br', 'wordwrap', 'printf', 'sprintf', + 'addslashes', 'addcslashes', + 'htmlentities', 'html_entity_decode', 'htmlspecialchars', 'htmlspecialchars_decode', + 'urlencode', 'urldecode', + 'date', 'idate', 'strtotime', 'strftime', 'getdate', 'gettimeofday', + 'number_format', 'money_format', + 'var_dump', 'print_r', 'crop', 'resize', 'crop_image', 'resize_image' + ); + + public $mainblock = 'main'; + public $output_type = 'HTML'; + public $force_globals = true; + public $debug = false; + public $compress_output = false; // HTML minify sed 177 by Amro + protected $_null_string = array('' => ''); + protected $_null_block = array('' => ''); + protected $_error = ''; + protected $_autoreset = true; + protected $_ignore_missing_blocks = true; + public function __construct($options, $tpldir = '', $files = null, $mainblock = 'main', $autosetup = true) + { + + if (!is_array($options)) { + $options = array('file' => $options, 'path' => $tpldir, 'files' => $files, 'mainblock' => $mainblock, 'autosetup' => $autosetup); + } + + if (!isset($options['tag_start'])) { + $options['tag_start'] = $this->tag_start_delim; + } + if (!isset($options['tag_end'])) { + $options['tag_end'] = $this->tag_end_delim; + } + + $this->restart($options); + } + + public function restart($options, $tpldir = '', $files = null, $mainblock = 'main', $autosetup = true, $tag_start = '{', $tag_end = '}') + { + + if (is_array($options)) { + foreach ($options as $option => $value) { + switch ($option) { + case 'path': + case 'tpldir': + $tpldir = $value; + break; + + case 'callbacks': + $this->allow_callbacks = true; + $this->allowed_callbacks = array_merge($this->allowed_callbacks, (array) $value); + break; + + case 'debug': + $this->debug = $value; + break; + + case 'file': + case 'files': + case 'mainblock': + case 'autosetup': + case 'tag_start': + case 'tag_end': + $$option = $value; + break; + } + } + + $this->filename = $file; + } else { + $this->filename = $options; + } + + if (isset($tpldir)) { + $this->tpldir = $tpldir; + } + if (defined('XTPL_DIR') && empty($this->tpldir)) { + $this->tpldir = XTPL_DIR; + } + + if (isset($files) && is_array($files)) { + $this->files = $files; + } + + if (isset($mainblock)) { + $this->mainblock = $mainblock; + } + + if (isset($tag_start)) { + $this->tag_start_delim = $tag_start; + } + + if (isset($tag_end)) { + $this->tag_end_delim = $tag_end; + } + + $this->filecontents = ''; + + $this->blocks = array(); + $this->parsed_blocks = array(); + $this->preparsed_blocks = array(); + $this->block_parse_order = array(); + $this->sub_blocks = array(); + $this->vars = array(); + $this->filevars = array(); + $this->filevar_parent = array(); + $this->filecache = array(); + + if ($this->allow_callbacks) { + $delim = preg_quote($this->callback_delim); + if (mb_strlen($this->callback_delim) < mb_strlen($delim)) { + + $delim = preg_quote($delim); + } + + $this->callback_preg = preg_replace($this->preg_delimiter . '^\(' . $delim . '(.*)\)\*$' . $this->preg_delimiter, '\\1', $this->callback_preg); + } + + if (!isset($autosetup) || $autosetup) { + $this->setup(); + } + } + + public function setup($add_outer = false) + { + + $this->tag_start_delim = preg_quote($this->tag_start_delim); + $this->tag_end_delim = preg_quote($this->tag_end_delim); + + $this->file_delim = $this->preg_delimiter . $this->tag_start_delim . "FILE\s*\"([^\"]+)\"" . $this->comment_preg . $this->tag_end_delim . $this->preg_delimiter . 'm'; + + $this->filevar_delim = $this->preg_delimiter . $this->tag_start_delim . "FILE\s*" . $this->tag_start_delim . "([A-Za-z0-9\._\x7f-\xff]+?)" . $this->comment_preg . $this->tag_end_delim . $this->comment_preg . $this->tag_end_delim . $this->preg_delimiter . 'm'; + + $this->filevar_delim_nl = $this->preg_delimiter . "^\s*" . $this->tag_start_delim . "FILE\s*" . $this->tag_start_delim . "([A-Za-z0-9\._\x7f-\xff]+?)" . $this->comment_preg . $this->tag_end_delim . $this->comment_preg . $this->tag_end_delim . "\s*\n" . $this->preg_delimiter . 'm'; + + $this->callback_preg = '(' . preg_quote($this->callback_delim) . $this->callback_preg . ')*'; + + if (empty($this->filecontents)) { + $this->filecontents = $this->_r_getfile($this->filename); + } + + if ($add_outer) { + $this->_add_outer_block(); + } + + $this->blocks = $this->_maketree($this->filecontents, ''); + $this->filevar_parent = $this->_store_filevar_parents($this->blocks); + $this->scan_globals(); + } + + + public function assign($name, $val = '', $reset_array = true) + { + + if (is_array($name) || is_object($name)) { + + foreach ($name as $k => $v) { + + $this->vars[$k] = $v; + } + } elseif (is_array($val) || is_object($val)) { + + // Clear the existing values + if ($reset_array) { + $this->vars[$name] = array(); + } + + foreach ($val as $k => $v) { + + $this->vars[$name][$k] = $v; + } + } else { + + $this->vars[$name] = $val; + } + } + + public function assign_file($name, $val = '') + { + + if (is_array($name)) { + + foreach ($name as $k => $v) { + + $this->_assign_file_sub($k, $v); + } + } else { + + $this->_assign_file_sub($name, $val); + } + } + + public function parse($bname) + { + + if (isset($this->preparsed_blocks[$bname])) { + + $copy = $this->preparsed_blocks[$bname]; + } elseif (isset($this->blocks[$bname])) { + + $copy = $this->blocks[$bname]; + } elseif ($this->_ignore_missing_blocks) { + + $this->_set_error("parse: blockname [$bname] does not exist"); + return; + } else { + + $this->_set_error("parse: blockname [$bname] does not exist"); + } + + if (!isset($copy)) { + die('Block: ' . $bname); + } + + $copy = preg_replace($this->filevar_delim_nl, '', $copy); + + $var_array = array(); + + preg_match_all($this->preg_delimiter . $this->tag_start_delim . '([A-Za-z0-9\._\x7f-\xff]+?' . $this->callback_preg . $this->comment_preg . ')' . $this->tag_end_delim . $this->preg_delimiter, $copy, $var_array); + + $var_array = $var_array[1]; + + foreach ($var_array as $k => $v) { + $orig_v = $v; + + $comment = ''; + $any_comments = explode($this->comment_delim, $v); + if (count($any_comments) > 1) { + $comment = array_pop($any_comments); + } + $v = rtrim(implode($this->comment_delim, $any_comments)); + + if ($this->allow_callbacks) { + $callback_funcs = explode($this->callback_delim, $v); + $v = rtrim($callback_funcs[0]); + unset($callback_funcs[0]); + } + + $sub = explode('.', $v); + + if ($sub[0] == '_BLOCK_') { + + unset($sub[0]); + + $bname2 = implode('.', $sub); + + $var = isset($this->parsed_blocks[$bname2]) ? $this->parsed_blocks[$bname2] : ''; + $nul = (!isset($this->_null_block[$bname2])) ? $this->_null_block[''] : $this->_null_block[$bname2]; + + if ($var === '') { + + if ($nul == '') { + $copy = preg_replace($this->preg_delimiter . $this->tag_start_delim . $v . $this->tag_end_delim . $this->preg_delimiter . 'm', '', $copy); + } else { + + $copy = preg_replace($this->preg_delimiter . $this->tag_start_delim . $v . $this->tag_end_delim . $this->preg_delimiter . 'm', "$nul", $copy); + } + } else { + + switch (true) { + case preg_match($this->preg_delimiter . "^\n" . $this->preg_delimiter, $var) && preg_match($this->preg_delimiter . "\n$" . $this->preg_delimiter, $var): + $var = mb_substr($var, 1, -1); + break; + + case preg_match($this->preg_delimiter . "^\n" . $this->preg_delimiter, $var): + $var = mb_substr($var, 1); + break; + + case preg_match($this->preg_delimiter . "\n$" . $this->preg_delimiter, $var): + $var = mb_substr($var, 0, -1); + break; + } + + $var = str_replace('\\', '\\\\', $var); + $var = str_replace('$', '\\$', $var); + $var = str_replace('\\|', '|', $var); + $copy = preg_replace($this->preg_delimiter . $this->tag_start_delim . $v . $this->tag_end_delim . $this->preg_delimiter . 'm', "$var", $copy); + + if (preg_match($this->preg_delimiter . "^\n" . $this->preg_delimiter, $copy) && preg_match($this->preg_delimiter . "\n$" . $this->preg_delimiter, $copy)) { + $copy = mb_substr($copy, 1, -1); + } + } + } else { + // TAGS + + $var = $this->vars; + + foreach ($sub as $v1) { + + switch (true) { + case is_array($var): + if (!isset($var[$v1]) || (is_string($var[$v1]) && mb_strlen($var[$v1]) == 0)) { + + if (defined($v1)) { + + $var[$v1] = constant($v1); + } else { + + $var[$v1] = null; + } + } + $var = $var[$v1]; + break; + + case is_object($var): + if (!isset($var->$v1) || (is_string($var->$v1) && mb_strlen($var->$v1) == 0)) { + if (defined($v1)) { + + $var->$v1 = constant($v1); + } else { + + $var->$v1 = null; + } + } + $var = $var->$v1; + break; + } + } + + if ($this->allow_callbacks) { + if (is_array($callback_funcs) && !empty($callback_funcs)) { + foreach ($callback_funcs as $callback) { + if (preg_match($this->preg_delimiter . '\((.*?)\)' . $this->preg_delimiter, $callback, $matches)) { + $parameters = array(); + + if (preg_match_all($this->preg_delimiter . '(?# + match optional comma, optional other stuff, then + apostrophes / quotes then stuff followed by comma or + closing bracket negative look behind for an apostrophe + or quote not preceeded by an escaping back slash + )[,?\s*?]?[\'|"](.*?)(?preg_delimiter, $matches[1] . ')', $param_matches)) { + $parameters = $param_matches[0]; + } + if (count($parameters)) { + array_walk($parameters, array($this, 'trim_callback')); + if (($key = array_search('%s', $parameters)) !== false) { + $parameters[$key] = $var; + } else { + array_unshift($parameters, $var); + } + } else { + unset($parameters); + } + } + + $callback = preg_replace($this->preg_delimiter . '\(.*?\)' . $this->preg_delimiter, '', $callback); + + if (is_subclass_of($this, 'XTemplate') && method_exists($this, $callback) && is_callable(array($this, $callback))) { + if (isset($parameters)) { + $var = call_user_func_array(array($this, $callback), $parameters); + unset($parameters); + } else { + $var = call_user_func(array($this, $callback), $var); + } + } elseif (in_array($callback, $this->allowed_callbacks) && function_exists($callback) && is_callable($callback)) { + if (isset($parameters)) { + $var = call_user_func_array($callback, $parameters); + unset($parameters); + } else { + $var = call_user_func($callback, isset($var) ? $var : ''); + } + } + } + } + } + + $nul = (!isset($this->_null_string[$v])) ? ($this->_null_string[""]) : ($this->_null_string[$v]); + $var = (!isset($var)) ? $nul : $var; + + if (is_string($var)) { + if ($var === '') { + $copy = preg_replace($this->preg_delimiter . $this->tag_start_delim . preg_quote($orig_v) . $this->tag_end_delim . $this->preg_delimiter . 'm', '', $copy); + } else { + $var = str_replace('\\', '\\\\', $var); + $var = str_replace('$', '\\$', $var); + $var = str_replace('\\|', '|', $var); + } + } + + $copy = preg_replace($this->preg_delimiter . $this->tag_start_delim . preg_quote($orig_v) . $this->tag_end_delim . $this->preg_delimiter . 'm', "$var", $copy); + + if (preg_match($this->preg_delimiter . "^\n" . $this->preg_delimiter, $copy) && preg_match($this->preg_delimiter . "\n$" . $this->preg_delimiter, $copy)) { + $copy = mb_substr($copy, 1); + } + } + } + + if (isset($this->parsed_blocks[$bname])) { + $this->parsed_blocks[$bname] .= $copy; + } else { + $this->parsed_blocks[$bname] = $copy; + } + + if ($this->_autoreset && (!empty($this->sub_blocks[$bname]))) { + + reset($this->sub_blocks[$bname]); + + foreach ($this->sub_blocks[$bname] as $k => $v) { + $this->reset($v); + } + } + } + + public function rparse($bname) + { + + if (!empty($this->sub_blocks[$bname])) { + + reset($this->sub_blocks[$bname]); + + foreach ($this->sub_blocks[$bname] as $k => $v) { + + if (!empty($v)) { + $this->rparse($v); + } + } + } + + $this->parse($bname); + } + + public function insert_loop($bname, $var, $value = '') + { + + $this->assign($var, $value); + $this->parse($bname); + } + + public function compress($out) + { + $out = preg_replace("/(?:(?:\/\*(?:[^*]|(?:\*+[^*\/]))*\*+\/)|(?:(?insert_loop($bname, $var, $v); + } + } + } + + public function text($bname = '') + { + + $text = ''; + + if ($this->debug && $this->output_type == 'HTML') { + + $text .= '\n"; + } + + $bname = !empty($bname) ? $bname : $this->mainblock; + + $text .= isset($this->parsed_blocks[$bname]) ? $this->parsed_blocks[$bname] : $this->get_error(); + + return $text; + } + + public function out($bname) + { + $out = $this->text($bname); + $out = preg_replace('/\s+$/m', '', $out); // fix Amro 04.11.2017 + if ($this->compress_output) { + $out = $this->compress($out); + } + echo trim($out); + } + + public function out_file($bname, $fname) + { + + if (!empty($bname) && !empty($fname) && is_writeable($fname)) { + + $fp = fopen($fname, 'w'); + fwrite($fp, $this->text($bname)); + fclose($fp); + } + } + + public function reset($bname) + { + + $this->parsed_blocks[$bname] = ''; + } + + public function parsed($bname) + { + + return (!empty($this->parsed_blocks[$bname])); + } + + public function set_null_string($str, $varname = '') + { + + $this->_null_string[$varname] = $str; + } + + public function SetNullString($str, $varname = '') + { + $this->set_null_string($str, $varname); + } + + public function set_null_block($str, $bname = '') + { + + $this->_null_block[$bname] = $str; + } + + public function SetNullBlock($str, $bname = '') + { + $this->set_null_block($str, $bname); + } + + public function set_autoreset() + { + + $this->_autoreset = true; + } + + public function clear_autoreset() + { + + $this->_autoreset = false; + } + + public function scan_globals() + { + + $GLOB = array(); + + if ($this->force_globals && ini_get('auto_globals_jit') == true) { + $tmp = $_SERVER; + $tmp = $_ENV; + $tmp = $_REQUEST; + unset($tmp); + } + + foreach ($GLOBALS as $k => $v) { + + $GLOB[$k] = array(); + + switch ($k) { + + case 'GLOBALS': + break; + + case '_COOKIE': + case '_SESSION': + $GLOB[$k] = array_merge($GLOB[$k], $v); + break; + + case '_ENV': + case '_FILES': + case '_GET': + case '_POST': + case '_REQUEST': + case '_SERVER': + default: + $GLOB[$k] = $v; + break; + } + } + + $this->assign('PHP', $GLOB); + } + + public function get_error() + { + + $retval = false; + + if ($this->_error != '') { + + switch ($this->output_type) { + case 'HTML': + case 'html': + $retval = '[XTemplate]
      ' . nl2br(str_replace('* ', '
    • ', str_replace(" *\n", "
    • \n", $this->_error))) . '
    '; + break; + + default: + $retval = '[XTemplate] ' . str_replace(' *\n', "\n", $this->_error); + break; + } + } + + return $retval; + } + + public function _maketree($con, $parentblock = '') + { + + $blocks = array(); + + $con2 = explode($this->block_start_delim, $con); + + if (!empty($parentblock)) { + + $block_names = explode('.', $parentblock); + $level = sizeof($block_names); + } else { + + $block_names = array(); + $level = 0; + } + + $patt = "(" . $this->block_start_word . "|" . $this->block_end_word . ")\s*(\w+)" . $this->comment_preg . "\s*" . $this->block_end_delim . "(.*)"; + + foreach ($con2 as $k => $v) { + + $res = array(); + + if (preg_match_all($this->preg_delimiter . "$patt" . $this->preg_delimiter . 'ims', $v, $res, PREG_SET_ORDER)) { + + $block_word = $res[0][1]; + $block_name = $res[0][2]; + $comment = $res[0][3]; + $content = $res[0][4]; + + if (mb_strtoupper($block_word) == $this->block_start_word) { + + $parent_name = implode('.', $block_names); + $block_names[++$level] = $block_name; + $cur_block_name = implode('.', $block_names); + $this->block_parse_order[] = $cur_block_name; + $blocks[$cur_block_name] = isset($blocks[$cur_block_name]) ? $blocks[$cur_block_name] . $content : $content; + $blocks[$parent_name] .= str_replace('\\', '', $this->tag_start_delim) . '_BLOCK_.' . $cur_block_name . str_replace('\\', '', $this->tag_end_delim); + $this->sub_blocks[$parent_name][] = $cur_block_name; + $this->sub_blocks[$cur_block_name][] = ''; + } else if (mb_strtoupper($block_word) == $this->block_end_word) { + + unset($block_names[$level--]); + + $parent_name = implode('.', $block_names); + $blocks[$parent_name] .= $content; + } + } else { + + $tmp = implode('.', $block_names); + + if ($k) { + $blocks[$tmp] .= $this->block_start_delim; + } + + $blocks[$tmp] = isset($blocks[$tmp]) ? $blocks[$tmp] . $v : $v; + } + } + + return $blocks; + } + + private function _assign_file_sub($name, $val) + { + + if (isset($this->filevar_parent[$name])) { + + if ($val != '') { + + $val = $this->_r_getfile($val); + + foreach ($this->filevar_parent[$name] as $parent) { + + if (isset($this->preparsed_blocks[$parent]) && !isset($this->filevars[$name])) { + + $copy = $this->preparsed_blocks[$parent]; + } elseif (isset($this->blocks[$parent])) { + + $copy = $this->blocks[$parent]; + } + + $res = array(); + + preg_match_all($this->filevar_delim, $copy, $res, PREG_SET_ORDER); + + if (is_array($res) && isset($res[0])) { + + foreach ($res as $v) { + + if ($v[1] == $name) { + + $copy = preg_replace($this->preg_delimiter . preg_quote($v[0]) . $this->preg_delimiter, "$val", $copy); + $this->preparsed_blocks = array_merge($this->preparsed_blocks, $this->_maketree($copy, $parent)); + $this->filevar_parent = array_merge($this->filevar_parent, $this->_store_filevar_parents($this->preparsed_blocks)); + } + } + } + } + } + } + + $this->filevars[$name] = $val; + } + + public function _store_filevar_parents($blocks) + { + + $parents = array(); + + foreach ($blocks as $bname => $con) { + + $res = array(); + + preg_match_all($this->filevar_delim, $con, $res); + + foreach ($res[1] as $k => $v) { + + $parents[$v][] = $bname; + } + } + return $parents; + } + + private function _set_error($str) + { + + $this->_error .= '* ' . $str . " *\n"; + } + + protected function _getfile($file) + { + + if (!isset($file)) { + $this->_set_error('!isset file name!' . $file); + + return ''; + } + + if (isset($this->files)) { + + if (isset($this->files[$file])) { + + $file = $this->files[$file]; + } + } + + if (!empty($this->tpldir)) { + + if (is_array($this->tpldir)) { + + foreach ($this->tpldir as $dir) { + + if (is_readable($dir . DIRECTORY_SEPARATOR . $file)) { + $file = $dir . DIRECTORY_SEPARATOR . $file; + break; + } + } + } else { + + $file = $this->tpldir . DIRECTORY_SEPARATOR . $file; + } + } + + $file_text = ''; + + if (isset($this->filecache[$file])) { + + $file_text .= $this->filecache[$file]; + + if ($this->debug && $this->output_type == 'HTML') { + $file_text = '' . "\n" . $file_text; + } + } else { + + if (is_file($file) && is_readable($file)) { + + if (filesize($file)) { + + if (!($fh = fopen($file, 'r'))) { + + $this->_set_error('Cannot open file: ' . realpath($file)); + return ''; + } + + $file_text .= fread($fh, filesize($file)); + fclose($fh); + } + + if ($this->debug && $this->output_type == 'HTML') { + $file_text = '' . "\n" . $file_text; + } + } elseif (str_replace('.', '', phpversion()) >= '430' && $file_text = @file_get_contents($file, true)) { + + if ($file_text === false) { + $this->_set_error("[" . realpath($file) . "] ($file) does not exist"); + if ($this->output_type == 'HTML') { + $file_text = "__XTemplate fatal error: file [$file] does not exist in the include path__"; + } + } elseif ($this->debug && $this->output_type == 'HTML') { + $file_text = '' . "\n" . $file_text; + } + } elseif (!is_file($file)) { + + $this->_set_error("[" . realpath($file) . "] ($file) does not exist"); + if ($this->output_type == 'HTML') { + $file_text .= "__XTemplate fatal error: file [$file] does not exist__"; + } + } elseif (!is_readable($file)) { + + $this->_set_error("[" . realpath($file) . "] ($file) is not readable"); + if ($this->output_type == 'HTML') { + $file_text .= "__XTemplate fatal error: file [$file] is not readable__"; + } + } + + $this->filecache[$file] = $file_text; + } + + return $file_text; + } + + public function _r_getfile($file) + { + + $text = $this->_getfile($file); + + $res = array(); + + while (preg_match($this->file_delim, $text, $res)) { + + $text2 = $this->_getfile($res[1]); + $text = preg_replace($this->preg_delimiter . preg_quote($res[0]) . $this->preg_delimiter, $text2, $text); + } + + return $text; + } + + protected function trim_callback(&$value) + { + $value = preg_replace($this->preg_delimiter . "^.*(%s).*$" . $this->preg_delimiter, '\\1', trim($value)); + $value = preg_replace($this->preg_delimiter . '^,?\s*?(.*?)[,|\)]?$' . $this->preg_delimiter, '\\1', trim($value)); + $value = preg_replace($this->preg_delimiter . '^[\'|"]?(.*?)[\'|"]?$' . $this->preg_delimiter, '\\1', trim($value)); + $value = preg_replace($this->preg_delimiter . '\\\\(?=\'|")' . $this->preg_delimiter, '', $value); + // Deal with escaped commas (beta) + $value = preg_replace($this->preg_delimiter . '\\\,' . $this->preg_delimiter, ',', $value); + } + + private function _add_outer_block() + { + + $before = $this->block_start_delim . $this->block_start_word . ' ' . $this->mainblock . ' ' . $this->block_end_delim; + $after = $this->block_start_delim . $this->block_end_word . ' ' . $this->mainblock . ' ' . $this->block_end_delim; + + $this->filecontents = $before . "\n" . $this->filecontents . "\n" . $after; + } + + protected function _pre_var_dump($args) + { + + if ($this->debug) { + echo '
    ';
    +			var_dump(func_get_args());
    +			echo '
    '; + } + } + + protected function _ob_var_dump($args) + { + + if ($this->debug) { + ob_start(); + $this->_pre_var_dump(func_get_args()); + return ob_get_clean(); + } + } +} diff --git a/system/upgrade/upgrade_125_130.php b/system/upgrade/upgrade_125_130.php new file mode 100644 index 0000000..1b3d6bf --- /dev/null +++ b/system/upgrade/upgrade_125_130.php @@ -0,0 +1,47 @@ +"; + +$adminmain .= "Fixing the bug #450
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users CHANGE user_timezone user_timezone VARCHAR(6) NOT NULL DEFAULT '0'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Fixing the bug #441
    "; +$sqlqr = "UPDATE " . $cfg['sqldbprefix'] . "parser SET parser_code1='" . sed_sql_prep('$2') . "' WHERE parser_title='Page 2'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Adding the option to set a default country for the new members (Admin > Config > Users)
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) VALUES ('core', 'users', '02', 'defaultcountry', '1', '', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the SQL version number to 130...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=130 WHERE stat_name='version'"); +$adminmain .= "-----------------------
    "; + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_126_130.php b/system/upgrade/upgrade_126_130.php new file mode 100644 index 0000000..94255a1 --- /dev/null +++ b/system/upgrade/upgrade_126_130.php @@ -0,0 +1,47 @@ +"; + +$adminmain .= "Fixing the bug #450
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users CHANGE user_timezone user_timezone VARCHAR(6) NOT NULL DEFAULT '0'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Fixing the bug #441
    "; +$sqlqr = "UPDATE " . $cfg['sqldbprefix'] . "parser SET parser_code1='" . sed_sql_prep('$2') . "' WHERE parser_title='Page 2'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Adding the option to set a default country for the new members (Admin > Config > Users)
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) VALUES ('core', 'users', '02', 'defaultcountry', '1', '', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the SQL version number to 130...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=130 WHERE stat_name='version'"); +$adminmain .= "-----------------------
    "; + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_130_150.php b/system/upgrade/upgrade_130_150.php new file mode 100644 index 0000000..ed2ecbc --- /dev/null +++ b/system/upgrade/upgrade_130_150.php @@ -0,0 +1,136 @@ +"; + + +$adminmain .= "Adding the column to store the 'displayed' thumbnail in the gallery
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs_folders ADD pff_sample INT(11) NOT NULL DEFAULT '0' AFTER pff_isgallery"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Adding the Gallery into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "core (ct_code, ct_title, ct_version, ct_state, ct_lock) VALUES ('gallery', 'Gallery', '150', '1', '0')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '01', 'disable_gallery', '3', '0', '' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '10', 'gallery_gcol', '2', '5', '' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '11', 'gallery_bcol', '2', '6', '' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '12', 'gallery_imgmaxwidth', '2', '600', '' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '20', 'gallery_logofile', '1', '', '' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '21', 'gallery_logopos', '2', 'Bottom left', 'Top left,Top right,Bottom left,Bottom right' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '22', 'gallery_logotrsp', '2', '50', '0,5,10,15,20,30,40,50,60,70,80,90,95,100' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'gallery', '23', 'gallery_logojpegqual', '2', '90', '0,5,10,20,30,40,50,60,70,80,90,95,100' )"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Adding the rights for the gallery"; +$sqlqr = "SELECT grp_id FROM " . $cfg['sqldbprefix'] . "groups WHERE 1 order by grp_id ASC"; +$sql = sed_sql_query($sqlqr); + +while ($row = sed_sql_fetchassoc($sql)) { + if ($row['grp_id'] == 1 || $row['grp_id'] == 2) { + $val_rights = 1; + $val_lock = 254; + } elseif ($row['grp_id'] == 3) { + $val_rights = 0; + $val_lock = 255; + } elseif ($row['grp_id'] == 5) { + $val_rights = 255; + $val_lock = 255; + } elseif ($row['grp_id'] == 4) { + $val_rights = 1; + $val_lock = 128; + } else { + $val_rights = 1; + $val_lock = 0; + } + + $sqlqr2 = "INSERT INTO " . $cfg['sqldbprefix'] . "auth (auth_groupid, auth_code, auth_option, auth_rights, auth_rights_lock, auth_setbyuserid) VALUES ('" . $row['grp_id'] . "', 'gallery', 'a', '" . $val_rights . "', '" . $val_lock . "', 1)"; + $adminmain .= sed_cc($sqlqr2) . "
    "; + $sql2 = sed_sql_query($sqlqr2); +} +sed_auth_reorder(); +sed_auth_clear('all'); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the PFS description to TEXT type
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs CHANGE pfs_desc pfs_desc TEXT NOT NULL"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +$adminmain .= "Updating the PFS folders
    "; +$sqlqr = "UPDATE " . $cfg['sqldbprefix'] . "pfs_folders SET pff_isgallery=pff_isgallery+pff_ispublic WHERE 1"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs_folders DROP pff_ispublic"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs_folders CHANGE pff_isgallery pff_type TINYINT(1) NOT NULL DEFAULT '0'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$adminmain .= "-----------------------
    "; + +// $adminmain .= "Deprecating the folder storage mode for the PFS
    "; +// $sqlqr = "DELETE FROM ".$cfg['sqldbprefix']."config WHERE config_name='pfsuserfolder'"; +// $adminmain .= sed_cc($sqlqr)."
    "; +// $sql = sed_sql_query($sqlqr); +// $adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the SQL version number to 150...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=150 WHERE stat_name='version'"); +$adminmain .= "-----------------------
    "; + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_150_160.php b/system/upgrade/upgrade_150_160.php new file mode 100644 index 0000000..8088dbc --- /dev/null +++ b/system/upgrade/upgrade_150_160.php @@ -0,0 +1,100 @@ +"; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "com ADD com_text_ishtml TINYINT(1) DEFAULT '0' AFTER com_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'is_html' column to forum posts...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "forum_posts ADD fp_text_ishtml TINYINT(1) DEFAULT '0' AFTER fp_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'is_html' column to pages, ...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_text_ishtml TINYINT(1) DEFAULT '0' AFTER page_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'is_html' column to private messages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pm ADD pm_text_ishtml TINYINT(1) DEFAULT '0' AFTER pm_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'is_html' column to user text...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users ADD user_text_ishtml TINYINT(1) DEFAULT '0' AFTER user_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// ======================================== + +$adminmain .= "Cleaning the configuration table...
    "; +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parser_vid'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsebbcodeusertext'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsebbcodecom'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsebbcodeforums'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsebbcodepages'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsesmiliesusertext'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsesmiliescom'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsesmiliesforums'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='parser' AND config_name='parsesmiliespages'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='page' AND config_name='allowphp_pages'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); +$sqlqr = "DELETE FROM " . $cfg['sqldbprefix'] . "config WHERE config_cat='pm' AND config_name='keepoldpms'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Removing the plugin Textboxer 2
    "; +$adminmain .= sed_plugin_uninstall('textboxer2'); + +// ======================================== + +$adminmain .= "Clearing the trashcan...
    "; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "trash"); + +$adminmain .= "Clearing the internal SQL cache...
    "; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Changing the SQL version number to 160...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=160 WHERE stat_name='version'"); + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_160_171.php b/system/upgrade/upgrade_160_171.php new file mode 100644 index 0000000..31a8f4b --- /dev/null +++ b/system/upgrade/upgrade_160_171.php @@ -0,0 +1,40 @@ +"; + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages DROP `user_jrnpagescount`"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr, FALSE); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages DROP `user_jrnupdated`"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr, FALSE); + +$adminmain .= "Clearing the internal SQL cache...
    "; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Changing the SQL version number to 171...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=171 WHERE stat_name='version'"); + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_171_172.php b/system/upgrade/upgrade_171_172.php new file mode 100644 index 0000000..d07bd58 --- /dev/null +++ b/system/upgrade/upgrade_171_172.php @@ -0,0 +1,111 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Adding the Pages new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'page', '03', 'showpagesubcatgroup', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the Comments new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'comments', '03', 'showcommentsonpage', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the PFS new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'pfs', '02', 'pfs_filemask', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the Parser config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '10', 'parser_vid', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '20', 'parsebbcodeusertext', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '20', 'parsebbcodecom', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '20', 'parsebbcodeforums', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '20', 'parsebbcodepages', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '30', 'parsesmiliesusertext', 3, '0', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '30', 'parsesmiliescom', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '30', 'parsesmiliesforums', 3, '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) +VALUES ('core', 'parser', '30', 'parsesmiliespages', 3, '0', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +/* +$adminmain .= "Adding the 'user_secret' column to users...
    "; +$sqlqr = "ALTER TABLE ".$cfg['sqldbprefix']."users ADD user_secret varchar(32) NOT NULL DEFAULT '' AFTER user_password"; +$adminmain .= sed_cc($sqlqr)."
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'user_passtype' column to users...
    "; +$sqlqr = "ALTER TABLE ".$cfg['sqldbprefix']."users ADD user_passtype tinyint(1) NOT NULL DEFAULT '0' AFTER user_secret"; +$adminmain .= sed_cc($sqlqr)."
    "; +$sql = sed_sql_query($sqlqr); +*/ + +$adminmain .= "Adding the 'fs_parentcat' column to forums...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "forum_sections ADD fs_parentcat smallint(1) unsigned NOT NULL DEFAULT '0' AFTER fs_category"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Changing the SQL version number to 172...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=172 WHERE stat_name='version'"); + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_172_173.php b/system/upgrade/upgrade_172_173.php new file mode 100644 index 0000000..9fddf9c --- /dev/null +++ b/system/upgrade/upgrade_172_173.php @@ -0,0 +1,137 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Updating parser table
    "; +$sqlqr = "UPDATE " . $cfg['sqldbprefix'] . "parser SET parser_code1 = '' WHERE parser_bb1 = '[more]'"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +if ($cfg['textmode'] == "html") { + //Reinstall plugin Jevix, Ckeditor && Removing plugin MarkHTML + + $adminmain .= "Removing the plugin Jevix
    "; + $adminmain .= sed_plugin_uninstall('jevix'); + $adminmain .= "Removing the plugin Ckeditor
    "; + $adminmain .= sed_plugin_uninstall('ckeditor'); + $adminmain .= "Removing the plugin MarkHTML
    "; + $adminmain .= sed_plugin_uninstall('markhtml'); + $adminmain .= "Install the plugin Jevix
    "; + $adminmain .= sed_plugin_install('jevix'); + $adminmain .= "Install the plugin Ckeditor
    "; + $adminmain .= sed_plugin_install('ckeditor'); +} else { + //Reinstall plugin Textboxer2 + + $adminmain .= "Removing the plugin Textboxer2
    "; + $adminmain .= sed_plugin_uninstall('textboxer2'); + $adminmain .= "Install the plugin Textboxer2
    "; + $adminmain .= sed_plugin_install('textboxer2'); +} + +$adminmain .= "Adding the 'structure_allowcomments' column to structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_allowcomments tinyint(1) NOT NULL DEFAULT '1' AFTER structure_order"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_allowratings' column to structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_allowratings tinyint(1) NOT NULL DEFAULT '1' AFTER structure_allowcomments"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_allowcomments' column to pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_allowcomments tinyint(1) NOT NULL DEFAULT '1' AFTER page_count"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_allowratings' column to pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_allowratings tinyint(1) NOT NULL DEFAULT '1' AFTER page_allowcomments"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'maxcommentsperpage' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'comments', '05', 'maxcommentsperpage', 2, '30', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'maxtimeallowcomedit' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'comments', '06', 'maxtimeallowcomedit', 2, '15', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'commentsorder' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'comments', '11', 'commentsorder', 2, 'ASC', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'defskin' new hidden config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'skin', '16', 'defskin', 7, '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the RSS new configs into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '01', 'disable_rss', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '02', 'disable_rsspages', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '03', 'disable_rsscomments', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '04', 'disable_rssforums', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '05', 'rss_timetolive', 2, '300', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '06', 'rss_maxitems', 2, '30', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'rss', '07', 'rss_defaultcode', 2, 'news', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Changing the SQL version number to 173...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=173 WHERE stat_name='version'"); + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_173_175.php b/system/upgrade/upgrade_173_175.php new file mode 100644 index 0000000..02d1526 --- /dev/null +++ b/system/upgrade/upgrade_173_175.php @@ -0,0 +1,285 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +//Reinstall plugin CKeditor + +if ($cfg['textmode'] == "html") { + $adminmain .= "Rinstall the plugin Ckeditor
    "; + $adminmain .= sed_plugin_uninstall('ckeditor'); + $adminmain .= sed_plugin_install('ckeditor'); +} + +// User group color + +$adminmain .= "Adding the 'grp_color' column to table users groups...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "groups ADD grp_color varchar(24) NOT NULL DEFAULT 'inherit' AFTER grp_icon"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'color_group' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'users', '10', 'color_group', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Maintenance Mode + +$adminmain .= "Adding the 'maintenance' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '21', 'maintenance', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'maintenancelevel' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '22', 'maintenancelevel', 2, '95', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'maintenancereason' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '23', 'maintenancereason', 1, 'The site is in maintenance mode!', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Reinstall BB parser table + +$adminmain .= "Reinstall table " . $cfg['sqldbprefix'] . "parser
    "; +$sqlqr = "TRUNCATE TABLE " . $cfg['sqldbprefix'] . "parser"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$lines = file("system/install/install.parser.sql"); +foreach ($lines as $line) { + $line = str_replace('sed_', $cfg['sqldbprefix'], $line); //??? + sed_sql_query($line); +} + +// SEF URL's + +$adminmain .= "Adding the 'absurls' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '04', 'absurls', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'multihost' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '03', 'multihost', 3, '1', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'sefurls' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '04', 'sefurls', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'sefurls301' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '04', 'sefurls301', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Changing the length of columns in tables + +$adminmain .= "Changing the length of columns in tables
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure MODIFY structure_title VARCHAR(100)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure MODIFY structure_code VARCHAR(255)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure MODIFY structure_path VARCHAR(255)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages MODIFY page_alias VARCHAR(255)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages MODIFY page_cat VARCHAR(255)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "auth MODIFY auth_code VARCHAR(255)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "auth MODIFY auth_option VARCHAR(255)"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// PFS Upgrade + +$adminmain .= "Adding the 'pfs_title' column to table users groups...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs ADD pfs_title varchar(255) NOT NULL DEFAULT '' AFTER pfs_folderid"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'pfs_desc_ishtml' column to table users groups...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs ADD pfs_desc_ishtml tinyint(1) DEFAULT '1' AFTER pfs_desc"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'pff_desc_ishtml' column to table users groups...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs_folders ADD pff_desc_ishtml tinyint(1) DEFAULT '1' AFTER pff_desc"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pfs_folders MODIFY pff_desc TEXT"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "SELECT pfs_id, pfs_desc FROM " . $cfg['sqldbprefix'] . "pfs"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +while ($pfs = sed_sql_fetchassoc($sql)) { + $pfs_title = strip_tags(mb_substr($pfs['pfs_desc'], 0, 255)); + $sql_update = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "pfs SET pfs_title = '" . sed_sql_prep($pfs_title) . "' WHERE pfs_id =" . $pfs['pfs_id']); +} + +// Structure Upgrade + +$adminmain .= "Adding the 'structure_text' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_text TEXT AFTER structure_desc"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_text_ishtml' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_text_ishtml tinyint(1) DEFAULT '1' AFTER structure_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Users upgrade + +$adminmain .= "Delete 'user_msn' and add 'user_skype' column to table users
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users ADD user_skype varchar(64) AFTER user_msn"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users DROP user_msn"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Comments upgrade + +$adminmain .= "Adding the 'maxcommentlenght' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'comments', '07', 'maxcommentlenght', 1, '2000', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Pages SEO upgrade + +$adminmain .= "Add 'page_seo_title', 'page_seo_desc' and 'page_seo_keywords' columns to table pages
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_seo_title varchar(255) AFTER page_alias"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_seo_desc varchar(255) AFTER page_seo_title"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_seo_keywords varchar(255) AFTER page_seo_desc"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Meta title, new configs + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '01', 'defaulttitle', 1, '{MAINTITLE} - {SUBTITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '02', 'listtitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '03', 'pagetitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '04', 'forumstitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '05', 'userstitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '06', 'pmtitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '07', 'gallerytitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '08', 'pfstitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '09', 'plugtitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// AJAX config + +$adminmain .= "Adding the 'ajax' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '13', 'ajax', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Modal windows config + +$adminmain .= "Adding the 'enablemodal' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'main', '14', 'enablemodal', 3, '0', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +// Thumbnail rel atribute + +$adminmain .= "Adding the 'th_rel' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'pfs', '10', 'th_rel', 2, 'sedthumb', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Changing the SQL version number to 175...
    "; +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=175 WHERE stat_name='version'"); + +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_175_177.php b/system/upgrade/upgrade_175_177.php new file mode 100644 index 0000000..47c46e8 --- /dev/null +++ b/system/upgrade/upgrade_175_177.php @@ -0,0 +1,114 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Changing the SQL version number to 177...
    "; + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "core VALUES ('', 'dic', 'Directories', '150', 1, 0);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 1, 'dic', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 2, 'dic', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 3, 'dic', 'a', 0, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 4, 'dic', 'a', 3, 128, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 5, 'dic', 'a', 255, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 6, 'dic', 'a', 131, 0, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "CREATE TABLE " . $cfg['sqldbprefix'] . "dic ( + dic_id mediumint(8) NOT NULL auto_increment, + dic_title varchar(255) NOT NULL default '', + dic_code varchar(255) NOT NULL default '', + dic_type tinyint(1) default '0', + dic_values text NOT NULL, + dic_parent mediumint(8) NOT NULL default '0', + dic_mera varchar(16) NOT NULL default '', + dic_form_title varchar(255) NOT NULL default '', + dic_form_desc varchar(255) NOT NULL default '', + dic_form_size smallint(5) NOT NULL default '0', + dic_form_maxsize smallint(5) NOT NULL default '0', + dic_form_cols smallint(5) NOT NULL default '0', + dic_form_rows smallint(5) NOT NULL default '0', + dic_extra_location varchar(40) NOT NULL default '', + dic_extra_type varchar(20) NOT NULL default '', + dic_extra_size smallint(5) NOT NULL default '0', + KEY dic_code (dic_code), + KEY dic_parent (dic_parent), + PRIMARY KEY (dic_id) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "CREATE TABLE " . $cfg['sqldbprefix'] . "dic_items ( + ditem_id mediumint(8) NOT NULL auto_increment, + ditem_dicid mediumint(8) NOT NULL default '0', + ditem_title varchar(255) NOT NULL default '', + ditem_code varchar(255) NOT NULL default '', + ditem_children mediumint(8) NOT NULL DEFAULT '0', + ditem_defval tinyint(1) default '0', + KEY ditem_dicid (ditem_dicid), + PRIMARY KEY (ditem_id) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_price' column to table pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_price varchar(11) NOT NULL DEFAULT '0' AFTER page_seo_keywords"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_thumb' column to table pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_thumb varchar(255) NOT NULL DEFAULT '' AFTER page_price"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'user_firstname' column to table users...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users ADD user_firstname varchar(100) NOT NULL DEFAULT '' AFTER user_name"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'user_lastname' column to table users...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users ADD user_lastname varchar(100) NOT NULL DEFAULT '' AFTER user_firstname"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=177 WHERE stat_name='version'"); +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_175_178.php b/system/upgrade/upgrade_175_178.php new file mode 100644 index 0000000..bac7cd6 --- /dev/null +++ b/system/upgrade/upgrade_175_178.php @@ -0,0 +1,219 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "core VALUES ('', 'dic', 'Directories', '150', 1, 0);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 1, 'dic', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 2, 'dic', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 3, 'dic', 'a', 0, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 4, 'dic', 'a', 3, 128, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 5, 'dic', 'a', 255, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 6, 'dic', 'a', 131, 0, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "CREATE TABLE " . $cfg['sqldbprefix'] . "dic ( + dic_id mediumint(8) NOT NULL auto_increment, + dic_title varchar(255) NOT NULL default '', + dic_code varchar(255) NOT NULL default '', + dic_type tinyint(1) default '0', + dic_values text NOT NULL, + dic_parent mediumint(8) NOT NULL default '0', + dic_mera varchar(16) NOT NULL default '', + dic_form_title varchar(255) NOT NULL default '', + dic_form_desc varchar(255) NOT NULL default '', + dic_form_size smallint(5) NOT NULL default '0', + dic_form_maxsize smallint(5) NOT NULL default '0', + dic_form_cols smallint(5) NOT NULL default '0', + dic_form_rows smallint(5) NOT NULL default '0', + dic_extra_location varchar(40) NOT NULL default '', + dic_extra_type varchar(20) NOT NULL default '', + dic_extra_size smallint(5) NOT NULL default '0', + KEY dic_code (dic_code), + KEY dic_parent (dic_parent), + PRIMARY KEY (dic_id) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "CREATE TABLE " . $cfg['sqldbprefix'] . "dic_items ( + ditem_id mediumint(8) NOT NULL auto_increment, + ditem_dicid mediumint(8) NOT NULL default '0', + ditem_title varchar(255) NOT NULL default '', + ditem_code varchar(255) NOT NULL default '', + ditem_children mediumint(8) NOT NULL DEFAULT '0', + ditem_defval tinyint(1) default '0', + KEY ditem_dicid (ditem_dicid), + PRIMARY KEY (ditem_id) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_price' column to table pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_price varchar(11) NOT NULL DEFAULT '0' AFTER page_seo_keywords"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_thumb' column to table pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_thumb varchar(255) NOT NULL DEFAULT '' AFTER page_price"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'user_firstname' column to table users...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users ADD user_firstname varchar(100) NOT NULL DEFAULT '' AFTER user_name"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'user_lastname' column to table users...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "users ADD user_lastname varchar(100) NOT NULL DEFAULT '' AFTER user_firstname"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_thumb' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_thumb varchar(255) NOT NULL DEFAULT '' AFTER structure_allowratings"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_title' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_title varchar(255) NOT NULL DEFAULT '' AFTER structure_thumb"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_desc' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_desc varchar(255) NOT NULL DEFAULT '' AFTER structure_seo_title"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_keywords' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_keywords varchar(255) NOT NULL DEFAULT '' AFTER structure_seo_desc"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_h1' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_h1 varchar(255) NOT NULL DEFAULT '' AFTER structure_seo_keywords"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "core VALUES ('', 'menu', 'Menu manager', '150', 1, 0);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 1, 'menu', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 2, 'menu', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 3, 'menu', 'a', 0, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 4, 'menu', 'a', 3, 128, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 5, 'menu', 'a', 255, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 6, 'menu', 'a', 131, 0, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "CREATE TABLE " . $cfg['sqldbprefix'] . "menu ( + menu_id int(11) unsigned NOT NULL auto_increment, + menu_pid int(11) NOT NULL DEFAULT '0', + menu_title varchar(255) NOT NULL DEFAULT '', + menu_url varchar(255) NOT NULL DEFAULT '', + menu_position int(11) NOT NULL DEFAULT '0', + menu_visible tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (menu_id), + KEY menu_pid (menu_pid) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding example menu...
    "; + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(1, 0, 'Menu', '', 1, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(2, 1, 'Home', '/', 2, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(3, 1, 'Forums', '/forums/', 3, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(4, 1, 'Articles', '/articles/', 4, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(5, 1, 'Galleries', '/gallery/', 5, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(6, 1, 'Contact', '/plug/contact', 6, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the option to set a default country for the new members (Admin > Config > Users)
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) VALUES ('core', 'page', '06', 'genseourls', '3', '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_seo_h1' column to table pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_seo_h1 varchar(255) NOT NULL DEFAULT '' AFTER page_seo_keywords"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the SQL version number to 178...
    "; + +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=178 WHERE stat_name='version'"); +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_177_178.php b/system/upgrade/upgrade_177_178.php new file mode 100644 index 0000000..e162c42 --- /dev/null +++ b/system/upgrade/upgrade_177_178.php @@ -0,0 +1,132 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Adding the 'structure_thumb' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_thumb varchar(255) NOT NULL DEFAULT '' AFTER structure_allowratings"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_title' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_title varchar(255) NOT NULL DEFAULT '' AFTER structure_thumb"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_desc' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_desc varchar(255) NOT NULL DEFAULT '' AFTER structure_seo_title"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_keywords' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_keywords varchar(255) NOT NULL DEFAULT '' AFTER structure_seo_desc"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'structure_seo_h1' column to table structure...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "structure ADD structure_seo_h1 varchar(255) NOT NULL DEFAULT '' AFTER structure_seo_keywords"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "core VALUES ('', 'menu', 'Menu manager', '150', 1, 0);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 1, 'menu', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 2, 'menu', 'a', 1, 254, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 3, 'menu', 'a', 0, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 4, 'menu', 'a', 3, 128, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 5, 'menu', 'a', 255, 255, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "auth VALUES ('', 6, 'menu', 'a', 131, 0, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "CREATE TABLE " . $cfg['sqldbprefix'] . "menu ( + menu_id int(11) unsigned NOT NULL auto_increment, + menu_pid int(11) NOT NULL DEFAULT '0', + menu_title varchar(255) NOT NULL DEFAULT '', + menu_url varchar(255) NOT NULL DEFAULT '', + menu_position int(11) NOT NULL DEFAULT '0', + menu_visible tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (menu_id), + KEY menu_pid (menu_pid) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;"; + +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding example menu...
    "; + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(1, 0, 'Menu', '', 1, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(2, 1, 'Home', '/', 2, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(3, 1, 'Forums', '/forums/', 3, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(4, 1, 'Articles', '/articles/', 4, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(5, 1, 'Galleries', '/gallery/', 5, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "menu VALUES(6, 1, 'Contact', '/plug/contact', 6, 1);"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the option to set a default country for the new members (Admin > Config > Users)
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default, config_text) VALUES ('core', 'page', '06', 'genseourls', '3', '1', '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'page_seo_h1' column to table pages...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "pages ADD page_seo_h1 varchar(255) NOT NULL DEFAULT '' AFTER page_seo_keywords"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the SQL version number to 178...
    "; + +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=178 WHERE stat_name='version'"); +$upg_status = TRUE; diff --git a/system/upgrade/upgrade_178_179.php b/system/upgrade/upgrade_178_179.php new file mode 100644 index 0000000..ec63d52 --- /dev/null +++ b/system/upgrade/upgrade_178_179.php @@ -0,0 +1,63 @@ +"; +$sql = sed_sql_query("TRUNCATE TABLE " . $cfg['sqldbprefix'] . "cache"); + +$adminmain .= "Adding the 'poll_ownerid' column to table polls...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "polls ADD poll_ownerid int(11) NOT NULL DEFAULT '0' AFTER poll_text"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'poll_code' column to table polls...
    "; +$sqlqr = "ALTER TABLE " . $cfg['sqldbprefix'] . "polls ADD poll_code varchar(16) NOT NULL default '' AFTER poll_ownerid"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'indextitle' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'meta', '10', 'indextitle', 1, '{MAINTITLE} - {TITLE}', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'hometitle' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'index', '01', 'hometitle', 1, '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'homemetadescription' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'index', '02', 'homemetadescription', 1, '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "Adding the 'homemetakeywords' new config into the core
    "; +$sqlqr = "INSERT INTO " . $cfg['sqldbprefix'] . "config (config_owner, config_cat, config_order, config_name, config_type, config_value, config_default) +VALUES ('core', 'index', '03', 'homemetakeywords', 1, '', '')"; +$adminmain .= sed_cc($sqlqr) . "
    "; +$sql = sed_sql_query($sqlqr); + +$adminmain .= "-----------------------
    "; + +$adminmain .= "Changing the SQL version number to 179...
    "; + +$sql = sed_sql_query("UPDATE " . $cfg['sqldbprefix'] . "stats SET stat_value=179 WHERE stat_name='version'"); +$upg_status = TRUE;