Bookmarks.html night beta📑

load Bookmarks link image

// ==UserScript==
// @name         Bookmarks.html night beta📑
// @description  load Bookmarks link image
// @namespace    Bookmarks_html
// @author       Covenant
// @version      1.0
// @license      MIT
// @homepage
// @match        file:///*
// @icon         data:image/svg+xml,<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 180" class="spinner" width="180"  height="180" ><defs><linearGradient id="spinnerGradient" x1="0.908" y1="0.645" x2="0" y2="0.329" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%231adeca"></stop><stop offset="1" stop-color="%2300a794"></stop></linearGradient><linearGradient id="spinnerGradient" x1="0.908" y1="0.645" x2="0" y2="0.329" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%231adeca"></stop><stop offset="1" stop-color="%2300a794"></stop></linearGradient></defs><path d="M179.99,90.393A90,90,0,1,1,90.384,0h.027A90.093,90.093,0,0,1,179.99,90.393Zm-115.943.452H8.365c1.6,30.764,14.734,53.181,41.068,69.9,9.762-16.843,18.922-32.692,27.63-47.757Zm52.187-.452-13.318,22.6,27.118,46.733c27.419-14.915,43.87-44.353,39.17-69.3ZM49.072,19.586,76.551,67.252h27.118l27.419-47.577C103.337,4.731,77.485,4.822,49.072,19.586Zm56.1,69.813A15.668,15.668,0,0,0,89.417,74.815,15.065,15.065,0,1,0,105.175,89.4Z" transform="translate(0.009 0)" fill="url(&quot;%23spinnerGradient&quot;)"></path></svg>
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_registerMenuCommand
// @connect
// @run-at       document-body
// @noframes
// ==/UserScript==
var is_load_bookmark_img=GM_getValue('is_load_bookmark_img', false);
var is_chrome=false;
function create_style(textContent,id,class_name){let style=create_style_iframes(textContent,id,class_name,document.body);return style;}
const font_family_anchor="font-family: 'manga_kana','emoji_patch',/*'Firple Slim',*/'NotoMono_Slim',/*'Noto Sans Mono','Noto Mono',*/'Cascadia Mono','Consolas','Droid Sans Mono','Liberation Mono','Monaco','Courier New','flag_patch','flag_white_patch','color_emoji','Noto Sans Mono CJK JP','NotoMono_CJK','Meiryo','Yu Gothic','Microsoft JhengHei','symbol_sans','symbol2_sans','emoji_back',monospace;";
const font_face_default=`
@font-face{font-family: 'color_emoji';src: local('Twemoji Mozilla'),url('file:///C:/Program Files/Mozilla Firefox/fonts/TwemojiMozilla.ttf'),local('Noto Color Emoji'),local('Segoe UI Emoji'),local('Apple Color Emoji');}
@font-face{font-family: 'symbol_sans';src: local('Segoe UI Symbol'),local('NotoSansSymbols-Regular'),local('NotoSansSymbols-Regular-Subsetted'),local('Noto Sans Symbols'),local('Apple Symbols'),local('Meiryo');}
@font-face{font-family: 'symbol2_sans';src: local('NotoSansSymbols2-Regular'),local('NotoSansSymbols-Regular-Subsetted2'),local('Symbola');}
@font-face{font-family: 'emoji_back';src: local('Noto Color Emoji'),local('Toss Face Font Web'),local('Segoe UI Emoji');}
@font-face{font-family: 'old_google';src: local('Noto Color Emoji'),local('NotoColorEmoji');}\n@font-face{font-family: 'old_samsung';src: local('SamsungColorEmoji');}
@font-face{font-family: 'DroidSans_Mono';src: local('DroidSansMono');}\n@font-face{font-family: 'Cutive_Mono';src: local('Cutive Mono');}
@font-face{font-family: 'Roboto_Regular';src: local('Roboto');}\n@font-face{font-family: 'Noto_Serif';src: local('NotoSerif');}
@font-face{font-family: 'Dancing_Script';src: local('DancingScript'),local('DancingScript-Regular');}\n@font-face{font-family: 'Coming_Soon';src: local('ComingSoon'),local('ComingSoon-Regular');}
@font-face{font-family: 'Carrois_GothicSC';src: local('CarroisGothicSC-Regular');}\n@font-face{font-family: 'NotoMono_CJK';src: local('Noto Sans Mono CJK JP'),local('NotoSansMonoCJKjp-Regular');}
\n`;
function create_img(url,title,class_name,is_appendChild,node,refNode){
    let img=create_node("img",class_name,is_appendChild,node,refNode);
    img.src=url;
    img.title=title;
    img.alt=title;
    return img;
}
function create_img_click(url,title,class_name,is_appendChild,node,refNode){
    let img=create_img(url,title,class_name,is_appendChild,node,refNode);
    img.addEventListener('click',() => {
        let img_tmp=img.cloneNode(true);
        img_tmp.style.setProperty('position','fixed');
        img_tmp.style.setProperty('left',"50%");
        img_tmp.style.setProperty('top',"50%");
        img_tmp.style.setProperty('transform',"translate(-50%,-50%)");
        img_tmp.style.setProperty('max-height',"95%");
        img_tmp.style.setProperty('max-width',"95%");
        img_tmp.style.setProperty('z-index','65535');
        img_tmp.removeAttribute('width');
        ////newmodal_background.style.removeProperty('display');
        document.body.appendChild(img_tmp);
        img_tmp.addEventListener('click',() => {
            ////newmodal_background.style.setProperty('display','none');
            img_tmp.remove();
        });
    });
    return img;
}
function create_style_iframes(textContent,id,class_name,node){
    let style=create_node("style",class_name,true,node);
    style.type='text/css';
    style.id=id;
    style.textContent=textContent;
    return style;
}
function create_node(tagname,class_name,is_appendChild,node,refNode){
    let element=document.createElement(tagname);
    element.id="";
    if(Array.isArray(class_name)){
        for(let i=0; i<class_name.length; i++){element.classList.add(class_name[i]);}
    }else if(typeof class_name==='string'){element.classList.add(class_name);}
    if(node==undefined){node=document.body;}
    if(is_appendChild){node.appendChild(element);}
    else{
        if(refNode==undefined){node.insertBefore(element,node.firstChild);}else{node.insertBefore(element,refNode);}
    }return element;
}
//console.log("break");
function fn_is_img(str_url){
    let ary_str_split=str_url.split('.');
    let ex=ary_str_split.slice(-1)[0];
    switch (ex.toLowerCase()){
        case "jpg":
        case "jpeg":
        case "png":
        case "gif":
        case "bmp":
        case "ico":
        case "webp":
        case "svg":
        case "avif":
            return true;
    }return false;
}
(function(){
    'use strict';
    let head_title=document.head.querySelectorAll('title');
    if(head_title.length==0)return 0;
    if(head_title[0].innerText=="Bookmarks"){//&&h1_title[0].innerText=="Bookmarks"
        GM_registerMenuCommand("load bookmark img"+(is_load_bookmark_img?"✔️":""), () => {
            GM_setValue('is_load_bookmark_img',!is_load_bookmark_img);
        });
        let h1_title=document.querySelectorAll('body>h1');
        let h3_title=document.querySelectorAll('h3');
        let browser="undefined";
        if(h1_title[0].innerText=="Bookmarks"){
            is_chrome=true;
            let path=document.location.href;
            if(path.split('/').slice(-1)[0].search(/favorites/i)==0){
                browser="svg_MicrosoftSpartan_2015";
            }else{browser="svg_Google_Chrome_Logo_2008";}
        }else if(h3_title[0].innerText=="Mozilla Firefox"){
            browser="svg_Mozilla_Firefox_logo_2004";//let meta_csp=document.head.querySelectorAll('meta');meta_csp[1].remove();
        }else{browser="svg_null_ico";}
        let rel=create_node("link",[],true,document.head);
        //read link
        let a_link=document.querySelectorAll('dt>a');
        for(let i=0; i<a_link.length; i++){
            let img_base64=a_link[i].getAttribute("icon");
            if(img_base64!=null){
                create_img(img_base64,"icon",["img_icon"],false,a_link[i].parentNode,a_link[i].parentNode.firstChild);
            }else{create_node("div",["img_css_svg",browser],false,a_link[i].parentNode,a_link[i].parentNode.firstChild);}
            if(is_load_bookmark_img){
                if(fn_is_img(a_link[i].href)){
                    let img_tmp=create_img_click(a_link[i].href,"",["img_link"],true,a_link[i].parentNode);
                    img_tmp.alt="404";
                    if(!is_chrome){img_tmp.height="64";}//firefox patch🩹
                }
            }
            if(!is_chrome){a_link[i].style.setProperty('color','#FFC408');}//firefox patch🩹
        }
        //CSS
        let style_font_face=create_style(font_face_default,"gm_font_face_Bookmarks",["user_gm_font_face","css_Bookmarks"]);
        let style_user_css=create_style("body{"+font_family_anchor+"font-weight: 100;}\n","gm_user_css_Bookmarks",["user_gm_css","css_Bookmarks"]);
        style_user_css.textContent+=`
body{color: var(--c_txt_default);}
body{background-color: var(--c_bg_default);}
a:link{color: var(--c_np_touou);}
a:visited{color: var(--c_a_visited);}
a:focus{color: var(--c_txt_default);}
a:hover{color: Green;}
a:active{color: Navy;cursor: progress;}
p{word-break: break-word;}
li:nth-of-type(odd),dt:nth-of-type(odd){background-color: var(--c_bg_li_1);border: 1px solid var(--c_bg_li_border);}
li:nth-of-type(even),dt:nth-of-type(even){background-color: var(--c_bg_li_2);border: 1px solid #FFFFFF00;}
li:hover,dt:hover{background-color: var(--c_bg_li_hover);}
/*local css📝*/
.display_none{display: none;}
.inline_block{display: inline-block;}
.pos_relative{position: relative;}
.pre_wrap{white-space: pre-wrap;}
.cursor_copy{cursor: copy;}
body>h1{text-shadow: DarkSlateGray 0.2rem 0.1rem 0rem,FireBrick 0rem 0rem 1.5rem,FireBrick 0rem 0rem 1.5rem;cursor: not-allowed;}
body>h1{font-family: 'manga_kana','emoji_patch','Savoye Let','Noto Sans Mono','Noto Mono','Cascadia Mono','Consolas','Dancing_Script','Droid Sans Mono','Liberation Mono','EmojiOne Mozilla','flag_patch','flag_white_patch','color_emoji','Noto Sans CJK JP','Yu Gothic',ui-sans-serif,'Microsoft JhengHei','symbol_sans','symbol2_sans','emoji_back',sans-serif;}
h1,h2,h3,h4,h5{text-align: center;}
h1::before{content: "───────╢";}h1::after{content: "╟───────";}
dt{display: list-item;list-style-type: decimal-leading-zero;list-style-position: inside;}
body>dl>dt{display: list-item;list-style-type: star_std;list-style-position: inside;}
body>dl>dt:hover{background-color: var(--c_bg_sheer);}
body{background-size: 5%, 5%;background-repeat: no-repeat;background-attachment: fixed;background-position: 75% 25%,75% 50%;}
.img_icon{max-width: 16px;max-height: 16px;}\n.img_link{max-width: 32px;max-height: 32px;}
.img_css_svg{display: inline-block;background-size: contain;background-repeat: no-repeat;min-width: 16px;min-height: 16px;}
.img_css_svg{outline-style: dashed;outline-color: #707070;outline-width: 1px ;outline-offset: 1px;border-radius: 1px;}
/*core⚠️*/
:root{--c_bg_default: #000000;
    --c_txt_default: #EFEFEF;
    --c_a_default: #d0d000;
    --c_a_visited: #b0b000;
    --c_bg_panel: #303030;
    --c_bg_border: #707070;
    --c_bg_li_1: #05050580;
    --c_bg_li_2: #0A0A0A80;
    --c_bg_li_hover: #0F0F0F80;
    --c_bg_li_border: #0F0F0F;
    --c_bg_input: #000000BF;
    --c_bg_input_2: #0A0A0ABF;
    --c_bg_input_hover: #00000080;
    --c_bg_input_disabled_1: #101010;
    --c_bg_input_disabled_2: #181818;
    --c_bg_group: #00000080;
    --c_bg_sheer: #EFEFEF00;
    --c_np_touou:#FFC408
}
/*patch🩹*/
/*list-style-type🔣*/
/*dl{counter-reset: idx;}
dl>dt{counter-increment: idx;}
dl>dt::before{content: counter(idx, hiragana)"、";}*/
@counter-style u_cyrillic{system: alphabetic;symbols: А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ь Э Ю Я;suffix: ". ";}
@counter-style hankaku_kana {system: alphabetic;symbols: ア イ ウ エ オ カ キ ク ケ コ サ シ ス セ ソ タ チ ツ テ ト ナ ニ ヌ ネ ノ ハ ヒ フ ヘ ホ マ ミ ム メ モ ヤ ユ ヨ ラ リ ル レ ロ ワ ヲ ン;suffix: ". ";}
@counter-style hilagana_tolinakuuta{system: alphabetic;symbols: と り な く こ ゑ す ゆ め さ ま せ み よ あ け わ た る ひ ん か し を そ ら い ろ は え て お き つ へ に ほ ふ ね む れ ゐ ぬ も や の う ち;suffix: '、';}
@counter-style katakana_tolinakuuta{system: alphabetic;symbols: ト リ ナ ク コ ヱ ス ユ メ サ マ セ ミ ヨ ア ケ ワ タ ル ヒ ン カ シ ヲ ソ ラ イ ロ ハ エ テ オ キ ツ ヘ ニ ホ フ ネ ム レ ヰ ヌ モ ヤ ノ ウ チ;suffix: '、';}
@counter-style katakana_circled{system: alphabetic;symbols: ㋐ ㋑ ㋒ ㋓ ㋔ ㋕ ㋖ ㋗ ㋘ ㋙ ㋚ ㋛ ㋜ ㋝ ㋞ ㋟ ㋠ ㋡ ㋢ ㋣ ㋤ ㋥ ㋦ ㋧ ㋨ ㋩ ㋪ ㋫ ㋬ ㋭ ㋮ ㋯ ㋰ ㋱ ㋲ ㋳ ㋴ ㋵ ㋶ ㋷ ㋸ ㋹ ㋺ ㋻ ㋼ ㋽ ㋾;suffix: '、';}
@counter-style binary{system: numeric;symbols: '0' '1';}
@counter-style bin_seg_digit{system: numeric;symbols: '🯰' '🯱';}
@counter-style u_hex{system: numeric;symbols: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'A' 'B' 'C' 'D' 'E' 'F';}
@counter-style l_hex{system: numeric;symbols: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'a' 'b' 'c' 'd' 'e' 'f';}
@counter-style astrological_sign{system: cyclic;symbols: '♈' '♉' '♊' '♋' '♌' '♍' '♎' '♏' '♐' '♑' '♒' '♓' '⛎';}
@counter-style youbi_round_b{system: cyclic;symbols: ㈪ ㈫ ㈬ ㈭ ㈮ ㈯ ㈰;suffix: "、";}
@counter-style youbi_circled{system: cyclic;symbols: ㊊ ㊋ ㊌ ㊍ ㊎ ㊏ ㊐;suffix: "、";}
@counter-style telegraph_hours_full{system: fixed;symbols: ㍘ ㍙ ㍚ ㍛ ㍜ ㍝ ㍞ ㍟ ㍠ ㍡ ㍢ ㍣ ㍤ ㍥ ㍦ ㍧ ㍨ ㍩ ㍪ ㍫ ㍬ ㍭ ㍮ ㍯ ㍰;suffix: "、";}
@counter-style flag_std{system: cyclic;symbols: '⚐' '⚑';}
@counter-style flag_waving{system: cyclic;symbols: '🏳️' '🏴';}
@counter-style chess_white{system: cyclic;symbols: '♙' '♘' '♗' '♖' '♕' '♔';}
@counter-style chess_black{system: cyclic;symbols: '♟︎' '♞' '♝' '♜' '♛' '♚';}
@counter-style shou_gi_all{system: cyclic;symbols: '☗' '⛊' '☖' '⛉';}
@counter-style dice_pip{system: cyclic;symbols: '⚀' '⚁' '⚂' '⚃' '⚄' '⚅';}
@counter-style card_suit_emoji{system: cyclic;symbols: '♠️' '♥️' '♦️' '♣️';}
@counter-style card_suit_symbol{system: cyclic;symbols: '♤' '♡' '♢' '♧';}
@counter-style french_suited_52{system: cyclic;symbols: 🂡 🂢 🂣 🂤 🂥 🂦 🂧 🂨 🂩 🂪 🂫 🂭 🂮 🂱 🂲 🂳 🂴 🂵 🂶 🂷 🂸 🂹 🂺 🂻 🂽 🂾 🃁 🃂 🃃 🃄 🃅 🃆 🃇 🃈 🃉 🃊 🃋 🃍 🃎 🃑 🃒 🃓 🃔 🃕 🃖 🃗 🃘 🃙 🃚 🃛 🃝 🃞;}
@counter-style french_suited_53{system: cyclic;symbols: 🂡 🂢 🂣 🂤 🂥 🂦 🂧 🂨 🂩 🂪 🂫 🂭 🂮 🂱 🂲 🂳 🂴 🂵 🂶 🂷 🂸 🂹 🂺 🂻 🂽 🂾 🃁 🃂 🃃 🃄 🃅 🃆 🃇 🃈 🃉 🃊 🃋 🃍 🃎 🃑 🃒 🃓 🃔 🃕 🃖 🃗 🃘 🃙 🃚 🃛 🃝 🃞 🃟;}
@counter-style french_suited_full{system: cyclic;symbols: 🂠 🂡 🂢 🂣 🂤 🂥 🂦 🂧 🂨 🂩 🂪 🂫 🂭 🂮 🂱 🂲 🂳 🂴 🂵 🂶 🂷 🂸 🂹 🂺 🂻 🂽 🂾 🃁 🃂 🃃 🃄 🃅 🃆 🃇 🃈 🃉 🃊 🃋 🃍 🃎 🃑 🃒 🃓 🃔 🃕 🃖 🃗 🃘 🃙 🃚 🃛 🃝 🃞 🃟 🂿;}
@counter-style shan_chi_full{system: cyclic;symbols: '🩭' '🩬' '🩪' '🩫' '🩩' '🩨' '🩧' '🩦' '🩥' '🩣' '🩤' '🩢' '🩡' '🩠';}
@counter-style star_std{system: cyclic;symbols: '★' '☆';}
@counter-style moon_phase{system: cyclic;symbols: '🌑' '🌒' '🌓' '🌔' '🌕' '🌖' '🌗' '🌘';}
@counter-style benzene{system: cyclic;symbols: '⌬' '⏣';}
@counter-style kana_ray_abg_fixed{system: fixed;symbols: '㌁' '㌼' '㌏';suffix: "、";}
@counter-style star_small{system: cyclic;symbols: '⭑' '⭒';}
/*base64💾*/
body{background-image: url('data:image/svg+xml,<svg width="36px" height="36px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-default"><rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(0 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(30 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.08333333333333333s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(60 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.16666666666666666s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(90 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.25s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(120 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.3333333333333333s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(150 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.4166666666666667s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(180 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.5s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(210 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.5833333333333334s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(240 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.6666666666666666s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(270 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.75s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(300 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.8333333333333334s" repeatCount="indefinite"/></rect><rect x="46.5" y="40" width="7" height="20" rx="5" ry="5" fill="%23009499" transform="rotate(330 50 50) translate(0 -30)"><animate attributeName="opacity" from="1" to="0" dur="1s" begin="0.9166666666666666s" repeatCount="indefinite"/></rect></svg>'),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="%23ccc" stroke="%23ccc" stroke-width="0"><circle cx="50%" cy="50%" r="40%" fill="none" stroke-width="4"/><rect x="21%" y="44%" width="12%" height="12%"> <animate attributeName="fill" repeatDur="indefinite" dur="1s" values="%23ccc;%23aaa" begin="0s"/></rect><rect x="44%" y="44%" width="12%" height="12%"> <animate attributeName="fill" repeatDur="indefinite" dur="1s" values="%23ccc;%23aaa" begin="0.2s"/></rect><rect x="67%" y="44%" width="12%" height="12%"> <animate attributeName="fill" repeatDur="indefinite" dur="1s" values="%23ccc;%23aaa" begin="0.4s"/></rect></g></svg>');}\n
`;
        if(!is_chrome){//patch🩹
            document.body.style.setProperty('background-color','#0A0A0A');
            document.body.style.setProperty('color','#EFEFEF');
        }
        const svg_Google_Chrome_Logo_2008="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Layer_1' x='0px' y='0px' width='512.04' height='490.42' viewBox='0 0 512.04 490.412' enable-background='new 0 0 512.04 490.412' xml:space='preserve'><g id='Layer_2' transform='matrix(2.1179629,0,0,2.1179629,-15.078848,-25.89307)'><g id='g477'><circle fill='%234e4a4a' cx='128.075' cy='126.26' r='109' id='circle247'/><linearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='324.56931' y1='-144.0381' x2='427.23499' y2='-261.37109' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23DED9D9' id='stop249'/><stop offset='1' style='stop-color:%236A6363' id='stop251'/></linearGradient><path fill='url(%23SVGID_1_)' d='m 67.243,45.813 c 0,0 -8.167,4.917 -5.292,15.667 2.875,10.75 8.125,16.75 12.25,21.875 4.125,5.125 8.292,12.542 7.625,17.625 -0.667,5.083 -2.375,25.419 10.75,38.647 13.125,13.227 22.875,13.602 22.875,13.602 l -3.25,2.375 -40.597,33.256 11.472,16.787 27.833,23.832 -19.833,-3.666 -1.417,5.25 28.917,0.416 -12,-19.5 -20.5,-18.832 c 0,0 -3.584,-3.793 3.583,-9.043 7.167,-5.25 42.167,-32.043 42.167,-32.043 L 170.659,94.48 c 0,0 3.125,0.125 9,0.5 5.875,0.375 51.542,20.75 51.542,20.75 0,0 -0.778,-15.379 -1.542,-22.75 -0.316,-3.062 0.979,-2.7 2.834,1.667 1.854,4.366 0.75,12 0.75,12 l -1.25,-17.333 -6.917,-9.333 -1.75,8 c 0,0 1.375,8.125 1.75,11.125 0.375,3 -1,4 -5.375,2 -4.375,-2 -18.875,-6.75 -28.5,-8 -9.625,-1.25 -24.375,-1.875 -24.375,-1.875 l -75,1 -4,2.917 c 0,0 0.937,-3.438 -3.063,-10.104 -4,-6.666 -17.52,-39.231 -17.52,-39.231 z' id='path254' style='fill:url(%23SVGID_1_)'/><path fill='%23007a3f' d='m 74.794,89.323 c 0,0 4.563,8.094 4.094,14.469 -0.437,5.938 -0.813,31.187 23.188,45.562 6.234,3.734 11.599,5.156 11.599,5.156 l 0.568,2.303 -13.979,1.104 -35.188,-34.937 0.375,-28.25 5.125,-5.5 2.75,-0.625 z' id='path256'/><path fill='%23005a2b' d='m 99.409,231.063 c 0,0 11.5,1 16.25,0.5 4.75,-0.5 23.583,5.5 23.583,5.5 0,0 -2.751,4.138 -8.667,5.109 -5.917,0.975 -36.583,-7.525 -36.583,-7.525 z' id='path258'/><path fill='%2300663f' d='m 114.243,156.813 c 0,0 -36.739,26.406 -41.667,35.834 -4.928,9.429 8.499,21.668 17.083,28.834 8.584,7.166 21.167,18.873 44.792,19.373 0,0 -15.625,4.875 -39.125,-4.125 -23.5,-9 -49.75,-59 -49.75,-59 z' id='path260'/><polygon fill='%23262626' points='61.576,36.854 65.258,38.479 54.201,46.979 53.076,39.979 ' id='polygon262'/><path fill='%23007a3f' d='m 65.451,35.896 c 0,0 -5.917,-2.458 -10,1.917 -4.083,4.375 -6.041,22 11.792,40.5 0,0 -12.584,-16.998 -12.25,-30.5 0.333,-13.5 10.833,-9.083 10.833,-9.083 z' id='path264'/><radialGradient id='SVGID_2_' cx='351.82419' cy='-188.47951' r='175.0517' gradientTransform='matrix(1,0,0,-1,-256,-90)' gradientUnits='userSpaceOnUse'><stop offset='0.0765' style='stop-color:%238DDB92' id='stop266'/><stop offset='0.1633' style='stop-color:%2377CE7C' id='stop268'/><stop offset='0.3431' style='stop-color:%233EAB45' id='stop270'/><stop offset='0.5021' style='stop-color:%23078A0F' id='stop272'/><stop offset='0.581' style='stop-color:%23108C18' id='stop274'/><stop offset='0.7085' style='stop-color:%2328922F' id='stop276'/><stop offset='0.7148' style='stop-color:%23299230' id='stop278'/></radialGradient><path fill='url(%23SVGID_2_)' d='m 122.201,241.104 c -20.125,-2.125 -38,-19.125 -45,-26.5 -7,-7.375 -16.25,-15.25 -4.625,-26.75 11.625,-11.5 41.667,-31.041 41.667,-31.041 v 0 c -22.215,-5.442 -38.668,-25.774 -38.668,-49.667 0,-4.174 0.718,-7.782 1.095,-11.76 C 76.909,92.855 74.701,87.605 67.826,79.23 60.951,70.855 54.55,60.185 53.263,50.167 51.825,38.979 59.534,35.479 59.534,35.479 c -6.541,0.25 -17.958,11.5 -17.958,11.5 -33.75,31.75 -45.667,84.667 -22.333,130.667 23.332,46 66.333,61.166 86.833,64.834 20.5,3.666 28.375,-1.627 28.375,-1.627 -3.751,1.063 -12.25,0.251 -12.25,0.251 z' id='path281' style='fill:url(%23SVGID_2_)'/><path fill='%23af8513' d='m 238.139,114.566 v 0 c 5.396,3.643 6.938,4.414 5.438,-10.586 -1.5,-15 -15.125,-36.5 -15.125,-36.5 l 0.029,0.145 c 4.205,7.844 11.629,23.352 12.93,37.189 0.991,10.561 0.362,11.776 -3.272,9.752 z' id='path283'/><path fill='%23591f00' d='m 231.075,82.604 2,38.75 h 13.25 c 0,0 4.5,-25.25 -21.25,-58.25 z' id='path285'/><path fill='%238f0404' d='m 81.887,83.542 2.875,1.5 c 0,0 15.979,-21.896 37.48,-23.729 21.5,-1.833 38.499,10.833 44.166,17 5.667,6.167 8.501,8.833 16.834,8.833 8.333,0 36.138,4.457 46.221,8.957 L 235.541,93.762 205.408,65.313 103.243,39.979 Z' id='path287'/><radialGradient id='SVGID_3_' cx='386.72559' cy='-214.623' r='116.2404' gradientTransform='matrix(1,0,0,-1,-256,-90)' gradientUnits='userSpaceOnUse'><stop offset='0.6157' style='stop-color:%23F60000' id='stop289'/><stop offset='0.7247' style='stop-color:%23E70505' id='stop291'/><stop offset='0.9171' style='stop-color:%23C41212' id='stop293'/><stop offset='1' style='stop-color:%23DD7878' id='stop295'/></radialGradient><path fill='url(%23SVGID_3_)' d='m 81.887,83.542 c 0,0 8.813,-17.813 29.188,-24.063 20.375,-6.25 42.25,-3.25 59.375,17.375 l 1.75,1.875 c 0,0 2.875,3.188 11.063,3.5 8.188,0.312 34.313,4.083 44.979,9.333 l 5.041,2.167 c 0,0 3.541,1.625 2.875,-2.792 -0.666,-4.417 -3.932,-24.363 -21.583,-42.958 -21.833,-23 -57.25,-36 -84.25,-35.75 -27,0.25 -47.583,6.75 -64.917,17.417 0,0 -0.833,10.75 0.917,17.75 1.75,7 10.083,25.167 14.083,31.167 0.001,0 1.594,2.291 1.479,4.979 z' id='path298' style='fill:url(%23SVGID_3_)'/><radialGradient id='SVGID_4_' cx='383.82419' cy='-189.31149' r='52.106899' gradientTransform='matrix(1,0,0,-1,-256,-90)' gradientUnits='userSpaceOnUse'><stop offset='0' style='stop-color:%23B1DDF4' id='stop300'/><stop offset='0.0742' style='stop-color:%23A9D7F3' id='stop302'/><stop offset='0.1904' style='stop-color:%2393C7F1' id='stop304'/><stop offset='0.3332' style='stop-color:%236EADEE' id='stop306'/><stop offset='0.4' style='stop-color:%235B9FEC' id='stop308'/><stop offset='0.5273' style='stop-color:%230B85D1' id='stop310'/><stop offset='0.6182' style='stop-color:%231375B3' id='stop312'/><stop offset='0.6537' style='stop-color:%23166FA8' id='stop314'/><stop offset='0.716' style='stop-color:%231E608B' id='stop316'/><stop offset='0.7971' style='stop-color:%232B475C' id='stop318'/><stop offset='0.8424' style='stop-color:%2333383F' id='stop320'/><stop offset='1' style='stop-color:%23363233' id='stop322'/></radialGradient><ellipse fill='url(%23SVGID_4_)' cx='128.075' cy='110.792' rx='46.25' ry='42.75' id='ellipse325' style='fill:url(%23SVGID_4_)'/><linearGradient id='SVGID_5_' gradientUnits='userSpaceOnUse' x1='287.08109' y1='-168.96831' x2='311.81119' y2='-301.85059' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF' id='stop327'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0.53' id='stop329'/></linearGradient><path opacity='0.32' fill='url(%23SVGID_5_)' enable-background='new ' d='m 51.493,45.813 c 0,0 -32.666,37.333 -32.334,78.166 0.328,40.234 19.917,62 40.167,76.666 18.39,13.32 5.667,14.168 -3.5,6.668 0,0 -51.015,-35.127 -38.667,-99.333 6.668,-34.667 34.334,-62.167 34.334,-62.167 z' id='path332' style='fill:url(%23SVGID_5_)'/><linearGradient id='SVGID_6_' gradientUnits='userSpaceOnUse' x1='303.5654' y1='-153.9297' x2='321.5654' y2='-194.5968' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF' id='stop334'/><stop offset='0.517' style='stop-color:%23FFFFFF;stop-opacity:0.53' id='stop336'/></linearGradient><path opacity='0.5' fill='url(%23SVGID_6_)' enable-background='new ' d='m 64.055,76.104 c 0,0 -3.5,1.438 -6.813,-2.25 -3.313,-3.688 -8.688,1.875 -11.25,3 -2.562,1.125 -5.438,-1.938 -5.375,-4.438 0.063,-2.5 -1,-8.688 2.813,-13.25 3.813,-4.562 8.875,-8.625 8.875,-8.625 0,0 -0.834,11.251 11.75,25.563 z' id='path339' style='fill:url(%23SVGID_6_)'/><linearGradient id='SVGID_7_' gradientUnits='userSpaceOnUse' x1='329.18951' y1='-367.64551' x2='329.18939' y2='-263.64569' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF' id='stop341'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0.53' id='stop343'/></linearGradient><path opacity='0.3' fill='url(%23SVGID_7_)' enable-background='new ' d='m 11.928,159.467 c 1.869,6.135 4.289,12.215 7.314,18.18 23.332,46 66.333,61.166 86.833,64.834 20.5,3.666 28.375,-1.627 28.375,-1.627 -3.75,1.063 -12.25,0.25 -12.25,0.25 -16.375,-1.875 -33.292,-14.375 -40.292,-21.75 -0.007,-0.008 4.75,4.125 0,0 -32.353,-2.27 -58.98,-44.915 -69.98,-59.887 z' id='path346' style='fill:url(%23SVGID_7_)'/><path opacity='0.5' fill='%23ffffff' enable-background='new ' d='m 71.346,57.354 c 0,0 4,-6 0.875,-12.063 -2.152,-4.177 -5.5,-4.5 -6.5,-3.625 0,0.001 1,10.188 5.625,15.688' id='path348'/><path opacity='0.5' fill='%23ffffff' enable-background='new ' d='m 79.159,41.313 c 0,0 6.084,-4.25 8.25,-6.167 2.168,-1.917 0.418,-5.417 -1.916,-5.083 -2.334,0.334 -7.5,1.625 -10.625,4.917 -2.49,2.624 -2.271,5.604 -0.521,6.938 1.75,1.334 3.896,0.061 4.812,-0.605 z' id='path350'/><linearGradient id='SVGID_8_' gradientUnits='userSpaceOnUse' x1='365.08691' y1='-116.2905' x2='436.26791' y2='-153.5437' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF;stop-opacity:0.7' id='stop352'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0' id='stop354'/></linearGradient><path opacity='0.32' fill='url(%23SVGID_8_)' enable-background='new ' d='m 183.492,38.479 c -56.75,-41.5 -118.243,-0.275 -118.243,-0.275 0,0 52.743,-50.225 130.493,-0.725 z' id='path357' style='fill:url(%23SVGID_8_)'/><linearGradient id='SVGID_9_' gradientUnits='userSpaceOnUse' x1='279.0625' y1='-183.9019' x2='299.7944' y2='-194.75211' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF;stop-opacity:0.7' id='stop359'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0' id='stop361'/></linearGradient><path opacity='0.6' fill='url(%23SVGID_9_)' enable-background='new ' d='M 54.952,38.071 C 54.935,37.587 54.284,37.855 54.284,37.855 -12.341,89.48 14.346,162.042 14.346,162.042 -2.841,78.229 54.502,38.745 54.502,38.745 c 0,0 0.465,-0.221 0.45,-0.674 z' id='path364' style='fill:url(%23SVGID_9_)'/><linearGradient id='SVGID_10_' gradientUnits='userSpaceOnUse' x1='357.2529' y1='-164.50101' x2='356.90781' y2='-217.6514' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF;stop-opacity:0.7' id='stop366'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0' id='stop368'/></linearGradient><path opacity='0.6' fill='url(%23SVGID_10_)' enable-background='new ' d='m 109.493,79.229 c 0,0 -14,11.625 -11.375,38.75 0,0 -0.688,3.688 -3.75,-1.125 -3.062,-4.813 -3.5,-31.25 15.125,-37.625 z' id='path371' style='fill:url(%23SVGID_10_)'/><linearGradient id='SVGID_11_' gradientUnits='userSpaceOnUse' x1='360.1279' y1='-174.2256' x2='381.99631' y2='-168.7585' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF;stop-opacity:0.7' id='stop373'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0' id='stop375'/></linearGradient><path opacity='0.6' fill='url(%23SVGID_11_)' enable-background='new ' d='m 128.118,75.854 c 0,0 -13.625,3.375 -18.063,9.25 -4.438,5.875 -6.167,-0.313 -1.229,-3.875 4.938,-3.562 12.292,-6.375 19.292,-5.375 z' id='path378' style='fill:url(%23SVGID_11_)'/><path fill='%23af8513' d='m 179.117,91.854 -1.625,3 c 0,0 9.333,27.958 -6.084,47.125 l 2.479,0.354 11,-21 1,-21.667 z' id='path380'/><radialGradient id='SVGID_12_' cx='384.82709' cy='-208.9785' r='125.9904' gradientTransform='matrix(1,0,0,-1,-256,-90)' gradientUnits='userSpaceOnUse'><stop offset='0.182' style='stop-color:%23FFE650' id='stop382'/><stop offset='0.703' style='stop-color:%23FFDB00' id='stop384'/><stop offset='1' style='stop-color:%23D5B319' id='stop386'/></radialGradient><path fill='url(%23SVGID_12_)' d='m 129.408,159.229 -43.333,33.918 c 0,0 -10.251,7.166 -3.583,14.416 6.666,7.25 29.333,31.666 56.083,33.916 26.75,2.25 71,-19 91,-50 20,-31 32.5,-85.499 -4,-128.999 0,0 14.001,22.833 15.834,42.333 1.833,19.5 -1.834,7.166 -19.834,1.333 -18,-5.833 -30.333,-8.667 -34.833,-10.167 -4.5,-1.5 -7.042,-3.5 -7.667,-4.063 0,0 7.229,22.302 -0.375,37.813 -9.5,19.375 -23.959,27.75 -49.292,29.5 z' id='path389' style='fill:url(%23SVGID_12_)'/><g opacity='0.64' id='g397'><path fill='%23ffffff' d='m 103.169,164.258 c 6.383,-4.395 11.073,-7.445 11.073,-7.445 -22.215,-5.442 -38.668,-25.774 -38.668,-49.667 0,-4.174 0.718,-7.782 1.095,-11.76 0.175,-1.84 -0.956,-5.125 -4.223,-9.996 -3.071,7.257 -4.771,15.226 -4.771,23.59 0,24.467 14.531,45.559 35.494,55.278 z' id='path391'/><path fill='%23ffffff' d='M 184.486,82.295 C 174.507,61.981 153.492,47.98 129.173,47.98 c -21.213,0 -39.918,10.655 -50.974,26.863 0.817,1.487 1.569,2.76 2.208,3.72 0,0 1.563,2.229 1.479,4.979 0,0 8.813,-17.813 29.188,-24.063 20.375,-6.25 42.25,-3.25 59.375,17.375 l 1.75,1.875 c 0,0 2.875,3.188 11.063,3.5 0.369,0.015 0.787,0.038 1.224,0.066 z' id='path393'/><path fill='%23ffffff' d='m 179.075,91.917 c 0,0 7.229,22.302 -0.375,37.812 -9.5,19.375 -23.959,27.75 -49.292,29.5 l -12.238,9.58 c 3.883,0.762 7.896,1.17 12.004,1.17 33.967,0 61.5,-27.311 61.5,-60.999 0,-4.174 -0.425,-8.249 -1.229,-12.187 -1.08,-0.307 -1.998,-0.579 -2.703,-0.813 -4.5,-1.501 -7.042,-3.501 -7.667,-4.063 z' id='path395'/></g><linearGradient id='SVGID_13_' gradientUnits='userSpaceOnUse' x1='428.91989' y1='-367.64499' x2='428.91989' y2='-263.64551' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23FFFFFF' id='stop399'/><stop offset='1' style='stop-color:%23FFFFFF;stop-opacity:0.53' id='stop401'/></linearGradient><path opacity='0.3' fill='url(%23SVGID_13_)' enable-background='new ' d='m 229.575,191.479 c 6.829,-10.584 12.78,-23.908 16.208,-38.598 -15.189,29.146 -45.028,66.418 -99.775,72.766 -17.174,1.99 -32.454,1.158 -45.951,-1.514 10.27,8.127 23.77,16.105 38.518,17.346 26.75,2.25 71,-19 91,-50 z' id='path404' style='fill:url(%23SVGID_13_)'/><linearGradient id='SVGID_14_' gradientUnits='userSpaceOnUse' x1='341.9707' y1='-167.76759' x2='410.49091' y2='-167.1665' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%2329506B' id='stop406'/><stop offset='0.0677' style='stop-color:%23304D68' id='stop408'/><stop offset='0.1639' style='stop-color:%23424560' id='stop410'/><stop offset='0.2766' style='stop-color:%23613854' id='stop412'/><stop offset='0.297' style='stop-color:%23673551' id='stop414'/><stop offset='0.5515' style='stop-color:%234D7EBE' id='stop416'/><stop offset='0.7455' style='stop-color:%23633753' id='stop418'/><stop offset='1' style='stop-color:%2329506B' id='stop420'/></linearGradient><path fill='url(%23SVGID_14_)' d='m 89.583,87.094 c 0.742,-0.339 4.361,-2.203 19.41,-11.927 17.667,-11.417 24.833,-1.333 31.667,0.667 6.834,2 10.583,-2 10.583,-2 0,0 -0.095,-0.066 -0.265,-0.176 -6.754,-3.567 -14.567,-5.616 -22.902,-5.616 -16.059,0 -30.201,7.567 -38.493,19.052 z' id='path423' style='fill:url(%23SVGID_14_)'/><path opacity='0.15' fill='%23ffffff' enable-background='new ' d='m 127.999,69.188 c 25.181,0 45.646,19.332 46.222,42.479 0.01,-0.333 0.027,-0.665 0.027,-1 0,-23.61 -20.707,-42.75 -46.25,-42.75 -25.543,0 -46.25,19.14 -46.25,42.75 0,0.335 0.02,0.667 0.027,1 0.578,-23.147 21.044,-42.479 46.224,-42.479 z' id='path425'/><linearGradient id='SVGID_15_' gradientUnits='userSpaceOnUse' x1='415.9873' y1='-229.39549' x2='402.32071' y2='-172.39461' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23343539' id='stop427'/><stop offset='0.3212' style='stop-color:%2329506B' id='stop429'/><stop offset='1' style='stop-color:%23C7DD85' id='stop431'/></linearGradient><path opacity='0.6' fill='url(%23SVGID_15_)' enable-background='new ' d='m 155.688,86.479 c 0,0 14,17.5 3.334,32 -10.668,14.5 -15.502,18.833 -16.168,23.667 0,0 30,-9.168 28.5,-25.5 -1.5,-16.333 -4.833,-22.667 -15.666,-30.167' id='path434' style='fill:url(%23SVGID_15_)'/><linearGradient id='SVGID_16_' gradientUnits='userSpaceOnUse' x1='363.08499' y1='-235.29491' x2='363.61719' y2='-212.6716' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23343539' id='stop436'/><stop offset='0.3212' style='stop-color:%2329506B' id='stop438'/><stop offset='1' style='stop-color:%23496D4E' id='stop440'/></linearGradient><path fill='url(%23SVGID_16_)' d='m 84.864,98.979 c 0,0 1.125,19.75 6.375,23.75 0,0 8.208,20.16 39.542,18.326 l -3.042,5.674 c 0,0 -23.75,6.25 -33.875,-9.125 -10.125,-15.375 -10.125,-25 -9,-38.625 z' id='path443' style='fill:url(%23SVGID_16_)'/><linearGradient id='SVGID_17_' gradientUnits='userSpaceOnUse' x1='492.69629' y1='-215.0396' x2='499.52979' y2='-223.5401' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23F4DD80' id='stop445'/><stop offset='1' style='stop-color:%23F4DD80;stop-opacity:0.3' id='stop447'/></linearGradient><path fill='url(%23SVGID_17_)' d='m 247.033,140.166 c 0,0 -3.25,-14.64 -12.469,-14.234 l 0.094,-1.391 c 0,0.001 9.625,-0.749 12.375,15.625 z' id='path450' style='fill:url(%23SVGID_17_)'/><linearGradient id='SVGID_18_' gradientUnits='userSpaceOnUse' x1='491.7793' y1='-206.5625' x2='467.19501' y2='-274.9928' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23F4DD80' id='stop452'/><stop offset='1' style='stop-color:%23F4DD80;stop-opacity:0.3' id='stop454'/></linearGradient><path fill='url(%23SVGID_18_)' d='m 234.564,125.932 h 1.156 c -0.779,11.214 -6.832,50.207 -35.229,68.214 10e-4,0 30.198,-20.964 34.073,-68.214 z' id='path457' style='fill:url(%23SVGID_18_)'/><path fill='%23d1ab1a' d='m 188.91,226.063 c 0,0 3.582,-9 -7.668,-19.75 0,0 31.25,-18 41.084,-39.334 9.832,-21.332 11.166,-38 10.832,-43.666 0,0 11.75,-1.896 14,16.478 0,0 -2.375,-14.375 -12.5,-15.25 0,0 -1.461,25.083 -12.125,44.563 -9.375,17.125 -24.75,27.375 -39,37.5 0,0 9.627,10.916 5.377,19.459 z' id='path459'/><linearGradient id='SVGID_19_' gradientUnits='userSpaceOnUse' x1='440.0918' y1='-293.00241' x2='445.4176' y2='-309.92001' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23F4DD80' id='stop461'/><stop offset='1' style='stop-color:%23F4DD80;stop-opacity:0.3' id='stop463'/></linearGradient><path fill='url(%23SVGID_19_)' d='m 184.596,205.822 c 0,0 8.625,10.531 4.969,18.719 0,0 2.781,-6.688 -6.063,-17.938 z' id='path466' style='fill:url(%23SVGID_19_)'/><linearGradient id='SVGID_20_' gradientUnits='userSpaceOnUse' x1='414.5322' y1='-303.73389' x2='426.1514' y2='-323.94119' gradientTransform='matrix(1,0,0,-1,-256,-90)'><stop offset='0' style='stop-color:%23F4DD80' id='stop468'/><stop offset='1' style='stop-color:%23F4DD80;stop-opacity:0.3' id='stop470'/></linearGradient><path fill='url(%23SVGID_20_)' d='m 157.033,236.604 c 0,0 -5.625,-10 -6.625,-14.625 0,0 16.25,-4 22.125,-6.875 0,0 4.125,4.75 7,14.5 0,0 0.125,-9.25 -6.875,-16.5 l -24.75,7.75 c 0,0 5.75,12.375 9.125,15.75 z' id='path473' style='fill:url(%23SVGID_20_)'/><path fill='%23d1ab1a' d='m 158.242,238.063 c 0,0 -7.75,-5.998 -11.416,-18.082 0,0 15.666,-3.002 25.916,-7.834 0,0 8.25,7.75 7.25,19.916 0,0 -0.5,-10.916 -7.334,-18.332 0,0 -16.25,6.498 -23.75,7.416 0,-0.001 2.418,8.833 9.334,16.916 z' id='path475'/></g></g></svg>";
        const svg_MicrosoftSpartan_2015="data:image/svg+xml,<svg version='1.1' id='Layer_1' xmlns:x='ns_extend;' xmlns:i='ns_ai;' xmlns:graph='ns_graphs;' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 847.2 847.2' style='enable-background:new 0 0 847.2 847.2;' xml:space='preserve'><style type='text/css'>.st0{fill:%232B2D84;}%3C/style%3E<metadata><sfw xmlns='ns_sfw;'><slices></slices><sliceSourceBounds bottomLeftOrigin='true' height='847.2' width='847.2' x='-180.1' y='-675.1'></sliceSourceBounds></sfw></metadata><path class='st0' d='M423.6,0L423.6,0L423.6,0C189.6,0,0,189.6,0,423.6s189.6,423.6,423.6,423.6h0h0c233.9,0,423.6-189.6,423.6-423.6S657.5,0,423.6,0z M269.7,423.6c0-37.9,2.5-75,7.3-110.8h293.1c4.8,35.7,7.3,72.8,7.3,110.8c0,35.8-2.2,70.9-6.5,104.8H276.3C271.9,494.5,269.7,459.4,269.7,423.6z M616.5,312.8h168.2c10.8,35.4,16.4,72.7,16.4,110.8c0,36-5,71.2-14.7,104.8H617.2c4-33.5,6.2-68.6,6.2-104.8C623.4,385.3,621,348.1,616.5,312.8z M690.6,156.6c32.4,32.4,58.2,69.7,76.7,110.2h-158c-16.3-86.7-45.7-159.3-83.1-206.8C587.7,77.3,644.1,110.2,690.6,156.6z M376.5,67.5C392.4,53.2,408.3,46,423.6,46c0,0,0,0,0,0c15.3,0,31.1,7.2,47.1,21.5c18.9,17,37.1,43.3,52.6,76.2c16.6,35.3,29.8,76.7,39.1,123.1H284.7c9.3-46.4,22.5-87.8,39.1-123.1C339.4,110.8,357.6,84.5,376.5,67.5z M156.6,156.6C203,110.2,259.4,77.3,321,60c-37.3,47.5-66.8,120.1-83.1,206.8h-158C98.4,226.3,124.2,189,156.6,156.6z M62.4,312.8h168.2c-4.5,35.3-6.9,72.4-6.9,110.8c0,36.2,2.2,71.3,6.2,104.8H60.7C51,494.7,46,459.5,46,423.6C46,385.5,51.6,348.2,62.4,312.8z M156.6,690.6c-34-34-60.7-73.4-79.4-116.2h159.6c16.1,89.3,46,164.2,84.2,212.7C259.4,769.8,203,737,156.6,690.6z M470.7,779.6c-15.9,14.3-31.8,21.5-47.1,21.5c0,0,0,0,0,0c-15.3,0-31.1-7.2-47.1-21.5c-18.9-17-37.1-43.3-52.6-76.2c-16.8-35.5-30-77.2-39.3-124c-0.3-1.7-0.7-3.4-1-5.1h280c-0.3,1.7-0.6,3.4-1,5.1c-9.3,46.8-22.6,88.5-39.3,124C507.8,736.3,489.6,762.7,470.7,779.6z M690.6,690.6c-46.4,46.4-102.8,79.3-164.4,96.5c38.2-48.6,68.1-123.4,84.2-212.7h159.6C751.3,617.2,724.6,656.6,690.6,690.6z'/></svg>";
        const svg_Mozilla_Firefox_logo_2004="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' width='132.72' height='127.219' overflow='visible'><ellipse cx='63.755' cy='59.375' fill='%23110070' rx='59.336' ry='59.375'/><radialGradient id='a' cx='64.5688' cy='7.2266' r='104.221' fx='64.5688' fy='7.2266' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%2367c5d5'/><stop offset='.1604' stop-color='%2366c2d3'/><stop offset='.2795' stop-color='%2362b9ce'/><stop offset='.3852' stop-color='%235ca8c6'/><stop offset='.4832' stop-color='%235392ba'/><stop offset='.5759' stop-color='%234874aa'/><stop offset='.6646' stop-color='%233a5097'/><stop offset='.7485' stop-color='%232a2781'/><stop offset='.8146' stop-color='%231b006d'/><stop offset='1' stop-color='%23596aad'/></radialGradient><ellipse cx='63.755' cy='59.375' fill='url(%23a)' rx='58.215' ry='58.254'/><radialGradient id='b' cx='64.5518' cy='14.1748' r='52.2317' fx='64.5518' fy='14.1748' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></radialGradient><path fill='url(%23b)' d='M55.405 89.446c-.072-.316-.857-1.233-1.458-1.438-.599-.205-1.188.884-1.574-.924-1.266.726-1.812-.2-1.812-.2s-1.365.08-1.629 1.751c-.65.769-2.316 3.566-1.431.657.891-2.927-.94-.23-1.11 1.24-.318.653-.855.719-.517-2.218-1.173-.405-1.772-3.127-1.129-3.179-.747-1.041-.16-2.633.462-2.548.622.08 1.69-1.36 1.657-1.694-.033-.333.482-.095.45-2.336-.033-2.247.847-2.803.919-.924.076 1.872 1.194-.613 1.079-1.566-.116-.949.112-3.094.793-1.826-.793-3.137-.167-3.261.309-1.173 1.193.094 1.234.73 1.234.73 1.321-.325 1.954.67 2.056 1.228 1.224-1.445 2.46.113 2.46.113s.853-.283.445 1.2c-.41 1.478 1.772.678 1.251-.384 1.073-.543 2.666 1.102 3.168 2.224.502 1.127-.86 2.723.202 3.109 1.068.384.6 2.242.6 2.242s2.232 1.238.683 2.301l-.528 1.265s1.01 1.127 1.354.456c.344-.672.466.683.466.683-.129-.24.248 1.396 1.64 1.74 1.398.341 2.283 2.55.731 2.578-1.546.025-1.666-.017-2.085.886-.417.899-2.391.931-3.413-.233-1.087.368-3.021-.106-2.452-.976-.938.547-1.824-.922-1.091-1.577.733-.653-.412-1.499-.797-.563-.381.935-2.404 1.396-2.263-.195.042-.472 1.12-.748 1.134-.354.197.455.277-.036.196-.095z'/><radialGradient id='c' cx='64.5537' cy='14.1758' r='52.2289' fx='64.5537' fy='14.1758' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></radialGradient><path fill='url(%23c)' d='M103.541 43.916c.309.306.917.238 1.254.144.339-.097.291-.337.583-.431.287-.097 1.397.431 1.107 1.584-.673.094-.917.912-.917.912s-.673.287-1.013.144c-.338-.144-.338-.097-.821-.05-.483.05-1.643-.622-.387-.622 1.257 0-.143-.577-.675-.577-.53 0-.097-.528.532-.384-.436-.72-.195-1.251.337-.72z'/><radialGradient id='d' cx='64.5488' cy='14.1724' r='52.2373' fx='64.5488' fy='14.1724' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></radialGradient><path fill='url(%23d)' d='M99.188 46.524c-.337.334.049 1.344.483 1.294.433-.047 1.11-.238 1.11-.238s.337.672 0 .866c-.337.19-1.319.106-.047.575 1.304.479 1.64.334 1.737.094.097-.238.53-1.054.773-1.006.193-.431-.676-.815-.192-1.105.479-.288.096-1.343.096-1.343s-.677.047-.966.528c-.29.48-.674-.047-.964-.047-.049.287-.243.527-.243.527l-.193-.434c-.001-.001-1.354-.047-1.594.289z'/><radialGradient id='e' cx='65.4053' cy='19.1201' r='57.3827' fx='65.4053' fy='19.1201' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.2643' stop-color='%230b629b'/><stop offset='.8439' stop-color='%23031747'/><stop offset='1' stop-color='%2300022f'/></radialGradient><path fill='url(%23e)' d='M90.165 47.314c-.042-.123.384-.62.27.024-.262.458 1.058.87 1.428.36 1.241-1.7-1.17-2.522-2.216-1.732-1.056.797-1.638-.912-.425-1.155 1.209-.245 1.311-2.43-.021-2.438 1.176-.58-.453-2.318-1.799-2.615-.217-1.87-2.189-3.059-3.226-2.38-1.047.681-1.137.561-2.671-.37-1.528-.927-2.264 1.928-1.14 3.175 1.131 1.256.311 3.281.358 2.935 0 0-.426.766-.398 1.053-1.294.439-1.672-1.383-2.475-1.786-.585.763-1.53 1.17-1.53 1.17l.071-1.553s-4.017-2.188-5.251-1.575c-1.521.47-1.881 3.991-.5 4.506 1.383.521-1.735 1.818 1.393 5.116 3.213 3.386 4.455 3.483 5.111 2.932.162-.139.442-.347.784-.578.031.13.083.255.163.373.804 1.209-1.869 2.162-2.242 3.894-.379 1.751-.03 5.007 1.556 5.118.302-1.735 3.27-1.122 1.655.45-1.644 1.603-.491 1.886-.491 1.886s.078 3.003 2.592 2.043c-.073.172-.132.392-.167.632-.703-.142-2.421-.357-2.841.841-.53 1.512-2.774-.512-4.344.167-1.563.674-3.844 2.887-3.076 4.443 1.476-.7 2.606 2.456.544 1.808-2.069-.65-1.667.583-1.667.583s-2.154 1.699-.137 3.508c-.775.118-2.152.981-1.688 2.874 0 0-.885.032-1.004 1.726-2.887.582-2.711 1.478 1.633.496-1.753.91 1.226 1.338 2.546 1.217 1.322-.12 4.792 1.591 2.185 1.608-2.612.016-1.834 1.294 1.294 1.355 3.123.064 2.795.788 3.259.756.464-.032 2.484 1.561 2.374 2.444-.113.884 2.116 1.801 3.566.788.074.919 3.886.202 4.45-1.455 4.128.631 4.033-.139 3.114-.629-2.067-.316-5.86-3.063-1.746-1.65 4.093 1.411.15-1.11-.929-2.079-2.35-.457-2.47-2.416-2.47-2.416s1.298-.739.274-2.586c2.539-.471 1.006-1.364 1.291-2.215.285-.854 1.574-1.942 2.016-2.03.084-.115.775.023.134.283-.554.006-.161 1.566.502 1.646 2.242.273 1.586-2.654.269-3.243-1.32-.594-.135-2.204.792-1.12.927 1.082 2.993-.133 2.218-1.504 1.232.854 1.896-1.909 1.372-3.495 1.648-1.429 1.595-4.278.32-4.915-.627-.313-.93-.516-1.082-.905.757-.358 1.761-.622 2.155-.269.641.579 2.425-1.018 2.312-2.885.751.412 1.947-3.395.931-4.727 2.326-3.252 1.699-3.547.921-3.002-1.17 1.622-5.013 3.563-2.034.688 2.892-2.791-.769-.675-1.994-.222-1.441 1.805-2.97.938-2.97.938s.065-1.479-1.796-1.509c.86-2.373-.526-1.516-1.011-2.164-.486-.647-.661-2.229-.512-2.634z'/><radialGradient id='f' cx='64.5508' cy='14.1733' r='52.2333' fx='64.5508' fy='14.1733' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></radialGradient><path fill='url(%23f)' d='M60.007 23.541c-.361.941 1.178 2.47 1.951 1.978.775-.495 1.885-1.482 1.885-1.482s1.177.945.701 1.619c-.479.672-2.386 1.428.374 1.122 2.831-.313 3.347-.897 3.333-1.437-.015-.538.141-2.469.631-2.603.015-.99-1.925-.898-1.253-1.889.672-.986-.905-2.606-.905-2.606s-1.228.719-1.382 1.888c-.155 1.167-1.304.538-1.848.806.141.584-.026 1.212-.026 1.212l-.711-.629c.001-.001-2.571 1.168-2.75 2.021z'/><radialGradient id='g' cx='64.5518' cy='14.1646' r='52.2415' fx='64.5518' fy='14.1646' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></radialGradient><path fill='url(%23g)' d='M64.61 72.966c-.337.334.05 1.343.483 1.296.434-.049 1.11-.24 1.11-.24s.337.672 0 .865c-.339.19-1.319.108-.049.575 1.303.48 1.642.336 1.739.096.095-.24.529-1.056.771-1.009.195-.431-.676-.814-.193-1.102.483-.291.099-1.346.099-1.346s-.676.048-.966.529c-.29.479-.676-.049-.966-.049-.049.288-.24.528-.24.528l-.193-.431c-.001 0-1.354-.048-1.595.288z'/><defs><ellipse id='h' cx='63.755' cy='59.375' rx='58.215' ry='58.254'/></defs><clipPath id='j'><use xlink:href='%23h'/></clipPath><linearGradient id='i' x1='76.3716' x2='93.2318' y1='16.5918' y2='18.0293' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></linearGradient><path fill='url(%23i)' d='M65.061 1.002c-.912.203.613 3.503.613 3.503s-.055 2.216.321 2.329c.374.113 2.852.733 4.147 2.345 1.301 1.614.625 2.463-.458 1.997-1.084-.465-.797.959-.797.959s3.27 1.063.8.995c-2.475-.066 1.666 1.741 1.393 1.93-.273.191-.429 1.231-.429 1.231s-2.183.182-.333.959c6.26 2.637-.669 1.925-.669 1.925l-.884 1.087 1.749 2.194 1.345.962s2.833-.945 3.716-1.093c.884-.146 3.114-1.815 3.114-1.815s.669.478.169-.497c-.501-.976 1.841-.54 2.425.186l4.134 1.867c.054.144.146.274.292.375.806.565-.729 1.535-.573 2.562.156 1.016 1.093 2.704 2.121 2.526-.18-.969 1.851-1.086 1.144-.006-.706 1.077.077 1.056.077 1.056s.653 1.521 2.034.676c-.056.464.227 1.397 1.413 1.459 0 0-.126.506.848.865-.132 1.737.424 1.792.561-.846.245 1.157.992-.471 1.141-1.25.15-.784 1.756-2.505 1.322-.984-.431 1.508 4.735 2.06 5.308.259.578-1.815 2.637-2.763 2.699-3.038.062-.281-4.583-.712-4.07-.493.514.219 1.47-.948 1.115-1.986.576.116.83-2.301-.083-2.927 1.143-2.405.651-2.48.182-2.001-.57 1.205-2.922 3.023-1.327.783 1.609-2.263-.653-.284-1.438.208-.689 1.341-1.899 1.08-1.899 1.08s-.222-.911-1.516-.607c.151-1.612-.653-.838-1.12-1.154-.285-.193-.558-.627-.726-.999 1.115.452 2.612.933 2.354.104-.167-.542 2.112.643 2.192.396l2.848-.396 2.769-1.75C85.388.164 65.061 1.002 65.061 1.002z' clip-path='url(%23j)'/><linearGradient id='k' x1='38.4917' x2='29.1739' y1='19.147' y2='32.8324' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%230f80bc'/><stop offset='.3376' stop-color='%230a5f9e'/><stop offset='1' stop-color='%2300145a'/></linearGradient><path fill='url(%23k)' d='M38.752 6.095c-10.573 4.747-18.551 14.531-18.551 14.531s.938 2.145 1.265 1.987c.33-.156-2.361 5.628-.386 5.954 1.985.325 7.696-3.578 6.637-3.22-1.056.356.595-2.112.595-2.112s2.972-1.318 1.214.202c-1.743 1.511 2.318.187 2.255.496-.064.311.525 1.147.525 1.147s-1.393 1.494.406.892c6.172-2.075.812 1.779.812 1.779l.106 1.312 2.67.464 1.578-.15s1.381-2.436 1.914-3.098c.535-.663 1.028-3.284 1.028-3.284s.803-.084-.213-.468c-1.016-.385.972-1.583 1.886-1.434l4.303-1.336c.138.068.292.103.47.082.985-.114.489 1.603 1.294 2.25.796.644 2.627 1.264 3.283.469-.784-.594.674-2.011.86-.751.187 1.249.767.723.767.723s1.543-2.654 2.036-4.177c.27.377 2.788-3.309 2.025-5.067-.771-1.78.479-3.456.34-3.715-.143-.256-.896.528-.34.34.561-.192-1.589.772-1.874-2.061-.288-2.89-.707.243-.985 1.169.377 1.508 4.29-6.093 4.29-6.093L64.006.869c0 .004-11.481-.957-25.254 5.226z' clip-path='url(%23j)'/><linearGradient id='l' x1='62.6519' x2='62.6519' y1='34.5464' y2='11.8951' gradientUnits='userSpaceOnUse'><stop offset='.0137' stop-opacity='0'/><stop offset='.65' stop-color='%23c4e0e3' stop-opacity='.2'/><stop offset='.8224' stop-color='%23c4e0e3'/><stop offset='.8498' stop-color='%23cde5e8'/><stop offset='.9443' stop-color='%23e8f4f7'/><stop offset='1' stop-color='%23f2fafc'/></linearGradient><ellipse cx='62.652' cy='23.271' fill='url(%23l)' opacity='.5' rx='30.825' ry='19.971'/><filter id='m' width='150%' height='150%' x='-25%' y='-25%'><feGaussianBlur in='SourceAlpha' result='blur' stdDeviation='1.5'/><feOffset dx='1' dy='1' in='blur' result='shift'/><feMerge><feMergeNode in='shift'/><feMergeNode in='SourceGraphic'/></feMerge></filter><g filter='url(%23m)'><linearGradient id='n' x1='64.4775' x2='78.4661' y1='56.3008' y2='48.0854' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23df731b'/><stop offset='.5449' stop-color='%23df731b'/><stop offset='.7014' stop-color='%23ec8811'/><stop offset='.8593' stop-color='%23f4950b'/><stop offset='1' stop-color='%23f79a09'/></linearGradient><path fill='url(%23n)' d='m125.321 43.084-1.426 9.15s-2.039-16.94-4.538-23.273c-3.83-9.704-5.534-9.626-5.545-9.612 2.565 6.519 2.1 10.021 2.1 10.021s-4.545-12.387-16.562-16.328c-14.232-4.665-21.482-2.979-21.428-2.914.054.066 14.709 2.562 17.308 6.133 0 0-6.225 0-12.42 1.785-.28.08 22.793 2.882 27.51 25.938 0 0-2.529-5.277-5.657-6.173 2.057 6.258 1.529 18.133-.43 24.035-.252.759-.51-3.281-4.369-5.021 1.236 8.857-.074 22.905-6.219 26.775-.479.301 3.852-13.868.871-8.39-17.797 27.287-38.956 11.04-47.538 5.249 6.888 1.688 14.205.472 18.441-2.423 4.275-2.922 6.804-5.058 9.075-4.553 2.27.507 3.781-1.771 2.018-3.792-1.765-2.025-6.051-4.808-11.849-3.291-4.089 1.071-9.156 5.595-16.891 1.014-6.599-3.91-6.554-7.085-6.554-9.108 0-2.024 1.8-5.1 5.076-4.595 2.934.453 1.388-1.27 4.545 0 .86.346-.086-4.129-1.31-6.996 2.357-4.919 10.004-6.381 10.575-6.812 1.034-.782.465-1.172.818-2.35.33-1.097.541-4.062-8.017-3.243-3.938.377-6.443-4.726-7.264-5.965.266-1.577.693-3.018 1.271-4.338.587-1.203 1.228-2.305 1.868-3.139.2-.261.374-.49.532-.703 1.276-1.488 2.842-2.76 4.722-3.818.981-.554-10.969-.035-16.346 6.974-1.443.188-3.423-.228-5.636-.228-2.774 0-4.953.303-6.97.81-.323.081-.844.037-1.481-.115-1.775-1.839-6.797-6.259-7.027-12.254 0 0-7.302 5.612-6.209 20.912-.096 8.461-2.594 6.042-3.879 10.634-.598 2.176.899 3.815.899 3.879-.002.033 1.796-1.946 1.796-1.946s-11.323 19.617 3.3 44.66c12.604 21.589 33.755 31.13 55.703 29.272 3.839-.25 7.706-.822 11.564-1.754 51.133-12.363 45.573-74.107 45.573-74.107z'/><linearGradient id='o' x1='41.8389' x2='52.6969' y1='36.9619' y2='37.8922' gradientUnits='userSpaceOnUse'><stop offset='.0112' stop-color='%23941403'/><stop offset='.8972' stop-color='%23e85c0a'/></linearGradient><path fill='url(%23o)' d='M45.469 27.61s2.21 6.039 7.167 6.019c9.457-.038 9.646.093 9.707 1.243.188 3.5-1.54 4.647-2.201 5.145-.663.497-9.668 5.718-9.999 7.211-.331 1.492-10.391-14.198-10.391-14.198l5.717-5.42z'/><linearGradient id='p' x1='24.4502' x2='63.643' y1='33.9526' y2='38.8517' gradientUnits='userSpaceOnUse'><stop offset='.0112' stop-color='%23941403'/><stop offset='.1357' stop-color='%23a32104'/><stop offset='.4978' stop-color='%23c84107'/><stop offset='.7893' stop-color='%23df5509'/><stop offset='.972' stop-color='%23e85c0a'/></linearGradient><path fill='url(%23p)' d='M50.504 34.12s3.072 3.922.749 5.491c-2.838 1.916 4.012 2.335 6.494.942s4.006-3.44 4.093-3.745.902-3.054-4.279-2.096c-3.276.606-4.476.746-7.057-.592z'/><linearGradient id='q' x1='48.731' x2='51.8565' y1='44.3203' y2='42.9451' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23f2c8a9'/><stop offset='1' stop-color='%23ffc'/></linearGradient><path fill='url(%23q)' d='M60.143 40.017c.502-.378 1.616-1.137 2.042-3.011-.311.126-.34-.23-.707-.076-6.955 7.255-7.221 2.203-11.017 3.22-3.46.947-4.237 2.246-4.383 2.347.051.073.104.148.155.221.997.506 1.953 2.122 2.671 3.564.702.836 1.173 1.248 1.241.945.33-1.493 9.335-6.714 9.998-7.21z'/><linearGradient id='r' x1='38.7676' x2='91.3391' y1='82.5825' y2='84.7472' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23b30000'/><stop offset='1' stop-color='%23df731b'/></linearGradient><path fill='url(%23r)' d='M8.18 45.782c-1.42 2.979-10.532 18.377 4.339 44.005 14.552 25.084 39.737 33.276 65.45 27.71 7.34-1.588 15.803-7.331 21.196-11.545-3.465-8.74-1.414-8.412-3.271-7.262-20.714 12.823-37.18.174-49.924-1.443C-.913 91.305 8.345 45.689 8.345 45.689l-.165.093z'/><linearGradient id='s' x1='51.2778' x2='78.6891' y1='74.4243' y2='84.2116' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23941403'/><stop offset='1' stop-color='%23df731b'/></linearGradient><path fill='url(%23s)' d='M47.219 80.933c4.419 1.325 14.06.183 18.201-2.897 2.79-2.074 4.898-3.638 6.671-4.292-3.134-2.129-3.184.889-9.774 2.415-13.728 3.185-20.393-3.695-20.393-3.695.972 5.444 4.372 8.095 5.902 9.036-.406-.36-.619-.571-.607-.567z'/><linearGradient id='t' x1='6.1064' x2='32.8281' y1='87.0566' y2='87.0566' gradientTransform='rotate(2.807 27.6441701 95.55361216)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23b30000'/><stop offset='1' stop-color='%23de5c01'/></linearGradient><path fill='url(%23t)' d='M32.332 105.794S20.904 92.898 17.714 78.456c-4.704-4.443-8.042-8.2-10.259-10.917 1.28 10.277 6.52 26.232 24.877 38.255z'/><linearGradient id='u' x1='209.7227' x2='224.2611' y1='-130.6592' y2='-85.6186' gradientTransform='matrix(.9929 .1186 -.1186 .9929 -207.2682 181.2932)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23u)' d='M22.799 94.082s-7.887-11.228-4.93-20.762c2.66-8.571-.565-3.472-2.441-1.64-1.895 1.851-2.869-5.464-2.821-6.307.003-.018.001-.026-.001-.027-.119-.025-3.754 17.526 10.193 28.736z'/><linearGradient id='v' x1='12.4712' x2='12.4712' y1='61.1074' y2='111.4548' gradientTransform='rotate(2.563 17.15540527 71.76215613)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23v)' d='M11.115 84.294S9.317 61.506 15 58.285c9.025-5.115.753-3.919-1.864-2.499-2.645 1.433-2.4-8-2.026-8.896.367-.883-9.315 8.918.005 37.404z'/><path fill='%23A40000' d='M50.601 17.239s-7.145 7.257-7.092 7.282c.054.026.205 9.315.438 11.948.856 1.011 3.524 7.588 1.482 6.128-2.086-1.49-.582-1.522-.4-.765.005.025.005.037 0 .037-.138.064-5.185-10.923 5.572-24.63z'/><linearGradient id='w' x1='18.3477' x2='12.8857' y1='30.8462' y2='16.8496' gradientUnits='userSpaceOnUse'><stop offset='.0112' stop-color='%23941403'/><stop offset='.4719' stop-color='%23e85c0a'/><stop offset='1' stop-color='%23f9bd5f'/></linearGradient><path fill='url(%23w)' d='M16.613 11.647s-7.594 5.825-6.143 21.805c5.878-5.277 14.19-9.222 14.19-9.222-1.395-.878-7.794-5.997-8.047-12.583z'/><linearGradient id='x' x1='41.7036' x2='54.7924' y1='34.0576' y2='16.8533' gradientUnits='userSpaceOnUse'><stop offset='.1966' stop-color='%23de7210'/><stop offset='.8427' stop-color='%23f9bd5f'/><stop offset='1' stop-color='%23fffccf'/></linearGradient><path fill='url(%23x)' d='m35.328 29.122 11.406 14.185c-3.291-13.93-.761-22.288 7.34-26.847 1.199-.676-16.925.243-18.746 12.662z'/><linearGradient id='y' x1='34.7837' x2='48.0524' y1='57.5415' y2='84.0789' gradientUnits='userSpaceOnUse'><stop offset='.0169' stop-color='%23941403'/><stop offset='.5' stop-color='%23e35100'/><stop offset='1' stop-color='%23df731b'/></linearGradient><path fill='url(%23y)' d='M27.292 64.164C29.237 51.908 46.294 53.71 46.294 53.71c-.761.565-3.683.903-4.52 3.241-2.762 7.719-.128 24.581 17.078 31.653 1.815.748-34.434-6.328-31.56-24.44z'/><linearGradient id='z' x1='54.8252' x2='58.1387' y1='41.2671' y2='44.27' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23eea272'/><stop offset='.1865' stop-color='%23efa777'/><stop offset='.4064' stop-color='%23f2b585'/><stop offset='.643' stop-color='%23f6cd9c'/><stop offset='.8898' stop-color='%23fceebb'/><stop offset='1' stop-color='%23ffc'/></linearGradient><path fill='url(%23z)' d='M62.087 37.338c-.084-.015-.158-.013-.195.037-.21.281-1.021 1.239-2.95 2.81-3.583 2.915-5.093 2.177-7.762 2.774-1.215.271-2.37 1.087-3.148 1.741.315.509.609 1.057.871 1.582.702.836 1.173 1.248 1.241.945.331-1.493 9.336-6.714 9.999-7.211.47-.353 1.468-1.054 1.944-2.678z'/><linearGradient id='A' x1='35.5' x2='50.7214' y1='48.3613' y2='63.8933' gradientUnits='userSpaceOnUse'><stop offset='.1966' stop-color='%23df731b'/><stop offset='.8427' stop-color='%23f9bd5f'/><stop offset='1' stop-color='%23fffccf'/></linearGradient><path fill='url(%23A)' d='M51.09 55.865c.1-2.59-.081-8.881-2.774-11.611-2.057-2.085-2.54-4.474-2.816-7.201-22.363 8.353-25.556 19.272-23.32 18.917 17.886-2.835 22.914-3.182 28.91-.105z'/><linearGradient id='B' x1='847.4707' x2='847.4707' y1='-1065.021' y2='-1007.9581' gradientTransform='rotate(14.693 -3854.0102294 -3747.10077059)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23B)' d='M3.411 71.171s1.554-20.192 11.661-27.582c7.935-5.805 1.773-3.696-1.291-3.456-3.231.256-4.954 2.221-4.331 1.498.027-.03.036-.047.031-.055-.106-.125-7.584 6.15-6.07 29.595z'/><linearGradient id='C' x1='15.8564' x2='-3.4365' y1='36.4131' y2='67.833' gradientTransform='matrix(.9897 -.0801 .0949 1.1727 -3.8203 -4.9468)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c06e'/></linearGradient><path fill='url(%23C)' d='M2.347 55.658s5.416-17.192 16.362-17.047c7.259.097 1.501-6.134-.695-7.081-2.291-.981-2.839-.943-3.374-.469-.802.71-8.004.436-12.293 24.597z'/><linearGradient id='D' x1='80.9292' x2='60.4332' y1='67.8447' y2='71.7597' gradientUnits='userSpaceOnUse'><stop offset='.0047' stop-color='%23fffaee'/><stop offset='.2757' stop-color='%23f5f89b'/><stop offset='.3102' stop-color='%23f3ed91'/><stop offset='.4668' stop-color='%23ecc267'/><stop offset='.6182' stop-color='%23e6a046'/><stop offset='.7611' stop-color='%23e2872e'/><stop offset='.8921' stop-color='%23e07820'/><stop offset='1' stop-color='%23df731b'/></linearGradient><path fill='url(%23D)' d='M76.185 72.486c.823-.807.249-3.903-4.924-5.78-4.694-1.705-12.021 2.63-14.195 3.486 0 0 8.299-1.555 11.411-1.037 4.218.702 5.7 5.301 7.708 3.331z'/><linearGradient id='E' x1='-411.2729' x2='-411.2729' y1='427.6279' y2='475.3195' gradientTransform='rotate(7.252 2864.41924284 3601.48331528)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c06e'/></linearGradient><path fill='url(%23E)' d='M10.342 66.822s-.899-16.902 6.676-24.121c5.947-5.67 1.069-3.255-1.444-2.724-2.65.562-3.865 2.377-3.426 1.71.019-.028.023-.043.019-.049-.103-.091-5.619 5.919-1.825 25.184z'/><linearGradient id='F' x1='-414.4365' x2='-414.4365' y1='422.6836' y2='470.3703' gradientTransform='matrix(.9324 .3616 -.3616 .9324 554.92 -207.713)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c06e'/></linearGradient><path fill='url(%23F)' d='M4.508 61.453s3.201-16.621 12.293-21.801c7.138-4.069 1.823-2.901-.745-2.991-2.708-.093-4.324 1.375-3.738.834.025-.022.033-.037.03-.042-.076-.115-6.878 4.389-7.84 24z'/><linearGradient id='G' x1='13.8481' x2='.5692' y1='55.7974' y2='75.7157' gradientTransform='rotate(-35.865 17.14391484 54.25411547)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c072'/></linearGradient><path fill='url(%23G)' d='M15.303 68.275s-1.75-10.074 2.021-15.033c3.01-3.957.367-2.021-1.03-1.451-1.458.596-2.011 1.771-1.812 1.34.193-.421-6.488 4.756.821 15.144z'/><linearGradient id='H' x1='21.0347' x2='7.7561' y1='49.271' y2='69.1888' gradientTransform='rotate(-35.865 17.14391484 54.25411547)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c072'/></linearGradient><path fill='url(%23H)' d='M17.303 58.775s-1.75-10.074 2.021-15.033c3.01-3.957.367-2.021-1.03-1.451-1.458.596-2.011 1.771-1.812 1.34.193-.421-6.488 4.756.821 15.144z'/><linearGradient id='I' x1='12.3135' x2='6.504' y1='37.8647' y2='48.7088' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23eed8a5'/></linearGradient><path fill='url(%23I)' d='M6.725 45.003s4.087-8.375 9.52-10.024c4.336-1.315 1.35-1.296.014-1.622-1.396-.338-2.431.234-2.054.022.368-.207-7.33.049-7.48 11.624z'/><linearGradient id='J' x1='11.7305' x2='5.9211' y1='44.4917' y2='55.3354' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23eed8a5'/></linearGradient><path fill='url(%23J)' d='M6.142 51.631s4.087-8.375 9.52-10.024c4.336-1.315 1.35-1.296.014-1.622-1.396-.338-2.431.234-2.054.022.367-.208-7.331.049-7.48 11.624z'/><linearGradient id='K' x1='18.313' x2='12.6977' y1='39.8911' y2='53.833' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c072'/></linearGradient><path fill='url(%23K)' d='M9.109 49.803s7.209-14.774 16.794-17.684c7.65-2.32 2.382-2.287.024-2.86-2.462-.597-4.288.414-3.624.039.65-.367-12.93.085-13.194 20.505z'/><linearGradient id='L' x1='20.4468' x2='7.1675' y1='33.1045' y2='53.0234' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c072'/></linearGradient><path fill='url(%23L)' d='M14.037 41.846s4.484-9.189 10.445-10.999c4.758-1.443 1.481-1.422.015-1.779-1.532-.371-2.667.257-2.254.024.404-.228-8.042.053-8.206 12.754z'/><linearGradient id='M' x1='21.3408' x2='9.2385' y1='37.1255' y2='55.279' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f2c072'/></linearGradient><path fill='url(%23M)' d='M15.499 45.092s4.087-8.375 9.52-10.024c4.336-1.315 1.35-1.296.014-1.622-1.396-.338-2.431.234-2.054.022.367-.208-7.331.049-7.48 11.624z'/><linearGradient id='N' x1='60.2861' x2='61.245' y1='34.2974' y2='36.0061' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%238b8b89'/><stop offset='1' stop-color='%23120500'/></linearGradient><path fill='url(%23N)' d='M62.344 34.872c-.047-.873-.176-1.158-4.356-1.229.479.217 1.305.652 2.214 1.398 1.201.984 1.396 2.081 1.52 3.217.407-.774.705-1.841.622-3.386z'/><linearGradient id='O' x1='22.5596' x2='22.5596' y1='28.4922' y2='23.2452' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23O)' d='m37.802 23.206-3.625 5.833s-14.496-2.273-26.785 9.616c-1.016.982 8.038-21.023 30.41-15.449z'/><linearGradient id='P' x1='23.0117' x2='33.9931' y1='34.751' y2='21.918' gradientTransform='rotate(2.292 33.95402226 24.3376076)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23P)' d='M24.784 33.646s3.863-7.172 8.872-9.339c-2.589.082-8.403 2.106-8.872 9.339z'/><linearGradient id='Q' x1='15.5088' x2='9.6995' y1='33.5078' y2='44.3515' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23eed8a5'/></linearGradient><path fill='url(%23Q)' d='M9.92 40.646s4.087-8.375 9.52-10.024c4.336-1.315 1.35-1.296.014-1.622-1.396-.338-2.431.234-2.054.022.368-.207-7.331.049-7.48 11.624z'/><linearGradient id='R' x1='16.3398' x2='27.0674' y1='35.8047' y2='23.2683' gradientTransform='rotate(5.957 21.63040713 35.31468529)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23R)' d='M18.482 34.745s4.217-6.751 9.235-8.548c-2.527-.083-8.323 1.526-9.235 8.548z'/><linearGradient id='S' x1='13.3721' x2='26.2598' y1='22.876' y2='24.641' gradientTransform='rotate(5.19 27.10364464 24.74612466)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23S)' d='M25.712 23.214s-3.18 1.389-8.787-.942l4.999 2.513 3.788-1.571z'/><linearGradient id='T' x1='6.9834' x2='25.1783' y1='23.1094' y2='25.6012' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23T)' d='M24.175 24.105s-4.238 1.642-12.394-.802l6.977 2.776c.863-.798 5.417-1.974 5.417-1.974z'/><linearGradient id='U' x1='15.8809' x2='27.7244' y1='22.228' y2='23.85' gradientTransform='rotate(5.19 27.10364464 24.74612466)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23U)' d='M27.268 22.759s-2.813.856-8.009-1.154l4.999 2.513c.528-.467 3.01-1.359 3.01-1.359z'/><linearGradient id='V' x1='15.2012' x2='4.5215' y1='26.9399' y2='25.8437' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23V)' d='M18.496 25.993s-2.09 1.735-7.443 1.806l4.63.151 2.813-1.957z'/><linearGradient id='W' x1='10.9453' x2='25.7187' y1='37.0996' y2='19.8352' gradientTransform='rotate(5.957 21.63040713 35.31468529)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23W)' d='M13.411 34.871s7.153-9.318 13.044-11.428c-2.968-.097-11.975 3.186-13.044 11.428z'/></g><linearGradient id='X' x1='88.3306' x2='117.2648' y1='117.3682' y2='72.7407' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23de5c01'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23X)' d='M124.199 50.76s.771 17.288-23.244 41.304c-2.669 2.668-17.16 16.244-16.65 20.317.179 1.439 38.021-5.805 39.894-61.621z'/><linearGradient id='Y' x1='105.1567' x2='86.2112' y1='22.7378' y2='14.4171' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23f79a09'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23Y)' d='M77.64 10.096c28.926 2.222 34.528 23.021 34.53 21.748.073-20.22-27.444-21.755-34.53-21.748z'/><linearGradient id='Z' x1='117.8823' x2='91.3593' y1='41.729' y2='17.106' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23de5c01'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23Z)' d='M86.449 18.003s20.053 4.099 25.709 25.354c.75 2.815-2.416-17.267-1.439-15.361.975 1.916-8.071-9.358-24.27-9.993z'/><linearGradient id='aa' x1='1.1396' x2='-9.9659' y1='145.4453' y2='133.9595' gradientTransform='rotate(-1.62 -3656.64028162 -3767.36014584)' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23f79a09'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23aa)' d='M94.464 17.483s18.11 3.775 18.29 32.509c.127 20.338 3.141 7.635 6.131 3.064 2.578-3.948.816-8.76.754-8.748-.01.003-1.305-3.743-.432-2.156.039.07-1.216-1.034-1.207-1.035.201-.03-.697-20.652-23.536-23.634z'/><linearGradient id='ab' x1='113.4365' x2='119.687' y1='55.834' y2='34.3323' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23f79a09'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23ab)' d='M114.857 21.376s6.505 16.945-.389 25.371c-2.25 2.75-2.502 16.839.247 15.545 2.756-1.296 2.157 7.481 1.796 8.48-.008.019-.01.028-.006.031.18.111 13.592-21.66-1.648-49.427z'/><linearGradient id='ac' x1='-51.9663' x2='-52.1943' y1='212.7881' y2='196.4341' gradientTransform='matrix(.9992 -.0412 .0412 .9992 151.8961 -153.906)' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23f79a09'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23ac)' d='M105.814 39.215s4.095 11.989-.193 20.56l3.244 7.245c2.379-5.844 5.408-18.203-3.051-27.805z'/><linearGradient id='ad' x1='-172.7212' x2='-161.4561' y1='332.082' y2='309.8933' gradientTransform='rotate(-4.052 -3665.39646016 -3730.7481068)' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23f79a09'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23ad)' d='M113.016 37.789s2.832 19.03-7.387 36.208c.158 3.973-.539 7.569-1.496 10.532.445.586 1.041.987 1.827 1.057-.347.32-.692.62-1.026.904-.614.271-1.243.558-1.852.853-.13.303-.261.597-.389.879.68-.477 1.438-1.056 2.24-1.731 2.087-.922 3.965-1.638 3.961-1.642 0 0-.383.143-1.303.478-.619.225-1.16.301-1.632.259 7.892-7.192 18.706-23.275 7.057-47.797zm-11.907 50.59c-.902.529-1.558 1.025-1.698 1.408-.103.279.512.118 1.575-.479.055-.319.1-.632.123-.929z'/><linearGradient id='ae' x1='99.2056' x2='100.7206' y1='87.7466' y2='63.1691' gradientTransform='rotate(-4.052 187.35983088 161.7439827)' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23de5c01'/><stop offset='.736' stop-color='%23fefd00'/><stop offset='.7783' stop-color='%23fefe26'/><stop offset='.8369' stop-color='%23fffe54'/><stop offset='.889' stop-color='%23ffff76'/><stop offset='.932' stop-color='%23ffff8b'/><stop offset='.9607' stop-color='%23ffff92'/></linearGradient><path fill='url(%23ae)' d='M100.412 58.065s8.057 22.932-17.693 44.432c-1.519 1.269 10.452.726 11.5.25 3.086-1.402 6.733-10.757 6.303-9.637-.427 1.119 11.957-16.536-.11-35.045z'/><linearGradient id='af' x1='58.3691' x2='105.8753' y1='113.8594' y2='85.4649' gradientUnits='userSpaceOnUse'><stop offset='0' stop-color='%23b9120d'/><stop offset='.078' stop-color='%23bb180d'/><stop offset='.1822' stop-color='%23c0290c'/><stop offset='.3013' stop-color='%23c8450a'/><stop offset='.4314' stop-color='%23d36c08'/><stop offset='.5706' stop-color='%23e29e05'/><stop offset='.7151' stop-color='%23f4da02'/><stop offset='.7921' stop-color='%23fefd00'/><stop offset='.8136' stop-color='%23fefd07'/><stop offset='.8455' stop-color='%23fefd1b'/><stop offset='.8837' stop-color='%23fefe3c'/><stop offset='.9268' stop-color='%23fffe69'/><stop offset='.9736' stop-color='%23ffffa3'/><stop offset='1' stop-color='%23ffffc7'/></linearGradient><path fill='url(%23af)' d='M111.68 72.61s-4.86 29.744-38.461 32.137c-13.157.938-32.048-2.141-30.375 2.877.519 1.556 2.992 8.043 8.636 9.548 15.275 4.075 55.915 2.741 60.2-44.562z'/><linearGradient id='ag' x1='54.2402' x2='102.9066' y1='93.5825' y2='100.176' gradientTransform='rotate(5.674 66.46869015 101.70478684)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23ag)' d='M83.657 95.119s-20.559 4.697-33.878-6.641c-12.187-10.377-6.141-1.643-4.488 2.665 1.698 4.418-7.853 1.042-9.289.332-1.431-.701 22.623 14.384 47.655 3.644z'/><linearGradient id='ah' x1='39.0127' x2='95.5219' y1='89.8896' y2='107.6497' gradientTransform='rotate(8.325 47.22717983 95.2015853)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23ah)' d='M70.408 106.325s-24.525-4.82-32.29-21.438c-6.635-14.197-4.879-3.779-5.178.962-.314 4.877-7.191-1.783-8.11-2.942-.026-.028-.044-.047-.046-.042-.137.09 12.649 20.134 45.624 23.46z'/><linearGradient id='ai' x1='-601.4673' x2='-574.5974' y1='628.9609' y2='680.4042' gradientTransform='rotate(-10.36 -3298.86397576 -3083.50740859)' gradientUnits='userSpaceOnUse'><stop offset='.0562' stop-color='%23de7210'/><stop offset='1' stop-color='%23f6c08f'/></linearGradient><path fill='url(%23ai)' d='M43.617 104.176s-11.714-9.073-16.995-21.514c-4.438-1.542-10.339-5.067-10.456-5.67 1.875 9.667 11.746 20.954 27.451 27.184z'/></svg>";
        const svg_null_ico="data:image/svg+xml,<svg xmlns:xlink='http://www.w3.org/1999/xlink' focusable='false' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24'  height='24' ><path d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z' fill='%23EFEFEF'></path></svg>";
        let style_css_img=create_style("","gm_user_css_Bookmarks",["user_gm_css_img","css_Bookmarks"]);
        style_css_img.textContent+=`
.svg_Google_Chrome_Logo_2008{background-image: url("`+svg_Google_Chrome_Logo_2008+`");}
.svg_MicrosoftSpartan_2015{background-image: url("`+svg_MicrosoftSpartan_2015+`");}
.svg_Mozilla_Firefox_logo_2004{background-image: url("`+svg_Mozilla_Firefox_logo_2004+`");}
.svg_null_ico{background-image: url("`+svg_null_ico+`");}\n`;
        let ico_href="";
        if(browser=="svg_Google_Chrome_Logo_2008"){
            ico_href=svg_Google_Chrome_Logo_2008;
        }else if(browser=="svg_Mozilla_Firefox_logo_2004"){
            ico_href=svg_Mozilla_Firefox_logo_2004;
        }else if(browser=="svg_MicrosoftSpartan_2015"){
            ico_href=svg_MicrosoftSpartan_2015;
        }else{
            ico_href=svg_null_ico;
        }
        rel.rel="icon";
        rel.href=ico_href;
    }
})();