Better Journal2

Repainted and more functionally Journal

As of 2023-12-13. See the latest version.

// ==UserScript==
// @name         Better Journal2
// @version      1.7.1
// @description  Repainted and more functionally Journal
// @author       @dsvl0
// @match        https://journal.top-academy.ru/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=top-academy.ru
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/1212116
// ==/UserScript==


let Version = "1.7.1";
let UpdateFound=false;

let SettingsCreated=false;

let RayanSpawned=false;
let timeout=40;
let loadedtimes=0;
let SettingsLoaded=false;
let PanelSpawned=0;//For Average Marks
let AnyMaxFinalMark=0;
let UnAvaiableSpawned=0;

let Ticks=0;

let StyleLoaded=0;

let SnowSpawned=0;
let LampsTicks=0;
let LastColors=[];
let LampsQueCreated=0;
let LampsQueue=0;

const today = new Date();
const month = today.getMonth();
const day = today.getDate();

let OriginalAvatar=null;



//Cherry
//// 583B53 362533 450D3A 340A2C


let Accent_MainBg="#333333";
let Accent0="#3b3b3b";
let Accent1="#333333";
let Accent2="#451B3D";
let Accent3="#101010";
let Accent_ActDay="#2D782D";//Shed


function IsMyGroup(){//select-univercity

}

function CreateSettings(){
    try{
        const ThemeNum = Number(localStorage.getItem("BJ.DefStyle"));
        var MainFloat = document.querySelectorAll('router-outlet')[(document.querySelectorAll('router-outlet').length)-1]
        var newDiv = document.createElement('div');
        const InputStyle=`
        border-radius: 200px;
        cursor: text;
        width: -webkit-fill-available;
        border: solid 1px white;
        background: `+Accent3.slice(0,7)+`;
        padding-left: 5px;
        color: white;
        `;

        newDiv.className = 'BJSettings';
        newDiv.id="SettingsID";
        newDiv.style.width="-webkit-fill-available";
        newDiv.style.borderRadius="20px";
        newDiv.style.position="relative";
        newDiv.style.marginLeft="18px";
        newDiv.style.marginRight="13px";
        newDiv.style.marginTop="30px";
        newDiv.style.transition="all 1s";
        newDiv.style.padding="10px";
        newDiv.style.background=Accent0;


        var Div00 = document.createElement('div');
        var checkbox = document.createElement('input');
        checkbox.type = "checkbox";
        checkbox.id = "Check1";

        var label = document.createElement('label')
        label.style.marginLeft="10px";
        label.style.color="white";

        label.setAttribute("for", "Check1");
        label.appendChild(document.createTextNode('Видео на заднем плане по ссылке: '));



        var HtmlApplyLink = document.createElement('button');
        HtmlApplyLink.textContent="Сохранить";
        HtmlApplyLink.id="SaveButtonInSettings";
        HtmlApplyLink.style.marginLeft="10px";
        HtmlApplyLink.style.marginRight="10px";
        HtmlApplyLink.style.cursor="pointer";
        HtmlApplyLink.style.background=Accent_MainBg;
        HtmlApplyLink.style.color="white";
        HtmlApplyLink.style.border="none";

        var HtmlVideoLink = document.createElement('input');
        HtmlVideoLink.id="HTMLIdVideoLink";
        HtmlVideoLink.type = "text";
        HtmlVideoLink.style=InputStyle;


        var HtmlDeafLink = document.createElement('button');
        HtmlDeafLink.textContent="Rayan Gosling";
        HtmlDeafLink.id="BJ_HDL";
        HtmlDeafLink.style.backgroundImage="url(https://res.cloudinary.com/dbzfezrjd/image/upload/v1702021092/BetterJournal/rayan_button_libjmb.png)";
        HtmlDeafLink.style.backgroundPosition="50% 25%";
        HtmlDeafLink.style.backgroundSize="auto 200%";
        HtmlDeafLink.style.color="white";
        HtmlDeafLink.style.cursor="pointer";
        HtmlDeafLink.style.border="none";
        HtmlDeafLink.onclick = function() {
            HtmlVideoLink.value="https://res.cloudinary.com/dbzfezrjd/video/upload/v1701688292/BetterJournal/RayanGosling.mp4.mp4";
        };


        var HtmlVid2Link = document.createElement('button');
        HtmlVid2Link.textContent="Lonely Samurai";
        HtmlVid2Link.style.marginLeft="12px";
        HtmlVid2Link.style.backgroundImage="url(https://res.cloudinary.com/dbzfezrjd/image/upload/v1702121084/BetterJournal/samurai_s7kmzs.png)";
        HtmlVid2Link.style.backgroundSize="auto 100%";
        HtmlVid2Link.style.color="white";
        HtmlVid2Link.style.cursor="pointer";
        HtmlVid2Link.style.border="none";
        HtmlVid2Link.onclick = function() {
            HtmlVideoLink.value="https://res.cloudinary.com/dbzfezrjd/video/upload/v1702036134/BetterJournal/LonelySamurai.mp4";
        };

        if (localStorage.getItem("BJ.VideoPlayback") !== null) {HtmlVideoLink.value=localStorage.getItem("BJ.VideoPlayback")}
        if (localStorage.getItem("BJ.VideoPlayback")!==null){checkbox.checked=true;}

        checkbox.addEventListener('change', function() {
            if (this.checked === false){
                RayanSpawned=false;
                localStorage.removeItem("BJ.VideoPlayback");
            }
        });

        HtmlApplyLink.onclick = function() {
            if (checkbox.checked){
                localStorage.setItem("BJ.VideoPlayback", HtmlVideoLink.value);
                var VideoId = document.getElementById("VideoPlayBackBg");
                VideoId.remove();
                RayanSpawned=false;
            }
        };



        var Div01 = document.createElement('div');
        var checkbox2 = document.createElement('input');
        checkbox2.type = "checkbox";
        checkbox2.id = "Check2";

        var label0 = document.createElement('label')
        label0.style.marginLeft="10px";
        label0.style.color="white";
        label0.setAttribute("for", "Check2");
        label0.appendChild(document.createTextNode('Сделать использование боковой панели приятнее'));
        if (localStorage.getItem("BJ.LiteBar")!==null){checkbox2.checked=true;}

        var Div03 = document.createElement('div');
        Div03.id="BJ_Div03";
        var checkbox03 = document.createElement('input');
        checkbox03.type = "checkbox";
        checkbox03.id = "Check03";

        var label03 = document.createElement('label')
        label03.style.marginLeft="10px";
        label03.style.color="white";
        label03.setAttribute("for", "Check03");
        label03.appendChild(document.createTextNode('Прозрачность боковой панели: '));


        function TransSet(){
            var RangeSlide = document.createElement('p');
                RangeSlide.style=`
                background: transparent;
                border: solid 2px;
                color: wheat;
                border-radius: 10px;
                display: inline;
                width: 60px;
                margin-left: 10px;
                padding-inline: 5px;
                `;
                RangeSlide.textContent=Number(localStorage.getItem("BJ.TransparentPanel"));
                RangeSlide.id = "RangeTransBarSlide";

                var PlusButton = document.createElement('button');
                PlusButton.id="BJ_PlusButton";
                PlusButton.style=`
                background: transparent;
                border: solid 2px;
                color: wheat;
                width: 30px;
                margin-left: 3px;
                cursor: pointer;
                border-radius: 10px;
                padding-inline: 5px;
                `;
                PlusButton.textContent="+";
                PlusButton.onclick = function() {
                    if (Number(RangeSlide.textContent) < 95 && Number(RangeSlide.textContent) > 9){
                        RangeSlide.textContent = Number(RangeSlide.textContent) + 5;
                        localStorage.setItem("BJ.TransparentPanel", Number(RangeSlide.textContent));
                    }
                    if (Number(RangeSlide.textContent) === 0) {
                        RangeSlide.textContent = 10;
                        localStorage.setItem("BJ.TransparentPanel", Number(RangeSlide.textContent));
                    }
                };

                var MinusButton = document.createElement('button');
                MinusButton.id="BJ_MinusButton";
                MinusButton.style=`
                background: transparent;
                border: solid 2px;
                color: wheat;
                width: 30px;
                cursor: pointer;
                margin-left: 3px;
                border-radius: 10px;
                padding-inline: 5px;
                `;

                MinusButton.textContent="-";
                MinusButton.onclick = function() {
                    if (Number(RangeSlide.textContent) > 10){
                        RangeSlide.textContent = Number(RangeSlide.textContent) - 5;
                        localStorage.setItem("BJ.TransparentPanel", Number(RangeSlide.textContent));
                    }
                    if (Number(RangeSlide.textContent) === 10){
                        RangeSlide.textContent = "00";
                        localStorage.setItem("BJ.TransparentPanel", RangeSlide.textContent);
                    }
                };

                Div03.appendChild(RangeSlide);
                Div03.appendChild(PlusButton);
                Div03.appendChild(MinusButton);
        }
        if (localStorage.getItem("BJ.TransparentPanel")!==null){checkbox03.checked=true; }

        checkbox03.addEventListener('change', function() {
            if (this.checked) {
                if (localStorage.getItem("BJ.TransparentPanel")===0 || localStorage.getItem("BJ.TransparentPanel")===null) {
                    localStorage.setItem("BJ.TransparentPanel", 10)

                }

                TransSet();

            } else {
                document.getElementById("RangeTransBarSlide").remove();
                document.getElementById("BJ_PlusButton").remove();
                document.getElementById("BJ_MinusButton").remove();
                localStorage.removeItem("BJ.TransparentPanel");
            }
        });



        checkbox2.addEventListener('change', function() {
            if (this.checked) {
                localStorage.setItem("BJ.LiteBar","1");
            } else {
                localStorage.removeItem("BJ.LiteBar");
                var OverlayElement = document.getElementById("LiteBarId");
                OverlayElement.remove();
            }
        });

        var Div04 = document.createElement('div');
        var checkbox04 = document.createElement('input');
        checkbox04.type = "checkbox";
        checkbox04.id = "Check04";

        var label04 = document.createElement('label')
        label04.style.marginLeft="10px";
        label04.style.color="white";
        label04.setAttribute("for", "Check04");
        label04.appendChild(document.createTextNode('Убрать изображение с бокового меню'));
        checkbox04.addEventListener('change', function() {
            if (this.checked) {
                localStorage.setItem("BJ.NonBarImage","1");
            } else {
                localStorage.removeItem("BJ.NonBarImage");
            }
        });
        if (localStorage.getItem("BJ.NonBarImage")!==null){checkbox04.checked=true;}



        if (document.getElementsByClassName("select-univercity")[1].textContent === 'Группа: 9/2-РПО-23/1'){
            var Div000 = document.createElement('div');
            var checkbox000 = document.createElement('input');
            checkbox000.type = "checkbox";
            checkbox000.id = "Check000";

            var label000 = document.createElement('label')
            label000.style.marginLeft="10px";
            label000.style.color="white";

            label000.setAttribute("for", "Check000");
            label000.appendChild(document.createTextNode('Дайте уникальное имя для Миненко Алексей Павловича (Beta): '));

            var ALM_Name = document.createElement('input');
            ALM_Name.id="ALMName";
            ALM_Name.style=InputStyle;
            ALM_Name.type = "text";
            if (localStorage.getItem("BJ.ALPName") !== null) {ALM_Name.value=localStorage.getItem("BJ.ALPName")}
            if (localStorage.getItem("BJ.ALPName")!==null){checkbox000.checked=true;}

            checkbox000.addEventListener('change', function() {
                if (this.checked){
                    localStorage.setItem("BJ.ALPName", ALM_Name.value);
                } else {
                    localStorage.removeItem("BJ.ALPName");
                }
            });
            ALM_Name.addEventListener('input', function (evt) {
                if (checkbox000.checked){
                    localStorage.setItem("BJ.ALPName", ALM_Name.value);
                }
            });
        }


        var Div9 = document.createElement('div');
        var checkbox9 = document.createElement('input');
        checkbox9.type = "checkbox";
        checkbox9.id = "Check9";

        var label9 = document.createElement('label')
        label9.style.marginLeft="10px";
        label9.style.color="white";
        label9.setAttribute("for", "Check9");
        label9.appendChild(document.createTextNode('Установите свою аватарку. Её не смогут увидель люди (по URL) (Поддерживается GIF): '));

        var AVTLink = document.createElement('input');
        AVTLink.id="AVTLink";
        AVTLink.type = "text";
        AVTLink.style = InputStyle;
        if (localStorage.getItem("BJ.AVTLink") !== null) {AVTLink.value=localStorage.getItem("BJ.AVTLink")}
        if (localStorage.getItem("BJ.AVTLink")!==null){checkbox9.checked=true;}
        checkbox9.addEventListener('change', function() {
            if (this.checked){
                localStorage.setItem("BJ.AVTLink", AVTLink.value);
            } else {
                localStorage.removeItem("BJ.AVTLink");
            }
        });
        AVTLink.addEventListener('input', function (evt) {
            if (checkbox9.checked){
                localStorage.setItem("BJ.AVTLink", AVTLink.value);
            }
        });

        var Div10 = document.createElement('div');
        var checkbox10 = document.createElement('input');
        checkbox10.type = "checkbox";
        checkbox10.id = "Check10";

        var label10 = document.createElement('label')
        label10.style.marginLeft="10px";
        label10.style.color="white";
        label10.setAttribute("for", "Check10");
        label10.appendChild(document.createTextNode('Закрепить и минимизировать верхнюю панель'));
        checkbox10.addEventListener('change', function() {
            if (this.checked) {
                localStorage.setItem("BJ.LevBar","1");
            } else {
                localStorage.removeItem("BJ.LevBar");
                if (document.getElementById("LevitationBar") !== null) {
                    document.getElementById("LevitationBar").removeAttribute("id");
                }
            }
        });
        if (localStorage.getItem("BJ.LevBar")!==null){checkbox10.checked=true;}


        var Div1 = document.createElement('div');
        const radio1 = document.createElement("input");
        radio1.type = "radio";
        radio1.name = "Themes";
        radio1.id = "Theme1";
        radio1.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",0)}});
        if (ThemeNum===0){radio1.checked=true;}

        var label1 = document.createElement('label')
        label1.style.marginLeft="10px";
        label1.style.color="white";
        label1.setAttribute("for", "Theme1");
        label1.appendChild(document.createTextNode('Classic Gray Theme'));




        var Div2 = document.createElement('div');
        const radio2 = document.createElement("input");
        radio2.type = "radio";
        radio2.name = "Themes";
        radio2.id = "Theme2";
        radio2.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",1)}});
        if (ThemeNum===1){radio2.checked=true;}
        var label2 = document.createElement('label')
        label2.style.marginLeft="10px";
        label2.style.color="white";
        label2.setAttribute("for", "Theme2");
        label2.appendChild(document.createTextNode('Light Mint Theme'));



        var Div3 = document.createElement('div');
        const radio3 = document.createElement("input");
        radio3.type = "radio";
        radio3.name = "Themes";
        radio3.id = "Theme3";
        radio3.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",2)}});
        if (ThemeNum===2){radio3.checked=true;}
        var label3 = document.createElement('label')
        label3.style.marginLeft="10px";
        label3.style.color="white";
        label3.setAttribute("for", "Theme3");
        label3.appendChild(document.createTextNode('Rayan Gosling Theme'));

        var Div4 = document.createElement('div');
        const radio4 = document.createElement("input");
        radio4.type = "radio";
        radio4.name = "Themes";
        radio4.id = "Theme4";
        radio4.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",3)}});
        if (ThemeNum===3){radio4.checked=true;}

        var label4 = document.createElement('label')
        label4.style.marginLeft="10px";
        label4.style.color="white";
        label4.setAttribute("for", "Theme4");
        label4.appendChild(document.createTextNode('Deep Ocean Theme'));


        var Div5 = document.createElement('div');
        const radio5 = document.createElement("input");
        radio5.type = "radio";
        radio5.name = "Themes";
        radio5.id = "Theme5";
        radio5.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",4)}});
        if (ThemeNum===4){radio5.checked=true;}

        var label5 = document.createElement('label')
        label5.style.marginLeft="10px";
        label5.style.color="white";
        label5.setAttribute("for", "Theme5");
        label5.appendChild(document.createTextNode('Light Fire Theme'));


        var Div6 = document.createElement('div');
        const radio6 = document.createElement("input");
        radio6.type = "radio";
        radio6.name = "Themes";
        radio6.id = "Theme6";
        radio6.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",5)}});
        if (ThemeNum===5){radio6.checked=true;}

        var label6 = document.createElement('label')
        label6.style.marginLeft="10px";
        label6.style.color="white";
        label6.setAttribute("for", "Theme6");
        label6.appendChild(document.createTextNode('Cloudly Weather Theme'));

        var Div7 = document.createElement('div');
        const radio7 = document.createElement("input");
        radio7.type = "radio";
        radio7.name = "Themes";
        radio7.id = "Theme7";
        radio7.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",6)}});
        if (ThemeNum===6){radio7.checked=true;}

        var label7 = document.createElement('label')
        label7.style.marginLeft="10px";
        label7.style.color="white";
        label7.setAttribute("for", "Theme7");
        label7.appendChild(document.createTextNode('Space Black Theme'));

        var Div8 = document.createElement('div');
        const radio8 = document.createElement("input");
        radio8.type = "radio";
        radio8.name = "Themes";
        radio8.id = "Theme8";
        radio8.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",7)}});
        if (ThemeNum===7){radio8.checked=true;}

        var label8 = document.createElement('label')
        label8.style.marginLeft="10px";
        label8.style.color="white";
        label8.setAttribute("for", "Theme8");
        label8.appendChild(document.createTextNode('Camp Fire Theme'));

        var Div11 = document.createElement('div');
        const radio11 = document.createElement("input");
        radio11.type = "radio";
        radio11.name = "Themes";
        radio11.id = "Theme11";
        radio11.addEventListener('change', e => { if(e.target.checked){localStorage.setItem("BJ.SetStyle",8)}});
        if (ThemeNum===8){radio11.checked=true;}

        var label11 = document.createElement('label')
        label11.style.marginLeft="10px";
        label11.style.color="white";
        label11.setAttribute("for", "Theme11");
        label11.appendChild(document.createTextNode('Red Apple Theme'));

        const AllDivs=[Div1, Div2, Div3, Div4, Div5, Div6, Div7, Div8, Div11];

        Div00.appendChild(checkbox);
        Div00.appendChild(label);
        Div00.appendChild(HtmlApplyLink);
        Div00.appendChild(HtmlDeafLink);
        Div00.appendChild(HtmlVid2Link);
        Div00.appendChild(HtmlVideoLink);
        Div01.appendChild(checkbox2);
        Div01.appendChild(label0);
        newDiv.appendChild(Div00);
        newDiv.appendChild(Div01);




        Div03.appendChild(checkbox03);
        Div03.appendChild(label03);
        newDiv.appendChild(Div03);
        if (localStorage.getItem("BJ.TransparentPanel")!==null){TransSet();}

        Div04.appendChild(checkbox04);
        Div04.appendChild(label04);
        newDiv.appendChild(Div04);

        if(document.getElementsByClassName("select-univercity")[1].textContent === 'Группа: 9/2-РПО-23/1'){
            Div000.appendChild(checkbox000);
            Div000.appendChild(label000);
            Div000.appendChild(ALM_Name);
            newDiv.appendChild(Div000);
        }

        Div9.appendChild(checkbox9);
        Div9.appendChild(label9);
        Div9.appendChild(AVTLink);
        newDiv.appendChild(Div9);

        Div10.appendChild(checkbox10);
        Div10.appendChild(label10);
        newDiv.appendChild(Div10);


        Div1.appendChild(radio1);
        Div1.appendChild(label1);
        Div1.style.background="#333333";

        newDiv.appendChild(Div1);

        Div2.appendChild(radio2);
        Div2.appendChild(label2);
        Div2.style.background="#357068a4";
        newDiv.appendChild(Div2);

        Div3.appendChild(radio3);
        Div3.appendChild(label3);
        Div3.style.background="#583B53a4";
        newDiv.appendChild(Div3);

        Div4.appendChild(radio4);
        Div4.appendChild(label4);
        Div4.style.background="#2A5B90a4";
        newDiv.appendChild(Div4);

        Div5.appendChild(radio5);
        Div5.appendChild(label5);
        Div5.style.background="#895615a4";
        newDiv.appendChild(Div5);
        newDiv.style.display="none";

        Div6.appendChild(radio6);
        Div6.appendChild(label6);
        Div6.style.background="#333333a9";
        newDiv.appendChild(Div6);
        newDiv.style.display="none";

        Div7.appendChild(radio7);
        Div7.appendChild(label7);
        Div7.style.background="#100A43a9";
        newDiv.appendChild(Div7);
        newDiv.style.display="none";

        Div8.appendChild(radio8);
        Div8.appendChild(label8);
        Div8.style.background="#B96622a4";
        newDiv.appendChild(Div8);
        newDiv.style.display="none";


        Div11.appendChild(radio11);
        Div11.appendChild(label11);
        Div11.style.background="#C81E1Ea4";
        newDiv.appendChild(Div11);
        newDiv.style.display="none";


        let Nums=0;
        for (const item of AllDivs){
            if (Nums===0){
                item.style.borderStartStartRadius="18px";
                item.style.borderStartEndRadius="18px";
            } else {
                if (Nums===(AllDivs.length-1)){
                    item.style.borderEndStartRadius="18px";
                    item.style.borderEndEndRadius="18px";
                }
            }
            item.style.paddingLeft="10px";
            Nums=Nums+1;
        }

        MainFloat.before(newDiv);
    }catch(e){}
}


