Compare commits

..

36 commits

Author SHA1 Message Date
Warren Yun
7cbc0afc4e
Fix sponsor logo resolution (#10)
* test font

* update fonts

* sponsor assets

* fix logos
2025-01-15 17:44:32 -05:00
Warren Yun
db2a7a865f
Update sponsor logos (#9)
* test font

* update fonts

* sponsor assets
2025-01-02 19:28:21 -05:00
Artem Frenk
4fa6e0fc45
Merge pull request #8 from afrenkai/master
added registration on top of site.
2024-10-31 13:09:42 -07:00
Artem Frenk
332f792f98
Update index.html 2024-10-31 13:06:47 -07:00
Artem Frenk
45d640f624
added registration on top of site.
quick pr to make the register link on the top of the site point to the proper area.
2024-10-31 13:02:50 -07:00
Cara Salter
2dec8e0e3a Open registration 2024-10-31 13:21:57 -04:00
Cara Salter
4ae1dc34ed Hack@WPI 2023 -> GoatHacks 2024-10-31 12:44:01 -04:00
Cara Salter
88167cc078
Merge remote-tracking branch 'origin/2025' 2024-10-31 11:49:01 -04:00
warren yun
a107d4daf1 countdown (hot) 2024-10-20 21:22:46 -04:00
warren yun
9c17c56d0a social links 2024-10-18 00:05:54 -04:00
warren yun
8ec1ee54d7 glowly icon wow 2024-10-18 00:00:43 -04:00
warren yun
4fb2ee4696 bruh 2024-10-17 23:28:08 -04:00
warren yun
0001c483eb updated navbar styling 2024-10-17 23:06:12 -04:00
warren yun
78183d42e7 more images, new fonts 2024-10-17 19:14:06 -04:00
NebuDev14
d1893df679 more navbar cleanup 2024-10-01 16:01:42 -04:00
warren yun
12cf18eb98 image arrangements 2024-10-01 15:32:34 -04:00
warren yun
5768c790f4 Add 2025 logo to landing 2024-09-25 11:04:17 -04:00
matticoli
8d8a691aad Added MLH Banner 2024-01-12 20:04:20 +00:00
matticoli
e3e20a2ab8 Remove mobirise footer 2024-01-12 20:04:19 +00:00
willhockey20
5d65998171 Updated schedule 2024-01-12 15:03:49 -05:00
William Ryan
e0fb69c0be
Merge pull request #6 from wpi-acm/2024-dev
2024 site
2023-12-14 20:12:52 -05:00
Cara Salter
f95c260687
discord removal
it's not ready lol
2023-12-14 19:17:44 -05:00
matticoli
4eef2d8f1e Added MLH Banner 2023-12-14 23:46:54 +00:00
matticoli
38f2fdd63f Remove mobirise footer 2023-12-14 23:46:53 +00:00
Matvey Didenko
3c6d133287 registration open 2023-12-14 18:20:45 -05:00
Matvey Didenko
4f62b2b1e6 2024 update(registration closed)
new logo, updated dates and schedule, registration still closed(will need update on Friday 8thDec)
2023-12-05 16:40:49 -05:00
matticoli
54d86591ba Added MLH Banner 2023-01-14 11:32:21 +00:00
matticoli
669b523a4c Remove mobirise footer 2023-01-14 11:32:20 +00:00
willhockey20
4eb8db1a40 Additional Workshops
Additonal Workshops added and adjusted time for Lunch on 1/14
2023-01-14 06:32:01 -05:00
matticoli
f50aa54787 Added MLH Banner 2023-01-13 21:47:21 +00:00
matticoli
0aa997c3bb Remove mobirise footer 2023-01-13 21:47:19 +00:00
willhockey20
3997f381ff Registration Closing 2023-01-13 16:47:02 -05:00
William Ryan
63c9c71026
Merge pull request #5 from wpi-acm/2023-dev
2023 dev
2023-01-13 02:58:40 -05:00
William Ryan
c07a87872c
Merge pull request #4 from wpi-acm/2023-dev
2023 dev
2023-01-13 02:25:35 -05:00
William Ryan
d29d861708
Merge pull request #3 from wpi-acm/2023-dev
2023 dev
2023-01-13 02:17:14 -05:00
William Ryan
d1761f17a0
Merge pull request #2 from wpi-acm/2023-dev
2023 dev. Opening registration
2022-12-20 20:23:10 -05:00
94 changed files with 23654 additions and 1359 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.DS_Store

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,40 @@
/**
* Countdown
*/
function init() {
const second = 1000,
minute = second * 60,
hour = minute * 60,
day = hour * 24;
const date = document.querySelector('[data-date]').dataset.date;
let countDown = new Date(date).getTime(),
x = setInterval(function () {
let now = new Date().getTime(),
distance = countDown - now;
if (document.querySelector('[data-days]') != null) {
document.querySelector('[data-days]').innerText = Math.floor(distance / (day));
}
if (document.querySelector('[data-hours]') != null) {
document.querySelector('[data-hours]').innerText = Math.floor((distance % (day)) / (hour));
}
if (document.querySelector('[data-minutes]') != null) {
document.querySelector('[data-minutes]').innerText = Math.floor((distance % (hour)) / (minute));
}
if (document.querySelector('[data-seconds]') != null) {
document.querySelector('[data-seconds]').innerText = Math.floor((distance % (minute)) / second);
}
// if (distance < 0) {
// clearInterval(x);
// }
}, second)
}

View file

@ -1,19 +0,0 @@
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(b,g,d){b instanceof String&&(b=String(b));for(var k=b.length,h=0;h<k;h++){var f=b[h];if(g.call(d,f,h,b))return{i:h,v:f}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,g,d){b!=Array.prototype&&b!=Object.prototype&&(b[g]=d.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.polyfill=function(b,g,d,k){if(g){d=$jscomp.global;b=b.split(".");for(k=0;k<b.length-1;k++){var h=b[k];h in d||(d[h]={});d=d[h]}b=b[b.length-1];k=d[b];g=g(k);g!=k&&null!=g&&$jscomp.defineProperty(d,b,{configurable:!0,writable:!0,value:g})}};$jscomp.polyfill("Array.prototype.find",function(b){return b?b:function(b,d){return $jscomp.findInternal(this,b,d).v}},"es6","es3");
(function(b){var g=b.fn.navDropdown,d={ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40},k={XS:544,SM:768,MD:992,LG:1200,XL:Infinity},h=function(){function a(a,e){"length"in a||(a=[a]);this.props={};this.length=a.length;e&&(this.prevItem=e,b.extend(this.props,e.props));for(e=0;e<a.length;e++)this[e]=a[e]}a.prototype.eq=function(b){return new a(this[b]?this[b]:[],this)};a.prototype.parent=function(){return new a(b(this).map(function(){var c=new a(this);return c.is(":upper")?null:b(c.is(":toggle")?this.parentNode.parentNode:
this).closest(".dropdown").find('>[data-toggle="dropdown-submenu"]')[0]}),this)};a.prototype.parents=function(c){var e=b(this).map(function(){return(new a(this)).is(":toggle")?this.parentNode:this}).parentsUntil(".nav-dropdown",".dropdown");":upper"===c&&(e=e.last());e=e.find('>[data-toggle="dropdown-submenu"]');return new a(e,this)};a.prototype.children=function(c){var e=[];b(this).each(function(){var d=new a(this);if(d.is(":root"))var f=b(this);else if(d.is(":toggle"))f=b(this).parent().find(">.dropdown-menu");
else return;(c?f.find("a"):d.is(":root")?f.find(">li>a"):f.find(">a, >.dropdown>a")).each(function(){c&&!this.offsetWidth&&!this.offsetHeight||this.disabled||b(this).is("[data-button]")||b(this).hasClass("disabled")||~b.inArray(this,e)||e.push(this)})});return new a(e,this)};a.prototype.root=function(){return new a(b(this).closest(".nav-dropdown"),this)};a.prototype.jump=function(c){c=c||"next";if(!this.length)return new a([],this);var e=this.eq(0);e=this.is(":flat")||e.is(":upper")?e.root().children(this.is(":flat")):
e.parent().children();var d=b.inArray(this[0],e);if(!e.length||!~d)return new a([],this);if("next"==c){d+=1;if(d<e.length)return new a(e[d],this);c="first"}else if("prev"==c){--d;if(0<=d)return new a(e[d],this);c="last"}return"first"==c?new a(e[0],this):"last"==c?new a(e[e.length-1],this):new a([],this)};a.prototype.next=function(){return this.jump("next")};a.prototype.prev=function(){return this.jump("prev")};a.prototype.first=function(){return this.jump("first")};a.prototype.last=function(){return this.jump("last")};
a.prototype.prop=function(a,e){return arguments.length?1<arguments.length?(this.props[a]=e,this):"object"==typeof arguments[0]?(b.extend(this.props,arguments[0]),this):a in this.props?this.props[a]:null:b.extend({},this.props)};a.prototype.removeProp=function(a){delete this.props[a];return this};a.prototype.is=function(a){for(var c=b(this),d=(a||"").split(/(?=[*#.\[:\s])/);a=d.pop();)switch(a){case ":root":if(!c.is(".nav-dropdown"))return!1;break;case ":upper":if(!c.parent().parent().is(".nav-dropdown"))return!1;
break;case ":opened":case ":closed":if(":opened"==a!=c.parent().hasClass("open"))return!1;case ":toggle":if(!c.is('[data-toggle="dropdown-submenu"]'))return!1;break;default:if(!this.props[a])return!1}return!0};a.prototype.open=function(){this.is(":closed")&&this.click();return this};a.prototype.close=function(){this.is(":opened")&&this.click();return this};a.prototype.focus=function(){this.length&&this[0].focus();return this};a.prototype.click=function(){this.length&&b(this[0]).trigger("click");return this};
return function(b){return new a(b)}}(),f=function(a){this._element=a;b(this._element).on("click.bs.nav-dropdown",this.toggle)};f.prototype.toggle=function(a){if(this.disabled||b(this).hasClass("disabled"))return!1;a=b(this.parentNode);var c=a.hasClass("open"),d=f._isCollapsed(b(this).closest(".nav-dropdown"));f._clearMenus(b.Event("click",{target:this,data:{toggles:d?[this]:null}}));if(c)return!1;"ontouchstart"in document.documentElement&&!a.closest(".dropdown.open").length&&(c=document.createElement("div"),
c.className="dropdown-backdrop",b(c).insertBefore(b(this).closest(".nav-dropdown")),b(c).on("click",f._clearMenus));c={relatedTarget:this};d=b.Event("show.bs.nav-dropdown",c);a.trigger(d);if(d.isDefaultPrevented())return!1;this.focus();this.setAttribute("aria-expanded","true");a.toggleClass("open");a.trigger(b.Event("shown.bs.nav-dropdown",c));return!1};f.prototype.dispose=function(){b.removeData(this._element,"bs.nav-dropdown");b(this._element).off(".bs.nav-dropdown");this._element=null};f._clearMenus=
function(a){a=a||{};if(3!==a.which){var c=function(){return!1};if(a.target){if(this===document)if(b(a.target).is("a:not([disabled], .disabled)"))var d=b.Event("collapse.bs.nav-dropdown",{relatedTarget:a.target});else{var g=a.targetWrapper&&b(a.targetWrapper).find(".nav-dropdown")||b(a.target).closest(".nav-dropdown");if(f._isCollapsed(g))return}else if(b(a.target).hasClass("dropdown-backdrop")&&(g=b(a.target).next(),g.is(".nav-dropdown")&&f._isCollapsed(g)))return;b(a.target).is('[data-toggle="dropdown-submenu"]')?
c=b(a.target.parentNode).parents(".dropdown").find('>[data-toggle="dropdown-submenu"]'):b(".dropdown-backdrop").remove()}c=a.data&&a.data.toggles&&b(a.data.toggles).parent().find('[data-toggle="dropdown-submenu"]')||b.makeArray(b('[data-toggle="dropdown-submenu"]').not(c));for(g=0;g<c.length;g++){var h=c[g].parentNode,k={relatedTarget:c[g]};if(b(h).hasClass("open")&&("click"!==a.type||!/input|textarea/i.test(a.target.tagName)||!b.contains(h,a.target))){var l=b.Event("hide.bs.nav-dropdown",k);b(h).trigger(l);
l.isDefaultPrevented()||(c[g].setAttribute("aria-expanded","false"),b(h).removeClass("open").trigger(b.Event("hidden.bs.nav-dropdown",k)))}}d&&b(document).trigger(d)}};f._dataApiKeydownHandler=function(a){if(!/input|textarea/i.test(a.target.tagName)){var c,e;for(e in d)if(c=d[e]===a.which)break;c&&(a.preventDefault(),a.stopPropagation(),a.which==d.ESC?f._isCollapsed(this)||(a=b(a.target).parents(".dropdown.open").last().find('>[data-toggle="dropdown-submenu"]'),f._clearMenus(),a.trigger("focus")):
"A"==a.target.tagName&&(c=h(a.target),c.prop(":flat",f._isCollapsed(c.root())),c.is(":flat")?a.which===d.DOWN||a.which===d.UP?c[a.which===d.UP?"prev":"next"]().focus():a.which===d.LEFT?c.is(":opened")?c.close():c.parent().close().focus():a.which===d.RIGHT&&c.is(":toggle")&&c.open():c.is(":upper")?a.which===d.LEFT||a.which===d.RIGHT?(c[a.which===d.LEFT?"prev":"next"]().focus().open(),c.is(":toggle")&&c.close()):a.which!==d.DOWN&&a.which!==d.UP||!c.is(":toggle")||c.children()[a.which===d.DOWN?"first":
"last"]().focus():a.which===d.LEFT?(a=c.parent(),a.is(":upper")?a.close().prev().focus().open():a.focus().close()):a.which===d.RIGHT?(a=c.children(),a.length?(c.open(),a.first().focus()):c.parents(":upper").close().next().focus().open()):a.which!==d.DOWN&&a.which!==d.UP||c[a.which===d.UP?"prev":"next"]().focus()))}};f._isCollapsed=function(a){var b;a.length&&(a=a[0]);return a&&(b=/navbar-toggleable-(xs|sm|md|lg|xl)/.exec(a.className))&&window.innerWidth<k[b[1].toUpperCase()]};f._dataApiResizeHandler=
function(){b(".nav-dropdown").each(function(){var a=f._isCollapsed(this);b(this).find(".dropdown").removeClass("open");b(this).find('[aria-expanded="true"]').attr("aria-expanded","false");var c=b(".dropdown-backdrop")[0];c&&c.parentNode.removeChild(c);a!=b(this).hasClass("nav-dropdown-sm")&&(a?b(this).addClass("nav-dropdown-sm"):b(this).removeClass("nav-dropdown-sm"))})};b.fn.navDropdown=function(a){return this.each(function(){var c=b(this).data("bs.nav-dropdown");c||b(this).data("bs.nav-dropdown",
c=new f(this));if("string"===typeof a){if(void 0===c[a])throw Error('No method named "'+a+'"');c[a].call(this)}})};b.fn.navDropdown.noConflict=function(){b.fn.navDropdown=g;return this};b.fn.navDropdown.Constructor=f;b.fn.navDropdown.$$=h;b(window).on("resize.bs.nav-dropdown.data-api ready.bs.nav-dropdown.data-api",f._dataApiResizeHandler);b(document).on("keydown.bs.nav-dropdown.data-api",".nav-dropdown",f._dataApiKeydownHandler).on("collapse.bs.navbar-dropdown",f._clearMenus).on("click.bs.nav-dropdown.data-api",
f._clearMenus).on("click.bs.nav-dropdown.data-api",'[data-toggle="dropdown-submenu"]',f.prototype.toggle).on("click.bs.nav-dropdown.data-api",".dropdown form",function(a){a.stopPropagation()});b(window).trigger("ready.bs.nav-dropdown")})(jQuery);

View file

@ -1,7 +1,8 @@
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,c,b){a!=Array.prototype&&a!=Object.prototype&&(a[c]=b.value)};$jscomp.getGlobal=function(a){return"undefined"!=typeof window&&window===a?a:"undefined"!=typeof global&&null!=global?global:a};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.polyfill=function(a,c,b,d){if(c){b=$jscomp.global;a=a.split(".");for(d=0;d<a.length-1;d++){var e=a[d];e in b||(b[e]={});b=b[e]}a=a[a.length-1];d=b[a];c=c(d);c!=d&&null!=c&&$jscomp.defineProperty(b,a,{configurable:!0,writable:!0,value:c})}};
$jscomp.polyfill("Array.from",function(a){return a?a:function(a,b,d){b=null!=b?b:function(a){return a};var e=[],c="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];if("function"==typeof c){a=c.call(a);for(var f=0;!(c=a.next()).done;)e.push(b.call(d,c.value,f++))}else for(c=a.length,f=0;f<c;f++)e.push(b.call(d,a[f],f));return e}},"es6","es3");
(function(){function a(a){"resize"===a.type&&(document.body.classList.remove("navbar-dropdown-open"),document.querySelector(".navbar-dropdown").querySelector(".navbar-collapse").classList.remove("show"),document.querySelector(".navbar-dropdown").classList.remove("opened"),Array.from(document.querySelector(".navbar-dropdown").querySelectorAll('.navbar-toggler[aria-expanded="true"]')).forEach(function(a){var b=a.querySelector(a.getAttribute("data-target"));b&&(b.classList.remove("in"),b.setAttribute("aria-expanded",
"false"),a.setAttribute("aria-expanded","false"))}));var b=document.documentElement.scrollTop;Array.from(document.querySelectorAll(".navbar-dropdown")).forEach(function(a){a.matches(".navbar-fixed-top")&&(a.matches(".transparent")&&!a.classList.contains("opened")&&(0<b?a.classList.remove("bg-color"):a.classList.add("bg-color")),0<b?a.classList.add("navbar-short"):a.classList.remove("navbar-short"))})}var c;["scroll","resize"].forEach(function(b){document.addEventListener(b,function(b){clearTimeout(c);
c=setTimeout(function(){a(b)},10)})});["show.bs.collapse","hide.bs.collapse"].forEach(function(a){document.addEventListener(a,function(b){if(b=b.target.closest(".navbar-dropdown"))"show.bs.collapse"===a?(document.body.classList.add("navbar-dropdown-open"),b.classList.add("opened")):(document.body.classList.remove("navbar-dropdown-open"),b.classList.remove("opened"),window.dispatchEvent(new CustomEvent("scroll.bs.navbar-dropdown.data-api")),b.dispatchEvent(new CustomEvent("collapse.bs.navbar-dropdown")))})});
document.addEventListener("collapse.bs.nav-dropdown",function(a){(a=a.relatedTarget.closest(".navbar-dropdown"))&&(a=a.querySelector('.navbar-toggler[aria-expanded="true"]'))&&a.dispatchEvent(new CustomEvent("click"))})})();
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,c,a){b!=Array.prototype&&b!=Object.prototype&&(b[c]=a.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);
$jscomp.polyfill=function(b,c,a,d){if(c){a=$jscomp.global;b=b.split(".");for(d=0;d<b.length-1;d++){var f=b[d];f in a||(a[f]={});a=a[f]}b=b[b.length-1];d=a[b];c=c(d);c!=d&&null!=c&&$jscomp.defineProperty(a,b,{configurable:!0,writable:!0,value:c})}};
$jscomp.polyfill("Array.from",function(b){return b?b:function(b,a,d){a=null!=a?a:function(a){return a};var f=[],e="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];if("function"==typeof e){b=e.call(b);for(var c=0;!(e=b.next()).done;)f.push(a.call(d,e.value,c++))}else for(e=b.length,c=0;c<e;c++)f.push(a.call(d,b[c],c));return f}},"es6","es3");
(function(){function b(a){"resize"===a.type&&(document.body.classList.remove("navbar-dropdown-open"),document.querySelector(".navbar-dropdown").querySelector(".navbar-collapse").classList.remove("show"),document.querySelector(".navbar-dropdown").classList.remove("opened"),Array.from(document.querySelector(".navbar-dropdown").querySelectorAll('.navbar-toggler[aria-expanded="true"]')).forEach(function(a){var b=a.querySelector(a.getAttribute("data-target"));b&&(b.classList.remove("in"),b.setAttribute("aria-expanded",
"false"),a.setAttribute("aria-expanded","false"))}));var b=document.documentElement.scrollTop;Array.from(document.querySelectorAll(".navbar-dropdown")).forEach(function(a){a.matches(".navbar-fixed-top")&&(a.matches(".transparent")&&!a.classList.contains("opened")&&(0<b?a.classList.remove("bg-color"):a.classList.add("bg-color")),0<b?a.classList.add("navbar-short"):a.classList.remove("navbar-short"))})}var c;["scroll","resize"].forEach(function(a){document.addEventListener(a,function(a){clearTimeout(c);
c=setTimeout(function(){b(a)},10)})});["show.bs.collapse","hide.bs.collapse"].forEach(function(a){document.addEventListener(a,function(b){if(b=b.target.closest(".navbar-dropdown"))"show.bs.collapse"===a?(document.body.classList.add("navbar-dropdown-open"),b.classList.add("opened")):(document.body.classList.remove("navbar-dropdown-open"),b.classList.remove("opened"),window.dispatchEvent(new Event("scroll.bs.navbar-dropdown.data-api")),b.dispatchEvent(new Event("collapse.bs.navbar-dropdown")))})});
document.querySelector("html").classList.contains("is-builder")||document.addEventListener("click",function(a){a=a.target;if(!a.classList.contains("nav-link")&&!a.parentNode.classList.contains("nav-link")){var b=document.querySelector("#navbarSupportedContent"),c=document.querySelector(".navbar-dropdown"),e=b.classList.contains("show"),g=a.closest(".nav-item a:not(.dropdown-toggle)");c=c.classList.contains("collapsed");(window.matchMedia("(max-width: 991px)").matches||c)&&(e&&!a.closest(".navbar-collapse")||
g)&&new bootstrap.Collapse(b)}});document.addEventListener("collapse.bs.nav-dropdown",function(a){(a=a.relatedTarget.closest(".navbar-dropdown"))&&(a=a.querySelector('.navbar-toggler[aria-expanded="true"]'))&&a.dispatchEvent(new Event("click"))});document.querySelectorAll(".nav-link.dropdown-toggle").forEach(function(a){a.addEventListener("click",function(a){a.preventDefault();a.target.parentNode.classList.toggle("open")})})})();

View file

@ -10,8 +10,8 @@ this.onSettledCallbacks_=null}};var m=new e;b.prototype.settleSameAsPromise_=fun
b.prototype.catch=function(a){return this.then(void 0,a)};b.prototype.callWhenSettled_=function(a,b){function d(){switch(c.state_){case 1:a(c.result_);break;case 2:b(c.result_);break;default:throw Error("Unexpected state: "+c.state_);}}var c=this;null==this.onSettledCallbacks_?m.asyncExecute(d):this.onSettledCallbacks_.push(d)};b.resolve=f;b.reject=function(a){return new b(function(b,d){d(a)})};b.race=function(a){return new b(function(b,d){for(var c=$jscomp.makeIterator(a),e=c.next();!e.done;e=c.next())f(e.value).callWhenSettled_(b,
d)})};b.all=function(a){var c=$jscomp.makeIterator(a),d=c.next();return d.done?f([]):new b(function(a,b){function e(b){return function(c){h[b]=c;l--;0==l&&a(h)}}var h=[],l=0;do h.push(void 0),l++,f(d.value).callWhenSettled_(e(h.length-1),b),d=c.next();while(!d.done)})};return b},"es6","es3");$jscomp.owns=function(a,e){return Object.prototype.hasOwnProperty.call(a,e)};
$jscomp.assign="function"==typeof Object.assign?Object.assign:function(a,e){for(var f=1;f<arguments.length;f++){var g=arguments[f];if(g)for(var b in g)$jscomp.owns(g,b)&&(a[b]=g[b])}return a};$jscomp.polyfill("Object.assign",function(a){return a||$jscomp.assign},"es6","es3");
~function(){function a(a,b,c){return function(){c.canScrollPrev()?a.removeAttribute("disabled"):a.setAttribute("disabled","disabled");c.canScrollNext()?b.removeAttribute("disabled"):b.setAttribute("disabled","disabled")}}function e(a,b,c){c=void 0===c?0:c;var e=d.findIndex(function(b){return b.carouselId===a});-1!==e&&b&&!d[e].intervalId&&(d[e].intervalId=setInterval(function(){var b=d.findIndex(function(b){return b.carouselId===a});-1!==b&&(1!==d[b].embla.scrollProgress()?d[b].embla.scrollNext():
d[b].embla.scrollTo(0))},1E3*c))}function f(b,c){return new Promise(function(e,h){var f=b.querySelector(".embla"),g=b.getAttribute("id"),l=f.querySelector(".embla__viewport");h=f.querySelector(".embla__button--prev");f=f.querySelector(".embla__button--next");if(-1===d.findIndex(function(a){return a.carouselId===g})){l=EmblaCarousel(l,c);var q=a(h,f,l);h.addEventListener("click",l.scrollPrev,!1);f.addEventListener("click",l.scrollNext,!1);l.on("select",q);l.on("init",q);d.push({carouselId:g,embla:l,
~function(){function a(a,b,c){return function(){c.canScrollPrev()?a.removeAttribute("disabled"):a.setAttribute("disabled","disabled");c.canScrollNext()?b.removeAttribute("disabled"):b.setAttribute("disabled","disabled")}}function e(a,b,c){c=void 0===c?0:c;var e=d.findIndex(function(b){return b.carouselId===a});-1!==e&&b&&!d[e].intervalId&&(d[e].intervalId=setInterval(function(){if(!document.hidden){var b=d.findIndex(function(b){return b.carouselId===a});-1!==b&&(1!==d[b].embla.scrollProgress()?d[b].embla.scrollNext():
d[b].embla.scrollTo(0))}},1E3*c))}function f(b,c){return new Promise(function(e,h){var f=b.querySelector(".embla"),g=b.getAttribute("id"),l=f.querySelector(".embla__viewport");h=f.querySelector(".embla__button--prev");f=f.querySelector(".embla__button--next");if(-1===d.findIndex(function(a){return a.carouselId===g})){l=EmblaCarousel(l,c);var q=a(h,f,l);h.addEventListener("click",l.scrollPrev,!1);f.addEventListener("click",l.scrollNext,!1);l.on("select",q);l.on("init",q);d.push({carouselId:g,embla:l,
intervalId:null});e(l)}})}function g(a){var b={};[].forEach.call(a.attributes,function(a){if(/^data-/.test(a.name)){var c=a.name.substr(5).replace(/-(.)/g,function(a,b){return b.toUpperCase()});b[c]=m(a.value)}});return b}function b(a){var b=d.findIndex(function(b){return b.carouselId===a});-1!==b&&("embla"in d[b]&&d[b].embla.destroy(),clearInterval(d[b].intervalId),d.splice(b,1))}function m(a){return"true"===a?!0:a}function c(a,b){var c={},e;for(e in b)a[e]||(c[e]=!1);return c}var p={align:"center",
draggable:!1,skipSnaps:!0,loop:!1,autoPlay:!1,autoPlayInterval:5},d=[],n=!1,r,u="function"==typeof jQuery;u&&(r=jQuery);if(document.querySelector("html").classList.contains("is-builder")&&u)r(document).on("add.cards",function(a){if(!r(a.target).hasClass("mbr-embla")||n)return Promise.resolve();var d=a.target.getAttribute("id");b(d);var h=g(a.target.querySelector(".embla")),t=c(h,p),k=Object.assign(h,t);k.draggable=!1;return f(a.target,k).then(function(a){a.reInit(k);e(d,k.autoPlay,k.autoPlayInterval);
n=!0;setTimeout(function(){n=!1},0)})}).on("delete.cards",function(a){a=a.target.getAttribute("id");b(a)}).on("changeParameter.cards",function(a,d,q){if(r(a.target).hasClass("mbr-embla")){var h=a.target.getAttribute("id"),k=g(a.target.querySelector(".embla")),l=c(k,p);k=Object.assign(k,l);switch(d){case "loop":p.loop=q?!0:!1;break;case "autoplay":p.autoPlay=q;break;case "interval":p.autoPlayInterval=+q}b(h);k.draggable=!1;f(a.target,k);e(h,k.autoPlay,k.autoPlayInterval)}});else"undefined"===typeof window.initCarouseMultiplePlugin&&

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

BIN
assets/images/GOATED.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

File diff suppressed because one or more lines are too long

BIN
assets/images/header.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 909 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 145 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 132 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 66 KiB

View file

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 406 73.45">
<defs>
<style>
.cls-1 {
fill: #aa1e2e;
}
.cls-2 {
fill: #231f20;
}
.cls-3 {
fill: #fff;
}
.cls-4 {
fill: #a2a9ad;
}
</style>
</defs>
<g id="Layer_1-2" data-name="Layer 1">
<g>
<path class="cls-4" d="M36.72,0C16.47,0,0,16.47,0,36.72s16.47,36.72,36.72,36.72,36.72-16.47,36.72-36.72S56.97,0,36.72,0h0Z"/>
<path class="cls-1" d="M54.64,30.7c0-1.1-.07-2.19-.17-3.26-.27.26-1.13.94-2.83.94h-10.07c-4.21,0-4.95,1.47-4.95,1.47,0,0-.74-1.47-4.95-1.47h-10.07c-1.7,0-2.56-.68-2.83-.94-.1,1.08-.17,2.16-.17,3.26,0,2.74.32,5.41.92,7.97h34.19c.6-2.56.92-5.23.92-7.97h0Z"/>
<path class="cls-1" d="M36.62,61.42c8.28-4.69,14.49-12.57,16.91-21.96H19.72c2.42,9.39,8.62,17.27,16.9,21.96h0Z"/>
<path class="cls-1" d="M226.79,12.57l.33-.03v-3.34h-24.43v3.34l.33.03c6.1.56,6.77.85,6.77,7.73v32.21c0,6.89-.67,7.18-6.77,7.73l-.33.03v3.34h24.43v-3.34l-.33-.03c-6.12-.56-6.69-.81-6.69-7.73V20.3c0-6.93.57-7.18,6.69-7.73h0Z"/>
<path class="cls-1" d="M179.27,38.02c-2.14,0-3.81-.41-4.68-.78v-20.74c0-1.52.21-2.35.72-2.8.39-.39,1.47-.8,3.38-.8,6.69,0,10.69,4.56,10.69,12.2,0,12.31-8.44,12.93-10.12,12.93h0ZM194.59,12.49c-3.2-2.24-7.81-3.29-14.5-3.29h-41.16v3.33c3.5.16,6.24,1.9,6.24,4.01,0,.2-.02.38-.07.56-.08.54-.21,1.18-.38,1.88-1.16,4.84-4.81,18.44-8.09,28.93l-13.85-38.14h-4.01l-12.18,37.91-9.12-31.11s-1.32-3.58,5.51-4.05v-3.32h-23.61v3.32s5.61-.18,7.24,4.68l14.48,47.33h4.25l12.55-37.83,13.68,37.83h4.25c7.14-24.15,12-38.81,13.7-43.53,1.08-3.19,1.86-5.08,2.99-6.26,1.24-1.28,3.06-2.08,5.1-2.08,3.71,0,6.72,2.34,6.72,5.3v34.56c0,6.88-.67,7.18-6.77,7.73l-.33.03v3.33h25.26v-3.33l-.34-.03c-6.95-.56-7.59-.82-7.59-7.73v-10.58c.6.11,1.21.21,1.83.28,1.24.18,2.6.18,3.58.18s2.34,0,3.6-.18c8.22-.95,17-6.02,17-17.36,0-5.3-2.03-9.45-6.02-12.36h0Z"/>
<path class="cls-1" d="M36.59,62.59c-14.25,0-25.85-11.59-25.85-25.85s11.59-25.83,25.85-25.83,25.85,11.59,25.85,25.83-11.59,25.85-25.85,25.85h0ZM36.72,1.75C17.4,1.75,1.74,17.41,1.74,36.73s15.66,34.97,34.98,34.97,34.97-15.66,34.97-34.97S56.05,1.75,36.72,1.75h0Z"/>
<path class="cls-3" d="M22.8,11.65c-.65.36-1.37-.02-1.85-.87-.46-.83-.43-1.67.25-2.03.67-.38,1.39.08,1.83.87.46.83.43,1.67-.23,2.03h0ZM24.02,9.02c-.65-1.19-1.93-1.78-3.24-1.05-1.28.7-1.55,2.13-.85,3.4.69,1.24,1.98,1.78,3.24,1.08,1.26-.7,1.63-2.03.85-3.43h0Z"/>
<path class="cls-3" d="M45.5,6c.39.1.67.26.87.41l.44-.78c-.16-.16-.56-.38-1.11-.52-1.44-.36-2.83.23-3.25,1.85-.34,1.36.25,2.6,1.88,3.02.57.15,1.05.15,1.26.11l.07-.88c-.25.03-.6,0-.93-.08-.96-.25-1.37-1-1.13-1.95.28-1.05,1.08-1.39,1.91-1.18h0Z"/>
<path class="cls-3" d="M63.04,17.05c-.92-1.18-2.39-1.54-3.69-.51-1.11.87-1.41,2.21-.36,3.55.38.46.75.75.95.85l.59-.67c-.21-.11-.49-.36-.7-.64-.6-.77-.47-1.6.29-2.21.85-.69,1.7-.47,2.24.21.25.33.38.62.43.85l.83-.36c-.03-.21-.21-.64-.57-1.08h0Z"/>
<path class="cls-3" d="M17.12,13.35l-.92-1.13c.05-.07.16-.16.33-.31.44-.34.85-.33,1.13.02.33.38.23.85-.23,1.23-.13.1-.23.16-.31.2h0ZM17.97,13.81c.51-.42.83-.9.92-1.41.07-.41-.08-.82-.39-1.19-.29-.38-.72-.56-1.11-.56-.42,0-.88.21-1.42.64-.52.43-.87.77-1.1,1.03l3.04,3.78c.28-.25.56-.49.83-.72l-1.08-1.36c.1-.05.2-.13.31-.21h0Z"/>
<path class="cls-3" d="M28.99,9.91l-.33-.9-1.84.65-1.35-3.81c-.35.13-.69.27-1.03.4l1.66,4.65c.94-.39,1.9-.72,2.89-1h0Z"/>
<path class="cls-3" d="M30.43,9.53c.36-.08.72-.16,1.08-.23l-.42-1.97.95-3.12c-.39.06-.78.12-1.17.19l-.25,1.3c-.07.37-.13.67-.17,1h-.02c-.18-.29-.34-.52-.56-.84l-.78-1.09c-.39.09-.78.19-1.17.3l2.08,2.52.41,1.94h0Z"/>
<path class="cls-3" d="M52.33,13.58l.85-1.18c.47-.65.87-1.22,1.23-1.77l.02.02c-.15.6-.26,1.31-.33,1.9l-.27,2.12c.31.24.62.49.92.75l2.92-4c-.26-.22-.53-.42-.79-.63l-.87,1.18c-.44.6-.81,1.15-1.14,1.71h-.01c.14-.59.27-1.25.34-1.84l.23-2.13c-.34-.24-.69-.46-1.03-.69l-2.91,4c.29.18.58.36.86.55h0Z"/>
<path class="cls-3" d="M56.63,17.16l3.44-3.54c-.26-.26-.53-.52-.8-.77l-3.44,3.53c.27.25.53.51.79.77h0Z"/>
<path class="cls-3" d="M41.02,9.14s0,0,0,0l.08-.92s-1.14-.15-2-.23l.11-1.14c.47.04,1.2.11,1.8.2l.08-.9c-.63-.08-1.31-.16-1.79-.21l.09-.98s1.05.09,1.91.21l.08-.95c-1.01-.14-2.01-.25-3.01-.3l-.45,4.92c1.03.04,2.06.14,3.1.3h0Z"/>
<path class="cls-3" d="M33.09,4.09l.05,1c.45-.05.97-.09,1.32-.12l.21,3.93c.37-.03.74-.05,1.1-.06l-.21-3.94s.6-.02,1.33-.02l-.05-1c-1.26,0-2.51.07-3.77.21h0Z"/>
<path class="cls-3" d="M51.42,7.35l-.83,1.79c-.66-.33-1.25-.6-1.65-.78l.82-1.78c-.34-.15-.68-.28-1.03-.42l-2.09,4.48c.35.13.69.27,1.03.41l.88-1.85c.66.29,1.24.57,1.66.77l-.88,1.86c.33.17.66.34.98.52l2.09-4.49c-.32-.18-.66-.34-.98-.51h0Z"/>
<path class="cls-2" d="M29,30.63c.94-.66,1.87-.34,2.63-.09,1.11.36,1.95-.23,1.95-.23l.91.77v6.19c-.54.24-1.04.4-2.12.07-.93-.29-1.77-.39-2.45-.34v.21c0,.12-.41.21-.92.21s-.92-.1-.92-.21v-.21c-.68-.05-1.52.05-2.45.34-1.07.33-1.57.17-2.12-.07v-6.19l.91-.77s.84.59,1.95.23c.76-.25,1.69-.57,2.63.09h0Z"/>
<path class="cls-4" d="M31.25,31.16c.86.3,1.6.16,2.15-.07v5.21c-.5.2-.92.23-1.72-.05-.93-.32-1.93-.38-2.4-.2v-4.81c.28-.24.9-.45,1.98-.07h0Z"/>
<path class="cls-4" d="M26.69,31.15c-.88.31-1.64.17-2.21-.07v5.22c.52.21.94.23,1.77-.05.96-.33,1.99-.39,2.47-.21v-4.81c-.29-.24-.93-.46-2.04-.07h0Z"/>
<path class="cls-2" d="M44.24,30.63c.94-.66,1.87-.34,2.63-.09,1.11.36,1.95-.23,1.95-.23l.91.77v6.19c-.54.24-1.04.4-2.12.07-.93-.29-1.77-.39-2.45-.34v.21c0,.12-.41.21-.92.21s-.92-.1-.92-.21v-.21c-.68-.05-1.52.05-2.45.34-1.07.33-1.57.17-2.12-.07v-6.19l.91-.77s.84.59,1.95.23c.76-.25,1.69-.57,2.63.09h0Z"/>
<path class="cls-4" d="M46.55,31.15c.88.31,1.65.17,2.21-.07v5.22c-.51.21-.94.23-1.77-.05-.96-.33-1.99-.39-2.47-.21v-4.81c.29-.24.93-.46,2.03-.07h0Z"/>
<path class="cls-4" d="M41.99,31.16c-.86.3-1.6.16-2.15-.07v5.21c.5.2.92.23,1.72-.05.93-.32,1.93-.38,2.4-.2v-4.81c-.28-.24-.9-.45-1.98-.07h0Z"/>
<path class="cls-3" d="M38.46,47.92c1.43-.6,1.53-2.04,1.53-2.04l.4-.26v-.25c-.4-.96-1.4-2.01-2.28-2.69-.59-.45-.6-.94-.54-1.23l.2-.09c.2-.09.31-.14.48-.05.17.1.22.03.22.03.14-.06.13-.35-.01-.64-.14-.29-.37-.49-.51-.43,0,0-.08,0-.12.18-.04.19-.16.23-.35.32l-.21.09s-.07-.04-.07-.04c-.46-.21-.55.07-.55.07-.46-.2-.54.14-.54.14-.49-.11-.52.21-.52.21-.68,0-.56.43-.5.57l-.78.34-.36-.75-1.36.59.91,1.93.59.25.57-.25.19-.59-.28-.59.62-.27c.07.19.25.41.64.44.62.04.79-.1,1.25.95.45,1.05,1.13,1.44,1.13,1.44-1.07-.11-1.36.75-1.36.75-1.71-.07-2.09,1.19-2.17,1.87h-2.37c.14.28.29.55.44.81h7.71c.15-.26.3-.53.44-.81h-2.47Z"/>
<path class="cls-3" d="M67.95,33.17c-.7.05-1.13.62-1.37,1.45-.16.59-.33.83-.62.85-.33.03-.56-.23-.59-.74-.03-.47.1-.95.23-1.24l-.92-.18c-.15.29-.26.85-.23,1.41.08,1.34.82,1.93,1.65,1.88.69-.05,1.11-.47,1.37-1.36.21-.65.33-.93.64-.95.25-.02.49.2.52.69.03.47-.1.83-.18,1.03l.9.2c.13-.29.21-.7.18-1.28-.07-1.14-.75-1.81-1.59-1.77h0Z"/>
<path class="cls-3" d="M61.02,50.23c-.62,1.12-.37,2.14.95,2.88l2.41,1.34c.2-.31.39-.62.59-.94l-2.51-1.4c-.76-.43-.96-.91-.68-1.41.27-.49.81-.56,1.55-.15l2.5,1.4c.17-.33.34-.65.5-.99l-2.39-1.34c-1.36-.76-2.32-.47-2.92.61h0Z"/>
<path class="cls-3" d="M62.77,26.69l4.57-1.87c-.13-.35-.27-.69-.41-1.03l-4.57,1.87c.15.34.28.68.42,1.03h0Z"/>
<path class="cls-3" d="M63.57,29.07l1.42-.35c.78-.19,1.45-.37,2.07-.56v.03c-.49.36-1.03.83-1.47,1.24l-1.57,1.46c.08.38.15.77.22,1.16l4.8-1.18c-.06-.34-.12-.67-.19-1.01l-1.43.35c-.72.18-1.36.36-1.97.58h0c.48-.37,1.01-.79,1.44-1.19l1.55-1.46c-.11-.41-.22-.81-.35-1.21l-4.81,1.18c.11.32.2.65.3.98h0Z"/>
<path class="cls-3" d="M64.11,42.15c-.07.36-.15.72-.24,1.08l4.82,1.04c.08-.36.17-.72.24-1.08l-4.83-1.04h0Z"/>
<path class="cls-3" d="M63.42,55.85l-.78-.63c-.26.36-.58.78-.8,1.06l-3.06-2.47c-.22.29-.46.58-.69.86l3.07,2.48s-.38.46-.88,1l.77.63c.84-.93,1.63-1.92,2.36-2.94h0Z"/>
<path class="cls-3" d="M54.23,58.46s0,0,0,0l.62.68s.88-.75,1.52-1.33l.77.85c-.35.32-.89.81-1.36,1.2l.61.67c.49-.41,1-.86,1.36-1.19l.66.73s-.77.71-1.44,1.27l.65.7c.78-.65,1.54-1.32,2.25-2.03l-3.34-3.65c-.72.73-1.49,1.43-2.31,2.09h0Z"/>
<path class="cls-3" d="M68.29,45.82l-.94-.33c-.13.43-.29.93-.39,1.27l-3.71-1.31c-.12.35-.24.7-.36,1.05l3.72,1.31s-.2.56-.49,1.24l.94.34c.49-1.16.9-2.35,1.24-3.56h0Z"/>
<path class="cls-3" d="M69.54,37.87l-.99-.09c-.02.45-.05.98-.07,1.33l-3.92-.35c-.03.37-.05.74-.09,1.1l3.93.35s-.06.6-.17,1.32l.99.09c.18-1.24.29-2.5.33-3.76h0Z"/>
<path class="cls-3" d="M9.46,42.17c-.13-.59-.34-1.01-.47-1.18l-.82.34c.13.2.28.54.36.87.21.96-.28,1.67-1.23,1.88-1.08.25-1.73-.31-1.93-1.16-.08-.39-.07-.72-.03-.95l-.9-.05c-.07.21-.08.67.05,1.23.33,1.45,1.49,2.42,3.12,2.06,1.37-.31,2.22-1.39,1.85-3.04h0Z"/>
<path class="cls-3" d="M7.33,49.27c-.05-.07-.13-.2-.23-.46-.2-.47-.08-.83.33-1,.39-.16.77.03.98.54l.16.41-1.24.51h0ZM11.08,47.75l-1.77.72-.11-.31c-.16-.42-.1-.69.43-1.05.34-.25.6-.44.92-.7-.13-.36-.26-.74-.38-1.11-.43.38-.83.65-1.18.92-.38.28-.59.57-.59.95h-.03c-.29-.33-.87-.57-1.44-.34-.41.16-.67.44-.78.82-.11.42-.03.93.25,1.62.23.54.46,1.01.65,1.32l4.5-1.83c-.16-.33-.31-.65-.46-1h0Z"/>
<path class="cls-3" d="M8.81,36.72h0s-.92.05-.92.05c0,0,.03,1.15.08,2.02l-1.14.07c-.03-.47-.07-1.2-.08-1.81l-.91.06c.01.64.04,1.31.07,1.81l-.98.06s-.07-1.05-.08-1.92l-.96.07c.01,1.02.06,2.03.17,3.02l4.93-.31c-.11-1.02-.17-2.05-.17-3.11h0Z"/>
<path class="cls-3" d="M11.81,54.08c-.8.51-1.63.52-2.04-.11-.41-.64,0-1.41.75-1.88.8-.52,1.63-.54,2.04.1.39.62.07,1.37-.75,1.9h0ZM13.33,51.74c-.78-1.21-2.13-1.5-3.48-.62-1.14.74-1.65,2.03-.83,3.3.78,1.23,2.21,1.42,3.45.62,1.19-.75,1.65-2.08.87-3.3h0Z"/>
<path class="cls-3" d="M7.71,32.19c-.69-.07-1.18.29-1.59,1.13-.29.6-.46.87-.77.83-.25-.03-.46-.28-.41-.75.05-.47.21-.82.33-1l-.85-.33c-.16.26-.31.65-.38,1.21-.11,1.14.46,1.91,1.29,1.99.7.07,1.21-.43,1.57-1.21.26-.56.46-.78.77-.75.31.03.51.33.46.83-.05.47-.25.92-.43,1.19l.88.31c.18-.26.38-.8.44-1.36.13-1.34-.51-2.03-1.32-2.11h0Z"/>
<path class="cls-3" d="M10.98,20.17l-.25.36-1.13-.74c.03-.07.1-.21.25-.44.28-.43.64-.56,1.01-.31.36.25.41.67.11,1.13h0ZM12.69,20.45c.44.16.77.26,1.11.36.21-.33.44-.64.69-.95-.46-.13-.95-.29-1.42-.44-.44-.15-.82-.16-1.13.05l-.02-.02c.1-.44-.02-1.05-.52-1.37-.39-.25-.77-.31-1.13-.18-.43.13-.78.51-1.19,1.11-.31.51-.57.96-.72,1.29l4.09,2.65c.18-.31.36-.64.56-.95l-1.6-1.03.18-.28c.26-.38.51-.46,1.11-.25h0Z"/>
<path class="cls-3" d="M17.43,56.89l-1.81,1.14c-.43.26-.82.54-1.28.86h-.01c.36-.45.63-.83.91-1.24l1.19-1.76c-.28-.29-.54-.59-.8-.89l-4.33,2.53c.24.29.48.56.72.85l1.7-1.12c.49-.34.98-.67,1.42-1h0c-.34.45-.65.87-.99,1.35l-1.23,1.77c.26.28.53.55.8.82l1.78-1.13c.52-.34,1.02-.68,1.46-.99h.01c-.3.42-.67.94-1.02,1.43l-1.17,1.69c.28.26.57.5.86.75l2.66-4.22c-.3-.27-.6-.54-.9-.82h0Z"/>
<path class="cls-3" d="M11.87,24.05s0,0,0,0l-.84-.37s-.51,1.04-.86,1.83l-1.05-.47c.19-.43.49-1.1.76-1.64l-.83-.36c-.28.57-.57,1.19-.77,1.64l-.9-.4s.42-.96.81-1.74l-.88-.38c-.46.91-.88,1.83-1.24,2.76l4.52,2c.37-.96.79-1.9,1.27-2.84h0Z"/>
<path class="cls-3" d="M4.52,30.26l.97.25c.09-.44.21-.95.29-1.3l3.81,1c.09-.36.18-.72.28-1.07l-3.81-1s.16-.58.39-1.28l-.96-.26c-.39,1.2-.7,2.41-.95,3.65h0Z"/>
<polygon class="cls-3" points="30.28 64.08 28.93 64.36 28.93 65.21 29.89 65 29.91 65 29.07 68.66 30.12 68.89 31.17 64.28 30.28 64.08 30.28 64.08"/>
<path class="cls-3" d="M34.14,66.56c-.36-.15-.64-.38-.6-.7.03-.29.25-.52.62-.49.39.03.54.34.51.64-.02.29-.26.51-.52.56h0ZM33.88,68.74c-.43-.03-.65-.38-.62-.72.03-.34.28-.59.64-.65.43.15.72.43.67.83-.02.34-.31.57-.69.54h0ZM34.94,66.97v-.02c.49-.2.74-.57.78-.98.05-.57-.36-1.26-1.45-1.36-.95-.08-1.72.39-1.78,1.19-.03.41.15.82.59,1.1v.02c-.54.18-.9.54-.95,1.1-.05.65.44,1.37,1.63,1.47,1.1.1,1.86-.41,1.95-1.28.05-.6-.33-1.03-.77-1.24h0Z"/>
<path class="cls-3" d="M39,68.74c-.51.03-.78-.41-.83-.9-.02-.13,0-.23.03-.29.08-.25.31-.44.62-.46.46-.03.72.33.75.77.03.47-.2.85-.57.88h0ZM39.13,66.29c-.44.02-.77.18-.98.43h-.03c.1-.54.49-1.08,1.47-1.23.18-.02.31-.03.43-.03l-.05-.85c-.1,0-.25,0-.44.03-.74.08-1.34.34-1.78.8-.47.52-.75,1.29-.7,2.17.08,1.13.75,2.03,2.03,1.93,1.01-.07,1.68-.88,1.62-1.81-.07-.98-.77-1.5-1.55-1.44h0Z"/>
<path class="cls-3" d="M44.28,65.85c-.38-.16-.85-.16-1.29-.07-.11.02-.2.05-.29.08l-.07-.74,1.8-.39-.2-.88-2.55.56.25,2.48c.16-.07.34-.11.6-.18.92-.2,1.36,0,1.47.49.1.49-.33.8-.77.9-.42.1-.87.07-1.1,0l-.02.87c.28.07.78.1,1.34-.03,1.24-.26,1.81-1.19,1.63-2.06-.13-.54-.42-.87-.82-1.03h0Z"/>
<path class="cls-3" d="M23.38,63.6c0,.54-.43.97-.97.97s-.97-.43-.97-.97.43-.97.97-.97.97.43.97.97h0Z"/>
<path class="cls-3" d="M49.81,63.6c0,.54.43.97.97.97s.97-.43.97-.97-.43-.97-.97-.97-.97.43-.97.97h0Z"/>
<path class="cls-2" d="M24.7,20.75l-.88-2.06c-2.73.58-4.11,2.86-4.11,2.86,0,0,1.73.49,4.99-.8h0Z"/>
<path class="cls-3" d="M23.82,18.69h-4.43l1.11,1.88c.68-.69,1.78-1.56,3.32-1.88h0Z"/>
<path class="cls-3" d="M52.95,20.57l1.11-1.88h-4.43c1.54.33,2.64,1.19,3.32,1.88h0Z"/>
<path class="cls-2" d="M30.8,21.17c0,.55,1.46,1.03,3.56,1.24v-3.49c0,1.15-3.56.88-3.56,2.25h0Z"/>
<path class="cls-3" d="M29.74,49.63c.17-.49.14-1.05-.09-1.54-.39.16-.69.46-.87.84.19.45.39.88.59,1.28.15-.16.29-.35.37-.57h0Z"/>
<path class="cls-3" d="M31.08,51.63c.11-.56-.02-1.15-.34-1.65-.43.26-.72.69-.84,1.2.27.46.54.89.79,1.26.18-.24.32-.5.38-.81h0Z"/>
<path class="cls-3" d="M28.77,47.19c.23-.46.27-1.01.1-1.53-.4.1-.73.34-.96.68.11.47.26.93.41,1.38.18-.14.35-.31.46-.52h0Z"/>
<path class="cls-3" d="M28.2,44.59c.29-.41.41-.95.31-1.48-.37.03-.7.19-.96.42.01.51.05,1.01.12,1.5.2-.11.39-.25.53-.44h0Z"/>
<path class="cls-3" d="M31.52,54c-3.86-4.11-4.45-8.72-4.44-11.14l.07-.06s0,0,0,0c.3-.29.52-.67.59-1.11.1-.58-.04-1.2-.38-1.71-.46.29-.78.78-.87,1.35-.09.51.02,1.05.28,1.52-.07.4-.11.8-.12,1.19-.04-.13-.09-.26-.16-.38-.28-.5-.74-.87-1.26-1.03-.12.53-.04,1.11.25,1.61.23.4.76.84,1.2,1.06.03.42.08.84.15,1.25-.05-.07-.08-.13-.14-.2-.37-.44-.87-.71-1.41-.76-.02.56.17,1.12.54,1.56.35.42.83.68,1.33.75.13.44.28.87.45,1.29-.06-.06-.12-.13-.19-.18-.43-.36-.97-.53-1.49-.47.08.56.38,1.08.82,1.44.42.34.94.51,1.45.46.2.38.41.76.63,1.12-.08-.06-.16-.12-.24-.16-.51-.28-1.1-.33-1.62-.15.2.58.6,1.06,1.13,1.35.35.19.74.28,1.12.25.14,0,.28-.04.41-.07.6.84,1.24,1.62,1.88,2.34-.04-.42,0-.8.04-1.1h0Z"/>
<path class="cls-3" d="M43.5,49.63c-.17-.49-.14-1.05.09-1.54.39.16.69.46.87.84-.19.45-.39.88-.59,1.28-.15-.16-.29-.35-.37-.57h0Z"/>
<path class="cls-3" d="M42.16,51.63c-.1-.56.02-1.15.34-1.65.42.26.72.69.84,1.2-.27.46-.54.89-.79,1.26-.18-.24-.32-.5-.38-.81h0Z"/>
<path class="cls-3" d="M44.47,47.19c-.23-.46-.27-1.01-.1-1.53.4.1.73.34.96.68-.11.47-.25.93-.41,1.38-.18-.14-.35-.31-.45-.52h0Z"/>
<path class="cls-3" d="M45.04,44.59c-.29-.41-.41-.95-.31-1.48.37.03.7.19.96.42-.01.51-.05,1.01-.12,1.5-.2-.11-.39-.25-.53-.44h0Z"/>
<path class="cls-3" d="M41.73,54c3.86-4.11,4.45-8.72,4.44-11.14l-.07-.06s0,0,0,0c-.3-.29-.52-.67-.59-1.11-.1-.58.04-1.2.38-1.71.46.29.78.78.87,1.35.09.51-.02,1.05-.28,1.52.06.4.11.8.12,1.19.04-.13.09-.26.16-.38.28-.5.74-.87,1.26-1.03.12.53.04,1.11-.25,1.61-.23.4-.76.84-1.2,1.06-.03.42-.08.84-.15,1.25.05-.07.08-.13.14-.2.37-.44.87-.71,1.41-.76.02.56-.17,1.12-.54,1.56-.35.42-.83.68-1.33.75-.13.44-.28.87-.45,1.29.06-.06.12-.13.19-.18.43-.36.97-.53,1.49-.47-.08.56-.38,1.08-.82,1.44-.42.34-.94.51-1.45.46-.2.38-.41.76-.63,1.12.08-.06.16-.12.24-.16.51-.28,1.1-.33,1.62-.15-.2.58-.6,1.06-1.13,1.35-.35.19-.74.28-1.12.25-.14,0-.28-.04-.41-.07-.6.84-1.24,1.62-1.88,2.34.04-.42,0-.8-.04-1.1h0Z"/>
<path class="cls-2" d="M40.57,50.82c-.55-.59-1.28-.92-2.06-.92-.7,0-1.36.26-1.88.74-1.1-1.01-2.9-.94-3.93.18-.59.64-.88,1.52-.81,2.42,0,.05.01.08.01.08,0,.04.01.09.02.14.02.12.05.25.1.46.02.06.03.11.05.16.17.49.39.95.66,1.4.74,1.19,1.9,2.33,3.45,3.39l.44.3.44-.3c.63-.43,1.2-.88,1.73-1.36,1.08-1.09,1.88-1.97,2.39-3.44l.03-.08c.08-.27.13-.54.16-.8.06-.88-.24-1.74-.81-2.36h0Z"/>
<path class="cls-4" d="M32.81,53.24c.01.09.04.2.07.31.02.06.03.11.05.17.16.45.35.85.57,1.21.54.87,1.49,1.94,3.14,3.06.62-.42,1.13-.83,1.57-1.23.93-.93,1.69-1.74,2.14-3.06,0-.02.01-.03.01-.05.08-.26.11-.47.12-.61.04-.62-.15-1.26-.59-1.73-.79-.86-2.08-.86-2.88,0-.16.18-.29.38-.38.6-.1-.22-.22-.42-.38-.6-.79-.86-2.08-.86-2.88,0-.45.48-.64,1.14-.59,1.77,0,.03,0,.05.01.08,0,.03,0,.05.01.08h0Z"/>
<path class="cls-2" d="M48.75,20.75l.88-2.06c2.73.58,4.11,2.86,4.11,2.86,0,0-1.73.49-4.99-.8h0Z"/>
<path class="cls-2" d="M42.65,21.17c0,.55-1.46,1.03-3.56,1.24v-3.49c0,1.15,3.56.88,3.56,2.25h0Z"/>
<path class="cls-3" d="M46.64,24.71s1.73.88,3.84,1.07l3.26-4.23s-2.48.71-7.14-1.8c-4.81-2.59-7.51-1.96-7.51-.82s3.56.88,3.56,2.25c0,.74-2.65,1.35-5.92,1.36-3.28,0-5.93-.61-5.93-1.36,0-1.36,3.56-1.1,3.56-2.25s-2.7-1.78-7.51.82c-4.66,2.51-7.14,1.8-7.14,1.8l3.26,4.23c.91-.06,2.19-.33,3.88-1.09,1.54-.83,2.86-1.33,3.95-1.59v2.53c0,.75,2.69,1.36,6.01,1.36s5.84-.61,5.84-1.36v-2.49c1.06.27,2.48.76,3.95,1.55l.04.02h0Z"/>
<polygon class="cls-2" points="24.2 24 24.2 22.07 23.73 22.18 23.73 24.47 24.84 24.24 24.84 23.87 24.2 24 24.2 24"/>
<polygon class="cls-2" points="25.58 23.6 25.58 22.98 26.11 22.8 26.11 22.44 25.58 22.62 25.58 22.08 26.15 21.9 26.15 21.51 25.12 21.85 25.12 24.16 26.18 23.78 26.18 23.41 25.58 23.6 25.58 23.6"/>
<polygon class="cls-2" points="27.39 20.94 27.39 21.85 26.93 22.07 26.93 21.15 26.49 21.36 26.49 23.65 26.93 23.44 26.93 22.49 27.39 22.26 27.39 23.23 27.83 23.02 27.83 20.73 27.39 20.94 27.39 20.94"/>
<path class="cls-2" d="M28.75,21.35l-.08.03v-.69s.08-.03.11-.05c.2-.08.28.02.28.21,0,.21-.11.41-.31.49h0ZM29.43,21.71c-.03-.25-.11-.34-.28-.34v-.02c.25-.2.36-.47.36-.72,0-.2-.05-.33-.18-.39-.15-.08-.38-.02-.62.08-.18.08-.34.16-.49.26v2.26l.44-.2v-.92l.08-.02c.15-.07.21-.02.26.25.03.25.08.46.11.51l.46-.2c-.03-.07-.1-.33-.15-.56h0Z"/>
<path class="cls-2" d="M44.77,20.25l-.51-.2-.31.62c-.03.08-.07.16-.11.25v-1.03l-.46-.18v2.3l.46.16v-.75l.1-.15.34,1.08.49.18-.52-1.5.52-.78h0Z"/>
<path class="cls-2" d="M45.83,20.74v1.49c0,.34-.1.39-.23.34-.11-.07-.21-.21-.21-.54v-1.5l-.44-.2v1.42c0,.57.18.98.65,1.21.44.2.67-.02.67-.62v-1.41l-.44-.2h0Z"/>
<path class="cls-2" d="M47.61,21.54v.51c0,.43.03.83.05,1.08-.07-.23-.18-.57-.25-.77l-.36-1.05-.42-.18v2.3l.41.16v-.52c0-.46-.02-.82-.03-1.06.05.23.16.57.25.8l.34,1.01.43.16v-2.29l-.41-.16h0Z"/>
<path class="cls-2" d="M49.07,22.97c-.26-.23-.33-.31-.33-.46,0-.11.1-.21.29-.15.13.03.23.1.31.15l.07-.36c-.07-.05-.21-.13-.38-.18-.51-.13-.77.1-.77.47,0,.2.13.47.46.75.21.18.31.29.31.46s-.1.23-.33.18c-.13-.03-.29-.13-.39-.2l-.07.36c.08.07.26.16.46.21.47.13.8-.05.8-.47,0-.25-.11-.51-.44-.77h0Z"/>
<polygon class="cls-2" points="49.62 22.15 49.62 22.56 50.06 22.62 50.06 24.5 50.55 24.58 50.55 22.7 51 22.77 51 22.36 49.62 22.15 49.62 22.15"/>
<path class="cls-2" d="M34.89,23.57v1.49c0,.36-.11.44-.26.43-.15-.02-.26-.13-.26-.46v-1.49l-.54-.05v1.42c0,.57.21.92.8.96.52.03.8-.26.8-.85v-1.41l-.54-.05h0Z"/>
<path class="cls-2" d="M37.07,23.64v.51c0,.42.05.82.07,1.06h-.02c-.08-.2-.21-.49-.29-.67l-.43-.9h-.51v2.29h.47v-.51c0-.47-.02-.82-.03-1.05h.02c.07.2.18.49.28.69l.42.87h.51v-2.29h-.49Z"/>
<path class="cls-2" d="M38.67,25.52h-.08v-1.57s.07-.02.1-.02c.33-.03.47.25.47.7,0,.64-.23.87-.49.88h0ZM39.36,23.72c-.18-.11-.41-.16-.77-.15-.21.02-.41.05-.56.08v2.26c.11,0,.28,0,.46-.02.38-.02.65-.11.85-.28.25-.2.38-.54.38-1s-.11-.74-.36-.9h0Z"/>
<polygon class="cls-3" points="264.25 73.45 263.43 73.45 263.43 0 264.25 0 264.25 73.45 264.25 73.45"/>
<path class="cls-3" d="M317.44,21.21c-.37,1.26-1.05,3.14-1.44,3.95-.76.16-2.8.63-4.79.63-6.25,0-9.45-4.16-9.45-8.74,0-5.34,4.06-9.03,9.92-9.03,2.25,0,4.08.47,4.95.6.1,1.18.29,2.75.5,4.06l-.81.18c-.52-1.75-1.15-2.83-2.49-3.38-.68-.31-1.75-.5-2.75-.5-4.32,0-6.59,3.19-6.59,7.51,0,5.05,2.62,8.29,6.86,8.29,2.67,0,3.98-1.23,5.31-3.85l.78.26h0Z"/>
<path class="cls-3" d="M324.76,14.48c-1.6,0-3.04,1.54-3.04,4.58,0,3.32,1.46,5.73,3.61,5.73,1.62,0,2.98-1.18,2.98-4.76,0-3.06-1.26-5.55-3.56-5.55h0ZM325.08,13.59c3.27,0,5.71,2.49,5.71,5.86,0,4.24-3.14,6.25-5.71,6.25-3.61,0-5.81-2.9-5.81-5.83,0-4.26,3.32-6.28,5.81-6.28h0Z"/>
<path class="cls-3" d="M346.32,25.39v-.73c1.54-.16,1.73-.26,1.73-2.09v-4.37c0-1.86-.63-3.03-2.25-3.03-1,0-1.91.55-2.9,1.36.03.31.08.63.08,1.13v5.08c0,1.65.24,1.78,1.68,1.94v.73h-5.6v-.73c1.62-.16,1.86-.26,1.86-1.99v-4.5c0-1.94-.6-3.01-2.2-3.01-1.05,0-2.07.71-2.88,1.36v6.15c0,1.73.18,1.83,1.68,1.99v.73h-5.63v-.73c1.73-.16,1.88-.26,1.88-1.99v-5.42c0-1.67-.1-1.78-1.57-2.04v-.65c1.23-.18,2.46-.52,3.64-1.05v2.12c.55-.42,1.1-.86,1.94-1.36.65-.42,1.23-.68,2.07-.68,1.26,0,2.33.78,2.85,2.15.73-.58,1.41-1.02,2.07-1.47.58-.37,1.31-.68,2.07-.68,2.04,0,3.3,1.46,3.3,4.03v5.05c0,1.75.16,1.83,1.65,1.99v.73h-5.44Z"/>
<path class="cls-3" d="M356.25,23.41c.6.6,1.62,1.02,2.49,1.02,2.28,0,3.74-1.91,3.74-4.84s-1.65-4.42-3.51-4.42c-.92,0-2.02.6-2.72,1.12v7.12h0ZM352.46,14.46c1.23-.18,2.59-.63,3.79-1.12v2.09c.08-.05,2.17-1.26,2.28-1.31.63-.34,1.18-.52,1.52-.52,2.88,0,4.63,2.41,4.63,5,0,3.98-3.14,6.49-6.57,7.12-.78-.03-1.49-.26-1.86-.47v3.53c0,1.94.21,2.09,2.22,2.28v.73h-6.2v-.73c1.7-.18,1.91-.31,1.91-2.07v-11.91c0-1.57-.05-1.67-1.73-1.91v-.71h0Z"/>
<path class="cls-3" d="M378.75,24.79c-1.26.18-2.67.52-4,.92v-2.01c-1.41,1.18-2.56,2.01-4,2.01-1.75,0-3.27-1.07-3.27-3.92v-5.08c0-1.41-.21-1.57-.86-1.7l-.73-.13v-.68c1.12-.05,2.85-.31,3.74-.47-.08.84-.08,2.09-.08,3.82v3.56c0,2.3,1.2,2.96,2.38,2.96.97,0,1.94-.42,2.82-1.26v-6.1c0-1.41-.31-1.6-1.2-1.73l-.84-.1v-.68c1.67-.08,3.51-.37,4.11-.47v8.77c0,1.31.21,1.49,1.2,1.54l.73.03v.73h0Z"/>
<path class="cls-3" d="M384.66,25.37c-.44.24-.86.34-1.12.34-1.68,0-2.56-1.02-2.56-3.11v-7.61h-1.8l-.1-.31.71-.76h1.2v-2.2c.5-.52,1.26-1.2,1.75-1.73l.39.05c-.05,1.1-.08,2.62-.08,3.87h2.98c.24.26.16.84-.16,1.07h-2.83v6.7c0,2.12.84,2.51,1.52,2.51.63,0,1.23-.24,1.6-.42l.24.68-1.73.92h0Z"/>
<path class="cls-3" d="M391.61,14.59c-1.2,0-2.38,1.13-2.75,3.24,1.47,0,2.93,0,4.48-.08.47,0,.63-.13.63-.52.03-1.39-.89-2.64-2.36-2.64h0ZM396.12,23.17c-1.68,2.09-3.51,2.54-4.35,2.54-3.19,0-5.13-2.62-5.13-5.63,0-1.78.63-3.43,1.7-4.58,1.1-1.23,2.54-1.91,3.9-1.91,2.28,0,4,1.96,4,4.06-.03.52-.1.76-.52.86-.52.1-3.87.34-6.99.44-.08,3.51,2.07,4.94,3.92,4.94,1.07,0,2.07-.44,3.04-1.33l.42.6h0Z"/>
<path class="cls-3" d="M403.3,25.39h-6.02v-.73c1.65-.16,1.81-.29,1.81-1.99v-5.44c0-1.73-.1-1.81-1.62-1.99v-.65c1.28-.21,2.46-.52,3.69-1.07v2.88c.92-1.36,2.02-2.8,3.32-2.8.97,0,1.52.6,1.52,1.26,0,.6-.42,1.18-.89,1.44-.26.16-.47.13-.68-.05-.39-.39-.71-.65-1.18-.65-.55,0-1.52.81-2.09,2.15v4.92c0,1.73.13,1.86,2.14,2.01v.73h0Z"/>
<path class="cls-3" d="M310.82,43.75c-.44-1.73-1.18-3.43-3.64-3.43-2.04,0-2.75,1.49-2.75,2.85,0,1.81,1.15,2.72,3.32,3.85,3.14,1.62,4.5,2.83,4.5,5.31,0,2.75-2.38,4.84-5.76,4.84-1.57,0-2.93-.45-4-.86-.21-.73-.52-2.51-.71-3.92l.81-.21c.52,1.75,1.68,4.03,4.4,4.03,1.88,0,3.04-1.31,3.04-3.01,0-2.01-1.07-2.83-3.38-4.08-2.75-1.49-4.29-2.75-4.29-5.18s1.94-4.53,5.39-4.53c1.46,0,2.9.39,3.45.5.1.94.21,1.99.42,3.69l-.81.16h0Z"/>
<path class="cls-3" d="M323.9,54.43c-1.15,1.52-2.9,2.67-4.48,2.67-3.32,0-5.28-2.69-5.28-5.49,0-2.07.89-3.79,2.64-5.13,1.39-1.07,2.96-1.49,3.98-1.49,1.18,0,2.04.37,2.43.71.37.29.42.47.42.76,0,.63-.65,1.18-.94,1.18-.13,0-.24-.05-.5-.26-.81-.73-1.7-1.1-2.64-1.1-1.73,0-3.24,1.47-3.24,4.19-.03,3.64,2.46,4.84,3.98,4.84,1.1,0,1.99-.29,3.19-1.44l.44.58h0Z"/>
<path class="cls-3" d="M327.5,42.36c-.73,0-1.39-.65-1.39-1.39,0-.84.65-1.44,1.41-1.44s1.34.6,1.34,1.44c0,.73-.6,1.39-1.36,1.39h0ZM324.78,56.78v-.73c1.65-.16,1.83-.29,1.83-2.07v-5.39c0-1.62-.08-1.73-1.65-1.99v-.63c1.36-.24,2.59-.58,3.72-1.05v9.05c0,1.78.18,1.91,1.88,2.07v.73h-5.78Z"/>
<path class="cls-3" d="M336.37,45.97c-1.2,0-2.38,1.13-2.75,3.24,1.47,0,2.93,0,4.48-.08.47,0,.63-.13.63-.52.03-1.39-.89-2.64-2.36-2.64h0ZM340.87,54.56c-1.68,2.09-3.51,2.54-4.35,2.54-3.19,0-5.13-2.62-5.13-5.63,0-1.78.63-3.43,1.7-4.58,1.1-1.23,2.54-1.91,3.9-1.91,2.28,0,4,1.96,4,4.06-.03.52-.1.76-.52.86-.52.1-3.87.34-6.99.44-.08,3.51,2.07,4.94,3.92,4.94,1.07,0,2.07-.44,3.04-1.33l.42.6h0Z"/>
<path class="cls-3" d="M349.56,56.78v-.73c1.52-.16,1.67-.34,1.67-2.12v-4.32c0-1.83-.65-3.06-2.38-3.06-1.07,0-2.09.63-2.9,1.36v6.12c0,1.81.16,1.86,1.7,2.01v.73h-5.65v-.73c1.73-.18,1.88-.29,1.88-2.01v-5.39c0-1.7-.18-1.78-1.6-2.01v-.68c1.28-.21,2.56-.55,3.66-1.05v2.07c.52-.37,1.1-.76,1.78-1.2.73-.47,1.41-.78,2.17-.78,2.09,0,3.4,1.54,3.4,4.08v4.97c0,1.78.16,1.86,1.68,2.01v.73h-5.42Z"/>
<path class="cls-3" d="M365.77,54.43c-1.15,1.52-2.9,2.67-4.47,2.67-3.32,0-5.29-2.69-5.29-5.49,0-2.07.89-3.79,2.64-5.13,1.39-1.07,2.96-1.49,3.98-1.49,1.18,0,2.04.37,2.43.71.37.29.42.47.42.76,0,.63-.65,1.18-.94,1.18-.13,0-.24-.05-.5-.26-.81-.73-1.7-1.1-2.64-1.1-1.73,0-3.24,1.47-3.24,4.19-.03,3.64,2.46,4.84,3.98,4.84,1.1,0,1.99-.29,3.19-1.44l.44.58h0Z"/>
<path class="cls-3" d="M371.66,45.97c-1.2,0-2.38,1.13-2.75,3.24,1.46,0,2.93,0,4.47-.08.47,0,.63-.13.63-.52.03-1.39-.89-2.64-2.35-2.64h0ZM376.16,54.56c-1.68,2.09-3.51,2.54-4.34,2.54-3.19,0-5.13-2.62-5.13-5.63,0-1.78.63-3.43,1.7-4.58,1.1-1.23,2.54-1.91,3.9-1.91,2.28,0,4,1.96,4,4.06-.03.52-.1.76-.52.86-.52.1-3.87.34-6.99.44-.08,3.51,2.07,4.94,3.92,4.94,1.07,0,2.07-.44,3.04-1.33l.42.6h0Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="353" height="98" viewBox="0 0 353 98" version="1.1"><path d="M 0 47.500 L 0 62 14.500 62 L 29 62 29 47.500 L 29 33 14.500 33 L 0 33 0 47.500" stroke="none" fill="#f16524" fill-rule="evenodd"/><path d="M 0 16.500 L 0 33 14.500 33 L 29 33 29 47.500 L 29 62 14.500 62 L 0 62 0 80 L 0 98 15 98 L 30 98 30 80.500 L 30 63 44 63 L 58 63 58 80.500 L 58 98 73 98 L 88 98 88 49 L 88 0 73 0 L 58 0 58 16.500 L 58 33 44 33 L 30 33 30 16.500 L 30 0 15 0 L 0 0 0 16.500 M 100 49 L 100 98 115 98 L 130 98 130.030 76.750 C 130.054 60.387, 130.322 55.960, 131.195 57.500 C 131.819 58.600, 132.631 59.725, 133.001 60 C 133.371 60.275, 134.914 62.638, 136.432 65.250 C 137.949 67.862, 139.518 70, 139.918 70 C 140.318 70, 141.602 71.915, 142.771 74.256 C 143.940 76.597, 145.739 79.416, 146.769 80.521 C 147.798 81.626, 149.940 84.774, 151.529 87.515 C 153.118 90.257, 155.223 93.088, 156.209 93.807 C 157.194 94.525, 158 95.763, 158 96.557 C 158 97.734, 160.210 98, 170 98 C 177.327 98, 182.004 97.611, 182.010 97 C 182.016 96.450, 182.025 74.513, 182.031 48.250 L 182.042 0.500 167.521 0.223 L 153 -0.053 152.994 20.723 C 152.988 40.051, 152.880 41.291, 151.451 38.500 C 150.605 36.850, 149.371 35.041, 148.707 34.480 C 147.531 33.487, 146.994 32.635, 142.795 25.113 C 141.686 23.126, 140.153 21.140, 139.389 20.700 C 138.625 20.260, 138 19.296, 138 18.556 C 138 17.817, 136.762 15.862, 135.250 14.212 C 132.516 11.231, 130.792 8.690, 128.388 4.100 C 127.697 2.779, 126.539 1.324, 125.816 0.865 C 125.092 0.406, 118.987 0.024, 112.250 0.015 L 100 0 100 49 M 190 14.500 L 190 29 200.500 29 L 211 29 211 63.500 L 211 98 226.500 98 L 242 98 242 63.500 L 242 29 253 29 L 264 29 264 14.500 L 264 0 227 0 L 190 0 190 14.500 M 271 48.933 L 271 98 300 98 C 316.998 98, 329 97.619, 329 97.079 C 329 96.573, 330.462 95.850, 332.250 95.472 C 339.529 93.932, 349.100 85.418, 351.500 78.347 C 353.303 73.038, 353.480 59.209, 351.796 55.297 C 351.133 53.759, 349.896 51.768, 349.046 50.873 C 343.764 45.311, 343.726 45.185, 346.154 41.188 C 347.386 39.160, 348.868 37.177, 349.447 36.783 C 350.787 35.870, 350.804 18.147, 349.466 17.198 C 348.924 16.814, 347.242 14.588, 345.726 12.250 C 344.211 9.912, 342.636 8, 342.226 8 C 341.815 8, 340.359 6.984, 338.990 5.742 C 333.427 0.696, 332.393 0.546, 300.750 0.196 L 271 -0.134 271 48.933 M 300 28.887 L 300 36 308.550 36 C 314.404 36, 318.067 35.499, 320.170 34.412 C 323.047 32.924, 323.209 32.544, 322.737 28.363 C 322.461 25.909, 321.930 23.596, 321.557 23.224 C 321.184 22.851, 316.182 22.372, 310.440 22.160 L 300 21.773 300 28.887 M 300 65.917 C 300 71.288, 299.598 74.011, 298.750 74.386 C 298.063 74.690, 302.742 74.840, 309.148 74.720 C 319.005 74.534, 321.119 74.207, 322.898 72.595 C 325.364 70.360, 325.625 66.110, 323.543 62.084 C 321.812 58.735, 318.990 58, 307.875 58 L 300 58 300 65.917" stroke="none" fill="#1b232c" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" version="1.1"><path d="M 42.215 40.250 L 42.500 50.500 58.750 50.775 L 75 51.050 75 40.525 L 75 30 58.465 30 L 41.930 30 42.215 40.250 M 42 110.500 L 42 161 58.500 161 L 75 161 75 110.500 L 75 60 58.500 60 L 42 60 42 110.500 M 85.212 69.250 L 85.500 78.500 121.750 78.762 L 158 79.025 158 69.512 L 158 60 121.462 60 L 84.925 60 85.212 69.250 M 107 110.500 L 107 120 132.500 120 L 158 120 158 110.500 L 158 101 132.500 101 L 107 101 107 110.500 M 85.667 142.667 C 85.300 143.033, 85 147.308, 85 152.167 L 85 161 121.500 161 L 158 161 158 151.500 L 158 142 122.167 142 C 102.458 142, 86.033 142.300, 85.667 142.667" stroke="none" fill="#050505" fill-rule="evenodd"/><path d="M -0 100.005 L -0 200.010 100.250 199.755 L 200.500 199.500 200.755 99.750 L 201.010 0 100.505 0 L 0 0 -0 100.005 M 0.481 100.500 C 0.481 155.500, 0.602 178.147, 0.750 150.826 C 0.898 123.506, 0.898 78.506, 0.750 50.826 C 0.602 23.147, 0.481 45.500, 0.481 100.500 M 42.215 40.250 L 42.500 50.500 58.750 50.775 L 75 51.050 75 40.525 L 75 30 58.465 30 L 41.930 30 42.215 40.250 M 42 110.500 L 42 161 58.500 161 L 75 161 75 110.500 L 75 60 58.500 60 L 42 60 42 110.500 M 85.212 69.250 L 85.500 78.500 121.750 78.762 L 158 79.025 158 69.512 L 158 60 121.462 60 L 84.925 60 85.212 69.250 M 107 110.500 L 107 120 132.500 120 L 158 120 158 110.500 L 158 101 132.500 101 L 107 101 107 110.500 M 85.667 142.667 C 85.300 143.033, 85 147.308, 85 152.167 L 85 161 121.500 161 L 158 161 158 151.500 L 158 142 122.167 142 C 102.458 142, 86.033 142.300, 85.667 142.667" stroke="none" fill="#fbfbfb" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

235
assets/images/svg-logo.svg Normal file
View file

@ -0,0 +1,235 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="300.000000pt" height="358.000000pt" viewBox="0 0 300.000000 358.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.10, written by Peter Selinger 2001-2011
</metadata>
<defs>
<filter id="sofGlow" height="300%" width="300%" x="-75%" y="-75%">
<!-- Thicken out the original shape -->
<feMorphology operator="dilate" radius="4" in="SourceAlpha" result="thicken" />
<!-- Use a gaussian blur to create the soft blurriness of the glow -->
<feGaussianBlur in="thicken" stdDeviation="25" result="blurred" />
<!-- Change the colour -->
<feFlood flood-color="rgb(239 68 68)" result="glowColor" />
<!-- Color in the glows -->
<feComposite in="glowColor" in2="blurred" operator="in" result="softGlow_colored" />
<!-- Layer the effects together -->
<feMerge>
<feMergeNode in="softGlow_colored"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g transform="translate(0.000000,358.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M630 3255 c-18 -42 -31 -77 -29 -80 2 -2 26 1 52 7 27 5 50 8 53 6
18 -18 74 -449 84 -645 l10 -182 -31 -68 c-17 -37 -31 -69 -33 -70 -3 -4 -68
15 -328 94 -172 52 -224 64 -253 59 -31 -6 -35 -10 -29 -29 9 -32 57 -125 101
-198 l38 -64 110 -17 c61 -9 121 -19 135 -21 14 -3 51 -9 83 -13 53 -6 58 -9
54 -28 -36 -153 -38 -176 -22 -330 9 -83 24 -241 35 -351 11 -110 23 -222 26
-250 4 -27 6 -86 6 -129 l-2 -80 65 -101 c63 -100 64 -102 79 -211 37 -280 72
-514 77 -514 3 0 72 154 153 343 203 467 200 462 270 522 l58 50 44 -50 c72
-82 112 -143 191 -290 41 -77 77 -141 78 -143 2 -2 40 24 86 58 l83 60 126
238 c126 236 127 237 144 347 10 61 26 161 37 224 10 62 19 125 19 140 0 22
-121 358 -132 365 -2 1 -28 14 -58 28 -35 16 -49 28 -40 31 8 3 69 22 135 42
l120 37 96 95 c87 85 98 101 113 154 18 66 21 115 7 124 -5 3 -34 -5 -63 -19
-161 -72 -240 -104 -408 -162 l-185 -64 -17 23 c-9 12 -24 38 -33 57 l-16 35
116 285 c63 157 121 299 127 315 16 43 31 58 101 101 34 21 138 85 230 142
l168 104 177 -70 c166 -66 277 -98 287 -83 2 4 -25 41 -59 82 -56 67 -71 78
-132 101 -95 36 -93 36 -239 52 l-130 14 -155 -30 -155 -30 -75 -61 c-80 -65
-169 -138 -341 -281 l-106 -88 -99 -224 -98 -224 -113 0 c-62 0 -113 2 -113 5
0 3 7 49 16 102 8 53 12 108 9 122 -7 29 -37 131 -95 321 -21 69 -46 151 -55
182 -13 46 -27 68 -68 107 -108 103 -105 101 -183 101 l-71 0 -33 -75z m216
13 c97 -85 105 -94 119 -143 8 -28 46 -156 85 -285 l72 -235 -12 -85 c-19
-135 -15 -128 -64 -123 -23 3 -79 -2 -125 -12 -45 -9 -89 -14 -96 -11 -11 4
-14 28 -13 103 1 110 -7 213 -28 353 -19 128 -18 140 14 176 15 18 37 45 49
60 l21 29 4 -120 c3 -119 3 -121 -29 -183 -39 -74 -43 -94 -7 -34 14 23 26 42
28 42 2 0 -5 -37 -14 -82 -22 -108 -33 -185 -26 -177 7 6 10 21 20 80 11 70
36 192 39 196 2 2 18 -32 35 -74 17 -43 44 -108 61 -146 26 -57 30 -76 26
-130 -2 -34 -2 -51 1 -37 13 70 28 100 65 125 22 14 39 28 39 31 0 6 -13 -1
-53 -29 -16 -10 -30 -18 -32 -16 -1 2 -6 58 -9 124 -11 222 -18 285 -29 293
-7 4 -33 42 -59 85 l-47 78 24 11 c14 6 25 16 25 21 0 5 -11 2 -25 -7 -29 -19
-31 -16 -60 72 -9 29 -19 51 -22 49 -3 -4 21 -86 41 -137 3 -9 -7 -29 -25 -50
-17 -19 -38 -47 -47 -62 -9 -15 -19 -28 -23 -28 -4 0 -13 33 -19 73 -7 39 -15
90 -19 112 -4 22 -11 39 -16 37 -36 -9 -77 -14 -81 -9 -3 3 4 28 17 56 l21 51
63 0 c59 0 65 -2 111 -42z m1689 22 c80 -9 130 -20 184 -43 74 -30 124 -71
116 -94 -2 -7 1 -10 8 -8 7 3 20 -7 31 -21 l19 -26 -40 7 c-22 3 -107 33 -189
67 -82 33 -163 66 -181 72 -18 7 -41 20 -53 31 -11 10 -23 16 -26 12 -3 -3 4
-10 15 -17 30 -15 26 -28 -14 -47 -19 -9 -35 -20 -35 -23 0 -4 -12 -7 -27 -7
-26 0 -237 -79 -418 -156 -44 -18 -110 -56 -148 -83 -37 -27 -91 -61 -120 -77
-34 -18 -42 -25 -23 -21 26 6 20 -6 -86 -162 -63 -93 -118 -176 -123 -184 -7
-13 -6 -13 8 0 17 16 36 44 163 233 62 92 99 136 133 159 25 18 55 40 65 50
37 34 38 18 2 -32 -20 -28 -36 -53 -36 -56 0 -3 -13 -24 -29 -47 -31 -46 -57
-87 -180 -283 l-82 -131 -51 -6 c-29 -4 -54 -5 -56 -2 -3 2 3 16 12 29 9 14
16 30 16 36 0 6 34 88 76 183 75 170 94 199 169 256 18 14 119 97 225 185 124
102 205 162 228 168 73 21 278 56 307 53 17 -2 80 -9 140 -15z m-197 -113 c-9
-7 -96 -61 -193 -121 -101 -62 -180 -118 -186 -130 -4 -11 -63 -156 -130 -321
-66 -165 -123 -302 -124 -304 -2 -1 -19 8 -37 22 -18 14 -55 32 -83 41 -27 9
-63 22 -78 28 l-28 11 43 42 c24 23 66 66 93 96 244 264 291 317 308 339 32
40 -210 -210 -298 -309 -44 -49 -83 -90 -87 -90 -4 -1 8 23 27 52 19 28 54 84
78 122 144 231 222 348 236 352 27 9 245 94 266 103 63 29 191 79 200 79 6 0
2 -5 -7 -12z m-1434 -117 c6 -11 27 -46 47 -77 l37 -58 10 -175 c6 -96 9 -176
8 -178 -2 -1 -18 35 -36 80 -19 46 -44 106 -56 133 -18 41 -23 75 -28 179 -3
71 -2 126 1 122 3 -3 11 -15 17 -26z m1526 -687 c0 -10 -6 -44 -14 -75 -12
-53 -20 -64 -112 -152 -54 -53 -103 -96 -109 -96 -5 0 -66 -18 -135 -41 -123
-40 -125 -40 -138 -20 -8 11 -25 32 -38 48 -13 15 -24 31 -24 34 0 3 42 25 93
49 50 24 142 67 202 96 68 32 139 75 185 113 41 33 78 60 83 61 4 0 7 -8 7
-17z m-1117 -5 c9 1 17 -2 17 -5 0 -15 -32 -129 -38 -134 -4 -4 -68 -10 -142
-13 -74 -4 -162 -9 -195 -11 -68 -6 -65 -4 75 48 181 68 260 100 257 104 -6 5
-258 -84 -332 -117 -34 -15 -97 -40 -102 -40 -3 0 12 19 33 43 22 24 46 52 54
63 8 11 22 28 30 38 9 11 10 17 3 15 -11 -4 -115 -127 -132 -156 -7 -13 -14
-14 -40 -5 -17 6 -31 7 -31 3 0 -5 10 -12 23 -15 20 -6 18 -10 -33 -56 -30
-27 -50 -50 -44 -50 5 0 23 14 39 30 48 50 47 34 -4 -47 -52 -84 -94 -163 -87
-163 4 0 128 205 154 254 9 19 10 19 15 0 3 -10 11 -48 18 -84 12 -68 12 -70
22 -110 4 -14 8 -38 11 -55 2 -16 9 -54 15 -84 13 -65 13 -64 2 -56 -9 5 -72
19 -145 32 -16 2 -40 9 -53 14 -13 5 -32 9 -41 9 -41 -1 40 -28 133 -45 55
-10 103 -21 107 -24 5 -4 -1 -38 -13 -76 -11 -39 -27 -97 -35 -130 -9 -33 -18
-67 -21 -75 -4 -8 -8 -26 -10 -40 -2 -14 -8 -28 -12 -33 -7 -7 -17 15 -75 163
-30 77 -85 198 -86 188 0 -8 83 -226 106 -275 8 -17 14 -34 14 -38 0 -4 7 -22
16 -41 15 -32 15 -39 0 -87 -24 -80 -66 -251 -62 -255 2 -2 13 30 25 70 12 40
28 94 36 119 8 26 15 56 15 68 0 11 5 21 10 21 6 0 10 -6 10 -12 0 -7 11 -35
25 -63 13 -27 25 -57 25 -66 0 -16 -23 -72 -81 -196 -16 -34 -29 -67 -29 -72
0 -5 -10 -17 -22 -26 -21 -16 -22 -16 -2 -11 17 5 23 -2 42 -56 20 -57 22 -53
5 12 -3 14 22 -16 56 -67 34 -51 67 -95 73 -99 14 -9 10 -3 -61 106 -30 47
-62 92 -70 100 -13 13 -7 15 57 18 44 2 72 7 72 14 0 7 -22 9 -70 4 -38 -3
-70 -4 -70 -1 0 2 16 37 35 76 19 40 35 76 35 79 0 4 7 25 16 46 12 28 18 34
24 24 6 -12 24 -108 21 -117 0 -2 6 -22 13 -45 7 -24 14 -94 15 -156 1 -63 6
-124 11 -135 6 -14 7 18 5 85 -2 63 0 110 6 113 5 4 50 -17 99 -46 50 -28 93
-50 96 -47 6 7 -27 28 -100 63 -33 16 -54 31 -48 33 6 2 56 -6 111 -17 115
-24 111 -24 111 -12 0 5 -21 12 -47 15 -27 4 -55 9 -63 11 -29 6 -95 17 -124
21 -38 5 -40 8 -26 33 6 12 8 25 5 30 -3 5 6 51 21 103 35 127 50 183 69 250
11 43 21 58 38 63 12 4 57 25 100 46 43 22 83 37 88 33 7 -4 9 -26 5 -58 -3
-28 -8 -96 -11 -151 -7 -143 -15 -252 -21 -310 -4 -35 -3 -47 5 -40 6 6 13 51
16 100 7 129 13 234 21 362 l6 112 42 5 c90 11 196 22 196 20 0 -4 -66 -150
-131 -290 -11 -22 -19 -43 -19 -46 0 -4 -15 -39 -34 -80 -18 -40 -36 -80 -39
-88 -3 -8 -13 -33 -22 -55 -9 -22 -12 -35 -7 -30 6 6 29 53 52 105 45 102 82
184 107 240 9 19 17 37 18 40 0 3 12 30 27 62 14 31 32 72 39 92 12 34 29 49
29 25 0 -5 8 -29 19 -52 10 -23 29 -66 41 -94 13 -29 26 -51 28 -48 5 4 -24
82 -66 174 l-24 54 73 73 c40 40 74 72 76 71 1 -2 -2 -32 -8 -68 -12 -70 -14
-93 -25 -219 -7 -93 0 -108 10 -20 3 30 11 91 17 135 7 44 12 95 11 113 0 54
14 36 32 -40 9 -40 26 -97 38 -127 l21 -54 -63 -57 c-35 -32 -70 -56 -77 -53
-8 3 -11 0 -8 -9 7 -17 -198 -219 -435 -430 -62 -55 -180 -137 -247 -171 -28
-15 -35 -15 -87 0 -44 12 -58 21 -62 39 -4 13 -11 24 -16 24 -6 0 -7 7 -4 16
3 8 2 13 -3 9 -5 -3 -28 24 -50 60 -39 62 -42 70 -40 133 2 64 -8 178 -52 583
-11 103 -20 202 -20 220 -1 86 0 120 1 137 4 32 30 147 39 167 5 11 37 83 71
161 l63 141 71 15 c55 12 110 15 241 11 94 -3 178 -5 188 -5z m256 -70 c47
-45 87 -85 89 -88 2 -5 -106 -120 -113 -120 -2 0 -10 42 -20 93 -9 50 -20 103
-25 117 -4 14 -11 34 -14 44 -12 35 -15 11 -5 -34 6 -25 12 -52 14 -60 2 -8
11 -46 20 -84 9 -37 14 -70 12 -72 -1 -2 -19 7 -38 20 -18 13 -67 42 -108 66
l-74 43 30 26 c49 42 120 125 97 113 -12 -6 -41 -34 -64 -62 -23 -28 -45 -49
-47 -46 -3 2 1 29 8 60 13 61 16 63 98 65 l54 1 86 -82z m8 52 c65 -20 125
-71 155 -131 14 -30 64 -101 109 -158 l82 -103 4 -100 c3 -79 1 -98 -9 -92
-11 6 -11 5 0 -8 10 -13 1 -45 -50 -188 l-63 -172 -23 78 c-12 44 -31 107 -42
141 l-19 62 35 78 c20 43 42 93 50 112 l14 34 42 -62 c22 -34 43 -59 45 -57 3
2 -14 33 -37 68 -38 56 -40 64 -25 73 10 5 27 18 39 28 17 15 14 15 -15 -2
-43 -25 -51 -19 -69 48 -6 23 -13 41 -16 39 -2 -3 3 -32 11 -66 16 -61 16 -61
-13 -124 -15 -35 -33 -74 -40 -88 -9 -22 -11 -22 -11 -5 0 11 4 38 9 60 11 47
25 202 17 195 -8 -8 -33 -186 -38 -273 -1 -21 -5 -39 -8 -40 -3 -1 -29 21 -57
49 l-51 51 75 123 c42 68 78 117 80 110 3 -9 8 -6 16 8 l11 21 33 -25 c27 -21
30 -29 21 -45 -6 -11 -9 -25 -7 -31 2 -6 10 3 17 20 13 31 12 33 -15 55 -42
32 -76 67 -107 109 -33 45 -34 52 -4 38 19 -10 20 -9 5 2 -9 7 -24 18 -34 23
-14 9 -15 15 -5 35 10 21 10 22 -1 10 -7 -9 -18 -15 -24 -15 -6 0 -44 31 -85
69 -41 37 -67 66 -58 63 10 -3 34 -11 56 -17z m783 17 c0 -11 -140 -103 -192
-126 -35 -16 -121 -57 -193 -91 l-130 -61 -28 32 -29 31 159 55 c87 30 169 58
183 63 14 4 70 28 125 54 105 48 105 48 105 43z m-1978 -98 c149 -75 208 -109
296 -174 1 -1 -2 -14 -9 -27 l-11 -25 -116 19 c-65 10 -151 24 -194 30 l-76
11 -45 81 c-57 104 -77 146 -77 163 0 29 57 9 232 -78z m51 21 c54 -18 142
-44 197 -59 l99 -26 -21 -47 -20 -48 -46 33 c-25 17 -53 38 -62 44 -8 7 -71
40 -139 73 -115 55 -156 78 -121 66 8 -2 59 -19 113 -36z m847 -86 c0 -4 -8
-14 -17 -23 -10 -9 -47 -52 -83 -96 -72 -88 -100 -122 -115 -139 -38 -41 -127
-157 -123 -161 5 -5 59 57 243 283 59 73 108 131 109 130 1 -2 0 -66 -2 -144
l-3 -141 -92 -35 c-51 -19 -128 -51 -173 -71 -45 -19 -86 -32 -92 -28 -5 3
-12 20 -15 36 -3 17 -13 66 -22 110 -9 44 -19 89 -21 100 -2 11 -11 49 -19 84
-19 74 -14 82 50 79 51 -2 299 12 304 18 7 7 71 5 71 -2z m175 -84 c76 -41 83
-48 59 -56 -10 -4 -21 -10 -24 -13 -5 -6 -145 -102 -167 -115 -10 -6 -13 24
-13 133 l0 140 43 -28 c23 -16 69 -43 102 -61z m257 27 c15 -23 33 -49 39 -58
10 -14 6 -25 -22 -65 -20 -27 -52 -80 -73 -117 -21 -37 -40 -66 -42 -64 -3 2
0 26 6 53 16 69 19 83 25 129 4 22 10 56 15 75 6 19 10 47 10 63 0 37 10 34
42 -16z m-62 -23 c-6 -27 -13 -60 -15 -74 -15 -103 -45 -240 -52 -240 -2 0
-63 23 -135 52 l-130 52 28 23 c16 13 34 23 41 23 6 0 13 4 15 8 2 5 32 28 67
51 44 30 66 40 71 32 4 -7 13 -51 20 -99 11 -81 29 -141 30 -102 0 8 -9 62
-19 120 l-19 105 51 52 c28 29 53 51 54 49 2 -2 -1 -25 -7 -52z m351 -206 c27
-13 48 -26 49 -29 0 -3 -8 -14 -18 -25 -10 -10 -31 -37 -47 -58 -25 -33 -26
-37 -8 -26 12 8 34 33 49 57 15 24 30 40 34 36 12 -15 113 -284 108 -289 -3
-3 -18 6 -34 19 -37 30 -122 90 -151 106 -43 22 -23 2 36 -38 32 -22 65 -46
72 -53 8 -7 31 -22 52 -33 45 -24 45 -24 12 -233 -47 -286 -44 -277 -168 -510
-63 -116 -116 -215 -119 -218 -4 -3 -11 21 -18 53 -14 71 -66 293 -91 388 -10
38 -17 71 -16 72 1 1 45 -7 97 -18 164 -34 241 -49 253 -49 23 0 -4 13 -45 21
-24 5 -54 11 -68 14 -14 3 -34 7 -45 9 -87 18 -180 38 -182 40 -2 2 287 270
296 274 4 1 12 -39 19 -90 7 -51 14 -102 16 -113 3 -11 5 -26 5 -32 1 -7 5
-13 9 -13 5 0 5 24 0 53 -4 28 -10 75 -13 102 -4 28 -10 62 -15 77 -8 24 -4
31 23 53 64 52 79 65 70 65 -10 0 -50 -27 -77 -52 -11 -10 -22 -18 -25 -18 -3
0 -20 37 -38 83 -50 129 -64 160 -69 154 -5 -5 9 -43 67 -180 20 -48 25 -69
16 -72 -16 -5 -68 -17 -89 -21 -22 -5 -115 -43 -105 -43 18 -2 143 33 155 42
7 5 15 7 18 5 5 -6 -14 -24 -176 -173 -41 -38 -79 -75 -85 -81 -9 -11 -88 -27
-128 -26 -9 1 -15 -4 -11 -9 4 -6 28 -7 62 -3 51 6 55 5 48 -12 -8 -20 -34
-139 -42 -189 -3 -16 -9 -46 -14 -65 -5 -19 -12 -55 -15 -80 -4 -25 -10 -47
-15 -50 -13 -8 -14 -33 -2 -60 6 -14 11 -19 11 -13 1 9 20 4 59 -13 78 -35
134 -55 128 -45 -3 4 -46 25 -96 46 -95 41 -100 48 -80 101 6 14 12 41 14 58
6 45 56 290 61 294 3 3 7 -16 29 -123 5 -23 30 -127 47 -195 6 -25 17 -70 24
-100 7 -30 16 -62 19 -71 5 -12 -12 -29 -64 -67 -39 -29 -74 -52 -79 -52 -5 0
-12 12 -16 28 -3 15 -12 34 -20 42 -7 8 -36 60 -65 115 -28 55 -79 134 -113
175 -34 41 -68 83 -76 93 -12 17 3 35 192 220 l205 202 58 165 c32 91 61 169
64 173 4 5 5 58 2 118 -3 60 -1 109 3 109 5 0 30 -10 56 -22z m-719 -35 c-14
-27 -55 -117 -101 -223 -98 -224 -115 -259 -122 -255 -4 3 -10 17 -14 32 -3
16 -31 90 -61 166 -30 76 -54 141 -54 145 0 4 66 34 148 66 81 32 158 65 172
72 34 18 42 17 32 -3z m108 -13 c25 -10 79 -31 120 -48 l74 -29 -101 -104
c-56 -57 -117 -122 -137 -143 -20 -22 -37 -38 -38 -35 -2 2 -2 91 0 197 3 178
4 193 20 187 9 -4 37 -15 62 -25z m-100 -188 l-5 -194 -103 -49 c-57 -27 -102
-43 -99 -36 17 42 115 260 156 350 17 37 31 69 31 71 0 9 21 59 23 55 1 -2 0
-91 -3 -197z m410 -2 c0 -7 -132 -141 -135 -138 -1 2 1 28 6 58 18 116 22 155
15 149 -7 -7 -22 -88 -32 -174 -3 -27 -6 -51 -7 -52 -1 -1 -33 -4 -70 -8 -37
-3 -88 -10 -113 -14 -25 -5 -44 -5 -42 -1 5 15 252 265 268 271 10 5 31 -9 63
-39 26 -26 47 -49 47 -52z m-720 -105 c23 -60 49 -126 57 -145 9 -19 16 -39
15 -45 -4 -36 -11 -66 -25 -110 -9 -27 -19 -65 -22 -84 -3 -19 -8 -38 -11 -43
-5 -7 -26 -85 -49 -182 -6 -27 -15 -32 -16 -10 -1 32 -5 55 -24 141 l-18 82
76 82 c43 45 75 84 72 87 -2 2 -36 -29 -74 -69 -82 -86 -76 -97 -60 121 15
203 15 198 18 265 3 68 0 72 61 -90z m-85 -45 c-7 -80 -13 -154 -12 -165 0
-11 -1 -49 -2 -85 l-2 -65 -21 45 c-12 25 -25 55 -31 67 -11 25 -8 49 22 153
27 96 27 96 41 153 7 26 14 46 16 45 1 -2 -3 -69 -11 -148z m327 -738 c-40
-100 -167 -391 -169 -388 -9 9 133 373 151 388 26 22 27 22 18 0z m-155 -289
c-46 -131 -90 -255 -97 -276 -26 -83 -17 -23 25 153 24 102 49 213 55 246 11
55 17 65 54 91 22 17 43 29 44 27 2 -1 -34 -110 -81 -241z m-31 143 c-3 -14
-15 -66 -27 -118 -11 -51 -27 -120 -34 -153 -8 -33 -20 -91 -26 -130 -13 -75
-34 -118 -24 -50 6 41 25 347 25 400 0 24 7 34 38 51 49 29 55 29 48 0z m-144
-8 l39 -12 -7 -179 c-8 -192 -9 -222 -13 -264 -2 -20 -67 403 -71 460 0 10 6
9 52 -5z"
filter="url(#sofGlow)"
/>
<path d="M789 3268 c0 -7 -2 -20 -3 -28 -2 -8 -6 -51 -9 -95 -4 -58 -3 -70 3
-45 12 46 24 180 16 180 -3 0 -6 -6 -7 -12z" filter="url(#sofGlow)" />
<path d="M2152 3255 c3 -3 63 -7 134 -10 90 -3 116 -1 84 5 -49 9 -227 13
-218 5z" filter="url(#sofGlow)" />
<path d="M2600 3229 c44 -10 126 -9 108 2 -7 5 -42 8 -78 8 -58 -1 -61 -2 -30
-10z" filter="url(#sofGlow)" />
<path d="M2354 2288 c-26 -24 -64 -60 -82 -80 -38 -43 -58 -48 -67 -18 -3 11
-11 20 -16 20 -6 0 -3 -10 5 -22 19 -26 20 -38 6 -38 -16 0 -274 -101 -285
-112 -15 -14 42 2 105 30 126 56 133 52 20 -14 -44 -25 -83 -50 -86 -56 -7
-10 50 21 131 71 22 14 81 47 130 73 50 27 79 46 65 42 -18 -5 -3 15 55 69 86
82 99 104 19 35z" filter="url(#sofGlow)" />
<path d="M1240 1408 c-61 -98 -111 -176 -209 -331 -35 -54 -61 -101 -58 -104
3 -3 27 29 54 72 26 42 67 105 90 141 90 140 165 266 160 270 -2 3 -19 -19
-37 -48z" filter="url(#sofGlow)" />
<path d="M963 850 c18 -45 77 -139 77 -123 0 12 -66 132 -82 148 -5 6 -3 -6 5
-25z" filter="url(#sofGlow)" />
<path d="M206 2261 c6 -6 33 -20 60 -30 58 -22 220 -88 249 -101 34 -15 96
-32 101 -28 2 3 -14 11 -36 18 -34 11 -39 17 -34 34 6 20 5 20 -8 2 -13 -16
-17 -17 -39 -5 -13 7 -26 14 -29 14 -13 4 -67 26 -82 35 -10 6 -22 10 -28 10
-5 0 -33 11 -62 24 -70 31 -107 42 -92 27z" filter="url(#sofGlow)" />
<path d="M1561 1084 c-1 -12 10 -75 23 -140 13 -66 27 -137 31 -159 4 -22 10
-34 12 -27 3 7 -3 54 -12 105 -10 51 -19 103 -21 117 -9 50 -32 124 -33 104z" filter="url(#sofGlow)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -96,13 +96,13 @@ body {
border-radius: 4px;
}
.bg-primary {
background-color: #000000 !important;
background-color: #171717 !important;
}
.bg-success {
background-color: #40b0bf !important;
}
.bg-info {
background-color: #0077b6 !important;
background-color: #171717 !important;
}
.bg-warning {
background-color: #fdf0d5 !important;
@ -112,8 +112,8 @@ body {
}
.btn-primary,
.btn-primary:active {
background-color: #000000 !important;
border-color: #000000 !important;
background-color: #171717 !important;
border-color: #171717 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
@ -122,20 +122,20 @@ body {
.btn-primary.focus,
.btn-primary.active {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
background-color: #07090c !important;
border-color: #07090c !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
background-color: #07090c !important;
border-color: #07090c !important;
}
.btn-secondary,
.btn-secondary:active {
background-color: #ff8a8a !important;
border-color: #ff8a8a !important;
background-color: #dd0426 !important;
border-color: #dd0426 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
@ -144,20 +144,20 @@ body {
.btn-secondary.focus,
.btn-secondary.active {
color: #ffffff !important;
background-color: #ff3333 !important;
border-color: #ff3333 !important;
background-color: #880217 !important;
border-color: #880217 !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
color: #ffffff !important;
background-color: #ff3333 !important;
border-color: #ff3333 !important;
background-color: #880217 !important;
border-color: #880217 !important;
}
.btn-info,
.btn-info:active {
background-color: #0077b6 !important;
border-color: #0077b6 !important;
background-color: #171717 !important;
border-color: #171717 !important;
color: #ffffff !important;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
@ -166,15 +166,15 @@ body {
.btn-info.focus,
.btn-info.active {
color: #ffffff !important;
background-color: #003e5f !important;
border-color: #003e5f !important;
background-color: #07090c !important;
border-color: #07090c !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
color: #ffffff !important;
background-color: #003e5f !important;
border-color: #003e5f !important;
background-color: #07090c !important;
border-color: #07090c !important;
}
.btn-success,
.btn-success:active {
@ -276,27 +276,27 @@ body {
.btn-black.focus,
.btn-black.active {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
background-color: #171717 !important;
border-color: #171717 !important;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
background-color: #171717 !important;
border-color: #171717 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #000000;
color: #171717;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
color: #000000 !important;
color: #07090c !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
@ -304,20 +304,20 @@ body {
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
color: #ffffff !important;
background-color: #000000 !important;
border-color: #000000 !important;
background-color: #171717 !important;
border-color: #171717 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #ff8a8a;
color: #dd0426;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
color: #ff3333 !important;
color: #880217 !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
@ -325,20 +325,20 @@ body {
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
color: #ffffff !important;
background-color: #ff8a8a !important;
border-color: #ff8a8a !important;
background-color: #dd0426 !important;
border-color: #dd0426 !important;
}
.btn-info-outline,
.btn-info-outline:active {
background-color: transparent !important;
border-color: transparent;
color: #0077b6;
color: #171717;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
color: #003e5f !important;
color: #07090c !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
@ -346,8 +346,8 @@ body {
.btn-info-outline.disabled,
.btn-info-outline:disabled {
color: #ffffff !important;
background-color: #0077b6 !important;
border-color: #0077b6 !important;
background-color: #171717 !important;
border-color: #171717 !important;
}
.btn-success-outline,
.btn-success-outline:active {
@ -422,7 +422,7 @@ body {
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
color: #000000 !important;
color: #171717 !important;
background-color: transparent!important;
border-color: transparent!important;
box-shadow: none!important;
@ -455,16 +455,16 @@ body {
border-color: #fafafa !important;
}
.text-primary {
color: #000000 !important;
color: #171717 !important;
}
.text-secondary {
color: #ff8a8a !important;
color: #dd0426 !important;
}
.text-success {
color: #40b0bf !important;
}
.text-info {
color: #0077b6 !important;
color: #171717 !important;
}
.text-warning {
color: #fdf0d5 !important;
@ -481,12 +481,12 @@ body {
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
color: #000000 !important;
color: #010203 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
color: #ff2424 !important;
color: #790215 !important;
}
a.text-success:hover,
a.text-success:focus,
@ -496,7 +496,7 @@ a.text-success.active {
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
color: #003450 !important;
color: #010203 !important;
}
a.text-warning:hover,
a.text-warning:focus,
@ -516,7 +516,7 @@ a.text-white.active {
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
color: #000000 !important;
color: #171717 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
position: relative;
@ -532,7 +532,7 @@ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-cap
background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
color: #000000;
color: #171717;
}
.nav-tabs .nav-link:not(.active) {
color: #232323;
@ -541,7 +541,7 @@ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-cap
background-color: #70c770;
}
.alert-info {
background-color: #0077b6;
background-color: #171717;
}
.alert-warning {
background-color: #fdf0d5;
@ -550,20 +550,18 @@ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-cap
background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
background-color: #000000;
border-color: #000000;
background-color: #171717;
border-color: #171717;
color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
box-shadow: none;
}
a,
a:hover {
color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
color: #b3b3b3;
color: #91a0bf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
@ -571,7 +569,7 @@ a:hover {
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
color: #37baff;
color: #91a0bf;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
@ -597,7 +595,7 @@ a:hover {
.form-control:hover,
.form-control:focus {
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
border-color: #000000 !important;
border-color: #171717 !important;
}
.form-control:-webkit-input-placeholder {
font-family: 'Montserrat', sans-serif;
@ -609,19 +607,19 @@ a:hover {
font-size: 1.375rem;
}
blockquote {
border-color: #000000;
border-color: #171717;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
background-color: #000000;
background-color: #171717;
color: #ffffff;
}
.jq-number__spin {
transition: 0.25s ease;
}
.jq-number__spin:hover {
border-color: #000000;
border-color: #171717;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
@ -633,20 +631,20 @@ blockquote {
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
border-top-color: #000000;
border-bottom-color: #000000;
border-top-color: #171717;
border-bottom-color: #171717;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
color: #ffffff !important;
background-color: #000000 !important;
background-color: #171717 !important;
box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
color: #000000 !important;
background: #ff8a8a !important;
color: #ffffff !important;
background: #dd0426 !important;
box-shadow: none !important;
}
.lazy-bg {
@ -671,7 +669,7 @@ iframe.lazy-placeholder,
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23273043' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
opacity: 0.5;
@ -718,7 +716,7 @@ a {
}
.cid-sgPI0rTtnd .dropdown-item:hover,
.cid-sgPI0rTtnd .dropdown-item:focus {
background: #000000 !important;
background: #171717 !important;
color: white !important;
}
.cid-sgPI0rTtnd .dropdown-item:first-child {
@ -752,7 +750,7 @@ a {
}
.cid-sgPI0rTtnd .dropdown-menu,
.cid-sgPI0rTtnd .navbar.opened {
background: #c80425 !important;
background: #171717 !important;
}
.cid-sgPI0rTtnd .nav-item:focus,
.cid-sgPI0rTtnd .nav-link:focus {
@ -787,7 +785,7 @@ a {
transition: all 0.3s;
border-bottom: 1px solid transparent;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
background: #c80425;
background: #171717;
}
.cid-sgPI0rTtnd .navbar.opened {
transition: all 0.3s;
@ -932,7 +930,7 @@ a {
padding: 0.667em 1.667em;
}
.cid-sgPI0rTtnd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
background: #c80425;
background: #171717;
}
.cid-sgPI0rTtnd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
margin: 0;
@ -963,7 +961,7 @@ a {
width: 30px;
height: 2px;
border-right: 5px;
background-color: #ffffff;
background-color: #fafafa;
}
.cid-sgPI0rTtnd button.navbar-toggler .hamburger span:nth-child(1) {
top: 0;
@ -1035,9 +1033,9 @@ a {
}
}
.cid-sgPJ0TKe9q {
padding-top: 4rem;
padding-top: 3rem;
padding-bottom: 3rem;
background-color: #2b2d42;
background-color: #171717;
}
@media (max-width: 991px) {
.cid-sgPJ0TKe9q .image-wrapper {
@ -1057,7 +1055,7 @@ a {
.cid-tih9EvSaF5 {
padding-top: 5rem;
padding-bottom: 0rem;
background-color: #2b2d42;
background-color: #171717;
}
.cid-tih9EvSaF5 .mbr-section-title {
color: #ffffff;
@ -1068,10 +1066,10 @@ a {
.cid-sgPJIlmBEv {
padding-top: 0rem;
padding-bottom: 5rem;
background-color: #2b2d42;
background-color: #171717;
}
.cid-sgPJIlmBEv .card-wrapper {
background: #f45b69;
background: #9197ae;
border-radius: 4px;
}
@media (max-width: 767px) {
@ -1100,7 +1098,7 @@ a {
.cid-t5rSAuN6jS {
padding-top: 5rem;
padding-bottom: 6rem;
background-color: #2b2d42;
background-color: #171717;
}
.cid-t5rSAuN6jS img,
.cid-t5rSAuN6jS .item-img {
@ -1116,7 +1114,7 @@ a {
.cid-t5rSAuN6jS .slide-content {
position: relative;
border-radius: 4px;
background: #2b2d42;
background: #171717;
height: 100%;
display: flex;
overflow: hidden;
@ -1228,19 +1226,19 @@ a {
.cid-sU99xA04eV {
padding-top: 5rem;
padding-bottom: 5rem;
background-color: #f45b69;
background-color: #9197ae;
}
.cid-sU99xA04eV .mbr-section-subtitle {
text-align: center;
color: #ffffff;
color: #171717;
}
.cid-sU99xA04eV .mbr-text {
color: #ffffff;
color: #171717;
}
.cid-tqAPe2NEkt {
padding-top: 6rem;
padding-bottom: 6rem;
background-color: #2b2d42;
background-color: #171717;
}
.cid-tqAPe2NEkt .item {
padding-bottom: 2rem;
@ -1430,9 +1428,9 @@ a {
width: 7px;
height: 7px;
margin: 3px;
background: #000000;
background: #171717;
opacity: 0.5;
border: 4px solid #000000;
border: 4px solid #171717;
}
.cid-tqAPe2NEkt .carousel-indicators .active {
background: #fff;
@ -1494,7 +1492,7 @@ a {
.cid-sU9iJiwiKR {
padding-top: 0rem;
padding-bottom: 8rem;
background-color: #2b2d42;
background-color: #171717;
}
.cid-sU9iJiwiKR .mbr-section-title {
color: #ffffff;
@ -1507,7 +1505,7 @@ a {
.cid-sU9izjxqWU {
padding-top: 6rem;
padding-bottom: 6rem;
background-color: #fdf0d5;
background-color: #9197ae;
}
.cid-sU9izjxqWU .card .card-header {
background-color: transparent;
@ -1522,19 +1520,19 @@ a {
padding-left: 1rem;
font-family: 'Moririse2' !important;
font-size: 1.4rem !important;
color: #000000;
color: #171717;
}
.cid-sU9izjxqWU .panel-body,
.cid-sU9izjxqWU .card-header {
padding: 1rem 0;
}
.cid-sU9izjxqWU .panel-title-edit {
color: #000000;
color: #171717;
}
.cid-t5zRJx1DXX {
padding-top: 5rem;
padding-bottom: 5rem;
background-color: #2b2d42;
background-color: #171717;
}
.cid-t5zRJx1DXX .image-wrapper {
display: flex;
@ -1544,7 +1542,7 @@ a {
margin-bottom: 2rem;
display: flex;
border-radius: 4px;
background: #fdf0d5;
background: #9197ae;
}
@media (max-width: 991px) {
.cid-t5zRJx1DXX .card-wrapper {
@ -1559,7 +1557,7 @@ a {
.cid-t5zRJx1DXX .mbr-iconfont {
font-size: 2rem;
padding-right: 1.5rem;
color: #000000;
color: #171717;
}
.cid-t5zRJx1DXX .mbr-section-title {
color: #ffffff;

View file

@ -8,6 +8,7 @@ body {
line-height: 1.5;
font-weight: 400;
color: #232323;
background-color: #171717;
position: relative;
}
@ -40,9 +41,7 @@ a {
font-weight: 400;
cursor: pointer;
}
a, a:hover {
text-decoration: none;
}
.mbr-section-title {
font-style: normal;
@ -780,6 +779,74 @@ body {
width: 14px;
}
.image-container {
position: relative;
z-index: 10;
}
.image-container::after {
content: '';
position: absolute;
z-index: -1;
bottom: -24px;
left: 24px;
width: 100%;
height: 100%;
background: linear-gradient(rgb(235, 59, 59), rgb(239 68 68));
}
.image-container img {
z-index: -1;
}
.image-container-alt {
position: relative;
z-index: 10;
}
.image-container-alt::after {
content: '';
position: absolute;
z-index: -1;
bottom: -24px;
left: -24px;
width: 100%;
height: 100%;
background: linear-gradient(rgb(235, 59, 59), rgb(239 68 68));
}
.image-container-alt img {
z-index: -1;
}
.game-font {
font-family: 'Jersey 10', sans-serif;
font-weight: 400;
font-style: normal;
}
.roboto-mono-font {
font-family: "Roboto Mono", monospace;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
@keyframes cycle-pulse {
0% {
filter: invert(42%) sepia(77%) saturate(2318%) hue-rotate(334deg) brightness(96%) contrast(95%);
}
50% {
filter: invert(0%) sepia(1%) saturate(10%) hue-rotate(306deg) brightness(98%) contrast(101%);
}
100% {
filter: invert(42%) sepia(77%) saturate(2318%) hue-rotate(334deg) brightness(96%) contrast(95%);
}
}
.form-control {
background-color: #ffffff;
background-clip: border-box;
@ -935,9 +1002,18 @@ blockquote {
display: none;
}
.dropdown-item:hover + .dropdown-menu,
.dropdown-menu:hover {
display: block;
@media (min-aspect-ratio: 16/9) {
.mbr-video-foreground {
height: 300% !important;
top: -100% !important;
}
}
@media (max-aspect-ratio: 16/9) {
.mbr-video-foreground {
width: 300% !important;
left: -100% !important;
}
}.engine {
position: absolute;
text-indent: -2400px;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,477 +0,0 @@
@font-face {
font-family: 'mobirise-icons-bold';
font-display: swap;
src: url('mobirise-icons-bold.eot?m1l4yr');
src: url('mobirise-icons-bold.eot?m1l4yr#iefix') format('embedded-opentype'),
url('mobirise-icons-bold.ttf?m1l4yr') format('truetype'),
url('mobirise-icons-bold.woff?m1l4yr') format('woff'),
url('mobirise-icons-bold.svg?m1l4yr#mobirise-icons-bold') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="mbrib-"], [class*="mbrib-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'mobirise-icons-bold' !important;
speak: none;
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;
}
.mbrib-add-submenu:before {
content: "\e900";
}
.mbrib-alert:before {
content: "\e901";
}
.mbrib-align-center:before {
content: "\e902";
}
.mbrib-align-justify:before {
content: "\e903";
}
.mbrib-align-left:before {
content: "\e904";
}
.mbrib-align-right:before {
content: "\e905";
}
.mbrib-android:before {
content: "\e906";
}
.mbrib-apple:before {
content: "\e907";
}
.mbrib-arrow-down:before {
content: "\e908";
}
.mbrib-arrow-next:before {
content: "\e909";
}
.mbrib-arrow-prev:before {
content: "\e90a";
}
.mbrib-arrow-up:before {
content: "\e90b";
}
.mbrib-bold:before {
content: "\e90c";
}
.mbrib-bookmark:before {
content: "\e90d";
}
.mbrib-bootstrap:before {
content: "\e90e";
}
.mbrib-briefcase:before {
content: "\e90f";
}
.mbrib-browse:before {
content: "\e910";
}
.mbrib-bulleted-list:before {
content: "\e911";
}
.mbrib-calendar:before {
content: "\e912";
}
.mbrib-camera:before {
content: "\e913";
}
.mbrib-cart-add:before {
content: "\e914";
}
.mbrib-cart-full:before {
content: "\e915";
}
.mbrib-cash:before {
content: "\e916";
}
.mbrib-change-style:before {
content: "\e917";
}
.mbrib-chat:before {
content: "\e918";
}
.mbrib-clock:before {
content: "\e919";
}
.mbrib-close:before {
content: "\e91a";
}
.mbrib-cloud:before {
content: "\e91b";
}
.mbrib-code:before {
content: "\e91c";
}
.mbrib-contact-form:before {
content: "\e91d";
}
.mbrib-credit-card:before {
content: "\e91e";
}
.mbrib-cursor-click:before {
content: "\e91f";
}
.mbrib-cust-feedback:before {
content: "\e920";
}
.mbrib-database:before {
content: "\e921";
}
.mbrib-delivery:before {
content: "\e922";
}
.mbrib-desktop:before {
content: "\e923";
}
.mbrib-devices:before {
content: "\e924";
}
.mbrib-down:before {
content: "\e925";
}
.mbrib-download:before {
content: "\e926";
}
.mbrib-drag-n-drop:before {
content: "\e927";
}
.mbrib-drag-n-drop2:before {
content: "\e928";
}
.mbrib-edit:before {
content: "\e929";
}
.mbrib-edit2:before {
content: "\e92a";
}
.mbrib-error:before {
content: "\e92b";
}
.mbrib-extension:before {
content: "\e92c";
}
.mbrib-features:before {
content: "\e92d";
}
.mbrib-file:before {
content: "\e92e";
}
.mbrib-flag:before {
content: "\e92f";
}
.mbrib-folder:before {
content: "\e930";
}
.mbrib-gift:before {
content: "\e931";
}
.mbrib-github:before {
content: "\e932";
}
.mbrib-globe-2:before {
content: "\e933";
}
.mbrib-globe:before {
content: "\e934";
}
.mbrib-growing-chart:before {
content: "\e935";
}
.mbrib-hearth:before {
content: "\e936";
}
.mbrib-help:before {
content: "\e937";
}
.mbrib-home:before {
content: "\e938";
}
.mbrib-hot-cup:before {
content: "\e939";
}
.mbrib-idea:before {
content: "\e93a";
}
.mbrib-image-gallery:before {
content: "\e93b";
}
.mbrib-image-slider:before {
content: "\e93c";
}
.mbrib-info:before {
content: "\e93d";
}
.mbrib-italic:before {
content: "\e93e";
}
.mbrib-key:before {
content: "\e93f";
}
.mbrib-laptop:before {
content: "\e940";
}
.mbrib-layers:before {
content: "\e941";
}
.mbrib-left-right:before {
content: "\e942";
}
.mbrib-left:before {
content: "\e943";
}
.mbrib-letter:before {
content: "\e944";
}
.mbrib-like:before {
content: "\e945";
}
.mbrib-link:before {
content: "\e946";
}
.mbrib-lock:before {
content: "\e947";
}
.mbrib-login:before {
content: "\e948";
}
.mbrib-logout:before {
content: "\e949";
}
.mbrib-magic-stick:before {
content: "\e94a";
}
.mbrib-map-pin:before {
content: "\e94b";
}
.mbrib-menu:before {
content: "\e94c";
}
.mbrib-mobile:before {
content: "\e94d";
}
.mbrib-mobile2:before {
content: "\e94e";
}
.mbrib-mobirise:before {
content: "\e94f";
}
.mbrib-more-horizontal:before {
content: "\e950";
}
.mbrib-more-vertical:before {
content: "\e951";
}
.mbrib-music:before {
content: "\e952";
}
.mbrib-new-file:before {
content: "\e953";
}
.mbrib-numbered-list:before {
content: "\e954";
}
.mbrib-opened-folder:before {
content: "\e955";
}
.mbrib-pages:before {
content: "\e956";
}
.mbrib-paper-plane:before {
content: "\e957";
}
.mbrib-paperclip:before {
content: "\e958";
}
.mbrib-photo:before {
content: "\e959";
}
.mbrib-photos:before {
content: "\e95a";
}
.mbrib-pin:before {
content: "\e95b";
}
.mbrib-play:before {
content: "\e95c";
}
.mbrib-plus:before {
content: "\e95d";
}
.mbrib-preview:before {
content: "\e95e";
}
.mbrib-print:before {
content: "\e95f";
}
.mbrib-protect:before {
content: "\e960";
}
.mbrib-question:before {
content: "\e961";
}
.mbrib-quote-left:before {
content: "\e962";
}
.mbrib-quote-right:before {
content: "\e963";
}
.mbrib-redo:before {
content: "\e964";
}
.mbrib-refresh:before {
content: "\e965";
}
.mbrib-responsive:before {
content: "\e966";
}
.mbrib-right:before {
content: "\e967";
}
.mbrib-rocket:before {
content: "\e968";
}
.mbrib-sad-face:before {
content: "\e969";
}
.mbrib-sale:before {
content: "\e96a";
}
.mbrib-save:before {
content: "\e96b";
}
.mbrib-search:before {
content: "\e96c";
}
.mbrib-setting:before {
content: "\e96d";
}
.mbrib-setting2:before {
content: "\e96e";
}
.mbrib-setting3:before {
content: "\e96f";
}
.mbrib-share:before {
content: "\e970";
}
.mbrib-shopping-bag:before {
content: "\e971";
}
.mbrib-shopping-basket:before {
content: "\e972";
}
.mbrib-shopping-cart:before {
content: "\e973";
}
.mbrib-sites:before {
content: "\e974";
}
.mbrib-smile-face:before {
content: "\e975";
}
.mbrib-speed:before {
content: "\e976";
}
.mbrib-star:before {
content: "\e977";
}
.mbrib-success:before {
content: "\e978";
}
.mbrib-sun:before {
content: "\e979";
}
.mbrib-sun2:before {
content: "\e97a";
}
.mbrib-tablet-vertical:before {
content: "\e97b";
}
.mbrib-tablet:before {
content: "\e97c";
}
.mbrib-target:before {
content: "\e97d";
}
.mbrib-timer:before {
content: "\e97e";
}
.mbrib-to-ftp:before {
content: "\e97f";
}
.mbrib-to-local-drive:before {
content: "\e980";
}
.mbrib-touch-swipe:before {
content: "\e981";
}
.mbrib-touch:before {
content: "\e982";
}
.mbrib-trash:before {
content: "\e983";
}
.mbrib-underline:before {
content: "\e984";
}
.mbrib-undo:before {
content: "\e985";
}
.mbrib-unlink:before {
content: "\e986";
}
.mbrib-unlock:before {
content: "\e987";
}
.mbrib-up-down:before {
content: "\e988";
}
.mbrib-up:before {
content: "\e989";
}
.mbrib-update:before {
content: "\e98a";
}
.mbrib-upload:before {
content: "\e98b";
}
.mbrib-user:before {
content: "\e98c";
}
.mbrib-user2:before {
content: "\e98d";
}
.mbrib-users:before {
content: "\e98e";
}
.mbrib-video-play:before {
content: "\e98f";
}
.mbrib-video:before {
content: "\e990";
}
.mbrib-watch:before {
content: "\e991";
}
.mbrib-website-theme:before {
content: "\e992";
}
.mbrib-wifi:before {
content: "\e993";
}
.mbrib-windows:before {
content: "\e994";
}
.mbrib-zoom-out:before {
content: "\e995";
}

View file

@ -1,160 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="MobiriseIcons" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="mbri-add-submenu" d="M64 224v-64c0-16.768 15.232-32 32-32h177.92l-7.936-8c-31.104-31.104 14.336-75.712 44.032-46.080l64 64c12.288 11.968 12.288 34.176 0 46.080l-64 64c-25.856 25.856-72.96-16.96-44.032-46.080l10.048-9.92h-148.032v32c0 42.24-64 41.344-64 0zM576 256c-70.4 0-128-57.6-128-128s57.6-128 128-128h320c70.4 0 128 57.6 128 128s-57.6 128-128 128zM576 192h320c36.032 0 64-27.968 64-64s-27.968-64-64-64h-320c-36.032 0-64 27.968-64 64s27.968 64 64 64zM128 576c-70.4 0-128-57.6-128-128s57.6-128 128-128h640c70.4 0 128 57.6 128 128s-57.6 128-128 128zM128 512h640c36.032 0 64-27.968 64-64s-27.968-64-64-64h-640c-36.032 0-64 27.968-64 64s27.968 64 64 64zM128 896c-70.4 0-128-57.6-128-128s57.6-128 128-128h640c70.4 0 128 57.6 128 128s-57.6 128-128 128zM128 832h640c36.032 0 64-27.968 64-64s-27.968-64-64-64h-640c-36.032 0-64 27.968-64 64s27.968 64 64 64z" />
<glyph unicode="&#xe901;" glyph-name="mbri-alert" d="M800 768c88.768 0 160-71.232 160-160 0-40.576 64-41.792 64 0 0 123.328-100.672 224-224 224-44.16 0-40.576-64 0-64zM224 832c-123.328 0-224-100.672-224-224 0-43.328 64-42.24 64 0 0 88.768 71.232 160 160 160 41.6 0 41.152 64 0 64zM512 960c-68.48 0-128-40-128-96 0-41.152 64-41.088 64 0 0 17.92 33.664 32 64 32s64-11.84 64-32c0-42.56 64-41.856 64 0 0 54.4-59.52 96-128 96zM512 767.168c-122.24 0-197.12-62.080-233.984-136s-42.048-156.672-42.048-211.968c0-91.136-24.192-148.48-48-184-23.68-35.648-43.968-48-43.968-48-24.768-13.696-12.288-60.48 16-60.032h704c30.848-3.2 43.264 51.712 14.080 62.080 0 0-18.944 6.912-42.112 39.936-23.040 33.088-48 90.752-48 190.080 0 55.296-5.12 138.048-41.984 211.968-36.864 73.856-111.744 135.936-233.984 135.936zM689.92 603.2c28.928-57.792 34.112-132.48 34.112-184 0-81.728 11.968-163.2 61.952-228.032h-553.92c55.936 64.832 67.136 161.472 67.968 228.032 0 51.52 5.12 126.208 33.92 184s75.84 99.968 178.048 99.968 149.12-42.24 177.92-99.968zM512-64c-68.48 0-128 40-128 96 0 41.152 64 41.088 64 0 0-17.92 33.664-32 64-32s64 11.84 64 32c0 42.56 64 41.856 64 0 0-54.4-59.52-96-128-96z" />
<glyph unicode="&#xe902;" glyph-name="mbri-align-center" d="M288 384h448c43.136 0 41.728-64 0-64h-448c-42.88 0-41.472 64 0 64zM32 192h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 576h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM288 768h448c43.136 0 41.728-64 0-64h-448c-42.88 0-41.472 64 0 64z" />
<glyph unicode="&#xe903;" glyph-name="mbri-align-justify" d="M32 384h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 192h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 576h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 768h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64z" />
<glyph unicode="&#xe904;" glyph-name="mbri-align-left" d="M32 384h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64zM32 192h512c43.136 0 41.728-64 0-64h-512c-42.88 0-41.472 64 0 64zM32 576h512c43.136 0 41.728-64 0-64h-512c-42.88 0-41.472 64 0 64zM32 768h960c43.136 0 41.728-64 0-64h-960c-42.88 0-41.472 64 0 64z" />
<glyph unicode="&#xe905;" glyph-name="mbri-align-right" d="M992 384h-960c-43.136 0-41.728-64 0-64h960c42.88 0 41.472 64 0 64zM992 192h-512c-43.136 0-41.728-64 0-64h512c42.88 0 41.472 64 0 64zM992 576h-512c-43.136 0-41.728-64 0-64h512c42.88 0 41.472 64 0 64zM992 768h-960c-43.136 0-41.728-64 0-64h960c42.88 0 41.472 64 0 64z" />
<glyph unicode="&#xe906;" glyph-name="mbri-android" d="M251.52 878.72l63.040-125.12c23.424-46.464-35.392-68.608-55.232-29.312l-63.104 125.12c-20.032 39.68 36.992 65.472 55.232 29.312zM768 448c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM384 448c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM512 704c-252.16 0-463.552-175.36-511.488-409.984-3.584-18.56 12.992-38.4 32-38.016h959.040c18.944-0.64 35.52 19.392 32 38.016-48.064 234.624-259.52 409.984-511.552 409.984zM512 640c207.872 0 377.344-135.68 433.6-320h-867.2c56.32 184.32 225.728 320 433.6 320zM64 192c-34.88 0-64-29.12-64-64v-64c0-34.88 29.12-64 64-64h896c34.88 0 64 29.12 64 64v64c0 34.88-29.12 64-64 64zM64 128h896v-64h-896zM772.48 878.72l-63.040-125.12c-23.424-46.464 35.392-68.608 55.232-29.312l63.104 125.12c20.032 39.68-36.992 65.472-55.232 29.312z" />
<glyph unicode="&#xe907;" glyph-name="mbri-apple" d="M673.92 960c-119.872 0-225.92-93.184-225.92-210.816 0-39.232 54.144-45.184 94.080-45.184 120.064 0 225.92 95.488 225.92 213.12 0 41.984-55.040 42.88-94.080 42.88zM692.032 896c0-64.512-70.592-128-168.064-128 0 64.64 66.304 128 168.064 128zM328 704c-183.68 0-264-154.496-264-320 0-257.664 152.32-448 296-448 113.728 0 113.536 64 166.016 64s56.32-64 165.888-64c96 0 210.752 88.064 266.048 251.2 4.096 12.8-1.024 28.16-12.16 35.968-54.4 34.56-81.92 93.568-81.92 160.832 0 62.080 22.4 115.84 70.016 151.168 13.056 8.96 17.664 28.16 9.984 41.984-45.952 82.432-127.104 126.848-217.856 126.848-113.536 0-129.088-64-199.936-64-71.040 0-83.2 64-198.080 64zM328 640c96 0 100.032-63.744 198.016-64 97.92 0 99.392 64 199.936 64 65.664 0 112.448-28.16 147.968-78.848-47.808-46.272-73.92-106.24-73.92-177.152 0-77.76 31.616-144.192 88-190.848-51.008-129.792-144-193.152-196.032-193.152-71.68 0-87.808 64-165.952 64-78.208 0-87.68-64-166.080-64-90.944 0-231.936 139.2-231.936 384 0 138.368 59.904 256 200 256z" />
<glyph unicode="&#xe908;" glyph-name="mbri-arrow-down" d="M54.848 694.72l447.552-448.96c29.76-29.76-16.64-73.408-45.952-44.032l-447.488 448.896c-28.288 28.288 17.28 72.832 45.888 44.16zM969.152 694.72l-383.552-384.96c-29.76-29.824 16.64-73.408 45.952-44.032l383.616 384.896c28.16 28.288-17.408 72.832-46.080 44.16z" />
<glyph unicode="&#xe909;" glyph-name="mbri-arrow-next" d="M265.28 905.152l448.96-447.552c29.76-29.76 73.344 16.64 44.032 45.952l-448.896 447.488c-28.288 28.288-72.832-17.28-44.16-45.888zM265.28-9.152l384.96 383.552c29.824 29.76 73.408-16.64 44.032-45.952l-384.896-383.616c-28.288-28.16-72.832 17.408-44.16 46.080z" />
<glyph unicode="&#xe90a;" glyph-name="mbri-arrow-prev" d="M758.72 905.152l-448.96-447.552c-29.76-29.76-73.344 16.64-44.032 45.952l448.896 447.488c28.288 28.288 72.832-17.28 44.16-45.888zM758.72-9.152l-384.96 383.552c-29.824 29.76-73.408-16.64-44.032-45.952l384.896-383.616c28.288-28.16 72.832 17.408 44.16 46.080z" />
<glyph unicode="&#xe90b;" glyph-name="mbri-arrow-up" d="M969.152 201.28l-447.552 448.96c-29.76 29.76 16.64 73.408 45.952 44.032l447.552-448.896c28.288-28.288-17.28-72.832-45.888-44.16zM54.848 201.28l383.552 384.96c29.76 29.824-16.64 73.408-45.952 44.032l-383.616-384.896c-28.16-28.288 17.408-72.832 46.080-44.16z" />
<glyph unicode="&#xe90c;" glyph-name="mbri-bold" d="M320 800v-256c0-16.768 15.232-32 32-32h128c88.064 0 160 71.872 160 160s-71.936 160-160 160h-128c-17.664 0-32-13.44-32-32zM384 768h96c53.76 0 96-42.24 96-96s-42.24-96-96-96h-96zM320 416v-320c0-16.768 15.232-32 32-32h160c105.792 0 192 86.080 192 192s-86.208 192-192 192h-160c-17.28 0-32-16.32-32-32zM384 384h128c71.488 0 128-56.32 128-128s-56.512-128.64-128-128h-128zM192 928v-960c0-16.768 15.232-32 32-32h288c176 0 320 143.552 320 320 0 101.376-50.56 189.184-124.032 248 35.584 47.36 60.032 103.68 60.032 168 0 158.912-129.024 288-288 288h-256c-17.28 0-32-14.080-32-32zM256 896h224c124.672 0 224-99.456 224-224 0-58.88-22.784-109.76-60.032-150.016-12.16-13.568-9.152-37.76 6.016-48 70.528-45.184 118.016-126.72 118.016-217.984 0-142.4-114.432-256-256-256h-256z" />
<glyph unicode="&#xe90d;" glyph-name="mbri-bookmark" d="M224 512h576c41.344 0 43.52-64 0-64h-576c-42.24 0-42.368 64 0 64zM224 640h576c41.344 0 43.52-64 0-64h-576c-42.24 0-42.368 64 0 64zM224 768h576c41.344 0 43.52-64 0-64h-576c-42.24 0-42.368 64 0 64zM64 865.92v-832.64c0-66.944 62.080-109.44 105.984-94.080l344 122.56 340.096-123.776c40.192-10.688 105.984 26.496 105.984 94.080v833.856c-0.064 52.736-43.584 94.080-96.064 94.080h-704c-56.576 0-96-41.472-96-94.080zM160 896h704c18.368 0 32-11.968 32-30.080v-833.92c0-16.96-15.552-35.2-30.080-30.080l-341.76 123.904c-6.272 2.752-13.44 3.456-20.032 1.92l-353.92-128.448c-13.568-4.928-22.080 14.848-22.080 33.92v832.832c0 18.112 13.632 30.080 32 30.080z" />
<glyph unicode="&#xe90e;" glyph-name="mbri-bootstrap" d="M256 800v-640c0-16.768 15.232-32 32-32h256c123.52 0 224 100.48 224 224 0 49.472-23.040 91.328-49.92 128 26.88 36.672 49.92 78.464 49.92 128 0 123.52-100.48 224-224 224h-256c-21.568 0-32-16.192-32-32zM320 768h224c89.216 0 160-70.848 160-160 0-41.472-16-77.312-41.984-105.984-11.136-11.776-11.136-32.256 0-44.032 25.856-28.672 41.984-64.64 41.984-105.984 0-89.216-70.784-160-160-160h-224v576zM384 416v-128c0-16.768 15.232-32 32-32h129.92c52.096 0 94.080 43.904 94.080 96s-41.984 96-94.080 96h-129.92c-17.664 0-32-13.44-32-32zM448 384h97.92c17.152 0 30.080-12.8 30.080-32s-12.928-32.384-30.080-32h-97.92zM384 672v-128c0-16.768 15.232-32 32-32h129.92c52.16 0 94.080 43.904 94.080 96s-41.984 96-94.080 96h-129.92c-19.072 0-32-15.36-32-32zM448 640h97.92c17.152 0 30.080-12.8 30.080-32s-12.928-32-30.080-32h-97.92zM96 960c-52.608 0-96-43.392-96-96v-768c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v768c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-768c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v768c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe90f;" glyph-name="mbri-briefcase" d="M138.88 520.448l128.256-127.040c43.008-42.688 61.824-73.408 148.864-73.408h192c80.512 0 102.592 23.36 152.128 73.408l127.040 128.32c27.008 27.264-17.92 72.064-44.16 45.632l-126.848-128.32c-39.168-39.488-69.76-55.040-108.16-55.040h-192c-53.632 0-77.888 28.416-104.768 55.040l-128.192 127.040c-29.952 29.568-74.88-15.36-44.16-45.632zM352 960c-52.608 0-96-43.392-96-96v-64c0-42.368 64-42.24 64 0v64c0 18.304 13.696 32 32 32h320c18.304 0 32-13.696 32-32v-64c0-42.048 64-41.6 64 0v64c0 52.608-43.392 96-96 96zM96 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 640h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe910;" glyph-name="mbri-browse" d="M160 576h704c42.432 0 42.88-64 0-64h-704c-42.432 0-42.432 64 0 64zM448 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe911;" glyph-name="mbri-bulleted-list" d="M352 128h640c43.52 0 42.048-64 0-64h-640c-42.88 0-42.112 64 0 64zM352 512h640c43.52 0 42.048-64 0-64h-640c-42.88 0-42.112 64 0 64zM128 192c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 128c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 960c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 896c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM352 896h640c43.52 0 42.048-64 0-64h-640c-42.88 0-42.112 64 0 64z" />
<glyph unicode="&#xe912;" glyph-name="mbri-calendar" d="M704 736v128c0 41.216 64 44.288 64 0v-128c0-42.496-64-41.92-64 0zM192 736v128c0 41.216 64 44.288 64 0v-128c0-42.496-64-41.92-64 0zM800 320h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM544 320h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM288 320h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM800 512h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM544 512h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM288 512h-128c-41.216 0-44.288 64 0 64h128c42.56 0 41.92-64 0-64zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96-43.072 0-41.28-64 0-64 18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32 41.28 0 43.84 64 0 64zM352 768h256c43.52 0 41.088 64 0 64h-256c-42.24 0-41.6-64 0-64z" />
<glyph unicode="&#xe913;" glyph-name="mbri-camera" d="M800 576h64c43.136 0 42.24-64 0-64h-64c-43.136 0-41.984 64 0 64zM160 896c-52.608 0-96-43.392-96-96 0-43.136 64-40.576 64 0 0 18.304 13.696 32 32 32h128c18.304 0 32-13.696 32-32 0-42.112 64-42.432 64 0 0 52.608-43.392 96-96 96zM480 576c-123.328 0-224-100.672-224-224s100.672-224 224-224 224 100.672 224 224-100.672 224-224 224zM480 512c88.768 0 160-71.232 160-160s-71.232-160-160-160-160 71.232-160 160 71.232 160 160 160zM96 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 640h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe914;" glyph-name="mbri-cart-add" d="M832 800v-96h-96c-42.624 0-42.24-64 0-64h96v-96c0-43.008 64-41.984 64 0v96h96c43.52 0 41.92 64 0 64h-96v96c0 42.24-64 42.752-64 0zM352 704h256c42.624 0 42.752-64 0-64h-256c-42.88 0-41.728 64 0 64zM352 576h320c42.88 0 42.56-64 0-64h-320c-42.56 0-42.112 64 0 64zM416 448h320c42.368 0 42.88-64 0-64h-320c-42.368 0-42.496 64 0 64zM736 192c-52.672 0-96-43.392-96-96s43.328-96 96-96 96 43.392 96 96-43.328 96-96 96zM736 128c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM352 192c-52.672 0-96-43.392-96-96s43.328-96 96-96 96 43.392 96 96-43.328 96-96 96zM352 128c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM128 768c16.384 0 25.92-45.312 32-70.016l65.92-321.92c25.6-95.104 80.448-120.064 158.080-120.064h384c43.52 0 120.064 26.368 188.032 144 21.952 38.016-35.712 67.2-56.064 32-60.032-104.064-111.36-112-131.968-112h-384c-63.104 0-84.672 22.4-97.92 72l-62.080 318.080c-11.392 63.424-38.4 121.92-96 121.92h-96c-42.24 0-43.008-64 0-64z" />
<glyph unicode="&#xe915;" glyph-name="mbri-cart-full" d="M416 448h384c43.648 0 41.344-64 0-64h-384c-43.776 0-41.6 64 0 64zM32 768h96c24.576 0 31.36-39.424 37.312-70.784l64-336c23.488-87.68 79.808-105.216 154.688-105.216h384c94.080 0 162.176 11.776 186.88 95.168l60.032 201.984c29.696 97.92-11.52 150.848-103.936 150.848h-558.976c-42.24 0-42.24-64 0-64h558.976c59.84 0 55.040-24.832 41.984-68.8l-57.984-198.016c-16-54.528-76.8-53.12-126.976-53.12h-384c-57.6-3.072-78.4 9.152-90.752 55.168l-64 334.080c-14.016 73.024-28.736 122.688-101.248 122.688h-96c-42.24 0-43.008-64 0-64zM586.24 950.72l-105.216-107.008-41.6 43.904c-11.712 10.88-32 10.88-43.712 0l-63.488-63.168c-33.92-33.728 12.672-76.16 43.648-45.44l41.6 41.472 41.728-43.84c11.648-10.88 32-10.88 43.648 0l105.152 107.072 105.152-107.072c11.648-10.88 32-10.88 43.52 0l41.728 43.904 41.6-41.344c30.976-30.72 78.464 10.88 43.712 45.44l-63.488 63.040c-11.648 10.88-32 10.88-43.648 0l-41.6-44.032-105.216 107.072c-12.8 12.8-32.512 11.008-43.52 0zM352 576h512c42.56 0 42.368-64 0-64h-512c-41.6 0-42.56 64 0 64zM736 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM736 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32zM352 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM352 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32z" />
<glyph unicode="&#xe916;" glyph-name="mbri-cash" d="M224 320h-32v32c0 42.112-64 42.88-64 0v-64c0-16.768 15.232-32 32-32h64c42.112 0 42.88 64 0 64zM736 320h32v32c0 42.112 64 42.88 64 0v-64c0-16.768-15.232-32-32-32h-64c-42.112 0-42.88 64 0 64zM224 640h-32v-32c0-42.112-64-42.88-64 0v64c0 16.768 15.232 32 32 32h64c42.112 0 42.88-64 0-64zM448 672v-38.016c-37.44-13.056-64-48.192-64-89.984 0-65.92 42.88-94.976 96-96 17.6-0.64 32-15.104 32-32 0-17.536-14.72-32-32-32h-64c-42.368 0-42.24-64 0-64h32v-32c0-42.688 64-42.56 64 0v36.032c37.504 13.056 64 50.112 64 91.968 0 52.864-38.208 95.488-96 95.488-18.048 0-32 15.104-32 32.512 0 17.536 14.72 32 32 32h64c45.056 0 39.232 64 0 64h-32v32c0 42.624-64 41.984-64 0zM736 640h32v-32c0-42.112 64-42.88 64 0v64c0 16.768-15.232 32-32 32h-64c-42.112 0-42.88-64 0-64zM96 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 768h768c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe917;" glyph-name="mbri-change-style" d="M977.92 956.032c-212.928-113.024-474.624-284.672-589.888-400-94.72-94.72-78.080-213.76-28.032-264 50.048-50.176 154.88-64 257.92 36.032 105.28 102.016 280.64 356.48 402.24 585.984 14.848 29.184-16.832 54.528-42.048 41.984zM897.92 836.032c-87.040-161.92-218.88-359.552-323.84-460.032-86.272-82.432-155.904-54.144-170.112-40-39.68 39.68-26.88 116.992 32 176 118.72 118.656 309.888 239.232 462.080 324.032zM192 256c-99.52 0-117.76-78.976-128-160 0.896-44.416-26.56-82.304-52.032-102.016-22.208-15.872-7.296-59.136 20.032-57.984 141.76-0.64 288 27.52 288 160 0 97.792-45.44 160-128 160zM192 192c58.88 0 64-54.4 64-96 0-64.896-79.808-83.968-150.016-83.968 12.352 24.512 22.144 52.096 22.016 83.968-0.32 59.52 23.808 96 64 96z" />
<glyph unicode="&#xe918;" glyph-name="mbri-chat" d="M160 640h704c43.136 0 41.984-64 0-64h-704c-43.52 0-40.96 64 0 64zM160 768h704c43.136 0 41.984-64 0-64h-704c-43.52 0-40.96 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h32v-160c0-28.992 33.664-42.24 54.016-22.016l182.016 182.016h563.968c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-576c-8 0-16-2.688-22.016-8l-137.984-137.92v113.92c0 16.768-15.232 32-32 32h-64c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe919;" glyph-name="mbri-clock" d="M448 800v-320c0-17.728 14.272-32 32-32h192c42.24 0 42.688 64 0 64h-160v288c0 41.472-64 43.392-64 0zM480 960c-264.704 0-480-215.296-480-480s215.296-480 480-480 480 215.296 480 480-215.296 480-480 480zM480 896c230.144 0 416-185.856 416-416s-185.856-416-416-416-416 185.856-416 416 185.856 416 416 416z" />
<glyph unicode="&#xe91a;" glyph-name="mbri-close" d="M394.048 375.232l-384.448-384.192c-29.44-29.44 15.68-74.368 44.16-45.952l384.32 384.128c30.464 30.464-16.64 73.472-44.032 46.080zM970.048 951.232l-384.448-384.192c-29.44-29.44 15.68-74.368 44.16-45.952l384.256 384.128c30.464 30.464-16.64 73.472-44.032 46.080zM9.728 905.28l960.64-960.192c28.544-28.544 73.408 16.64 44.032 46.080l-960.64 959.872c-27.52 27.712-74.112-15.68-44.032-45.76z" />
<glyph unicode="&#xe91b;" glyph-name="mbri-cloud" d="M544 832c-163.968-2.944-262.4-98.688-312-196.032-129.28-12.8-232-119.36-232-251.968 0-141.248 114.752-256 256-256h576c105.6 0 192 86.4 192 192 0 83.2-57.472 149.12-132.032 176-10.368 196.352-174.72 339.2-347.968 336zM544 768c141.76 2.56 288-119.936 288-289.92 0.64-14.336 11.968-27.392 25.984-30.080 57.856-11.84 102.016-65.92 102.016-128 0-71.040-56.96-128-128-128h-576c-106.88 0-192 85.12-192 192 0 105.216 81.6 189.312 185.984 192 12.8 0 25.216 8.192 30.080 20.032 38.976 86.208 115.904 169.28 263.936 171.968z" />
<glyph unicode="&#xe91c;" glyph-name="mbri-code" d="M823.936 693.76l192.512-224.256c10.048-11.52 10.048-30.528 0-42.048l-192.512-224.32c-27.264-31.808-74.688 11.2-48.128 42.048l174.464 202.24-174.464 204.16c-26.56 31.168 22.784 71.68 48.128 42.112zM643.904 751.168l-319.232-576.768c-21.12-38.272 36.48-65.28 55.872-30.080l319.36 576.768c19.648 35.648-35.2 67.648-55.936 30.080zM200.128 693.76l-192.576-224.256c-10.048-11.52-10.048-30.528 0-42.048l192.512-224.32c27.264-31.808 74.688 11.2 48.128 42.048l-174.464 202.24 174.464 204.16c26.56 31.168-22.784 71.68-48.128 42.112z" />
<glyph unicode="&#xe91d;" glyph-name="mbri-contact-form" d="M480 320h384c42.368 0 42.752-64 0-64h-384c-42.112 0-43.008 64 0 64zM480 448h384c42.368 0 42.752-64 0-64h-384c-42.112 0-43.008 64 0 64zM480 576h384c42.368 0 42.752-64 0-64h-384c-42.112 0-43.008 64 0 64zM832 864v-128c0-41.408-64-43.52-64 0v128c0 42.88 64 41.856 64 0zM192 576c-34.88 0-64-29.12-64-64v-192c0-34.88 29.12-64 64-64h128c34.88 0 64 29.12 64 64v192c0 34.88-29.12 64-64 64zM192 512h128v-192h-128zM256 864v-128c0-41.408-64-43.52-64 0v128c0 42.88 64 41.856 64 0zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96-42.88 0-41.6-64 0-64 18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32 42.368 0 42.432 64 0 64zM352 768h320c42.368 0 42.88 64 0 64h-320c-42.624 0-42.24-64 0-64z" />
<glyph unicode="&#xe91e;" glyph-name="mbri-credit-card" d="M736 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-41.6 64 0 64zM544 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-41.856 64 0 64zM352 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-41.856 64 0 64zM160 320h64c43.52 0 41.728-64 0-64h-64c-42.752 0-42.88 64 0 64zM640 704c-70.4 0-128-57.6-128-128s57.6-128 128-128c25.088 0 44.928 13.824 64 25.984 19.072-12.16 38.912-25.984 64-25.984 70.4 0 128 57.6 128 128s-57.6 128-128 128c-24 0-44.48-12.288-64-24-19.52 11.712-40 24-64 24zM640 640c16.64 0 30.912-6.144 41.984-16 11.776-11.136 32.256-11.136 44.032 0 11.072 9.856 25.28 16 41.984 16 35.712 0 64-28.288 64-64s-28.288-64-64-64c-15.744 0-29.824 7.040-41.984 17.92-11.776 11.2-32.256 11.2-44.032 0-12.16-10.88-26.24-17.92-41.984-17.92-35.712 0-64 28.288-64 64s28.288 64 64 64zM96 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe91f;" glyph-name="mbri-cursor-click" d="M182.72 73.472l45.952 45.952c31.36 31.36-16.192 74.24-45.248 45.248l-45.952-45.952c-29.248-29.248 16-74.496 45.248-45.248zM903.808 795.2l45.888 45.888c31.36 31.36-16.256 74.24-45.312 45.312l-45.952-45.952c-29.184-29.248 16-74.496 45.312-45.248zM576 863.040v64.96c0 44.16-64 40.96-64 0v-65.024c0-41.344 64-41.344 64 0zM228.8 839.744l-45.888 46.080c-31.36 31.232-74.24-16.256-45.312-45.312l45.952-45.952c29.248-29.184 74.496 16 45.248 45.248zM31.040 448h64.96c44.16 0 41.088 64 0 64h-65.024c-41.344 0-41.28-64 0-64zM321.28 663.36l192.64-704.96c6.528-20.48 36.48-28.416 52.224-14.080l138.496 138.24 138.432-138.24c11.776-11.136 32.384-11.136 44.16 0l128.384 128.192c11.136 11.776 11.136 32.32 0 44.16l-138.496 138.112 138.432 138.24c14.72 14.72 9.088 43.84-10.112 52.096l-641.92 256.32c-25.6 10.24-49.536-11.072-42.24-38.080zM397.632 617.28l539.776-214.272-126.464-126.208c-11.072-11.776-11.072-32.32 0-44.032l138.56-138.24-84.288-84.096-138.496 138.24c-11.776 11.072-32.32 11.072-44.16 0l-122.368-122.24z" />
<glyph unicode="&#xe920;" glyph-name="mbri-cust-feedback" d="M714.112 759.424l-234.432-234.88-106.24 106.432c-27.328 27.328-73.28-17.024-44.16-46.208l128.32-128.448c11.776-11.136 32.32-11.136 44.16 0l256.384 256.896c30.464 30.464-17.024 73.28-44.032 46.208zM96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-94.72 96-96h32v-160c0-24.832 31.872-44.16 54.016-22.016l182.016 182.016h563.968c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-576c-8 0-16-2.688-22.016-8l-137.984-137.92v113.92c0 16.768-15.232 32-32 32h-64c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe921;" glyph-name="mbri-database" d="M160 448h704c42.048 0 43.52-64 0-64h-704c-43.52 0-41.344 64 0 64zM448 288c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 288c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 288c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM576 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM448 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM448 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM160 704h704c42.048 0 43.52-64 0-64h-704c-43.52 0-41.344 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-640c0-41.6 26.56-76.8 64-89.984v-70.016c0-34.88 29.12-64 64-64h128c34.88 0 64 29.12 64 64v64h384v-64c0-34.88 29.12-64 64-64h128c34.88 0 59.648 29.44 64 64v70.016c37.44 13.12 64 48.32 64 89.984v640c0 52.608-43.392 96-96 96h-832zM96 896h832c18.304 0 32-13.696 32-32v-640c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32zM128 128h128v-64h-128v64zM768 128h128v-64h-128v64z" />
<glyph unicode="&#xe922;" glyph-name="mbri-delivery" d="M32 384h64c42.24 0 42.88-64 0-64h-64c-42.24 0-42.752 64 0 64zM32 576h64c42.24 0 42.88-64 0-64h-64c-42.24 0-42.752 64 0 64zM32 768h64c42.24 0 42.88-64 0-64h-64c-42.24 0-42.752 64 0 64zM522.24 567.808l-106.24-106.88-42.368 42.368c-26.688 26.688-73.216-17.28-44.16-46.4l64.256-64.64c11.84-11.136 32.448-11.136 44.16 0l128.64 129.088c29.824 29.952-17.92 72.704-44.16 46.4zM288 768c-52.608 0-96-43.392-96-96v-320c0-41.472 64-41.6 64 0v320c0 18.304 13.696 32 32 32h320c18.304 0 32-13.696 32-32v-320c0-18.304-13.696-32-32-32h-64c-41.984 0-41.856-64 0-64h64c52.608 0 96 43.392 96 96v288h144l112-168v-120c0-43.52 64-41.6 64 0v128c0 6.4-2.24 12.8-6.016 17.92l-128 192c-5.76 8.576-15.744 14.080-25.984 14.080h-166.016c-13.184 37.44-48.384 64-89.984 64h-320zM352 320c-52.8 0-96-43.648-96-96s43.2-96 96-96 96 43.648 96 96-43.2 96-96 96zM352 256c18.112 0 32-14.080 32-32s-13.888-32-32-32c-18.112 0-32 14.080-32 32s13.888 32 32 32zM864 320c-52.8 0-96-43.648-96-96s43.2-96 96-96 96 43.648 96 96-43.2 96-96 96zM864 256c18.112 0 32-14.080 32-32s-13.888-32-32-32c-18.112 0-32 14.080-32 32s13.888 32 32 32z" />
<glyph unicode="&#xe923;" glyph-name="mbri-desktop" d="M96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h288v-128h-96c-42.624 0-41.472-64 0-64h448c43.136 0 41.984 64 0 64h-96v128h288c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32zM160 448c-42.56 0-41.92-64 0-64h704c43.136 0 41.984 64 0 64zM448 192h128v-128h-128z" />
<glyph unicode="&#xe924;" glyph-name="mbri-devices" d="M192 544v-64c0-42.624-64-43.008-64 0v64c0 41.856 64 42.752 64 0zM320 736v-448c0-41.856-64-42.496-64 0v448c0 44.032 64 40.96 64 0zM832 160c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM672 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM672 640h256c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32zM96 896c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h384c43.904 0 41.472 64 0 64h-384c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32h768c18.304 0 32-13.696 32-32 0-42.24 64-42.368 64 0 0 52.608-43.392 96-96 96z" />
<glyph unicode="&#xe925;" glyph-name="mbri-down" d="M9.6 392.832l448.256-448.512c11.776-11.072 32.256-11.072 44.032 0l448.256 448.512c30.080 30.080-15.616 74.496-43.968 46.080l-426.368-426.496-426.24 426.496c-28.032 28.032-73.6-16.64-44.16-46.080zM512 928v-768c0-41.728-64-43.84-64 0v768c0 43.2 64 40.96 64 0z" />
<glyph unicode="&#xe926;" glyph-name="mbri-download" d="M394.24 136.512l128.128-128.192c11.776-11.072 32.256-11.072 44.032 0l128 128.192c29.952 29.888-17.536 72-43.968 45.76l-106.048-105.472-105.984 105.472c-29.824 29.632-74.88-14.976-44.16-45.76zM576 544.832v-320c0-41.856-64-44.288-64 0v320c0 41.6 64 40.448 64 0zM544 960c-167.040 0-264.96-98.432-313.984-196.032-128.384-13.76-230.016-120.128-230.016-251.968 0-141.248 114.752-256 256-256h96c42.88 0 42.24 64 0 64h-96c-106.88 0-192 85.12-192 192 0 105.216 81.6 189.312 185.984 192 12.8 0 25.216 8.192 30.080 19.968 39.296 86.912 114.368 172.032 263.936 172.032 144.64 0 288-119.68 288-289.92 0.64-14.336 11.968-27.392 25.984-30.080 57.856-11.84 102.016-65.92 102.016-128 0-71.040-56.96-128-128-128h-96c-42.112 0-42.24-64 0-64h96c105.6 0 192 86.4 192 192 0 83.2-57.472 149.12-132.032 176-10.24 195.968-173.696 336-347.968 336z" />
<glyph unicode="&#xe927;" glyph-name="mbri-drag-n-drop" d="M64 480v64c0 18.304 13.696 32 32 32h64c42.56 0 41.92 64 0 64h-64c-52.736 0-96-43.264-96-96v-64c0-42.688 64-42.048 64 0zM64 96v-64c0-18.304 13.696-32 32-32h64c42.56 0 41.92-64 0-64h-64c-52.736 0-96 43.264-96 96v64c0 42.688 64 42.048 64 0zM0 224v128c0 41.6 64 43.392 64 0v-128c0-43.008-64-41.6-64 0zM416 960c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h512c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM416 896h512c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-512c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32zM288 0h128c41.6 0 43.392-64 0-64h-128c-43.008 0-41.6 64 0 64zM640 96v-64c0-18.304-13.696-32-32-32h-64c-42.56 0-41.92-64 0-64h64c52.736 0 95.872 43.264 96 96l0.128 64c0 42.688-64.128 42.048-64.128 0z" />
<glyph unicode="&#xe928;" glyph-name="mbri-drag-n-drop2" d="M952 457.984l-128.64-128.256c-30.080-29.824-74.688 15.808-46.272 44.16l106.56 106.112-106.56 106.24c-27.968 27.776 16 74.048 46.208 43.968l128.64-128.192c10.88-10.88 10.624-33.536 0-44.032zM8 457.984l128.64-128.256c30.080-29.824 74.688 15.808 46.272 44.16l-106.56 106.112 106.56 106.24c27.968 27.776-16 74.048-46.208 43.968l-128.64-128.192c-10.88-10.88-10.624-33.536 0-44.032zM457.92 8.064l-128.192 128.64c-29.824 29.952 15.808 74.624 44.16 46.208l106.112-106.56 106.24 106.56c27.776 27.968 74.048-16 43.968-46.208l-128.192-128.64c-10.88-10.88-33.536-10.624-44.16 0zM457.92 952.064l-128.192-128.832c-29.824-29.952 15.808-74.624 44.16-46.208l106.112 106.624 106.24-106.56c27.776-27.968 74.048 16 43.968 46.208l-128.192 128.64c-10.88 10.88-33.536 10.624-44.16 0zM448 736v-224h-224c-42.432 0-41.344-64 0-64h224v-224c0-42.432 64-42.88 64 0v224h224c43.136 0 40.96 64 0 64h-224v224c0 43.84-64 40.96-64 0z" />
<glyph unicode="&#xe929;" glyph-name="mbri-edit" d="M160 704h384c42.88 0 42.496-64 0-64h-384c-43.84 0-41.472 64 0 64zM841.984 823.68l-512-512.32c-6.4-6.144-10.24-14.464-9.984-23.36v-128c0-16.768 15.232-32 32-32h128c8.32 0.64 16.32 3.2 22.016 9.152l512 512.448c12.288 11.904 12.288 34.112 0 46.080l-128 128c-11.008 11.072-33.024 11.072-44.032 0zM864 755.84l84.032-84.096-482.112-479.744h-81.92v83.328zM160 576h256c41.728 0 43.52-64 0-64h-256c-43.008 0-42.112 64 0 64zM160 832h384c42.88 0 42.496-64 0-64h-384c-43.84 0-41.472 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h512c52.608 0 96 43.392 96 96v128c0 42.432-64 41.408-64 0v-128c0-18.304-13.696-32-32-32h-512c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32h512c18.304 0 32-13.696 32-32v-64c0-42.432 64-42.496 64 0v64c0 52.608-43.392 96-96 96z" />
<glyph unicode="&#xe92a;" glyph-name="mbri-edit2" d="M777.6 951.168l-64.32-64.128c-12.352-11.968-12.352-34.24 0-46.080l192.896-192.64c11.776-11.072 32.384-11.072 44.16 0l64.32 64.192c12.352 11.968 12.352 34.24 0 46.080l-192.896 192.704c-12.992 12.992-33.728 10.368-44.16 0zM799.68 883.008l148.736-148.48-20.16-17.92-148.736 146.368zM650.24 824l-640.256-640c-6.4-6.144-10.24-15.104-9.984-24v-192c0-16.768 15.232-32 32-32h192c8.32 0.64 16.384 3.968 22.080 9.984l640.256 640c12.16 11.904 13.44 32.512 0 46.080l-192.128 192c-10.88 10.88-33.536 10.432-44.032 0zM672.256 755.968l148.032-147.968-610.24-608h-146.048v147.968z" />
<glyph unicode="&#xe92b;" glyph-name="mbri-error" d="M393.984 393.984l74.048-73.984-74.048-72c-29.76-28.928 15.36-74.624 44.032-46.080l73.984 74.176 73.984-74.048c28.16-28.16 73.216 17.6 44.032 46.080l-73.984 71.872 73.984 73.984c28.8 28.8-18.752 71.296-44.032 46.080l-73.984-74.112-73.984 73.984c-24.96 24.96-73.472-16.512-44.032-46.080zM160 576h704c43.136 0 41.728-64 0-64h-704c-41.728 0-43.52 64 0 64zM448 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92c;" glyph-name="mbri-extension" d="M704 934.016l-166.016-166.016c-35.072-35.072-32.832-92.672 1.92-128l164.096-166.016c34.688-35.2 93.12-35.2 128 0l164.032 166.016c34.816 35.328 37.12 92.928 1.92 128l-165.952 166.016c-36.224 36.224-96.128 31.808-128 0zM788.032 889.984l165.952-165.952c10.88-10.88 8.768-27.264-1.92-38.016l-166.144-166.080c-10.688-10.752-25.344-10.624-35.84 0l-166.144 166.144c-10.752 10.688-12.8 27.2-1.92 37.952l165.888 163.968c10.24 10.048 31.552 10.432 40.064 1.92zM608 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM608 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 896c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 832h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92d;" glyph-name="mbri-features" d="M740.48 940.032l-58.88-134.912-141.632-15.488c-24.32-2.56-35.456-41.6-16.512-57.792l104.704-100.288-29.44-144.64c-4.48-24.32 25.408-46.912 46.080-34.688l123.2 73.216 123.2-73.216c20.608-12.16 50.56 10.368 45.952 34.752l-29.44 144.512 104.832 100.288c19.008 16.256 7.872 55.168-16.448 57.856l-141.632 15.36-58.88 135.040c-11.52 26.688-44.16 25.216-55.040 0zM768 847.488l36.8-86.72c4.48-10.624 14.72-18.304 25.728-19.328l88.32-9.6-66.24-63.616c-7.872-7.68-11.52-19.84-9.216-30.848l18.368-90.624-79.040 46.336c-8.96 5.12-20.48 5.12-29.44 0l-79.040-46.336 18.368 90.624c2.304 11.072-1.28 23.168-9.216 30.912l-66.176 63.68 88.32 9.6c10.88 1.024 21.12 8.704 25.6 19.328zM608 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM608 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 384c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 320h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM96 896c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96h256c52.608 0 96 43.392 96 96v256c0 52.608-43.392 96-96 96zM96 832h256c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32h-256c-18.304 0-32 13.696-32 32v256c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92e;" glyph-name="mbri-file" d="M288 320h448c44.8 0 40.32-64 0-64h-448c-42.432 0-42.624 64 0 64zM288 448h448c44.8 0 40.32-64 0-64h-448c-42.432 0-42.624 64 0 64zM288 576h448c44.8 0 40.32-64 0-64h-448c-42.432 0-42.624 64 0 64zM224 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v704c0.192 8.96-3.52 17.92-9.984 24l-192 192c-6.016 5.312-14.080 8.192-22.016 8zM224 896h436.032l171.968-172.032v-691.968c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe92f;" glyph-name="mbri-flag" d="M288 832h584l-100.032-176c-5.568-9.6-5.568-22.4 0-32l100.096-176h-584.064c-41.344 0-42.688-64 0-64h640c22.4 0 39.232 28.544 28.032 48l-120.064 209.92 118.016 208c9.344 19.2-6.656 45.568-27.968 46.080h-638.016c-42.496 0-41.6-64 0-64zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96s96 43.392 96 96v832c0 52.608-43.392 96-96 96zM96 896c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32s-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe930;" glyph-name="mbri-folder" d="M96 896c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 16.768-15.232 32-32 32h-497.92l-120.128 120c-5.952 5.312-14.016 8.192-21.952 8zM96 832h244.032l117.952-118.016c5.76-6.016 13.76-9.6 22.016-9.984h480v-544c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe931;" glyph-name="mbri-gift" d="M64 416v-384c0-52.608 43.392-96 96-96h704c52.608 0 96 43.392 96 96v384c0 42.88-64 41.28-64 0v-384c0-18.304-13.696-32-32-32h-224v416c0 43.136-64 40.64-64 0v-416h-128v416c0 43.52-64 40.64-64 0v-416h-224c-18.304 0-32 13.696-32 32v384c0 41.408-64 42.88-64 0zM313.984 960c-50.944 0-92.416-45.056-107.904-73.984-19.84-36.48-20.032-81.472 0-118.016h-110.080c-52.608 0-96-43.392-96-96v-64c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v64c0 52.608-43.392 96-96 96h-110.080c20.032 36.48 18.944 81.024 0 118.016-17.536 34.752-48 57.856-81.92 67.968-33.792 10.24-71.040 8.32-102.016-13.952-51.2-36.736-87.424-89.984-121.984-132.096-35.392 46.016-77.696 100.992-121.984 132.096-23.488 16.384-49.92 19.968-76.032 19.968zM316.032 896c12.992 0.192 32.384-4.032 43.904-13.568 47.104-39.040 76.352-79.744 102.144-114.432h-140.16c-60.608 0-73.792 56.96-58.112 88 14.208 28.16 36.992 39.68 52.224 40zM708.032 896c27.52 0 45.76-22.080 53.952-40 21.12-46.208-11.52-88-59.968-88h-140.096c28.672 40.128 67.2 84.48 102.528 113.728 11.52 9.472 30.528 14.272 43.52 14.272zM96 704h832c18.304 0 32-13.696 32-32v-64c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v64c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe932;" glyph-name="mbri-github" d="M512 960c-282.368 0-512-229.632-512-512 0-247.168 176.64-452.224 409.984-500.032 17.92-3.392 37.12 11.776 38.016 30.080v259.968c0.448 14.336-10.048 28.352-24 32-101.44 27.968-168 98.176-168 177.984 0 42.752 19.712 84.48 54.016 118.016 6.016 5.632 9.6 13.76 9.984 21.952v98.112l100.032-50.048c6.208-2.816 13.312-3.52 19.968-2.048 44.8 6.592 97.088 6.912 144 0 6.656-1.472 13.76-0.768 20.032 2.048l99.968 49.92v-97.92c0.32-8.32 3.968-16.384 9.984-22.016 34.304-33.536 54.016-75.264 54.016-118.016 0-79.744-66.56-149.952-168-177.92-13.952-3.648-24.448-17.664-24-32v-260.096c0.832-18.24 20.032-33.408 38.016-30.080 233.344 47.936 409.984 253.056 409.984 500.224 0 282.368-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448 0-202.368-136-368.32-320-424v198.080c107.84 39.168 192 119.872 192 225.92 0 56.96-26.56 108.608-64 150.016v137.984c0.832 22.016-26.24 39.68-46.080 30.080l-139.84-68.16c-41.6 8.32-99.84 7.040-140.032 0l-139.968 68.16c-19.84 9.6-46.912-8.064-46.080-30.080v-137.984c-37.44-41.408-64-93.056-64-150.016 0-106.048 84.16-186.752 192-225.92v-38.080c-19.584-10.048-28.928-12.032-38.016-12.032-36.864 0-31.36 84.032-121.984 84.032-41.728 0-41.856-64 0-64 49.28 0 47.616-83.584 112-84.288 15.36-0.128 31.040 0.896 48 6.272v-89.92c-184 55.616-320 221.568-320 423.936 0 247.808 200.192 448 448 448z" />
<glyph unicode="&#xe933;" glyph-name="mbri-globe-2" d="M480 960c-264.704 0-480-215.296-480-480s215.296-480 480-480 480 215.296 480 480-215.296 480-480 480zM480 896c62.72-0.256 115.072-52.736 144-102.016-92.48-33.792-195.2-32.192-288 1.92 32.128 48.512 81.28 100.48 144 100.224zM302.080 854.016c-8.128-10.24-16.64-20.672-24.064-32-5.376 3.008-10.752 6.72-16 9.984 13.056 8.064 25.984 15.36 40 22.016zM657.92 854.016c14.912-7.040 28.288-15.36 42.112-24-5.888-3.712-12.032-6.784-18.048-10.112-7.68 11.968-15.616 23.424-24 34.048zM206.080 790.016c13.44-9.472 27.648-18.112 41.92-25.984-31.68-71.808-52.16-158.144-56-252.032h-32c-42.24 0-41.792-64 0-64h32c3.84-93.888 24.32-180.224 56-252.032-14.848-8.128-29.888-16.128-44.032-25.984-86.016 75.968-139.968 185.856-139.968 310.016 0 124.544 55.296 234.368 142.080 310.016zM753.92 790.016c86.848-75.648 142.080-185.472 142.080-310.016 0-125.12-54.592-236.032-142.080-312-13.888 9.792-27.264 19.84-41.92 28.032 31.744 71.68 52.224 158.080 56 251.968h32c41.856 0 42.496 64 0 64h-32c-3.712 93.12-24.704 178.56-56 249.984 14.72 8.064 28.16 18.368 41.984 28.032zM305.92 737.984c113.024-44.16 237.76-45.952 350.080-1.92 26.88-62.336 44.416-139.328 48-224h-448c3.648 85.76 22.528 163.2 49.92 225.92zM256 448h448c-3.648-85.76-22.528-163.2-49.92-225.92-58.432 22.784-120.064 35.008-182.080 33.92-56.32-1.024-112.64-11.648-166.016-32-26.944 62.464-46.272 138.88-49.984 224zM624 163.968c-36.672-55.168-81.536-100.288-144-99.968s-121.984 55.040-144 100.032c92.8 37.12 199.552 35.84 288 0zM280 137.984c7.872-11.712 15.552-23.424 24-33.92-14.912 6.912-28.16 15.36-41.984 23.936 5.952 3.712 11.84 6.592 17.92 9.984zM681.92 137.984c5.376-2.944 10.88-6.784 16-9.984-13.824-8.64-27.008-17.024-41.92-24 8.64 10.88 17.92 21.888 25.984 33.92z" />
<glyph unicode="&#xe934;" glyph-name="mbri-globe" d="M160 512c21.312 0 18.56-27.072 25.984-38.848 7.488-11.712 19.008-25.152 48-25.152 21.12 0 22.016-20.288 22.016-32 0-32 9.472-59.84 30.080-76.8 20.48-16.96 43.968-19.2 65.92-19.2 17.28 0 32-15.68 32-32v-192c0-43.776 64-40.576 64 0v192c0 32-9.472 60.288-30.080 77.184-20.48 16.896-43.904 18.816-65.92 18.816-18.048 0-32 14.976-32 32 0 29.76-1.92 53.76-20.032 73.152-16.256 15.36-46.208 11.2-57.984 22.848-11.648 11.648-13.44 32.64-25.92 45.184-12.544 12.544-34.304 18.816-56.064 18.816-42.88 0-41.984-64 0-64zM644.032 783.168c13.248-23.040 13.952-36.16 13.952-46.080 0-18.88-81.92-71.424-81.92-128 0-72.448 68.48-79.552 233.984-144 33.28-11.392 20.672-27.008 9.984-29.888-138.88-37.248-180.032-45.44-180.032-115.2 0-33.088-64-18.368-64-96.832 0-61.76 43.136-115.52 73.984-150.016 26.24-29.184 75.392 14.080 44.032 46.080s-50.944 64.896-54.016 103.936c-1.152 14.528 9.28 15.552 14.080 18.048 38.656 20.288 49.728 45.696 49.92 77.888 0 42.496 192 28.416 192 128 0 40.448-24.832 59.072-56.96 71.552-64 24.704-117.12 42.24-177.024 66.56-32.832 11.2-17.792 36.096-9.984 43.904 44.992 45.056 67.968 73.216 67.968 107.072 0 30.464-1.728 47.232-20.032 78.976-23.040 40.32-73.6-1.28-55.936-32zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe935;" glyph-name="mbri-growing-chart" d="M864 512h96v-96c0-42.88 64-42.048 64 0v128c0 16.768-15.232 32-32 32h-128c-43.2 0-42.048-64 0-64zM458.24 438.784c-10.24-10.24-212.48-215.040-318.080-319.68-33.92-33.536 10.24-76.16 43.52-43.072 98.56 97.408 296.32 297.984 296.32 297.984l170.24-173.76c11.52-10.88 32-10.88 43.52 0l193.088 196.288c29.888 30.4-20.032 67.2-43.52 43.2l-171.328-174.72-170.112 173.696c-12.288 12.544-32.32 11.2-43.52 0zM0 928v-960c0-17.728 14.272-32 32-32h960c42.368 0 43.072 64 0 64h-928v928c0 43.328-64 41.6-64 0z" />
<glyph unicode="&#xe936;" glyph-name="mbri-hearth" d="M280 896c-161.728 0-280-139.776-280-320 0-184.96 128.32-327.68 252.032-424 123.648-96.384 247.936-148.032 247.936-148.032 7.68-3.008 16.448-3.008 24 0 0 0 124.352 51.648 248.064 148.032 123.648 96.32 251.968 239.040 251.968 424 0 180.224-118.272 320-280 320-131.968 0-203.712-78.976-232-113.92-28.288 34.816-100.032 113.92-232 113.92zM280 832c124.8 0 206.080-112 206.080-112 11.712-16.448 40.128-16.448 51.84 0 0 0 81.28 112 206.080 112 125.76 0 216-102.592 216-256 0-154.88-111.68-283.392-228.032-374.016-110.080-85.76-208.64-126.976-219.968-131.968-11.392 4.992-109.888 46.208-220.032 131.968-116.288 90.624-227.968 219.136-227.968 374.016 0 153.408 90.24 256 216 256z" />
<glyph unicode="&#xe937;" glyph-name="mbri-help" d="M32 384h64c42.88 0 42.752-64 0-64h-64c-42.368 0-43.008 64 0 64zM32 576h64c42.88 0 42.752-64 0-64h-64c-42.368 0-43.008 64 0 64zM32 768h64c42.88 0 42.752-64 0-64h-64c-42.368 0-43.008 64 0 64zM192 800v-512c0-75.2 57.6-96 128-96v-160c0.96-24.448 36.288-38.848 54.016-22.016l181.952 182.016h372.032c52.608 0 96 43.328 96 96v512c0 52.608-43.392 96-96 96h-640c-57.088 0-96-43.392-96-96zM288 832h640c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-384c-8 0-16-2.688-22.016-8l-137.984-137.92v113.92c0 16.768-15.232 32-32 32-55.936 0-96 0.64-96 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe938;" glyph-name="mbri-home" d="M64 544v-512c0-16.768 15.232-32 32-32h256c16.768 0 32 15.232 32 32v224c0 71.424 56.512 128 128 128s128-56.576 128-128v-224c0-16.768 15.232-32 32-32h256c16.768 0 32 15.232 32 32v512c0 42.24-64 42.496-64 0v-480h-192v192c0 105.728-86.208 192-192 192s-192-86.272-192-192v-192h-192v480c0 42.88-64 39.68-64 0zM400.128 863.872l-383.68-226.752c-36.672-21.76-2.688-77.184 32-56.704l383.552 226.624c62.592 36.928 98.688 36.16 160 0l383.552-226.752c33.792-20.032 69.376 34.56 32 56.64l-383.68 226.944c-73.6 43.52-153.792 41.344-223.744 0z" />
<glyph unicode="&#xe939;" glyph-name="mbri-hot-cup" d="M576 928v-64c0-41.92-64-43.776-64 0v64c0 43.328 64 41.728 64 0zM384 928v-64c0-41.92-64-43.776-64 0v64c0 43.328 64 41.728 64 0zM800 576h32c71.040 0 128-56.96 128-128s-56.96-128-128-128h-32c-42.048 0-41.408-64 0-64h32c105.6 0 192 86.4 192 192s-86.4 192-192 192h-32c-42.24 0-41.472-64 0-64zM160 640h384c42.88 0 42.752-64 0-64h-384c-43.136 0-42.24 64 0 64zM192 928v-64c0-41.92-64-43.776-64 0v64c0 43.328 64 40.192 64 0zM672-64c43.392 0 42.24 64 0 64h-118.016c90.368 63.68 150.016 168.96 150.016 288v448c0 44.48-64 39.872-64 0v-448c0-160.128-127.872-288-288-288s-288 127.872-288 288v448c0 42.432-64 41.792-64 0v-448c0-119.040 59.648-224.32 150.016-288h-118.016c-42.112 0-42.496-64 0-64z" />
<glyph unicode="&#xe93a;" glyph-name="mbri-idea" d="M823.232 804.48l-45.248-45.44c-30.336-30.208 15.36-75.072 45.248-45.184l45.248 45.248c29.632 29.696-14.912 75.648-45.248 45.44zM928 448h-64c-42.88 0-42.24-64 0-64h64c41.856 0 42.88 64 0 64zM96 448h-64c-42.88 0-42.24-64 0-64h64c41.856 0 42.88 64 0 64zM352 0h256c42.048 0 43.136-64 0-64h-256c-41.92 0-43.2 64 0 64zM512 928v-64c0-42.88-64-42.24-64 0v64c0 41.856 64 42.88 64 0zM480 768c-163.008 0-288-161.408-288-352s124.992-352 288-352c163.008 0 288 161.408 288 352s-124.992 352-288 352zM480 704c119.68 0 224-125.12 224-288 0-115.84-52.48-211.84-126.080-257.92 1.28 68.032 4.032 121.088 12.16 155.904 9.216 40.32 20.992 61.12 39.936 80 31.552 31.552-20.288 69.76-44.032 46.080-27.072-27.136-46.72-63.36-57.984-112-11.008-47.872-15.808-110.336-16-196.032-18.048-5.952-45.248-5.12-64 0-0.192 85.76-4.992 148.16-16 195.968-11.2 48.64-30.912 84.928-57.984 112-25.408 25.408-74.24-15.744-44.032-46.080 18.944-18.816 30.72-39.68 40-80 8.128-34.752 10.88-87.808 12.16-155.904-73.664 46.144-126.144 142.144-126.144 257.984 0 162.88 104.32 288 224 288zM136.768 804.48l45.248-45.44c30.336-30.208-15.36-75.072-45.248-45.184l-45.248 45.184c-29.632 29.696 14.912 75.648 45.248 45.44z" />
<glyph unicode="&#xe93b;" glyph-name="mbri-image-gallery" d="M702.72 504.576l-128.256-110.976-76.16 50.432c-12.48 9.088-31.488 7.232-42.048-3.968l-64.192-64.512c-26.24-26.432 17.024-75.648 46.080-46.4l46.080 46.4 74.24-50.432c11.264-7.552 27.52-6.656 37.952 1.92l128.256 110.976 54.080-46.336c30.336-25.728 73.728 23.552 42.048 50.368l-76.16 64.64c-9.984 8.32-32.32 6.4-42.048-2.048zM544 704c-52.672 0-96-43.328-96-96s43.328-96 96-96 96 43.328 96 96-43.328 96-96 96zM544 640c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM211.968 638.080l-160-55.808c-41.792-16.128-62.272-63.616-48-103.808l130.112-363.264c15.872-44.672 65.536-58.88 105.984-46.080l89.984 28.032c40.128 12.48 18.752 74.752-19.968 61.888l-90.048-29.952c-13.44-4.288-23.552 1.28-25.984 8l-128 361.344c-3.84 11.136-2.816 19.712 8.064 23.936l160 53.888c42.752 11.52 15.552 75.008-22.016 61.888zM507.264 889.28c-47.616 19.328-103.040-4.16-122.368-51.84l-186.24-459.712c-19.328-47.68 4.928-101.248 52.608-120.576l459.648-186.24c47.68-19.2 100.48 3.2 119.808 50.752l186.24 459.776c19.328 47.68-2.304 102.4-49.92 121.6l-459.776 186.24zM483.264 829.952l459.776-186.24c15.808-6.4 21.12-22.4 14.72-38.272l-186.24-459.712c-6.4-15.872-20.672-21.888-36.48-15.36l-459.84 186.048c-15.744 6.4-23.68 21.376-17.28 37.248l186.24 459.776c6.4 15.808 23.296 22.912 39.040 16.512z" />
<glyph unicode="&#xe93c;" glyph-name="mbri-image-slider" d="M1024 672v-448c0-41.152-64-43.52-64 0v448c0 42.496 64 42.112 64 0zM352 704c-52.672 0-96-43.328-96-96s43.328-96 96-96 96 43.328 96 96-43.328 96-96 96zM352 640c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM713.984 503.168l-169.984-169.984-105.984 105.984c-11.776 11.136-32.256 11.136-44.032 0l-128-128c-30.72-30.72 16.128-73.856 44.032-46.080l105.984 106.112 105.984-106.048c11.776-11.072 32.256-11.072 44.032 0l192 192c30.080 30.080-17.28 72.768-44.032 46.080zM64 672v-448c0-41.152-64-43.52-64 0v448c0 42.496 64 42.112 64 0zM256 832c-70.4 0-128-58.432-128-128.832v-512c0-70.4 57.6-127.168 128-127.168h512c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM256 768h512c36.032 0 64-27.968 64-64v-512c0-36.032-27.968-64-64-64h-512c-36.032 0-64 27.968-64 64v512c0 36.032 27.968 64 64 64z" />
<glyph unicode="&#xe93d;" glyph-name="mbri-info" d="M480 576c-52.608 0-96-43.392-96-96v-256c0-52.608 43.392-96 96-96s96 43.392 96 96v256c0 52.608-43.392 96-96 96zM480 512c18.304 0 32-13.696 32-32v-256c0-18.304-13.696-32-32-32s-32 13.696-32 32v256c0 18.304 13.696 32 32 32zM480 832c-52.672 0-96-43.328-96-96s43.328-96 96-96 96 43.328 96 96-43.328 96-96 96zM480 768c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32zM480 960c-264.704 0-480-215.296-480-480s215.296-480 480-480 480 215.296 480 480-215.296 480-480 480zM480 896c230.144 0 416-185.856 416-416s-185.856-416-416-416-416 185.856-416 416 185.856 416 416 416z" />
<glyph unicode="&#xe93e;" glyph-name="mbri-italic" d="M549.312 704c-41.088 0-81.536-3.84-119.296-26.048-37.888-22.208-74.688-57.472-105.472-116.352-21.568-40.96 38.72-63.68 55.68-34.048 24 41.984 44.928 67.84 65.6 84.224-9.088-100.288-58.88-251.52-93.44-381.056-19.2-71.488-33.792-135.232-32.448-188.48 0.064-69.76 37.184-106.24 90.176-106.24 48.448 0 88.832 5.248 125.312 28.16 36.48 22.72 67.712 59.2 99.392 116.224 23.040 41.6-37.632 63.040-55.68 32-25.728-43.904-46.336-70.4-65.664-86.144 8.96 100.224 58.88 253.248 93.44 382.976 19.2 71.488 33.6 137.216 33.024 190.528-0.704 68.8-29.696 104.256-90.624 104.256zM576 597.76c0.512-39.040-12.032-102.848-30.72-172.48-36.736-137.792-96.128-302.72-97.408-423.040-51.328-7.040-63.36 5.504-63.872 42.048-0.512 38.912 11.52 100.8 30.080 170.432 36.672 137.152 95.616 300.8 97.472 421.12 55.936 10.688 64-5.12 64.448-38.144zM608 960c-52.672 0-96-43.328-96-96 0-52.608 43.328-96 96-96s96 43.392 96 96c0 52.672-43.328 96-96 96zM608 896c18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32s13.952 32 32 32z" />
<glyph unicode="&#xe93f;" glyph-name="mbri-key" d="M320 704c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM320 960c-176.384 0-320-143.616-320-320 0-176.32 143.616-320 320-320 43.2 0 81.28 14.592 118.016 30.080l339.968-340.096c5.76-6.016 13.76-9.6 22.016-9.984h128c16.768 0 32 15.232 32 32v128c0.192 8.96-3.52 17.92-9.984 24l-64 64c-6.016 5.312-14.080 8.192-22.016 8h-32v32c0.192 8.96-3.52 17.92-9.984 24l-64 64c-6.016 5.312-14.080 8.192-22.016 8h-32v32c0.192 8.96-3.52 17.92-9.984 24l-84.096 84.032c15.232 36.224 30.080 73.28 30.080 115.968 0 176.384-143.616 320-320 320zM320 896c141.76 0 256-114.24 256-256 0-40.832-10.24-76.608-28.032-112-6.4-12.16-3.84-28.416 6.016-38.016l86.016-85.952v-52.032c0-16.768 15.232-32 32-32h52.032l43.968-43.968v-52.032c0-16.768 15.232-32 32-32h52.032l43.968-43.968v-84.032h-81.92l-344.128 344c-9.28 8.96-24.32 11.52-36.032 6.016-35.008-17.536-73.6-30.016-113.92-30.016-141.76 0-256 114.24-256 256s114.24 256 256 256z" />
<glyph unicode="&#xe940;" glyph-name="mbri-laptop" d="M160 896c-52.608 0-96-43.392-96-96v-448c0-43.328 64-40.96 64 0v448c0 18.304 13.696 32 32 32h704c18.304 0 32-13.696 32-32v-448c0-42.368 64-42.112 64 0v448c0 52.608-43.392 96-96 96zM0 224c0-88.064 71.936-160 160-160h704c88.064 0 160 71.936 160 160 0 16.768-15.232 32-32 32h-960c-23.36 0-32-15.552-32-32zM78.080 192h867.84c-13.888-35.52-40.96-64-81.92-64h-704c-40.96 0-68.032 28.48-81.92 64z" />
<glyph unicode="&#xe941;" glyph-name="mbri-layers" d="M928 704c18.304 0 32-13.696 32-32v-640c0-18.304-13.696-32-32-32h-640c-18.304 0-32 13.696-32 32 0 41.984-64 42.496-64 0 0-52.608 43.392-96 96-96h640c52.608 0 96 43.392 96 96v640c0 52.608-43.392 96-96 96-42.88 0-40.96-64 0-64zM96 960c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h640c52.608 0 96 43.392 96 96v640c0 52.608-43.392 96-96 96zM96 896h640c18.304 0 32-13.696 32-32v-640c0-18.304-13.696-32-32-32h-640c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe942;" glyph-name="mbri-left-right" d="M799.872 192h-640c-43.648 0-41.28 64 0 64h640c42.112 0 42.432-64 0-64zM1015.36 246.080l-128 128.128c-29.696 29.76-74.88-15.104-46.080-44.032l106.048-106.24-105.984-106.112c-29.44-29.44 16.256-73.792 46.080-44.032l128 128.192c11.264 11.328 11.328 32.64 0 44.032zM224 640h640c43.648 0 41.28 64 0 64h-640c-42.112 0-42.432-64 0-64zM8.512 694.080l128 128.128c29.696 29.76 74.88-15.104 46.080-44.032l-106.112-106.176 105.984-106.048c29.44-29.44-16.256-73.856-46.080-44.16l-128 128.256c-11.264 11.328-11.328 32.64 0 44.032z" />
<glyph unicode="&#xe943;" glyph-name="mbri-left" d="M456.832 950.4l-448.512-448.192c-11.072-11.776-11.072-32.256 0-44.032l448.512-448.32c30.080-29.952 74.496 15.68 46.080 44.032l-426.496 426.304 426.496 426.176c28.032 28.032-16.64 73.6-46.080 44.16zM992 448h-768c-41.728 0-43.84 64 0 64h768c43.2 0 40.96-64 0-64z" />
<glyph unicode="&#xe944;" glyph-name="mbri-letter" d="M143.68 582.4l292.16-176.768c51.584-31.168 108.8-26.24 152.128 0l292.224 176.768c37.504 22.72 0.832 72.832-32 53.12l-294.272-176.896c-27.648-16.64-58.048-15.616-84.096 0l-294.144 176.896c-32.128 19.328-69.44-30.4-32-53.12zM96 768c-52.608 0-96-43.392-96-96v-448c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v448c0 52.608-43.392 96-96 96zM96 704h832c18.304 0 32-13.696 32-32v-448c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v448c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe945;" glyph-name="mbri-like" d="M608 960c-52.16 0-96-43.392-96-96 0-52.032-13.44-103.68-36.224-145.92-19.456-36.48-39.040-64.128-77.056-86.080-33.92-19.52-2.816-70.272 33.472-52.608 38.144 18.688 74.24 58.24 101.12 108.608 27.008 50.304 42.688 110.72 42.688 176 0 18.304 13.888 32 32 32s32-13.696 32-32c0-111.552-22.592-180.928-58.88-238.080-12.8-18.944 3.072-49.6 25.856-49.92h321.024c18.112 0 32-13.696 32-32s-13.888-32-32-32c-42.24 0-42.24-64 0-64 18.112 0 32-13.696 32-32s-13.888-32-32-32c-41.856 0-42.88-64 0-64 18.112 0 32-13.696 32-32s-13.888-32-32-32c-41.6 0-42.88-64 0-64 18.112 0 32-13.696 32-32s-13.888-32-32-32h-507.712c-47.232 0-48.256-64 0-64h507.712c52.16 0 96 43.392 96 96 0 24.704-11.136 46.912-26.56 64 16.128 17.28 26.56 38.656 26.56 64 0 24.704-11.136 46.912-26.56 64 16.128 17.28 26.56 38.656 26.56 64 0 24.704-11.136 46.912-26.56 64 16.128 17.28 26.56 38.656 26.56 64 0 52.608-43.84 96-96 96h-275.392c27.712 60.416 51.392 128.96 51.392 224 0 52.608-43.84 96-96 96zM96 640c-52.608 0-96-43.392-96-96v-448c0-52.608 43.392-96 96-96h128c52.608 0 96 43.392 96 96v448c0 52.608-43.392 96-96 96zM96 576h128c18.304 0 32-13.696 32-32v-448c0-18.304-13.696-32-32-32h-128c-18.304 0-32 13.696-32 32v448c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe946;" glyph-name="mbri-link" d="M672 640h96c106.88 0 192-85.12 192-192s-85.12-192-192-192h-128c-106.88 0-192 85.12-192 192v32c0 42.88-64 41.6-64 0v-32c0-141.248 114.752-256 256-256h128c141.248 0 256 114.752 256 256s-114.752 256-256 256h-96c-41.856 0-42.432-64 0-64zM256 704c-141.248 0-256-114.752-256-256s114.752-256 256-256h96c42.88 0 41.6 64 0 64h-96c-106.88 0-192 85.12-192 192s85.12 192 192 192h128c106.88 0 192-85.12 192-192v-32c0-43.072 64-41.856 64 0v32c0 141.248-114.752 256-256 256z" />
<glyph unicode="&#xe947;" glyph-name="mbri-lock" d="M480 384c-52.608 0-96-43.392-96-96v-128c0-52.608 43.392-96 96-96s96 43.392 96 96v128c0 52.608-43.392 96-96 96zM480 320c18.304 0 32-13.696 32-32v-128c0-18.304-13.696-32-32-32s-32 13.696-32 32v128c0 18.304 13.696 32 32 32zM480 960c-158.976 0-288-129.024-288-288 0-44.8 64-40.192 64 0 0 124.672 99.328 224 224 224s224-99.328 224-224c0-43.52 64-41.6 64 0 0 158.976-129.024 288-288 288zM288 576c-88.064 0-160-71.936-160-160v-320c0-88.064 71.936-160 160-160h384c88.064 0 160 71.936 160 160v320c0 88.064-71.936 160-160 160zM288 512h384c53.76 0 96-42.24 96-96v-320c0-53.76-42.24-96-96-96h-384c-53.76 0-96 42.24-96 96v320c0 53.76 42.24 96 96 96z" />
<glyph unicode="&#xe948;" glyph-name="mbri-login" d="M437.888 631.936l128.768-128.256c12.352-12.032 12.352-34.304 0-46.208l-128.768-128.32c-28.928-28.8-73.856 17.28-44.16 46.080l106.56 104.32-106.624 106.24c-30.336 30.272 18.432 71.936 44.288 46.080zM352 512h-320c-42.56 0-42.88-64 0-64h320c42.688 0 42.24 64 0 64zM384 960c-70.4 0-128-57.6-128-128v-160c0-42.56 64-42.624 64 0v160c0 36.032 27.968 64 64 64h512c36.032 0 64-27.968 64-64v-704c0-36.032-27.968-64-64-64h-512c-36.032 0-64 27.968-64 64v160c0 42.624-64 41.984-64 0v-160c0-70.4 57.6-128 128-128h512c70.4 0 128 57.6 128 128v704c0 70.4-57.6 128-128 128z" />
<glyph unicode="&#xe949;" glyph-name="mbri-logout" d="M138.048 631.936l-128.768-128.256c-12.352-12.032-12.352-34.304 0-46.208l128.768-128.32c28.928-28.8 73.856 17.28 44.288 46.080l-106.816 104.384 106.688 106.24c30.272 30.272-18.432 71.936-44.352 46.080zM224 512h320c42.56 0 42.88-64 0-64h-320c-42.688 0-42.24 64 0 64zM384 960c-70.4 0-128-57.6-128-128v-160c0-42.56 64-42.624 64 0v160c0 36.032 27.968 64 64 64h512c36.032 0 64-27.968 64-64v-704c0-36.032-27.968-64-64-64h-512c-36.032 0-64 27.968-64 64v160c0 42.624-64 41.984-64 0v-160c0-70.4 57.6-128 128-128h512c70.4 0 128 57.6 128 128v704c0 70.4-57.6 128-128 128z" />
<glyph unicode="&#xe94a;" glyph-name="mbri-magic-stick" d="M992.192 576h-64c-42.24 0-42.624 64 0 64h64c42.112 0 42.752-64 0-64zM640 928v-64c0-42.24-64-42.624-64 0v64c0 42.112 64 42.752 64 0zM868.48 264.96l-45.312 45.184c-29.888 29.888-75.392-15.104-45.248-45.248l45.248-45.312c29.76-29.76 75.52 15.040 45.248 45.248zM240.128 763.136l55.424-32c36.48-21.12 4.864-76.8-32-55.424l-55.488 32c-36.48 20.992-4.992 76.8 32 55.36zM450.432 797.056l15.104-169.856-130.624-96.64c-25.472-18.752-14.72-51.84 9.6-57.152l163.84-36.224 51.2-158.72c8-21.952 42.88-26.24 55.872-6.784l83.648 145.088 165.44 1.152c23.040 1.728 36.864 34.56 22.144 52.736l-109.696 124.16 51.072 162.368c0.448 1.28 0.768 2.56 1.024 3.968 2.752 22.72-24.448 42.88-44.928 33.28l-147.584-67.008-137.152 98.304c-18.048 12.928-51.84 5.568-48.896-28.672zM519.936 731.904l91.264-68.864c8.96-5.76 20.928-6.528 30.528-1.92l103.296 47.36-35.2-110.080c-2.944-10.88 0.256-23.552 8.32-31.552l72.96-82.88-109.76-1.536c-11.84 0.64-23.68-6.528-29.248-17.28l-56.32-95.808-33.92 105.856c-2.944 11.008-11.968 20.16-22.848 23.040l-111.36 24 92.16 67.2c8.64 6.208 13.888 17.024 13.44 27.776l-13.056 114.752zM394.112 375.36l-384.384-384.512c-29.952-29.952 16.256-73.856 44.032-46.080l384.384 384.448c30.4 30.336-16.768 73.28-44.032 46.080z" />
<glyph unicode="&#xe94b;" glyph-name="mbri-map-pin" d="M512 832c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM512 768c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM371.968 372.672c57.28-97.28 116.032-170.368 116.032-170.368 12.544-14.464 38.656-13.44 49.92 2.048 0 0 56.96 72.32 114.112 170.368 57.088 97.984 115.968 219.2 115.968 328.64 0 141.44-115.008 256.64-256 256.64s-256-113.024-256-256c0-113.28 58.752-233.984 115.968-331.328zM512 895.872c106.432 0 192-85.76 192-192.448 0-84.672-53.12-202.624-108.032-296.64-41.984-72.064-66.688-103.104-83.968-126.336-17.152 22.528-41.856 52.672-84.032 124.288-54.72 93.184-107.968 210.56-107.968 298.624 0 106.88 85.568 192.64 192 192.64zM129.472 548.992l-63.552-447.872c-12.992-92.16 71.424-165.952 158.080-165.952h576c84.16 0 171.328 71.488 158.080 165.952l-63.36 447.808c-6.080 43.008-67.52 29.248-61.952-10.048l63.232-447.744c8.128-57.472-53.952-91.968-96-91.968h-576c-55.808 0-102.208 48-96 91.968l63.488 447.744c6.208 43.52-56.128 51.2-62.080 10.048z" />
<glyph unicode="&#xe94c;" glyph-name="mbri-menu" d="M32 192h960c42.112 0 43.008-64 0-64h-960c-42.56 0-42.24 64 0 64zM32 512h960c42.112 0 43.008-64 0-64h-960c-42.56 0-42.24 64 0 64zM32 832h960c42.112 0 43.008-64 0-64h-960c-42.56 0-42.24 64 0 64z" />
<glyph unicode="&#xe94d;" glyph-name="mbri-mobile" d="M480 128h64c42.688 0 42.112-64 0-64h-64c-42.368 0-42.048 64 0 64zM288 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM288 896h448c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe94e;" glyph-name="mbri-mobile2" d="M576 128c0-35.328-28.672-64-64-64s-64 28.672-64 64 28.672 64 64 64 64-28.672 64-64zM480 832h64c43.52 0 41.984-64 0-64h-64c-43.136 0-42.048 64 0 64zM288 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM288 896h448c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe94f;" glyph-name="mbri-mobirise" d="M599.808 704.448c96.384-25.856 168.192-114.816 168.192-224.448 0-109.76-71.808-198.72-168.192-224.64-41.408-11.072-24.128-72.96 16-62.080 124.288 33.28 216.192 148.736 216.192 286.72 0 137.856-91.904 253.248-216.192 286.592-43.072 11.52-54.016-51.968-16-62.080zM841.856 758.976l45.248 45.184c30.72 30.592 75.136-15.488 45.44-45.248l-45.312-45.44c-29.568-29.568-75.264 15.232-45.184 45.312zM576 928v-64c0-43.264 64-42.112 64 0v64c0 41.92-64 42.496-64 0zM928 448h64c43.328 0 42.24 64 0 64h-64c-41.856 0-42.432-64 0-64zM841.856 200.96l45.248-45.184c30.72-30.592 75.136 15.36 45.44 45.248l-45.312 45.248c-29.568 29.632-75.264-15.232-45.184-45.248zM576 96v-64c0-43.264 64-42.112 64 0v64c0 41.92-64 42.496-64 0zM224 192h64c43.264 0 42.24-64 0-64h-64c-41.92 0-42.496 64 0 64zM96 896c-52.608 0-96-43.392-96-96v-704c0-52.672 43.392-96 96-96h320c52.608 0 96 43.328 96 96v704c0 52.608-43.392 96-96 96zM96 832h320c18.304 0 32-13.76 32-32v-704c0-18.304-13.696-32-32-32h-320c-18.304 0-32 13.696-32 32v704c0 18.24 13.696 32 32 32z" />
<glyph unicode="&#xe950;" glyph-name="mbri-more-horizontal" d="M896 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM896 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM128 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM512 576c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM512 512c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64z" />
<glyph unicode="&#xe951;" glyph-name="mbri-more-vertical" d="M640 64c0 70.4-57.6 128-128 128s-128-57.6-128-128 57.6-128 128-128 128 57.6 128 128zM576 64c0-35.712-28.288-64-64-64s-64 28.288-64 64 28.288 64 64 64 64-28.288 64-64zM640 832c0 70.4-57.6 128-128 128s-128-57.6-128-128 57.6-128 128-128 128 57.6 128 128zM576 832c0-35.712-28.288-64-64-64s-64 28.288-64 64 28.288 64 64 64 64-28.288 64-64zM640 448c0 70.4-57.6 128-128 128s-128-57.6-128-128 57.6-128 128-128 128 57.6 128 128zM576 448c0-35.712-28.288-64-64-64s-64 28.288-64 64 28.288 64 64 64 64-28.288 64-64z" />
<glyph unicode="&#xe952;" glyph-name="mbri-music" d="M792.192 766.912l-256.64-64c-21.12-5.248-26.624-23.040-22.080-38.4 4.608-15.36 19.2-28.16 38.208-23.488l256.512 64c41.792 10.368 23.488 71.68-16 61.888zM920 960l-512-128c-13.952-3.584-24.448-17.6-24-32v-585.984c-34.56 25.728-79.68 41.984-128 41.984-102.208 0-192-67.712-192-160s89.792-160 192-160 192 67.712 192 160v680l448 112v-545.92c-34.56 25.6-79.68 41.92-128 41.92-102.208 0-192-67.712-192-160s89.792-160 192-160 192 67.712 192 160v704c0.64 19.84-20.864 36.928-40 32zM768 320c74.56 0 128-46.912 128-96s-53.44-96-128-96-128 46.912-128 96 53.44 96 128 96zM256 192c74.56 0 128-46.912 128-96s-53.44-96-128-96-128 46.912-128 96 53.44 96 128 96z" />
<glyph unicode="&#xe953;" glyph-name="mbri-new-file" d="M224 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v704c0.192 8.96-3.52 17.92-9.984 24l-192 192c-6.016 5.312-14.080 8.192-22.016 8h-448zM224 896h416v-160c0-16.768 15.232-32 32-32h160v-672c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32zM704 851.968l84.032-83.968h-84.032v84.032z" />
<glyph unicode="&#xe954;" glyph-name="mbri-numbered-list" d="M73.984 951.488l-64-64c-30.72-30.72 17.472-72.704 44.032-46.080l9.984 9.984v-115.392c0-43.648 64-40.704 64 0v191.488c0 36.096-39.040 39.040-54.016 24zM352 896h640c43.328 0 41.92-64 0-64h-640c-41.92 0-43.392 64 0 64zM352 512h640c43.328 0 41.92-64 0-64h-640c-41.92 0-43.392 64 0 64zM352 128h640c43.328 0 41.92-64 0-64h-640c-41.92 0-43.392 64 0 64zM96 639.168c-52.608 0-96-43.328-96-96 0-42.496 64-40.064 64 0 0 18.304 13.696 32 32 32s32-13.696 32-32c0-72.128-128-76.8-128-191.168 0-16.768 15.232-32 32-32h128c42.24 0 43.136 64 0 64h-84.032c0.064 24.064 116.032 60.16 116.032 159.168 0 52.672-43.392 96-96 96zM96 256c-52.608 0-96-43.328-96-96 0-44.8 64-41.216 64 0 0 18.048 13.952 32 32 32s32-13.952 32-32c0-18.048-13.952-32-32-32-43.712 0-40.32-64 0-64 18.048 0 32-13.952 32-32s-13.952-32-32-32c-18.048 0-32 13.952-32 32 0 44.928-64 42.048-64 0 0-52.608 43.392-96 96-96s96 43.392 96 96c0 24.704-10.432 46.912-25.984 64 15.552 17.088 25.984 39.296 25.984 64 0 52.672-43.392 96-96 96z" />
<glyph unicode="&#xe955;" glyph-name="mbri-opened-folder" d="M96 896c-52.608 0-96-43.392-96-96v-192c0-40.832 64-42.432 64 0v192c0 18.304 13.696 31.872 32 32h177.92l150.080-180.032c5.76-7.168 14.72-11.712 24-11.968h480c42.368 0 42.88 64 0 64h-464l-152 182.016c-6.080 6.4-15.040 10.24-24 9.984zM159.36 576c-56.32 0-89.728-50.816-96-89.984l-62.080-384c-9.984-60.8 45.12-102.016 93.952-102.016h769.472c57.088 0 89.6 51.584 96.192 92.032l62.080 384c10.368 63.744-43.328 99.968-94.080 99.968zM159.36 512h769.408c20.928 0 33.728-16.192 32-25.984l-64-384c-4.224-25.216-19.456-38.016-32-38.016h-769.536c-21.12 0-34.56 13.44-32.128 28.032l64.128 384c4.288 25.6 18.816 35.968 32 35.968z" />
<glyph unicode="&#xe956;" glyph-name="mbri-pages" d="M352 960c-52.608 0-96-43.392-96-96v-704c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96v576c0.192 8.96-3.52 17.92-9.984 24l-192 192c-6.016 5.312-14.080 8.192-22.016 8h-320zM352 896h288v-160c0-16.768 15.232-32 32-32h160v-544c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v704c0 18.304 13.696 32 32 32zM704 851.968l84.032-83.968h-84.032v84.032zM128 800v-768c0-52.608 43.392-96 96-96h512c42.752 0 41.856 64 0 64h-512c-18.304 0-32 13.696-32 32v768c0 42.88-64 41.28-64 0z" />
<glyph unicode="&#xe957;" glyph-name="mbri-paper-plane" d="M969.984 951.168l-560-560-304.128 150.016 706.176 294.016c41.152 17.152 11.648 72.832-24.064 57.984l-770.112-320c-22.4-9.472-23.68-47.040-2.048-57.984l386.112-192c11.776-5.504 26.88-3.008 36.096 6.016l465.92 465.92-295.936-739.904-97.28 244.736c-15.616 39.424-74.624 12.928-59.968-24l127.168-320.768c9.088-24.32 51.072-24.32 60.16 0l384 960c11.52 28.8-27.84 60.16-52.096 35.968z" />
<glyph unicode="&#xe958;" glyph-name="mbri-paperclip" d="M588.16 889.728l-512-513.024c-101.248-101.44-101.504-263.424 0-364.8 101.376-101.12 264.96-101.376 366.080 0l444.16 444.928c30.72 30.72-16 74.112-43.968 46.080l-446.080-446.848c-77.312-77.44-196.48-77.44-274.112 0-77.44 77.312-77.44 199.040 0 276.48l512 513.152c65.152 65.28 155.52 68.16 224.128 19.712 68.672-48.32 35.84-117.76-14.080-167.936l-548.16-551.040c-28.16-28.288-58.496-25.6-84.032 0-25.6 25.472-24.64 59.392 0 84.096l482.176 482.944c30.72 30.72-16.128 74.112-44.032 46.080l-482.176-484.992c-54.144-54.4-52.032-120.32 0-172.416 52.032-51.968 118.912-53.248 172.16 0l550.144 551.040c96 96.256 90.112 203.2-1.536 268.416-91.712 65.28-226.304 42.496-300.608-31.872z" />
<glyph unicode="&#xe959;" glyph-name="mbri-photo" d="M713.6 503.040l-233.088-235.2-105.6 108.032c-11.712 11.072-32.192 11.072-43.904 0l-127.488-127.104c-33.024-32.896 12.288-77.184 43.84-45.76l105.6 105.344 105.6-108.16c11.712-10.88 32.128-10.88 43.84 0l233.152 235.328 105.6-105.344c30.208-30.208 76.16 13.44 43.84 45.632l-127.552 127.232c-12.416 12.416-32.256 11.52-43.84 0zM352 832c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM352 768c53.376 0 96-42.624 96-96s-42.624-96-96-96-96 42.624-96 96 42.624 96 96 96zM160 128h704c42.88 0 42.496-64 0-64h-704c-42.88 0-41.728 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM96 896h832c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe95a;" glyph-name="mbri-photos" d="M584.96 503.040c-56.192-56.32-168.96-171.136-168.96-171.136l-105.216 107.776c-11.648 10.88-32 10.88-43.712 0l-127.232-127.104c-33.6-33.6 12.16-77.248 43.776-45.632l105.28 105.216 105.344-107.84c11.648-10.88 32-10.88 43.648 0l168.96 171.328 105.344-105.216c29.696-29.632 78.72 10.752 43.712 45.696l-127.104 126.912c-12.16 12.16-32.256 11.52-43.776 0zM256 832c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128zM256 768c35.712 0 64-28.288 64-64s-28.288-64-64-64-64 28.288-64 64 28.288 64 64 64zM128 960c-70.4 0-128-57.6-128-128v-640c0-70.4 57.6-128 128-128h640c70.4 0 128 57.6 128 128v640c0 70.4-57.6 128-128 128zM128 896h640c36.032 0 64-27.968 64-64v-640c0-36.032-27.968-64-64-64h-640c-36.032 0-64 27.968-64 64v640c0 36.032 27.968 64 64 64zM960 736v-672c0-36.032-27.968-64-64-64h-672c-42.112 0-42.688-64 0-64h672c70.4 0 128 57.6 128 128v672c0 43.84-64 40.832-64 0z" />
<glyph unicode="&#xe95b;" glyph-name="mbri-pin" d="M512 768c-106.24 0-192-86.528-192-192s85.76-192 192-192 192 86.528 192 192-85.76 192-192 192zM512 704c71.424 0 128-56.96 128-128s-56.576-128-128-128-128 56.96-128 128c0 71.040 56.576 128 128 128zM512 960c-211.712 0-384-172.288-384-384 0-400.768 366.080-633.984 366.080-633.984 10.432-7.168 25.408-7.168 35.84 0 0 0 366.080 235.904 366.080 633.984 0 211.712-172.288 384-384 384zM512 896c177.088 0 320-142.848 320-320 0-339.712-288.384-542.208-320-564.032-31.808 21.76-320 221.632-320 564.032 0 177.152 142.912 320 320 320z" />
<glyph unicode="&#xe95c;" glyph-name="mbri-play" d="M80 899.2l788.032-444.032c48.192-27.136 32.256-64.896 1.92-81.92l-617.792-349.312c-83.2-46.784-124.16-38.976-124.16 40.064v672c0 40.064-64 42.368-64 0v-672c0-146.176 118.528-152.192 217.984-96l618.048 349.184c80.256 45.44 79.168 149.376 0 193.92l-788.032 444.224c-36.48 20.352-67.392-36.288-32-56.128z" />
<glyph unicode="&#xe95d;" glyph-name="mbri-plus" d="M608 512h320c43.264 0 42.24-64 0-64h-320c-41.856 0-42.688 64 0 64zM512 928v-896c0-43.264-64-42.24-64 0v896c0 41.856 64 42.688 64 0zM32 512h320c43.264 0 42.24-64 0-64h-320c-41.856 0-42.688 64 0 64z" />
<glyph unicode="&#xe95e;" glyph-name="mbri-preview" d="M512 640c-105.6 0-192-86.4-192-192s86.4-192 192-192 192 86.4 192 192-86.4 192-192 192zM512 576c71.040 0 128-56.96 128-128s-56.96-128-128-128c-71.040 0-128 56.96-128 128s56.96 128 128 128zM3.968 465.152c-5.76-10.624-3.072-24.64 2.048-33.92 98.432-179.072 287.36-303.232 505.984-303.232 219.52 0 409.856 124.928 508.032 305.28 5.12 9.408 4.16 24.192 0 32-98.24 180.288-288.64 302.72-508.032 302.72s-410.88-121.792-508.032-302.848zM512 704c189.44 0 352.64-102.4 441.984-254.848-89.344-152.448-252.8-257.152-441.984-257.152-189.248 0-352.64 104.704-441.984 257.152 89.344 152.32 252.544 254.848 441.984 254.848z" />
<glyph unicode="&#xe95f;" glyph-name="mbri-print" d="M256 960c-34.88 0-64-29.12-64-64v-96c0-42.624 64-42.24 64 0v96h512v-96c0-41.6 64-43.136 64 0v96c0 34.88-29.12 64-64 64zM96 704c-52.608 0-96-43.392-96-96v-320c0-52.608 43.392-96 96-96h96v-192c0-34.88 29.12-64 64-64h512c34.88 0 64 29.12 64 64v192h96c52.608 0 96 43.392 96 96v320c0 52.608-43.392 96-96 96zM96 640h832c18.304 0 32-13.696 32-32v-320c0-18.304-13.696-32-32-32h-96v32c0 41.728-64 42.624-64 0v-288h-512v288c0 42.624-64 42.432-64 0v-32h-96c-18.304 0-32 13.696-32 32v320c0 18.304 13.696 32 32 32zM736 576c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32-14.336 32-32 32zM864 576c-17.664 0-32-14.336-32-32s14.336-32 32-32 32 14.336 32 32-14.336 32-32 32zM160 448c-42.624 0-41.216-64 0-64h704c42.112 0 43.072 64 0 64zM352 320c-42.24 0-41.6-64 0-64h320c43.008 0 42.24 64 0 64zM352 192c-42.56 0-41.408-64 0-64h320c43.008 0 41.92 64 0 64z" />
<glyph unicode="&#xe960;" glyph-name="mbri-protect" d="M477.12 400.384l-39.68 38.016c-30.336 28.928-72.832-17.472-43.648-46.080l65.472-64c12.928-12.608 36.864-10.624 47.552 4.032l190.080 256.192c25.984 35.072-26.048 72.128-51.2 38.272zM499.968-61.696c-217.856 82.816-371.968 294.272-371.968 542.336v343.040c0 40.128 0.384 104.32 30.912 124.416 30.592 20.032 59.52 7.68 95.104-8.96 59.712-27.712 131.52-51.712 241.92 15.808 10.24 6.4 21.12 6.656 32 0 110.4-67.456 182.208-43.52 241.92-15.68 35.648 16.64 64.64 28.928 95.168 8.96 30.528-19.84 30.912-84.096 30.912-124.288v-342.912c0-248.064-153.92-459.84-372.032-542.336-10.24-3.84-16.768-2.944-23.936 0zM832 480.896v343.040c0 30.592-1.6 51.2-4.032 63.744-3.648 13.76-22.848-2.88-29.952-5.952-55.040-23.488-156.928-59.52-286.080 11.52-129.152-71.36-231.040-35.328-286.080-11.84-7.040 3.072-26.24 19.712-29.888 5.952-2.432-12.48-4.032-33.152-4.032-63.808v-342.912c0-216.96 132.8-400.192 320-476.416 187.2 76.48 320 259.84 320 476.672z" />
<glyph unicode="&#xe961;" glyph-name="mbri-question" d="M512 160c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM512 767.168c-105.6 0-192-86.4-192-192-0.256-16.896 15.104-32.448 32-32.448s32.256 15.552 32 32.448c0 71.040 56.96 128 128 128s128-56.96 128-128c0-106.752-191.808-112.64-192-288 0-16.896 15.104-32.448 32-32.448s32 15.552 32 32.448c-0.192 134.208 192 137.792 192 288 0 105.6-86.4 192-192 192zM512 960c-283.072 0-512-228.928-512-512s228.928-512 512-512 512 228.928 512 512-228.928 512-512 512zM512 896c248.768 0 448-199.232 448-448s-199.232-448-448-448-448 199.232-448 448 199.232 448 448 448z" />
<glyph unicode="&#xe962;" glyph-name="mbri-quote-left" d="M236.032 64c117.504 0 211.968 101.76 211.968 224 0 95.68-44.672 154.112-78.080 212.032-33.28 57.856-67.84 116.672-49.92 231.232 3.392 20.992-19.456 41.6-40 35.968-181.44-51.968-269.44-226.112-280-385.28-5.248-79.552 11.136-157.824 49.92-217.92 39.040-60.16 103.424-100.032 186.24-100.032zM236.032 128c-62.72 0-103.040 26.944-132.032 72-29.12 45.12-44.48 109.44-40 177.92 8.192 123.52 69.12 250.88 192 307.328-2.368-92.8 28.352-165.76 57.984-217.216 35.968-62.464 70.016-104 70.016-180.032 0-89.856-67.392-160-148.032-160zM812.032 64c117.504 0 211.968 101.76 211.968 224 0 95.68-44.672 154.112-78.080 212.032-33.28 57.856-67.84 116.672-49.92 231.232 3.392 20.992-19.456 41.6-40 35.968-181.376-51.968-269.44-226.112-280-385.28-5.248-79.552 11.136-157.824 49.92-217.92 38.912-60.16 103.36-100.032 186.112-100.032zM812.032 128c-62.72 0-103.040 26.944-132.032 72-29.056 45.056-44.544 109.44-40 177.92 8.192 123.52 68.288 250.88 191.168 307.328-2.368-92.8 29.184-165.76 58.88-217.216 35.776-62.464 69.952-104 69.952-180.032 0-89.856-67.392-160-148.032-160z" />
<glyph unicode="&#xe963;" glyph-name="mbri-quote-right" d="M788.032 832c-117.696 0-212.032-101.76-212.032-224 0-95.68 44.672-154.112 78.080-212.032 33.28-57.856 67.84-116.672 49.92-231.232-3.392-20.992 19.456-41.6 40-35.968 181.376 51.968 269.44 226.112 280 385.28 5.248 79.552-11.136 157.824-49.92 217.984-39.040 60.16-103.424 99.968-186.24 99.968zM788.032 768c62.72 0 102.912-26.944 131.968-72s44.544-109.44 40-177.92c-8.192-123.52-69.12-250.88-192-307.328 2.368 92.8-28.352 165.76-57.984 217.216-35.968 62.464-70.016 104-70.016 180.032 0 89.856 67.392 160 148.032 160zM212.032 832c-117.696 0-212.032-101.76-212.032-224 0-95.68 44.672-154.112 78.080-212.032 33.28-57.856 67.84-116.672 49.92-231.232-3.392-20.992 19.456-41.6 40-35.968 181.44 51.968 269.44 226.112 280 385.28 5.248 79.552-11.136 157.824-49.92 217.984-39.040 60.16-103.424 99.968-186.112 99.968zM212.032 768c62.72 0 102.912-26.944 131.968-72s44.544-109.44 40-177.92c-8.192-123.52-68.288-250.88-191.168-307.328 2.368 92.8-29.184 165.76-58.88 217.216-35.776 62.464-69.952 104-69.952 180.032 0 89.856 67.392 160 148.032 160z" />
<glyph unicode="&#xe964;" glyph-name="mbri-redo" d="M960 672v-160h-160c-40.96 0-43.712-64 0-64h192c16.768 0 32 15.232 32 32v192c0 42.432-64 41.6-64 0zM544 768c-300.16 0-544-243.968-544-544 0-44.8 64-40.128 64 0 0 265.472 214.4 480 480 480 108.992 0 214.592-37.76 300.416-104.96 34.88-27.264 70.912 23.872 38.72 49.792-96.32 77.312-215.616 119.168-339.136 119.168z" />
<glyph unicode="&#xe965;" glyph-name="mbri-refresh" d="M521.6 905.216l106.688-106.24-106.752-104.32c-29.696-28.8 16.64-73.6 44.16-46.080l128.96 128.384c12.352 11.904 12.352 34.176 0 46.080l-128.896 128.32c-28.16 28.16-71.424-19.008-44.16-46.080zM480 832c-165.632 0-416-159.552-416-448 0-247.040 200.96-448 448-448s448 200.96 448 448v32c0 41.856-64 42.048-64 0v-32c0-212.48-171.52-384-384-384s-384 171.52-384 384c0 270.208 235.392 384 352 384 42.56 0 42.24 64 0 64z" />
<glyph unicode="&#xe966;" glyph-name="mbri-responsive" d="M832 160c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM704 768c-70.4 0-128-57.6-128-128v-512c0-70.4 57.6-128 128-128h192c70.4 0 128 57.6 128 128v512c0 70.4-57.6 128-128 128zM704 704h192c36.032 0 64-27.968 64-64v-512c0-36.032-27.968-64-64-64h-192c-36.032 0-64 27.968-64 64v512c0 36.032 27.968 64 64 64zM160 448h320c43.008 0 42.24-64 0-64h-320c-42.624 0-42.496 64 0 64zM96 960c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h288v-128h-96c-42.496 0-41.6-64 0-64h192c41.792 0 42.88 64 0 64h-32v128h32c42.56 0 42.112 64 0 64h-384c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32h832c18.304 0 32-13.696 32-32 0-41.088 64-43.072 64 0 0 52.608-43.392 96-96 96z" />
<glyph unicode="&#xe967;" glyph-name="mbri-right" d="M567.168 950.4l448.512-448.256c11.136-11.776 11.136-32.256 0-44.032l-448.512-448.32c-30.080-29.952-74.624 15.808-46.080 44.032l426.496 426.368-426.496 426.176c-28.032 28.032 16.64 73.6 46.080 44.16zM32 448h768c41.728 0 43.84 64 0 64h-768c-43.2 0-40.96-64 0-64z" />
<glyph unicode="&#xe968;" glyph-name="mbri-rocket" d="M720 937.984c-100.224-30.464-208-104.064-305.92-201.984-51.072-51.008-93.76-104.32-128-158.080-171.52 0-280.128-139.84-280.128-139.84-9.472-12.032-8.576-30.976 1.92-41.984l64-64c32-32 75.52 14.4 44.032 45.952l-40 40c22.4 23.808 80.384 78.528 170.048 92.16-13.056-26.24-23.488-52.8-32-78.080-33.408-99.2-31.488-194.56 27.968-254.080 59.52-59.392 154.88-61.312 254.080-27.904 25.28 8.512 51.84 18.944 78.080 32-13.76-90.24-70.848-148.288-94.080-169.984l-41.984 41.984c-27.968 27.904-74.88-15.104-44.032-46.080l64-64c11.072-10.496 30.080-11.52 42.048-1.92 0 0 139.968 108.608 139.968 280 54.208 34.368 108.48 76.416 160 128 97.92 97.856 168.576 206.656 201.984 305.856s32.512 202.368-27.968 254.080c-81.28 69.12-164.16 55.296-254.080 27.904zM929.92 865.984c34.88-34.752 41.344-102.976 12.16-189.952-29.44-87.040-94.080-188.032-186.112-280-91.904-91.904-193.024-156.672-279.936-185.984-87.040-29.184-155.2-22.72-190.080 12.16-34.752 34.752-41.216 102.912-11.968 189.888 29.44 87.040 94.080 188.16 186.048 280.064s193.408 155.52 280 185.984c72.96 25.6 150.656 27.264 190.080-12.16zM704 768c-70.4 0-128.832-58.56-128.832-128.832 0-70.4 58.496-126.912 128.832-126.912 70.4 0 126.912 56.576 126.912 126.912 0 70.272-56.512 128.832-126.912 128.832zM704 703.552c35.712 0 64.448-28.672 64.448-64.384 0-35.84-28.8-64.448-64.448-64.448-35.712 0-64.448 28.672-64.448 64.448 0 35.712 28.8 64.384 64.448 64.384zM99.584-9.856l-45.248-45.248c-28.16-28.16-73.984 16.512-45.44 45.184l45.44 45.248c30.208 30.272 74.112-16.32 45.184-45.248zM291.584 54.144l-45.248-45.248c-28.16-28.16-73.984 16.512-45.44 45.184l45.44 45.248c30.208 30.272 74.112-16.32 45.184-45.248zM163.584 182.144l-45.248-45.248c-28.16-28.16-73.984 16.512-45.44 45.184l45.44 45.248c30.208 30.272 74.112-16.32 45.184-45.248z" />
<glyph unicode="&#xe969;" glyph-name="mbri-sad-face" d="M384 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM704 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM511.872 320c-70.4 0-141.312-22.912-184.96-76.16-25.28-30.912 25.152-68.224 48.256-40.128 26.048 31.616 80.832 52.096 136.704 52.096 55.936 0 110.4-20.672 136.704-52.096 27.264-32.512 73.152 9.92 48.256 40.128-43.84 53.12-114.56 76.16-184.96 76.16zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe96a;" glyph-name="mbri-sale" d="M288 384h320c42.432 0 42.88-64 0-64h-320c-42.24 0-42.752 64 0 64zM512 224c0-17.664-14.4-32-32-32-17.728 0-32 14.336-32 32s14.272 32 32 32c17.6 0 32-14.336 32-32zM448 480c0-17.664-14.4-32-32-32-17.728 0-32 14.336-32 32s14.272 32 32 32c17.6 0 32-14.336 32-32zM896 768c0-35.328-28.8-64-64-64-35.456 0-64 28.672-64 64s28.544 64 64 64c35.2 0 64-28.672 64-64zM608 960c-45.76 0-88.512-12.608-118.016-40l-462.848-470.848c-35.84-36.48-36.48-97.472 0-133.952l352-352c36.48-36.48 95.36-35.968 132.032 0l470.848 462.72c24.32 24.64 41.984 64.32 41.984 118.080v320c0 52.736-43.264 96-96 96zM608 896h320c16.128 0 32-15.872 32-32v-320c0-39.872-12.928-62.976-22.016-72l-470.784-462.848c-12.608-12.352-31.808-12.16-44.032 0l-352 352c-12.16 12.16-10.368 29.44 1.92 41.984l460.928 470.784c12.8 11.968 41.728 22.080 73.984 22.080z" />
<glyph unicode="&#xe96b;" glyph-name="mbri-save" d="M0 160v-64c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v64c0 42.624-64 41.984-64 0v-64c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v64c0 40.64-64 43.52-64 0zM136.704 456.96l321.28-320.64c11.776-11.136 32.384-11.136 44.16 0l321.28 320.64c25.856 30.4-12.032 70.912-44.16 46.080l-299.264-298.496-299.072 298.496c-28.8 28.8-71.36-18.88-44.16-46.080zM512 928v-576c0-41.6-64-43.136-64 0v576c0 42.752 64 41.92 64 0z" />
<glyph unicode="&#xe96c;" glyph-name="mbri-search" d="M329.472 311.040l-320.384-320c-28.032-28.032 15.232-74.88 44.032-46.080l320.384 320c31.872 31.872-16.448 73.6-44.032 46.080zM671.36 832c-55.040 0-113.28-20.352-151.68-71.168-25.792-34.24 19.84-70.4 42.432-48.96 60.928 70.272 156.352 69.248 218.56 0 22.272-24.768 71.424 13.696 42.432 48.96-40.384 49.28-96.704 71.168-151.744 71.168zM672 960c-194.048 0-352-157.952-352-352s157.952-352 352-352 352 157.952 352 352-157.952 352-352 352zM672 896c159.36 0 288-128.64 288-288s-128.64-288-288-288-288 128.64-288 288 128.64 288 288 288z" />
<glyph unicode="&#xe96d;" glyph-name="mbri-setting" d="M384 864v-56c-11.904-3.968-24.32-8.704-36.032-14.080l-40 40.064c-39.296 39.424-96.128 36.288-133.952 0l-46.016-43.904c-37.76-36.032-34.816-103.168-1.92-136l39.936-42.048c-5.376-12.032-9.984-23.68-14.080-36.032h-55.936c-52.608 0-96-43.328-96-96v-64c0-52.608 43.392-96 96-96h57.984c3.84-10.88 7.168-21.44 12.032-32l-40-41.984c-28.48-29.824-38.912-95.104 1.92-135.936l46.080-46.080c36.992-36.992 96.832-36.992 133.888 0 12.8 12.8 27.52 26.88 40 40.064 11.52-5.504 23.872-9.6 36.032-14.080v-57.92c0-52.608 43.392-96 96-96h64c52.608 0 96 43.392 96 96v58.048c12.16 4.48 24.512 8.448 36.032 14.080 9.6-11.712 27.008-27.136 39.936-40.064 37.12-36.992 96.96-36.992 134.016 0l46.080 46.080c36.608 36.48 37.12 100.736 2.112 135.808-18.88 18.88-40.128 42.112-40.128 42.112 4.864 10.496 8.192 21.12 12.032 32h57.984c52.608 0 96 43.392 96 96v64c0 52.608-43.392 96-96 96h-56c-4.032 12.288-8.64 24-14.080 35.968l40.064 42.048c33.28 34.752 34.304 99.712-1.92 135.936l-46.080 43.968c-43.52 41.792-101.44 32.512-133.888 0l-40.064-39.936c-11.712 5.248-24.064 10.048-35.968 14.080v55.808c-0.064 52.608-43.456 96-96.064 96h-64c-52.8 0-96-43.328-96-96zM544 896c18.304 0 32-13.696 32-32v-78.080c0.448-13.632 10.688-26.496 24-29.888 24.96-7.168 47.808-16.64 68.032-28.032 12.16-6.4 28.416-3.84 37.952 6.016l54.080 53.952c14.4 14.4 33.792 12.16 46.080 0l45.888-44.032c16.448-15.68 8.96-32.64-1.92-43.968l-54.080-56c-9.216-10.048-10.88-26.24-3.968-38.016 11.776-21.12 20.864-44.544 28.032-70.080 3.392-13.248 16.256-23.552 29.952-24h78.080c18.304 0 32-13.696 32-32v-64c0-18.24-13.696-32-32-32h-78.080c-13.184 0-25.792-9.408-29.888-21.952-7.040-24.576-16.384-47.168-28.032-68.032-7.040-11.712-5.248-27.968 4.032-38.016l55.936-56c13.12-13.056 13.12-30.912 0-43.968l-45.952-46.080c-12.544-12.416-31.040-11.328-44.032 0l-54.016 56.064c-10.24 10.24-27.84 11.904-39.936 3.968-21.504-12.032-44.352-21.248-68.032-27.968-13.952-3.648-24.448-17.664-24-32v-78.080c0-18.304-13.696-32-32-32h-64c-18.304 0-32 13.696-32 32v78.080c0.448 14.336-10.048 28.352-24 32-23.68 6.656-46.528 15.872-68.032 27.904-12.16 7.936-29.632 6.208-40-3.968l-53.952-56c-12.992-11.52-31.488-12.544-44.032 0l-46.080 45.952c-12.992 13.056-12.992 30.912 0.128 43.968l55.808 56.256c9.28 10.048 11.008 26.24 4.032 38.016-11.648 20.864-20.992 43.52-28.032 68.032-4.096 12.544-16.64 21.76-29.952 21.952h-78.016c-18.304 0-32 13.76-32 32v64c0 18.304 13.696 32 32 32h78.080c13.632 0.64 26.496 10.688 29.888 24 7.168 25.6 16.256 49.024 28.032 70.016 7.040 11.648 5.248 27.904-4.032 37.952l-53.952 56c-16 16-10.752 35.328-2.112 43.968l46.080 44.032c14.72 14.080 34.88 11.072 45.952 0l54.016-54.016c9.472-9.92 25.792-12.544 37.952-6.080 20.16 11.328 42.88 20.864 67.968 28.032 13.312 3.456 23.552 16.256 24 29.952v78.144c0 18.304 14.080 32 32 32zM512 640c-105.6 0-192-86.4-192-192s86.4-192 192-192 192 86.4 192 192-86.4 192-192 192zM512 576c71.040 0 128-56.96 128-128s-56.96-128-128-128c-71.040 0-128 56.96-128 128s56.96 128 128 128z" />
<glyph unicode="&#xe96e;" glyph-name="mbri-setting2" d="M704 672v64c0 43.136 64 42.048 64 0v-64c0-41.792-64-42.432-64 0zM672 576h128c42.624 0 42.688-64 0-64h-128c-43.328 0-41.6 64 0 64zM768 416v-256c0-43.328-64-41.6-64 0v256c0 43.328 64 40.96 64 0zM512 224v-64c0-43.136-64-42.048-64 0v64c0 41.792 64 42.432 64 0zM544 320h-128c-42.624 0-42.688 64 0 64h128c43.328 0 41.6-64 0-64zM448 480v256c0 43.328 64 41.6 64 0v-256c0-43.328-64-40.96-64 0zM192 672v64c0 43.136 64 42.048 64 0v-64c0-41.792-64-42.432-64 0zM160 576h128c42.624 0 42.688-64 0-64h-128c-43.328 0-41.6 64 0 64zM256 416v-256c0-43.328-64-41.6-64 0v256c0 43.328 64 40.96 64 0zM96 960c-52.608 0-96-43.392-96-96v-832c0-52.608 43.392-96 96-96h768c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96zM96 896h768c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-768c-18.304 0-32 13.696-32 32v832c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe96f;" glyph-name="mbri-setting3" d="M320 960c-33.28 0-64.384-5.76-92.032-14.080-21.12-6.656-28.352-38.784-11.968-53.952l137.92-137.984c41.152-40.96 41.152-104.832 0-145.92-40.96-41.088-106.88-41.088-147.84 0l-138.24 137.92c-15.744 14.336-45.44 6.4-51.968-13.952-8.192-27.648-15.872-58.752-15.872-92.032 0-176.32 143.68-320 320-320 26.432 0 50.688 6.016 73.984 12.032l358.016-358.016c47.616-47.616 124.416-47.616 172.032 0l64 64c47.552 47.616 47.552 126.4 0 174.080l-358.080 357.824c5.376 23.104 10.048 45.504 10.048 70.080 0 176.32-143.68 320-320 320zM576 640c0-25.472-3.072-48.64-9.984-72-3.392-11.072-0.192-23.808 8-32l369.92-369.92c23.424-23.488 23.36-58.688 0-82.112l-64-64c-23.424-23.36-60.608-23.36-84.032 0l-369.92 370.048c-8.192 8.192-20.992 11.392-32 8-24.832-7.616-48.896-14.016-73.984-14.016-144.32 0-266.88 121.088-254.080 273.92l96-96c65.408-65.28 170.752-65.28 236.16 0 65.28 65.408 65.28 172.8 0 238.080l-94.080 94.080c148.288 16.96 272-111.744 272-254.080z" />
<glyph unicode="&#xe970;" glyph-name="mbri-share" d="M704 864v-102.016c-87.040-6.144-155.328-29.44-196.032-75.968-43.904-50.368-58.624-136-59.968-206.080 0-43.072 64-41.344 64 0 0 9.216 19.84 34.56 36.032 44.032 27.2 21.888 78.592 42.048 155.968 48v-91.968c-0.768-24.32 33.024-41.216 52.032-25.984l256 192c16.384 11.776 16.384 40.192 0 51.968l-256 192c-18.944 14.208-52.032-0.64-52.032-25.984zM768 800l169.984-128-169.984-128v64c0 16.768-15.232 32-32 32-92.16 0-162.88-34.304-207.104-61.12 0 25.6 16 52.48 27.136 65.088 31.744 36.544 85.632 60.032 179.968 60.032 16.768 0 32 15.232 32 32zM96 704c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v384c0 42.624-64 42.432-64 0v-384c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32h256c42.688 0 42.112 64 0 64z" />
<glyph unicode="&#xe971;" glyph-name="mbri-shopping-bag" d="M416 704h192c43.264 0 41.92-64 0-64h-192c-42.24 0-42.368 64 0 64zM160 704c-52.864 0.192-90.688-44.032-96-91.968l-64-576c-6.272-56.512 43.264-100.032 96-100.032h832c52.736 0 102.272 43.52 96 100.032l-64 576c-5.312 48-43.392 91.776-96 91.968-41.152 0-42.688-64 0-64 18.304 0 29.44-11.52 32-33.92l64-576c1.536-14.080-13.824-30.080-32-30.080h-832c-18.176 0-33.536 16-32 30.080l64 576c2.56 22.4 13.952 33.92 32 33.92 41.088 0 43.712 64 0 64zM512 960c-141.248 0-256-114.752-256-256v-96c0-42.432 64-40 64 0v96c0 106.88 85.12 192 192 192s192-85.12 192-192v-96c0-44.16 64-38.912 64 0v96c0 141.248-114.752 256-256 256z" />
<glyph unicode="&#xe972;" glyph-name="mbri-shopping-basket" d="M704 480v-256c0-42.048-64-42.048-64 0v256c0 40.96 64 43.84 64 0zM512 480v-256c0-42.048-64-42.048-64 0v256c0 40.96 64 43.84 64 0zM693.888 951.424l129.28-128.384c27.52-27.264-15.36-74.88-44.416-46.080l-129.28 128.32c-29.44 29.248 16.896 73.472 44.416 46.080zM320 480v-256c0-42.048-64-42.048-64 0v256c0 40.96 64 43.84 64 0zM266.112 951.424l-129.28-128.384c-27.52-27.264 15.36-74.88 44.416-46.080l129.28 128.32c29.44 29.248-16.896 73.472-44.416 46.080zM96 704c-70.656 0-104.192-49.152-94.272-102.016l95.808-512c11.008-58.752 46.72-89.984 94.464-89.984h576c61.184 0 84.8 40.064 94.080 89.984l95.872 512c13.12 70.016-37.12 102.016-93.952 102.016zM96 640h768c21.888 0 33.728-17.28 32-25.984l-95.744-512c-4.608-24.576-19.456-38.016-32.256-38.016h-576c-22.016 0-29.888 23.808-32.64 38.016l-95.744 512c-4.096 21.504 20.48 25.984 32.384 25.984z" />
<glyph unicode="&#xe973;" glyph-name="mbri-shopping-cart" d="M416 448h384c43.648 0 41.344-64 0-64h-384c-43.776 0-41.6 64 0 64zM32 768h96c24.576 0 31.36-39.424 37.312-70.784l64-336c23.488-87.68 79.808-105.216 154.688-105.216h384c94.080 0 162.176 11.776 186.88 95.168l60.032 201.984c29.696 97.92-11.52 150.848-103.936 150.848h-558.976c-42.24 0-42.24-64 0-64h558.976c59.84 0 55.040-24.832 41.984-68.8l-57.984-198.016c-16-54.528-76.8-53.12-126.976-53.12h-384c-57.6-3.072-78.4 9.152-90.752 55.168l-64 334.080c-14.016 73.024-28.736 122.688-101.248 122.688h-96c-42.24 0-43.008-64 0-64zM352 576h512c42.56 0 42.368-64 0-64h-512c-41.6 0-42.56 64 0 64zM736 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM736 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32zM352 192c-52.736 0-96-43.264-96-96s43.264-96 96-96 96 43.264 96 96-43.264 96-96 96zM352 128c18.112 0 32-13.888 32-32s-13.888-32-32-32c-18.112 0-32 13.888-32 32s13.888 32 32 32z" />
<glyph unicode="&#xe974;" glyph-name="mbri-sites" d="M416 320h448c43.52 0 40.96-64 0-64h-448c-41.6 0-43.136 64 0 64zM416 448h448c43.52 0 40.96-64 0-64h-448c-41.6 0-43.136 64 0 64zM192 448c-34.88 0-64-29.12-64-64v-64c0-34.88 29.12-64 64-64h64c34.88 0 64 29.12 64 64v64c0 34.88-29.12 64-64 64zM192 384h64v-64h-64zM160 576h704c43.52 0 40.96-64 0-64h-704c-41.6 0-43.136 64 0 64zM448 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM192 672c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe975;" glyph-name="mbri-smile-face" d="M384 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM704 608v-64c0-42.624-64-42.496-64 0v64c0 41.6 64 43.52 64 0zM512 192c-70.4 0-141.312 22.912-184.96 76.16-25.28 30.912 25.152 68.224 48.256 40.128 25.984-31.616 80.768-52.288 136.704-52.288s110.4 20.864 136.704 52.288c27.264 32.512 73.152-9.92 48.256-40.128-43.84-53.12-114.56-76.16-184.96-76.16zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe976;" glyph-name="mbri-speed" d="M416 896h198.016c32.768 0 28.032-32.64 22.016-56l-58.048-224c-4.736-18.56 10.88-39.424 30.080-40h121.984c58.56 0 35.712-41.6 8-75.968l-338.048-420.032 48 332.032c2.24 17.92-13.824 36.096-32 35.968h-128c-38.4 0-35.2 39.168-30.080 68.032l61.312 344c7.296 40.96-57.152 49.472-64 9.984l-59.2-342.016c-16.96-97.536 33.28-144 91.968-144h89.984l-57.984-409.984c-5.568-33.024 34.56-51.456 56-25.984l409.984 509.952c85.568 106.368 43.904 182.016-55.936 182.016h-80l48 184c21.184 81.28-20.032 136-84.032 136h-198.016c-40.32 0-43.648-64 0-64z" />
<glyph unicode="&#xe977;" glyph-name="mbri-star" d="M437.504 906.048c-36.992-59.52-64.64-119.040-93.952-179.84-21.12-44.032-37.76-49.6-75.904-57.856-66.56-14.4-130.56-24.32-193.92-39.936-35.84-8.96-66.432-37.568-70.848-54.016-4.48-16.384-4.032-37.12 3.008-49.92 40.832-75.2 100.864-130.88 157.824-189.76 32.96-33.92 32.192-56.32 27.968-93.824-7.872-70.144-18.176-136.96-23.936-203.776-3.2-37.952 5.568-68.224 28.032-87.872 24.192-21.12 61.12-13.184 89.92-1.92 64 24.832 120.96 57.408 179.84 87.808 34.24 17.6 51.648 19.008 91.904 0 62.208-29.44 119.488-60.8 179.84-87.936 34.048-15.36 68.8-13.568 93.44 4.864 24.704 18.432 24.96 53.312 24.448 85.12-1.088 70.72-13.76 135.68-24 203.648-7.168 47.616 3.008 66.176 27.968 93.888 46.912 52.096 93.568 100.16 135.872 151.872 23.040 28.16 34.944 52.48 25.984 85.888-8.96 33.28-42.56 46.272-71.936 55.936-64.832 21.248-128.96 28.416-193.92 39.872-47.68 8.448-57.984 23.488-75.904 57.92-32.256 62.080-60.16 125.184-93.888 179.84-19.776 32-39.616 53.952-73.984 53.952-34.176 0-57.856-28.16-73.856-53.952zM523.456 866.112c35.648-57.28 64.32-115.584 91.84-173.824 29.888-63.36 67.2-83.84 125.888-95.872 63.808-13.12 122.112-21.888 183.872-38.016 21.76-5.76 20.224-16.128 9.984-29.952-39.552-53.44-85.376-98.368-129.92-143.808-48.512-49.664-55.808-95.36-47.872-153.728 9.28-68.672 18.56-125.312 25.984-195.84 2.176-20.8-5.888-24.96-22.016-17.92-57.984 25.728-120.128 55.68-171.84 83.84-55.232 30.080-90.688 31.744-155.968 0-60.16-29.184-109.824-55.040-171.84-83.84-16-7.424-23.68-2.24-21.952 17.92 5.568 65.28 15.36 136.128 25.984 195.84 12.288 68.288-8.32 109.312-48 153.792-44.544 50.176-85.952 95.168-129.792 143.872-22.144 24.576 3.52 27.712 9.984 29.952 60.672 20.992 123.008 28.352 183.808 37.952 69.12 10.88 98.048 43.008 125.952 95.808 31.808 60.352 57.344 115.84 91.904 173.824 9.6 16 15.872 12.992 24 0z" />
<glyph unicode="&#xe978;" glyph-name="mbri-success" d="M501.888 201.28c-28.928-28.8-73.92 16.192-44.032 46.080l512.448 511.616c28.48 28.288 73.6-16.64 44.16-46.080zM330.112 137.28c28.928-28.8 73.92 16.192 44.16 46.080l-320.704 319.552c-28.224 28.288-73.408-16.512-43.968-45.952z" />
<glyph unicode="&#xe979;" glyph-name="mbri-sun" d="M137.984 776.832l45.248-45.248c30.848-30.72 74.24 16.32 45.248 45.312l-45.248 45.248c-30.080 30.080-75.52-15.040-45.248-45.248zM731.904 776.832l45.312 45.248c30.848 30.848 74.24-16.32 45.248-45.248l-45.184-45.248c-30.080-30.080-75.52 15.040-45.248 45.312zM137.984 183.36l45.248 45.248c30.848 30.72 74.24-16.32 45.248-45.248l-45.248-45.312c-30.080-30.080-75.52 15.040-45.248 45.312zM864 512h64c43.52 0 40.96-64 0-64h-64c-42.624 0-42.752 64 0 64zM32 512h64c43.52 0 40.96-64 0-64h-64c-42.624 0-42.752 64 0 64zM512 96v-64c0-43.52-64-40.96-64 0v64c0 42.624 64 42.752 64 0zM512 928v-64c0-43.52-64-40.96-64 0v64c0 42.624 64 42.752 64 0zM480 768c-158.72 0-288-129.28-288-288s129.28-288 288-288 288 129.28 288 288-129.28 288-288 288zM480 704c124.16 0 224-99.84 224-224s-99.84-224-224-224-224 99.84-224 224 99.84 224 224 224zM731.968 183.488l45.248-45.312c30.848-30.848 74.24 16.256 45.248 45.248l-45.184 45.248c-30.080 30.080-75.52-15.040-45.248-45.248z" />
<glyph unicode="&#xe97a;" glyph-name="mbri-sun2" d="M310.016 264.96l-127.104-126.912c-30.912-30.72-74.432 16.32-45.312 45.184l127.040 126.848c30.208 30.080 75.648-15.040 45.44-45.184zM649.984 264.96l127.104-126.912c30.912-30.72 74.432 16.32 45.312 45.184l-127.040 126.848c-30.208 30.080-75.648-15.040-45.44-45.184zM310.016 695.040l-127.104 126.976c-30.912 30.72-74.432-16.32-45.312-45.184l127.040-126.848c30.208-30.080 75.648 15.040 45.44 45.184zM649.984 695.040l127.104 126.912c30.912 30.72 74.432-16.32 45.312-45.184l-127.040-126.848c-30.208-30.080-75.648 15.040-45.44 45.184zM480 640c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM480 576c53.376 0 96-42.624 96-96s-42.624-96-96-96-96 42.624-96 96 42.624 96 96 96zM736 512h192c43.52 0 40.96-64 0-64h-192c-42.624 0-42.752 64 0 64zM32 512h192c43.52 0 40.96-64 0-64h-192c-42.624 0-42.752 64 0 64zM512 224v-192c0-43.52-64-40.96-64 0v192c0 42.624 64 42.752 64 0zM512 928v-192c0-43.52-64-40.96-64 0v192c0 42.624 64 42.752 64 0z" />
<glyph unicode="&#xe97b;" glyph-name="mbri-tablet-vertical" d="M480 128h64c43.264 0 41.92-64 0-64h-64c-42.88 0-42.688 64 0 64zM288 256h448c43.264 0 41.92-64 0-64h-448c-41.728 0-43.008 64 0 64zM128 32c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v832c0 52.608-43.392 96-96 96h-576c-52.608 0-96-43.392-96-96v-832zM192 32v832c0 18.304 13.696 32 32 32h576c18.304 0 32-13.696 32-32v-832c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32z" />
<glyph unicode="&#xe97c;" glyph-name="mbri-tablet" d="M192 480v-64c0-43.264-64-41.92-64 0v64c0 42.88 64 42.688 64 0zM320 672v-448c0-43.264-64-41.92-64 0v448c0 41.728 64 43.008 64 0zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v576c0 52.608-43.392 96-96 96h-832zM96 768h832c18.304 0 32-13.696 32-32v-576c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe97d;" glyph-name="mbri-target" d="M480 640c-88 0-160-72-160-160s72-160 160-160 160 72 160 160-72 160-160 160zM480 576c53.376 0 96-42.624 96-96s-42.624-96-96-96-96 42.624-96 96 42.624 96 96 96zM448 928v-33.92c-203.328-16-366.080-178.752-382.080-382.080h-33.92c-40.64 0-43.136-64 0-64h33.92c14.912-204.416 177.92-366.208 382.080-382.080v-33.92c0-41.728 64-42.432 64 0v33.92c204.16 15.872 367.168 177.664 382.080 382.080h33.92c41.728 0 42.432 64 0 64h-33.92c-16 203.392-178.816 366.080-382.080 382.080v33.92c0 41.472-64 42.88-64 0zM448 830.080v-30.080c0-41.728 64-42.432 64 0v30.080c168.512-15.36 301.888-149.824 318.080-318.080h-30.080c-40.64 0-43.136-64 0-64h30.080c-14.464-169.92-148.288-302.848-318.080-318.080v30.080c0 40.64-64 43.136-64 0v-30.080c-169.792 15.36-303.616 148.224-318.080 318.080h30.080c41.728 0 42.432 64 0 64h-30.080c15.68 168.96 158.336 305.28 318.080 318.080z" />
<glyph unicode="&#xe97e;" glyph-name="mbri-timer" d="M512 608v-192c0-43.328-64-42.24-64 0v192c0 42.048 64 42.88 64 0zM416 960c-41.728 0-42.56-64 0-64h32v-96c0.192-16 11.136-32 32-32 194.752 0 352-157.248 352-352s-157.248-352-352-352-352 157.248-352 352c0 100.16 42.368 196.096 116.032 264 32.192 29.76-9.472 77.184-42.048 48-88.064-79.040-137.984-193.6-137.984-312 0-229.376 186.624-416 416-416s416 186.624 416 416c0 218.432-169.6 397.312-384 414.080v65.92h32c40.96 0 43.84 64 0 64z" />
<glyph unicode="&#xe97f;" glyph-name="mbri-to-ftp" d="M192 416c0-42.752 64-42.368 64 0v96h32c42.048 0 42.88 64 0 64h-32v64h96c43.264 0 41.92 64 0 64h-128c-17.728 0-32-14.272-32-32zM480 704c-42.56 0-41.92-64 0-64h32v-224c0-42.24 63.872-42.688 64 0v224h32c42.56 0 42.368 64 0 64zM704 416c0-41.856 64-43.136 64 0v96h32c52.608 0 96 43.392 96 96s-43.392 96-96 96h-64c-20.608 0-32-12.608-32-32zM768 640h32c18.304 0 32-13.696 32-32s-13.696-32-32-32h-32zM96 960c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h192c42.432 0 42.88 64 0 64h-192c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32h244.032l117.952-118.016c5.76-6.016 13.76-9.6 22.016-9.984h480v-544c0-18.304-13.696-32-32-32h-128c-41.6 0-42.752-64 0-64h128c52.608 0 96 43.392 96 96v576c0 16.768-15.232 32-32 32h-497.92l-120.128 120c-5.952 5.312-14.016 8.192-21.952 8zM521.92 311.296l-128.32-128.256c-29.44-29.44 16-74.24 44.16-46.080l106.24 106.24 106.24-106.24c28.16-28.16 73.792 16.384 44.16 46.080l-128.384 128.256c-10.88 10.88-31.744 12.352-44.16 0zM576-32v128c0 41.6-64 42.752-64 0v-128c0-43.008 64-42.112 64 0z" />
<glyph unicode="&#xe980;" glyph-name="mbri-to-local-drive" d="M96 960c-52.608 0-96-43.392-96-96v-640c0-52.608 43.392-96 96-96h192c42.432 0 42.88 64 0 64h-192c-18.304 0-32 13.696-32 32v640c0 18.304 13.696 32 32 32h244.032l117.952-118.016c5.76-6.016 13.76-9.6 22.016-9.984h480v-544c0-18.304-13.696-32-32-32h-128c-41.6 0-42.752-64 0-64h128c52.608 0 96 43.392 96 96v576c0 16.768-15.232 32-32 32h-497.92l-120.128 120c-5.952 5.312-14.016 8.192-21.952 8zM521.92 311.296l-128.32-128.256c-29.44-29.44 16-74.24 44.16-46.080l106.24 106.24 106.24-106.24c28.16-28.16 73.792 16.384 44.16 46.080l-128.384 128.256c-10.88 10.88-31.744 12.352-44.16 0zM576-32v128c0 41.6-64 42.752-64 0v-128c0-43.008 64-42.112 64 0z" />
<glyph unicode="&#xe981;" glyph-name="mbri-touch-swipe" d="M352 832h96v-96c0-44.032 64-41.088 64 0v96c0 34.88-29.12 64-64 64h-96c-43.136 0-42.496-64 0-64zM160 384h-96v96c0 44.032-64 41.088-64 0v-96c0-34.88 29.12-64 64-64h96c43.136 0 42.496 64 0 64zM642.24 699.2c-64.128 20.8-119.36-23.36-125.76-64.192-43.968 13.888-95.104-7.040-116.864-48.832l-91.52 89.664c-41.344 39.424-107.136 39.040-148.096-1.92-41.472-41.6-41.472-108.544 0-150.016l337.92-331.904h-81.92c-52.608 0-96-43.328-96-96 0-52.608 43.392-96 96-96h384c43.52 0 41.728 64 0 64h-384c-18.304 0-32 13.76-32 32 0 18.304 13.696 32 32 32h160c24.448 0.96 38.784 36.288 22.016 54.016l-393.984 385.92c-16.64 16.64-16.64 45.44 0 62.080 17.024 17.088 41.984 15.36 59.968-1.92l132.032-127.872c18.176-17.28 52.48-2.176 51.968 22.912-1.088 54.4 47.616 61.568 80 38.848 20.032-13.952 54.080 5.952 49.92 30.080-10.112 60.544 46.848 59.008 76.16 30.080 22.848-22.848 59.648 5.248 49.28 38.72-11.52 37.44 45.696 56.96 70.656 31.232l195.968-202.048c29.568-30.464 73.92 13.184 44.032 44.032l-196.096 201.92c-19.456 20.16-43.52 31.744-73.792 32-47.488 0.64-92.8-24.832-101.888-68.8z" />
<glyph unicode="&#xe982;" glyph-name="mbri-touch" d="M448 736c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM320 800c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM128 736c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM64 544c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM128 416c0-17.664-14.336-32-32-32s-32 14.336-32 32 14.336 32 32 32 32-14.336 32-32zM642.24 699.2c-64.128 20.8-119.36-23.36-125.76-64.192-43.968 13.888-95.104-7.040-116.864-48.832l-91.52 89.664c-41.344 39.424-107.136 39.040-148.096-1.92-41.472-41.6-41.472-108.544 0-150.016l337.92-331.904h-81.92c-52.608 0-96-43.328-96-96 0-52.608 43.392-96 96-96h384c43.52 0 41.728 64 0 64h-384c-18.304 0-32 13.76-32 32 0 18.304 13.696 32 32 32h160c24.448 0.96 38.784 36.288 22.016 54.016l-393.984 385.92c-16.64 16.64-16.64 45.44 0 62.080 17.024 17.088 41.984 15.36 59.968-1.92l132.032-127.872c18.176-17.28 52.48-2.176 51.968 22.912-1.088 54.4 47.616 61.568 80 38.848 20.032-13.952 54.080 5.952 49.92 30.080-10.112 60.608 46.848 59.008 76.16 30.080 22.848-22.848 59.648 5.248 49.28 38.72-11.52 37.44 45.696 56.96 70.656 31.232l195.968-202.048c29.568-30.464 73.92 13.248 44.032 44.032l-196.096 201.92c-19.456 20.16-43.52 31.744-73.792 32-47.488 0.64-92.8-24.832-101.888-68.8z" />
<glyph unicode="&#xe983;" glyph-name="mbri-trash" d="M703.616 539.776l-63.616-448.64c-6.144-43.328-69.44-30.848-63.616 9.984l63.616 448.64c5.632 40 69.632 32.384 63.616-9.984zM320.384 539.776l63.616-448.64c6.144-43.328 69.44-30.848 63.616 9.984l-63.616 448.64c-5.632 40-69.632 32.384-63.616-9.984zM225.28 704c-70.848 0-104.768-46.72-95.872-99.968l95.872-576c10.112-60.928 45.952-92.032 95.872-92.032h383.488c61.12 0 85.504 41.856 93.888 92.032l95.872 576c11.392 68.352-39.232 99.968-93.888 99.968zM225.28 640h575.232c20.864 0 33.28-17.6 32-25.984l-96-576c-4.16-25.344-19.2-38.016-31.872-38.016h-383.488c-23.68 0-31.552 23.296-33.92 38.016l-96 576c-3.328 20.672 22.016 25.984 34.048 25.984zM384 960c-34.88 0-64-29.12-64-64v-64h-160c-43.136 0-41.984-64 0-64h704c43.136 0 41.984 64 0 64h-160v64c0 34.88-29.12 64-64 64zM384 896h256v-64h-256z" />
<glyph unicode="&#xe984;" glyph-name="mbri-underline" d="M128 928v-384c0-194.432 157.568-352 352-352s352 157.568 352 352v384c0 16.768-15.232 32-32 32h-128c-16.768 0-32-15.232-32-32v-377.984c0-92.8-71.296-166.016-160-166.016s-160 73.28-160 166.016v377.984c0 16.768-15.232 32-32 32h-128c-17.6 0-32-17.024-32-32zM192 896h64v-345.984c0-126.080 99.968-230.016 224-230.016s224 103.872 224 230.016v345.984h64v-352c0-160.128-127.872-288-288-288s-288 127.872-288 288zM192 128c-34.88 0-64-29.12-64-64v-64c0-34.88 29.12-64 64-64h576c34.88 0 64 29.12 64 64v64c0 34.88-29.12 64-64 64zM192 64h576v-64h-576z" />
<glyph unicode="&#xe985;" glyph-name="mbri-undo" d="M64 672v-160h160c40.96 0 43.712-64 0-64h-192c-16.768 0-32 15.232-32 32v192c0 42.432 63.68 41.6 64 0zM480 768c300.16 0 544-243.968 544-544 0-44.8-64-40.128-64 0 0 265.472-214.4 480-480 480-108.992 0-214.592-37.76-300.416-104.96-34.88-27.264-70.912 23.872-38.72 49.792 96.32 77.312 215.616 119.168 339.136 119.168z" />
<glyph unicode="&#xe986;" glyph-name="mbri-unlink" d="M639.040 38.592l-31.36 129.152c-10.24 42.24-72 24.064-62.72-14.080l31.36-129.152c10.368-42.624 72-24.064 62.72 14.080zM384.96 38.592l31.36 129.152c10.24 42.24 72 24.064 62.72-14.080l-31.36-129.152c-10.368-42.624-72-24.064-62.72 14.080zM639.040 921.408l-31.36-129.152c-10.24-42.24-72-24.064-62.72 14.080l31.36 129.152c10.368 42.624 72 24.064 62.72-14.080zM384.96 921.408l31.36-129.152c10.24-42.24 72-24.064 62.72 14.080l-31.36 129.152c-10.368 42.624-72 24.064-62.72-14.080zM736 768c158.976 0 288-129.024 288-288s-129.024-288-288-288h-64c-42.432 0-42.496 64 0 64h64c124.672 0 224 99.328 224 224s-99.328 224-224 224h-64c-42.048 0-41.408 64 0 64zM288 768c-158.976 0-288-129.024-288-288s129.024-288 288-288h64c42.432 0 42.496 64 0 64h-64c-124.672 0-224 99.328-224 224s99.328 224 224 224h64c42.048 0 41.408 64 0 64z" />
<glyph unicode="&#xe987;" glyph-name="mbri-unlock" d="M512 672c0-42.048 64-41.6 64-0.832 0 146.368 84.864 224.832 192 224.832s192-77.632 192-224c0-42.368 64-40.32 64 0 0 173.12-115.712 288-256 288s-256-114.816-256-288zM352 384c-52.608 0-96-43.392-96-96v-128c0-52.608 43.392-96 96-96s96 43.392 96 96v128c0 52.608-43.392 96-96 96zM352 320c18.304 0 32-13.696 32-32v-128c0-18.304-13.696-32-32-32s-32 13.696-32 32v128c0 18.304 13.696 32 32 32zM160 576c-88.064 0-160-71.936-160-160v-320c0-88.064 71.936-160 160-160h384c88.064 0 160 71.936 160 160v320c0 88.064-71.936 160-160 160zM160 512h384c53.76 0 96-42.24 96-96v-320c0-53.76-42.24-96-96-96h-384c-53.76 0-96 42.24-96 96v320c0 53.76 42.24 96 96 96z" />
<glyph unicode="&#xe988;" glyph-name="mbri-up-down" d="M768 160.128v640c0 43.648-64 41.28-64 0v-640c0-42.048 64-42.432 64 0zM713.92-55.36l-128.128 128c-29.696 29.696 15.104 74.88 44.032 46.080l106.24-106.048 106.048 105.984c29.44 29.44 73.856-16.256 44.16-46.080l-128.256-128c-11.328-11.264-32.64-11.328-44.032 0zM320 736v-640c0-43.648-64-41.28-64 0v640c0 42.112 64 42.432 64 0zM265.92 951.488l-128.128-128c-29.696-29.696 15.104-74.88 44.032-46.080l106.176 106.112 106.048-105.984c29.44-29.44 73.856 16.256 44.16 46.080l-128.256 128c-11.328 11.264-32.64 11.328-44.032 0z" />
<glyph unicode="&#xe989;" glyph-name="mbri-up" d="M9.6 503.168l448.192 448.512c11.776 11.136 32.256 11.136 44.032 0l448.256-448.512c30.080-30.080-15.616-74.496-43.968-46.080l-426.304 426.496-426.176-426.496c-28.032-28.032-73.6 16.64-44.16 46.080zM512-32v768c0 41.728-64 43.84-64 0v-768c0-43.2 64-40.96 64 0z" />
<glyph unicode="&#xe98a;" glyph-name="mbri-update" d="M713.6 521.088l128.128-128.64c11.776-11.264 32.32-11.264 44.032 0l128.128 128.64c31.552 31.744-18.304 72.128-44.032 46.272l-106.112-106.56-105.984 106.496c-27.264 27.328-74.048-16.128-44.16-46.272zM470.784 893.952c-102.4-9.216-201.408-56.96-271.872-137.92-24.512-28.48 22.72-71.936 50.688-39.424 118.4 136.192 328.96 156.352 472.32 43.776 52.288-41.088 90.24-97.28 108.16-159.744 12.928-44.8 75.968-21.888 64.64 17.536-21.632 74.432-68.8 141.248-131.392 190.464-85.312 66.88-190.336 94.528-292.608 85.312zM310.4 438.912l-128.128 128.64c-11.776 11.264-32.32 11.264-44.032 0l-128.128-128.512c-31.552-31.744 18.304-72.128 44.032-46.272l106.112 106.432 105.984-106.496c27.264-27.328 74.048 16.128 44.16 46.272zM553.28 66.048c102.4 9.216 201.408 56.96 271.872 137.92 24.512 28.48-22.72 71.936-50.688 39.424-118.4-136.192-328.96-156.352-472.32-43.776-52.288 41.088-90.24 97.408-108.16 159.744-12.928 44.8-75.968 21.888-64.64-17.536 21.632-74.432 68.8-141.248 131.392-190.464 85.312-66.944 190.336-94.592 292.608-85.376z" />
<glyph unicode="&#xe98b;" glyph-name="mbri-upload" d="M521.984 503.168l-128-128c-29.312-29.312 15.744-74.24 44.032-46.080l105.984 106.112 105.984-106.048c28.032-28.032 74.112 16 44.032 46.080l-128 128c-12.288 12.16-33.92 10.112-44.032 0zM576 288v-192c0-42.24-64-43.072-64 0v192c0 42.56 64 42.24 64 0zM544 896c-163.968 0-262.4-98.688-312-196.032-129.28-12.8-232-119.36-232-251.968 0-141.248 114.752-256 256-256h96c43.52 0 41.088 64 0 64h-96c-106.88 0-192 85.12-192 192 0 105.216 81.6 189.312 185.984 192 12.8 0 25.216 8.192 30.080 19.968 38.976 86.272 115.136 172.032 263.936 172.032 141.76 0 288-119.936 288-289.92 0.64-14.336 11.968-27.392 25.984-30.080 57.856-11.84 102.016-65.92 102.016-128 0-71.040-56.96-128-128-128h-96c-42.88 0-41.088-64 0-64h96c105.6 0 192 86.4 192 192 0 83.2-57.472 149.12-132.032 176-10.368 196.352-175.36 336-347.968 336z" />
<glyph unicode="&#xe98c;" glyph-name="mbri-user" d="M512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448zM512 832c-118.080 0-192-66.112-192-192 0-104.512 21.376-128.128 64-169.984v-36.032l-177.92-117.824c-9.088-6.208-14.592-17.152-14.080-28.032v-64c0-42.88 64-40.96 64 0v48l177.92 118.016c8.576 5.632 14.080 15.616 14.080 25.856v64c0.192 8.96-3.52 17.92-9.984 24-49.024 39.040-53.888 78.4-54.016 136-0.256 93.888 46.4 129.472 128 128s128-37.568 128-128c0-85.76-19.584-97.664-52.032-134.016-7.68-6.208-12.288-16-11.968-25.984v-64c0.128-10.24 5.568-20.224 14.080-25.984l177.92-118.016v-48c0-42.368 64-42.432 64 0v64c0.512 10.88-4.992 21.888-14.080 28.032l-177.92 117.888v38.080c56 46.080 64 76.48 64 168 0 128.32-73.92 192-192 192z" />
<glyph unicode="&#xe98d;" glyph-name="mbri-user2" d="M512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448zM512 768c-97.408 0-150.912-43.776-179.392-146.752-20.032-72.576-29.248-144.448-65.728-181.12-19.52-17.152-4.864-56.832 21.12-56.128h93.824c-1.92-45.44-28.928-66.304-61.184-79.744-70.912-29.44-108.16-53.312-127.488-136.704-10.688-45.888 56.96-52.736 63.744-13.184 11.776 67.584 46.208 73.088 87.68 91.968 78.464 35.584 103.68 84.864 103.68 169.792-0.064 16.832-15.616 31.872-32.256 31.872h-75.392c26.56 51.84 40.96 107.904 53.76 155.264 19.968 73.344 52.864 100.736 117.632 100.736s88.832-24.32 117.504-100.736c13.696-47.104 27.264-103.36 53.76-155.264h-75.584c-16.64 0-31.872-15.232-31.872-32 0-87.936 31.872-135.872 103.68-169.728 51.2-24.128 70.4-27.776 87.68-91.904 12.16-48.32 74.24-22.144 63.68 13.952-22.912 89.6-63.36 106.88-127.488 135.936-41.28 18.752-50.432 40.512-59.328 79.744h92.16c25.984-0.64 40.576 38.72 21.12 55.936-36.48 36.608-44.8 108.8-65.792 181.12-28.352 98.944-82.112 146.944-179.52 146.944z" />
<glyph unicode="&#xe98e;" glyph-name="mbri-users" d="M180.032 515.2c-14.464-58.496-17.152-115.2-42.048-140.032-19.584-17.28-4.032-55.872 22.016-55.168l57.984-0.832c0-30.976-16.64-31.168-25.984-31.168-39.68 0-44.416-64 0-64 87.232 0 96 77.44 96 128 0 16.768-15.232 32-32 32h-46.080c16.896 40.704 25.152 82.304 32 117.12 11.328 56.192 29.44 74.88 78.080 74.88s68.992-33.536 84.032-76.8c11.52-33.6 20.672-75.52 37.952-115.2h-57.984c-16.768 0-32-15.232-32-32 0-42.048 13.056-68.48 25.984-84.8 20.928-26.24 71.040 13.76 50.048 39.936-2.816 3.456-2.432 10.496-4.032 12.8h70.080c25.984-0.64 41.472 37.888 21.952 55.168-25.6 25.6-34.432 82.88-50.048 142.080-22.208 84.288-65.152 122.816-145.984 122.816-80.768 0-119.68-42.112-140.032-124.8zM832 288v56c56.064 46.080 64 76.48 64 168 0 128.32-73.856 192-192 192-118.016 0-192-66.112-192-192 0-104.512 21.44-128.128 64-169.984v-36.032l-177.92-117.824c-9.088-6.208-14.592-17.152-14.080-28.032v-64c0-42.88 64-40.96 64 0v48l178.048 118.016c8.448 5.76 13.824 15.744 14.080 25.984v64c0.128 8.96-3.584 17.92-10.112 24-48.896 38.912-53.76 78.272-54.016 135.872-0.192 93.888 46.464 129.472 128 128 81.6-1.472 128-37.568 128-128 0-85.76-19.584-97.664-51.968-134.016-7.68-6.208-12.288-16.128-11.968-25.984v-64c0-43.52 64-42.112 64 0zM512 960c-282.368 0-512-229.632-512-512s229.632-512 512-512 512 229.632 512 512-229.632 512-512 512zM512 896c247.808 0 448-200.192 448-448s-200.192-448-448-448-448 200.192-448 448 200.192 448 448 448z" />
<glyph unicode="&#xe98f;" glyph-name="mbri-video-play" d="M1024 224v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM1024 416v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM1024 608v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM1024 800v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 224v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 416v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 608v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM64 800v-64c0-43.52-64-41.6-64 0v64c0 43.136 64 41.344 64 0zM224 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h576c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM224 768h576c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-576c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32zM384 672v-384c-0.768-24.32 33.024-41.216 52.032-25.984l256 192c16.384 11.776 16.384 40.192 0 51.968l-256 192c-18.752 14.080-52.032 0.896-52.032-25.984zM448 608l169.984-128-169.984-128z" />
<glyph unicode="&#xe990;" glyph-name="mbri-video" d="M384 672v-384c-0.768-24.32 33.024-41.216 52.032-25.984l256 192c16.384 11.776 16.384 40.192 0 51.968l-256 192c-20.352 15.232-52.032-2.304-52.032-25.984zM448 608l169.984-128-169.984-128zM96 832c-52.608 0-96-43.392-96-96v-512c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v512c0 52.608-43.392 96-96 96zM96 768h832c18.304 0 32-13.696 32-32v-512c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v512c0 18.304 13.696 32 32 32z" />
<glyph unicode="&#xe991;" glyph-name="mbri-watch" d="M288 768c-51.968 0-94.976-42.24-96-94.080l-136-33.92c-30.912-7.68-56-22.72-56-64v-256c0-32.512 17.92-52.864 56-62.080l136-33.92c0-52.608 43.392-96 96-96h448c52.608 0 96 43.392 96 96l136 33.92c38.144 9.216 56 29.568 56 62.080v256c0 41.28-25.088 56.32-56 64l-136 33.92c-1.024 51.84-44.032 94.080-96 94.080h-448zM288 704h448c18.304 0 32-13.696 32-32v-448c0-18.304-13.696-32-32-32h-448c-18.304 0-32 13.696-32 32v448c0 18.304 13.696 32 32 32zM192 608v-318.080l-120 30.080c-4.16 1.024-8 2.944-8 9.984v236.032c0 5.76 0.768 10.24 8 11.968l120 30.016zM832 608l120-30.080c7.232-1.728 8-6.144 8-11.904v-236.032c0-7.040-3.84-8.96-8-9.984l-120-30.080v318.080z" />
<glyph unicode="&#xe992;" glyph-name="mbri-website-theme" d="M448 671.36c0-17.728-14.336-32-32-32s-32 14.272-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32zM320 671.36c0-17.728-14.336-32-32-32s-32 14.272-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32zM192 671.36c0-17.728-14.336-32-32-32s-32 14.272-32 32c0 17.664 14.336 32 32 32s32-14.336 32-32zM96 832c-52.608 0-96-43.392-96-96v-576c0-52.608 43.392-96 96-96h832c52.608 0 96 43.392 96 96v384c0 41.984-64 42.24-64 0v-384c0-18.304-13.696-32-32-32h-832c-18.304 0-32 13.696-32 32v576c0 18.304 13.696 32 32 32h576c42.24 0 42.56 64 0 64zM977.088 828.352c-133.12-71.488-243.392-141.44-354.432-242.752-59.968-54.656-57.984-136.128-17.92-175.104 35.2-34.24 111.36-43.328 171.2 21.888 100.608 109.76 174.976 221.824 244.928 352.192 12.544 23.424-15.488 58.88-43.84 43.712zM899.456 706.944c-47.36-82.176-96.64-152.32-167.296-228.8-43.328-46.72-81.92-25.792-83.584-23.808-18.176 21.312-7.168 60.992 19.84 87.552 75.008 73.6 150.080 119.936 231.040 165.12zM494.080 384c-58.048 0-81.92-44.8-81.92-96.832 0-15.040-5.632-31.168-14.464-35.968-24.704-13.44-13.632-59.2 14.4-59.2 96.064 0 163.904 12.672 163.904 96-0.512 61.44-24 96-81.92 96zM494.080 320c10.752 0 17.92-10.24 17.92-32 0-28.992-23.040-32-42.56-32 5.76 5.632 10.56 21.312 10.56 32 0 22.144 3.2 32 14.080 32zM160 576h320c41.92 0 41.984-64 0-64h-320c-41.6 0-42.688 64 0 64z" />
<glyph unicode="&#xe993;" glyph-name="mbri-wifi" d="M283.712 290.56c-35.712-34.944 14.72-75.52 45.44-44.992 101.248 100.48 264.512 100.48 365.696 0 31.36-31.104 76.928 15.040 45.44 45.056-131.008 124.8-325.12 128.64-456.576 0zM146.752 426.624c-34.176-33.92 12.8-77.312 45.44-44.992 176.832 175.36 462.72 175.36 639.68 0 30.848-30.528 76.16 14.336 45.44 44.992-199.040 198.848-531.712 197.632-730.624 0zM9.92 562.304c-30.72-30.592 17.728-73.344 44.8-46.592 252.608 250.368 661.248 249.856 914.56 0 29.248-28.992 74.368 17.024 44.672 46.72-276.672 276.608-732.48 271.488-1003.968-0.064zM576 128c0-35.392-28.672-64.128-64-64.128s-64 28.8-64 64.128c0 35.2 28.672 64 64 64s64-28.8 64-64.128z" />
<glyph unicode="&#xe994;" glyph-name="mbri-windows" d="M448 416v-288c0.64-14.272 11.968-27.328 25.984-30.080l448-96c17.92-3.392 37.12 11.776 38.016 30.080v384c0 16.768-15.232 32-32 32h-448c-18.112 0-32-12.672-32-32zM512 384h384v-312l-384 81.92zM0 416v-192c0.64-14.272 11.968-27.328 25.984-30.080l320-64c17.92-3.392 37.12 11.776 38.016 30.080v256c0 16.768-15.232 32-32 32h-320c-20.48 0-32-11.328-32-32zM64 384h256v-184l-256 49.92zM921.984 960l-448-96c-14.72-2.816-26.24-17.088-25.984-32v-288c0-16.768 15.232-32 32-32h448c16.768 0 32 15.232 32 32v384c0.32 18.944-19.392 35.584-38.016 32zM896 889.984v-313.984h-384v232zM345.984 832l-320-64c-14.72-2.816-26.24-17.088-25.984-32v-192c0-16.768 15.232-32 32-32h320c16.768 0 32 15.232 32 32v256c0.32 18.944-19.392 35.584-38.016 32zM320 761.984v-185.984h-256v136z" />
<glyph unicode="&#xe995;" glyph-name="mbri-zoom-out" d="M544 640h256c42.432 0 42.88-64 0-64h-256c-43.136 0-41.728 64 0 64zM329.472 311.040l-320.384-320c-28.032-28.032 15.232-74.88 44.032-46.080l320.384 320c31.872 31.872-16.448 73.6-44.032 46.080zM672 960c-194.048 0-352-157.952-352-352s157.952-352 352-352 352 157.952 352 352-157.952 352-352 352zM672 896c159.36 0 288-128.64 288-288s-128.64-288-288-288-288 128.64-288 288 128.64 288 288 288z" />
</font></defs></svg>

Before

Width:  |  Height:  |  Size: 117 KiB

View file

@ -12,43 +12,61 @@ this.onSettledCallbacks_=null}};var f=new b;e.prototype.settleSameAsPromise_=fun
e.prototype.catch=function(a){return this.then(void 0,a)};e.prototype.callWhenSettled_=function(a,b){function c(){switch(d.state_){case 1:a(d.result_);break;case 2:b(d.result_);break;default:throw Error("Unexpected state: "+d.state_);}}var d=this;null==this.onSettledCallbacks_?f.asyncExecute(c):this.onSettledCallbacks_.push(c)};e.resolve=c;e.reject=function(a){return new e(function(b,c){c(a)})};e.race=function(a){return new e(function(b,d){for(var e=$jscomp.makeIterator(a),f=e.next();!f.done;f=e.next())c(f.value).callWhenSettled_(b,
d)})};e.all=function(a){var b=$jscomp.makeIterator(a),d=b.next();return d.done?c([]):new e(function(a,e){function f(b){return function(c){g[b]=c;h--;0==h&&a(g)}}var g=[],h=0;do g.push(void 0),h++,c(d.value).callWhenSettled_(f(g.length-1),e),d=b.next();while(!d.done)})};return e},"es6","es3");$jscomp.owns=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)};
$jscomp.polyfill("Object.entries",function(a){return a?a:function(a){var b=[],d;for(d in a)$jscomp.owns(a,d)&&b.push([d,a[d]]);return b}},"es8","es3");$jscomp.assign="function"==typeof Object.assign?Object.assign:function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)$jscomp.owns(d,e)&&(a[e]=d[e])}return a};$jscomp.polyfill("Object.assign",function(a){return a||$jscomp.assign},"es6","es3");
$jscomp.findInternal=function(a,b,c){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e<d;e++){var f=a[e];if(b.call(c,f,e,a))return{i:e,v:f}}return{i:-1,v:void 0}};$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,c){return $jscomp.findInternal(this,a,c).v}},"es6","es3");$jscomp.SYMBOL_PREFIX="jscomp_symbol_";$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};
$jscomp.SymbolClass=function(a,b){this.$jscomp$symbol$id_=a;$jscomp.defineProperty(this,"description",{configurable:!0,writable:!0,value:b})};$jscomp.SymbolClass.prototype.toString=function(){return this.$jscomp$symbol$id_};$jscomp.Symbol=function(){function a(c){if(this instanceof a)throw new TypeError("Symbol is not a constructor");return new $jscomp.SymbolClass($jscomp.SYMBOL_PREFIX+(c||"")+"_"+b++,c)}var b=0;return a}();
$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var a=$jscomp.global.Symbol.iterator;a||(a=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("Symbol.iterator"));"function"!=typeof Array.prototype[a]&&$jscomp.defineProperty(Array.prototype,a,{configurable:!0,writable:!0,value:function(){return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this))}});$jscomp.initSymbolIterator=function(){}};
$jscomp.initSymbolAsyncIterator=function(){$jscomp.initSymbol();var a=$jscomp.global.Symbol.asyncIterator;a||(a=$jscomp.global.Symbol.asyncIterator=$jscomp.global.Symbol("Symbol.asyncIterator"));$jscomp.initSymbolAsyncIterator=function(){}};$jscomp.iteratorPrototype=function(a){$jscomp.initSymbolIterator();a={next:a};a[$jscomp.global.Symbol.iterator]=function(){return this};return a};
$jscomp.iteratorFromArray=function(a,b){$jscomp.initSymbolIterator();a instanceof String&&(a+="");var c=0,d={next:function(){if(c<a.length){var e=c++;return{value:b(e,a[e]),done:!1}}d.next=function(){return{done:!0,value:void 0}};return d.next()}};d[Symbol.iterator]=function(){return d};return d};$jscomp.polyfill("Array.prototype.entries",function(a){return a?a:function(){return $jscomp.iteratorFromArray(this,function(a,c){return[a,c]})}},"es6","es3");
$jscomp.polyfill("Array.from",function(a){return a?a:function(a,c,d){c=null!=c?c:function(a){return a};var b=[],f="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];if("function"==typeof f){a=f.call(a);for(var g=0;!(f=a.next()).done;)b.push(c.call(d,f.value,g++))}else for(f=a.length,g=0;g<f;g++)b.push(c.call(d,a[g],g));return b}},"es6","es3");$jscomp.polyfill("Object.is",function(a){return a?a:function(a,c){return a===c?0!==a||1/a===1/c:a!==a&&c!==c}},"es6","es3");
$jscomp.polyfill("Array.prototype.includes",function(a){return a?a:function(a,c){var b=this;b instanceof String&&(b=String(b));var e=b.length;c=c||0;for(0>c&&(c=Math.max(c+e,0));c<e;c++){var f=b[c];if(f===a||Object.is(f,a))return!0}return!1}},"es7","es3");
$jscomp.checkStringArgs=function(a,b,c){if(null==a)throw new TypeError("The 'this' value for String.prototype."+c+" must not be null or undefined");if(b instanceof RegExp)throw new TypeError("First argument to String.prototype."+c+" must not be a regular expression");return a+""};$jscomp.polyfill("String.prototype.includes",function(a){return a?a:function(a,c){return-1!==$jscomp.checkStringArgs(this,a,"includes").indexOf(a,c||0)}},"es6","es3");var EventEmitter=function(){this.events={}};
EventEmitter.prototype.on=function(a,b){"object"!==typeof this.events[a]&&(this.events[a]=[]);this.events[a].push(b)};EventEmitter.prototype.removeListener=function(a,b){"object"===typeof this.events[a]&&(b=indexOf(this.events[a],b),-1<b&&this.events[a].splice(b,1))};EventEmitter.prototype.emit=function(a){var b,c=[].slice.call(arguments,1);if("object"===typeof this.events[a]){var d=this.events[a].slice();var e=d.length;for(b=0;b<e;b++)d[b].apply(this,c)}};
EventEmitter.prototype.on=function(a,b){"object"!==typeof this.events[a]&&(this.events[a]=[]);this.events[a].push(b)};EventEmitter.prototype.removeListener=function(a,b){"object"===typeof this.events[a]&&(b=this.indexOf(this.events[a],b),-1<b&&this.events[a].splice(b,1))};EventEmitter.prototype.emit=function(a){var b,c=[].slice.call(arguments,1);if("object"===typeof this.events[a]){var d=this.events[a].slice();var e=d.length;for(b=0;b<e;b++)d[b].apply(this,c)}};
EventEmitter.prototype.once=function(a,b){this.on(a,function d(){this.removeListener(a,d);b.apply(this,arguments)})};
var loadScript=function(a,b,c){return new Promise(function(d,e){var f=document.createElement("script");f.async=!0;f.src=a;for(var g=$jscomp.makeIterator(Object.entries(b||{})),k=g.next();!k.done;k=g.next()){var h=$jscomp.makeIterator(k.value);k=h.next().value;h=h.next().value;f.setAttribute(k,h)}f.onload=function(){f.onerror=f.onload=null;d(f)};f.onerror=function(){f.onerror=f.onload=null;e(Error("Failed to load "+a))};(c||document.head||document.getElementsByTagName("head")[0]).appendChild(f)})},
YOUTUBE_IFRAME_API_SRC="https://www.youtube.com/iframe_api",YOUTUBE_STATES={"-1":"unstarted",0:"ended",1:"playing",2:"paused",3:"buffering",5:"cued"},YOUTUBE_ERROR={INVALID_PARAM:2,HTML5_ERROR:5,NOT_FOUND:100,UNPLAYABLE_1:101,UNPLAYABLE_2:150},loadIframeAPICallbacks=[],C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0=function(a,b){EventEmitter.call(this);var c=this;a="string"===typeof a?
document.querySelector(a):a;this._id=a.id?a.id:a.id="ytplayer-"+Math.random().toString(16).slice(2,8);this._opts=Object.assign({width:640,height:360,autoplay:!1,captions:void 0,controls:!0,keyboard:!0,fullscreen:!0,annotations:!0,modestBranding:!1,related:!0,timeupdateFrequency:1E3,playsInline:!0,start:0},b);this.videoId=null;this.destroyed=!1;this._api=null;this._autoplay=!1;this._player=null;this._ready=!1;this._queue=[];this._interval=null;this._startInterval=this._startInterval.bind(this);this._stopInterval=
this._stopInterval.bind(this);this.on("playing",this._startInterval);this.on("unstarted",this._stopInterval);this.on("ended",this._stopInterval);this.on("paused",this._stopInterval);this.on("buffering",this._stopInterval);this._loadIframeAPI(function(a,b){if(a)return c._destroy(Error("YouTube Iframe API failed to load"));c._api=b;c.videoId&&c.load(c.videoId,c._autoplay,c._start)})};
$jscomp.inherits(C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0,EventEmitter);
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.load=function(a,b,c){b=void 0===b?!1:b;c=void 0===c?0:c;this.destroyed||(this.videoId=a,this._autoplay=b,this._start=c,this._api&&(this._player?this._ready&&(b?this._player.loadVideoById(a,c):this._player.cueVideoById(a,c)):this._createPlayer(a)))};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.play=function(){this._ready?this._player.playVideo():this._queueCommand("play")};C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.pause=function(){this._ready?this._player.pauseVideo():this._queueCommand("pause")};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stop=function(){this._ready?this._player.stopVideo():this._queueCommand("stop")};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.seek=function(a){this._ready?this._player.seekTo(a,!0):this._queueCommand("seek",a)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setVolume=function(a){this._ready?this._player.setVolume(a):this._queueCommand("setVolume",a)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getVolume=function(){return this._ready&&this._player.getVolume()||0};C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.mute=function(){this._ready?this._player.mute():this._queueCommand("mute")};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.unMute=function(){this._ready?this._player.unMute():this._queueCommand("unMute")};C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.isMuted=function(){return this._ready&&this._player.isMuted()||!1};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setSize=function(a,b){this._ready?this._player.setSize(a,b):this._queueCommand("setSize",a,b)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setPlaybackRate=function(a){this._ready?this._player.setPlaybackRate(a):this._queueCommand("setPlaybackRate",a)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setPlaybackQuality=function(a){this._ready?this._player.setPlaybackQuality(a):this._queueCommand("setPlaybackQuality",a)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getPlaybackRate=function(){return this._ready&&this._player.getPlaybackRate()||1};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getAvailablePlaybackRates=function(){return this._ready&&this._player.getAvailablePlaybackRates()||[1]};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getDuration=function(){return this._ready&&this._player.getDuration()||0};C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getProgress=function(){return this._ready&&this._player.getVideoLoadedFraction()||0};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getState=function(){return this._ready&&YOUTUBE_STATES[this._player.getPlayerState()]||"unstarted"};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getCurrentTime=function(){return this._ready&&this._player.getCurrentTime()||0};C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.destroy=function(){this._destroy()};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._destroy=function(a){this.destroyed||(this.destroyed=!0,this._player&&(this._player.stopVideo&&this._player.stopVideo(),this._player.destroy()),this._player=this._api=this._opts=this._id=this.videoId=null,this._ready=!1,this._queue=null,this._stopInterval(),this.removeListener("playing",this._startInterval),this.removeListener("paused",
this._stopInterval),this.removeListener("buffering",this._stopInterval),this.removeListener("unstarted",this._stopInterval),this.removeListener("ended",this._stopInterval),a&&this.emit("error",a))};C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._queueCommand=function(a,b){for(var c=[],d=1;d<arguments.length;++d)c[d-1]=arguments[d];this.destroyed||this._queue.push([a,c])};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._flushQueue=function(){for(;this._queue.length;){var a=this._queue.shift();this[a[0]].apply(this,a[1])}};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._loadIframeAPI=function(a){if(window.YT&&"function"===typeof window.YT.Player)return a(null,window.YT);loadIframeAPICallbacks.push(a);Array.from(document.getElementsByTagName("script")).some(function(a){return a.src===YOUTUBE_IFRAME_API_SRC})||loadScript(YOUTUBE_IFRAME_API_SRC).catch(function(a){for(;loadIframeAPICallbacks.length;)loadIframeAPICallbacks.shift()(a)});
YOUTUBE_IFRAME_API_SRC="https://www.youtube.com/iframe_api",YOUTUBE_STATES={"-1":"unstarted",0:"ended",1:"playing",2:"paused",3:"buffering",5:"cued"},YOUTUBE_ERROR={INVALID_PARAM:2,HTML5_ERROR:5,NOT_FOUND:100,UNPLAYABLE_1:101,UNPLAYABLE_2:150},loadIframeAPICallbacks=[],$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0=function(a,b){EventEmitter.call(this);var c=this;a="string"===
typeof a?document.querySelector(a):a;this._id=a.id?a.id:a.id="ytplayer-"+Math.random().toString(16).slice(2,8);this._opts=Object.assign({width:640,height:360,autoplay:!1,captions:void 0,controls:!0,keyboard:!0,fullscreen:!0,annotations:!0,modestBranding:!1,related:!0,timeupdateFrequency:1E3,playsInline:!0,start:0},b);this.videoId=null;this.destroyed=!1;this._api=null;this._autoplay=!1;this._player=null;this._ready=!1;this._queue=[];this.replayInterval=[];this._interval=null;this._startInterval=this._startInterval.bind(this);
this._stopInterval=this._stopInterval.bind(this);this.on("playing",this._startInterval);this.on("unstarted",this._stopInterval);this.on("ended",this._stopInterval);this.on("paused",this._stopInterval);this.on("buffering",this._stopInterval);this._loadIframeAPI(function(a,b){if(a)return c._destroy(Error("YouTube Iframe API failed to load"));c._api=b;c.videoId&&c.load(c.videoId,c._autoplay,c._start)})};
$jscomp.inherits($Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0,EventEmitter);$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.indexOf=function(a,b){for(var c=0,d=a.length,e=-1,f=!1;c<d&&!f;)a[c]===b&&(e=c,f=!0),c++;return e};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.load=function(a,b,c){b=void 0===b?!1:b;c=void 0===c?0:c;this.destroyed||(this._startOptimizeDisplayEvent(),this._optimizeDisplayHandler("center, center"),this.videoId=a,this._autoplay=b,this._start=c,this._api&&(this._player?this._ready&&(b?this._player.loadVideoById(a,c):this._player.cueVideoById(a,c)):this._createPlayer(a)))};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.play=function(){this._ready?this._player.playVideo():this._queueCommand("play")};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.replayFrom=function(a){var b=this;!this.replayInterval.find(function(a){return a.iframeParent===b._player.i.parentNode})&&a&&this.replayInterval.push({iframeParent:this._player.i.parentNode,interval:setInterval(function(){if(b._player.getCurrentTime()>=b._player.getDuration()-Number(a)){b.seek(0);for(var c=$jscomp.makeIterator(b.replayInterval.entries()),
d=c.next();!d.done;d=c.next()){d=$jscomp.makeIterator(d.value);var e=d.next().value;d.next();Object.hasOwnProperty.call(b.replayInterval,e)&&(clearInterval(b.replayInterval[e].interval),b.replayInterval.splice(e,1))}}},1E3*Number(a))})};$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.pause=function(){this._ready?this._player.pauseVideo():this._queueCommand("pause")};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stop=function(){this._ready?this._player.stopVideo():this._queueCommand("stop")};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.seek=function(a){this._ready?this._player.seekTo(a,!0):this._queueCommand("seek",a)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._optimizeDisplayHandler=function(a){if(this._player){var b=this._player.i;a=a.split(",");if(b){var c;if(c=b.parentElement){var d=window.getComputedStyle(c);var e=c.clientHeight+parseFloat(d.marginTop,10)+parseFloat(d.marginBottom,10)+parseFloat(d.borderTopWidth,10)+parseFloat(d.borderBottomWidth,10);c=c.clientWidth+parseFloat(d.marginLeft,
10)+parseFloat(d.marginRight,10)+parseFloat(d.borderLeftWidth,10)+parseFloat(d.borderRightWidth,10);e+=80;b.style.width=c+"px";b.style.height=Math.ceil(parseFloat(b.style.width,10)/1.7)+"px";b.style.marginTop=Math.ceil(-((parseFloat(b.style.height,10)-e)/2))+"px";b.style.marginLeft=0;if(d=parseFloat(b.style.height,10)<e)b.style.height=e+"px",b.style.width=Math.ceil(1.7*parseFloat(b.style.height,10))+"px",b.style.marginTop=0,b.style.marginLeft=Math.ceil(-((parseFloat(b.style.width,10)-c)/2))+"px";
for(var f in a)if(a.hasOwnProperty(f))switch(a[f].replace(/ /g,"")){case "top":b.style.marginTop=d?-((parseFloat(b.style.height,10)-e)/2)+"px":0;break;case "bottom":b.style.marginTop=d?0:-(parseFloat(b.style.height,10)-e)+"px";break;case "left":b.style.marginLeft=0;break;case "right":b.style.marginLeft=d?-(parseFloat(b.style.width,10)-c):"0px";break;default:parseFloat(b.style.width,10)>c&&(b.style.marginLeft=-((parseFloat(b.style.width,10)-c)/2)+"px")}}}}};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stopResize=function(){window.removeEventListener("resize",this._resizeListener);this._resizeListener=null};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.stopReplay=function(a){for(var b=$jscomp.makeIterator(this.replayInterval.entries()),c=b.next();!c.done;c=b.next()){c=$jscomp.makeIterator(c.value);var d=c.next().value;c.next();Object.hasOwnProperty.call(this.replayInterval,d)&&a===this.replayInterval[d].iframeParent&&(clearInterval(this.replayInterval[d].interval),this.replayInterval.splice(d,
1))}};$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setVolume=function(a){this._ready?this._player.setVolume(a):this._queueCommand("setVolume",a)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.loadPlaylist=function(){this._ready?this._player.loadPlaylist(this.videoId):this._queueCommand("loadPlaylist",this.videoId)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setLoop=function(a){this._ready?this._player.setLoop(a):this._queueCommand("setLoop",a)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getVolume=function(){return this._ready&&this._player.getVolume()||0};$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.mute=function(){this._ready?this._player.mute():this._queueCommand("mute")};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.unMute=function(){this._ready?this._player.unMute():this._queueCommand("unMute")};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.isMuted=function(){return this._ready&&this._player.isMuted()||!1};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setSize=function(a,b){this._ready?this._player.setSize(a,b):this._queueCommand("setSize",a,b)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setPlaybackRate=function(a){this._ready?this._player.setPlaybackRate(a):this._queueCommand("setPlaybackRate",a)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.setPlaybackQuality=function(a){this._ready?this._player.setPlaybackQuality(a):this._queueCommand("setPlaybackQuality",a)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getPlaybackRate=function(){return this._ready&&this._player.getPlaybackRate()||1};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getAvailablePlaybackRates=function(){return this._ready&&this._player.getAvailablePlaybackRates()||[1]};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getDuration=function(){return this._ready&&this._player.getDuration()||0};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getProgress=function(){return this._ready&&this._player.getVideoLoadedFraction()||0};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getState=function(){return this._ready&&YOUTUBE_STATES[this._player.getPlayerState()]||"unstarted"};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.getCurrentTime=function(){return this._ready&&this._player.getCurrentTime()||0};$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype.destroy=function(){this._destroy()};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._destroy=function(a){this.destroyed||(this.destroyed=!0,this._player&&(this._player.stopVideo&&this._player.stopVideo(),this._player.destroy()),this._player=this._api=this._opts=this._id=this.videoId=null,this._ready=!1,this._queue=null,this._stopInterval(),this.removeListener("playing",this._startInterval),this.removeListener("paused",
this._stopInterval),this.removeListener("buffering",this._stopInterval),this.removeListener("unstarted",this._stopInterval),this.removeListener("ended",this._stopInterval),a&&this.emit("error",a))};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._queueCommand=function(a,b){for(var c=[],d=1;d<arguments.length;++d)c[d-1]=arguments[d];this.destroyed||this._queue.push([a,c])};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._flushQueue=function(){for(;this._queue.length;){var a=this._queue.shift();this[a[0]].apply(this,a[1])}};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._loadIframeAPI=function(a){if(window.YT&&"function"===typeof window.YT.Player)return a(null,window.YT);loadIframeAPICallbacks.push(a);Array.from(document.getElementsByTagName("script")).some(function(a){return a.src===YOUTUBE_IFRAME_API_SRC})||loadScript(YOUTUBE_IFRAME_API_SRC).catch(function(a){for(;loadIframeAPICallbacks.length;)loadIframeAPICallbacks.shift()(a)});
var b=window.onYouTubeIframeAPIReady;window.onYouTubeIframeAPIReady=function(){for("function"===typeof b&&b();loadIframeAPICallbacks.length;)loadIframeAPICallbacks.shift()(null,window.YT)}};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._createPlayer=function(a){var b=this;if(!this.destroyed){var c=this._opts;this._player=new this._api.Player(this._id,{width:c.width,height:c.height,videoId:a,host:c.host,playerVars:{autoplay:c.autoplay?1:0,hl:null!=c.captions&&!1!==c.captions?c.captions:void 0,cc_lang_pref:null!=c.captions&&!1!==c.captions?c.captions:void 0,controls:c.controls?
2:0,enablejsapi:1,allowfullscreen:!0,iv_load_policy:c.annotations?1:3,modestbranding:c.modestBranding?1:0,origin:"*",rel:c.related?1:0,mode:"transparent",showinfo:0,html5:1,version:3,playerapiid:"iframe_YTP_1624972482514"},events:{onReady:function(){return b._onReady(a)},onStateChange:function(a){return b._onStateChange(a)},onPlaybackQualityChange:function(a){return b._onPlaybackQualityChange(a)},onPlaybackRateChange:function(a){return b._onPlaybackRateChange(a)},onError:function(a){return b._onError(a)}}})}};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onReady=function(a){this.destroyed||(this._ready=!0,this.load(this.videoId,this._autoplay,this._start),this._flushQueue())};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onStateChange=function(a){if(!this.destroyed){var b=YOUTUBE_STATES[a.data];if(b)["paused","buffering","ended"].includes(b)&&this._onTimeupdate(),this.emit(b),["unstarted","playing","cued"].includes(b)&&this._onTimeupdate();else throw Error("Unrecognized state change: "+a);}};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onPlaybackQualityChange=function(a){this.destroyed||this.emit("playbackQualityChange",a.data)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onPlaybackRateChange=function(a){this.destroyed||this.emit("playbackRateChange",a.data)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onError=function(a){if(!this.destroyed&&(a=a.data,a!==YOUTUBE_ERROR.HTML5_ERROR)){if(a===YOUTUBE_ERROR.UNPLAYABLE_1||a===YOUTUBE_ERROR.UNPLAYABLE_2||a===YOUTUBE_ERROR.NOT_FOUND||a===YOUTUBE_ERROR.INVALID_PARAM)return this.emit("unplayable",this.videoId);this._destroy(Error("YouTube Player Error. Unknown error code: "+a))}};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onTimeupdate=function(){this.emit("timeupdate",this.getCurrentTime())};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._startInterval=function(){var a=this;this._interval=setInterval(function(){return a._onTimeupdate()},this._opts.timeupdateFrequency)};
C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._stopInterval=function(){clearInterval(this._interval);this._interval=null};YouTubePlayer=C_$hudson$workspace$Mobirise5_ewin_Release$Release$release$win_ia32_unpacked$resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0;
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._createPlayer=function(a){var b=this;if(!this.destroyed){var c=this._opts;this._player=new this._api.Player(this._id,{width:c.width,height:c.height,videoId:a,host:c.host,playerVars:{autoplay:c.autoplay?1:0,mute:c.mute?1:0,hl:null!=c.captions&&!1!==c.captions?c.captions:void 0,cc_lang_pref:null!=c.captions&&!1!==c.captions?
c.captions:void 0,controls:c.controls?2:0,enablejsapi:1,allowfullscreen:!0,iv_load_policy:c.annotations?1:3,modestbranding:c.modestBranding?1:0,origin:"*",rel:c.related?1:0,mode:"transparent",showinfo:0,html5:1,version:3,playerapiid:"iframe_YTP_1624972482514"},events:{onReady:function(){return b._onReady(a)},onStateChange:function(a){return b._onStateChange(a)},onPlaybackQualityChange:function(a){return b._onPlaybackQualityChange(a)},onPlaybackRateChange:function(a){return b._onPlaybackRateChange(a)},
onError:function(a){return b._onError(a)}}})}};$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onReady=function(a){this.destroyed||(this._ready=!0,this.load(this.videoId,this._autoplay,this._start),this._flushQueue())};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onStateChange=function(a){if(!this.destroyed){var b=YOUTUBE_STATES[a.data];if(b)["paused","buffering","ended"].includes(b)&&this._onTimeupdate(),this.emit(b),["unstarted","playing","cued"].includes(b)&&this._onTimeupdate();else throw Error("Unrecognized state change: "+a);}};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onPlaybackQualityChange=function(a){this.destroyed||this.emit("playbackQualityChange",a.data)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onPlaybackRateChange=function(a){this.destroyed||this.emit("playbackRateChange",a.data)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onError=function(a){if(!this.destroyed&&(a=a.data,a!==YOUTUBE_ERROR.HTML5_ERROR)){if(a===YOUTUBE_ERROR.UNPLAYABLE_1||a===YOUTUBE_ERROR.UNPLAYABLE_2||a===YOUTUBE_ERROR.NOT_FOUND||a===YOUTUBE_ERROR.INVALID_PARAM)return this.emit("unplayable",this.videoId);this._destroy(Error("YouTube Player Error. Unknown error code: "+
a))}};$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._startOptimizeDisplayEvent=function(){var a=this;this._resizeListener||(this._resizeListener=function(){return a._optimizeDisplayHandler("center, center")},window.addEventListener("resize",this._resizeListener))};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._onTimeupdate=function(){this.emit("timeupdate",this.getCurrentTime())};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._startInterval=function(){var a=this;this._interval=setInterval(function(){return a._onTimeupdate()},this._opts.timeupdateFrequency)};
$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0.prototype._stopInterval=function(){clearInterval(this._interval);this._interval=null};YouTubePlayer=$Users$minim$workspace$Mobirise5_emac_Release$Release$release$mac$Mobirise_app$Contents$Resources$_app_asar$web$app$themes$mobirise5$plugins$ytplayer$index$classdecl$var0;

BIN
fonts/NES/NESCyrillic.ttf Normal file

Binary file not shown.

4
fonts/NES/style.css Normal file
View file

@ -0,0 +1,4 @@
@font-face {
font-family: 'NES';
src: url('../NES/NESCyrillic.ttf') format('truetype');
}

1043
index.html

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB