+ + <div className="h-[320px] sm:h-auto mx-auto bg-[url(@/../assets/hero.avif)] bg-[length:auto_680px] bg-[top_-2rem_right_-22rem] sm:bg-[length:auto_auto] sm:bg-[top_-6rem_left_-5rem] sm:py-8"> + {sm && <Cards />} + </div> + {!sm && <Cards className="relative -top-11" />} + <div className="mx-auto grid w-full max-w-[1140px] grow grid-cols-3 gap-6 px-5 pb-6 pt-8 sm:px-6 print:p-0"> + <div className="col-span-3 print:col-span-3 flex flex-col gap-8"> + <div> + <h2 className="text-heading-2-mobile sm:text-heading-2 mb-5">Uudet sisällöt</h2> + <p className="bg-todo h-[328px] flex items-center justify-center rounded">TODO</p> + </div> + <div> + <h2 className="text-heading-2-mobile sm:text-heading-2 mb-5">Suositut sisällöt</h2> + <p className="bg-todo h-[328px] flex items-center justify-center rounded">TODO</p> + </div> + <div> + <h2 className="text-heading-2-mobile sm:text-heading-2 mb-5 bg-todo">Kirjaudu palveluun</h2> + </div> + </div> + </div> + </main> + ); +}; + +export default Home; diff --git a/src/routes/Home/index.ts b/src/routes/Home/index.ts new file mode 100644 index 0000000..d213ecf --- /dev/null +++ b/src/routes/Home/index.ts @@ -0,0 +1,3 @@ +import Home from './Home'; + +export { Home }; diff --git a/src/routes/Root/NoMatch.tsx b/src/routes/Root/NoMatch.tsx new file mode 100644 index 0000000..41030b2 --- /dev/null +++ b/src/routes/Root/NoMatch.tsx @@ -0,0 +1,27 @@ +import { Title } from '@/components'; +import { Button } from '@jod/design-system'; +import { useTranslation } from 'react-i18next'; +import { MdHome } from 'react-icons/md'; + +const NoMatch = () => { + const { t } = useTranslation(); + const title = t('no-match.title'); + return ( + <main role="main" id="jod-main" className="m-4 flex flex-col items-center justify-center gap-4"> + <Title value={title} /> + <h1 className="text-heading-1">{title}</h1> + <p className="text-body-lg">{t('no-match.description')}</p> + <Button + icon={<MdHome size={24} />} + iconSide="left" + label={t('return-home')} + size="md" + variant="gray" + /* eslint-disable-next-line sonarjs/no-unstable-nested-components */ + LinkComponent={({ children }: { children: React.ReactNode }) => <a href="/">{children}</a>} + /> + </main> + ); +}; + +export default NoMatch; diff --git a/src/routes/Root/Root.tsx b/src/routes/Root/Root.tsx new file mode 100644 index 0000000..fcea818 --- /dev/null +++ b/src/routes/Root/Root.tsx @@ -0,0 +1,215 @@ +import { LanguageMenu, LogoIconRgb, LogoRgbEn, LogoRgbFi, LogoRgbSv, NavigationBar } from '@/components'; +import { Footer, SkipLink, useMediaQueries } from '@jod/design-system'; +import React from 'react'; +import { Helmet } from 'react-helmet-async'; +import { useTranslation } from 'react-i18next'; +import { MdClose, MdMenu } from 'react-icons/md'; +import { NavLink, Outlet, ScrollRestoration } from 'react-router-dom'; +import { + LogoEuEn, + LogoEuFi, + LogoEuSv, + LogoKehaEn, + LogoKehaFi, + LogoKehaSv, + LogoOkmEn, + LogoOkmFiSv, + LogoOphEn, + LogoOphFiSv, + LogoTemEn, + LogoTemFiSv, +} from './logos'; + +const NavigationBarItem = (to: string, text: string) => ({ + key: to, + component: ({ className }: { className: string }) => ( + <NavLink to={to} className={className}> + {text} + </NavLink> + ), +}); + +const LogoRgb = ({ language, size }: { language: string; size: number }) => { + switch (language) { + case 'sv': + return <LogoRgbSv size={size} />; + case 'en': + return <LogoRgbEn size={size} />; + default: + return <LogoRgbFi size={size} />; + } +}; + +const Root = () => { + const { + t, + i18n: { language }, + } = useTranslation(); + const { sm } = useMediaQueries(); + const [megaMenuOpen, setMegaMenuOpen] = React.useState(false); + const [userMenuOpen, setUserMenuOpen] = React.useState(false); + const [langMenuOpen, setLangMenuOpen] = React.useState(false); + + const userGuide = t('slugs.user-guide.index'); + const basicInformation = t('slugs.basic-information'); + const footerItems: React.ComponentProps<typeof Footer>['items'] = [ + NavigationBarItem(`${userGuide}/${t('slugs.user-guide.what-is-the-service')}`, t('about-us-and-user-guide')), + NavigationBarItem(`${basicInformation}/${t('slugs.cookie-policy')}`, t('cookie-policy')), + NavigationBarItem(`${basicInformation}/${t('slugs.data-sources')}`, t('data-sources')), + NavigationBarItem(`${basicInformation}/${t('slugs.terms-of-service')}`, t('terms-of-service')), + NavigationBarItem(`${basicInformation}/${t('slugs.accessibility-statement')}`, t('accessibility-statement')), + NavigationBarItem(`${basicInformation}/${t('slugs.privacy-policy')}`, t('privacy-policy')), + ]; + const logos = React.useMemo(() => { + switch (language) { + case 'sv': + return [ + <div key="LogoEuSv" className="flex"> + <LogoEuSv className="h-10" /> + </div>, + <div key="LogoOkmFiSv" className="flex"> + <LogoOkmFiSv className="h-10" /> + </div>, + <div key="LogoTemFiSv" className="flex"> + <LogoTemFiSv className="h-10" /> + </div>, + <div key="LogoKehaSv" className="flex"> + <LogoKehaSv className="h-10" /> + </div>, + <div key="LogoOphFiSv" className="flex"> + <LogoOphFiSv className="h-10" /> + </div>, + ]; + case 'en': + return [ + <div key="LogoEuEn" className="flex"> + <LogoEuEn className="h-10" /> + </div>, + <div key="LogoOkmEn" className="flex"> + <LogoOkmEn className="h-10" /> + </div>, + <div key="LogoTemEn" className="flex"> + <LogoTemEn className="h-10" /> + </div>, + <div key="LogoKehaEn" className="flex"> + <LogoKehaEn className="h-10" /> + </div>, + <div key="LogoOphEn" className="flex"> + <LogoOphEn className="h-10" /> + </div>, + ]; + default: + return [ + <div key="LogoEuFi" className="flex"> + <LogoEuFi className="h-10" /> + </div>, + <div key="LogoOkmFiSv" className="flex"> + <LogoOkmFiSv className="h-10" /> + </div>, + <div key="LogoTemFiSv" className="flex"> + <LogoTemFiSv className="h-10" /> + </div>, + <div key="LogoKehaFi" className="flex"> + <LogoKehaFi className="h-10" /> + </div>, + <div key="LogoOphFiSv" className="flex"> + <LogoOphFiSv className="h-10" /> + </div>, + ]; + } + }, [language]); + + const toggleMenu = (menu: 'mega' | 'user' | 'lang') => () => { + setMegaMenuOpen(false); + setUserMenuOpen(false); + setLangMenuOpen(false); + switch (menu) { + case 'mega': + setMegaMenuOpen(!megaMenuOpen); + break; + case 'user': + setUserMenuOpen(!userMenuOpen); + break; + case 'lang': + setLangMenuOpen(!langMenuOpen); + break; + } + }; + + const changeLanguage = () => { + setLangMenuOpen(false); + setMegaMenuOpen(false); + }; + + return ( + <> + <Helmet> + <html lang={language} /> + <link rel="manifest" href={`/manifest-${language}.json`} crossOrigin="use-credentials" /> + <body className="bg-bg-gray" /> + </Helmet> + <header role="banner" className="sticky top-0 z-30 print:hidden"> + <SkipLink hash="#jod-main" label={t('skiplinks.main')} /> + <NavigationBar + onLanguageClick={toggleMenu('lang')} + logo={ + <NavLink to={`/${language}`} className="flex"> + <div className="inline-flex select-none items-center p-3"> + {sm ? <LogoRgb language={language} size={32} /> : <LogoIconRgb size={32} />} + <span className="sr-only">{t('osaamispolku')}</span> + </div> + </NavLink> + } + menuComponent={ + sm ? ( + <button + className="flex gap-4 justify-center items-center select-none" + aria-label={t('open-menu')} + onClick={toggleMenu('mega')} + > + <span className="py-3 pl-3">{t('menu')}</span> + <span className="size-7 flex justify-center items-center"> + <MdMenu size={24} /> + </span> + </button> + ) : ( + <button className="flex justify-self-end p-3" aria-label={t('open-menu')} onClick={toggleMenu('mega')}> + {megaMenuOpen ? ( + <span className="size-7 flex justify-center items-center"> + <MdClose size={24} /> + </span> + ) : ( + <span className="size-7 flex justify-center items-center"> + <MdMenu size={24} /> + </span> + )} + </button> + ) + } + /> + {langMenuOpen && ( + <div className="relative xl:container mx-auto"> + <div className="absolute right-[50px] translate-y-7"> + <LanguageMenu onClick={changeLanguage} /> + </div> + </div> + )} + </header> + <Outlet /> + <Footer + items={footerItems} + logos={ + logos ? ( + <div className="px-5 sm:px-0 grid sm:grid-cols-3 gap-6 sm:gap-9 items-center">{logos}</div> + ) : undefined + } + copyright={t('copyright')} + variant="light" + className={!sm ? 'py-7' : undefined} + /> + <ScrollRestoration /> + </> + ); +}; + +export default Root; diff --git a/src/routes/Root/index.ts b/src/routes/Root/index.ts new file mode 100644 index 0000000..a0dcf8c --- /dev/null +++ b/src/routes/Root/index.ts @@ -0,0 +1,4 @@ +import NoMatch from './NoMatch'; +import Root from './Root'; + +export { NoMatch, Root }; diff --git a/src/routes/Root/logos.tsx b/src/routes/Root/logos.tsx new file mode 100644 index 0000000..95a8f3a --- /dev/null +++ b/src/routes/Root/logos.tsx @@ -0,0 +1,144 @@ +import { SVGProps } from 'react'; +import { JSX } from 'react/jsx-runtime'; + +export const LogoEuFi = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1169.535 267.045" fill="#100f0d"> + <path d="M385.698 259.417H7.563V7.324h378.135ZM0 0v267.045h393.26V0H0" /> + <path d="m188.573 62.25 7.979-5.822 7.98 5.823-3.038-9.418 8.106-5.822h-9.991l-3.057-9.531-3.058 9.541-9.984-.01 8.099 5.822-3.036 9.418M147.28 73.344l7.98-5.823 7.974 5.823-3.032-9.417 8.1-5.823h-9.99l-3.056-9.541-3.058 9.552-9.985-.011 8.099 5.823-3.031 9.417M125.046 78.844l-3.057 9.552-9.983-.01 8.098 5.822-3.036 9.417 7.978-5.822 7.979 5.822-3.036-9.417 8.099-5.823h-9.984l-3.058-9.541M113.964 139.043l7.974 5.822-3.031-9.416 8.098-5.824h-9.984l-3.057-9.541-3.057 9.563-9.99-.022 8.104 5.824-3.036 9.416 7.979-5.822M128.104 170.99l-3.058-9.542L121.99 171l-9.983-.01 8.098 5.822-3.036 9.417 7.978-5.833 7.979 5.833-3.036-9.417 8.099-5.823h-9.984M158.374 201.26l-3.057-9.53-3.052 9.54-9.99-.01 8.1 5.823-3.031 9.417 7.978-5.823 7.974 5.823-3.031-9.417 8.099-5.823h-9.99M199.614 212.23l-3.057-9.542-3.052 9.552-9.99-.01 8.1 5.822-3.031 9.417 7.978-5.822 7.974 5.822-3.036-9.417 8.104-5.823h-9.99M240.854 201.26l-3.052-9.53-3.062 9.54-9.98-.01 8.094 5.823-3.03 9.417 7.978-5.823 7.979 5.823-3.041-9.417 8.104-5.823h-9.99M271.136 170.99l-3.063-9.542L265.01 171l-9.978-.01 8.104 5.822-3.042 9.417 7.979-5.833 7.979 5.833-3.042-9.417 8.104-5.823h-9.978M292.084 129.51h-9.99l-3.062-9.54-3.052 9.551-9.99-.01 8.104 5.822-3.032 9.418 7.97-5.834 7.978 5.834-3.03-9.418 8.104-5.822M260.093 103.5l7.979-5.823 7.98 5.823-3.042-9.417 8.104-5.812h-9.98l-3.062-9.542-3.062 9.552-9.98-.01 8.104 5.812-3.041 9.417M237.917 48.573l-3.052 9.552-9.99-.021 8.094 5.833-3.03 9.418 7.989-5.834 7.968 5.834-3.031-9.418 8.104-5.833h-10l-3.052-9.53" /> + <path d="M440.316 102.216V40.178h45.999v10.495h-33.473v13.753h31.145V74.88h-31.145v16.885H487.5v10.452Zm87.301 0v-6.729q-2.454 3.597-6.475 5.671-3.977 2.074-8.42 2.074-4.529 0-8.126-1.99-3.597-1.988-5.205-5.585t-1.608-9.945V57.275h11.891v20.65q0 9.48.635 11.638.677 2.116 2.412 3.385 1.735 1.228 4.401 1.228 3.047 0 5.46-1.65 2.411-1.693 3.3-4.148.889-2.497.889-12.145V57.275h11.891v44.941Zm34.742 0h-11.891V57.275h11.045v6.39q2.835-4.528 5.078-5.967 2.285-1.439 5.163-1.439 4.062 0 7.829 2.243L575.9 68.87q-3.005-1.947-5.586-1.947-2.497 0-4.232 1.397-1.735 1.354-2.75 4.95-.974 3.598-.974 15.066zm19.594-23.105q0-5.925 2.92-11.469 2.92-5.543 8.252-8.463 5.374-2.92 11.976-2.92 10.198 0 16.715 6.644 6.517 6.601 6.517 16.715 0 10.199-6.601 16.927-6.56 6.687-16.547 6.687-6.178 0-11.806-2.793-5.586-2.793-8.506-8.168-2.92-5.416-2.92-13.16zm12.187.634q0 6.686 3.174 10.241 3.174 3.555 7.83 3.555 4.654 0 7.786-3.555 3.173-3.555 3.173-10.325 0-6.602-3.173-10.157-3.132-3.554-7.787-3.554-4.655 0-7.829 3.554-3.174 3.555-3.174 10.241zm40.752-.634q0-5.925 2.92-11.469 2.92-5.543 8.252-8.463 5.374-2.92 11.976-2.92 10.198 0 16.715 6.644 6.517 6.601 6.517 16.715 0 10.199-6.602 16.927-6.559 6.687-16.546 6.687-6.178 0-11.806-2.793-5.586-2.793-8.506-8.168-2.92-5.416-2.92-13.16zm12.187.634q0 6.686 3.174 10.241 3.174 3.555 7.829 3.555 4.655 0 7.786-3.555 3.174-3.555 3.174-10.325 0-6.602-3.174-10.157-3.131-3.554-7.786-3.554-4.655 0-7.829 3.554-3.174 3.555-3.174 10.241zm43.165-22.47h11.087v6.601q2.159-3.385 5.84-5.501 3.682-2.116 8.167-2.116 7.83 0 13.288 6.136 5.46 6.136 5.46 17.096 0 11.257-5.502 17.52-5.501 6.22-13.33 6.22-3.724 0-6.771-1.48-3.005-1.482-6.348-5.079v22.64h-11.89zm11.764 21.709q0 7.574 3.005 11.214 3.005 3.597 7.32 3.597 4.148 0 6.899-3.301 2.75-3.343 2.75-10.918 0-7.067-2.835-10.495-2.835-3.428-7.025-3.428-4.358 0-7.236 3.386-2.878 3.343-2.878 9.945zm50.401-7.998-10.79-1.947q1.82-6.517 6.262-9.649 4.444-3.131 13.204-3.131 7.955 0 11.849 1.904 3.893 1.862 5.459 4.782Q780 65.823 780 73.567l-.127 13.88q0 5.925.55 8.76.592 2.793 2.158 6.009h-11.764q-.466-1.185-1.143-3.512-.296-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.406 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.82-3.005 5.078-4.57 3.3-1.608 9.48-2.793 8.336-1.566 11.552-2.92v-1.185q0-3.428-1.693-4.867-1.693-1.48-6.39-1.48-3.174 0-4.95 1.269-1.778 1.227-2.879 4.359zm15.912 9.648q-2.285.762-7.236 1.82-4.952 1.058-6.475 2.073-2.327 1.65-2.327 4.19 0 2.496 1.861 4.316 1.862 1.82 4.74 1.82 3.216 0 6.136-2.116 2.158-1.608 2.835-3.936.466-1.523.466-5.797zm64.28 21.582H820.71V79.28q0-7.279-.762-9.395-.762-2.158-2.497-3.343-1.693-1.185-4.105-1.185-3.089 0-5.543 1.693-2.455 1.693-3.386 4.486-.888 2.793-.888 10.325v20.355h-11.892V57.275h11.045v6.601q5.882-7.617 14.811-7.617 3.936 0 7.194 1.439 3.259 1.396 4.91 3.597 1.692 2.2 2.327 4.993.677 2.793.677 7.998zm65.72 0v-6.729q-2.455 3.597-6.475 5.671-3.978 2.074-8.422 2.074-4.528 0-8.125-1.99-3.597-1.988-5.205-5.585t-1.608-9.945V57.275h11.892v20.65q0 9.48.634 11.638.677 2.116 2.412 3.385 1.735 1.228 4.401 1.228 3.047 0 5.46-1.65 2.412-1.693 3.3-4.148.889-2.497.889-12.145V57.275h11.891v44.941Zm64.237 0h-11.891V79.28q0-7.279-.762-9.395-.762-2.158-2.497-3.343-1.693-1.185-4.105-1.185-3.089 0-5.543 1.693-2.455 1.693-3.386 4.486-.888 2.793-.888 10.325v20.355h-11.892V57.275h11.045v6.601q5.882-7.617 14.811-7.617 3.936 0 7.194 1.439 3.259 1.396 4.91 3.597 1.692 2.2 2.327 4.993.677 2.793.677 7.998zm12.061-51.035V40.178h11.891v11.003zm0 51.035V57.275h11.891v44.941Zm21.328-23.105q0-5.925 2.92-11.469 2.92-5.543 8.251-8.463 5.375-2.92 11.976-2.92 10.199 0 16.716 6.644 6.517 6.601 6.517 16.715 0 10.199-6.602 16.927-6.559 6.687-16.546 6.687-6.178 0-11.807-2.793-5.586-2.793-8.505-8.168-2.92-5.416-2.92-13.16zm12.187.634q0 6.686 3.174 10.241 3.174 3.555 7.829 3.555 4.655 0 7.786-3.555 3.174-3.555 3.174-10.325 0-6.602-3.174-10.157-3.131-3.554-7.786-3.554-4.655 0-7.83 3.554-3.173 3.555-3.173 10.241zm84.382 22.471h-11.891V79.28q0-7.279-.762-9.395-.761-2.158-2.496-3.343-1.693-1.185-4.105-1.185-3.09 0-5.544 1.693-2.454 1.693-3.385 4.486-.889 2.793-.889 10.325v20.355h-11.891V57.275h11.045v6.601q5.882-7.617 14.81-7.617 3.936 0 7.195 1.439 3.258 1.396 4.909 3.597 1.692 2.2 2.327 4.993.677 2.793.677 7.998zm12.061-51.035V40.178h11.892v11.003zm0 51.035V57.275h11.892v44.941Zm64.958 0h-11.892V79.28q0-7.279-.761-9.395-.762-2.158-2.497-3.343-1.693-1.185-4.105-1.185-3.09 0-5.544 1.693-2.454 1.693-3.385 4.486-.889 2.793-.889 10.325v20.355h-11.891V57.275h11.045v6.601q5.882-7.617 14.811-7.617 3.936 0 7.194 1.439 3.259 1.396 4.909 3.597 1.693 2.2 2.328 4.993.677 2.793.677 7.998zM451.614 206.216h-11.89v-44.941h11.044v6.39q2.835-4.528 5.078-5.967 2.285-1.439 5.163-1.439 4.062 0 7.829 2.243l-3.682 10.368q-3.004-1.947-5.586-1.947-2.497 0-4.232 1.397-1.735 1.354-2.75 4.95-.974 3.598-.974 15.066zm31.23-31.23-10.79-1.947q1.819-6.517 6.262-9.649 4.444-3.131 13.203-3.131 7.956 0 11.85 1.904 3.893 1.862 5.458 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.593 2.793 2.159 6.009h-11.765q-.465-1.185-1.142-3.512-.296-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.406 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.82-3.005 5.078-4.57 3.3-1.608 9.479-2.793 8.337-1.566 11.553-2.92v-1.185q0-3.428-1.693-4.867-1.693-1.48-6.39-1.48-3.174 0-4.951 1.269-1.778 1.227-2.878 4.359zm15.912 9.648q-2.285.762-7.237 1.82-4.95 1.058-6.474 2.073-2.328 1.65-2.328 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.216 0 6.136-2.116 2.158-1.608 2.835-3.936.466-1.523.466-5.797zm35.251-40.456v22.81q5.755-6.729 13.753-6.729 4.105 0 7.406 1.523 3.3 1.524 4.951 3.894 1.693 2.37 2.285 5.247.635 2.878.635 8.93v26.363h-11.891v-23.74q0-7.067-.677-8.972-.678-1.904-2.413-3.004-1.692-1.143-4.274-1.143-2.962 0-5.29 1.44-2.327 1.438-3.427 4.358-1.058 2.877-1.058 8.548v22.513h-11.891v-62.038Zm38.34 38.933q0-5.925 2.92-11.469 2.92-5.543 8.252-8.463 5.375-2.92 11.976-2.92 10.199 0 16.716 6.644 6.517 6.601 6.517 16.715 0 10.199-6.602 16.927-6.56 6.687-16.546 6.687-6.178 0-11.807-2.793-5.586-2.793-8.506-8.168-2.92-5.416-2.92-13.16zm12.188.634q0 6.686 3.174 10.241 3.174 3.555 7.829 3.555 4.655 0 7.786-3.555 3.174-3.555 3.174-10.325 0-6.602-3.174-10.157-3.131-3.554-7.786-3.554-4.655 0-7.83 3.554-3.173 3.555-3.173 10.241zm43.502-28.564v-11.003h11.891v11.003zm0 51.035v-44.941h11.891v44.941Zm44.688-44.941v9.479H664.6v18.112q0 5.501.212 6.432.254.889 1.058 1.481.846.593 2.03.593 1.651 0 4.783-1.143l1.015 9.225q-4.147 1.778-9.394 1.778-3.216 0-5.798-1.058-2.581-1.1-3.808-2.793-1.185-1.735-1.65-4.655-.381-2.074-.381-8.38v-19.592h-5.46v-9.48h5.46v-8.928l11.933-6.94v15.869zm28.86 0v9.479h-8.126v18.112q0 5.501.212 6.432.254.889 1.058 1.481.846.593 2.031.593 1.65 0 4.782-1.143l1.016 9.225q-4.147 1.778-9.395 1.778-3.216 0-5.797-1.058-2.582-1.1-3.809-2.793-1.185-1.735-1.65-4.655-.381-2.074-.381-8.38v-19.592h-5.46v-9.48h5.46v-8.928l11.933-6.94v15.869zm17.14 13.71-10.792-1.946q1.82-6.517 6.263-9.649 4.444-3.131 13.204-3.131 7.955 0 11.849 1.904 3.893 1.862 5.459 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.592 2.793 2.158 6.009h-11.764q-.466-1.185-1.143-3.512-.296-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.406 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.82-3.005 5.078-4.57 3.3-1.608 9.48-2.793 8.336-1.566 11.552-2.92v-1.185q0-3.428-1.693-4.867-1.692-1.48-6.39-1.48-3.174 0-4.95 1.269-1.778 1.227-2.879 4.359zm15.91 9.649q-2.284.762-7.235 1.82-4.952 1.058-6.475 2.073-2.328 1.65-2.328 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.216 0 6.136-2.116 2.158-1.608 2.835-3.936.466-1.523.466-5.797zm22.513-23.36h10.96v6.137q5.883-7.152 14.008-7.152 4.316 0 7.49 1.777 3.174 1.778 5.205 5.375 2.962-3.597 6.39-5.375 3.428-1.777 7.32-1.777 4.952 0 8.38 2.031 3.428 1.99 5.12 5.882 1.227 2.878 1.227 9.31v28.734h-11.89v-25.687q0-6.686-1.228-8.633-1.65-2.539-5.078-2.539-2.497 0-4.697 1.524-2.2 1.523-3.174 4.485-.974 2.92-.974 9.268v21.582h-11.89v-24.629q0-6.56-.636-8.463-.634-1.905-1.989-2.836-1.311-.93-3.597-.93-2.75 0-4.95 1.48-2.201 1.482-3.175 4.274-.93 2.793-.93 9.268v21.836h-11.892zm86.837 13.712-10.791-1.947q1.82-6.517 6.263-9.649 4.443-3.131 13.203-3.131 7.956 0 11.849 1.904 3.893 1.862 5.459 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.593 2.793 2.158 6.009h-11.764q-.465-1.185-1.143-3.512-.296-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.405 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.819-3.005 5.077-4.57 3.301-1.608 9.48-2.793 8.336-1.566 11.552-2.92v-1.185q0-3.428-1.692-4.867-1.693-1.48-6.39-1.48-3.174 0-4.952 1.269-1.777 1.227-2.877 4.359zm15.911 9.648q-2.285.762-7.236 1.82t-6.475 2.073q-2.327 1.65-2.327 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.216 0 6.135-2.116 2.159-1.608 2.836-3.936.465-1.523.465-5.797z" /> + </svg> +); + +export const LogoEuSv = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1256.455 267.045" fill="#100f0d"> + <path d="M385.698 259.417H7.563V7.324h378.135ZM0 0v267.045h393.26V0H0" /> + <path d="m188.573 62.25 7.979-5.822 7.98 5.823-3.038-9.418 8.106-5.822h-9.991l-3.057-9.531-3.058 9.541-9.984-.01 8.099 5.822-3.036 9.418M147.28 73.344l7.98-5.823 7.974 5.823-3.032-9.417 8.1-5.823h-9.99l-3.056-9.541-3.058 9.552-9.985-.011 8.099 5.823-3.031 9.417M125.046 78.844l-3.057 9.552-9.983-.01 8.098 5.822-3.036 9.417 7.978-5.822 7.979 5.822-3.036-9.417 8.099-5.823h-9.984l-3.058-9.541M113.964 139.043l7.974 5.822-3.031-9.416 8.098-5.824h-9.984l-3.057-9.541-3.057 9.563-9.99-.022 8.104 5.824-3.036 9.416 7.979-5.822M128.104 170.99l-3.058-9.542L121.99 171l-9.983-.01 8.098 5.822-3.036 9.417 7.978-5.833 7.979 5.833-3.036-9.417 8.099-5.823h-9.984M158.374 201.26l-3.057-9.53-3.052 9.54-9.99-.01 8.1 5.823-3.031 9.417 7.978-5.823 7.974 5.823-3.031-9.417 8.099-5.823h-9.99M199.614 212.23l-3.057-9.542-3.052 9.552-9.99-.01 8.1 5.822-3.031 9.417 7.978-5.822 7.974 5.822-3.036-9.417 8.104-5.823h-9.99M240.854 201.26l-3.052-9.53-3.062 9.54-9.98-.01 8.094 5.823-3.03 9.417 7.978-5.823 7.979 5.823-3.041-9.417 8.104-5.823h-9.99M271.136 170.99l-3.063-9.542L265.01 171l-9.978-.01 8.104 5.822-3.042 9.417 7.979-5.833 7.979 5.833-3.042-9.417 8.104-5.823h-9.978M292.084 129.51h-9.99l-3.062-9.54-3.052 9.551-9.99-.01 8.104 5.822-3.032 9.418 7.97-5.834 7.978 5.834-3.03-9.418 8.104-5.822M260.093 103.5l7.979-5.823 7.98 5.823-3.042-9.417 8.104-5.812h-9.98l-3.062-9.542-3.062 9.552-9.98-.01 8.104 5.812-3.041 9.417M237.917 48.573l-3.052 9.552-9.99-.021 8.094 5.833-3.03 9.418 7.989-5.834 7.968 5.834-3.031-9.418 8.104-5.833h-10l-3.052-9.53" /> + <path d="M440.4 102.216V40.178h42.53v10.495h-30.004v14.684h25.899v10.495h-25.899v26.364Zm52.771-51.035V40.178h11.891v11.003zm0 51.035V57.275h11.891v44.941Zm64.957 0h-11.891V79.28q0-7.279-.762-9.395-.762-2.158-2.497-3.343-1.692-1.185-4.104-1.185-3.09 0-5.544 1.693-2.454 1.693-3.385 4.486-.89 2.793-.89 10.325v20.355h-11.89V57.275h11.045v6.601q5.882-7.617 14.81-7.617 3.936 0 7.195 1.439 3.258 1.396 4.909 3.597 1.692 2.2 2.327 4.993.677 2.793.677 7.998zm20.948-31.23-10.79-1.947q1.819-6.517 6.262-9.649 4.443-3.131 13.203-3.131 7.956 0 11.85 1.904 3.892 1.862 5.458 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.593 2.793 2.159 6.009h-11.765q-.465-1.185-1.142-3.512-.297-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.406 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.82-3.005 5.078-4.57 3.3-1.608 9.479-2.793 8.336-1.566 11.553-2.92v-1.185q0-3.428-1.693-4.867-1.693-1.48-6.39-1.48-3.174 0-4.951 1.269-1.778 1.227-2.878 4.359zm15.912 9.648q-2.286.762-7.237 1.82-4.951 1.058-6.474 2.073-2.328 1.65-2.328 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.216 0 6.136-2.116 2.158-1.608 2.835-3.936.466-1.523.466-5.797zm64.28 21.582h-11.892V79.28q0-7.279-.761-9.395-.762-2.158-2.497-3.343-1.693-1.185-4.105-1.185-3.09 0-5.544 1.693-2.454 1.693-3.385 4.486-.889 2.793-.889 10.325v20.355h-11.891V57.275h11.045v6.601q5.882-7.617 14.811-7.617 3.936 0 7.194 1.439 3.259 1.396 4.909 3.597 1.693 2.2 2.327 4.993.678 2.793.678 7.998zm7.87-12.822 11.934-1.82q.761 3.47 3.089 5.29 2.327 1.777 6.517 1.777 4.612 0 6.94-1.693 1.566-1.184 1.566-3.173 0-1.355-.847-2.243-.889-.847-3.978-1.566-14.388-3.174-18.239-5.798-5.332-3.639-5.332-10.113 0-5.84 4.613-9.818 4.613-3.978 14.303-3.978 9.226 0 13.711 3.005 4.486 3.004 6.179 8.886l-11.215 2.074q-.719-2.624-2.75-4.02-1.99-1.397-5.713-1.397-4.697 0-6.729 1.312-1.354.931-1.354 2.412 0 1.27 1.185 2.158 1.608 1.185 11.087 3.343 9.522 2.159 13.288 5.29 3.724 3.174 3.724 8.845 0 6.178-5.163 10.621-5.162 4.444-15.276 4.444-9.183 0-14.558-3.724-5.332-3.724-6.982-10.114zm52.39-38.213V40.178h11.891v11.003zm0 51.035V57.275h11.891v44.941Zm50.103-14.303 11.85 1.989q-2.286 6.516-7.237 9.944-4.909 3.386-12.314 3.386-11.722 0-17.35-7.66-4.444-6.136-4.444-15.488 0-11.172 5.84-17.477 5.84-6.348 14.769-6.348 10.029 0 15.827 6.644 5.797 6.601 5.543 20.27h-29.792q.127 5.29 2.878 8.252 2.75 2.92 6.856 2.92 2.793 0 4.697-1.524 1.904-1.523 2.877-4.908zm.678-12.019q-.127-5.162-2.666-7.828-2.54-2.709-6.179-2.709-3.893 0-6.432 2.836-2.54 2.835-2.497 7.701zm32.881 26.322h-11.891V57.275h11.045v6.39q2.835-4.528 5.078-5.967 2.285-1.439 5.163-1.439 4.062 0 7.828 2.243l-3.681 10.368q-3.005-1.947-5.586-1.947-2.497 0-4.232 1.397-1.735 1.354-2.75 4.95-.974 3.598-.974 15.066zm31.23-31.23-10.791-1.947q1.82-6.517 6.263-9.649 4.443-3.131 13.203-3.131 7.956 0 11.849 1.904 3.893 1.862 5.459 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.593 2.793 2.158 6.009h-11.764q-.465-1.185-1.143-3.512-.296-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.405 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.819-3.005 5.077-4.57 3.301-1.608 9.48-2.793 8.336-1.566 11.552-2.92v-1.185q0-3.428-1.692-4.867-1.693-1.48-6.39-1.48-3.174 0-4.952 1.269-1.777 1.227-2.877 4.359zm15.911 9.648q-2.285.762-7.236 1.82t-6.475 2.073q-2.327 1.65-2.327 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.216 0 6.136-2.116 2.158-1.608 2.835-3.936.465-1.523.465-5.797zm19.213 8.76 11.934-1.82q.762 3.47 3.089 5.29 2.327 1.777 6.517 1.777 4.613 0 6.94-1.693 1.566-1.184 1.566-3.173 0-1.355-.847-2.243-.888-.847-3.977-1.566-14.388-3.174-18.24-5.798-5.331-3.639-5.331-10.113 0-5.84 4.612-9.818 4.613-3.978 14.304-3.978 9.225 0 13.71 3.005 4.486 3.004 6.179 8.886l-11.214 2.074q-.72-2.624-2.75-4.02-1.99-1.397-5.714-1.397-4.697 0-6.728 1.312-1.354.931-1.354 2.412 0 1.27 1.184 2.158 1.608 1.185 11.088 3.343 9.521 2.159 13.287 5.29 3.724 3.174 3.724 8.845 0 6.178-5.162 10.621-5.163 4.444-15.277 4.444-9.183 0-14.557-3.724-5.332-3.724-6.983-10.114zM954.9 70.986l-10.791-1.947q1.82-6.517 6.263-9.649 4.443-3.131 13.203-3.131 7.956 0 11.85 1.904 3.892 1.862 5.458 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.593 2.793 2.159 6.009h-11.765q-.465-1.185-1.142-3.512-.297-1.058-.424-1.397-3.046 2.962-6.516 4.443-3.47 1.482-7.406 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.82-3.005 5.078-4.57 3.3-1.608 9.479-2.793 8.336-1.566 11.552-2.92v-1.185q0-3.428-1.692-4.867-1.693-1.48-6.39-1.48-3.174 0-4.951 1.269-1.778 1.227-2.878 4.359zm15.911 9.648q-2.285.762-7.236 1.82t-6.474 2.073q-2.328 1.65-2.328 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.216 0 6.136-2.116 2.158-1.608 2.835-3.936.465-1.523.465-5.797zm35.76 21.582-18.112-44.941h12.483l8.464 22.936 2.454 7.66q.974-2.92 1.228-3.852.592-1.904 1.269-3.808l8.548-22.936h12.23l-17.858 44.941ZM440.316 206.216v-62.038h45.999v10.495h-33.473v13.753h31.145v10.453h-31.145v16.885H487.5v10.452Zm87.301 0v-6.729q-2.454 3.597-6.475 5.671-3.977 2.074-8.42 2.074-4.529 0-8.126-1.99-3.597-1.988-5.205-5.585t-1.608-9.945v-28.437h11.891v20.65q0 9.48.635 11.638.677 2.116 2.412 3.385 1.735 1.228 4.401 1.228 3.047 0 5.46-1.65 2.411-1.693 3.3-4.148.889-2.497.889-12.145v-18.958h11.891v44.941Zm34.742 0h-11.891v-44.941h11.045v6.39q2.835-4.528 5.078-5.967 2.285-1.439 5.163-1.439 4.062 0 7.829 2.243L575.9 172.87q-3.005-1.947-5.586-1.947-2.497 0-4.232 1.397-1.735 1.354-2.75 4.95-.974 3.598-.974 15.066zm19.594-23.105q0-5.925 2.92-11.469 2.92-5.543 8.252-8.463 5.374-2.92 11.976-2.92 10.198 0 16.715 6.644 6.517 6.601 6.517 16.715 0 10.199-6.601 16.927-6.56 6.687-16.547 6.687-6.178 0-11.806-2.793-5.586-2.793-8.506-8.168-2.92-5.416-2.92-13.16zm12.187.634q0 6.686 3.174 10.241 3.174 3.555 7.83 3.555 4.654 0 7.786-3.555 3.173-3.555 3.173-10.325 0-6.602-3.173-10.157-3.132-3.554-7.787-3.554-4.655 0-7.829 3.554-3.174 3.555-3.174 10.241zm43.164-22.47h11.087v6.601q2.158-3.385 5.84-5.501 3.682-2.116 8.167-2.116 7.83 0 13.288 6.136 5.459 6.136 5.459 17.096 0 11.257-5.501 17.52-5.502 6.22-13.33 6.22-3.724 0-6.771-1.48-3.005-1.482-6.348-5.079v22.64h-11.891zm11.764 21.709q0 7.574 3.005 11.214 3.004 3.597 7.32 3.597 4.148 0 6.899-3.301 2.75-3.343 2.75-10.918 0-7.067-2.835-10.495-2.835-3.428-7.025-3.428-4.359 0-7.236 3.386-2.878 3.343-2.878 9.945zm67.54 8.929 11.849 1.989q-2.285 6.516-7.236 9.944-4.91 3.386-12.315 3.386-11.722 0-17.35-7.66-4.443-6.136-4.443-15.488 0-11.172 5.84-17.477 5.84-6.348 14.768-6.348 10.03 0 15.827 6.644 5.798 6.601 5.544 20.27H699.3q.127 5.29 2.878 8.252 2.75 2.92 6.855 2.92 2.793 0 4.697-1.524 1.905-1.523 2.878-4.908zm.677-12.019q-.127-5.162-2.666-7.828-2.539-2.709-6.178-2.709-3.894 0-6.433 2.836-2.539 2.835-2.496 7.701zm21.498-24.713v-11.003h11.891v11.003zm0 51.035v-44.941h11.891v44.941Zm19.889-12.822 11.933-1.82q.762 3.47 3.09 5.29 2.327 1.777 6.517 1.777 4.612 0 6.94-1.693 1.565-1.184 1.565-3.173 0-1.355-.846-2.243-.889-.847-3.978-1.566-14.388-3.174-18.239-5.798-5.332-3.639-5.332-10.113 0-5.84 4.613-9.818 4.612-3.978 14.303-3.978 9.225 0 13.711 3.005 4.486 3.004 6.179 8.886l-11.215 2.074q-.72-2.624-2.75-4.02-1.99-1.397-5.713-1.397-4.697 0-6.729 1.312-1.354.931-1.354 2.412 0 1.27 1.185 2.158 1.608 1.185 11.087 3.343 9.522 2.159 13.288 5.29 3.724 3.174 3.724 8.845 0 6.178-5.163 10.621-5.163 4.444-15.276 4.444-9.183 0-14.558-3.724-5.332-3.724-6.982-10.114zm51.967 12.822v-62.038h11.89v32.923l13.923-15.826h14.642l-15.361 16.419 16.462 28.522h-12.823l-11.299-20.186-5.543 5.798v14.388Zm57.509-31.23-10.791-1.947q1.82-6.517 6.263-9.649 4.443-3.131 13.203-3.131 7.956 0 11.849 1.904 3.893 1.862 5.459 4.782 1.608 2.878 1.608 10.622l-.127 13.88q0 5.925.55 8.76.593 2.793 2.158 6.009h-11.764q-.466-1.185-1.143-3.512-.296-1.058-.423-1.397-3.047 2.962-6.517 4.443-3.47 1.482-7.405 1.482-6.94 0-10.96-3.767-3.978-3.766-3.978-9.521 0-3.809 1.82-6.771 1.819-3.005 5.077-4.57 3.301-1.608 9.48-2.793 8.336-1.566 11.552-2.92v-1.185q0-3.428-1.693-4.867-1.692-1.48-6.39-1.48-3.173 0-4.95 1.269-1.778 1.227-2.878 4.359zm15.911 9.648q-2.285.762-7.236 1.82t-6.475 2.073q-2.327 1.65-2.327 4.19 0 2.496 1.862 4.316 1.862 1.82 4.74 1.82 3.215 0 6.135-2.116 2.159-1.608 2.836-3.936.465-1.523.465-5.797zm77.06 21.582v-6.729q-2.454 3.597-6.474 5.671-3.978 2.074-8.421 2.074-4.528 0-8.125-1.99-3.597-1.988-5.205-5.585t-1.608-9.945v-28.437h11.891v20.65q0 9.48.635 11.638.677 2.116 2.412 3.385 1.735 1.228 4.4 1.228 3.048 0 5.46-1.65 2.412-1.693 3.3-4.148.89-2.497.89-12.145v-18.958h11.89v44.941Zm64.238 0h-11.89V183.28q0-7.279-.763-9.395-.761-2.158-2.496-3.343-1.693-1.185-4.105-1.185-3.09 0-5.544 1.693-2.454 1.693-3.385 4.486-.889 2.793-.889 10.325v20.355h-11.891v-44.941h11.045v6.601q5.882-7.617 14.81-7.617 3.936 0 7.195 1.439 3.258 1.396 4.909 3.597 1.692 2.2 2.327 4.993.677 2.793.677 7.998zm12.062-51.035v-11.003h11.89v11.003zm0 51.035v-44.941h11.89v44.941Zm21.327-23.105q0-5.925 2.92-11.469 2.92-5.543 8.252-8.463 5.374-2.92 11.976-2.92 10.198 0 16.715 6.644 6.517 6.601 6.517 16.715 0 10.199-6.601 16.927-6.56 6.687-16.546 6.687-6.179 0-11.807-2.793-5.586-2.793-8.506-8.168-2.92-5.416-2.92-13.16zm12.188.634q0 6.686 3.173 10.241 3.174 3.555 7.83 3.555 4.654 0 7.786-3.555 3.173-3.555 3.173-10.325 0-6.602-3.173-10.157-3.132-3.554-7.787-3.554-4.655 0-7.829 3.554-3.173 3.555-3.173 10.241zm84.382 22.471h-11.892V183.28q0-7.279-.761-9.395-.762-2.158-2.497-3.343-1.693-1.185-4.105-1.185-3.09 0-5.544 1.693-2.454 1.693-3.385 4.486-.889 2.793-.889 10.325v20.355h-11.89v-44.941h11.044v6.601q5.882-7.617 14.811-7.617 3.936 0 7.194 1.439 3.259 1.396 4.91 3.597 1.692 2.2 2.327 4.993.677 2.793.677 7.998zm38.086-14.303 11.85 1.989q-2.286 6.516-7.237 9.944-4.909 3.386-12.315 3.386-11.722 0-17.35-7.66-4.443-6.136-4.443-15.488 0-11.172 5.84-17.477 5.84-6.348 14.769-6.348 10.029 0 15.826 6.644 5.798 6.601 5.544 20.27h-29.792q.127 5.29 2.878 8.252 2.75 2.92 6.855 2.92 2.793 0 4.698-1.524 1.904-1.523 2.877-4.908zm.677-12.019q-.127-5.162-2.666-7.828-2.539-2.709-6.178-2.709-3.893 0-6.432 2.836-2.54 2.835-2.497 7.701zm62.376 26.322h-11.891V183.28q0-7.279-.762-9.395-.762-2.158-2.497-3.343-1.693-1.185-4.105-1.185-3.089 0-5.543 1.693-2.455 1.693-3.386 4.486-.888 2.793-.888 10.325v20.355h-11.892v-44.941h11.045v6.601q5.882-7.617 14.811-7.617 3.936 0 7.195 1.439 3.258 1.396 4.908 3.597 1.693 2.2 2.328 4.993.677 2.793.677 7.998z" /> + </svg> +); + +export const LogoEuEn = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => { + return ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 331.127 70.656" fill="#100f0d"> + <path d="M102.05 68.638H2v-66.7h100.05ZM0 0v70.656h104.05V0H0" /> + <path d="m49.893 16.47 2.111-1.54 2.112 1.54-.804-2.491 2.145-1.54h-2.644l-.809-2.522-.809 2.524-2.641-.003 2.143 1.54-.804 2.492M38.968 19.406l2.111-1.541 2.11 1.54-.802-2.491 2.143-1.54h-2.643l-.809-2.525-.809 2.527-2.642-.003 2.143 1.54-.802 2.493M33.085 20.86l-.809 2.528-2.641-.003 2.142 1.54-.803 2.493 2.111-1.541 2.111 1.54-.803-2.491 2.143-1.54h-2.642l-.809-2.525M30.153 36.788l2.11 1.541-.802-2.491 2.142-1.541h-2.641l-.809-2.525-.809 2.53-2.643-.005 2.144 1.54-.803 2.492 2.111-1.54M33.894 45.24l-.809-2.524-.809 2.528-2.641-.003 2.142 1.54-.803 2.492 2.111-1.543 2.111 1.543-.803-2.491 2.143-1.541h-2.642M41.903 53.25l-.809-2.522-.807 2.525-2.643-.003 2.143 1.54-.802 2.492 2.11-1.54 2.11 1.54-.802-2.491 2.143-1.54h-2.643M52.815 56.152l-.81-2.524-.807 2.527-2.643-.003 2.143 1.54-.802 2.493 2.111-1.541 2.11 1.54-.804-2.491 2.145-1.54h-2.643M63.726 53.25l-.807-2.522-.81 2.525-2.641-.003 2.141 1.54-.802 2.492 2.112-1.54 2.11 1.54-.804-2.491 2.144-1.54h-2.643M71.738 45.24l-.81-2.524-.81 2.528-2.64-.003 2.143 1.54-.804 2.492 2.11-1.543 2.112 1.543-.805-2.491 2.144-1.541h-2.64M77.28 34.266h-2.643l-.81-2.524-.807 2.527-2.643-.003 2.144 1.54-.802 2.493 2.108-1.544 2.111 1.544-.802-2.492 2.144-1.54M68.816 27.384l2.111-1.54 2.112 1.54-.805-2.491 2.144-1.538h-2.64l-.81-2.525-.81 2.528-2.641-.003 2.144 1.538-.805 2.491M62.949 12.852l-.808 2.527-2.643-.006 2.142 1.544-.802 2.491 2.114-1.543 2.108 1.543-.802-2.491 2.144-1.544h-2.646l-.807-2.521" /> + <path d="M116.523 27.045V10.63h11.252v2.777h-7.938v3.885h6.852v2.777h-6.852v6.976Zm21.788 0v-1.78q-.65.951-1.713 1.5-1.052.548-2.228.548-1.198 0-2.15-.526-.951-.526-1.377-1.478-.425-.952-.425-2.631v-7.524h3.146v5.464q0 2.508.168 3.079.179.56.638.896.46.324 1.165.324.806 0 1.444-.436.638-.448.873-1.098.235-.66.235-3.213v-5.016h3.147v11.89Zm16.996 0h-3.146v-6.069q0-1.926-.201-2.486-.202-.57-.66-.884-.449-.314-1.087-.314-.817 0-1.467.448-.65.448-.895 1.187-.236.74-.236 2.732v5.386h-3.146V15.154h2.922V16.9q1.557-2.016 3.92-2.016 1.04 0 1.903.38.862.37 1.298.953.448.582.616 1.32.18.74.18 2.117zm14.097 0h-2.923v-1.747q-.727 1.019-1.724 1.523-.985.492-1.993.492-2.049 0-3.516-1.646-1.455-1.657-1.455-4.613 0-3.023 1.422-4.59 1.422-1.579 3.594-1.579 1.993 0 3.449 1.657V10.63h3.146zm-8.398-6.203q0 1.903.527 2.754.76 1.232 2.127 1.232 1.086 0 1.847-.918.762-.93.762-2.766 0-2.049-.74-2.945-.738-.907-1.891-.907-1.12 0-1.882.896-.75.885-.75 2.654zm18.385 2.418 3.135.526q-.604 1.725-1.914 2.632-1.3.895-3.259.895-3.101 0-4.59-2.026-1.176-1.624-1.176-4.098 0-2.956 1.545-4.624 1.546-1.68 3.908-1.68 2.654 0 4.188 1.758 1.533 1.747 1.466 5.363h-7.882q.033 1.4.761 2.184.728.772 1.814.772.74 0 1.243-.403.504-.403.761-1.299zm.18-3.18q-.034-1.366-.706-2.071-.672-.717-1.635-.717-1.03 0-1.702.75-.671.75-.66 2.038zm16.593 6.965h-2.922v-1.747q-.728 1.019-1.725 1.523-.985.492-1.993.492-2.049 0-3.515-1.646-1.456-1.657-1.456-4.613 0-3.023 1.422-4.59 1.422-1.579 3.594-1.579 1.993 0 3.449 1.657V10.63h3.146zm-8.398-6.203q0 1.903.527 2.754.761 1.232 2.127 1.232 1.086 0 1.847-.918.762-.93.762-2.766 0-2.049-.74-2.945-.738-.907-1.891-.907-1.12 0-1.881.896-.75.885-.75 2.654zm17.736 6.203V10.63h3.146v5.912q1.456-1.657 3.449-1.657 2.172 0 3.594 1.579 1.422 1.567 1.422 4.512 0 3.046-1.456 4.691-1.444 1.646-3.516 1.646-1.018 0-2.015-.503-.985-.516-1.702-1.512v1.747Zm3.124-6.203q0 1.847.582 2.732.817 1.254 2.172 1.254 1.041 0 1.77-.885.738-.896.738-2.81 0-2.038-.739-2.934-.739-.907-1.892-.907-1.131 0-1.881.885-.75.873-.75 2.665zm9.528-5.688h3.348l2.843 8.442 2.777-8.442h3.258l-4.198 11.443-.75 2.071q-.415 1.041-.795 1.59-.37.549-.863.885-.481.347-1.198.537-.705.19-1.6.19-.908 0-1.78-.19l-.28-2.463q.738.145 1.332.145 1.097 0 1.623-.65.526-.637.806-1.634zM121.93 42.67v2.509h-2.15v4.792q0 1.455.057 1.702.067.235.28.391.224.157.537.157.437 0 1.265-.302l.269 2.44q-1.097.471-2.486.471-.85 0-1.534-.28-.683-.291-1.007-.739-.314-.459-.437-1.231-.1-.55-.1-2.217v-5.184h-1.445V42.67h1.444v-2.363l3.158-1.836v4.199Zm5.319-4.523v6.035q1.523-1.78 3.639-1.78 1.086 0 1.96.403.872.403 1.31 1.03.447.627.604 1.388.168.762.168 2.363v6.975h-3.147V48.28q0-1.87-.179-2.374-.179-.503-.638-.795-.448-.302-1.13-.302-.784 0-1.4.38-.616.381-.907 1.154-.28.761-.28 2.262v5.956h-3.146V38.147Zm17.757 12.63 3.135.526q-.604 1.724-1.914 2.631-1.299.896-3.258.896-3.102 0-4.59-2.027-1.177-1.623-1.177-4.097 0-2.956 1.546-4.625 1.545-1.68 3.907-1.68 2.654 0 4.188 1.759 1.534 1.746 1.466 5.363h-7.882q.034 1.4.761 2.183.728.773 1.814.773.74 0 1.243-.403.504-.403.761-1.3zm.18-3.18q-.034-1.366-.706-2.071-.672-.717-1.634-.717-1.03 0-1.702.75-.672.75-.661 2.038zm12.08 6.964V38.147h12.171v2.777h-8.856v3.639h8.24v2.765h-8.24v4.468h9.17v2.765Zm23.1 0v-1.78q-.65.952-1.714 1.5-1.052.549-2.228.549-1.198 0-2.15-.526-.951-.526-1.377-1.478-.425-.952-.425-2.631V42.67h3.146v5.463q0 2.509.168 3.08.18.56.638.895.46.325 1.165.325.806 0 1.444-.437.638-.448.873-1.097.236-.66.236-3.213V42.67h3.146v11.89Zm9.192 0h-3.146v-11.89h2.922v1.69q.75-1.198 1.343-1.578.605-.381 1.366-.381 1.075 0 2.072.593l-.974 2.743q-.795-.515-1.478-.515-.66 0-1.12.37-.459.358-.728 1.31-.257.952-.257 3.986zm5.184-6.113q0-1.568.772-3.034.773-1.467 2.184-2.24 1.422-.772 3.168-.772 2.699 0 4.423 1.758 1.724 1.746 1.724 4.422 0 2.699-1.746 4.479-1.736 1.769-4.378 1.769-1.635 0-3.124-.739-1.478-.739-2.25-2.16-.773-1.434-.773-3.483zm3.225.168q0 1.769.84 2.71.839.94 2.07.94 1.232 0 2.06-.94.84-.941.84-2.732 0-1.747-.84-2.688-.828-.94-2.06-.94-1.231 0-2.07.94-.84.94-.84 2.71zm11.42-5.945h2.933v1.746q.571-.895 1.545-1.455.975-.56 2.161-.56 2.072 0 3.516 1.623 1.444 1.624 1.444 4.524 0 2.978-1.455 4.635-1.456 1.646-3.527 1.646-.985 0-1.791-.392-.795-.392-1.68-1.343v5.99h-3.146zm3.113 5.743q0 2.005.794 2.967.795.952 1.937.952 1.098 0 1.826-.873.727-.885.727-2.889 0-1.87-.75-2.777t-1.859-.907q-1.153 0-1.914.896-.761.885-.761 2.631zm17.869 2.363 3.135.526q-.605 1.724-1.915 2.631-1.298.896-3.258.896-3.101 0-4.59-2.027-1.176-1.623-1.176-4.097 0-2.956 1.545-4.625 1.545-1.68 3.908-1.68 2.653 0 4.187 1.759 1.534 1.746 1.467 5.363h-7.882q.033 1.4.761 2.183.728.773 1.814.773.739 0 1.243-.403.504-.403.761-1.3zm.18-3.18q-.034-1.366-.706-2.071-.672-.717-1.635-.717-1.03 0-1.702.75-.672.75-.66 2.038zm8.038-1.299-2.855-.515q.482-1.724 1.657-2.553 1.176-.828 3.494-.828 2.105 0 3.135.504 1.03.492 1.444 1.265.426.761.426 2.81l-.034 3.673q0 1.567.146 2.317.156.74.57 1.59h-3.112q-.123-.313-.302-.929-.079-.28-.112-.37-.806.784-1.725 1.176-.918.392-1.959.392-1.836 0-2.9-.996-1.052-.997-1.052-2.52 0-1.007.481-1.791.482-.795 1.344-1.21.873-.425 2.508-.738 2.205-.415 3.056-.773v-.313q0-.907-.447-1.288-.448-.392-1.691-.392-.84 0-1.31.336-.47.325-.762 1.153zm4.21 2.553q-.604.202-1.914.482-1.31.28-1.713.548-.616.437-.616 1.109 0 .66.493 1.142.492.481 1.254.481.85 0 1.623-.56.571-.425.75-1.041.123-.403.123-1.534zm17.008 5.71h-3.146v-6.068q0-1.926-.202-2.486-.201-.57-.66-.884-.448-.314-1.086-.314-.818 0-1.467.448-.65.448-.896 1.187-.235.739-.235 2.732v5.385h-3.146v-11.89h2.922v1.746q1.557-2.015 3.919-2.015 1.041 0 1.903.38.863.37 1.3.952.447.582.615 1.321.18.74.18 2.117zm9.562-16.414h3.314v8.89q0 2.116.123 2.743.213 1.008 1.008 1.624.806.604 2.195.604 1.41 0 2.127-.57.717-.583.862-1.422.146-.84.146-2.788v-9.08h3.314v8.62q0 2.956-.269 4.177-.269 1.22-.996 2.06-.717.84-1.926 1.344-1.21.492-3.158.492-2.35 0-3.571-.537-1.21-.549-1.915-1.411-.705-.873-.93-1.825-.324-1.41-.324-4.165zm27.375 16.414h-3.146v-6.068q0-1.926-.201-2.486-.202-.57-.66-.884-.449-.314-1.087-.314-.817 0-1.467.448-.65.448-.895 1.187-.236.739-.236 2.732v5.385h-3.146v-11.89h2.922v1.746q1.557-2.015 3.92-2.015 1.04 0 1.903.38.862.37 1.298.952.448.582.616 1.321.18.74.18 2.117zm3.191-13.503v-2.91h3.147v2.91zm0 13.503v-11.89h3.147v11.89Zm5.644-6.113q0-1.568.772-3.034.773-1.467 2.183-2.24 1.422-.772 3.17-.772 2.697 0 4.422 1.758 1.724 1.746 1.724 4.422 0 2.699-1.747 4.479-1.735 1.769-4.378 1.769-1.634 0-3.123-.739-1.478-.739-2.25-2.16-.773-1.434-.773-3.483zm3.224.168q0 1.769.84 2.71.84.94 2.071.94 1.232 0 2.06-.94.84-.941.84-2.732 0-1.747-.84-2.688-.828-.94-2.06-.94-1.231 0-2.071.94-.84.94-.84 2.71zm22.326 5.945h-3.146v-6.068q0-1.926-.202-2.486-.201-.57-.66-.884-.448-.314-1.087-.314-.817 0-1.466.448-.65.448-.896 1.187-.235.739-.235 2.732v5.385h-3.146v-11.89h2.922v1.746q1.556-2.015 3.919-2.015 1.041 0 1.903.38.862.37 1.299.952.448.582.616 1.321.179.74.179 2.117z" /> + </svg> + ); +}; + +export const LogoOkmFiSv = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 264.695 40.8"> + <path + fill="#171717" + transform="matrix(.35278 0 0 -.35278 29.077 17.515)" + d="M0 0c.973-.185 1.72-.143 2.181.187 0 0-.25 2.651-.5 3.727-.719-.184-2.11-.342-3.06 1.05a8.95 8.95 0 0 1-.614.957c-1.975 2.685-4.294 4.432-6.582 5.779 4.179 2.077 5.47 4.04 6.174 5.21 1.284 2.135 2.371 8.891-3.575 12.164-4.303 2.369-8.773 1.347-10.669.455-3.613-1.701-6.174-5.478-5.271-10.302.797-4.256 3.614-5.771 7.169-7.544-2.79-1.5-4.628-3.166-4.64-6.474-.006-2.061 1.589-4.039.651-7.903-.088-.36 2.524 1.018 2.601 1.175.901 2.026.6 4.827.6 4.827.926-.75.901-2.851.626-4.058 0 0 1.687 1.032 1.856 1.557.889 2.763-.018 4.465-.544 5.853-.52 1.375.408 2.733 1.737 3.539A31.235 31.235 0 0 0-9.457 8.75c.644-.431 4.094-2.798 5.291-5.794 1.903-4.764.627-7.361-.014-8.352-1.218-1.88-2.81-3.314-5.204-3.564a1.297 1.297 0 0 1-.254.013 11.03 11.03 0 0 0-1.99.059c-.64.096-1.249.246-1.813.423-.476.161-.955.353-1.479.565-1.52.748-5.438 2.929-8.748 6.522-2.749 2.984-4.379 5.116-5.64 6.713 1.617-.742 3.597-.482 3.623-.478.011.002.116 1.539.116 2.303l.1 2.301s.1 1.05.1 1.851c0 0-4.752.3-5.652 2.551 0 0 .95-.6 2.551-.7 1.423-.089 3.201.2 3.201.2.15.375.3 4.201.3 4.201.051.401.051 2.001.051 2.001-.799-.21-2.03-.023-3.402.3-.85.2-2.301 1.051-2.851 2.001 0 0 1-.45 2.664-.65 1.78-.214 3.76.136 3.786.375.102.975.079 3.938.077 4.014 0 0 .177 2.196.072 2.177-.494-.091-3.298-.001-5.549 2.363 0 0-.853.675-.027 1.875 0 0-4.503 2.025-4.502 2.026 0 0 .95.926.975 1.876.028 1.05-1.601 1.676-2.876 1.451-1.219-.215-2.151-1.501-2.151-1.501l-5.625 2.502-4.455-4.49c-.041-.042-.337-.413-.275-.851l.063-.4a.775.775 0 0 0-.151-.55c-.399-.525-.937-1.063-1.337-1.563-.38-.475-.673-.877-.826-1.125-.458-.748-.622-1.25-.788-1.727 0 0-.576-1.24 1.572-2.927l.128-.101.214.303.184-.191c.171-.173.525-.506.886-.717 0 0 .156.754.583 1.382.373.551 1.173 1.251 1.723 1.601.697.444 1.376.676 2.176.7.677.022 1.149-.231 1.626-.724.7-.726.975-2.527.741-3.286-.274.183-.483.31-.483.31-.9.45-2.705 1.254-5.002.25-.8-.351-2.236-1.051-4.652-1.751-1.253-.363-2.124-.228-2.35.85a2.36 2.36 0 0 0 .25 1.651s-1.567-.27-1.912-1.651c-.35-1.4.19-2.699 1.501-3.026 1.2-.3 3.101.575 4.502 1.325.502.27 1.533.814 2.25 1.126 1.326.575 2.248.645 3.627.024 1.003-.45 1.578-1.075 1.578-1.075s-.45-1.176-2.116-1.25c-1.332-.059-2.365.65-2.778 1.288 0 0-.287-.682-.412-.901-.432-.75.093-1.163-.096-1.687-.199-.547-1.135-1.171-1.651-1.526-.801-.55-2.23-.97-2.574-1.051 0 0 .867-1.935.982-2.151.442-.832 1.23-2.602 1.932-3.271 0 0 1.602.35 2.702 1 1.04.615 1.838 1.333 2.1 1.933-1.463-3.414-2.552-4.577-3.509-5.196-3.773-2.441-11.314-7.822-18.517-8.797-2.101-.074-5.505 3.027-6.399 4.126-.65.801-2.001-.349-2.001-.349s-2.758.464-4.001-1.401c-.201-.3 1.45.25 2.5-.1.712-.237-.25-.6-.25-1.251 0-1.001 3.091-1.784 4.333-2.2.414-.139.375-.507.175-.501-2.351.075-3.77 1.095-4.702 1.376-1.826.55-2.425.178-2.556-.675-.101-.651-2.251-.051-2.631-3.902-.037-.373 2.311 2.597 2.477 1.576.504-3.127 5.862-.525 6.977-1.351.736-.544-5.523-.475-4.573-2.376.146-.291-2.75-2.101-.3-4.402 0 0 .151 2.601 1.701 2.501 1.278-.082 1.901-1.301 3.502-.1.588.44.903 1.046 3.047 1.676.159.047.161-.719.504-1.226.206-.303.847-.296.846-.575 0-.996-1.238-1.837-1.2-1.875.041-.042 1.425-.751 2.701 1.575.244.446.704.075 1.204.225 1.847.554-.025 1.713 1.047 2.701 1.355 1.25 2.855 1.951 4.256 2.501 0 0-.605-1.641.171-3.176l5.552 1.426c-.608 1.43.326 3.255 1.452 4.681.256.323-.745-3.467.08-4.292l5.451 1.411c-.391.907-.187 2.338.242 3.41.595-2.506 1.818-5.176 4.355-6.283 4.123-1.799 7.758-2.641 13.836-4.439 1.634-.483 3.374-1.091 4.176-1.491 1.2-.601-.625-1.851-.625-1.851.6-.376 1.515-.584 3.151-1.801 1.816-1.351 2.517-3.971 3.191-6.828.526-2.226.926-5.202.176-6.078-.394-.459-.826-.899-3.226-1.35l.45-2.101c1.675-.125 3.091.583 3.091.583s-.15-.143-.35-.412c-.568-.769-.776-1.329-.911-2.268l2.221-1.43c.601 1.901 1.318 3.579 1.951 3.827.981.385 5.527-1.901 7.288-6.352 1.034-2.617.636-8.117-2.001-8.604-1.409-.26-4.652 2.551-5.352 1.25-.733-1.359-4.552-1.2-3.152-5.052.735.971 1.648 1.965 2.251 1.751.399-.141.372-.709.75-1.15.477-.557 4.051.468 4.252-.151.1-.281-.489-.258-.847-.324-1.766-.325-3.972-.553-4.305-1.426-.106-.278.068-.346-.1-.851-.35-1.05-2.001-.95-1.901-3.451.101-1.2 1.25-2.148 1.401-2.151.236-.005-.106 2.578 1 2.801.534.108.751-.93 1.551-.9 1.354.05 4.089 4.145 5.353 3.801.386-.2-2.402-1.9-2.752-3.401-.287-1.232 1.13-1.399 1.151-2.251.05-2.001 3.895-2.901 4.151-2.651.266.258-2.307 2.205-1.65 3.052.339.437.898-.239 1.801.149.299.301-1.351 3.002 1.951 6.103 0 0 .65-1.201 1.9-1.351 1.108-.133.392-2.689.55-2.701.23-.016 1.601 1.651 1.301 3.702 0 0 .901.699 1.05 1.25.501 1.851-1.9.6-1.65 5.603.045.915-.243.643-.951 1.35-.4.4-.598 1.108-.25.951 1.276-.576 2.912-.056 2.912-.056.489 4.932.14 5.308.14 5.308-1.751-.05-2.561.375-3.053.98 1.172-.266 2.502-.079 3.053.371 0 0-.112 5.169-.5 5.051-1.325-.4-2.287-.34-3.355.372-.901.6.013 2.207-1.038 2.357-2.126.538-3.853 1.991-4.271 2.549-.9 1.2-.675 1.95-.675 1.95.808-.408 1.691-.559 2.523-.282l.327 4.083s-.811.053-1.462.353c-.777.358-1.378 1.379-1.378 1.379s.69-.309 1.53-.447c.879-.144 1.495.142 1.495.142l.556 4.608c-2.53-.192-2.493 1.308-2.462 1.597 4.601.763 7.439 4.964 8.302 8.604.456-.268 1.574-.697 2.472-.372 0 0 .225 3.101.1 3.576C1.508-1.206.51-.995 0 0m-43.918 31.653c.067-.205-2.4-.57-2.603-.413-.213.164-.303 1.268-.154 1.51.195.316 2.459-.178 2.757-1.097m29.407-39.731c-.11.044-.216.089-.319.134-.017.008-.035.016-.053.026.154-.065.277-.119.372-.16m3.098 21.302c-3.035 1.527-5.717 2.723-7.067 5.003-1.234 2.267-.765 6.537 2.493 8.48.744-.697.744-1.546.744-1.546.831-.032 2.522.132 3.352.1.05.65.041 1.637-.46 2.437.851-.599 1.417-1.069 1.631-2.432.523-.017 3.022-.107 3.022-.107.033.775-.161 1.39-.618 1.899 3.285-1.366 4.064-4.513 4.01-6.101a6.39 6.39 0 0 0-3.005-5.63c-1.575-.972-2.922-1.593-4.102-2.103m5.252 21.298 4.001 1.951-4.051 1.701c-2.829-.111-9.532.086-17.5.215l-3.363-4.347c8.9.196 17.479.375 20.913.48m-23.157-1.256 6.241 8.142s-.733.257-1.574-.213c-.84-.468-1.038-1.666-.942-1.913-.657 1.684-2.575.592-2.575.592 1.233-1.963.196-2.767-.631-2.55-1.107.291-.929 1.512-.929 1.512s-1.137-.982-1.972.02c-.637.768.269 1.799 2.097 1.744 0 0 .119 1.085-.876 1.781-.765.535-1.969.011-1.969.011s.807.405.974 1.278c.122.636-.113 1.589-.764 2.308l-.024.027-.037-.001c-.97-.008-1.83-.48-2.215-1-.529-.714-.281-1.582-.281-1.582s-.431 1.241-1.342 1.441c-1.185.26-1.903-.562-1.903-.562 1.278-1.307 1.134-2.674.137-2.724-1.303-.065-1.351 1.438-1.351 1.438s-.778-.959-1.741-.342c-.72.462-.83 1.769 1.448 2.191 0 0-.495 2.152-2.179 1.494.247.096.994 1.055.77 1.989-.225.937-.91 1.302-.91 1.302l-1.763-10.106 4.577-2.021c.548.473 1.075.786 1.45.952 1.251.549 2.552.401 3.602-.051 1.582-.681 1.77-1.601 1.825-2.295.033-.394-.318-1.219-.45-1.425zm-21.736.148 4.887 4.944c-1.903.009-4.09.066-7.064.066-.601 0-2.626 1.4-2.814 1.138 0 0-.457-1.101-.608-1.514 0 0 .946-1 .908-2.125-.008-.266.043-1.251-.92-2.189 0 0 .737-1.545.883-1.663 0 0 1.5.95 2.701 1.201.204.042.823.09 2.027.142m-6.479 4.247s-.05 5.065.025 5.277c0 0 .163.163.275.438.145.353-.013.9-.013.9h-3.088c-.062-.125-.038-.55.012-.725.063-.25.238-.55.45-.688v-5.202s-.447-.516-.55-1.675c-.087-.988.588-1.814.588-1.814l-.063-4.364s-.265-.202-.299-.65c-.038-.476.062-.688.062-.688h2.901c.033.091.075.625 0 .938a.89.89 0 0 1-.312.463l-.023 4.288c.275.466.744.976.735 1.764-.009.787-.505 1.466-.7 1.738m-3.474-25.902-3.845-4.944 6.283-2.609c3.621 1.857 8.686 5.321 8.686 5.321l-8.857 3.33zm1.427 2.077s-1.103.78-1.211.914c-.106.135-.188 1.452-.188 1.452l-2.07-1.667-6.352.003c-.162.026-.15-4.633-.15-4.633s3.22-2.705 3.357-2.608l4.274 5.41zm-3.03 10.756h-6.503l-.03-8.61 5.63-.137 1.785 1.407zm-6.653 1.251h6.653s.375 1.03.403 1.338l-.305 1.088h-6.728l-.376-1.126zm8.378 6.604.01 1.599s-.608.503-.666 1.933c-.037.937.637 1.856.637 1.856l-.018 1.539s-1.013.787-1.482.731l.019-5.583c.015-.962-1.401-2.058-2.589-2.276-2.648-.487-5.337-.325-5.337-.325s.085-.763.31-1.439c.167-.5.753-.938.753-.938h6.613zm-2.792 2.618c.055.419.027 1.041.027 1.463-.003.834-.006 1.883-.011 2.741 0 0 .004 1.081-.347 1.09-.234.007-.928.01-1.053-.029-.107-.167-.272-.894-.38-1.061l-.342 1.061c-.176.033-1.164.016-1.333-.031-.1-.183-.269-.847-.368-1.03l-.344 1.007c-.083.028-1.177.019-1.257-.024-.143-.159-.357-.835-.443-.983l-.323.983s-.475.009-.816 0c-.437-.012-.63-.605-.641-.965 0-1.083.02-1.555.036-2.667.009-.613.089-3.091.089-3.091.466.01.875.065 1.135.296.463.412.515 1.151.52 1.147-.014-.318-.005-1.373.045-1.762.015-.109.849-.224 1.379.317.413.42.516 1.178.62 1.445-.026-.609.006-1.742.097-1.762.22-.048.95-.003 1.344.392.411.411.561 1.012.602 1.37 0 .004.009-.886.056-1.257.139 0 .319-.002.526.064.036.012.418.157.601.314.22.191.501.361.581.972m-12.12-1.919c1.242 0 3.297.35 3.297.35l-.067 5.177s-1.332.216-2.558.401c-2.484.374-2.417-2.176-2.417-2.176l.067-1.426s.107-2.325 1.678-2.326m-1.143-83.405c-.018-.112-.156-1.12.578-1.775.514-.458 1.404-.697 1.813-.347.576.493.151 1.446.501 2.083.098.177.463.27.463.27.151.033.286.11.411.217 3.757-1.55 7.456-3.901 10.794-6.309.231-.167.439-.304.63-.42a7.861 7.861 0 0 0-.647-1.627c-.887-1.698-1.967-3.473-1.775-4.63.142-.849.708-1.431 1.544-1.466.925-.038 1.659.579 1.813 1.273.359 1.62-1.158 1.775-1.158 1.775s.473 1.396.656 1.851c1.536 3.811 3.499 3.573 3.499 3.573s-1.685 1.442.127 4.683c.976 1.743 1.389 3.047 1.582 4.32.122.802-.673 1.801-1.543 1.852-.913.054-1.781-.716-1.851-1.466-.194-2.044 1.49-1.733 1.388-2.083-.494-1.695-1.149-2.799-1.781-3.519-.278.181-.622.385-1.042.617-3.541 1.956-6.442 3.653-10.628 4.61.093.187.191.377.296.568.652 1.179 1.049 1.693.926 1.813-.089.087-.451-.264-1.389-.771-1.056-.572-1.427-.656-2.121-.733-.409-.045-.828.203-1.081.116-.287-.1-.453-.57-.771-1.505-.459-1.344-.473-1.391-.541-1.543-.405-.921-.616-.922-.693-1.427m53.882 32.927c-1.538 1.238-3.245 1.876-4.558 2.533 0 0 1.725 1.163 1.425 1.369-.531.366-1.256.394-1.256.394-5.617-2.122-11.264-5.35-14.138-7.307a1.688 1.688 0 0 1-.091-.058c-2.001-1.351-4.652.275-4.652.275l-.351-2.177c1.104-.643 1.857-.902 2.361-.985-.838-.16-2.013-.496-2.56-1.165l.75-2.001s1.177.978 3.079 1.03c.021-.108.039-.202.047-.28.264-2.538-3.651-6.122-7.103-7.503-3.501-1.4-6.261-1.419-6.903-1-2.301 1.5-2.434 3.599-3.614 3.914-.312.083-.637-.374-1.087-.3-1.839.3-3.969.172-4.603-1.413 0 0 4.261.33 2.501-.726-1.741-1.045 2.779-2.882 4.005-3.626.412-.25.068-.35-.048-.35-.82-.051-3.418 1.15-4.832 1.6-1.101.35-1.232-.532-1.451-.5-1.7.25-4.902-1.451-3.601-3.952 0 0 1.25 2.051 2.526 1.651.494-.155-.336-1.553.663-2.176 1.303-.812 6.07.775 6.94.075.76-.612-5.222-.475-5.396-1.662-.008-.056-.044-.401.069-.626.225-.526-1.201-1.099-1.276-2.814-.075-1.726 1.839-2.889 1.839-2.889.225.188-.523 2.259.262 2.589.416.175.766-.789 1.601-.901 1.716-.228 2.388 2.53 5.202 3.902 4.101 2.001.897-.858 2.401-1.2 2.416-.551-.335-2.702-.335-2.702.666-.447 2.836.301 3.636 2.402.29.759.663.404 1.114.937.412.488.037 1.313.312 1.864.558 1.116 3.101.65 2.952 1.7-.196 1.37 1 1.751 1.731 2.048.254.103.295-1.767 2.871-2.698.793.346 1.568.62 3.014 1.381.713.375 1.464.788 1.726 1.088.049.056-1.085.89-1.469 2.061-.19.578-.172.981-.107 1.015 0 0 1.239-1.695 2.927-2.326a37.928 37.928 0 0 1 4.263 2.534.063.063 0 0 1 .019.018c.173.297-3.086 2.449-1.706 3.121 1.249.608-1.885 3.759-.339 4.564 4.546 2.368 9.918 4.804 13.003 6.346 0 0-.3 1.651-1.763 2.926m-36.259-40.855c2.124-1.451 3.616-2.448 5.445-3.337 4.479-2.175 13.522-5.38 25.539-4.243 11.418 1.079 16.819 5.152 16.819 5.152-1.918.664-3.554 1.845-4.739 2.898-.1-.188-.176-.533-.221-.939-.094-.844-.225-1.744-.225-1.744s-.305.053-1.013.375c-.825.375-2.157 1.594-2.269 3.283a5.49 5.49 0 0 0-.014.431c-2.32-.931-6.723-2.425-11.271-2.512-8.023-.155-16.047 1.079-23.763 4.474-1.022.45-2.206 1.002-2.206 1.002s-.526-1.163 1.463-3.489c-.844.15-1.801.131-2.363-.187-.669-.379-1.087-.975-1.182-1.164m714.05 22.441c2.438 0 2.82.5 2.82 3.437v12.425h-3.818c-2.702 0-2.996-.676-3.407-2.233l-.148-.587h-.616l.264 3.965h17.8l.264-3.965h-.616l-.147.587c-.412 1.557-.706 2.233-3.408 2.233h-3.818v-12.425c0-2.937.382-3.437 2.82-3.437v-.617h-7.99zm-21.706 0c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h13.395l.263-3.877h-.616l-.147.587c-.412 1.528-.706 2.203-3.408 2.203h-4.346v-6.668h1.468c2.937 0 3.408.353 3.408 2.821h.616V-30.4h-.616c0 2.467-.471 2.82-3.408 2.82h-1.468v-4.289c0-2.937.352-3.407 2.79-3.407h2.526c2.702 0 3.025.676 3.407 2.233l.147.587h.617l-.235-3.907h-14.393zm-11.044 0c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.93v-.617c-2.437 0-2.79-.47-2.79-3.407v-9.546c0-2.937.353-3.437 2.79-3.437v-.617h-7.93zm-11.367 8.166c2.555 0 3.729 1.733 3.729 3.877 0 2.115-1.174 3.877-3.73 3.877h-2.584v-7.754zm-7.726-8.166c2.438 0 2.79.499 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.755c4.082 0 6.315-2.232 6.315-4.964 0-2.555-1.91-4.582-5.23-4.935l2.88-3.378c1.734-2.056 3.7-3.524 5.464-3.73v-.617h-4.847l-5.816 7.725h-1.38v-3.671c0-2.938.353-3.437 2.79-3.437v-.617h-7.931zm-18.005 0c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h13.395l.263-3.877h-.616l-.147.587c-.412 1.528-.706 2.203-3.408 2.203h-4.346v-6.668h1.468c2.937 0 3.408.353 3.408 2.821h.616V-30.4h-.616c0 2.467-.47 2.82-3.408 2.82h-1.468v-4.289c0-2.937.352-3.407 2.79-3.407h2.526c2.702 0 3.025.676 3.407 2.233l.147.587h.617l-.235-3.907h-14.393zm-15.42 0c2.437 0 2.82.5 2.82 3.437v12.425h-3.819c-2.702 0-2.996-.676-3.407-2.233l-.148-.587h-.616l.264 3.965h17.801l.263-3.965h-.616l-.147.587c-.412 1.557-.706 2.233-3.408 2.233h-3.818v-12.425c0-2.937.382-3.437 2.82-3.437v-.617h-7.99zM550.43-30.4h.617s.03-5.287 5.404-5.287c2.086 0 3.672 1.351 3.672 3.231 0 1.351-1.35 2.496-3.378 3.554l-2.819 1.44c-1.704.88-3.26 2.613-3.26 4.846 0 2.438 2.026 4.376 4.875 4.376 1.734 0 2.702-.558 3.583-1.204.353.294.705.734.853 1.351h.587v-6.462h-.616c-.206 2.35-1.087 5.14-4.495 5.14-1.645 0-2.849-1.145-2.849-2.614 0-1.527 1.028-2.32 3.584-3.642l2.79-1.439c2.262-1.146 3.084-2.85 3.084-4.465 0-3.202-2.585-5.287-5.61-5.287-2.233 0-3.642 1.175-4.583 1.38a2.48 2.48 0 0 1-.85-1.38h-.589zm-11.925-5.346c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.931v-.617c-2.438 0-2.79-.47-2.79-3.407v-9.546c0-2.937.352-3.437 2.79-3.437v-.617h-7.93zm-18.74 13.659V-32.31c0-2.937.382-3.437 2.82-3.437v-.616h-6.697v.616c2.438 0 2.79.5 2.79 3.437v9.546c0 2.938-.352 3.407-2.79 3.407v.618h4.142l11.28-13.982v9.957c0 2.938-.354 3.407-2.79 3.407v.618h6.695v-.618c-2.437 0-2.819-.47-2.819-3.407v-14.1h-.676zm-15.361-13.659c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.93v-.617c-2.437 0-2.79-.47-2.79-3.407v-9.546c0-2.937.353-3.437 2.79-3.437v-.617h-7.93zm-21.678 3.437c0-2.938.382-3.437 2.82-3.437v-.617h-6.697v.617c2.438 0 2.79.499 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h4.817l6.227-14.304 6.198 14.304h4.788v-.617c-2.467 0-2.82-.47-2.82-3.407v-9.546c0-2.938.353-3.437 2.82-3.437v-.617h-7.931v.617c2.438 0 2.791.499 2.791 3.437v10.016l-6.286-14.569h-.382l-6.345 14.628zm-15.684 4.729c2.555 0 3.73 1.733 3.73 3.877 0 2.115-1.175 3.877-3.73 3.877h-2.585v-7.754zm-7.726-8.166c2.438 0 2.79.499 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.755c4.082 0 6.315-2.232 6.315-4.964 0-2.555-1.909-4.582-5.229-4.935l2.88-3.378c1.733-2.056 3.7-3.524 5.463-3.73v-.617h-4.847l-5.816 7.725h-1.38v-3.671c0-2.938.353-3.437 2.79-3.437v-.617h-7.93zm-19.12 5.933v7.05c0 2.937-.353 3.407-2.79 3.407v.617h7.93v-.617c-2.438 0-2.79-.47-2.79-3.408v-7.196c0-3.818 2.203-5.58 5.14-5.58 3.084 0 5.406 1.762 5.406 5.58v7.196c0 2.938-.383 3.408-2.821 3.408v.617h6.873v-.617c-2.437 0-2.82-.47-2.82-3.408v-7.049c0-4.612-3.172-7.05-7.078-7.05-3.877 0-7.05 2.438-7.05 7.05m-17.33-5.933c2.438 0 2.82.5 2.82 3.437v12.425h-3.818c-2.702 0-2.996-.676-3.407-2.233l-.148-.587h-.616l.264 3.965h17.8l.264-3.965h-.616l-.147.587c-.412 1.557-.706 2.233-3.408 2.233h-3.818v-12.425c0-2.937.382-3.437 2.82-3.437v-.617h-7.99zm-20.063 0c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.931v-.617c-2.438 0-2.79-.47-2.79-3.407v-9.106c0-2.937.352-3.407 2.79-3.407h3.524c2.674 0 2.996.676 3.378 2.233l.147.587h.617l-.235-3.907h-15.362zm-19.12 5.933v7.05c0 2.937-.354 3.407-2.79 3.407v.617h7.93v-.617c-2.439 0-2.79-.47-2.79-3.408v-7.196c0-3.818 2.202-5.58 5.14-5.58 3.083 0 5.405 1.762 5.405 5.58v7.196c0 2.938-.383 3.408-2.82 3.408v.617h6.872v-.617c-2.437 0-2.819-.47-2.819-3.408v-7.049c0-4.612-3.173-7.05-7.079-7.05-3.877 0-7.05 2.438-7.05 7.05m-23.264-5.933c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.931v-.617c-2.438 0-2.79-.47-2.79-3.407v-4.112l6.021 5.14c1.851 1.586 1.968 2.379.117 2.379v.617h6.815v-.617c-2.262 0-3.32-.617-5.375-2.379l-5.14-4.406 9.105-7.901c1.087-.94 2.996-1.704 3.79-1.704v-.617h-8.255v.617c1.94 0 2.292.705 1.116 1.704l-7.43 6.433-.764-.617v-4.083c0-2.937.352-3.437 2.79-3.437v-.617h-7.93zm-31.402 0c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.931v-.617c-2.438 0-2.79-.47-2.79-3.407v-3.701h9.957v3.701c0 2.937-.382 3.407-2.82 3.407v.617h7.99v-.617c-2.468 0-2.82-.47-2.82-3.407v-9.546c0-2.937.352-3.437 2.82-3.437v-.617h-7.99v.617c2.438 0 2.82.5 2.82 3.437v4.758h-9.957v-4.758c0-2.937.352-3.437 2.79-3.437v-.617h-7.93zm-20.237 8.195c0 5.111 4.053 9.311 9.018 9.311 2.055 0 3.964-.91 5.462-2.497.382.294.852.94.999 1.675h.587v-6.462h-.587c-.822 3.818-3.083 6.14-6.344 6.14-4.7 0-6.404-4.525-6.404-8.167 0-3.642 1.704-8.136 6.404-8.136 3.26 0 5.522 2.35 6.344 6.11h.587v-6.463h-.587c-.147.705-.617 1.41-1 1.675-1.497-1.558-3.406-2.498-5.461-2.498-4.965 0-9.018 4.201-9.018 9.312m-6.756 0c0 3.642-1.938 8.166-6.991 8.166-5.081 0-7.02-4.524-7.02-8.166 0-3.642 1.939-8.136 7.02-8.136 5.053 0 6.99 4.494 6.99 8.136m-16.801 0c0 5.111 4.406 9.311 9.81 9.311 5.376 0 9.783-4.2 9.783-9.31 0-5.112-4.407-9.313-9.782-9.313-5.405 0-9.811 4.201-9.811 9.312m-16.595.294h8.577v-1.292h-8.577zM252.794-30.4h.617s.029-5.287 5.404-5.287c2.086 0 3.672 1.351 3.672 3.231 0 1.351-1.351 2.496-3.378 3.554l-2.82 1.44c-1.703.88-3.26 2.613-3.26 4.846 0 2.438 2.027 4.376 4.876 4.376 1.733 0 2.702-.558 3.583-1.204.353.294.705.734.852 1.351h.588v-6.462h-.617c-.206 2.35-1.087 5.14-4.495 5.14-1.644 0-2.85-1.145-2.85-2.614 0-1.527 1.03-2.32 3.585-3.642l2.79-1.439c2.262-1.146 3.084-2.85 3.084-4.465 0-3.202-2.584-5.287-5.61-5.287-2.232 0-3.642 1.175-4.582 1.38a2.48 2.48 0 0 1-.852-1.38h-.587zm-22.382 2.85c0 5.11 4.054 9.31 9.018 9.31 2.056 0 3.965-.91 5.463-2.497.382.294.852.94.998 1.675h.588v-6.462h-.588c-.792 3.818-3.083 6.14-6.373 6.14-4.7 0-6.404-4.525-6.404-8.167 0-3.642 1.528-8.048 6.962-8.048 2.555 0 4.846 1.38 4.846 4.024 0 1.263-.734 1.91-2.76 1.91v.587h7.695v-.588c-2.438 0-2.79-.499-2.79-3.437v-2.232c-3.261 0-4.583-1.528-7.637-1.528-4.964 0-9.018 4.201-9.018 9.312m-18.681 5.464V-32.31c0-2.937.382-3.437 2.82-3.437v-.616h-6.697v.616c2.438 0 2.79.5 2.79 3.437v9.546c0 2.938-.352 3.407-2.79 3.407v.618h4.14l11.28-13.982v9.957c0 2.938-.352 3.407-2.79 3.407v.618h6.697v-.618c-2.438 0-2.82-.47-2.82-3.407v-14.1h-.675zm-15.215-13.659c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.93v-.617c-2.437 0-2.79-.47-2.79-3.407v-9.546c0-2.937.353-3.437 2.79-3.437v-.617h-7.93zm-18.593 13.659V-32.31c0-2.937.382-3.437 2.82-3.437v-.616h-6.697v.616c2.438 0 2.79.5 2.79 3.437v9.546c0 2.938-.352 3.407-2.79 3.407v.618h4.141l11.28-13.982v9.957c0 2.938-.353 3.407-2.79 3.407v.618h6.696v-.618c-2.438 0-2.82-.47-2.82-3.407v-14.1h-.675zM158.508-30.4h.617s.029-5.287 5.404-5.287c2.086 0 3.672 1.351 3.672 3.231 0 1.351-1.351 2.496-3.378 3.554l-2.82 1.44c-1.703.88-3.26 2.613-3.26 4.846 0 2.438 2.027 4.376 4.876 4.376 1.733 0 2.702-.558 3.583-1.204.353.294.705.734.852 1.351h.588v-6.462h-.617c-.206 2.35-1.087 5.14-4.495 5.14-1.644 0-2.85-1.145-2.85-2.614 0-1.527 1.03-2.32 3.585-3.642l2.79-1.439c2.262-1.146 3.084-2.85 3.084-4.465 0-3.202-2.584-5.287-5.61-5.287-2.232 0-3.642 1.175-4.582 1.38a2.48 2.48 0 0 1-.852-1.38h-.587zm-12.22-5.346c2.438 0 2.791.5 2.791 3.437v9.546c0 2.937-.353 3.407-2.79 3.407v.617h7.93v-.617c-2.438 0-2.79-.47-2.79-3.407v-9.546c0-2.937.352-3.437 2.79-3.437v-.617h-7.93zm-18.035 13.835c-.91 2.085-1.058 2.555-3.496 2.555v.617h8.137v-.617c-2.438 0-2.996-.617-2.29-2.232l4.992-11.426 4.935 11.426c.705 1.586.147 2.232-2.29 2.232v.617h6.843v-.617c-2.438 0-2.585-.47-3.496-2.555l-6.462-14.951h-.382zM116.74-27.58c2.556 0 3.73 1.733 3.73 3.877 0 2.115-1.174 3.877-3.73 3.877h-2.585v-7.754zm-7.725-8.166c2.438 0 2.79.499 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.754c4.083 0 6.316-2.232 6.316-4.964 0-2.555-1.909-4.582-5.229-4.935l2.88-3.378c1.732-2.056 3.7-3.524 5.462-3.73v-.617h-4.846l-5.816 7.725h-1.38v-3.671c0-2.938.352-3.437 2.79-3.437v-.617h-7.93zm-18.299 0c2.438 0 2.791.5 2.791 3.437v9.546c0 2.937-.353 3.407-2.79 3.407v.617h13.393l.265-3.877h-.617l-.147.587c-.412 1.528-.705 2.203-3.408 2.203h-4.347v-6.668h1.47c2.936 0 3.406.353 3.406 2.821h.617V-30.4h-.617c0 2.467-.47 2.82-3.407 2.82h-1.469v-4.289c0-2.937.353-3.407 2.791-3.407h2.526c2.702 0 3.025.676 3.407 2.233l.147.587h.617l-.235-3.907H90.715zm-13.1.47c5.727 0 6.96 4.29 6.96 7.725 0 3.437-1.233 7.725-6.96 7.725h-2.85v-12.043c0-2.937.323-3.407 2.732-3.407zm-7.99-.47c2.438 0 2.79.5 2.79 3.437v9.546c0 2.937-.352 3.407-2.79 3.407v.617h7.96c6.844 0 9.81-3.965 9.81-8.812 0-4.847-2.966-8.812-9.81-8.812h-7.96zM51.327-22.087V-32.31c0-2.937.382-3.437 2.82-3.437v-.616H47.45v.616c2.438 0 2.79.5 2.79 3.437v9.546c0 2.938-.352 3.407-2.79 3.407v.618h4.14L62.87-32.72v9.957c0 2.938-.352 3.407-2.79 3.407v.618h6.697v-.618c-2.438 0-2.82-.47-2.82-3.407v-14.1h-.675zm-22.94-7.726v7.05c0 2.937-.353 3.407-2.79 3.407v.617h7.93v-.617c-2.438 0-2.79-.47-2.79-3.408v-7.196c0-3.818 2.202-5.58 5.14-5.58 3.084 0 5.404 1.762 5.404 5.58v7.196c0 2.938-.382 3.408-2.82 3.408v.617h6.874v-.617c-2.438 0-2.82-.47-2.82-3.408v-7.049c0-4.612-3.172-7.05-7.079-7.05-3.878 0-7.05 2.438-7.05 7.05M558.86 18.948c0-.822-.646-1.498-1.498-1.498-.823 0-1.47.676-1.47 1.498 0 .823.647 1.498 1.47 1.498.852 0 1.498-.675 1.498-1.498m-5.846 0c0-.822-.646-1.498-1.498-1.498-.793 0-1.498.676-1.498 1.498 0 .823.705 1.498 1.498 1.498.852 0 1.498-.675 1.498-1.498m1.38-4.582c-4.17 0-5.845-4.347-5.845-7.9 0-3.556 1.675-7.903 5.846-7.903 4.142 0 5.845 4.347 5.845 7.902 0 3.554-1.703 7.901-5.845 7.901m0-17.213c-5.405 0-9.81 4.201-9.81 9.312 0 5.11 4.405 9.311 9.81 9.311 5.375 0 9.78-4.2 9.78-9.31 0-5.112-4.405-9.313-9.78-9.313m-22.353.5v.852c2.438 0 2.79.499 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437V1.942c0-2.938.382-3.437 2.82-3.437v-.852zm-9.253 12.66c0 1.997-1.204 3.642-3.76 3.642h-1.615V6.7h1.615c2.556 0 3.76 1.616 3.76 3.613m1.587-8.048c2.585-2.849 3.7-3.525 5.492-3.76v-.852h-6.374l-5.228 7.725h-.852V1.941c0-2.938.382-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.437v9.047c0 2.937-.352 3.436-2.79 3.436v.852h9.84c3.643 0 5.934-2.232 5.934-4.964 0-2.555-1.998-4.64-5.2-4.935zm-33.428-3.76c2.438 0 2.79.5 2.79 3.438v9.046c0 2.938-.352 3.437-2.79 3.437v.852h15.127l.235-4.142h-.851l-.148.588c-.411 1.556-.705 2.232-3.407 2.232h-4.494V7.64h1.615c2.938 0 3.408.382 3.408 2.82h.852V3.498h-.852c0 2.467-.47 2.82-3.408 2.82h-1.615V2.41c0-2.937.382-3.436 2.82-3.436h2.644c2.702 0 3.025.676 3.407 2.232l.146.588h.852l-.234-4.142h-16.097zm-2.556 12.631h-.852l-.146.587c-.382 1.557-.705 2.233-3.407 2.233h-2.938V1.941c0-2.937.382-3.436 2.82-3.436v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.436v12.014h-2.937c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.88l.263 4.142h17.86zM456.405-2.847h-.852v6.462h.88c.559-3.143 2.997-5.14 5.406-5.14 1.704 0 2.937.97 2.937 2.908 0 1.057-.793 2.262-2.174 2.967l-2.79 1.468c-2.497 1.263-3.995 2.644-3.995 5.552 0 2.408 2.262 4.406 5.11 4.406 1.735 0 2.704-.559 3.584-1.205.353.294.706.735.853 1.352h.822V9.461h-.851c-.206 2.35-1.146 5.023-4.231 5.023-1.204 0-2.38-.882-2.38-2.35 0-.882.794-2.204 2.35-2.997l2.82-1.439c2.086-1.087 3.79-2.878 3.79-5.199 0-3.2-2.82-5.346-5.845-5.346-2.233 0-3.642 1.175-4.582 1.381a2.481 2.481 0 0 1-.852-1.38m-14.304.499v.852c2.438 0 2.79.499 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437V1.942c0-2.938.382-3.437 2.82-3.437v-.852zm-7.49 13.335c0 2.938-.381 3.437-2.82 3.437v.852h6.963v-.852c-2.468 0-2.821-.499-2.821-3.437V-2.847h-.734l-12.16 14.511V1.941c0-2.937.382-3.436 2.819-3.436v-.852h-6.932v.852c2.438 0 2.79.5 2.79 3.436v9.047c0 2.938-.352 3.437-2.79 3.437v.852h5.875l9.81-11.69zM405.65-2.347v.852c2.438 0 2.79.499 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437V1.942c0-2.938.382-3.437 2.82-3.437v-.852zm-22.617 4.289c0-2.938.382-3.437 2.819-3.437v-.852h-6.931v.852c2.437 0 2.79.499 2.79 3.437v9.047c0 2.937-.353 3.436-2.79 3.436v.852h6.138l5.347-12.748 5.346 12.748h5.933v-.852c-2.467 0-2.82-.5-2.82-3.436V1.942c0-2.938.353-3.437 2.82-3.437v-.852h-9.106v.852c2.438 0 2.82.499 2.82 3.437v9.223l-5.845-14.011h-.646l-5.875 14.01zm-17.388-4.29v.853c2.438 0 2.79.499 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437V1.942c0-2.938.382-3.437 2.82-3.437v-.852zm-9.547 12.66c0 1.998-1.204 3.643-3.76 3.643h-1.615V6.7h1.615c2.556 0 3.76 1.616 3.76 3.613m1.587-8.048c2.585-2.849 3.701-3.525 5.492-3.76v-.852h-6.374l-5.228 7.725h-.852V1.941c0-2.938.382-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.437v9.047c0 2.937-.352 3.436-2.79 3.436v.852h9.84c3.643 0 5.934-2.232 5.934-4.964 0-2.555-1.998-4.64-5.2-4.935zm-22.323 12.16v.853h7.196v-.852c-2.438 0-2.791-.5-2.791-3.437V4.203c0-4.611-3.201-7.05-7.078-7.05-3.907 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.381 3.437-2.82 3.437v.852h9.312v-.852c-2.467 0-2.82-.5-2.82-3.437V4.527c0-3.79 2.027-5.552 4.553-5.552s4.317 1.762 4.317 5.552v6.46c0 2.939-.352 3.438-2.82 3.438m-21.236 0v.852h7.196v-.852c-2.438 0-2.79-.5-2.79-3.437V4.203c0-4.611-3.202-7.05-7.079-7.05-3.907 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.38 3.437-2.819 3.437v.852h9.311v-.852c-2.467 0-2.82-.5-2.82-3.437V4.527c0-3.79 2.027-5.552 4.553-5.552s4.317 1.762 4.317 5.552v6.46c0 2.939-.352 3.438-2.819 3.438m-14.304-3.29h-.852l-.147.587c-.381 1.557-.705 2.233-3.407 2.233h-2.937V1.941c0-2.937.382-3.436 2.82-3.436v-.852h-9.283v.852c2.438 0 2.79.5 2.79 3.436v12.014h-2.936c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.881l.264 4.142h17.859zm-19.651 0h-.852l-.147.587c-.381 1.557-.705 2.233-3.407 2.233h-2.937V1.941c0-2.937.382-3.436 2.82-3.436v-.852h-9.283v.852c2.438 0 2.79.5 2.79 3.436v12.014h-2.936c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.881l.264 4.142h17.859zm-34.543 3.29v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437V2.41c0-2.937.382-3.436 2.82-3.436h3.378c2.702 0 3.025.676 3.407 2.232l.147.588h.852l-.235-4.142h-16.83v.852c2.437 0 2.79.499 2.79 3.437v9.046c0 2.938-.353 3.437-2.79 3.437m-9.046 0v.852h7.196v-.852c-2.438 0-2.79-.5-2.79-3.437V4.203c0-4.611-3.202-7.05-7.08-7.05-3.906 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.38 3.437-2.818 3.437v.852h9.31v-.852c-2.467 0-2.82-.5-2.82-3.437V4.527c0-3.79 2.028-5.552 4.554-5.552 2.526 0 4.318 1.762 4.318 5.552v6.46c0 2.939-.353 3.438-2.82 3.438M220.955.238c.999-1.028 2.996-1.733 3.789-1.733v-.852h-9.752v.852c1.527 0 2.233.528 1.087 1.733l-5.787 6.286-1.263-1.028V1.942c0-2.938.382-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.791.499 2.791 3.437v9.046c0 2.938-.353 3.437-2.791 3.437v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437V7.052l6.169 4.964c.734.618 2.555 2.409.117 2.409v.852h7.079v-.852c-2.467 0-3.495-.881-5.404-2.41l-4.172-3.347zm-38.01 10.134-2.379-5.522h4.73zm-4.17-9.635c-.676-1.586-.236-2.232 2.202-2.232v-.852h-7.108v.852c2.027 0 2.702.499 3.613 2.585l6.374 14.686h.616l6.404-14.686c.822-1.88 1.234-2.585 3.584-2.585v-.852h-9.576v.852c2.584 0 2.878.676 2.203 2.232l-1.234 2.79h-5.874zm-11.573-4.64v14.891c0 2.938-.353 3.437-2.791 3.437v.852h9.282v-.852c-2.438 0-2.82-.499-2.82-3.437V-2.465c0-4.377-2.672-6.433-5.992-6.433-2.526 0-4.758 1.47-4.758 3.613 0 .676.499 1.234 1.204 1.234s1.205-.558 1.205-1.234c0-1.028.646-2.29 2.26-2.29 1.529 0 2.41 1.086 2.41 3.671M146.64 7.258h8.577V4.967h-8.577zM131.249-2.847h-.852v6.462h.881c.558-3.143 2.996-5.14 5.405-5.14 1.704 0 2.937.97 2.937 2.908 0 1.057-.793 2.262-2.173 2.967l-2.791 1.468c-2.496 1.263-3.994 2.644-3.994 5.552 0 2.408 2.261 4.406 5.11 4.406 1.733 0 2.703-.559 3.584-1.205.352.294.705.735.851 1.352h.823V9.461h-.852c-.205 2.35-1.145 5.023-4.229 5.023-1.205 0-2.38-.882-2.38-2.35 0-.882.793-2.204 2.35-2.997l2.82-1.439c2.086-1.087 3.789-2.878 3.789-5.199 0-3.2-2.82-5.346-5.845-5.346-2.232 0-3.642 1.175-4.582 1.381a2.487 2.487 0 0 1-.852-1.38m-11.69 17.27v.853h7.197v-.852c-2.438 0-2.79-.5-2.79-3.437V4.203c0-4.611-3.202-7.05-7.08-7.05-3.906 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.38 3.437-2.818 3.437v.852h9.31v-.852c-2.467 0-2.82-.5-2.82-3.437V4.527c0-3.79 2.028-5.552 4.554-5.552 2.526 0 4.318 1.762 4.318 5.552v6.46c0 2.939-.353 3.438-2.82 3.438m-14.746-3.29h-.852l-.147.587c-.381 1.557-.705 2.233-3.407 2.233H97.47V1.941c0-2.937.382-3.436 2.82-3.436v-.852h-9.283v.852c2.438 0 2.79.5 2.79 3.436v12.014h-2.936c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.881l.264 4.142h17.859ZM67.922-1.495c2.438 0 2.79.499 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437v.852h15.127l.235-4.142h-.852l-.147.588c-.411 1.556-.704 2.232-3.407 2.232h-4.494V7.64H76c2.937 0 3.407.382 3.407 2.82h.852V3.498h-.852c0 2.467-.47 2.82-3.407 2.82h-1.616V2.41c0-2.937.382-3.436 2.82-3.436h2.643c2.703 0 3.026.676 3.408 2.232l.146.588h.853l-.235-4.142H67.922zm-6.756 11.807c0 1.998-1.204 3.643-3.76 3.643h-1.615V6.7h1.615c2.556 0 3.76 1.616 3.76 3.613m3.936 0c0-2.73-2.29-4.935-5.934-4.935h-3.377V1.941c0-2.938.381-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.437v9.047c0 2.937-.352 3.436-2.79 3.436v.852h9.84c3.642 0 5.933-2.232 5.933-4.964m-28.668 4.054c-4.17 0-5.845-4.347-5.845-7.9 0-3.556 1.674-7.903 5.845-7.903 4.142 0 5.845 4.347 5.845 7.902 0 3.554-1.703 7.901-5.845 7.901m0-17.213c-5.405 0-9.81 4.201-9.81 9.312 0 5.11 4.405 9.311 9.81 9.311 5.375 0 9.781-4.2 9.781-9.31 0-5.112-4.406-9.313-9.78-9.313" + /> + </svg> +); + +export const LogoOkmEn = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 677.984 154.204"> + <path + fill="#171717" + transform="matrix(1.33333 0 0 -1.33333 109.898 66.199)" + d="M0 0c.973-.185 1.72-.143 2.181.187 0 0-.25 2.651-.5 3.727-.719-.184-2.11-.342-3.06 1.05a8.95 8.95 0 0 1-.614.957c-1.975 2.685-4.294 4.432-6.582 5.779 4.179 2.077 5.47 4.04 6.174 5.21 1.284 2.135 2.371 8.891-3.575 12.164-4.303 2.369-8.773 1.347-10.669.455-3.613-1.701-6.174-5.478-5.271-10.302.797-4.256 3.614-5.771 7.169-7.544-2.79-1.5-4.628-3.166-4.64-6.474-.006-2.061 1.589-4.039.651-7.903-.088-.36 2.524 1.018 2.601 1.175.901 2.026.6 4.827.6 4.827.926-.75.901-2.851.626-4.058 0 0 1.687 1.032 1.856 1.557.889 2.763-.018 4.465-.544 5.853-.52 1.375.408 2.733 1.737 3.539A31.235 31.235 0 0 0-9.457 8.75c.644-.431 4.094-2.798 5.291-5.794 1.903-4.764.627-7.361-.014-8.352-1.218-1.88-2.81-3.314-5.204-3.564a1.297 1.297 0 0 1-.254.013 11.03 11.03 0 0 0-1.99.059c-.64.096-1.249.246-1.813.423-.476.161-.955.353-1.479.565-1.52.748-5.438 2.929-8.748 6.522-2.749 2.984-4.379 5.116-5.64 6.713 1.617-.742 3.597-.482 3.623-.478.011.002.116 1.539.116 2.303l.1 2.301s.1 1.05.1 1.851c0 0-4.752.3-5.652 2.551 0 0 .95-.6 2.551-.7 1.423-.089 3.201.2 3.201.2.15.375.3 4.201.3 4.201.051.401.051 2.001.051 2.001-.799-.21-2.03-.023-3.402.3-.85.2-2.301 1.051-2.851 2.001 0 0 1-.45 2.664-.65 1.78-.214 3.76.136 3.786.375.102.975.079 3.938.077 4.014 0 0 .177 2.196.072 2.177-.494-.091-3.298-.001-5.549 2.363 0 0-.853.675-.027 1.875 0 0-4.503 2.025-4.502 2.026 0 0 .95.926.975 1.876.028 1.05-1.601 1.676-2.876 1.451-1.219-.215-2.151-1.501-2.151-1.501l-5.625 2.502-4.455-4.49c-.041-.042-.337-.413-.275-.851l.063-.4a.775.775 0 0 0-.151-.55c-.399-.525-.937-1.063-1.337-1.563-.38-.475-.673-.877-.826-1.125-.458-.748-.622-1.25-.788-1.727 0 0-.576-1.24 1.572-2.927l.128-.101.214.303.184-.191c.171-.173.525-.506.886-.717 0 0 .156.754.583 1.382.373.551 1.173 1.251 1.723 1.601.697.444 1.376.676 2.176.7.677.022 1.149-.231 1.626-.724.7-.726.975-2.527.741-3.286-.274.183-.483.31-.483.31-.9.45-2.705 1.254-5.002.25-.8-.351-2.236-1.051-4.652-1.751-1.253-.363-2.124-.228-2.35.85a2.36 2.36 0 0 0 .25 1.651s-1.567-.27-1.912-1.651c-.35-1.4.19-2.699 1.501-3.026 1.2-.3 3.101.575 4.502 1.325.502.27 1.533.814 2.25 1.126 1.326.575 2.248.645 3.627.024 1.003-.45 1.578-1.075 1.578-1.075s-.45-1.176-2.116-1.25c-1.332-.059-2.365.65-2.778 1.288 0 0-.287-.682-.412-.901-.432-.75.093-1.163-.096-1.687-.199-.547-1.135-1.171-1.651-1.526-.801-.55-2.23-.97-2.574-1.051 0 0 .867-1.935.982-2.151.442-.832 1.23-2.602 1.932-3.271 0 0 1.602.35 2.702 1 1.04.615 1.838 1.333 2.1 1.933-1.463-3.414-2.552-4.577-3.509-5.196-3.773-2.441-11.314-7.822-18.517-8.797-2.101-.074-5.505 3.027-6.399 4.126-.65.801-2.001-.349-2.001-.349s-2.758.464-4.001-1.401c-.201-.3 1.45.25 2.5-.1.712-.237-.25-.6-.25-1.251 0-1.001 3.091-1.784 4.333-2.2.414-.139.375-.507.175-.501-2.351.075-3.77 1.095-4.702 1.376-1.826.55-2.425.178-2.556-.675-.101-.651-2.251-.051-2.631-3.902-.037-.373 2.311 2.597 2.477 1.576.504-3.127 5.862-.525 6.977-1.351.736-.544-5.523-.475-4.573-2.376.146-.291-2.75-2.101-.3-4.402 0 0 .151 2.601 1.701 2.501 1.278-.082 1.901-1.301 3.502-.1.588.44.903 1.046 3.047 1.676.159.047.161-.719.504-1.226.206-.303.847-.296.846-.575 0-.996-1.238-1.837-1.2-1.875.041-.042 1.425-.751 2.701 1.575.244.446.704.075 1.204.225 1.847.554-.025 1.713 1.047 2.701 1.355 1.25 2.855 1.951 4.256 2.501 0 0-.605-1.641.171-3.176l5.552 1.426c-.608 1.43.326 3.255 1.452 4.681.256.323-.745-3.467.08-4.292l5.451 1.411c-.391.907-.187 2.338.242 3.41.595-2.506 1.818-5.176 4.355-6.283 4.123-1.799 7.758-2.641 13.836-4.439 1.634-.483 3.374-1.091 4.176-1.491 1.2-.601-.625-1.851-.625-1.851.6-.376 1.515-.584 3.151-1.801 1.816-1.351 2.517-3.971 3.191-6.828.526-2.226.926-5.202.176-6.078-.394-.459-.826-.899-3.226-1.35l.45-2.101c1.675-.125 3.091.583 3.091.583s-.15-.143-.35-.412c-.568-.769-.776-1.329-.911-2.268l2.221-1.43c.601 1.901 1.318 3.579 1.951 3.827.981.385 5.527-1.901 7.288-6.352 1.034-2.617.636-8.117-2.001-8.604-1.409-.26-4.652 2.551-5.352 1.25-.733-1.359-4.552-1.2-3.152-5.052.735.971 1.648 1.965 2.251 1.751.399-.141.372-.709.75-1.15.477-.557 4.051.468 4.252-.151.1-.281-.489-.258-.847-.324-1.766-.325-3.972-.553-4.305-1.426-.106-.278.068-.346-.1-.851-.35-1.05-2.001-.95-1.901-3.451.101-1.2 1.25-2.148 1.401-2.151.236-.005-.106 2.578 1 2.801.534.108.751-.93 1.551-.9 1.354.05 4.089 4.145 5.353 3.801.386-.2-2.402-1.9-2.752-3.401-.287-1.232 1.13-1.399 1.151-2.251.05-2.001 3.895-2.901 4.151-2.651.266.258-2.307 2.205-1.65 3.052.339.437.898-.239 1.801.149.299.301-1.351 3.002 1.951 6.103 0 0 .65-1.201 1.9-1.351 1.108-.133.392-2.689.55-2.701.23-.016 1.601 1.651 1.301 3.702 0 0 .901.699 1.05 1.25.501 1.851-1.9.6-1.65 5.603.045.915-.243.643-.951 1.35-.4.4-.598 1.108-.25.951 1.276-.576 2.912-.056 2.912-.056.489 4.932.14 5.308.14 5.308-1.751-.05-2.561.375-3.053.98 1.172-.266 2.502-.079 3.053.371 0 0-.112 5.169-.5 5.051-1.325-.4-2.287-.34-3.355.372-.901.6.013 2.207-1.038 2.357-2.126.538-3.853 1.991-4.271 2.549-.9 1.2-.675 1.95-.675 1.95.808-.408 1.691-.559 2.523-.282l.327 4.083s-.811.053-1.462.353c-.777.358-1.378 1.379-1.378 1.379s.69-.309 1.53-.447c.879-.144 1.495.142 1.495.142l.556 4.608c-2.53-.192-2.493 1.308-2.462 1.597 4.601.763 7.439 4.964 8.302 8.604.456-.268 1.574-.697 2.472-.372 0 0 .225 3.101.1 3.576C1.508-1.206.51-.995 0 0m-43.918 31.653c.067-.205-2.4-.57-2.603-.413-.213.164-.303 1.268-.154 1.51.195.316 2.459-.178 2.757-1.097m29.407-39.731c-.11.044-.216.089-.319.134-.017.008-.035.016-.053.026.154-.065.277-.119.372-.16m3.098 21.302c-3.035 1.527-5.717 2.723-7.067 5.003-1.234 2.267-.765 6.537 2.493 8.48.744-.697.744-1.546.744-1.546.831-.032 2.522.132 3.352.1.05.65.041 1.637-.46 2.437.851-.599 1.417-1.069 1.631-2.432.523-.017 3.022-.107 3.022-.107.033.775-.161 1.39-.618 1.899 3.285-1.366 4.064-4.513 4.01-6.101a6.39 6.39 0 0 0-3.005-5.63c-1.575-.972-2.922-1.593-4.102-2.103m5.252 21.298 4.001 1.951-4.051 1.701c-2.829-.111-9.532.086-17.5.215l-3.363-4.347c8.9.196 17.479.375 20.913.48m-23.157-1.256 6.241 8.142s-.733.257-1.574-.213c-.84-.468-1.038-1.666-.942-1.913-.657 1.684-2.575.592-2.575.592 1.233-1.963.196-2.767-.631-2.55-1.107.291-.929 1.512-.929 1.512s-1.137-.982-1.972.02c-.637.768.269 1.799 2.097 1.744 0 0 .119 1.085-.876 1.781-.765.535-1.969.011-1.969.011s.807.405.974 1.278c.122.636-.113 1.589-.764 2.308l-.024.027-.037-.001c-.97-.008-1.83-.48-2.215-1-.529-.714-.281-1.582-.281-1.582s-.431 1.241-1.342 1.441c-1.185.26-1.903-.562-1.903-.562 1.278-1.307 1.134-2.674.137-2.724-1.303-.065-1.351 1.438-1.351 1.438s-.778-.959-1.741-.342c-.72.462-.83 1.769 1.448 2.191 0 0-.495 2.152-2.179 1.494.247.096.994 1.055.77 1.989-.225.937-.91 1.302-.91 1.302l-1.763-10.106 4.577-2.021c.548.473 1.075.786 1.45.952 1.251.549 2.552.401 3.602-.051 1.582-.681 1.77-1.601 1.825-2.295.033-.394-.318-1.219-.45-1.425zm-21.736.148 4.887 4.944c-1.903.009-4.09.066-7.064.066-.601 0-2.626 1.4-2.814 1.138 0 0-.457-1.101-.608-1.514 0 0 .946-1 .908-2.125-.008-.266.043-1.251-.92-2.189 0 0 .737-1.545.883-1.663 0 0 1.5.95 2.701 1.201.204.042.823.09 2.027.142m-6.479 4.247s-.05 5.065.025 5.277c0 0 .163.163.275.438.145.353-.013.9-.013.9h-3.088c-.062-.125-.038-.55.012-.725.063-.25.238-.55.45-.688v-5.202s-.447-.516-.55-1.675c-.087-.988.588-1.814.588-1.814l-.063-4.364s-.265-.202-.299-.65c-.038-.476.062-.688.062-.688h2.901c.033.091.075.625 0 .938a.89.89 0 0 1-.312.463l-.023 4.288c.275.466.744.976.735 1.764-.009.787-.505 1.466-.7 1.738m-3.474-25.902-3.845-4.944 6.283-2.609c3.621 1.857 8.686 5.321 8.686 5.321l-8.857 3.33zm1.427 2.077s-1.103.78-1.211.914c-.106.135-.188 1.452-.188 1.452l-2.07-1.667-6.352.003c-.162.026-.15-4.633-.15-4.633s3.22-2.705 3.357-2.608l4.274 5.41zm-3.03 10.756h-6.503l-.03-8.61 5.63-.137 1.785 1.407zm-6.653 1.251h6.653s.375 1.03.403 1.338l-.305 1.088h-6.728l-.376-1.126zm8.378 6.604.01 1.599s-.608.503-.666 1.933c-.037.937.637 1.856.637 1.856l-.018 1.539s-1.013.787-1.482.731l.019-5.583c.015-.962-1.401-2.058-2.589-2.276-2.648-.487-5.337-.325-5.337-.325s.085-.763.31-1.439c.167-.5.753-.938.753-.938h6.613zm-2.792 2.618c.055.419.027 1.041.027 1.463-.003.834-.006 1.883-.011 2.741 0 0 .004 1.081-.347 1.09-.234.007-.928.01-1.053-.029-.107-.167-.272-.894-.38-1.061l-.342 1.061c-.176.033-1.164.016-1.333-.031-.1-.183-.269-.847-.368-1.03l-.344 1.007c-.083.028-1.177.019-1.257-.024-.143-.159-.357-.835-.443-.983l-.323.983s-.475.009-.816 0c-.437-.012-.63-.605-.641-.965 0-1.083.02-1.555.036-2.667.009-.613.089-3.091.089-3.091.466.01.875.065 1.135.296.463.412.515 1.151.52 1.147-.014-.318-.005-1.373.045-1.762.015-.109.849-.224 1.379.317.413.42.516 1.178.62 1.445-.026-.609.006-1.742.097-1.762.22-.048.95-.003 1.344.392.411.411.561 1.012.602 1.37 0 .004.009-.886.056-1.257.139 0 .319-.002.526.064.036.012.418.157.601.314.22.191.501.361.581.972m-12.12-1.919c1.242 0 3.297.35 3.297.35l-.067 5.177s-1.332.216-2.558.401c-2.484.374-2.417-2.176-2.417-2.176l.067-1.426s.107-2.325 1.678-2.326m-1.143-83.405c-.018-.112-.156-1.12.578-1.775.514-.458 1.404-.697 1.813-.347.576.493.151 1.446.501 2.083.098.177.463.27.463.27.151.033.286.11.411.217 3.757-1.55 7.456-3.901 10.794-6.309.231-.167.439-.304.63-.42a7.861 7.861 0 0 0-.647-1.627c-.887-1.698-1.967-3.473-1.775-4.63.142-.849.708-1.431 1.544-1.466.925-.038 1.659.579 1.813 1.273.359 1.62-1.158 1.775-1.158 1.775s.473 1.396.656 1.851c1.536 3.811 3.499 3.573 3.499 3.573s-1.685 1.442.127 4.683c.976 1.743 1.389 3.047 1.582 4.32.122.802-.673 1.801-1.543 1.852-.913.054-1.781-.716-1.851-1.466-.194-2.044 1.49-1.733 1.388-2.083-.494-1.695-1.149-2.799-1.781-3.519-.278.181-.622.385-1.042.617-3.541 1.956-6.442 3.653-10.628 4.61.093.187.191.377.296.568.652 1.179 1.049 1.693.926 1.813-.089.087-.451-.264-1.389-.771-1.056-.572-1.427-.656-2.121-.733-.409-.045-.828.203-1.081.116-.287-.1-.453-.57-.771-1.505-.459-1.344-.473-1.391-.541-1.543-.405-.921-.616-.922-.693-1.427m53.882 32.927c-1.538 1.238-3.245 1.876-4.558 2.533 0 0 1.725 1.163 1.425 1.369-.531.366-1.256.394-1.256.394-5.617-2.122-11.264-5.35-14.138-7.307a1.688 1.688 0 0 1-.091-.058c-2.001-1.351-4.652.275-4.652.275l-.351-2.177c1.104-.643 1.857-.902 2.361-.985-.838-.16-2.013-.496-2.56-1.165l.75-2.001s1.177.978 3.079 1.03c.021-.108.039-.202.047-.28.264-2.538-3.651-6.122-7.103-7.503-3.501-1.4-6.261-1.419-6.903-1-2.301 1.5-2.434 3.599-3.614 3.914-.312.083-.637-.374-1.087-.3-1.839.3-3.969.172-4.603-1.413 0 0 4.261.33 2.501-.726-1.741-1.045 2.779-2.882 4.005-3.626.412-.25.068-.35-.048-.35-.82-.051-3.418 1.15-4.832 1.6-1.101.35-1.232-.532-1.451-.5-1.7.25-4.902-1.451-3.601-3.952 0 0 1.25 2.051 2.526 1.651.494-.155-.336-1.553.663-2.176 1.303-.812 6.07.775 6.94.075.76-.612-5.222-.475-5.396-1.662-.008-.056-.044-.401.069-.626.225-.526-1.201-1.099-1.276-2.814-.075-1.726 1.839-2.889 1.839-2.889.225.188-.523 2.259.262 2.589.416.175.766-.789 1.601-.901 1.716-.228 2.388 2.53 5.202 3.902 4.101 2.001.897-.858 2.401-1.2 2.416-.551-.335-2.702-.335-2.702.666-.447 2.836.301 3.636 2.402.29.759.663.404 1.114.937.412.488.037 1.313.312 1.864.558 1.116 3.101.65 2.952 1.7-.196 1.37 1 1.751 1.731 2.048.254.103.295-1.767 2.871-2.698.793.346 1.568.62 3.014 1.381.713.375 1.464.788 1.726 1.088.049.056-1.085.89-1.469 2.061-.19.578-.172.981-.107 1.015 0 0 1.239-1.695 2.927-2.326a37.928 37.928 0 0 1 4.263 2.534.063.063 0 0 1 .019.018c.173.297-3.086 2.449-1.706 3.121 1.249.608-1.885 3.759-.339 4.564 4.546 2.368 9.918 4.804 13.003 6.346 0 0-.3 1.651-1.763 2.926m-36.259-40.855c2.124-1.451 3.616-2.448 5.445-3.337 4.479-2.175 13.522-5.38 25.539-4.243 11.418 1.079 16.819 5.152 16.819 5.152-1.918.664-3.554 1.845-4.739 2.898-.1-.188-.176-.533-.221-.939-.094-.844-.225-1.744-.225-1.744s-.305.053-1.013.375c-.825.375-2.157 1.594-2.269 3.283a5.49 5.49 0 0 0-.014.431c-2.32-.931-6.723-2.425-11.271-2.512-8.023-.155-16.047 1.079-23.763 4.474-1.022.45-2.206 1.002-2.206 1.002s-.526-1.163 1.463-3.489c-.844.15-1.801.131-2.363-.187-.669-.379-1.087-.975-1.182-1.164m469.05 22.676c2.439 0 2.79.499 2.79 3.437v9.046c0 2.938-.351 3.437-2.79 3.437v.852h15.128l.235-4.142h-.851l-.148.588c-.411 1.556-.705 2.232-3.407 2.232h-4.494v-6.315h1.615c2.938 0 3.408.382 3.408 2.82h.852v-6.962h-.852c0 2.467-.47 2.82-3.408 2.82h-1.615v-3.907c0-2.937.382-3.436 2.82-3.436h2.644c2.702 0 3.025.676 3.407 2.232l.146.588h.852l-.234-4.142h-16.097zm-8.958 11.807c0 1.998-1.204 3.643-3.76 3.643H395.4v-7.256h1.615c2.556 0 3.76 1.616 3.76 3.613m1.587-8.048c2.585-2.849 3.7-3.525 5.492-3.76v-.852h-6.374l-5.228 7.725h-.852v-3.436c0-2.938.382-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.437v9.047c0 2.937-.352 3.436-2.79 3.436v.852h9.84c3.643 0 5.934-2.232 5.934-4.964 0-2.555-1.998-4.64-5.2-4.935zm-23.498 12.16v.853h7.196v-.852c-2.438 0-2.791-.5-2.791-3.437v-6.785c0-4.611-3.201-7.05-7.078-7.05-3.907 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.381 3.437-2.82 3.437v.852h9.312v-.852c-2.467 0-2.82-.5-2.82-3.437v-6.461c0-3.79 2.027-5.552 4.553-5.552s4.317 1.762 4.317 5.552v6.46c0 2.939-.352 3.438-2.82 3.438m-14.599-3.29h-.852l-.146.587c-.382 1.557-.705 2.233-3.407 2.233h-2.938v-12.014c0-2.937.382-3.436 2.82-3.436v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.436v12.014h-2.937c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.88l.263 4.142h17.86zM329.4-19.59v.852h9.282v-.852c-2.438 0-2.82-.5-2.82-3.437v-8.577c0-2.937.382-3.436 2.82-3.436h3.378c2.702 0 3.026.676 3.407 2.232l.147.588h.85l-.233-4.142H329.4v.852c2.438 0 2.79.499 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437m-10.075 0v.852h7.196v-.852c-2.437 0-2.79-.5-2.79-3.437v-6.785c0-4.611-3.202-7.05-7.08-7.05-3.905 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.38 3.437-2.818 3.437v.852h9.312v-.852c-2.468 0-2.821-.5-2.821-3.437v-6.461c0-3.79 2.028-5.552 4.553-5.552 2.526 0 4.318 1.762 4.318 5.552v6.46c0 2.939-.352 3.438-2.82 3.438m-17.33-16.449c-.176.705-.382 1.41-.764 1.674-1.498-1.557-3.407-2.497-5.463-2.497-4.964 0-9.018 4.201-9.018 9.312s4.054 9.311 9.018 9.311c2.056 0 3.965-.91 5.463-2.497.382.294.588.94.764 1.675h.823v-6.462h-.852c-.793 3.818-3.173 5.874-6.08 5.874-4.025 0-5.17-4.259-5.17-7.901 0-3.643 1.145-7.902 5.17-7.902 2.907 0 5.287 2.115 6.08 5.875h.852v-6.462zm-40.243 4.318c0-2.85.382-3.32 2.82-3.32h.5c4.758 0 5.727 4.172 5.727 7.49 0 3.32-.969 7.49-5.728 7.49h-3.319zm-6.462-3.79c2.438 0 2.791.5 2.791 3.437v9.047c0 2.938-.353 3.437-2.79 3.437v.852h9.692c6.815 0 9.782-3.965 9.782-8.812 0-4.847-2.967-8.812-9.782-8.812h-9.693zm-7.049 12.484c0 2.938-.382 3.437-2.82 3.437v.852h6.962v-.852c-2.468 0-2.82-.499-2.82-3.437v-13.835h-.735l-12.16 14.511v-9.723c0-2.937.382-3.436 2.82-3.436v-.852h-6.932v.852c2.438 0 2.79.5 2.79 3.436v9.047c0 2.938-.352 3.437-2.79 3.437v.852h5.874l9.811-11.69zm-28.08-.617-2.379-5.522h4.73zm-4.17-9.635c-.676-1.586-.236-2.232 2.202-2.232v-.852h-7.108v.852c2.027 0 2.702.5 3.613 2.585l6.374 14.686h.616l6.404-14.686c.822-1.88 1.234-2.585 3.584-2.585v-.852H222.1v.852c2.584 0 2.878.676 2.203 2.232l-1.234 2.791h-5.874zm-16.92 10.252c0 2.938-.383 3.437-2.82 3.437v.852h6.961v-.852c-2.468 0-2.82-.499-2.82-3.437v-13.835h-.735l-12.16 14.511v-9.723c0-2.937.382-3.436 2.82-3.436v-.852h-6.932v.852c2.438 0 2.79.5 2.79 3.436v9.047c0 2.938-.352 3.437-2.79 3.437v.852h5.874l9.811-11.69zm-28.727 3.378c-4.17 0-5.845-4.347-5.845-7.9 0-3.556 1.674-7.903 5.845-7.903 4.142 0 5.845 4.347 5.845 7.902 0 3.554-1.703 7.901-5.845 7.901m0-17.213c-5.404 0-9.81 4.201-9.81 9.312 0 5.11 4.406 9.311 9.81 9.311 5.375 0 9.781-4.2 9.781-9.31 0-5.112-4.406-9.313-9.78-9.313m-22.354.5v.852c2.438 0 2.791.499 2.791 3.437v9.046c0 2.938-.353 3.437-2.79 3.437v.852h9.281v-.852c-2.438 0-2.82-.5-2.82-3.437v-9.046c0-2.938.382-3.437 2.82-3.437v-.852zm-2.262 13.482h-.852l-.147.587c-.38 1.557-.705 2.233-3.407 2.233h-2.937v-12.014c0-2.937.382-3.436 2.82-3.436v-.852h-9.283v.852c2.438 0 2.791.5 2.791 3.436v12.014h-2.937c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.88l.263 4.142h17.86zm-28.168-.764-2.379-5.522h4.729zm-4.171-9.635c-.675-1.586-.235-2.232 2.203-2.232v-.852h-7.108v.852c2.027 0 2.702.5 3.613 2.585l6.374 14.686h.616l6.404-14.686c.822-1.88 1.234-2.585 3.584-2.585v-.852H119.5v.852c2.584 0 2.878.676 2.203 2.232l-1.234 2.791h-5.874zm-7.666-2.76c-.176.705-.382 1.41-.764 1.674-1.498-1.557-3.407-2.497-5.463-2.497-4.964 0-9.018 4.201-9.018 9.312s4.054 9.311 9.018 9.311c2.056 0 3.965-.91 5.463-2.497.382.294.588.94.764 1.675h.823v-6.462h-.852c-.793 3.818-3.173 5.874-6.08 5.874-4.025 0-5.17-4.259-5.17-7.901 0-3.643 1.145-7.902 5.17-7.902 2.907 0 5.287 2.115 6.08 5.875h.852v-6.462zM80.758-19.591v.852h7.196v-.852c-2.438 0-2.79-.5-2.79-3.437v-6.785c0-4.611-3.202-7.05-7.08-7.05-3.906 0-7.05 2.439-7.05 7.05v6.785c0 2.938-.38 3.437-2.818 3.437v.852h9.31v-.852c-2.467 0-2.82-.5-2.82-3.437v-6.461c0-3.79 2.028-5.552 4.554-5.552 2.526 0 4.318 1.762 4.318 5.552v6.46c0 2.939-.353 3.438-2.82 3.438m-28.55-12.131c0-2.85.382-3.32 2.82-3.32h.499c4.759 0 5.728 4.172 5.728 7.49 0 3.32-.97 7.49-5.728 7.49h-3.32zm-6.462-3.79c2.438 0 2.79.5 2.79 3.437v9.047c0 2.938-.352 3.437-2.79 3.437v.852h9.693c6.815 0 9.782-3.965 9.782-8.812 0-4.847-2.967-8.812-9.782-8.812h-9.693zm-19.71 0c2.439 0 2.792.5 2.792 3.438v9.046c0 2.938-.353 3.437-2.791 3.437v.852h15.127l.235-4.142h-.852l-.147.588c-.411 1.556-.704 2.232-3.407 2.232h-4.494v-6.315h1.616c2.937 0 3.407.382 3.407 2.82h.852v-6.962h-.852c0 2.467-.47 2.82-3.407 2.82h-1.616v-3.907c0-2.937.382-3.436 2.82-3.436h2.643c2.703 0 3.026.676 3.408 2.232l.146.588h.853l-.235-4.142H26.037zM210.41 7.64h1.616c2.937 0 3.407.382 3.407 2.82h.852V3.497h-.852c0 2.468-.47 2.82-3.407 2.82h-1.616V1.941c0-2.938.382-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.791.5 2.791 3.437v9.047c0 2.937-.353 3.436-2.79 3.436v.852h15.596l.264-4.14h-.88l-.147.586c-.382 1.557-.705 2.232-3.378 2.232h-4.994zm-19.503 6.727c-4.171 0-5.845-4.347-5.845-7.901 0-3.555 1.674-7.902 5.845-7.902 4.142 0 5.845 4.347 5.845 7.902 0 3.554-1.703 7.9-5.845 7.9m0-17.212c-5.404 0-9.811 4.2-9.811 9.312 0 5.11 4.407 9.31 9.81 9.31 5.376 0 9.782-4.2 9.782-9.31 0-5.111-4.406-9.312-9.781-9.312M169.17 11.839l-4.2-6.344V1.941c0-2.938.352-3.437 2.79-3.437v-.852h-9.164v.852c2.438 0 2.82.5 2.82 3.437v3.465l-4.26 6.433c-1.38 2.086-2.173 2.585-4.258 2.585v.852h9.957v-.852c-2.056 0-2.614-.675-1.557-2.232l3.29-4.964 3.29 4.964c1.057 1.586.734 2.232-1.586 2.232v.852h7.108v-.852c-2.438 0-2.996-.675-4.23-2.585m-22.059-1.527c0 1.998-1.205 3.643-3.76 3.643h-1.615V6.7h1.615c2.555 0 3.76 1.616 3.76 3.613m1.586-8.048c2.585-2.849 3.701-3.525 5.493-3.76v-.852h-6.374l-5.228 7.725h-.852V1.941c0-2.938.381-3.437 2.82-3.437v-.852h-9.282v.852c2.438 0 2.79.5 2.79 3.437v9.047c0 2.937-.352 3.436-2.79 3.436v.852h9.84c3.642 0 5.933-2.232 5.933-4.964 0-2.555-1.998-4.64-5.199-4.935zm-15.684 8.87h-.852l-.147.588c-.381 1.557-.705 2.233-3.407 2.233h-2.937V1.94c0-2.937.382-3.436 2.82-3.436v-.852h-9.283v.852c2.438 0 2.79.499 2.79 3.436v12.014h-2.936c-2.673 0-2.996-.676-3.378-2.233l-.147-.587h-.881l.264 4.142h17.859zM101.025-2.846h-.852v6.462h.881c.558-3.143 2.996-5.14 5.405-5.14 1.704 0 2.937.97 2.937 2.908 0 1.057-.793 2.262-2.173 2.967l-2.79 1.468c-2.497 1.263-3.995 2.644-3.995 5.552 0 2.408 2.261 4.406 5.11 4.406 1.733 0 2.703-.56 3.584-1.205.352.294.705.735.851 1.352h.823V9.46h-.852c-.205 2.349-1.145 5.023-4.229 5.023-1.205 0-2.38-.882-2.38-2.351 0-.881.793-2.203 2.35-2.996l2.82-1.44c2.086-1.086 3.79-2.877 3.79-5.198 0-3.201-2.82-5.346-5.846-5.346-2.232 0-3.642 1.175-4.582 1.38a2.487 2.487 0 0 1-.852-1.38m-13.864.5v.851c2.438 0 2.791.5 2.791 3.437v9.046c0 2.938-.353 3.437-2.79 3.437v.852h9.281v-.852c-2.438 0-2.82-.499-2.82-3.437V1.941c0-2.938.382-3.437 2.82-3.437v-.852zm-7.196 13.335c0 2.938-.382 3.437-2.82 3.437v.852h6.962v-.852c-2.468 0-2.82-.5-2.82-3.437V-2.847h-.735l-12.16 14.51V1.942c0-2.937.382-3.436 2.82-3.436v-.852H64.28v.852c2.438 0 2.79.499 2.79 3.436v9.047c0 2.938-.352 3.437-2.79 3.437v.852h5.874l9.81-11.691zM51.885-2.348v.852c2.438 0 2.79.5 2.79 3.437v9.046c0 2.938-.352 3.437-2.79 3.437v.852h9.282v-.852c-2.438 0-2.82-.499-2.82-3.437V1.941c0-2.938.382-3.437 2.82-3.437v-.852zM30.149 1.941c0-2.938.382-3.437 2.82-3.437v-.852h-6.932v.852c2.438 0 2.79.499 2.79 3.437v9.047c0 2.937-.352 3.436-2.79 3.436v.852h6.139l5.346-12.748 5.345 12.748H48.8v-.852c-2.467 0-2.82-.499-2.82-3.436V1.941c0-2.938.353-3.437 2.82-3.437v-.852h-9.106v.852c2.438 0 2.82.499 2.82 3.437v9.223L36.67-2.847h-.646l-5.875 14.011z" + /> + </svg> +); + +export const LogoTemFiSv = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} viewBox="0 0 33.077 7.316" xmlns="http://www.w3.org/2000/svg"> + <path + fill="#1d1d1b" + fillRule="evenodd" + clipRule="evenodd" + d="M2.375 1.135c-.021.069-.066.098-.114.095a.094.094 0 0 1-.068-.037.1.1 0 0 1-.024-.076.104.104 0 0 1 .114-.096c.058.006.1.058.092.114zm1.35.65a.431.431 0 1 1 .862.001.431.431 0 0 1-.863 0zM.625 3.589a.346.346 0 0 1-.029.267.451.451 0 0 0 .291-.328c.143.085.31.14.487.164a.683.683 0 0 0 .085-.33c.071.14.079.248.058.346.071.005.143.002.214 0a.687.687 0 0 0 .098-.355c.069.138.08.241.06.336.083-.013.165-.031.244-.055a.675.675 0 0 0 .064-.289.496.496 0 0 1 .069.244c.124-.05.238-.114.338-.193a.764.764 0 0 0 .143-.175.629.629 0 0 1-.084.212c.047.034.095.071.137.113l.048.056a1.264 1.264 0 0 0-.977.788.528.528 0 0 1 .286.76l-.04.06a.526.526 0 0 1-.418.207l-.066-.005-.076-.016a.443.443 0 0 1-.151-.072.428.428 0 0 0-.223-.068.395.395 0 0 0-.394.394c0 .037.006.071.016.103a.419.419 0 0 1 .73.368 1.231 1.231 0 0 0 1.202-.987.577.577 0 0 1-.003-.635l.034-.048c.082-.1.188-.169.31-.2.024-.167.048-.326.106-.485.016-.042.037-.085.055-.124-.05.198-.047.397-.002.592.06.262.19.485.373.651a.441.441 0 0 1 .661.378c0 .225-.167.41-.386.434a.452.452 0 0 0-.386.294l-.016.058a.417.417 0 1 1 .913.35.39.39 0 0 0 .119-.08 1.235 1.235 0 0 0 .119-1.6.587.587 0 0 1-.556-.73.615.615 0 0 1 .325-.4.66.66 0 0 0 .03-1.21.657.657 0 0 0-.278-1.254.657.657 0 0 0-.278 1.255.714.714 0 0 0-.193.137l-.045.05-.045.064-.032.06-.032.075a.565.565 0 0 0-.026.111l-.008.045v.045c.005.336.463.254.463.254s-.116-.045-.116-.135c0-.119.209-.283-.067-.315a.363.363 0 0 1 .035-.053c.013-.018.029-.034.045-.05l.055-.045a.516.516 0 0 1 .143-.063c.03-.006.053-.011.074-.011.262-.003.455.19.455.429a.557.557 0 0 1-.005.066c-.026.243-.275.444-.59.465a.975.975 0 0 1-.55-.148.932.932 0 0 1-.426-.783c-.008-.03-.019-.053-.03-.077a.692.692 0 0 0-.346-.325l.05-.008a.484.484 0 0 1 .32.108c.011-.079.027-.156.048-.23a.68.68 0 0 0-.278-.217l.05-.008a.493.493 0 0 1 .278.077 1.28 1.28 0 0 1 .096-.19.686.686 0 0 0-.283-.223l.05-.008a.47.47 0 0 1 .299.096v-.268l-.445-.238-.27-.145L2.327.8 2.171.72l-.026.082a1.532 1.532 0 0 1-.228.397l-.042.047c.019.061.04.114.04.175a.25.25 0 0 1-.013.08c.013.034.023.068.034.105a.29.29 0 1 1 .235.455.297.297 0 0 1-.198-.08 1.13 1.13 0 0 1-.048.27c-.016.056-.029.088-.04.12a.95.95 0 0 1-.214.317c-.034.035-.074.064-.11.093a.915.915 0 0 0 .18-.405.878.878 0 0 1-.44-.127.706.706 0 0 1-.056.185.445.445 0 0 1-.053.09.68.68 0 0 0 .014-.341.592.592 0 0 0-.313.013c.03-.018.059-.037.09-.05a.651.651 0 0 1 .133-.045.897.897 0 0 1-.204-.376.288.288 0 0 1-.257.024v.193c0 .103.019.204.048.296l-.058.397.391.056a.932.932 0 0 0 .46.174c-.028.022-.06.043-.09.064h.54a.736.736 0 0 1-.28.196c-.35.135-.71.09-1.003-.098a.457.457 0 0 0-.513.063.456.456 0 0 0-.143.421.341.341 0 0 1 .193-.153c.18-.053.37.047.426.23zM2.24.667l.22.116.315.17.177.095.347.185.394-.323.084-.016.651-.121.14-.204-.203-.14-.651.121-.394.074a.192.192 0 0 1 .068.09l.014.05a.2.2 0 0 1-.003.064.22.22 0 0 1-.074.12C3.259.983 3.23.99 3.201.99a.213.213 0 0 1-.114-.035.203.203 0 0 1-.048-.047A.243.243 0 0 1 3 .786c0-.111.09-.201.202-.201l-.074-.3-.3.09c.05.062.061.149.024.223A.201.201 0 1 1 2.69.302L2.597 0l-.299.093-.005.045L2.288.2l-.01.1-.006.048zm-.558.915a.563.563 0 0 0-.106-.016.19.19 0 1 0 .019.378c.09-.005.45-.16.555-.206a9.088 9.088 0 0 1-.452.07.115.115 0 0 1-.12-.11.12.12 0 0 1 .104-.116zm-1.334-.08a.125.125 0 0 0 .056-.055l.06-.01a.301.301 0 0 0 .186.23.286.286 0 0 0 .236-.013.293.293 0 0 0 .156-.32c.047.126.05.264.037.399l.227-.042a1.725 1.725 0 0 1-.122-.307l.622-.117c.064-.121.103-.248.127-.38l-.815.153a1.725 1.725 0 0 1 .003-.33L.893.75c.061.12.109.25.143.387l-.045-.043C.96 1.02.91 1.005.867 1.027c-.064.018-.103.01-.135.029-.063.018-.103.01-.135.029-.063.018-.103.01-.135.029a.086.086 0 0 0-.045.085l.01.058-.057.01a.144.144 0 0 0-.162-.016.144.144 0 0 0-.058.199c.04.063.13.09.198.053zM4.08 6.539a4.159 4.159 0 0 1-2.905-.172l.135-.257c.042-.116-.005-.214-.095-.246a.171.171 0 0 0-.22.106.172.172 0 0 0 .106.22l-.04.121a4.172 4.172 0 0 1-.762-.473l-.14.172c.222.233.47.444.74.621l-.15.294c-.042.117.005.214.095.246a.171.171 0 0 0 .22-.108.171.171 0 0 0-.109-.22l.05-.143a4.143 4.143 0 0 0 3.863.26c-.029.002-.058.005-.087.005a.79.79 0 0 1-.701-.426z" + /> + <path + fill="#1d1d1b" + d="M32.598 5.437V4.85h-.169v-.056l.172-.034v-.254l.164-.072v.331h.289v.085h-.289v.569c0 .108.04.161.122.161.055 0 .1-.042.145-.106l.045.032c-.074.132-.14.185-.267.185-.132-.005-.212-.087-.212-.254zm-1.071-.214c0-.273.167-.482.426-.482.26 0 .38.228.365.445h-.609v.016c0 .22.109.378.305.378.11 0 .2-.071.28-.17l.04.038c-.074.121-.177.235-.378.235-.28.003-.43-.196-.43-.46zm.182-.095.426-.011c.019-.17-.052-.315-.195-.315-.122.003-.217.095-.23.326zm-.738.481c.117-.002.146-.021.146-.069v-.616c0-.061-.03-.095-.143-.098v-.06l.31-.009v.783c0 .048.029.07.145.07v.06h-.458zm.111-1.196c0-.069.045-.121.114-.121s.114.047.114.116-.045.119-.114.119c-.069.003-.114-.045-.114-.114zm-.96 1.196c.116-.002.145-.021.145-.069v-.616c0-.058-.029-.095-.145-.098v-.06l.307-.009v.156c.069-.087.161-.161.264-.161.101 0 .146.069.146.137 0 .064-.042.114-.103.114-.061 0-.109-.034-.109-.103 0-.01.003-.021.006-.034-.09-.006-.16.058-.199.113v.561c0 .048.035.07.167.07v.06h-.479zm-.929-.386c0-.273.167-.482.426-.482.26 0 .381.228.365.445h-.608v.016c0 .22.108.378.304.378.111 0 .201-.071.28-.17l.04.038c-.074.121-.177.235-.378.235-.28.003-.429-.196-.429-.46zm.183-.095.426-.011c.018-.17-.053-.315-.196-.315-.122.003-.214.095-.23.326zm-.775.31V4.85h-.17v-.056l.172-.034v-.254l.164-.072v.331h.289v.085h-.289v.569c0 .108.04.161.122.161.056 0 .1-.042.146-.106l.045.032c-.075.132-.14.185-.268.185-.132-.005-.211-.087-.211-.254zm-.942-.056h.058c.09.148.182.243.296.243.109 0 .164-.074.164-.15 0-.093-.055-.133-.235-.189-.201-.058-.273-.13-.273-.254 0-.172.125-.29.32-.29.064 0 .146.023.188.052l.037-.053h.045v.27h-.058c-.063-.122-.14-.209-.235-.209-.096 0-.16.061-.16.148 0 .082.067.125.228.17.188.053.27.121.27.259 0 .167-.106.307-.307.307a.53.53 0 0 1-.23-.064l-.058.064h-.045v-.304zm-.617.227c.117-.002.146-.021.146-.069v-.616c0-.061-.03-.095-.143-.098v-.06l.31-.009v.783c0 .048.029.07.145.07v.06h-.458zm.111-1.196c0-.069.045-.121.114-.121s.114.047.114.116-.045.119-.114.119c-.066.003-.114-.045-.114-.114zm-1.29 1.196c.116-.002.145-.021.145-.069v-.616c0-.058-.03-.095-.146-.098v-.06l.307-.009v.138c.106-.074.228-.143.36-.143.138 0 .225.098.225.275v.513c0 .048.029.07.145.07v.06h-.439v-.06c.1-.003.127-.022.127-.07V5.1c0-.178-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.584c0 .048.027.07.125.07v.06h-.437zm-.607 0c.117-.002.146-.021.146-.069v-.616c0-.061-.03-.095-.143-.098v-.06l.31-.009v.783c0 .048.029.07.145.07v.06h-.458zm.114-1.196c0-.069.045-.121.114-.121s.114.047.114.116-.045.119-.114.119c-.069.003-.114-.045-.114-.114zM24.121 5.61c.1-.002.117-.021.117-.069V5.1c0-.178-.072-.228-.19-.228-.09 0-.149.04-.205.082v.585c0 .047.014.069.114.069v.06h-.426v-.06c.117-.003.146-.022.146-.07v-.616c0-.058-.03-.095-.146-.098v-.06l.307-.008v.137c.106-.074.21-.143.341-.143.104 0 .18.061.21.17.116-.104.235-.17.362-.17.138 0 .217.098.217.275v.514c0 .047.029.069.145.069v.06h-.428v-.06c.1-.003.116-.022.116-.07V5.1c0-.178-.063-.228-.182-.228-.07 0-.135.034-.217.1.002.027.002.045.002.064v.503c0 .047.019.069.133.069v.06h-.416zm-1.386-.227h.058c.09.148.183.243.296.243.109 0 .164-.074.164-.15 0-.093-.055-.133-.235-.189-.201-.058-.273-.13-.273-.254 0-.172.125-.29.32-.29.064 0 .146.023.188.052l.037-.053h.045v.27h-.058c-.063-.122-.14-.209-.235-.209-.096 0-.159.061-.159.148 0 .082.066.125.228.17.187.053.27.121.27.259 0 .167-.106.307-.308.307a.53.53 0 0 1-.23-.064l-.058.064h-.045v-.304zm-.429-.601c.043-.082.106-.153.199-.153.068 0 .108.042.108.095a.075.075 0 0 1-.077.077c-.042 0-.082-.035-.082-.096a.2.2 0 0 0-.108.096c.085.05.14.132.14.248 0 .193-.148.307-.352.307a.578.578 0 0 1-.116-.01c-.061.026-.098.055-.098.092 0 .04.042.077.204.077h.082c.251 0 .378.069.378.243 0 .156-.153.313-.471.313-.246 0-.392-.098-.392-.212 0-.093.098-.185.247-.204v-.01c-.122-.024-.167-.067-.167-.154 0-.06.055-.119.145-.164a.271.271 0 0 1-.169-.265c0-.19.148-.306.355-.306a.374.374 0 0 1 .174.026zm.154 1.032c0-.082-.05-.14-.26-.14h-.164c-.103.026-.169.071-.169.164 0 .098.082.174.304.174.167 0 .289-.079.289-.198zm-.143-.76c0-.16-.085-.248-.188-.248-.1 0-.17.066-.17.249 0 .182.088.248.188.248.096 0 .17-.066.17-.248zm-1.715.556c.117-.002.146-.021.146-.069v-.616c0-.058-.03-.095-.146-.098v-.06l.307-.009v.138c.106-.074.228-.143.36-.143.138 0 .225.098.225.275v.513c0 .048.029.07.145.07v.06H21.2v-.06c.1-.003.127-.022.127-.07V5.1c0-.178-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.584c0 .048.027.07.125.07v.06h-.437zm-.603 0c.116-.002.146-.021.146-.069v-.616c0-.061-.03-.095-.143-.098v-.06l.31-.009v.783c0 .048.028.07.145.07v.06h-.458Zm.111-1.196c0-.069.045-.121.114-.121.066 0 .114.047.114.116s-.045.119-.114.119c-.069.003-.114-.045-.114-.114zm-.96 1.196c.116-.002.145-.021.145-.069v-.616c0-.058-.029-.095-.145-.098v-.06l.307-.009v.156c.068-.087.161-.161.264-.161.1 0 .148.069.148.137 0 .064-.042.114-.103.114-.058 0-.108-.034-.108-.103l.002-.034c-.09-.006-.158.058-.198.113v.561c0 .048.034.07.167.07v.06h-.48zm-.99-.135c0-.08.037-.161.122-.206.15-.085.386-.117.418-.14v-.056c0-.198-.056-.26-.185-.26-.064 0-.1.02-.135.054a.228.228 0 0 1 .024.092c0 .061-.037.109-.106.109-.064 0-.1-.05-.1-.109 0-.116.153-.206.343-.206.207 0 .323.093.323.283v.455c0 .098.021.122.153.106l.008.048a.49.49 0 0 1-.185.037c-.106 0-.122-.045-.135-.154h-.008c-.08.09-.18.156-.299.156-.164 0-.238-.103-.238-.209zm.098-.995c0-.066.045-.116.109-.116.063 0 .108.048.108.114s-.045.116-.108.116c-.064 0-.109-.047-.109-.114zm.442.974v-.26c-.286.062-.352.104-.352.236 0 .082.045.148.148.148.08 0 .159-.06.204-.124zm-.072-.974c0-.066.045-.116.109-.116.063 0 .108.048.108.114s-.045.116-.108.116c-.064 0-.109-.047-.109-.114zm-1.643 1.13c.117-.002.146-.021.146-.069v-.616c0-.058-.03-.095-.146-.098v-.06l.307-.009v.138c.106-.074.228-.143.36-.143.138 0 .225.098.225.275v.513c0 .048.027.07.146.07v.06h-.44v-.06c.1-.003.127-.022.127-.07V5.1c0-.178-.068-.225-.187-.225a.38.38 0 0 0-.225.082v.584c0 .048.026.07.124.07v.06h-.437zm-1.492 0c.117-.002.148-.021.148-.069V4.453c0-.06-.037-.095-.153-.098v-.06l.32-.009v.603c.108-.074.228-.14.357-.14.135 0 .222.098.222.275v.514c0 .047.03.069.146.069v.06h-.44v-.06c.101-.003.128-.022.128-.07v-.441c0-.177-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .047.026.069.124.069v.06h-.439zm-.878-.386c0-.275.19-.482.439-.482.209 0 .315.117.315.215 0 .063-.04.113-.1.113-.067 0-.107-.042-.107-.1 0-.053.037-.093.064-.106a.251.251 0 0 0-.17-.058c-.148 0-.267.122-.267.376 0 .235.12.394.31.394.1 0 .19-.058.26-.135l.039.037c-.085.122-.185.212-.363.212-.262-.003-.42-.202-.42-.466zm-1.056-.005c0-.276.172-.474.445-.474.28 0 .441.19.441.466 0 .277-.172.476-.441.476-.284 0-.445-.19-.445-.468zm.704-.003c0-.278-.109-.41-.267-.41-.156 0-.252.132-.252.41 0 .278.109.41.267.41.157 0 .252-.132.252-.41zm-1.71-.106h.509v.132h-.508zm-.84.273h.057c.09.148.183.243.3.243.108 0 .163-.074.163-.15 0-.093-.055-.133-.235-.189-.201-.058-.273-.13-.273-.254 0-.172.122-.29.32-.29.064 0 .146.023.188.052l.038-.053h.045v.27h-.059c-.063-.122-.14-.209-.235-.209-.095 0-.159.061-.159.148 0 .082.066.125.228.17.187.053.27.121.27.259 0 .167-.106.307-.307.307a.53.53 0 0 1-.23-.064l-.061.064h-.045v-.304zm-.628.055V4.85h-.17v-.056l.173-.034v-.254l.164-.072v.331h.288v.085h-.288v.569c0 .108.04.161.124.161.056 0 .1-.042.146-.106l.045.032c-.074.132-.14.185-.267.185-.135-.005-.215-.087-.215-.254zm-1.071-.214c0-.273.166-.482.426-.482.259 0 .378.228.362.445h-.608v.016c0 .22.108.378.304.378.11 0 .2-.071.28-.17l.04.038c-.074.121-.177.235-.378.235-.28.003-.426-.196-.426-.46zm.18-.095.426-.011c.02-.17-.053-.315-.196-.315-.12.003-.215.095-.23.326zm-1.18.391V4.453c0-.06-.038-.095-.154-.098v-.06l.32-.009v.572a.405.405 0 0 1 .283-.117c.238 0 .379.19.379.447 0 .268-.162.498-.426.498a.474.474 0 0 1-.289-.098l-.08.106h-.044zm.645-.32c0-.212-.108-.362-.26-.362a.332.332 0 0 0-.219.084v.527c.045.119.125.174.225.174.175.003.254-.153.254-.423zm-1.542.41c.116-.002.145-.021.145-.069v-.616c0-.058-.029-.095-.145-.098v-.06l.306-.009v.156c.07-.087.162-.161.265-.161.1 0 .148.069.148.137 0 .064-.042.114-.103.114-.058 0-.108-.034-.108-.103l.002-.034c-.09-.006-.159.058-.198.113v.561c0 .048.034.07.166.07v.06h-.478zm-.625-.428h-.444l-.077.195c-.074.186-.064.21.108.238v.059h-.43v-.059c.134-.026.176-.105.245-.275l.4-.992h.09l.402 1.106c.034.1.077.143.222.164v.058h-.585v-.058c.172-.01.204-.048.167-.153zm-.026-.072-.18-.526h-.008l-.204.526zm21.479-2.405c0-.275.172-.474.444-.474.28 0 .442.19.442.466 0 .278-.172.476-.442.476-.283 0-.444-.19-.444-.468zm.148-.736c0-.066.045-.116.108-.116.064 0 .109.048.109.114s-.045.116-.109.116a.11.11 0 0 1-.108-.114zm.553.733c0-.277-.109-.41-.268-.41-.156 0-.25.133-.25.41 0 .278.108.41.266.41.156 0 .252-.132.252-.41zm-.183-.733c0-.066.045-.116.109-.116.063 0 .108.048.108.114s-.045.116-.108.116a.11.11 0 0 1-.109-.114zm-1.077 1.128c.117-.003.146-.022.146-.07V2.41c0-.06-.03-.095-.143-.098v-.06l.31-.008v.785c0 .048.029.067.145.07v.06h-.458zm.111-1.196c0-.07.045-.122.114-.122s.114.048.114.116c0 .07-.045.12-.114.12-.066.002-.114-.046-.114-.114zm-.96 1.196c.116-.003.146-.022.146-.07V2.41c0-.058-.03-.095-.146-.098v-.06l.307-.008V2.4c.069-.088.161-.162.264-.162.101 0 .149.07.149.138 0 .063-.043.114-.104.114-.058 0-.108-.035-.108-.103 0-.011.003-.022.005-.035-.09-.005-.158.058-.198.114v.56c0 .048.034.067.167.07v.06h-.48v-.06zm-.926-.387c0-.272.167-.481.426-.481.26 0 .378.225.362.444h-.608v.019c0 .22.108.378.304.378.111 0 .201-.071.28-.17l.04.038c-.074.122-.177.235-.378.235-.28 0-.426-.2-.426-.463zm.18-.095.426-.01c.018-.17-.053-.315-.196-.315-.122.002-.214.095-.23.325zm-.773.31v-.588h-.17v-.055l.173-.035v-.254l.164-.071v.33h.288v.085h-.288v.57c0 .108.04.16.122.16.055 0 .1-.042.145-.108l.045.032c-.074.132-.14.185-.267.185-.132-.003-.212-.085-.212-.251zm-.944-.056h.058c.09.148.182.243.299.243.106 0 .164-.074.164-.15 0-.093-.056-.133-.236-.188-.2-.058-.272-.13-.272-.254 0-.172.122-.291.32-.291.064 0 .146.024.188.05l.034-.05h.045v.27h-.058c-.063-.122-.14-.21-.235-.21-.096 0-.16.061-.16.149 0 .082.07.122.228.17.188.052.27.12.27.258 0 .167-.106.307-.307.307a.53.53 0 0 1-.23-.063l-.058.063h-.045v-.304zm-.614.228c.116-.003.145-.022.145-.07V2.41c0-.06-.029-.095-.142-.098v-.06l.31-.008v.785c0 .048.028.067.145.07v.06h-.458zM24.57 1.9c0-.07.045-.122.114-.122s.114.048.114.116c0 .07-.045.12-.114.12-.069.002-.114-.046-.114-.114zm-1.294 1.196c.117-.003.146-.022.146-.07V2.41c0-.058-.03-.095-.146-.098v-.06l.307-.008v.137c.106-.074.228-.143.36-.143.138 0 .225.098.225.276v.513c0 .047.029.066.145.069v.06h-.439v-.06c.1-.003.127-.022.127-.07v-.441c0-.177-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .047.027.066.125.069v.06h-.437zm-.603 0c.116-.003.145-.022.145-.07V2.41c0-.06-.029-.095-.142-.098v-.06l.31-.008v.785c0 .048.026.067.145.07v.06h-.458zm.111-1.196c0-.07.045-.122.114-.122s.114.048.114.116c0 .07-.045.12-.114.12-.069.002-.114-.046-.114-.114zM21.54 3.096c.1-.003.116-.022.116-.07v-.441c0-.177-.071-.225-.19-.225-.09 0-.148.04-.207.082v.585c0 .047.014.066.114.069v.06h-.426v-.06c.117-.003.146-.022.146-.07V2.41c0-.058-.03-.095-.146-.098v-.06l.307-.008v.137c.106-.074.212-.143.341-.143.104 0 .18.061.21.17.116-.103.235-.17.362-.17.138 0 .217.098.217.276v.513c0 .047.029.066.145.069v.06H22.1v-.06c.1-.003.116-.022.116-.07v-.441c0-.177-.063-.225-.182-.225-.07 0-.135.034-.217.1.002.027.002.046.002.064v.503c0 .047.019.066.133.069v.06h-.416v-.06zm-1.606-.392c0-.275.172-.474.444-.474.28 0 .445.19.445.466 0 .278-.172.476-.445.476-.283 0-.444-.19-.444-.468zm.704-.003c0-.277-.109-.41-.268-.41-.156 0-.25.133-.25.41 0 .278.108.41.266.41.156 0 .252-.132.252-.41zm-1.84.395c.117-.003.146-.022.146-.07V2.41c0-.058-.029-.095-.145-.098v-.06l.307-.008v.137c.106-.074.227-.143.36-.143.137 0 .224.098.224.276v.513c0 .047.03.066.146.069v.06h-.44v-.06c.101-.003.128-.022.128-.07v-.441c0-.177-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .047.026.066.124.069v.06h-.436zm-.602 0c.116-.003.145-.022.145-.07V2.41c0-.06-.026-.095-.143-.098v-.06l.31-.008v.785c0 .048.029.067.145.07v.06h-.457zm.11-1.196c0-.07.046-.122.114-.122.07 0 .114.048.114.116 0 .07-.045.12-.114.12-.068.002-.113-.046-.113-.114zm-1.036.81c0-.273.166-.482.425-.482.26 0 .381.225.366.444h-.609v.019c0 .22.109.378.304.378.111 0 .201-.071.28-.17l.04.038c-.074.122-.177.235-.378.235-.283 0-.428-.2-.428-.463zm.18-.096.425-.01c.022-.17-.053-.315-.195-.315-.122.002-.215.095-.23.325zm-.924.413c0 .047.026.066.109.069v.06h-.421v-.06c.116-.003.148-.022.148-.07V1.94c0-.06-.037-.095-.153-.098v-.06l.32-.008v.947l.293-.302c.053-.055.045-.1-.079-.113v-.059h.42v.059c-.105.015-.145.044-.224.119l-.185.172.299.412c.045.059.066.082.16.09v.058h-.433v-.058c.098-.01.122-.029.077-.098l-.212-.304-.116.109v.222zm-1.482.069c.117-.003.146-.022.146-.07V2.41c0-.058-.03-.095-.146-.098v-.06l.307-.008v.137c.106-.074.228-.143.36-.143.138 0 .225.098.225.276v.513c0 .047.03.066.146.069v.06h-.44v-.06c.1-.003.127-.022.127-.07v-.441c0-.177-.068-.225-.188-.225a.38.38 0 0 0-.224.082v.585c0 .047.026.066.124.069v.06h-.437zm-.603 0c.117-.003.146-.022.146-.07V2.41c0-.06-.03-.095-.143-.098v-.06l.31-.008v.785c0 .048.026.067.145.07v.06h-.458zm.111-1.196c0-.07.045-.122.114-.122s.114.048.114.116c0 .07-.045.12-.114.12s-.114-.046-.114-.114zm-.717 1.196c.117-.003.146-.022.146-.07V1.94c0-.06-.037-.095-.154-.098v-.06l.32-.008v1.254c0 .047.027.066.146.069v.06h-.458Zm-.918-.387c0-.272.167-.481.426-.481.26 0 .378.225.363.444h-.609v.019c0 .22.109.378.304.378.111 0 .201-.071.28-.17l.04.038c-.074.122-.177.235-.378.235-.278 0-.426-.2-.426-.463zm.18-.095.426-.01c.021-.17-.053-.315-.196-.315-.119.002-.211.095-.23.325zm-1.479.347c0-.08.037-.162.122-.207.15-.084.386-.116.418-.14V2.56c0-.199-.056-.26-.185-.26-.064 0-.101.019-.135.053a.228.228 0 0 1 .023.093c0 .06-.037.108-.105.108-.064 0-.101-.05-.101-.108 0-.114.154-.207.344-.207.206 0 .323.093.323.283v.456c0 .097.021.121.153.105l.008.048a.49.49 0 0 1-.185.037c-.106 0-.124-.045-.135-.153h-.008c-.08.09-.18.156-.299.156-.164 0-.238-.103-.238-.21zm.537-.021v-.26c-.286.061-.352.103-.352.233 0 .085.045.148.148.148.082.003.162-.058.204-.121zm-1.28.47c0-.06.04-.108.097-.108.059 0 .109.045.109.116a.245.245 0 0 1-.01.061c.018.006.026.008.044.008.043 0 .098-.034.098-.177v-.897c0-.077-.016-.106-.159-.106v-.06l.326-.009v.908c0 .164-.019.257-.09.33a.264.264 0 0 1-.196.077c-.132.003-.22-.066-.22-.143zm.301-1.51c0-.07.045-.122.114-.122.066 0 .114.048.114.116 0 .07-.045.12-.114.12-.066.002-.114-.046-.114-.114zm-1.119.696h.508v.132h-.508zm-1.103.108c0-.275.172-.474.444-.474.28 0 .442.19.442.466 0 .278-.172.476-.442.476-.283 0-.444-.19-.444-.468zm.148-.736c0-.066.045-.116.108-.116.064 0 .109.048.109.114s-.045.116-.109.116a.11.11 0 0 1-.108-.114zm.553.733c0-.277-.109-.41-.267-.41-.157 0-.252.133-.252.41 0 .278.109.41.267.41.16 0 .252-.132.252-.41zm-.183-.733c0-.066.045-.116.109-.116.063 0 .108.048.108.114s-.045.116-.108.116a.11.11 0 0 1-.109-.114zm-1.415.46c-.04-.09-.064-.116-.148-.123v-.059h.45v.059c-.125.005-.154.042-.13.1l.227.542.188-.457c.05-.12.04-.164-.098-.188v-.058h.365v.058c-.06.008-.119.047-.161.148l-.333.791c-.101.246-.204.315-.315.315-.106 0-.164-.06-.164-.135 0-.063.037-.119.108-.119.058 0 .106.05.106.108a.155.155 0 0 1-.013.059c.066 0 .127-.066.222-.294l.01-.024zm-1.16.665c.178-.005.22-.024.22-.085V1.921h-.1c-.19 0-.228.103-.307.339l-.06-.003.01-.408h1.1l.014.408-.061.003c-.066-.223-.109-.34-.307-.34h-.103v1.088c0 .061.045.08.22.085v.063h-.63v-.063z" + /> + </svg> +); + +export const LogoTemEn = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 31.225 7.316"> + <path + fill="#1d1d1b" + fillRule="evenodd" + clipRule="evenodd" + d="M2.372 1.135c-.02.069-.066.098-.113.095a.094.094 0 0 1-.07-.037.1.1 0 0 1-.023-.076.104.104 0 0 1 .114-.096c.058.006.1.058.092.114zm1.35.65a.431.431 0 1 1 .863.001.431.431 0 0 1-.863 0zM.624 3.589a.346.346 0 0 1-.03.267.451.451 0 0 0 .292-.328c.142.085.31.14.486.164a.683.683 0 0 0 .085-.33c.071.14.08.248.058.346.072.005.143.002.215 0a.687.687 0 0 0 .097-.355c.07.138.08.241.061.336.082-.013.164-.031.244-.055a.675.675 0 0 0 .063-.289.496.496 0 0 1 .069.244c.124-.05.238-.114.339-.193a.764.764 0 0 0 .143-.175.629.629 0 0 1-.085.212c.047.034.095.071.137.113l.05.056a1.264 1.264 0 0 0-.976.788.528.528 0 0 1 .286.76l-.04.06a.526.526 0 0 1-.418.207l-.066-.005-.08-.016a.443.443 0 0 1-.15-.072.428.428 0 0 0-.222-.068.395.395 0 0 0-.394.394c0 .037.005.071.015.103a.419.419 0 0 1 .73.368 1.231 1.231 0 0 0 1.202-.987.577.577 0 0 1-.003-.635l.035-.048c.082-.1.188-.169.31-.2.023-.167.047-.326.105-.485.016-.042.037-.085.056-.124-.05.198-.048.397-.003.592.06.262.19.485.373.651a.44.44 0 1 1 .273.812.452.452 0 0 0-.387.294l-.016.058a.417.417 0 1 1 .913.35.39.39 0 0 0 .12-.08 1.235 1.235 0 0 0 .118-1.6.587.587 0 0 1-.555-.73.615.615 0 0 1 .325-.4.66.66 0 0 0 .03-1.21.657.657 0 0 0-.279-1.254.657.657 0 0 0-.277 1.255.675.675 0 0 0-.193.137l-.045.05-.045.064-.03.06-.031.075a.565.565 0 0 0-.027.111l-.008.045v.045c.006.336.463.254.463.254s-.116-.045-.116-.135c0-.119.209-.283-.066-.315a.363.363 0 0 1 .034-.053c.013-.018.03-.034.045-.05l.056-.045a.516.516 0 0 1 .143-.063c.029-.006.052-.011.074-.011.262-.003.455.19.455.429a.557.557 0 0 1-.006.066c-.023.243-.272.444-.587.465a.975.975 0 0 1-.55-.148.932.932 0 0 1-.426-.783c-.008-.03-.019-.053-.03-.077a.692.692 0 0 0-.346-.325l.05-.008a.484.484 0 0 1 .32.108c.011-.079.027-.156.048-.23a.68.68 0 0 0-.278-.217l.05-.008a.493.493 0 0 1 .278.077 1.28 1.28 0 0 1 .096-.19.686.686 0 0 0-.283-.223l.05-.008a.47.47 0 0 1 .299.096v-.268l-.445-.238-.27-.145L2.327.8 2.171.72l-.026.082a1.532 1.532 0 0 1-.228.397l-.042.047c.019.061.04.114.04.175a.25.25 0 0 1-.013.08c.013.034.023.068.034.105a.29.29 0 1 1 .235.455.297.297 0 0 1-.198-.08 1.13 1.13 0 0 1-.048.27c-.016.056-.029.088-.04.12a.95.95 0 0 1-.214.317c-.034.035-.074.064-.11.093a.915.915 0 0 0 .18-.405.878.878 0 0 1-.44-.127.706.706 0 0 1-.056.185.445.445 0 0 1-.053.09.68.68 0 0 0 .014-.341.592.592 0 0 0-.313.013c.03-.018.059-.037.09-.05a.651.651 0 0 1 .133-.045.897.897 0 0 1-.204-.376.288.288 0 0 1-.257.024v.193c0 .103.019.204.048.296l-.058.397.391.056a.932.932 0 0 0 .46.174c-.028.022-.06.043-.09.064h.54a.736.736 0 0 1-.28.196c-.35.135-.71.09-1.003-.098a.457.457 0 0 0-.513.063.456.456 0 0 0-.143.421.341.341 0 0 1 .193-.153.342.342 0 0 1 .424.23zM2.238.667l.22.116.314.17.177.095.347.185L3.69.91l.085-.016.65-.121.14-.204-.203-.14-.65.121-.395.074c.03.024.053.053.066.09l.013.05a.2.2 0 0 1-.002.064.237.237 0 0 1-.074.12c-.066.036-.096.042-.125.042a.197.197 0 0 1-.158-.082.243.243 0 0 1-.04-.122c0-.111.09-.201.201-.201l-.074-.3-.3.09c.051.062.062.149.025.223a.201.201 0 1 1-.162-.296L2.595 0l-.3.093-.005.045L2.285.2l-.01.1-.006.048zm-.559.915a.563.563 0 0 0-.106-.016.19.19 0 1 0 .019.378c.09-.005.45-.16.556-.206a9.088 9.088 0 0 1-.453.07.115.115 0 0 1-.119-.11.12.12 0 0 1 .103-.116zm-1.333-.08A.125.125 0 0 0 .4 1.448l.061-.01a.301.301 0 0 0 .185.23.286.286 0 0 0 .236-.013.293.293 0 0 0 .156-.32c.048.126.05.264.037.399l.228-.042a1.725 1.725 0 0 1-.122-.307l.622-.117c.063-.121.103-.248.127-.38l-.815.153a1.725 1.725 0 0 1 .002-.33L.891.75c.06.12.108.25.143.387l-.045-.043c-.032-.076-.082-.09-.125-.068-.063.018-.103.01-.135.029-.063.018-.103.01-.135.029-.063.018-.103.01-.134.029a.086.086 0 0 0-.045.085l.01.058-.058.01a.144.144 0 0 0-.161-.016.144.144 0 0 0-.059.199c.04.063.13.09.199.053zm3.73 5.036a4.159 4.159 0 0 1-2.905-.172l.135-.257c.043-.116-.005-.214-.095-.246a.171.171 0 0 0-.22.106.172.172 0 0 0 .106.22l-.04.121a4.172 4.172 0 0 1-.762-.473l-.14.172c.223.233.471.444.741.621l-.15.294c-.043.117.005.214.095.246a.171.171 0 0 0 .22-.108.171.171 0 0 0-.11-.22l.05-.143a4.146 4.146 0 0 0 2.178.617c.601 0 1.173-.127 1.688-.357-.029.002-.058.005-.087.005a.79.79 0 0 1-.704-.426z" + /> + <path + fill="#1d1d1b" + d="M29.233 5.236c0-.275.175-.487.442-.487.1 0 .161.021.214.053v-.344c0-.06-.037-.095-.153-.098V4.3l.32-.008v1.254c0 .05.029.066.145.071v.058l-.307.008v-.106a.36.36 0 0 1-.27.114c-.246.003-.391-.198-.391-.455zm.656.278v-.587c-.053-.077-.108-.114-.204-.114-.14 0-.267.145-.267.415 0 .212.103.37.283.37a.32.32 0 0 0 .188-.084zm-1.783.1c.116-.002.145-.02.145-.068v-.62c0-.058-.029-.095-.145-.097v-.061l.307-.008v.137c.106-.074.227-.142.36-.142.137 0 .224.097.224.275v.516c0 .047.03.066.146.068v.061h-.44v-.06c.101-.003.128-.022.128-.07v-.441c0-.177-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .047.027.066.124.068v.061h-.436zm-.976-.134c0-.08.037-.162.121-.207.151-.082.387-.116.418-.14v-.058c0-.199-.055-.26-.185-.26-.063 0-.1.019-.135.053a.228.228 0 0 1 .024.093c0 .06-.037.108-.106.108-.063 0-.1-.05-.1-.108 0-.114.153-.206.344-.206.206 0 .322.092.322.283v.455c0 .098.021.121.154.106l.008.047a.49.49 0 0 1-.185.037c-.106 0-.125-.045-.135-.153h-.008c-.08.09-.18.156-.3.156-.166.003-.237-.098-.237-.206zm.537-.019v-.26c-.286.062-.352.104-.352.234 0 .084.045.148.148.148.082 0 .159-.061.204-.122zm-1.13.153c.116-.002.145-.02.145-.068V4.458c0-.058-.037-.095-.153-.098V4.3l.32-.008v1.254c0 .047.027.066.146.068v.061h-.458zm-1.164 0c.116-.002.145-.02.145-.068v-.62c0-.058-.029-.095-.145-.097v-.061l.307-.008v.137c.105-.074.227-.142.36-.142.137 0 .224.097.224.275v.516c0 .047.03.066.146.068v.061h-.44v-.06c.101-.003.128-.022.128-.07v-.441c0-.177-.07-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .047.026.066.124.068v.061h-.436zm-.582 0c.116-.002.145-.02.145-.068v-.62c0-.058-.029-.095-.143-.097v-.061l.31-.008v.786c0 .047.029.068.145.068v.061h-.457zm.11-1.195c0-.07.046-.122.115-.122.068 0 .113.047.113.116s-.045.12-.113.12c-.07.002-.114-.043-.114-.114zm-1.333 1.193c.167-.005.207-.024.207-.085V4.52c0-.06-.04-.08-.207-.085v-.063h1.056l.013.376-.06.002c-.067-.225-.133-.304-.355-.304h-.257v.534h.13c.148 0 .18-.02.235-.217h.053v.514h-.053c-.05-.207-.087-.22-.235-.22h-.13v.474c0 .066.042.08.22.084v.064h-.614v-.066zm-1.04.002c.117-.002.146-.02.146-.068v-.69h-.17V4.8l.17-.035v-.037c0-.172.045-.28.116-.352a.308.308 0 0 1 .22-.095c.148 0 .22.074.22.148 0 .061-.037.103-.096.103-.053 0-.106-.034-.106-.124 0-.016.003-.034.006-.056a.123.123 0 0 0-.05-.01.101.101 0 0 0-.083.034c-.037.035-.055.1-.055.257v.137h.251v.082h-.251v.694c0 .047.042.063.198.068v.061h-.513v-.06zm-1-.391c0-.275.172-.474.445-.474.28 0 .442.19.442.466 0 .278-.172.476-.442.476-.283 0-.445-.19-.445-.468zm.704-.003c0-.278-.108-.41-.267-.41-.156 0-.251.132-.251.41 0 .278.108.41.267.41.156 0 .251-.132.251-.41zm-1.635.225v-.587h-.17v-.056l.173-.034v-.254l.164-.072v.331h.288v.085h-.288v.569c0 .108.04.161.121.161.056 0 .1-.042.146-.108l.045.031c-.074.133-.14.185-.267.185-.133-.005-.212-.084-.212-.25zm-1.244.17c.117-.003.146-.022.146-.07v-.618c0-.059-.03-.096-.146-.098v-.061l.307-.008v.137c.106-.074.228-.142.36-.142.138 0 .225.097.225.275v.516c0 .047.03.066.146.068v.061h-.44v-.06c.1-.003.127-.022.127-.07v-.441c0-.177-.068-.225-.187-.225a.38.38 0 0 0-.225.082v.585c0 .047.026.066.124.068v.061h-.437zm-.915-.387c0-.272.167-.481.426-.481.26 0 .378.227.362.444h-.608V5.204c0 .22.108.379.304.379.111 0 .201-.072.28-.17l.04.037c-.074.122-.177.236-.378.236-.278.005-.426-.193-.426-.458zm.18-.092.429-.011c.018-.17-.053-.315-.196-.315-.122 0-.217.093-.233.326zm-1.26.478c.101-.002.117-.02.117-.068v-.442c0-.177-.072-.228-.19-.228-.09 0-.149.04-.204.082v.585c0 .048.013.066.113.069v.06h-.426v-.06c.117-.003.146-.021.146-.069v-.62c0-.057-.03-.094-.146-.097v-.06l.307-.009v.138c.106-.074.21-.143.342-.143.103 0 .18.06.209.17.116-.104.235-.17.362-.17.138 0 .217.098.217.275v.516c0 .048.03.066.146.069v.06h-.429v-.06c.1-.003.116-.021.116-.069v-.442c0-.177-.063-.227-.182-.227-.066 0-.135.037-.217.1.003.027.005.045.005.064v.502c0 .048.019.067.133.07v.06h-.416v-.056zm-1.547-.666c-.04-.09-.064-.117-.149-.125v-.058h.45v.058c-.124.006-.156.043-.13.1l.228.543.188-.457c.05-.12.04-.164-.098-.188v-.059h.365v.059c-.06.008-.119.047-.161.148l-.334.791c-.1.246-.203.315-.314.315-.106 0-.164-.061-.164-.135 0-.064.037-.12.108-.12.058 0 .106.051.106.11a.155.155 0 0 1-.013.058c.068 0 .127-.067.222-.294l.01-.024zm-1.088.275c0-.275.172-.474.445-.474.28 0 .444.19.444.466 0 .278-.172.476-.444.476-.283 0-.445-.19-.445-.468zm.704-.003c0-.278-.108-.41-.267-.41-.156 0-.252.132-.252.41 0 .278.109.41.268.41.156 0 .251-.132.251-.41zm-1.251.394c.116-.002.145-.02.145-.068V4.458c0-.058-.037-.095-.153-.098V4.3l.32-.008v1.254c0 .047.029.066.145.068v.061h-.457Zm-1.075.384c.117-.005.146-.021.146-.071v-1c0-.059-.03-.096-.146-.098v-.061l.307-.008v.127c.093-.08.175-.14.3-.14.235 0 .362.182.362.444 0 .273-.146.492-.402.492-.101 0-.18-.026-.254-.063v.304c0 .05.045.066.187.071v.061h-.5zm.783-.794c0-.217-.092-.36-.24-.36-.109 0-.178.059-.23.109v.497c.034.125.105.175.224.175.13 0 .246-.145.246-.42zm-1.825.41c.1-.002.116-.02.116-.068v-.442c0-.177-.071-.228-.19-.228-.09 0-.148.04-.204.082v.585c0 .048.013.066.114.069v.06h-.426v-.06c.114-.003.145-.021.145-.069v-.62c0-.057-.029-.094-.145-.097v-.06l.307-.009v.138c.106-.074.211-.143.341-.143.103 0 .177.06.21.17.116-.104.235-.17.362-.17.137 0 .217.098.217.275v.516c0 .048.029.066.145.069v.06h-.426v-.06c.1-.003.116-.021.116-.069v-.442c0-.177-.063-.227-.182-.227-.069 0-.135.037-.217.1.003.027.003.045.003.064v.502c0 .048.018.067.132.07v.06h-.418Zm-1.876-.002c.167-.005.206-.024.206-.085V4.52c0-.06-.04-.08-.206-.085v-.063h1.06l.006.365-.06.003c-.07-.223-.106-.294-.329-.294h-.283v.519h.117c.148 0 .203-.014.251-.22h.053v.516h-.053c-.05-.206-.106-.22-.251-.22h-.117v.561h.283c.262 0 .326-.103.397-.333l.061.002-.01.408h-1.125Zm-1.431-.376c0-.275.174-.487.441-.487.101 0 .162.021.215.053v-.344c0-.06-.037-.095-.154-.098V4.3l.32-.008v1.254c0 .05.03.066.146.071v.058l-.307.008v-.106a.36.36 0 0 1-.27.114c-.246.003-.391-.198-.391-.455zm.656.278v-.587c-.05-.077-.109-.114-.204-.114-.143 0-.267.145-.267.415 0 .212.103.37.283.37a.313.313 0 0 0 .188-.084zm-1.78.1c.116-.002.145-.02.145-.068v-.62c0-.058-.03-.095-.146-.097v-.061l.307-.008v.137c.106-.074.228-.142.36-.142.137 0 .225.097.225.275v.516c0 .047.029.066.145.068v.061h-.439v-.06c.1-.003.127-.022.127-.07v-.441c0-.177-.069-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .047.027.066.125.068v.061h-.437zm-.98-.134c0-.08.037-.162.122-.207.15-.082.386-.116.418-.14v-.058c0-.199-.056-.26-.185-.26-.064 0-.1.019-.135.053a.228.228 0 0 1 .024.093c0 .06-.037.108-.106.108-.064 0-.1-.05-.1-.108 0-.114.153-.206.343-.206.207 0 .323.092.323.283v.455c0 .098.021.121.153.106l.008.047a.49.49 0 0 1-.185.037c-.106 0-.124-.045-.135-.153h-.008c-.08.09-.18.156-.299.156-.164.003-.238-.098-.238-.206zm.537-.019v-.26c-.286.062-.352.104-.352.234 0 .084.045.148.149.148.082 0 .16-.061.203-.122zM30.58 2.876h.058c.09.148.182.243.299.243.106 0 .164-.074.164-.15 0-.093-.056-.133-.236-.188-.2-.058-.272-.13-.272-.254 0-.172.122-.291.32-.291.064 0 .146.024.188.05l.034-.05h.045v.27h-.058c-.063-.122-.14-.21-.235-.21-.096 0-.16.061-.16.149 0 .082.07.121.228.17.188.052.27.12.27.258 0 .167-.106.307-.307.307a.53.53 0 0 1-.23-.063l-.058.063h-.045v-.304Zm-.844.225c.116-.003.145-.021.145-.069v-.616c0-.059-.029-.096-.145-.098v-.061l.307-.008v.156c.068-.087.161-.161.264-.161.1 0 .148.068.148.137 0 .064-.042.114-.103.114-.058 0-.108-.034-.108-.103l.002-.035c-.09-.005-.158.059-.198.114v.561c0 .048.034.066.167.069v.06h-.48zm-.593 0c.116-.003.146-.021.146-.069v-.619c0-.06-.03-.095-.143-.098v-.06l.31-.009v.786c0 .048.028.066.145.069v.06h-.458zm.111-1.196c0-.069.045-.122.114-.122s.114.048.114.117c0 .068-.045.119-.114.119-.069.002-.114-.043-.114-.114zm-1.09 1.061c0-.08.037-.161.122-.206.15-.085.386-.117.418-.14V2.56c0-.198-.056-.26-.185-.26-.064 0-.101.02-.135.054a.228.228 0 0 1 .023.092c0 .061-.037.109-.105.109-.064 0-.1-.05-.1-.109 0-.113.153-.206.343-.206.206 0 .323.093.323.283v.455c0 .098.021.122.153.106l.008.048a.49.49 0 0 1-.185.037c-.106 0-.122-.045-.135-.154h-.008c-.08.09-.18.156-.296.156-.167.003-.241-.098-.241-.206zm.54-.019v-.259c-.286.061-.352.103-.352.233 0 .085.045.148.148.148.08 0 .159-.06.204-.122zm-1.207.154c.117-.003.148-.021.148-.069v-.688h-.169V2.29l.17-.037v-.037c0-.172.042-.28.116-.352a.306.306 0 0 1 .217-.096c.148 0 .22.074.22.149 0 .06-.038.103-.096.103-.053 0-.108-.035-.108-.125 0-.015.002-.034.005-.053a.123.123 0 0 0-.05-.01.11.11 0 0 0-.085.034c-.034.035-.055.1-.055.257v.138h.25v.082h-.25v.693c0 .047.042.063.198.069v.06h-.513v-.063zm-.69 0c.116-.003.145-.021.145-.069v-.688h-.17V2.29l.17-.037v-.037c0-.172.045-.28.117-.352a.308.308 0 0 1 .22-.096c.147 0 .219.074.219.149 0 .06-.037.103-.095.103-.053 0-.106-.035-.106-.125 0-.015.002-.034.005-.053a.123.123 0 0 0-.05-.01.11.11 0 0 0-.085.034c-.034.035-.055.1-.055.257v.138h.25v.082h-.25v.693c0 .047.042.063.198.069v.06h-.513zm-.606-.429h-.445l-.076.196c-.074.188-.064.212.108.238v.058h-.431v-.058c.135-.026.18-.106.246-.275l.4-.992h.09l.402 1.106c.034.1.076.143.222.161v.058h-.585v-.058c.172-.01.204-.047.167-.153zm-.027-.071-.18-.527h-.007l-.204.527zm-1.958.116c0-.275.191-.481.44-.481.209 0 .315.113.315.214 0 .064-.04.114-.101.114-.066 0-.106-.043-.106-.1 0-.054.035-.093.064-.11a.251.251 0 0 0-.17-.057c-.148 0-.267.124-.267.375 0 .236.12.395.31.395.1 0 .19-.059.256-.135l.04.037c-.082.121-.185.211-.362.211-.26 0-.419-.2-.419-.463zm-.547.384c.116-.003.145-.021.145-.069v-.619c0-.06-.029-.095-.143-.098v-.06l.31-.009v.786c0 .048.03.066.146.069v.06h-.458zm.11-1.196c0-.069.046-.122.115-.122.068 0 .113.048.113.117 0 .068-.045.119-.113.119-.07.002-.114-.043-.114-.114Zm-1.237 1.196c.1-.003.116-.021.116-.069V2.59c0-.177-.071-.225-.19-.225-.09 0-.149.04-.204.082v.585c0 .048.013.066.114.069v.06h-.426v-.06c.116-.003.145-.021.145-.069v-.616c0-.059-.029-.096-.145-.098v-.061l.307-.008v.138c.105-.075.211-.143.34-.143.104 0 .18.06.21.169.116-.103.235-.17.362-.17.138 0 .217.099.217.276v.513c0 .048.03.066.146.069v.06h-.426v-.06c.1-.003.116-.021.116-.069V2.59c0-.177-.063-.225-.182-.225-.07 0-.135.035-.217.1.002.027.005.046.005.064v.503c0 .048.019.066.132.069v.06h-.415v-.06zm-1.596-.392c0-.275.172-.473.445-.473.28 0 .442.19.442.465 0 .278-.172.477-.442.477-.283 0-.445-.19-.445-.469zm.704-.002c0-.278-.108-.41-.267-.41-.156 0-.252.132-.252.41 0 .277.109.41.268.41.156 0 .251-.133.251-.41zm-1.828.394c.116-.003.145-.021.145-.069v-.616c0-.059-.029-.096-.145-.098v-.061l.307-.008v.138c.105-.075.227-.143.36-.143.137 0 .224.098.224.275v.513c0 .048.03.066.146.069v.06h-.44v-.06c.101-.003.128-.021.128-.069V2.59c0-.177-.07-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .048.026.066.124.069v.06h-.436zm-1.003-.392c0-.275.172-.473.444-.473.28 0 .442.19.442.465 0 .278-.172.477-.442.477-.283 0-.444-.19-.444-.469zm.704-.002c0-.278-.109-.41-.267-.41-.157 0-.252.132-.252.41 0 .277.109.41.267.41.157 0 .252-.133.252-.41zm-1.604.01c0-.275.19-.481.44-.481.209 0 .314.113.314.214 0 .064-.04.114-.1.114-.066 0-.106-.043-.106-.1 0-.054.034-.093.064-.11a.251.251 0 0 0-.17-.057c-.148 0-.267.124-.267.375 0 .236.12.395.31.395.1 0 .19-.059.256-.135l.04.037c-.082.121-.185.211-.363.211-.259 0-.418-.2-.418-.463zm-1.299.381c.167-.005.207-.024.207-.084V2.006c0-.061-.04-.08-.207-.085v-.064h1.061l.006.365-.061.003c-.07-.222-.106-.294-.328-.294h-.283v.519h.116c.148 0 .204-.013.254-.22h.053v.516h-.053c-.05-.206-.106-.22-.254-.22h-.116v.564h.283c.262 0 .325-.103.394-.333l.06.003-.01.407h-1.124v-.069zm-1.08.003c.117-.003.149-.021.149-.069v-.688h-.17V2.29l.17-.037v-.037c0-.172.045-.28.116-.352a.308.308 0 0 1 .22-.096c.148 0 .22.074.22.149 0 .06-.037.103-.096.103-.053 0-.106-.035-.106-.125 0-.015.003-.034.006-.053a.123.123 0 0 0-.05-.01.11.11 0 0 0-.085.034c-.035.035-.056.1-.056.257v.138h.249v.082h-.251v.693c0 .047.042.063.198.069v.06h-.513zm-.997-.392c0-.275.172-.473.445-.473.28 0 .442.19.442.465 0 .278-.172.477-.442.477-.283 0-.445-.19-.445-.469zm.701-.002c0-.278-.108-.41-.267-.41-.156 0-.251.132-.251.41 0 .277.108.41.267.41.156 0 .251-.133.251-.41zm-1.918-.273c-.04-.09-.063-.116-.148-.124v-.058h.45v.058c-.125.005-.156.042-.13.1l.23.543.188-.458c.05-.119.04-.164-.098-.188V2.25h.365v.058c-.06.008-.119.048-.16.148l-.334.791c-.1.246-.204.315-.315.315-.106 0-.164-.06-.164-.135 0-.063.037-.119.106-.119.058 0 .105.05.105.109a.15.15 0 0 1-.01.058c.066 0 .127-.066.222-.294l.01-.024zm-.947.667c.116-.003.146-.021.146-.069v-.616c0-.059-.03-.096-.146-.098v-.061l.307-.008v.156c.069-.087.161-.161.265-.161.1 0 .148.068.148.137 0 .064-.043.114-.104.114-.058 0-.108-.034-.108-.103 0-.01.003-.021.003-.035-.09-.005-.16.059-.199.114v.561c0 .048.035.066.167.069v.06h-.479zm-.595-.17v-.587h-.17V2.29l.172-.035V2l.162-.071v.33h.288v.085h-.288v.57c0 .108.04.16.124.16.056 0 .1-.042.146-.108l.045.032c-.074.132-.14.185-.268.185-.132-.005-.211-.085-.211-.251zm-.934-.055h.058c.09.148.182.243.299.243.108 0 .164-.074.164-.15 0-.093-.056-.133-.236-.188-.2-.058-.272-.13-.272-.254 0-.172.122-.291.32-.291.064 0 .146.024.188.05l.034-.05h.045v.27h-.058c-.063-.122-.14-.21-.235-.21-.096 0-.16.061-.16.149 0 .082.07.121.228.17.188.052.27.12.27.258 0 .167-.106.307-.307.307a.53.53 0 0 1-.23-.063l-.058.063h-.045v-.304Zm-.606.225c.116-.003.145-.021.145-.069v-.619c0-.06-.029-.095-.143-.098v-.06l.31-.009v.786c0 .048.026.066.146.069v.06h-.458zm.11-1.196c0-.069.046-.122.115-.122s.113.048.113.117c0 .068-.044.119-.113.119-.066.002-.114-.043-.114-.114zM9.073 3.101c.116-.003.145-.021.145-.069v-.616c0-.059-.029-.096-.145-.098v-.061l.307-.008v.138c.105-.075.227-.143.36-.143.137 0 .224.098.224.275v.513c0 .048.03.066.146.069v.06h-.44v-.06c.101-.003.128-.021.128-.069V2.59c0-.177-.07-.225-.188-.225a.38.38 0 0 0-.225.082v.585c0 .048.026.066.124.069v.06h-.436zm-.593 0c.116-.003.146-.021.146-.069v-.619c0-.06-.03-.095-.143-.098v-.06l.31-.009v.786c0 .048.026.066.145.069v.06h-.458zm.111-1.196c0-.069.045-.122.114-.122s.114.048.114.117c0 .068-.045.119-.114.119-.069.002-.114-.043-.114-.114zM6.648 3.106c.177-.029.21-.074.21-.256v-.815c0-.074-.043-.109-.21-.114v-.064h.455l.379 1.04h.01l.37-1.04h.453v.064c-.167.005-.206.024-.206.085v1.008c0 .06.04.079.206.084v.064h-.566v-.064c.153-.005.172-.02.172-.084V1.979h-.01l-.437 1.185h-.082L6.944 1.98h-.01v.87c0 .183.021.223.196.257v.058h-.482z" + /> + </svg> +); + +export const LogoKehaFi = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44.278 15.648"> + <path fill="#2e2e2e" d="M0 1.53C0 .686.685 0 1.53 0h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" /> + <path fill="#7e7e7e" d="M0 6.974c0-.846.685-1.531 1.53-1.531h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" /> + <path fill="#848484" d="M0 12.417c0-.846.685-1.531 1.53-1.531h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" /> + <path + fill="#2e2e2e" + d="m9.524 8.877-.026-.645 2.1-2.165h.604l-1.625 1.715-.296.328Zm-.466.894V6.067h.53v3.704zm2.625 0-1.519-1.767.355-.392 1.783 2.16zm1.662-2.106h1.905v.45h-1.905zm.047 1.646h2.16v.46h-2.689V6.067h2.614v.46h-2.085Zm5.673-3.244h.53v3.704h-.53Zm-2.127 3.704h-.53V6.067h.53zm2.175-1.65h-2.228v-.46h2.228zm1.031 1.65 1.678-3.704h.524l1.682 3.704h-.555l-1.498-3.407h.212L20.689 9.77zm.715-.926.143-.423h2.085l.153.423Zm3.373-.306v-.44h1.423v.44zm2.62.555.01-.65 1.614-1.477h.613l-1.238 1.217-.275.233zm-.414.677V5.845h.508v3.926zm2.143 0-1.1-1.365.328-.407 1.397 1.772zm2.251.032q-.45 0-.794-.185-.338-.185-.529-.508-.185-.323-.185-.74 0-.419.18-.742.185-.322.503-.502.322-.186.724-.186.408 0 .72.18t.487.508q.18.323.18.757 0 .032-.005.074 0 .042-.006.08h-2.386v-.366h2.122l-.207.127q.006-.27-.11-.481-.117-.212-.324-.328-.2-.122-.47-.122-.265 0-.471.122-.207.116-.323.333-.117.212-.117.487v.085q0 .28.127.502.133.217.365.339.233.122.535.122.249 0 .45-.085.206-.085.36-.254l.28.328q-.19.222-.476.339-.28.116-.63.116zm2.794 0q-.35 0-.667-.095-.312-.095-.492-.233l.212-.402q.18.122.444.206.265.085.54.085.355 0 .508-.1.159-.101.159-.281 0-.132-.095-.206-.096-.074-.254-.111-.154-.038-.344-.064-.19-.032-.381-.074-.19-.048-.35-.127-.158-.085-.254-.228-.095-.148-.095-.391 0-.254.143-.445.143-.19.402-.29.265-.107.625-.107.275 0 .555.07.286.063.466.184l-.217.403q-.19-.127-.397-.175-.206-.048-.413-.048-.333 0-.497.111-.164.106-.164.276 0 .143.095.222.1.074.254.116.159.043.35.074.19.027.38.074.19.043.344.122.159.08.254.222.1.143.1.381 0 .254-.147.44-.149.185-.418.29-.27.101-.646.101zm2.26-.709.01-.65 1.614-1.477h.614l-1.238 1.217-.275.233Zm-.413.677V5.845h.508v3.926zm2.143 0-1.1-1.365.327-.407L38.24 9.77zm2.244.032q-.36 0-.635-.132-.27-.132-.424-.402-.148-.275-.148-.688V6.967h.508v1.556q0 .412.196.619.201.206.56.206.265 0 .461-.106.196-.11.302-.317.106-.212.106-.508v-1.45h.508V9.77h-.482v-.756l.08.2q-.138.281-.413.435-.275.153-.62.153zm3.206 0q-.349 0-.666-.095-.313-.095-.493-.233l.212-.402q.18.122.445.206.264.085.54.085.354 0 .507-.1.16-.101.16-.281 0-.132-.096-.206-.095-.074-.254-.111-.154-.038-.344-.064-.19-.032-.381-.074-.19-.048-.35-.127-.158-.085-.253-.228-.096-.148-.096-.391 0-.254.143-.445.143-.19.402-.29.265-.107.625-.107.275 0 .556.07.285.063.465.184l-.217.403q-.19-.127-.397-.175-.206-.048-.412-.048-.334 0-.498.111-.164.106-.164.276 0 .143.095.222.101.074.254.116.16.043.35.074.19.027.38.074.191.043.345.122.158.08.254.222.1.143.1.381 0 .254-.148.44-.148.185-.418.29-.27.101-.646.101z" + /> + </svg> +); + +export const LogoKehaSv = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 37.544 15.648"> + <path fill="#2e2e2e" d="M0 1.53C0 .686.685 0 1.53 0h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" /> + <path fill="#7e7e7e" d="M0 6.974c0-.846.685-1.531 1.53-1.531h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" /> + <path fill="#848484" d="M0 12.417c0-.846.685-1.531 1.53-1.531h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" /> + <path + fill="#2e2e2e" + d="M10.593 9.814q-.73 0-1.148-.418-.418-.418-.418-1.223V6.067h.529v2.085q0 .62.27.905.275.286.772.286.503 0 .773-.286.275-.286.275-.905V6.067h.513v2.106q0 .805-.418 1.223-.413.418-1.148.418zm3.127-1.995h1.91v.455h-1.91zm.053 1.952h-.529V6.067h2.614v.46h-2.085ZM16.35 8.54v-.44h1.424v.44zm3.482 1.264q-.428 0-.767-.185-.333-.185-.524-.508-.19-.323-.19-.74 0-.419.19-.742.19-.322.524-.502.339-.186.767-.186.381 0 .678.154.301.148.465.444l-.386.25q-.138-.207-.339-.303-.196-.1-.423-.1-.275 0-.492.122-.217.121-.344.344-.127.217-.127.518 0 .302.127.524.127.222.344.344.217.122.492.122.227 0 .423-.096.201-.1.339-.306l.386.243q-.164.291-.465.45-.297.153-.678.153zm3.004 0q-.45 0-.794-.185-.338-.185-.529-.508-.185-.323-.185-.74 0-.419.18-.742.185-.322.503-.502.323-.186.725-.186.407 0 .72.18.312.18.486.508.18.323.18.757 0 .032-.005.074 0 .042-.005.08h-2.387v-.366h2.122l-.206.127q.005-.27-.112-.481-.116-.212-.322-.328-.201-.122-.471-.122-.265 0-.471.122-.207.116-.323.333-.116.212-.116.487v.085q0 .28.127.502.132.217.365.339.232.122.534.122.249 0 .45-.085.206-.085.36-.254l.28.328q-.19.222-.476.339-.28.116-.63.116zm3.487-2.863q.344 0 .604.133.264.132.412.402.149.27.149.683V9.77h-.508V8.216q0-.408-.201-.614-.196-.206-.556-.206-.27 0-.471.105-.201.106-.312.313-.106.206-.106.513V9.77h-.508V6.967h.487v.757l-.08-.201q.138-.276.424-.43.285-.153.666-.153zm3.07 2.863q-.424 0-.657-.227-.232-.228-.232-.651V6.353h.508v2.55q0 .228.11.35.117.122.329.122.238 0 .397-.133l.158.365q-.116.101-.28.149-.159.047-.333.047zm-1.366-2.418v-.418h1.789v.418zm2.593 2.386V6.967h.487v.762l-.048-.19q.117-.292.392-.445.275-.154.677-.154v.493q-.031-.006-.063-.006h-.053q-.407 0-.646.244-.238.243-.238.704v1.397zm3.357.032q-.45 0-.794-.185-.338-.185-.529-.508-.185-.323-.185-.74 0-.419.18-.742.185-.322.503-.502.322-.186.725-.186.407 0 .72.18.312.18.486.508.18.323.18.757 0 .032-.005.074 0 .042-.006.08h-2.386v-.366h2.122l-.206.127q.005-.27-.112-.481-.116-.212-.322-.328-.201-.122-.471-.122-.265 0-.471.122-.207.116-.323.333-.117.212-.117.487v.085q0 .28.127.502.133.217.366.339.232.122.534.122.249 0 .45-.085.206-.085.36-.254l.28.328q-.19.222-.476.339-.28.116-.63.116zm2.953 0q-.423 0-.656-.227-.233-.228-.233-.651V6.353h.508v2.55q0 .228.111.35.116.122.328.122.238 0 .397-.133l.159.365q-.117.101-.28.149-.16.047-.334.047zm-1.365-2.418v-.418h1.788v.418z" + /> + </svg> +); + +export const LogoKehaEn = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 43.315 15.648"> + <path d="M0 1.53C0 .686.685 0 1.53 0h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" fill="#2e2e2e" /> + <path d="M0 6.974c0-.846.685-1.531 1.53-1.531h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" fill="#7e7e7e" /> + <path d="M0 12.417c0-.846.685-1.531 1.53-1.531h3.403v3.232a1.53 1.53 0 0 1-1.531 1.53H0z" fill="#848484" /> + <path + fill="#2e2e2e" + d="m9.524 8.877-.026-.645 2.1-2.165h.604l-1.625 1.715-.296.328Zm-.466.894V6.067h.53v3.704zm2.625 0-1.519-1.767.355-.392 1.783 2.16zm1.662-2.106h1.905v.45h-1.905zm.047 1.646h2.16v.46h-2.689V6.067h2.614v.46h-2.085Zm5.673-3.244h.53v3.704h-.53Zm-2.127 3.704h-.53V6.067h.53zm2.175-1.65h-2.228v-.46h2.228zm1.031 1.65 1.678-3.704h.524l1.682 3.704h-.555l-1.498-3.407h.212L20.689 9.77zm.715-.926.143-.423h2.085l.153.423zm6.8.969q-.424 0-.784-.138-.354-.143-.619-.397-.259-.259-.407-.603-.148-.344-.148-.757 0-.412.148-.756.148-.344.413-.598.264-.26.619-.397.36-.143.783-.143.428 0 .788.148.365.143.62.429l-.345.333q-.211-.222-.476-.328-.264-.111-.566-.111-.312 0-.582.106-.265.106-.46.296-.196.19-.307.455-.106.26-.106.566 0 .307.106.572.11.26.307.45.195.19.46.296.27.106.582.106.302 0 .566-.106.265-.111.476-.339l.344.334q-.254.285-.619.434-.36.148-.793.148zm3.23-.01q-.45 0-.794-.186-.339-.185-.53-.508-.185-.323-.185-.74 0-.419.18-.742.185-.322.503-.502.323-.186.725-.186.407 0 .72.18.312.18.486.508.18.323.18.757 0 .032-.005.074 0 .042-.005.08h-2.387v-.366H31.9l-.206.127q.005-.27-.111-.481-.117-.212-.323-.328-.201-.122-.471-.122-.265 0-.471.122-.206.116-.323.333-.116.212-.116.487v.085q0 .28.127.502.132.217.365.339.233.122.534.122.25 0 .45-.085.207-.085.36-.254l.28.328q-.19.222-.476.339-.28.116-.63.116Zm3.487-2.864q.344 0 .603.133.265.132.413.402.148.27.148.683V9.77h-.508V8.216q0-.408-.201-.614-.196-.206-.556-.206-.27 0-.47.105-.202.106-.313.313-.106.206-.106.513V9.77h-.508V6.967h.487v.757l-.08-.201q.138-.276.424-.43.286-.153.667-.153zm3.069 2.863q-.423 0-.656-.227-.233-.228-.233-.651V6.353h.508v2.55q0 .228.111.35.116.122.328.122.238 0 .397-.133l.159.365q-.117.101-.28.149-.16.047-.334.047ZM36.08 7.385v-.418h1.788v.418zm2.593 2.386V6.967h.486v.762l-.047-.19q.116-.292.391-.445.275-.154.678-.154v.493q-.032-.006-.064-.006h-.053q-.407 0-.645.244-.238.243-.238.704v1.397zm3.356.032q-.45 0-.793-.185-.339-.185-.53-.508-.185-.323-.185-.74 0-.419.18-.742.185-.322.503-.502.323-.186.725-.186.407 0 .72.18.312.18.486.508.18.323.18.757 0 .032-.005.074 0 .042-.005.08h-2.387v-.366h2.122l-.206.127q.005-.27-.111-.481-.117-.212-.323-.328-.201-.122-.471-.122-.265 0-.471.122-.206.116-.323.333-.116.212-.116.487v.085q0 .28.127.502.132.217.365.339.233.122.534.122.249 0 .45-.085.207-.085.36-.254l.28.328q-.19.222-.476.339-.28.116-.63.116z" + /> + </svg> +); + +export const LogoOphFiSv = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 321.294 90.723"> + <path + fill="#231f20" + d="M123.637 60.643v-7.572h-1.207v7.477c0 1.714-1.095 2.842-2.746 2.842s-2.73-1.128-2.73-2.842V53.07h-1.207v7.572c0 2.254 1.65 3.826 3.937 3.826 2.286 0 3.953-1.572 3.953-3.826m10.89-6.493v-1.08h-7.747v1.08h3.27v10.224h1.207V54.15zm11.065 7.096c0-1.349-.762-2.286-1.842-2.682.953-.35 1.667-1.286 1.667-2.477 0-1.89-1.365-3.016-3.334-3.016h-4.254v11.303h4.397c2 0 3.366-1.08 3.366-3.128m-1.382-5.143c0 1.35-.968 1.968-2.222 1.968h-2.953v-3.92h2.953c1.254 0 2.222.603 2.222 1.952m.175 5.112c0 1.27-.873 2.08-2.27 2.08h-3.08V59.15h3.08c1.397 0 2.27.794 2.27 2.064m6.445-8.144h-1.206v11.303h1.206zm11.446 11.303v-1.08h-5.778V53.071h-1.207v11.303zm11.144-5.779c0-1.571.064-3.302-1.11-4.476-.683-.683-1.684-1.048-2.858-1.048h-3.874v11.303h3.874c1.174 0 2.175-.365 2.857-1.048 1.175-1.175 1.111-3.16 1.111-4.73m-1.206 0c0 1.38.032 3.063-.746 3.873-.588.603-1.35.825-2.223.825h-2.46V54.15h2.46c.873 0 1.635.223 2.223.826.778.81.746 2.238.746 3.62m13.589 5.778V53.07h-1.207v9.033l-6-9.033h-1.143v11.303h1.206v-9.065l6.001 9.065zm5.667-11.303h-1.206v11.303h1.206zm12.811 11.303V53.07h-1.206v9.033l-6.001-9.033h-1.143v11.303h1.206v-9.065l6.001 9.065zm11.97-4.128v-1.794h-3.985v1.064h2.778v.857c0 .873-.174 1.493-.635 2.048-.524.635-1.317.969-2.143.969-.746 0-1.46-.286-1.952-.794-.715-.73-.794-1.508-.794-3.874 0-2.365.08-3.127.794-3.857a2.735 2.735 0 0 1 1.952-.81c1.413 0 2.43.873 2.747 2.302h1.206c-.333-1.984-1.794-3.381-3.953-3.381-1.127 0-2.127.412-2.889 1.174-1.064 1.064-1.064 2.175-1.064 4.572 0 2.397 0 3.509 1.064 4.572.762.762 1.778 1.175 2.89 1.175 1.158 0 2.222-.444 3.015-1.302.699-.746.969-1.619.969-2.92m10.81 1.015c0-.936-.333-1.714-.952-2.238-.476-.413-1-.635-2.064-.794l-1.238-.19c-.587-.096-1.175-.318-1.524-.62-.349-.301-.508-.746-.508-1.301 0-1.254.873-2.096 2.381-2.096 1.191 0 1.937.334 2.636.969l.778-.778c-.969-.873-1.921-1.238-3.366-1.238-2.238 0-3.62 1.27-3.62 3.19 0 .905.286 1.604.858 2.112.492.428 1.19.714 2.08.857l1.317.206c.826.127 1.111.223 1.476.54.366.318.54.826.54 1.413 0 1.318-1.016 2.096-2.667 2.096-1.27 0-2.143-.302-3.08-1.239l-.825.826c1.064 1.063 2.175 1.492 3.873 1.492 2.35 0 3.906-1.222 3.906-3.207m10.27 0c0-.936-.334-1.714-.953-2.238-.477-.413-1-.635-2.064-.794l-1.238-.19c-.588-.096-1.175-.318-1.524-.62-.35-.301-.508-.746-.508-1.301 0-1.254.873-2.096 2.38-2.096 1.191 0 1.938.334 2.636.969l.778-.778c-.968-.873-1.92-1.238-3.366-1.238-2.238 0-3.619 1.27-3.619 3.19 0 .905.286 1.604.857 2.112.492.428 1.19.714 2.08.857l1.317.206c.826.127 1.112.223 1.477.54.365.318.54.826.54 1.413 0 1.318-1.016 2.096-2.667 2.096-1.27 0-2.144-.302-3.08-1.239l-.826.826c1.064 1.063 2.175 1.492 3.874 1.492 2.35 0 3.905-1.222 3.905-3.207m9.51-7.112v-1.08h-7.748v1.08h3.27v10.224h1.207V54.15zm9.937-1.08h-1.302l-2.635 5.414-2.667-5.413h-1.302l3.365 6.636v4.667h1.207v-4.667zm10.858 11.304-2.683-5.128c1.46-.301 2.46-1.381 2.46-3.032 0-1.953-1.38-3.143-3.349-3.143h-4.334v11.303h1.207v-5.017h2.714l2.572 5.017zm-1.429-8.144c0 1.381-.936 2.064-2.254 2.064h-3.016V54.15h3.016c1.318 0 2.254.699 2.254 2.08m12.144 8.144v-1.08h-5.81v-4.08h4.953v-1.08h-4.953V54.15h5.81v-1.08h-7.016v11.304zm10.684 0v-1.08h-5.778V53.071h-1.207v11.303zm9.478-3.112c0-.936-.334-1.714-.953-2.238-.476-.413-1-.635-2.064-.794l-1.238-.19c-.587-.096-1.175-.318-1.524-.62-.35-.301-.508-.746-.508-1.301 0-1.254.873-2.096 2.381-2.096 1.191 0 1.937.334 2.636.969l.778-.778c-.969-.873-1.921-1.238-3.366-1.238-2.238 0-3.62 1.27-3.62 3.19 0 .905.286 1.604.858 2.112.492.428 1.19.714 2.08.857l1.317.206c.826.127 1.111.223 1.476.54.366.318.54.826.54 1.413 0 1.318-1.016 2.096-2.667 2.096-1.27 0-2.143-.302-3.08-1.239l-.825.826c1.064 1.063 2.175 1.492 3.873 1.492 2.35 0 3.906-1.222 3.906-3.207m10.73 3.112v-1.08h-5.81v-4.08h4.953v-1.08h-4.952V54.15h5.81v-1.08h-7.017v11.304zm12.051 0V53.07h-1.207v9.033l-6-9.033h-1.143v11.303h1.206v-9.065l6.001 9.065h1.143M123.383 35.439c0-2.397 0-3.508-1.064-4.572-.762-.762-1.762-1.175-2.89-1.175-1.126 0-2.126.413-2.888 1.175-1.064 1.064-1.064 2.175-1.064 4.572 0 2.397 0 3.508 1.064 4.572.762.762 1.762 1.175 2.889 1.175 1.127 0 2.127-.413 2.89-1.175 1.063-1.064 1.063-2.175 1.063-4.572m-1.207 0c0 2.365-.08 3.127-.793 3.858a2.735 2.735 0 0 1-1.953.81c-.746 0-1.46-.302-1.953-.81-.714-.73-.793-1.493-.793-3.858s.079-3.127.793-3.858a2.735 2.735 0 0 1 1.953-.81c.746 0 1.46.302 1.953.81.714.73.793 1.493.793 3.858m12.938-2.334c0-2.032-1.428-3.318-3.492-3.318h-4.207V41.09h1.207v-4.65h3c2.064 0 3.492-1.303 3.492-3.335m-1.206 0c0 1.493-.984 2.255-2.397 2.255h-2.89v-4.493h2.89c1.413 0 2.397.746 2.397 2.238m11.715 7.985v-1.08h-5.81v-4.079h4.953v-1.08h-4.953v-3.984h5.81v-1.08h-7.016V41.09zm10.287-10.223v-1.08h-7.747v1.08h3.27V41.09h1.207V30.867zm11.033 6.493v-7.573h-1.206v7.478c0 1.714-1.096 2.841-2.747 2.841-1.65 0-2.73-1.127-2.73-2.841v-7.478h-1.207v7.573c0 2.254 1.651 3.826 3.937 3.826 2.286 0 3.953-1.572 3.953-3.826m11.113.619c0-.937-.334-1.715-.953-2.238-.476-.413-1-.635-2.064-.794l-1.238-.19c-.587-.096-1.175-.318-1.524-.62-.35-.301-.508-.746-.508-1.302 0-1.254.873-2.095 2.381-2.095 1.191 0 1.937.333 2.636.968l.777-.778c-.968-.873-1.92-1.238-3.365-1.238-2.238 0-3.62 1.27-3.62 3.191 0 .905.286 1.603.858 2.111.492.43 1.19.715 2.08.858l1.317.206c.825.127 1.111.222 1.476.54.365.317.54.825.54 1.413 0 1.317-1.016 2.095-2.667 2.095-1.27 0-2.143-.301-3.08-1.238l-.825.825c1.063 1.064 2.175 1.493 3.873 1.493 2.35 0 3.906-1.223 3.906-3.207m11.493 3.111V29.787h-1.206v5.065h-5.366v-5.065h-1.207V41.09h1.207v-5.159h5.366v5.16zm12.335 0-4.143-11.303h-1.016l-4.16 11.303h1.286l.905-2.555h4.937l.905 2.555zm-2.54-3.603h-4.223l2.127-5.97zm12.541 3.603v-1.08h-5.778V29.788H204.9V41.09zm10.287 0v-1.08h-5.778V29.788h-1.207V41.09zm4.509-11.303h-1.207V41.09h1.207zm11.049 1.08v-1.08h-7.747v1.08h3.27V41.09h1.206V30.867zm11.033 6.493v-7.573h-1.207v7.478c0 1.714-1.095 2.841-2.746 2.841s-2.73-1.127-2.73-2.841v-7.478h-1.207v7.573c0 2.254 1.65 3.826 3.937 3.826 2.286 0 3.953-1.572 3.953-3.826m11.112.619c0-.937-.333-1.715-.952-2.238-.477-.413-1-.635-2.064-.794l-1.238-.19c-.588-.096-1.175-.318-1.524-.62-.35-.301-.508-.746-.508-1.302 0-1.254.873-2.095 2.38-2.095 1.191 0 1.938.333 2.636.968l.778-.778c-.968-.873-1.921-1.238-3.366-1.238-2.238 0-3.62 1.27-3.62 3.191 0 .905.287 1.603.858 2.111.492.43 1.19.715 2.08.858l1.317.206c.826.127 1.112.222 1.477.54.365.317.54.825.54 1.413 0 1.317-1.016 2.095-2.667 2.095-1.27 0-2.144-.301-3.08-1.238l-.826.825c1.064 1.064 2.175 1.493 3.874 1.493 2.35 0 3.905-1.223 3.905-3.207" + /> + <path + fill="#9c9a9b" + d="M92.782 44.915a48.543 48.543 0 0 0-1.205-10.32C88.713 22.032 77.671 7.221 71.456 8.191c-1.307.204-3.594.633-6.702 4.302a96.135 96.135 0 0 1 3.414 4.555c2.275-22.663 16.117 5.588 19.777 29.623.648.533 1.242.771 1.98.925 2.422.505 2.81-2.219 2.857-2.682M64.994 24.12c-2.856-.82-5.828.846-8.819 4.038a166.57 166.57 0 0 0-3.28 8.774c-4.769 13.85-10.71 39.498-19.39 36.341a10.763 10.763 0 0 1-2.16-1.077c-1.3 2.156-2.506 3.853-3.601 4.894a11.591 11.591 0 0 1-3.273 2.236c16.467 16.208 46.795 15.532 45.07-4.619-2.11-24.662-1.9-34.61-1.712-49.451a10.721 10.721 0 0 0-2.835-1.136m-38.651 1.99C33.466 11.764 44.194-.777 37.075.039c-3.793.435-7.75 1.66-11.61 3.578a41.025 41.025 0 0 1 5.067-2.07s-14.774 6.078-20.294 23.43c2.044-1.984 4.457-3.898 7.311-5.707 12.256-7.768-.217 7.75-2.953 27.395 2.46-3.18 5.576-8.121 9.117-13.512.68-2.49 1.55-4.869 2.63-7.042" + /> + <path + fill="#231f20" + d="M58.545 6.381C37.556-6.4 10.841 65.436 8.84 47.374 3.682 12.564 30.531 1.545 30.531 1.545 13.276 7.253-.302 24.81.005 45.075c.31 20.373 11.682 32.055 15.78 34.082 5.189 2.566 9.722.13 11.959-2.068 8.605-8.181 24.149-56.732 37.25-52.97 14.66 3.511 12.719 34.435 13.426 40.36 1.41 11.813 4.716 10.403 9.32 1.724 3.087-5.818 5.094-12.523 5.05-21.36 0 0-.22 3.306-2.865 2.754-2.376-.494-3.263-1.853-9.24-11.202C74.427 26.61 64.86 10.227 58.544 6.38" + /> + </svg> +); + +export const LogoOphEn = (props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) => ( + <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1199.033 342.889"> + <path + fill="#9c9a9b" + d="M350.674 169.758c-.124-12.862-1.583-25.984-4.555-39.008-10.828-47.477-52.558-103.453-76.049-99.789-4.94.77-13.585 2.392-25.33 16.261 4.22 5.26 8.546 11.063 12.905 17.214 8.597-85.655 60.914 21.122 74.746 111.962 2.448 2.016 4.694 2.915 7.482 3.498 9.154 1.905 10.618-8.388 10.801-10.138m-105.027-78.6c-10.794-3.1-22.028 3.2-33.33 15.262-3.976 9.732-8.111 20.713-12.396 33.162-18.026 52.346-40.482 149.283-73.286 137.352a40.68 40.68 0 0 1-8.162-4.072c-4.914 8.151-9.476 14.563-13.614 18.496-3.073 3.02-7.304 6.147-12.372 8.452 62.238 61.26 176.866 58.706 170.348-17.456-7.977-93.21-7.182-130.813-6.472-186.902-3.292-1.88-6.834-3.364-10.716-4.294M99.563 98.682C126.487 44.457 167.033-2.94 140.125.142c-14.335 1.644-29.294 6.272-43.88 13.523 6.221-3.03 12.612-5.661 19.15-7.825 0 0-55.836 22.974-76.7 88.554 7.726-7.497 16.847-14.73 27.632-21.566 46.322-29.36-.818 29.292-11.162 103.541 9.3-12.021 21.074-30.696 34.458-51.07 2.57-9.413 5.86-18.402 9.94-26.617" + /> + <path + fill="#231f20" + d="M221.273 24.118c-79.328-48.312-180.3 223.2-187.86 154.932C13.918 47.49 115.394 5.841 115.394 5.841 50.178 27.414-1.142 93.768.019 170.36 1.19 247.36 44.17 291.513 59.663 299.177c19.608 9.697 36.743.488 45.195-7.816 32.524-30.923 91.272-214.42 140.788-200.204 55.41 13.272 48.07 130.148 50.745 152.544 5.331 44.647 17.826 39.316 35.226 6.516 11.666-21.992 19.25-47.33 19.084-80.733 0 0-.834 12.496-10.828 10.412-8.98-1.87-12.332-7.006-34.924-42.342-23.646-36.982-59.807-98.9-83.676-113.436M467.829 243.428l-15.66-42.72h-3.84l-15.72 42.72h4.86l3.421-9.66h18.659l3.42 9.66zm-9.6-13.62h-15.96l8.041-22.56zm48.778-1.98v-6.78h-15.06v4.02h10.5v3.24c0 3.3-.66 5.64-2.4 7.74-1.98 2.4-4.98 3.66-8.1 3.66-2.82 0-5.52-1.08-7.378-3-2.702-2.76-3-5.7-3-14.64 0-8.94.298-11.82 3-14.58 1.858-1.92 4.558-3.06 7.378-3.06 5.34 0 9.18 3.3 10.38 8.7h4.56c-1.26-7.5-6.778-12.78-14.94-12.78-4.26 0-8.04 1.56-10.92 4.44-4.02 4.02-4.02 8.22-4.02 17.28s0 13.26 4.02 17.28c2.88 2.88 6.72 4.44 10.92 4.44 4.38 0 8.4-1.68 11.4-4.92 2.64-2.82 3.66-6.12 3.66-11.04m41.64 15.6v-4.08h-21.96v-15.42h18.72v-4.08h-18.72v-15.06h21.96v-4.08H522.13v42.72zm45.54 0v-42.72h-4.56v34.14l-22.678-34.14h-4.32v42.72h4.558v-34.26l22.682 34.26zm44.4-12.36h-4.561c-1.14 5.22-4.92 8.64-10.26 8.64-2.82 0-5.519-1.08-7.38-3-2.7-2.76-3-5.7-3-14.64 0-8.94.3-11.88 3-14.64 1.861-1.92 4.56-3 7.38-3 5.34 0 9 3.42 10.141 8.64h4.68c-1.441-8.04-7.141-12.72-14.821-12.72-4.2 0-8.04 1.56-10.92 4.44-4.019 4.02-4.019 8.22-4.019 17.28s0 13.26 4.019 17.28c2.88 2.88 6.72 4.44 10.92 4.44 7.62 0 13.44-4.68 14.821-12.72m38.16-30.36h-4.92l-9.961 20.46-10.08-20.46h-4.92l12.721 25.08v17.64h4.559v-17.64zm59.219 4.08v-4.08h-26.521v42.72h4.56v-18.84h18.72v-4.08h-18.72v-15.72zm39.836 17.28c0-9.06 0-13.26-4.02-17.28-2.879-2.88-6.66-4.44-10.92-4.44s-8.039 1.56-10.92 4.44c-4.02 4.02-4.02 8.22-4.02 17.28s0 13.26 4.02 17.28c2.881 2.88 6.66 4.44 10.92 4.44s8.041-1.56 10.92-4.44c4.02-4.02 4.02-8.22 4.02-17.28m-4.56 0c0 8.94-.3 11.82-3 14.58-1.86 1.92-4.56 3.06-7.38 3.06-2.82 0-5.52-1.14-7.379-3.06-2.701-2.76-3-5.64-3-14.58 0-8.94.299-11.82 3-14.58 1.859-1.92 4.559-3.06 7.379-3.06 2.82 0 5.52 1.14 7.38 3.06 2.7 2.76 3 5.64 3 14.58m49.08 21.36-10.14-19.38c5.52-1.14 9.301-5.22 9.301-11.46 0-7.38-5.221-11.88-12.661-11.88h-16.38v42.72h4.56v-18.96h10.26l9.721 18.96zm-5.4-30.78c0 5.22-3.54 7.8-8.519 7.8h-11.401v-15.66h11.401c4.979 0 8.519 2.64 8.519 7.86m66.839 30.78v-4.08H859.8v-15.42h18.72v-4.08H859.8v-15.06h21.96v-4.08h-26.52v42.72zm43.62-21.84c0-5.94.24-12.48-4.2-16.92-2.58-2.58-6.36-3.96-10.8-3.96h-14.64v42.72h14.64c4.44 0 8.22-1.38 10.8-3.96 4.44-4.44 4.2-11.94 4.2-17.88m-4.56 0c0 5.22.121 11.58-2.82 14.64-2.219 2.28-5.1 3.12-8.4 3.12h-9.3v-34.56h9.3c3.3 0 6.181.84 8.4 3.12 2.941 3.06 2.82 8.46 2.82 13.68m48.42 7.74v-28.62h-4.562v28.26c0 6.48-4.14 10.74-10.38 10.74-6.24 0-10.32-4.26-10.32-10.74v-28.26h-4.56v28.62c0 8.52 6.242 14.46 14.88 14.46 8.64 0 14.942-5.94 14.942-14.46m43.798 1.74h-4.56c-1.14 5.22-4.92 8.64-10.26 8.64-2.82 0-5.52-1.08-7.38-3-2.7-2.76-3-5.7-3-14.64 0-8.94.3-11.88 3-14.64 1.86-1.92 4.56-3 7.38-3 5.34 0 9 3.42 10.14 8.64h4.68c-1.44-8.04-7.14-12.72-14.82-12.72-4.2 0-8.04 1.56-10.92 4.44-4.02 4.02-4.02 8.22-4.02 17.28s0 13.26 4.02 17.28c2.88 2.88 6.72 4.44 10.92 4.44 7.62 0 13.442-4.68 14.82-12.72m44.34 12.36-15.66-42.72h-3.84l-15.718 42.72h4.858l3.42-9.66h18.66l3.42 9.66zm-9.6-13.62h-15.96l8.04-22.56zm42.296-25.02v-4.08h-29.28v4.08h12.36v38.64h4.56v-38.64zm17.04-4.08h-4.558v42.72h4.558zm45.12 21.36c0-9.06 0-13.26-4.02-17.28-2.88-2.88-6.658-4.44-10.92-4.44-4.26 0-8.04 1.56-10.92 4.44-4.02 4.02-4.02 8.22-4.02 17.28s0 13.26 4.02 17.28c2.88 2.88 6.66 4.44 10.92 4.44 4.262 0 8.04-1.56 10.92-4.44 4.02-4.02 4.02-8.22 4.02-17.28m-4.56 0c0 8.94-.3 11.82-3 14.58-1.86 1.92-4.56 3.06-7.38 3.06-2.818 0-5.52-1.14-7.38-3.06-2.7-2.76-3-5.64-3-14.58 0-8.94.3-11.82 3-14.58 1.86-1.92 4.562-3.06 7.38-3.06 2.82 0 5.52 1.14 7.38 3.06 2.7 2.76 3 5.64 3 14.58m51.358 21.36v-42.72h-4.56v34.14l-22.68-34.14h-4.32v42.72h4.56v-34.26l22.68 34.26h4.32M464.589 116.788v-4.08h-26.52v42.72h4.56v-18.84h18.721v-4.08h-18.721v-15.72zm17.338-4.08h-4.56v42.72h4.56zm48.42 42.72v-42.72h-4.558v34.14l-22.68-34.14h-4.322v42.72h4.56v-34.26l22.682 34.26zm48.42 0v-42.72h-4.558v34.14l-22.68-34.14h-4.32v42.72h4.558v-34.26l22.682 34.26zm21.42-42.72h-4.56v42.72h4.56zm42.602 30.96c0-3.54-1.26-6.48-3.602-8.46-1.8-1.56-3.78-2.4-7.8-3l-4.678-.72c-2.222-.36-4.442-1.2-5.76-2.34-1.322-1.14-1.92-2.82-1.92-4.92 0-4.74 3.298-7.92 9-7.92 4.5 0 7.318 1.26 9.958 3.66l2.94-2.94c-3.66-3.3-7.26-4.68-12.718-4.68-8.462 0-13.68 4.8-13.68 12.06 0 3.42 1.08 6.06 3.238 7.98 1.86 1.62 4.5 2.7 7.86 3.24l4.982.78c3.118.48 4.198.84 5.578 2.04 1.38 1.2 2.04 3.12 2.04 5.34 0 4.98-3.84 7.92-10.08 7.92-4.8 0-8.1-1.14-11.64-4.68l-3.12 3.12c4.02 4.02 8.222 5.64 14.642 5.64 8.878 0 14.76-4.62 14.76-12.12m43.438 11.76v-42.72h-4.56v19.14h-20.28v-19.14h-4.56v42.72h4.56v-19.5h20.28v19.5zm69.36 0v-42.72h-4.561v34.14l-22.68-34.14h-4.32v42.72h4.561v-34.26l22.679 34.26zm46.619 0-15.66-42.72h-3.84l-15.72 42.72h4.86l3.42-9.66h18.66l3.42 9.66zm-9.6-13.62h-15.96l8.04-22.56zm42.297-25.02v-4.08h-29.281v4.08h12.361v38.64h4.559v-38.64zm17.039-4.08h-4.561v42.72h4.561zm45.119 21.36c0-9.06 0-13.26-4.02-17.28-2.88-2.88-6.66-4.44-10.92-4.44-4.259 0-8.04 1.56-10.919 4.44-4.021 4.02-4.021 8.22-4.021 17.28s0 13.26 4.021 17.28c2.879 2.88 6.66 4.44 10.919 4.44 4.26 0 8.04-1.56 10.92-4.44 4.02-4.02 4.02-8.22 4.02-17.28m-4.56 0c0 8.94-.299 11.82-3 14.58-1.86 1.92-4.559 3.06-7.38 3.06-2.82 0-5.52-1.14-7.38-3.06-2.7-2.76-3-5.64-3-14.58 0-8.94.3-11.82 3-14.58 1.86-1.92 4.56-3.06 7.38-3.06 2.821 0 5.52 1.14 7.38 3.06 2.701 2.76 3 5.64 3 14.58m50.76 21.36v-42.72h-4.559v34.14l-22.681-34.14h-4.319v42.72h4.559v-34.26l22.681 34.26zm46.62 0-15.66-42.72h-3.84l-15.72 42.72h4.86l3.421-9.66h18.659l3.42 9.66zm-9.599-13.62h-15.961l8.041-22.56zm47.399 13.62v-4.08h-21.84v-38.64h-4.559v42.72h26.399" + /> + </svg> +); diff --git a/src/routes/index.tsx b/src/routes/index.tsx new file mode 100644 index 0000000..a9d044e --- /dev/null +++ b/src/routes/index.tsx @@ -0,0 +1,25 @@ +import i18n from '@/i18n/config'; +import { RouteObject, redirect } from 'react-router-dom'; +import { Home } from './Home'; +import { NoMatch, Root } from './Root'; + +const rootRoute: RouteObject = { + id: 'root', + path: '/:lng', + element: <Root />, + children: [ + { + index: true, + element: <Home />, + }, + ], +}; + +export const routes: RouteObject[] = [ + { + path: '/', + loader: () => redirect(`/${i18n.language}`), + }, + rootRoute, + { path: '*', element: <NoMatch /> }, +]; diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/src/vite-env.d.ts @@ -0,0 +1 @@ +/// <reference types="vite/client" /> diff --git a/tailwind.config.ts b/tailwind.config.ts new file mode 100644 index 0000000..30f82af --- /dev/null +++ b/tailwind.config.ts @@ -0,0 +1,17 @@ +import type { Config } from 'tailwindcss'; + +import designSystem from '@jod/design-system/tailwind.config'; + +export default { + prefix: '', + content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], + presets: [designSystem], + plugins: [], + theme: { + extend: { + colors: { + todo: '#ff000066', + }, + }, + }, +} satisfies Config; diff --git a/tsconfig.app.json b/tsconfig.app.json new file mode 100644 index 0000000..fb3b37f --- /dev/null +++ b/tsconfig.app.json @@ -0,0 +1,32 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "Bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true, + + /* Alias */ + "baseUrl": ".", + "paths": { + "@/*": ["src/*"] + } + }, + "include": ["src"] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..d32ff68 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,4 @@ +{ + "files": [], + "references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }] +} diff --git a/tsconfig.node.json b/tsconfig.node.json new file mode 100644 index 0000000..abcd7f0 --- /dev/null +++ b/tsconfig.node.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2022", + "lib": ["ES2023"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "Bundler", + "allowImportingTsExtensions": true, + "isolatedModules": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..b01182f --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,29 @@ +/// <reference types="vitest" /> +import react from '@vitejs/plugin-react-swc'; +import { fileURLToPath } from 'node:url'; +import { defineConfig } from 'vite'; + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], + test: { + environment: 'jsdom', + globals: true, + setupFiles: ['./vitest.setup.ts'], + coverage: { + provider: 'v8', + reporter: ['lcov'], + }, + }, + resolve: { + alias: [ + { + find: '@', + replacement: fileURLToPath(new URL('./src', import.meta.url)), + }, + ], + }, + server: { + port: 8080, + }, +}); diff --git a/vitest.setup.ts b/vitest.setup.ts new file mode 100644 index 0000000..5ce0f61 --- /dev/null +++ b/vitest.setup.ts @@ -0,0 +1,17 @@ +import '@testing-library/jest-dom/vitest'; + +import { vi } from 'vitest'; + +Object.defineProperty(window, 'matchMedia', { + writable: true, + value: vi.fn().mockImplementation((query: string) => ({ + matches: false, + media: query, + onchange: null, + addListener: vi.fn(), + removeListener: vi.fn(), + addEventListener: vi.fn(), + removeEventListener: vi.fn(), + dispatchEvent: vi.fn(), + })), +});