function SetStyle(StyleNumber){
    try{
        const SmthChanged=false;
        Accent_MainBg="#333333";
        Accent0="#3b3b3b";
        Accent1="#333333";
        Accent2="#222222";
        Accent3="#101010";
        localStorage.setItem("BJ.DefStyle",StyleNumber);

        if(StyleNumber==1){// Grass
            Accent_MainBg="#1B453Fa9";
            Accent0="#357068a4";
            Accent1="#0C373Da9";
            Accent2="#1F6F63a9";
            Accent3="#126054a9";
        }

        if(StyleNumber==2){// Cherry
            Accent_MainBg="#380E32a9";
            Accent0="#583B53a4";
            Accent1="#362533A9";
            Accent2="#450D3Aa9";
            Accent3="#340A2Ca9";
        }

        if(StyleNumber==3){// Ocean
            Accent_MainBg="#203D5Da9";
            Accent0="#2A5B90a4";
            Accent1="#234F81a9";
            Accent2="#133E6Da9";
            Accent3="#062A52a9";
        }

        if(StyleNumber==4){// Fire
            Accent_MainBg="#3C1D01a9";
            Accent0="#895615a4";
            Accent1="#74460Ca9";
            Accent2="#613A09a9";
            Accent3="#4E2E06a9";
        }

        if(StyleNumber==5){// Cloudly
            Accent_MainBg="#333333a9";
            Accent0="#3b3b3ba4";
            Accent1="#333333a9";
            Accent2="#222222a9";
            Accent3="#101010a9";
        }

        if(StyleNumber==6){// Cloudly
            Accent_MainBg="#14092Ea9";
            Accent0="#160F51a4";
            Accent1="#100A43a9";
            Accent2="#140834a9";
            Accent3="#0C0524a9";
        }
        if(StyleNumber==7){// Cloudly
            Accent_MainBg="#78260080";//78260080
            Accent0="#B96622a4";//B96622a4
            Accent1="#A55A1Da9";//A55A1Da9
            Accent2="#904D17a9";//904D17a9
            Accent3="#7A3F10a9";//7A3F10a9
        }
        if(StyleNumber==8){// Cloudly
            Accent_MainBg="#6b000040";//78260080
            Accent0="#C81E1Ea4";//B96622a4
            Accent1="#cc0000a9";//A55A1Da9
            Accent2="#800000a9";//904D17a9
            Accent3="#330000a9";//7A3F10a9
        }
        document.getElementById("OpenSettings_BJ").style.background=Accent3;
    }catch(e){}
    localStorage.setItem("BJ.SetStyle","-inf");
}



function GenerateColor(){
    let vals=["red","yellow","blue","green"];
    const result = (Math.floor(Math.random() * (4 - 0) + 0));
    return vals[result];

}

function NewYearAnims(){

    if (month===11 & day > 15 || month===0 & day < 10){

        const AllNewYearsElements=[...document.querySelectorAll(".navbar"), ...document.querySelectorAll(".homepage-wrapper .inner")];
        if (Ticks%8 === 0 ){

            let inm=0;
            for (const item of AllNewYearsElements) {
                inm+=1;
                item.style.border="solid 2px";
                const TCol = GenerateColor();
                item.style.borderColor=TCol;
                item.style.boxShadow="0 0px 15px "+TCol
            }

            inm=0;
        }

    }


}


function LoadDefult(){//19c3e5
    Ticks=Ticks+1;
    if (Ticks===501){Ticks=1;}


    if (Ticks===251){
        fetch('https://greasyfork.org/ru/scripts/479183-better-journal', {method: 'GET'})
            .then(response => response.text())
            .then(data => {
            var versionRegex = /<dt class="script-show-version"><span>Версия<\/span><\/dt>\s+<dd class="script-show-version"><span>(.*?)<\/span><\/dd>/;

            // Поиск версии в тексте
            var match = data.match(versionRegex);

            if (match) {
                var version = match[1];
                if (version!==Version){if (version!==""){UpdateFound=true;}}
            } else {
                UpdateFound=false;
            }
        })
            .catch(error => {});


    }

    LampsTicks=LampsTicks+1;
    if(LampsTicks>12){LampsTicks=0;}




    const Notify = [...document.querySelectorAll(".toast-container .toast"), ...document.querySelectorAll('.toast-container .toast:hover')];
    for (const item of Notify) {
        item.style.backgroundColor = Accent2;
        item.style.borderRadius = "20px";
        item.style.color="white";
        item.style.boxShadow="0 0 12px #3b3b3b";
        item.style.width="auto";
    }
    const MiniNotify = document.querySelectorAll(".toast-container .toast .ng-star-inserted");
    for (const item of MiniNotify) {
        item.style.margin="inherit";
    }
    const MiniNotify2 = document.querySelectorAll(".toast-container .toast .notification-success");
    for (const item of MiniNotify2) {
        item.style.height="0px";
    }
    const MiniNotify3 = document.querySelectorAll(".toast-container .toast .ng-star-inserted .message");
    for (const item of MiniNotify3) {
        item.style.paddingLeft="47px";
        item.style.paddingBottom="25px";
    }


    if (UpdateFound===false){
        const btns = document.querySelectorAll("a.button.malachite.referral-link");
        for (const wrapCount of btns) {
            wrapCount.style.display="none";
        }
    } else {
        if (document.getElementById("UpdateButtonCreatedBJ") === null){
            const button = document.querySelectorAll(".button.malachite")[1];
            button.innerHTML = "Обновите BetterJournal";
            button.style.margin="5px";
            button.style.display="flex";
            button.style.width="auto";
            button.id="UpdateButtonCreatedBJ"
            button.style.borderRadius="200px";
            button.style.marginLeft="35px";
            button.style.backgroundColor=Accent_MainBg;
            button.style.margin="5px";
            button.style.marginLeft="19px";
            button.style.padding="13px";
            button.href="https://greasyfork.org/ru/scripts/479183-better-journal";
        }


    }



    const wrapCounts = document.querySelectorAll(".wrap-counts");
    for (const wrapCount of wrapCounts) {
        wrapCount.style.backgroundColor = Accent_MainBg;
    }



    document.querySelector(".wrapper").style.backgroundColor = Accent_MainBg;
    document.querySelector(".navbar").style.backgroundColor = Accent_MainBg;

    document.querySelector(".navbar").style.color = "#FFFFFF";
    document.querySelector(".navbar").style.background = Accent_MainBg;
    document.querySelector(".wrap-counts").style.backgroundColor = "#909090";
    const CountsAndStats = document.querySelectorAll("nav.navbar.navbar-expand-lg.justify-content-between");

    for (const CAS of CountsAndStats){
        CAS.style.Color = "white";
    }
    try{
        const SettingsBtn=document.getElementById("OpenSettings_BJ");
        if (document.getElementById("SettingsID").style.display === "None"){
            SettingsBtn.style.background=Accent_MainBg;
        }

        const Div=document.getElementById("SettingsID");
        Div.style.background=Accent0;
    }catch(e){}

    const countItems = document.querySelectorAll(".count-item");

    for (const countItem of countItems) {
        countItem.style.color="white";
    }
    if (SettingsCreated===false && document.querySelectorAll('.left-block').length === 2){
        SettingsCreated=true;
        const btn = document.createElement('button');

        btn.textContent = '⚙️';
        btn.id = 'OpenSettings_BJ';
        btn.style.borderRadius="200px";
        btn.style.border="none";
        btn.style.height="50px";
        btn.style.width="50px";
        btn.style.marginLeft="20px";
        btn.style.transition="all 0.5s";
        btn.style.cursor="pointer";
        btn.style.background=Accent_MainBg;

        btn.onclick = function() {
            if (document.getElementById("SettingsID")===null && document.querySelectorAll("router-outlet").length === 3) {
                CreateSettings();
            }

            const Div=document.getElementById("SettingsID");
            if (Div.style.display==="none"){
                btn.style.background=Accent3;
                Div.style.display="inherit";
                btn.style.webkitTransform = ("rotate(90deg)");
            } else {
                btn.style.background=Accent_MainBg;
                btn.style.webkitTransform = ("rotate(1deg)");
                Div.style.display="none";
            }

        }


        const targetDiv = document.querySelectorAll('.left-block')[1];
        targetDiv.appendChild(btn);

    }





    const navbars = document.querySelectorAll(".navbar")[1];

    navbars.style.backgroundColor = Accent0;
    navbars.style.Color = "white";




    navbars.style.boxshadow = "1px 1px 15px rgb(66 66 66)";
    navbars.style.margin="0 auto";
    navbars.style.width="fit-content";



    const p = document.querySelectorAll(".item-self p");
    for (const element of p) {
        element.style.color = "white";
    }

    const AllHistoryVals1=document.querySelectorAll("p.history-date");
    const AllHistoryVals2=document.querySelectorAll("p.name-achive.your-awords");
    if (AllHistoryVals2.length > 100){
        for (let i = 0; i < AllHistoryVals2.length; i++) { // выведет 0, затем 1, затем 2
            if (i>50){
                AllHistoryVals1[i].remove();
                AllHistoryVals2[i].remove();
            }
        }
    }

    const pTags = document.querySelectorAll("p");
    for (const item of pTags) {
        item.style.color = "white";
    }
    document.querySelector(".wrap").style.background=Accent_MainBg.slice(0,7);

    const aTags = document.querySelectorAll("a");
    const spanTags = document.querySelectorAll("span");
    const AllVals = [...pTags, ...aTags, ...spanTags, ...p];

    const MakeAllButtonRound = [...document.querySelectorAll(".btn-malachite"), ...document.querySelectorAll(".signal-section .item .signal-form-container .body-form form .submit .button-block button"),
                               ...document.querySelectorAll("button"), ...document.querySelectorAll(".homework-help, .homework-help"),];
    for (const item of MakeAllButtonRound) {
        item.style.borderRadius = "4000px";
    }


    const spanElements=[...spanTags, ...pTags];
    for (const span of spanElements) {
        const text = span.textContent.trim();
        let NeedToPaint = true;

        if (!isNaN(text)) {
            NeedToPaint = false;
        }
        if (text.includes("%")) {
            NeedToPaint = false;
        }
        if (text.includes("1.") || text.includes("2.") || text.includes("3.") || text.includes("4.") || text.includes("5.") || text.includes("6.") || text.includes("7.") || text.includes("8.") || text.includes("9.") || text.includes("0.")) {
            NeedToPaint = false;
        }

        if (NeedToPaint) {
            span.style.color = "white";
        }
    }






    for (const element of AllVals) {
        var text = element.textContent;

        if (text.includes('Миненко Алексей Павлович')) {

            if (localStorage.getItem("BJ.ALPName")!==null){
                var textStart=text.substr(0, text.indexOf("Миненко"));
                var textEnd=text.substr(text.indexOf("Павлович")+8, text.length);
                element.textContent=textStart+localStorage.getItem("BJ.ALPName")+textEnd;
            }

            element.style.textShadow= '1px 0px 15px rgb(255,215,0)';
        }
    }

    // --------------------------------------------    [ New Year ] --------------------------------------------------



    NewYearAnims();




    if (month===11 & day > 15 || month===0 & day < 10){

        if (loadedtimes>10 && SnowSpawned === 0){


            SnowSpawned=1;


            setTimeout( function Snow(){
                var scriptElement = document.createElement('script');
                scriptElement.src = 'https://res.cloudinary.com/dbzfezrjd/raw/upload/v1701368047/BetterJournal/NewYearEvent.js';
                document.body.appendChild(scriptElement);
                var linkElement = document.createElement('link');
                linkElement.rel = 'stylesheet';
                linkElement.type = 'text/css';
                linkElement.id = "SnowId";
                linkElement.href = 'https://res.cloudinary.com/dbzfezrjd/raw/upload/v1701368047/BetterJournal/NewYearEvent_vdq9va.css';

                // Получаем элемент head
                var headElement = document.head || document.getElementsByTagName('head')[0];

                headElement.appendChild(linkElement);


                var htmlString = '<span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span><span class="snowflake"><svg fill="#7ADBFF" xmlns="http://www.w3.org/2000/svg" width="15px" height="15px" viewBox="0 0 50 50"><path d="M24.97-.03A2 2 0 0 0 23 2v4.17l-1.9-1.89a2 2 0 0 0-1.43-.6 2 2 0 0 0-1.39 3.43L23 11.83v9.7l-8.4-4.85-1.74-6.46a2 2 0 0 0-1.9-1.51A2 2 0 0 0 9 11.25l.7 2.6-3.64-2.1a2 2 0 0 0-.95-.28 2 2 0 0 0-1.05 3.75l3.63 2.1-2.57.69a2 2 0 1 0 1.04 3.86l6.43-1.72L21.02 25l-8.41 4.85-6.4-1.72a2 2 0 0 0-.6-.07A2 2 0 0 0 5.18 32l2.53.67-3.64 2.1a2 2 0 1 0 2 3.47l3.63-2.1-.67 2.5a2 2 0 1 0 3.87 1.04l1.7-6.36L23 28.5v9.68l-4.68 4.68a2 2 0 1 0 2.83 2.83L23 43.83V48a2 2 0 1 0 4 0v-4.17l1.88 1.87a2 2 0 1 0 2.82-2.83l-4.7-4.7v-9.7l8.4 4.85 1.74 6.46A2 2 0 1 0 41 38.75l-.7-2.6 3.64 2.1a2 2 0 1 0 2-3.47l-3.64-2.1 2.56-.68a2 2 0 0 0-.5-3.94 2 2 0 0 0-.54.07l-6.41 1.72-8.38-4.83 8.43-4.86 6.38 1.7a2 2 0 1 0 1.03-3.85l-2.5-.68 3.57-2.05a2 2 0 0 0-.91-3.75 2 2 0 0 0-1.1.28l-3.64 2.1.7-2.6a2 2 0 0 0-2.03-2.54 2 2 0 0 0-1.84 1.51l-1.73 6.46L27 21.57v-9.74l4.72-4.72a2 2 0 1 0-2.83-2.83L27 6.18V2a2 2 0 0 0-2.03-2.03z"></path></svg></span>';


                var snowflakesBox = document.createElement('div');
                snowflakesBox.className = 'snowflakes-box';
                snowflakesBox.id="SnowPart";
                snowflakesBox.innerHTML = htmlString;
                document.querySelector(".content").appendChild(snowflakesBox);



            }, 200);

        }




    }






    return 1;

}

function MakeTheVote(){
    try{
        document.querySelector(".modal-content .rating-block").style.background="transparent";
        const Modal = document.querySelectorAll(".modal-content");
        const ModalTexts = document.querySelectorAll(".modal-content.flex-columns .h3");
        const Texts = document.querySelectorAll(".modal-body.flex-columns");

        const text = window.location.href;

        const AllVals = [...document.querySelectorAll(".eval-counter"), ...Modal, ...ModalTexts, ...Texts];
        if (text.includes("schedule")) {
            document.querySelector(".modal-body.flex-column").style.background=Accent1;
            document.querySelector(".modal-body.flex-column").style.padding="20px";
            document.querySelector(".modal-body.flex-column").style.borderRadius="20px";
        }

        for (const item of AllVals) {
            item.style.backgroundColor = Accent1;
            item.style.color = "white";
            item.style.borderRadius="30px";
        }

        const VoteButtons = document.querySelectorAll(".app-tags-input-item");

        for (const item of VoteButtons) {
            item.style.backgroundColor = "#15151599";
            item.style.border = "1px solid #157526";
        }

        const VoteButtonsActive = document.querySelectorAll(".app-tags-input-item.active");

        for (const item of VoteButtonsActive) {
            item.style.backgroundColor = "#26392690";
            item.style.border = "1px solid #157526";
        }


        const TextInputs = document.querySelectorAll(".modal-content .comment-block .comment-block-textarea");
        for (const item of TextInputs) {
            item.style.color="wheat";
            item.style.backgroundColor="#FFFFFF15";
            item.style.borderRadius="10px";
        }


    } catch (e) {}
}


function Login(){
    const div = document.querySelector("section#cover")
    try{div.style.backgroundColor = '#131313'; div.style.color="white";} catch(e){}

    const MakeItRound = document.querySelectorAll(".auth-decoration");

    for (const item of MakeItRound) {
        item.style.borderStartEndRadius = "60px";
        item.style.borderEndEndRadius="8px";
        item.style.borderTop="15px solid #1ee67f";
        item.style.borderStartStartRadius="8px";
        item.style.borderRight="15px solid #1ee67f";
    }


    localStorage.removeItem("BJ(Tests):Len");
    localStorage.removeItem("BJ(Tests):Sum");
    PanelSpawned=0;
    AnyMaxFinalMark=0;
    SettingsCreated=false;
    RayanSpawned=false;
    OriginalAvatar=null;
    if (document.getElementById("VideoPlayBackBg")===null){
        var videoElement = document.createElement("video");

        videoElement.src = localStorage.getItem("BJ.VideoPlayback");
        videoElement.style.width = "100%";
        videoElement.style.height = "100%";
        videoElement.style.objectFit="cover";
        videoElement.id="VideoPlayBackBg";
        videoElement.style.position="fixed";
        videoElement.loop = true;
        videoElement.autoplay = true;
        videoElement.disablePictureInPicture=true;
        videoElement.muted = true;
        videoElement.removeAttributecontrols = false;

        var targetDiv = document.getElementById("cover");

        targetDiv.appendChild(videoElement);
    } else {
        videoElement = document.getElementById("VideoPlayBackBg");
        videoElement.loop = true;
        videoElement.autoplay = true;
        videoElement.muted = true;
        videoElement.disablePictureInPicture=true;
    }

}



function Asker(){//
    const SetNormalPosition = document.querySelectorAll(".signal-main-wrapper__forms");
    for (const item of SetNormalPosition) {
        item.style.width="100%";
    }

    //
    const ModalCont = [...document.querySelectorAll(".modal.show .modal-signal-comment .signal-modal .item .signal-modal-container"),...document.querySelectorAll(".modal.show .modal-signal-comment .signal-modal .item .signal-modal-container .executor-block .text-signal-block"),
                      ...document.querySelectorAll(".modal.show .modal-signal-comment .signal-modal .item .signal-modal-container .author-block .text-signal-block")];
    for (const item of ModalCont) {
        item.style.color="white";
        item.style.backgroundColor=Accent0;
        item.style.borderRadius="30px";
    }

    const FixWhiteBorders = document.querySelectorAll(".modal-content");
    for (const item of FixWhiteBorders) {
        item.style.background='transparent';
        item.style.border = "none";
    }

    const FirstElements = document.querySelectorAll(".signal-section .item .signal-form-container");
    for (const item of FirstElements) {
        item.style.background=Accent2;
        item.style.color="white";
        item.style.borderRadius="30px";
    }

    const DarkInputs = [...document.querySelectorAll(".signal-section .item .signal-form-container .body-form form .form-group textarea"),
                       ...document.querySelectorAll(".form-control")];
    for (const item of DarkInputs) {
        item.style.background=Accent2;
        item.style.borderRadius="15px";
        item.style.color="white";
    }

    const PaddingMenu = document.querySelectorAll(".signal-section .item .signal-form-container .body-form form .form-group select");
    for (const item of PaddingMenu) {
        item.style.backgroundColor=Accent2;
        item.style.color="white";
    }

    const BreakDisabledLock = document.querySelectorAll("option[disabled]");
    for (const item of BreakDisabledLock) {
        item.removeAttribute('disabled');
        item.value="0"
    }

    const MyAsks = document.querySelectorAll(".signal-list-section .item .signal-list-container");
    for (const item of MyAsks) {
        item.style.backgroundColor=Accent2;
        item.style.borderRadius="15px";
        item.style.color="white";
    }

    const ListOfAsks = document.querySelectorAll(".signal-list-section .item .signal-list-container .body-list .row-container-list:nth-child(2n + 1)");
    for (const item of ListOfAsks) {
        item.style.borderRadius="6px";
        item.style.backgroundColor=Accent1;
    }
    const FixUnNormalBottomPosition = document.querySelectorAll(".signal-list-section .item .signal-list-container .body-list");
    for (const item of FixUnNormalBottomPosition) {
        item.style.paddingBottom="20px";
    }
    const FullScreenAwnsers = document.querySelectorAll(".signal-list-section");
    for (const item of FullScreenAwnsers) {
        item.style.width="100%";
    }


}

function ReworkedHomework(){
    if (document.getElementById("HomeworkPageCss") === null){
        var styleTag = document.createElement('style');
        styleTag.id = 'HomeworkPageCss';
        var dynamicStyleCss = document.createTextNode(``);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else if (Ticks % 5 === 0){
        var styleElement = document.getElementById("HomeworkPageCss");
        styleElement.textContent=`
        .homeworks-navigation .ng-select .ng-select-container .ng-value-container, .homeworks-navigation .ng-select .ng-dropdown-panel {color: white; background: `+Accent3+`; border-radius: 20px}
        .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {background: transparent; transition: all 0.3s; }
        .ng-dropdown-panel .scroll-host{border-radius: 15px; background: transparent}
        .homeworks-navigation .ng-select .ng-dropdown-panel .scroll-host .ng-option:hover {background: `+Accent2+`; border-radius: 15px;}
        .col-3.all-task {color:white}
        .homeworks-section .item-homework .item-container .item, .homeworks-section .item-homework .item-container .item.status3 .item-footer{transition: all 0.3s; background: `+Accent_MainBg.slice(0,7)+`; border-radius: 22px; padding-bottom: 5px}
        .homeworks-section .item-homework .item-container .item .item-header {transition: all 0.3s; background: transparent}
        .homeworks-section .item-homework .item-container .item.status3 .item-image, .homeworks-section .item-homework .item-container .item.status2 .item-image, .homeworks-section .item-homework .item-container .item.status5 .item-image {background: url(/assets/images/file.png?v=1623c36fc6651bfbd935ad32f5ec628a) `+Accent1+` center center no-repeat}
        .homeworks-section .item-homework .item-container .item .on-hover {transition: all 0.3s; background-color: `+Accent2+`}

        .homeworks-section .item-homework .item-container .item.status2 .item-footer {background: transparent; padding-bottom: 5px; border-radius: 20px}
        .homeworks-section .item-homework .item-container .item.status1 .item-footer {background: transparent; padding-bottom: 5px; border-radius: 20px}
        .homeworks-section .item-homework .item-container .item.status5 .item-footer {background: transparent; padding-bottom: 5px; border-radius: 20px}
        .filename-tooltip .tooltip-inner {background: `+Accent1+` !important; border-radius: 20px; color: white;}
        .homeworks-section .item-homework .item-container .item .item-header .info-content{background: `+Accent2.slice(0,7)+`; border-radius: 10px}
        .homeworks-section .item-homework .item-container .item .item-header .name-spec:hover .all-name-spec, .homeworks-section .item-homework .item-container .item .item-header .info-comment {background: `+Accent1+`; color:white;}

        .modal-content{background: `+Accent1+`; border-radius: 20px;}
        .text-homework-wrap .center, .text-homework-answer-wrap .center, .text-homework-wrap .text-homework-field-wrap, .text-homework-answer-wrap .text-homework-field-wrap, .text-homework-wrap .evaluation-feedback-wrap .text-review-field-wrap, .text-homework-answer-wrap .evaluation-feedback-wrap .text-review-field-wrap{border-radius: 15px}
        .text-homework-wrap .text-homework-time-spent input:first-child, .text-homework-answer-wrap .text-homework-time-spent input:first-child, .text-homework-wrap .text-homework-time-spent input, .text-homework-answer-wrap .text-homework-time-spent input {background: `+Accent1+`; border-radius: 5px}

        .text-homework-wrap .evaluation-feedback-wrap .evaluation-tags-item, .text-homework-answer-wrap .evaluation-feedback-wrap .evaluation-tags-item {border-radius: 15px; background: transparent}

        .text-homework-wrap .buttons-wrap .btn-decline, .text-homework-answer-wrap .buttons-wrap .btn-decline {background: #555555}
        `;
    }
}

function ReworkedMainPage(){
    if (document.getElementById("MainPageCss") === null){
        var styleTag = document.createElement('style');
        styleTag.id = 'MainPageCss';
        var dynamicStyleCss = document.createTextNode(``);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else if (Ticks % 5 === 0){
        var styleElement = document.getElementById("MainPageCss");
        styleElement.textContent=`
        .homepage-wrapper .inner {background: `+Accent2+`; border-radius: 20px;}
        .homepage-wrapper .part-homeworks .homeworks-content .count-holder.items {background: transparent}
        .homepage-wrapper .part-testing .part-container .testing-content .count-holder.items {background: transparent}
        .homepage-wrapper .rating-blocks .ratings .inner.rating-details {background-color: `+Accent2+`}
        .tooltip, .tooltip-achieve{background: `+Accent1+`; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;}
        .homepage-wrapper .header-title-block {color: white}
        .homepage-wrapper .part-payments .payments-content .pay-image, .homepage-wrapper .part-payments .payments-content .cards .card-item.card1, .homepage-wrapper .part-payments .payments-content .cards .card-item.card2 {background: `+Accent_MainBg.slice(0,7)+`}
        `;
    }
}

function MainPage(){
    var startTime = performance.now()
    const MakeAdRound = document.querySelectorAll(".homepage-wrapper .rating-blocks .ratings .inner.rating-details .part-details");
    for (const Ipos of MakeAdRound){
        Ipos.style.borderRadius = "12px";
    }

    try{document.querySelector(".homepage-wrapper .part-homeworks .homeworks-content .count-holder.items").style.background = 'transparent';} catch(e){}


    const div = document.querySelector(".col-md-4.second-flex-block.block-item-gaming");
    try{div.style.backgroundColor = "rgb(255 0 0 / 0%)";} catch(e){}

    const ExamsTab = document.querySelector(".homepage-wrapper .part-testing .part-container .testing-content .count-holder.items");
    ExamsTab.style.background = 'transparent';


    const Wrapper = document.querySelector(".wrapper");
    Wrapper.style.padding = "0px";
    Wrapper.style.paddingLeft = "10px";
    Wrapper.style.paddingRight = "30px";


    document.querySelector(".homepage-wrapper .part-payments .payments-content .pay-image").style.background=Accent3.slice(0,7)
    document.querySelector(".homepage-wrapper .part-payments .payments-content .cards .card-item.card2").style.background=Accent3.slice(0,7)
    document.querySelector(".homepage-wrapper .part-payments .payments-content .cards .card-item.card1").style.background=Accent3.slice(0,7)


    if (document.getElementById("ChoicedNumFix") === null){
        var styleTag = document.createElement('style');
        styleTag.id = 'ChoicedNumFix';
        var dynamicStyleCss = document.createTextNode(``);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else if (Ticks%5===0){
        var HintStyle = document.getElementById("ChoicedNumFix");
        HintStyle.textContent=`
        .tooltip, .tooltip-achieve {
        background: `+Accent_MainBg+`;
        color: white;
        -webkit-user-select: none;
	    -khtml-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
        }
        `;
    }



    const inners = document.querySelectorAll(".homepage-wrapper .inner");
    for (const inner of inners) {
        inner.style.backgroundColor = Accent0;
        inner.style.borderRadius = "20px";
    }




    const headerTitleBlocks = document.querySelectorAll(".header-title-block")[6];

    headerTitleBlocks.style.color = "white";




    if (document.querySelector(".homepage-wrapper ul li .name-achive span").style.display !== "flex"){ document.querySelector(".homepage-wrapper ul li .name-achive span").style.display="flex";}

    const myName = document.querySelector("span.full-name-block.main-name");
    myName.style.color="cyan";
    myName.style.background=Accent0;
    myName.style.borderRadius="230px";
    if (localStorage.getItem("BJ:Debug") === "1") {console.log(`LoadDefult():  took ${performance.now() - startTime} milliseconds`)}


}



function Shedule(){



    const HwInside = document.querySelectorAll(".modal .modal-dialog .on-hover");
    for (const item of HwInside) {
        item.style.backgroundColor = Accent2;
        item.style.borderRadius="40px";
        item.style.boxShadow="0px 0px 20px rgb(0 0 0 / 47%)";
    }


    const scheduleSections = document.querySelectorAll('.schedule-section');

    for (const scheduleSection of scheduleSections) {
        const items = scheduleSection.querySelectorAll('.item');

        for (const item of items) {
            const contentSchedule = item.querySelector('.content-schedule');
            const dayHolders = contentSchedule.querySelectorAll('.day-holder');

            for (const dayHolder of dayHolders) {
                const notDays = dayHolder.querySelectorAll('.not-days');

                for (const notDay of notDays) {
                    notDay.style.backgroundColor = Accent2;
                }
            }
        }
    }

    const ModCont = document.querySelectorAll(".modal-content");
    for (const item of ModCont) {
        item.style.display = "contents";
    }



    const days = document.querySelectorAll(".schedule-section .item .content-schedule .week .day");

    days.forEach((day) => {
        day.style.backgroundColor = Accent2;
        day.style.Color = "#ffffff";
    });

    const dhd = document.querySelectorAll(".schedule-section .item .content-schedule .day-holder .has-day");

    dhd.forEach((day_hd) => {
        day_hd.style.backgroundColor = Accent2;//
        day_hd.style.Color = "white";
    });


    const cdsfix = document.querySelectorAll(".schedule-section .item .content-schedule .day-holder .day");

    cdsfix.forEach((cdayf) => {
        cdayf.style.display="table-row";
        cdayf.style.Color="white";
        cdayf.style.borderRadius="15px";
    });

    const cds = document.querySelectorAll(".schedule-section .item .content-schedule .day-holder .day .active-day");

    cds.forEach((cday) => {
        cday.style.Color="white";
        cday.style.backgroundColor = Accent_ActDay;
        cday.style.background = Accent_ActDay;
        cday.style.borderRadius="13px";
    });


    const items = document.querySelectorAll(".item");



    for (const wrapCount of items) {
        wrapCount.style.backgroundColor = Accent_MainBg+"e6";
    }
    const spans = document.querySelectorAll("span.mount");

    // Устанавливаем цвет всех тегов на белый
    for (const span of spans) {
        span.style.color = "white";
    }

    //SCHEDULE
    const shcs = document.querySelectorAll(".schedule-section .item .content-schedule");
    for (const wrapCount of shcs) {
        wrapCount.style.borderRadius="25px";
        wrapCount.style.backgroundColor = Accent0;
    }
    //SCHEDULE
    const shcs2 = document.querySelectorAll(".day-holder");
    for (const wrapCount of shcs2) {
        wrapCount.style.backgroundColor = 'transparent';

    }
    // Получаем все элементы с указанным селектором
    const shcs3 = document.querySelectorAll(".schedule-section .item .content-schedule .day-holder .is-today");

    // Циклом перебираем все элементы
    for (const element of shcs3) {
        // Устанавливаем параметры border
        element.style.border = "4px solid #E77F10";
        element.style.boxShadow="none";
    }
}


function Homework(){
    //.homeworks-navigation .ng-select .ng-select-container .ng-value-container

// Найдите все элементы .homeworks-section .item-homework .item-container .item.status3 .item-image.







    const TaskDescription = document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-header .name-spec .all-name-spec");
    for (const image of TaskDescription) {
        image.style.background="#ffffff2e";
    }

    const TaskComment = document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-header .info-comment");
    for (const image of TaskComment) {
        image.style.color="white";
        image.style.background=Accent3;
    }




    const PadMenu = [...document.querySelectorAll(".ng-select.ng-select-single .ng-select-container .ng-value-container"), ...document.querySelectorAll(".col-3.all-task")];
    for (const image of PadMenu) {
        image.style.color="white";
    }




    const AllPaddingMneus = document.querySelectorAll(".ng-select.ng-select-single .ng-select-container .ng-value-container, .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value");
    for (const image of AllPaddingMneus) {
        image.style.background = 'transparent';
    }



    const FixIText = document.querySelectorAll(".ng-value-container");

    for (const FixI of FixIText) {
        FixI.style.color = "#FFFFFF";
    }




    const FixUpload = document.querySelectorAll(".text-homework-wrap .evaluation-feedback-wrap .evaluation-tags-item, .text-homework-answer-wrap .evaluation-feedback-wrap .evaluation-tags-item");

    // Установите background-color всех элементов на #333333.
    for (const image of FixUpload) {
        image.style.borderRadius = "16px";
        image.style.pading="2px 9px";
        image.style.backgroundColor = Accent3;
    }

    const UploadMenu = document.querySelectorAll(".modal-content");
    for (const item of UploadMenu) {
        item.style.backgroundColor = Accent2;
    }

    const Inputs = [...document.querySelectorAll(".text-homework-wrap .text-homework-time-spent input:first-child, .text-homework-answer-wrap .text-homework-time-spent input:first-child"),
                    ...document.querySelectorAll(".text-homework-wrap .text-homework-time-spent input, .text-homework-answer-wrap .text-homework-time-spent input")]

    for (const item of Inputs) {
        item.style.borderRadius = "8px";
        item.style.width = "35px";
        item.style.color = "wheat";
        item.style.backgroundColor = Accent1;
    }


    const FixUploadActive = document.querySelectorAll(".text-homework-wrap .evaluation-feedback-wrap .evaluation-tags-item.active, .text-homework-answer-wrap .evaluation-feedback-wrap .evaluation-tags-item.active");

    // Установите background-color всех элементов на #333333.
    for (const image of FixUploadActive) {
        image.style.backgroundColor = Accent1;
    }


    const MakeUploadRoundly = document.querySelectorAll(".modal-sm .modal-content");
    for (const item of MakeUploadRoundly) {
        item.style.borderRadius = "30px";
    }


    const it = document.querySelectorAll(".homeworks-section .item-homework .item-container .item");
    for (const item of it) {
        item.style.backgroundColor = Accent1;
        item.style.borderRadius="20px";
    }

    const darkdescription = document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-header .info-content");
    for (const item of darkdescription) {
        item.style.borderstartstartradius="20px";
        item.style.borderstartendradius="20px";
        item.style.backgroundColor = Accent2.slice(0,7);
        item.style.color="white";
    }

    const HintTitles = document.querySelectorAll(".header-info");
    for (const item of HintTitles) {item.style.color="white";}

    const MakeItRound = document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-header");
    for (const item of MakeItRound) {
        item.style.borderradius="20px";
    }




    const BackedHW = document.querySelectorAll(".homeworks-section .item-homework .item-container .item.status5 .item-image");

    for (const image of BackedHW) {
        image.style.background = Accent3;//2
    }

    const SucsessHW = document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-image");

    for (const image of SucsessHW) {
        image.style.background = Accent3;//2
    }

    const ochomeworks = document.querySelectorAll(".homeworks-section .item-homework .item-container .item.status2 .item-footer");

    ochomeworks.forEach((hwoc) => {
        hwoc.style.backgroundColor = "#483413";
    });


    const Backedworks = document.querySelectorAll(".homeworks-section .item-homework .item-container .item.status5 .item-footer");

    Backedworks.forEach((hwoc) => {
        hwoc.style.backgroundColor = "#494949";
    });

    if (document.querySelector(".homeworks-navigation .ng-select .ng-dropdown-panel")!== null) {
        document.querySelector(".homeworks-navigation .ng-select .ng-dropdown-panel").style.background=Accent_MainBg;
        document.querySelector(".homeworks-navigation .ng-select .ng-dropdown-panel").style.borderRadius="15px";
    }


    const MakeTopCorners = document.querySelectorAll(".item-header");
    for (const item of MakeTopCorners) {
        item.style.cssText = "padding: 10px 15px; color: #a3aec8; background-color: "+Accent2+"; position: relative; border-start-start-radius: 20px; border-start-end-radius: 20px; ";
    }

    const MakeEndCorners = document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-footer");
    for (const item of MakeEndCorners) {
        item.style.cssText = "padding: 10px 15px; color: #a3aec8; background-color: "+Accent2+"; position: relative; border-end-start-radius: 20px; border-end-end-radius: 20px; shadow: none";
    }

    if (document.querySelectorAll(".homeworks-section .item-homework .item-container .item .item-header").length > 1 && document.getElementById("TxtHintFix") === null){
        var styleTag = document.createElement('style');
        styleTag.id = 'TxtHintFix';
        var dynamicStyleCss = document.createTextNode(`
        .filename-tooltip .tooltip-inner {background-color: transparent !important; color: white;}
        .homeworks-navigation .ng-select .ng-dropdown-panel .scroll-host .ng-option {background: transparent; transition: all 0.3s; border-radius: 15px;}
        .homeworks-navigation .ng-select .ng-dropdown-panel .scroll-host .ng-option:hover {background: `+Accent3+`;}
        bs-tooltip-container.tooltip.in.tooltip-bottom.bs-tooltip-bottom.bottom.filename-tooltip.show {background-color: `+Accent_MainBg+`}
        `);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else if (document.getElementById("TxtHintFix") !== null) {
        var styleHints=document.getElementById("TxtHintFix");
        styleHints.textContent=`
        .filename-tooltip .tooltip-inner {background-color: transparent !important; color: white;}
        .homeworks-navigation .ng-select .ng-dropdown-panel .scroll-host .ng-option {background: transparent; transition: all 0.3s; border-radius: 15px;}
        .homeworks-navigation .ng-select .ng-dropdown-panel .scroll-host .ng-option:hover {background: `+Accent3+`;}
        bs-tooltip-container.tooltip.in.tooltip-bottom.bs-tooltip-bottom.bottom.filename-tooltip.show, bs-tooltip-container.tooltip.in.tooltip-top.bs-tooltip-top.top.filename-tooltip.show {background-color: `+Accent_MainBg+`; border-radius: 15px; }
        `;
    }
}




function CreateAvgMarks(){
    var TestsVal = 0;

    if (Number(localStorage.getItem("BJ(Tests):Len"))!==0){

        TestsVal = Number(localStorage.getItem("BJ(Tests):Sum") / Number(localStorage.getItem("BJ(Tests):Len")));

    }

    const ControleMarks = [...(document.querySelectorAll("span.kr"))];
    ControleMarks.shift();//Correct
    const Classwork=[...document.querySelectorAll("span.klz")];
    Classwork.shift();//Corrent
    const AllWorks=[...ControleMarks, ...Classwork];
    const HomeWorks=[...document.querySelectorAll(".progress-section .item .main-block .block-day .all-less .lessons .rating span")];//Correct


    let Marks = 0;
    let TotalMarks = 0;
    let TotalHW = 0;//
    let TotalControl=0;//
    let TotalClass=0;//


    let HWMarks = 0; // Changed `const` to `let`
    let Summ = 0;

    let Controle_Marks = 0; // Changed `const` to `let`
    let Controle_Summ = 0;

    let Class_Marks = 0; // Changed `const` to `let`
    let Class_Summ = 0;

    HomeWorks.forEach((Pane) => {
        const computedStyle = window.getComputedStyle(Pane);
        const background = computedStyle.getPropertyValue("background-color");
        if (background === "rgb(217, 24, 66)") {
            HWMarks++; // Use ++ operator instead of HWMarks = HWMarks + 1
            Summ += Number(Pane.textContent);
        }
        TotalHW = Summ / HWMarks;
    });

    ControleMarks.forEach((Pane) => {
        Controle_Marks++; // Use ++ operator instead of HWMarks = HWMarks + 1
        Controle_Summ += Number(Pane.textContent);

        TotalControl = Controle_Summ / Controle_Marks;
    });

    Classwork.forEach((Pane) => {
        Class_Marks++; // Use ++ operator instead of HWMarks = HWMarks + 1
        Class_Summ += Number(Pane.textContent);

        TotalClass = Class_Summ / Class_Marks;
    });

    let FUllFM=(((TotalHW + TotalControl + TotalClass + TestsVal) / 4)+'')
    let FinalMark=FUllFM.slice(0,6);

    if (Number(FinalMark)>Number(AnyMaxFinalMark)){AnyMaxFinalMark=Number(FinalMark);}


    if (PanelSpawned===0){//localStorage.removeItem("BJ(Tests):Len");


        const colClass = "col-md-12";
        const itemClass = "item";

        const examDiv = document.createElement("div");
        examDiv.classList.add(colClass);
        examDiv.classList.add(itemClass);

        const contentDiv = document.createElement("div");
        contentDiv.setAttribute("id", "AverageMarks");
        contentDiv.style.color="white";
        contentDiv.classList.add("content-progress");

        const headerDiv = document.createElement("div");
        headerDiv.classList.add("header");
        headerDiv.textContent = "Средние оценки";
        headerDiv.style.color="white";

        const Progress = document.createElement("progress");
        Progress.setAttribute("value", 0);
        Progress.setAttribute("id", 'PGBar');
        Progress.setAttribute("max", '12');
        Progress.setAttribute("style", 'vertical-align: bottom; width: -webkit-fill-available; accent-color: skyblue');



        const noDataDiv = document.createElement("div");
        noDataDiv.setAttribute("id", "AM_FI");
        if (TestsVal===0){
            noDataDiv.textContent = "Данные неточны. Для верного отображения зайдите во вкладку \"Тесты\"";
        } else {noDataDiv.innerHTML = "Загрузка...";}
        contentDiv.appendChild(headerDiv);
        contentDiv.appendChild(Progress);
        contentDiv.appendChild(noDataDiv);

        examDiv.appendChild(contentDiv);

        const rowDiv = document.querySelector(".row");
        rowDiv.appendChild(examDiv);
        rowDiv.insertBefore(examDiv, rowDiv.firstChild);
        PanelSpawned=1;
    } else if (Ticks%5 === 0){
        const ProgressBar=document.getElementById("PGBar");
        if (TestsVal!==0){ProgressBar.setAttribute("value", AnyMaxFinalMark+'');}


        const TextArea=document.getElementById("AM_FI");
        const line0="<font color='gray'>\"в.п\" - Означает что значение будет показываться только по выбранному предмету</font><br>"
        var line1 = "";




        if (TestsVal===0){
            localStorage.setItem("BJ:WaitingForTestsPage", "1");
            line1="<font color='red'>Данные общего среднего балла неточны.<br>Посетите страницу <a href='https://journal.top-academy.ru/ru/main/library/page/index/7'>Тесты</a> и вернитесь сюда для получения последних данных</font><br><br>"
            TextArea.innerHTML = line1;
        } else {
            if (FinalMark+''===AnyMaxFinalMark+''){
                line1 = "Общий средний балл: <b><font color='#A3FFA3'>"+(FinalMark+'').slice(0,6)+" -> ("+(Math.round(FinalMark*10)/10)+")</font></b><br>"
            } else {
                line1 = "Общий средний балл: <b><font color='#A3FFA3'>"+(AnyMaxFinalMark+'').slice(0,6)+" -> ("+(Math.round(AnyMaxFinalMark*10)/10)+")</font></b><br>"
            }


            const line2 = "Ср. балл ДЗ (в.п): <b><font color='#F2FFA3'>"+(TotalHW+'').slice(0,5)+"</font></b><br>";
            const line3 = "Ср. балл Работы в Классе (в.п): <b><font color='#FFE6A3'>"+(TotalClass+'').slice(0,5)+"</font></b><br>";
            const line4 = "Ср. балл Контрольных (в.п): <b><font color='#FFE6A3'>"+(TotalControl+'').slice(0,5)+"</font></b><br>";
            const line5 = "Ср. балл тестов(в.п): <b><font color='#FFD5A3'>"+((TestsVal+'').slice(0,5))+"</font></b><br>";
            const line6 = "Эффективность обучения(в.п): <b><font color='#FFD5A3'>"+((FUllFM/0.12)+'').slice(0,5)+"%</font></b><br>";



            const TotalText=line1+line2+line3+line4+line5+line6+line0;
            TextArea.innerHTML = TotalText;
        }
    }
}







function Marks(){


    try{CreateAvgMarks();}catch(e){if (Number(localStorage.getItem("BJ:Debug"))===1) {console.log(e)} else {console.log("Failed To Execute CreateAvgMarks function")}}
    var TestsVal = 0;
    if (Number(localStorage.getItem("BJ(Tests):Len"))!==0){

        TestsVal = Number(localStorage.getItem("BJ(Tests):Sum") / Number(localStorage.getItem("BJ(Tests):Len")));

    }



    const attendanceAnchors = document.querySelectorAll(".progress-section .item .content-progress");

    for (const aa of attendanceAnchors) {
        aa.style.borderRadius= "35px";
        aa.style.backgroundColor = Accent0;
        aa.style.Color='white';
    }


    const FixPadPanel = document.querySelectorAll(".ng-dropdown-panel .ng-dropdown-panel-items .ng-option");
    for (const item of FixPadPanel) {
        item.style.background=Accent1;
    }
    const FixMARKSItem = document.querySelectorAll(".circle");
    for (const item of FixMARKSItem) {
        item.style.color="lightgray";
    }


    const PadMenu = document.querySelectorAll(".ng-select .ng-select-container");
    const LeftPanel = document.querySelectorAll(".left-block-graph");
    const RightPanel = document.querySelectorAll(".right-block-graph");
    const AllVals = [...PadMenu, ...LeftPanel, ...RightPanel, ...document.querySelectorAll(".no-data"), ...document.querySelectorAll(".lessons"), ...document.querySelectorAll(".date")];



    for (const item of AllVals) {
        item.style.color="White";
    }


    const konrab=document.querySelectorAll('.progress-section .item .main-block .block-day .all-less .lessons .kr');

    for (const element of konrab) {
        element.style.borderRadius="10px";
        element.style.background = '#4a7250';
    }

    const elements = document.querySelectorAll('.progress-section .item .content-progress .select .ng-select .ng-select-container .ng-value-container');

    for (const element of elements) {
        element.style.backgroundColor = Accent1;
        element.style.Color='white';
    }

    const FixSomeContent=document.querySelectorAll('.progress-section .item .content-progress .description .circle');
    for (const element of FixSomeContent) {
        element.style.Color='white';
    }



    const ComeInTime = document.querySelectorAll('.progress-section .item .main-block .block-day .all-less .lessons');

    for (const element of ComeInTime) {
        element.style.borderRadius="10px";
        element.style.backgroundColor = '#535353';
    }

    const Late = document.querySelectorAll('.progress-section .item .main-block .block-day .all-less .pass');

    for (const element of Late ) {
        element.style.borderRadius="10px";
        element.style.backgroundColor = '#48273a';
    }


}


function Materials(){
    const MaterialCard = [...document.querySelectorAll('.sections-lessons .lessons-block'), ...document.querySelectorAll('.section-libs .books-block'), ...document.querySelectorAll('.section-video .video-block'),
                          ...document.querySelectorAll('.section-article .article-block'),...document.querySelectorAll('.sections-lessons .lessons-block .lesson-info .full-lesson-info'),
                         ...document.querySelectorAll('.section-article .article-block .text-article .article-description:hover .all-description'),
                         ...document.querySelectorAll('.sections-lessons .lessons-block .lesson-title .full-lesson-theme')
                         ];
    for (const element of MaterialCard) {
        element.style.color="white";
        element.style.borderRadius = '20px';
        element.style.background = Accent2;
        element.style.boxShadow = '0px 2px 15px #000000';
    }

    const MaterialCardFix_LastElements = [...document.querySelectorAll('.section-work .work-block .item-header'), ...document.querySelectorAll('.section-tests .test-block-index .header'),
                                          ...document.querySelectorAll('.section-work .work-block .item-footer'),
                                          ...document.querySelectorAll('.section-work .work-block .cover-block'),
                                          ...document.querySelectorAll('.section-tests .test-block-index .test-block-footer')
                         ];
    for (const element of MaterialCardFix_LastElements) {
        element.style.color="white";
        //element.style.borderRadius = '20px';
        element.style.background = Accent2;
        element.style.boxShadow = '0px 2px 15px #000000';
    }


    const MaterialCardRound = [...document.querySelectorAll(".sections-lessons .lessons-block .lessons-cover .has-image"), ...document.querySelectorAll('.sections-lessons .lessons-block')];
    MaterialCardRound.forEach((element) => {
        element.style.borderRadius = "15px";
    });

    const LeftButtonPanel = document.querySelectorAll(".materials-section .libs-nav ul li");
    for (const element of LeftButtonPanel) {
        element.style.background=Accent2;
        element.style.color="white";
        element.style.borderRadius = "20px";

    }

    if (document.querySelector(".modal-content")!==null) {
        document.querySelector(".modal-content").style.background=Accent3
        document.querySelector(".modal-content").style.borderRadius="20px";
    };

    const Divs = document.querySelectorAll(".materials-section .libs-nav ul li a");
    for (const element of Divs) {
        element.style.color="#d3edd7";

    }//

    const PadMenu = document.querySelectorAll(".title-group .form-group .ng-select .ng-dropdown-panel .scroll-host .ng-option");
    for (const element of PadMenu) {
        element.style.background="#111111";
    }

    const FixHints_Page5 = document.querySelectorAll(".section-work .work-block .item-header .info .info-content");
    for (const element of FixHints_Page5) {
        element.style.background="#101010cf";
    }


    const PadMenuRePaint = document.querySelectorAll(".title-group .form-group .ng-select .ng-select-container .ng-value-container");
    for (const element of PadMenuRePaint) {
        element.style.color="white";
        element.style.background=Accent3;
    }

    const PadMenuActive = document.querySelectorAll(".title-group .form-group .ng-select .ng-dropdown-panel .scroll-host .ng-option:hover");
    for (const element of PadMenuActive) {
        element.style.background=Accent0;
    }

    const AllVals = [...(document.querySelectorAll(".test-block-index"))];
    const AllNums=[...(document.querySelectorAll(".section-tests .test-block-index .proxy .count-checked"))];
    localStorage.setItem("BJ(Tests):Len", AllVals.length);
    let summ=0;
    const AllHints = [...(document.querySelectorAll(".section-tests .test-block-index .header .info-content"))];
    for (const element of AllHints) {element.style.background="#0e0e0ef5";}

    const TestPressed = document.querySelectorAll(".popup-test");
    for (const element of TestPressed) {element.style.background='transparent'; element.style.color="white";}

    if (AllVals.length!==0){


        AllNums.forEach((Pane) => {
            summ=summ+Number(Pane.textContent)
        });
    }
    localStorage.setItem("BJ(Tests):Sum", summ);



}


function MainFloat(){
    const Hints2 = document.querySelectorAll(".navbar");
    const secondElement = Hints2[1];
    secondElement.style.borderRadius = "40px";


    const PosFt = document.querySelectorAll(".pos-f-t");
    for (const Ipos of PosFt){
        Ipos.style.background = Accent_MainBg;
        Ipos.style.paddingTop = "30px";
        Ipos.style.paddingLeft = "35px";
        Ipos.style.paddingRight = "35px";
    }
}


function NewsPage(){
    const Lists = document.querySelectorAll(".news-section .item .news-container");
    for (const item of Lists){
        item.style.background=Accent2;
        item.style.color="white";
    }
    const NewsPaper = document.querySelectorAll(".big-news-container");
    for (const item of NewsPaper){
        item.style.background=Accent2;
        item.style.borderRadius="20px";
    }

    const FixBCont = [...document.querySelectorAll("b"), ...document.querySelectorAll("div")];
    for (const item of FixBCont){
        item.style.color="white";
    }
    const Modals = document.querySelectorAll(".modal-content");
    for (const item of Modals){
        item.style.background="transparent";
        item.style.border="none";
    }
}


function Awards(){
    const Lists = document.querySelectorAll(".awards-section .item .content-awards");
    for (const item of Lists){
        item.style.backgroundColor=Accent2;
        item.style.borderRadius="20px";
        item.style.color="white";
    }
    const FixUnRounded = document.querySelectorAll(".row");
    for (const item of FixUnRounded){
        item.style.marginLeft= '0px';
    }

    const HowToGetIt = document.querySelectorAll(".description-of-awards");
    for (const item of HowToGetIt){
        item.style.background=Accent3;
        item.style.color="white";
        item.style.height="100%";
        item.style.borderRadius="30px";
    }


}


function FeedBack(){
    const TopPane = document.querySelectorAll(".feedback-col.grey-border");
    TopPane.forEach((Pane) => {
        Pane.style.backgroundColor = Accent2;
        Pane.style.borderradius="15px";
    });
    const AllTexts = document.querySelectorAll(".div");
    TopPane.forEach((Pane) => {
        Pane.style.color = "white";
    });
        const DescriptionOfAwards = document.querySelectorAll(".feedback-section[_ngcontent-c6] .item[_ngcontent-c6] .feedback-col[_ngcontent-c6]");
    for (const item of DescriptionOfAwards){item.style.borderRadius="40px";}

}




function Payment(){//
    const FirstElement = document.querySelectorAll(".payment-section .item .payment-item");
    for (const item of FirstElement){
        item.style.background = Accent2;
        item.style.borderRadius = "25px";
    }
    const FixThisUglyButton = document.querySelectorAll(".button-check");
    for (const item of FixThisUglyButton) {
        item.style.width="100%";
    }
    const SecondFixThisUglyButton = document.querySelectorAll(".payment-section .item .payment-item .button-check a");
    for (const item of SecondFixThisUglyButton) {
        item.style.width="100%";
        item.style.borderRadius="10px";
    }

    const AllDivs = [...document.querySelectorAll(".title"), ...document.querySelectorAll(".table-row")];
    for (const item of AllDivs) {
        item.style.color="wheat";
    }
    const AllSpans = document.querySelectorAll("span");
    for (const item of AllSpans) {
        item.style.color="white";
    }
}

function Cabinet(){

    const WhiteElement=document.querySelectorAll('.item.profile-block');
    for (const item of WhiteElement){
        item.style.background = 'transparent';
    }

    const AllItems = [...document.querySelectorAll(".item.progress-block"),...document.querySelectorAll('.item.profile-achieve.no-refs'),...document.querySelectorAll('.span'),
                      ...document.querySelectorAll('.profile-block[_ngcontent-c7] .conteiner-profile[_ngcontent-c7] .form[_ngcontent-c7] form[_ngcontent-c7] .form-block[_ngcontent-c7] .form-group[_ngcontent-c7] .form-control[_ngcontent-c7]')];

    for (const item of AllItems){
        item.style.color="white";
        item.style.background = Accent1;
        item.style.borderRadius="30px";
    }

    const ProfImage = document.querySelectorAll(".profile-img");
    for (const item of ProfImage){
        item.style.background = "#ffffff0f";
    }

    const VlsInputs = document.querySelectorAll("textarea.form-control.address.ng-pristine.ng-valid.ng-touched");
    for (const item of VlsInputs){
        item.style.background = Accent3;
        item.style.color="white";
    }


    const TextAreas = [...document.querySelectorAll("input.form-control.fio.ng-untouched.ng-pristine"),...document.querySelectorAll(".profile-block[_ngcontent-c6] .conteiner-profile[_ngcontent-c6] .form[_ngcontent-c6] form[_ngcontent-c6] .form-block[_ngcontent-c6] .form-group[_ngcontent-c6] .form-control[_ngcontent-c6]")];
    for (const item of TextAreas){
        item.style.color="white";
        item.style.backgroundColor = Accent3;
    }

    try{
        const Hint = document.querySelectorAll(".photo-requirments-info-content");
        for (const item of Hint){
            item.style.color="white";
            item.style.backgroundColor = Accent1+"d9";
            item.style.borderRadius="15px";
        }
    }catch(e){}

    try{
        const ChangePassWordPanel = document.querySelectorAll(".item[_ngcontent-c6]");
        for (const item of ChangePassWordPanel){
            item.style.color="white";
            item.style.backgroundColor = Accent2;
        }
        const NewPasswords = [...document.querySelectorAll("input#oldPassword"), ...document.querySelectorAll("input#newPassword"), ...document.querySelectorAll("input#repeatNewPassword")];
        for (const item of NewPasswords){
            item.style.color="white";
            item.style.backgroundColor = "#353535";
        }
    } catch(e){}

}


function FAQ(){
    const Cards = document.querySelectorAll(".faq-section .item .faq-item");
    for (const item of Cards){
        item.style.color="white";
        item.style.backgroundColor = 'transparent';
    }
    const CardsFix = document.querySelectorAll(".faq-section .panel-group .panel-default .card-header");
    for (const item of CardsFix){
        item.style.color="white";
        item.style.backgroundColor = Accent0;
    }
    const MakeShadows = document.querySelectorAll(".faq-section .panel-group .panel .card");
    for (const item of MakeShadows){
        item.style.background='transparent';
        item.style.boxShadow="0px 0px 15px rgb(6 6 6 / 64%)";
    }
    const Awnsers = document.querySelectorAll(".faq-section .panel-group .panel-default .panel-collapse .panel-body");
    for (const item of Awnsers){
        item.style.background=Accent0;
    }



}


function Market(){
    const ProductItems = document.querySelectorAll(".shop-section .item .product-block");
    for (const item of ProductItems){
        item.style.background=Accent2;
        item.style.color="wheat";
        item.style.borderRadius="20px";
    }
    const ProductItemsHover = document.querySelectorAll(".shop-section .item .product-block .product-img .on-hover");
    for (const item of ProductItemsHover){
        item.style.backgroundColor="rgb(255 255 255 / 0%)";
        item.style.border="3px solid rgb(196 196 196 / 35%)"
        item.style.borderStartStartRadius="20px";
        item.style.borderStartEndRadius="20px";
    }


    const Spans = document.querySelectorAll(".span");
    for (const item of Spans){
        item.style.color="wheat";
    }

    const LockedButton = document.querySelectorAll("button");
    for (const item of LockedButton) {
        item.removeAttribute('disabled');
    }



    const ShopItems = document.querySelectorAll(".modal-basket .basket");
    ShopItems.forEach((Pane) => {
        Pane.style.backgroundColor=Accent2;
        Pane.style.borderRadius="25px";
        Pane.style.color="white";
    });

    const ModCont = document.querySelectorAll(".modal-content");
    for (const item of ModCont) {
        item.style.height = "0px";
        item.style.padding = "0px 0";
    }

    const ItemsList = document.querySelectorAll(".modal-basket .basket .product");
    ItemsList.forEach((Pane) => {
        Pane.style.borderRadius="20px";
        Pane.style.backgroundColor=Accent1;
        Pane.style.color="white";
    });

    const Purshs = document.querySelectorAll(".my-purchases");
    Purshs.forEach((Pane) => {
        Pane.style.borderRadius="20px";
        Pane.style.backgroundColor=Accent1;
        Pane.style.color="white";
    });

    const PurshsList = document.querySelectorAll(".my-purchases .accordion .header-accordion");
    PurshsList.forEach((Pane) => {
        Pane.style.borderRadius="20px";
        Pane.style.backgroundColor=Accent2;
        Pane.style.color="white";
    });




    //
    const MakeButtonsBlack = document.querySelectorAll(".modal-basket .basket .product .counter .minus, .modal-basket .basket .product .counter .plus");
    for (const item of MakeButtonsBlack) {
        item.style.backgroundColor="black";
    }

    const MakeDescBlack = document.querySelectorAll(".modal-basket .basket .block-all .all-container");
    for (const item of MakeDescBlack) {
        item.style.borderRadius="15px";
        item.style.backgroundColor=Accent1;
    }

    const BlackInput = document.querySelectorAll(".modal-basket .basket .comment .comment-field textarea");
    for (const item of BlackInput) {
        item.style.color="white";
        item.style.backgroundColor=Accent1;
    }

    const DisabledButton = document.querySelectorAll(".shop-section .item .not-available .item-footer button");
    for (const item of DisabledButton) {
        item.style.backgroundColor="#4D4542";
    }

    const ProdBlock = document.querySelectorAll(".modal-product .product-block");
    for (const item of ProdBlock) {
        item.style.color="white";
        item.style.backgroundColor=Accent2;
        item.style.borderRadius="20px";
    }

    const Spans2 = document.querySelectorAll("span");
    for (const item of Spans2) {
        item.style.color="white";
    }

}



function AdministrationPage(){
    const Blocks = document.querySelectorAll(".contacts-section .item .contacts-block");
    for (const item of Blocks){
        item.style.color="white";
        item.style.borderRadius="30px";
        item.style.background=Accent2;
    }
}

function SpawnUnAvaiable(){
    var li = document.querySelector(".vacancy-item");
    li.innerHTML = "<a href=\"/ru/main/vacancy/page\"><span class=\"side-text\" id=\"vacancy\" style=\"color: white;\">Вакансии</span></a>";

    var li2 = document.querySelector(".meal-item");
    li2.innerHTML = "<a href=\"/ru/main/meal/page\"><span class=\"side-text\" id=\"meal\" style=\"color: white;\">Питание</span></a>";

    var li3 = document.querySelector(".food-pay-item");
    li3.innerHTML = "<a href=\"/ru/main/food-pay/page\"><span class=\"side-text\" id=\"food-pay\" style=\"color: white;\">Оплата питния</span></a>";
}


function LiteBar(){
    if (document.getElementById("LiteBarId") === null){
        var Add='';
        if (localStorage.getItem("BJ.DefStyle") === "0"){Add='a4';}
        var styleTag = document.createElement('style');
        styleTag.id = 'LiteBarId';
        var dynamicStyleCss = document.createTextNode(`
        .overlay {display: none;}
        .sidebar-parent-block .sidebar ul.sidebar-nav li:hover {background: transparent}
        .sidebar-parent-block .sidebar{transition: all 0.5s;}
        .sidebar-parent-block .sidebar.active ul.sidebar-nav {margin: 0; padding: 0 20px; margin-top: 13px}
        .sidebar-parent-block .sidebar .sidebar-content, .sidebar-parent-block .sidebar.active .sidebar-content{background:`+Accent_MainBg+Add+`;}
        .sidebar-parent-block .sidebar .sidebar-content, .sidebar-parent-block .sidebar.active .sidebar-content::-webkit-scrollbar-thumb { background-color: transparent !important; }
        .sidebar-parent-block .sidebar .sidebar-content, .sidebar-parent-block .sidebar.active .sidebar-content::-webkit-scrollbar-track {background-color: transparent !important;}
        `);

        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else {
        var Add2='';
        if (localStorage.getItem("BJ.LiteBar") === "1") {
            Add2 = `.sidebar-parent-block .sidebar .sidebar-content, .sidebar-parent-block .sidebar.active .sidebar-content{background:`+Accent_MainBg
        }
        if (localStorage.getItem("BJ.TransparentPanel") !== null) {
            Add2 = `.sidebar-parent-block .sidebar .sidebar-content, .sidebar-parent-block .sidebar.active .sidebar-content{background:`+(Accent_MainBg.slice(0,7)+localStorage.getItem("BJ.TransparentPanel"))
        }

        if (localStorage.getItem("BJ.DefStyle") === "0"){Add2=Add2+'a4';}
        if (Add2!==""){Add2=Add2+"}"}
        var LiteBarElement = document.getElementById('LiteBarId');
        LiteBarElement.textContent=`
        .overlay {display: none;}
        .sidebar-parent-block .sidebar ul.sidebar-nav li:hover {background: transparent}
        .sidebar-parent-block .sidebar{transition: all 0.5s;}
        .sidebar-parent-block .sidebar.active ul.sidebar-nav {margin: 0; padding: 0 20px; margin-top: 13px}
        .sidebar-parent-block .sidebar .sidebar-content, .sidebar-parent-block .sidebar.active .sidebar-content{background:`+Accent_MainBg+Add+`;}
        .sidebar-content { overflow: hidden; }
        `+Add2;
    }


}


function CoinCssSpawn(){
    if (document.getElementById("HintFix") === null){
        var styleTag = document.createElement('style');
        styleTag.id = 'HintFix';
        var dynamicStyleCss = document.createTextNode(`
        .counts-tooltip {background: `+Accent_MainBg+` !important;}
        .counts-tooltip .tooltip-inner {background: transparent; color: white}`);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else {

        var HintStyle = document.getElementById("HintFix");

        if (localStorage.getItem("BJ.LevBar") === "1"){

            HintStyle.textContent=`
            .counts-tooltip {display: none;}
            .counts-tooltip .tooltip-inner {display: none;}
            bs-tooltip-container.tooltip.in.tooltip-bottom.bs-tooltip-bottom.bottom.counts-tooltip.star.show, bs-tooltip-container.tooltip.in.tooltip-auto.bs-tooltip-auto.auto.counts-tooltip.show.bottom{display:none};
            `;

        } else {
            HintStyle.textContent=`
        .counts-tooltip {background: `+Accent_MainBg+` !important;}
        .counts-tooltip .tooltip-inner {background: transparent; color: white}`;
        }
    }
}

function TransBar(State){
    if (State===true){
        var styleTag = document.createElement('style');
        styleTag.id = 'TransBar';
        var dynamicStyleCss = document.createTextNode(`
        .sidebar-parent-block .sidebar .sidebar-content {background: transparent}
        .sidebar-parent-block .sidebar {background-image: none; border-right: solid 2px `+Accent0+`}
        .sidebar-parent-block .sidebar.active .sidebar-content {background: transparent}`);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else {
        var StTag = document.getElementById("TransBar");
        if (StTag!==null){
            StTag.remove();
        }
    }
}

function NonImageBar(State){
    if (document.getElementById("NonIMGCss") === null && State===true){
        var styleTag = document.createElement('style');
        styleTag.id = 'NonIMGCss';
        var dynamicStyleCss = document.createTextNode(`
        .sidebar-parent-block .sidebar {background-image: none}`);
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else if (State===false) {
        if (document.getElementById("NonIMGCss") !== null){
            document.getElementById("NonIMGCss").remove();
        }
    }
}



function MainCssStyle(){
    if (document.querySelector("nav.navbar.navbar-expand-lg.justify-content-between") !== null && document.getElementById("MainBetterJournalCss") === null){
        var styleTag = document.createElement('style');
        styleTag.id = 'MainBetterJournalCss';
        var dynamicStyleCss = document.createTextNode('');
        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);
    } else{
        if (document.getElementById("MainBetterJournalCss") !== null){
            var Style=document.getElementById("MainBetterJournalCss");

            const Content=`
            ::-webkit-scrollbar {background: `+Accent3.slice(0,7)+`; border-radius: 15px; width: 7px;}
            ::-webkit-scrollbar-thumb {background: `+Accent0.slice(0,4)+`; border-radius: 15px; -webkit-box-shadow: none;}
            html {background: `+Accent3.slice(0,7)+`;}
            nav.navbar.navbar-expand-lg.justify-content-between {transition: all 0.5s}
            .homepage-wrapper .inner, button#SaveButtonInSettings {transition: all 0.5s}
            button#SaveButtonInSettings {background: `+Accent_MainBg+`}
            body{background: black}
            `;
            if (localStorage.getItem("BJ.AVTLink")!==null && document.querySelectorAll(".avatar").length === 2){
                const Avatar = document.querySelectorAll(".avatar")[1];
                if (OriginalAvatar===null){OriginalAvatar=Avatar.src};
                Avatar.name="Modded";
                if (Avatar.src !== localStorage.getItem("BJ.AVTLink")){
                    Avatar.src = localStorage.getItem("BJ.AVTLink");
                }
            } else if (localStorage.getItem("BJ.AVTLink")===null && OriginalAvatar!==null){
                const Avt = document.querySelectorAll(".avatar")[1];
                Avt.src=OriginalAvatar;
            }


            Style.textContent=Content;

        }
    }
}


function LevBar(){

    var NavBar = document.querySelectorAll("nav.navbar.navbar-expand-lg.justify-content-between")[1];

    var CssCode=`
        .justify-content-between{ padding: 0px; }
        .justify-content-between .left-block .user-full-name {display: none;}
        bs-tooltip-container.tooltip.in.tooltip-auto.bs-tooltip-auto.auto.counts-tooltip.show{display: none;  }
        nav.navbar.navbar-expand-lg.justify-content-between {position: fixed; z-index: 900; right: 25px; top:25px; border-radius:40px }
        .right-block .logout-link{margin-right: 10px}
        .dropup, .dropright, .dropdown, .dropleft {dispay: none;}
        nav#LevitationBar:hover {background: `+Accent2+` !important}
        span.dropdown.dropdown-langs {display: none;}
        .right-block .align-self-end .img-logout-block{margin-left: 10px;}
        .wrap-counts{padding: 0 0px;}
        span#all-pricess{margin-left: 5px}
        .pos-f-t{display: none;}
        .justify-content-between .wrap-counts .count-item, span#all-pricess{cursor: default}
        `;


    if (localStorage.getItem("BJ.LevBar") === "1" && document.getElementById("LevitationBar") === null){
        NavBar.id='LevitationBar';
        const wrapper = document.querySelectorAll(".wrapper")[0];
        wrapper.parentNode.insertBefore(NavBar, wrapper);

        var styleTag = document.createElement('style');
        styleTag.id = 'LevitationBarCss';
        var dynamicStyleCss = document.createTextNode(CssCode);

        styleTag.appendChild(dynamicStyleCss);
        var header = document.getElementsByTagName('head')[0];
        header.appendChild(styleTag);


        //console.log("Loading LevBar");
    } else {
        if (document.getElementById("LevitationBarCss") !== null && localStorage.getItem("BJ.LevBar") === null){
            document.getElementById("LevitationBarCss").remove();
        }
        if (document.getElementById("LevitationBarCss") !== null && localStorage.getItem("BJ.LevBar") !== null){
            document.getElementById("LevitationBarCss").textContent=CssCode;


        }
    }
}


function Main(){


    try{ if (localStorage.getItem("BJ.LevBar") === null) {MainFloat();}} catch (e){}





    if (StyleLoaded===0){SetStyle(Number(localStorage.getItem("BJ.DefStyle"))); StyleLoaded=1;}



    if (localStorage.getItem("BJ.SetStyle")!=="-inf"){
        SetStyle(Number(localStorage.getItem("BJ.SetStyle")));
    }


    if (localStorage.getItem("BJ.LiteBar")!==null && document.querySelectorAll(".sidebar-parent-block").length === 1 && Ticks%2 === 0){
        LiteBar();

    }



    if (localStorage.getItem("BJ.NonBarImage") !== null && document.querySelectorAll(".sidebar-parent-block").length === 1){
        if (Ticks%2 === 0) {NonImageBar(true);}
    } else {
        NonImageBar(false);
    }



    if (localStorage.getItem("BJ.TransparentPanel") === "1" && document.getElementById("TransBar") === null && document.querySelectorAll(".sidebar-parent-block .sidebar .sidebar-content").length === 1) {
        TransBar(true);
    } else if (localStorage.getItem("BJ.TransparentPanel") === null){
        TransBar(false);
    }


    if (document.querySelectorAll("nav.navbar.navbar-expand-lg.justify-content-between").length === 2) {
        LevBar();
    }




    if (localStorage.getItem("BJ.VideoPlayback")!==null){

        if (RayanSpawned===false && document.querySelectorAll(".wrap").length === 1){
            try{
                RayanSpawned=true;
                const SpawnVideoPlace=document.querySelectorAll('ng-component');
                SpawnVideoPlace[SpawnVideoPlace.length-1].style.position = "relative"
                SpawnVideoPlace[SpawnVideoPlace.length-1].style.zIndex = "100"; // could also be absolute
                var videoElement = document.createElement("video");

                videoElement.src = localStorage.getItem("BJ.VideoPlayback");
                videoElement.style.width = "100%";
                videoElement.style.height = "100%";
                videoElement.style.objectFit="cover";
                videoElement.id="VideoPlayBackBg";
                videoElement.style.position="fixed";
                videoElement.loop = true;
                videoElement.autoplay = true;
                videoElement.muted = true;
                videoElement.disablePictureInPicture=true;

                var targetDiv = document.querySelector(".wrap");

                targetDiv.parentNode.insertBefore(videoElement, targetDiv);
            }catch(e){}
        } else {
            try{
                const VideoPlace=document.querySelectorAll('ng-component');
                VideoPlace[VideoPlace.length-1].style.position = "relative";
                VideoPlace[VideoPlace.length-1].style.zIndex = "100"; // could also be absolute
            }catch(e){}
        }
    } else {
        try{
            RayanSpawned=false;
            const Video=document.getElementById("VideoPlayBackBg");
            Video.remove();
        }catch(e){}
    }



    try{


        let PageType = "Main";

        if (document.querySelectorAll(".count-item.with-link").length === 2 && Ticks%2 === 0){
            CoinCssSpawn();
        }


        const text = window.location.href;


        if (text==='https://journal.top-academy.ru/index' && document.getElementById('stucked')===null || text==='https://journal.top-academy.ru/' && document.getElementById('stucked') === null || text==='https://journal.top-academy.ru/index/' && document.getElementById('stucked')===null) {
            var btn = document.createElement('button');
            var bodycontent = document.querySelector('body');
            btn.textContent = 'Застряли здесь? Нажмите сюда ( от BetterJournal ;) ) P.S - Нужно будет зайти в аккаунт';
            btn.id='stucked';
            btn.onclick = function() {
                localStorage.removeItem("aa5d5ab0fb3d70a5fea857cc7b7ebc23");
                localStorage.removeItem("c5de26e0c59acb1c9d41a3daefa00a27");
                localStorage.removeItem("d86c828583c5c6160e8acfee88ba1590");
                localStorage.removeItem("ddbeba04afa6b1d93593c13484133b87");
                alert("Перезагрузите страницу");
            };
            bodycontent.appendChild(btn);
        }



        if (text.includes("dashboard")) {
            PageType="Main";
        }else {
        }
        if (text.includes("schedule")) {
            PageType="SHEDULE";
        }
        if (text.includes("homework")) {
            PageType="Home";
        }
        if (text.includes("progress")) {
            if (document.getElementById("SnowPart") !== null && SnowSpawned !== 0) {
                document.getElementById("SnowPart").remove();
                SnowSpawned=0;
            }
            PageType="Marks";
        } else {PanelSpawned=0;}
        if (text.includes("library")) {
            PageType="Materials";
        }
        if (text.includes("news")) {
            PageType="News";
        }
        if (text.includes("auth")) {
            PageType="Login";
        }
        if (text.includes("rewards")) {
            PageType="Awards";
        }
        if (text.includes("feedback")) {
            PageType="FeedBack";

        }
        if (text.includes("payment")) {
            PageType="Payment";
        }
        if (text.includes("settings")) {
            PageType="Cabinet";
        }
        if (text.includes("faq")) {
            PageType="FAQ";
        }
        if (text.includes("contacts")) {
            PageType="Adminis";
        }
        if (text.includes("signal")) {
            PageType="Asker";
        }
        if (text.includes("market")) {
            PageType="Market";
        }


        if (localStorage.getItem("BJ.Debug") === "1") {console.log("PageType = "+PageType);}



        //localStorage.getItem("BJ:UnlockUnavaiable")
        //localStorage.setItem("BJ:Debug", "1");



        if (Ticks%2 === 0){MainCssStyle();}
        if (loadedtimes<11){
            loadedtimes=loadedtimes+1;
        }
        else {
            timeout=100;
        }

        try{


            if (PageType!=="Login"){
                if (document.querySelector(".modal-content .eval-details.centered") !==null) {MakeTheVote();}
                loadedtimes=100;
                LoadDefult();
            }


            if (PageType==="Login"){
                Login();
            }


            if (PageType==="Main"){
                ReworkedMainPage();
                //MainPage();

            }

            if (PageType==="SHEDULE"){
                Shedule();
            }

            if (PageType==="Home"){
                ReworkedHomework();
            }
            if (PageType==="Marks"){
                Marks();
            }
            if (PageType==="Materials"){
                Materials();
            }
            if (PageType==="News"){
                NewsPage();
            }
            if (PageType==="Awards"){
                Awards();
            }
            if (PageType==="FeedBack"){
                FeedBack();
            }
            if (PageType==="Payment"){
                Payment();
            }
            if (PageType==="Cabinet"){
                Cabinet();
            }
            if (PageType==="FAQ"){
                FAQ();
            }
            if (PageType==="Adminis"){
                AdministrationPage();
            }
            if (PageType==="Asker"){
                Asker();
            }
            if (PageType==="Market"){
                Market();
            }



        } catch(e){
            if (timeout===100){
                console.log(e);
            }

        }





    } catch(e){
        console.log(e);
    }

    setTimeout(Main, timeout);








};


(function() {


    Main();


})();