CINXE.COM
Booking | Raffles Europejski Warsaw- 5 Star Luxury Hotel In Warsaw
<!DOCTYPE HTML> <html lang="en" dir="ltr" class="booking-page"> <head> <meta charset="UTF-8"/> <title>Booking | Raffles Europejski Warsaw- 5 Star Luxury Hotel In Warsaw</title> <meta name="image" content="https://www.raffles.com/content/dam/raffles-aem/default-social-media-image.jpg/_jcr_content/renditions/cq5dam.zoom.2048.2048.jpeg"/> <meta name="twitter:image" content="https://www.raffles.com/content/dam/raffles-aem/default-social-media-image.jpg/_jcr_content/renditions/cq5dam.zoom.2048.2048.jpeg"/> <meta property="og:image" content="https://www.raffles.com/content/dam/raffles-aem/default-social-media-image.jpg/_jcr_content/renditions/cq5dam.zoom.2048.2048.jpeg"/> <meta name="description" content="Booking | Raffles Europejski Warsaw - Discover Raffles Europejski Warsaw Raffles, hotel in Warsaw and enjoy the hotel's spacious, comfortable rooms. Feel welcome to our elegant and luxurious hotel"/> <meta name="template" content="booking-page-template"/> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1.0, user-scalable=no"/> <script defer="defer" type="text/javascript" src="/.rum/@adobe/helix-rum-js@%5E2/dist/rum-standalone.js"></script> <link rel="canonical" href="https://www.raffles.com/warsaw/booking/"/> <script> function applyAnimationByScroll() { const appearedElement = document?.querySelectorAll('.c-appeared'); const appearedEffectClass = 'c-appeared--done'; const options = { threshold: 0.25, }; const appearedObserver = new IntersectionObserver(appearedIntersection, options); appearedElement?.forEach((target) => { appearedObserver?.observe(target); }); function appearedIntersection(entries) { entries.forEach((entry) => { if (entry?.isIntersecting) { entry?.target.classList.add(appearedEffectClass); appearedObserver.unobserve(entry.target); } }); } } window.addEventListener("load", () => { applyAnimationByScroll(); }); </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/blueimp-md5/2.19.0/js/md5.min.js"></script> <link rel="stylesheet" href="/etc.clientlibs/raffles-aem/clientlibs/clientlib-base.lc-482039242b0bd31604428b73ba5c4945-lc.min.css" type="text/css"> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-MCPNRQL9');</script> <!-- End Google Tag Manager --> <script> window.addEventListener('DOMContentLoaded', (event) => { const authBlock = document.querySelectorAll('.js-auth-block'); const authBlockName = '.js-auth-name'; const authBlockStatus = '.js-auth-member-status'; const authBlockReward = '.js-auth-reward-points'; const loginAccorBtn = document.querySelectorAll('.js-accor-login-btn'); const loginCreateBtn = document.querySelectorAll('.js-accor-create-btn'); const logoutAccorBtn = document.querySelectorAll('.js-accor-logout-btn'); const isAuth = 'isAuthenticated'; const accorKey = 'rr_accor_auth_data'; const loc = document.location; const domain = "https:\/\/newbooking.azds.com"; const urlAuth = domain + '/oauth2/accor?postMessageHost=' + encodeURIComponent(loc.origin); const urlProfile = domain + '/oauth2/destination/raffles/accor/profile'; const urlRegister = domain + '/oauth2/accor?postMessageHost='+encodeURIComponent(loc.origin)+'&accorregister=true'; const urlRefresh = domain + '/oauth2/accor/refresh'; const urlLogout = domain + '/oauth2/accor/revoke'; const dataStorage = {oldValue: null, url: loc.href, storageArea: window.localStorage}; if (!isAuthenticatedWithAccor()) { loginWithAccor(); } else { getProfileAccor(urlProfile, JSON.parse(window.localStorage.getItem(accorKey))?.access_token); } logoutAccorBtn.forEach((el) => { el.addEventListener('click', (e) => { e.preventDefault(); revokeAccor(urlLogout, JSON.parse(window.localStorage.getItem(accorKey))?.id_token); }) }); loginCreateBtn.forEach((el) => { el.addEventListener('click', (e) => { e.preventDefault(); window.addEventListener('message', loginCallback); window.open(urlRegister, '_blank'); }) }); window.addEventListener("storage", function () { if (isAuthenticatedWithAccor()) { getProfileAccor(urlProfile, JSON.parse(window.localStorage.getItem(accorKey))?.access_token) } else { authBlock.forEach((el) => { el.classList.remove(isAuth) }); } }); function loginCallback(e) { if (e && e.type === 'message' && e.data && e.data.messageType === 'accor_callback' && e.data.data && e.data.data.access_token) { const newValue = JSON.stringify(e.data.data); window.localStorage.setItem(accorKey, newValue); const localStorageEvent = new StorageEvent('storage', { ...dataStorage, ...{ key: accorKey, newValue } }); window.dispatchEvent(localStorageEvent); if (isAuthenticatedWithAccor()) { getProfileAccor(urlProfile, JSON.parse(window.localStorage.getItem(accorKey))?.access_token); pushLoginEvent(getPageData().page_name); } window.removeEventListener('message', loginCallback); } } function loginWithAccor() { loginAccorBtn.forEach((el) => { el.addEventListener('click', (e) => { e.preventDefault(); window.addEventListener('message', loginCallback); window.open(urlAuth, '_blank'); }); }); } function revokeAccor(url, idt) { const options = { method: 'post', body: JSON.stringify({ id: idt, }), headers: { 'Content-type': 'application/json; charset=UTF-8', }, credentials: "include", }; fetch(url, options) .then((response) => { if (response.status === 201) { window.localStorage.clear(); window.sessionStorage.clear(); document.location.reload(); } }) .catch((error) => { console.error(error); }); } function refreshAccor(url, reft) { const options = { method: 'post', body: JSON.stringify({ refresh_token: reft, }), headers: { 'Content-type': 'application/json; charset=UTF-8', }, credentials: "include", }; fetch(url, options) .then((response) => { return response.json() }) .then((data) => { if (!data.error) { let updateKey = JSON.parse(window.localStorage.getItem('rr_accor_auth_data')); updateKey.access_token = data.access_token updateKey.refresh_token = data.refresh_token window.localStorage.setItem(accorKey, JSON.stringify(updateKey)); getProfileAccor(urlProfile, JSON.parse(window.localStorage.getItem(accorKey))?.access_token) } else { authBlock.forEach((el) => { el.classList.remove(isAuth) }); revokeAccor(urlLogout, JSON.parse(window.localStorage.getItem(accorKey))?.id_token); window.localStorage.clear(); window.sessionStorage.clear(); } }) .catch((error) => { console.error(error); }); } function getProfileAccor(url, ast) { const options = { headers: { Authorization: "Bearer " + ast } }; fetch(url, options) .then((response) => { return response.json(); }) .then((data) => { if (!data.errors) { authBlock.forEach((el) => { (el.querySelector(authBlockName)) ? el.querySelector(authBlockName).innerHTML = data.firstName + " " + data.lastName : ''; (el.querySelector(authBlockStatus)) ? el.querySelector(authBlockStatus).innerHTML = data.loyaltyCardProductTier : ''; (el.querySelector(authBlockReward)) ? el.querySelector(authBlockReward).innerHTML = data.loyaltyNbPoints : ''; }); authBlock.forEach((el) => { el.classList.add(isAuth) }); } else { refreshAccor(urlRefresh, JSON.parse(window.localStorage.getItem(accorKey))?.refresh_token); } }) .catch((error) => { console.error(error); }); } function isAuthenticatedWithAccor() { return !!window.localStorage.getItem(accorKey); } }); </script> <!-- OneTrust Cookies Consent Notice start for raffles.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" type="text/javascript" charset="UTF-8" data-domain-script="a9f7e5d5-3d70-46a9-a4c3-ab4901c19fcd"></script> <script type="text/javascript"> setTimeout(()=>{ function OptanonWrapper() { } }, 1000) </script> <!-- OneTrust Cookies Consent Notice end for raffles.com --> <link rel="alternate" href="https://www.raffles.com/warsaw/booking/" hreflang="x-default"/> <link rel="alternate" href="https://www.raffles.com/de/warsaw/booking/" hreflang="de"/> <link rel="alternate" href="https://www.raffles.com/es/warsaw/booking/" hreflang="es"/> <link rel="alternate" href="https://www.raffles.com/fr/warsaw/booking/" hreflang="fr"/> <link rel="alternate" href="https://www.raffles.com/ar/warsaw/booking/" hreflang="ar"/> <link rel="alternate" href="https://www.raffles.com/warsaw/booking/" hreflang="en"/> <link rel="alternate" href="https://www.raffles.com/pl/warsaw/booking/" hreflang="pl"/> <link as="style" href="https://static-p80753-e698610.adobeaemcloud.com/7827d37700fc302f056e99c9cd137528bdd1277a0e5b04bf1a683fea32878b4f/theme.css" rel="preload stylesheet" type="text/css"> <link href="https://static-p80753-e698610.adobeaemcloud.com/7827d37700fc302f056e99c9cd137528bdd1277a0e5b04bf1a683fea32878b4f/resources/images/favicon.png" rel="icon" type="image/png"> <script src="https://www.google.com/recaptcha/enterprise.js?render=6LchgrspAAAAAPR6LWXGjMgt1Z47ot1FdagFkduu"></script> </head> <body class="propertypage page basicpage raffles-dir-ltr" id="propertypage-6fb15cf5b8"> <script id="popup-injection" data-start="0" data-end="0"> (function (window) { const now = new Date().getTime(); const popupScript = document.getElementById('popup-injection'); const startTime = popupScript ? popupScript.dataset.start : 0; const endTime = popupScript ? popupScript.dataset.end : 0; if ((startTime > 0 && now < startTime) || (endTime > 0 && now > endTime)) { return; } const cancelInheritance = ''; const popupXfPath = ''; const inheritedPopupXfPath = ''; const popupBlockingTime = '0'; const inheritedPopupBlockingTime = '0'; const path = cancelInheritance == 'true' ? popupXfPath : inheritedPopupXfPath; let time = cancelInheritance == 'true' ? popupBlockingTime : inheritedPopupBlockingTime; time = (!!time && time !== '0') ? time : '24' const hours = parseInt(time, 10); const lastShown = localStorage.getItem(path); const modalShowInterval = hours * 60 * 60 * 1000; function makeHttpObject() { if (window.XMLHttpRequest) { return new XMLHttpRequest(); } else { throw new Error("Could not create HTTP request object."); } } function fetchPopupContent(url) { return new Promise((resolve, reject) => { const request = makeHttpObject(); request.open("GET", url, true); request.send(null); request.onreadystatechange = function() { if (request.readyState === 4) { if (request.status === 200) { resolve(request.responseText); } else { reject(new Error('Failed to load content')); } } }; }); } function createModal(xfElement) { const xfWrapper = document.createElement('div'); xfWrapper.innerHTML = ` <div class="modal-b active modal-b--default" role="dialog" tabindex="0" aria-modal="true" id="modal-auto-popup"> <div class="modal-backdrop"></div> <div class="modal-wrapper"> <div class="modal-container__close-default"> <a href="#" class="modal-close-btn modal-close-btn--remove-dom"></a> </div> <div class="modal-container"> <div class="xfpage page basicpage"> <div class="xf-content-height" id="xf-auto-popup"></div> </div> </div> </div> </div> `; if (xfWrapper) { document.body?.appendChild(xfWrapper); document.getElementById('xf-auto-popup')?.appendChild(xfElement); localStorage.setItem(path, now.toString()); } } if (path) { const url = path + '.html'; if (!lastShown || now - lastShown >= modalShowInterval) { fetchPopupContent(url) .then(responseText => { const parser = new DOMParser(); const xmlDoc = parser.parseFromString(responseText, "text/html"); const xfElement = xmlDoc.querySelector('.root.container.responsivegrid'); if (xfElement) { createModal(xfElement); } }) .catch(error => { console.error('Error fetching popup content:', error); }); } } })(window); </script> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MCPNRQL9" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div class="root container responsivegrid"> <div id="container-3d5f838dd7" class="cmp-container"> <div class="aem-Grid aem-Grid--12 aem-Grid--default--12 "> <div class="container responsivegrid aem-GridColumn aem-GridColumn--default--12"> <div id="container-ea6653b31b" class="cmp-container"> <div class="aem-Grid aem-Grid--12 aem-Grid--default--12 "> <div class="header aem-GridColumn aem-GridColumn--default--12"><header class="header header--transparent black-text header--property" id="header"> <div class="header__container"> <!-- Top Menu --> <div class="header__top"> <div class="header__row"> <div class="header__column header__column--burger "> <button type="button" class="header__burger"> <svg width="24" height="13" viewBox="0 0 24 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <line y1="0.5" x2="24" y2="0.5" stroke="#0C1F1E"/> <line y1="6.5" x2="24" y2="6.5" stroke="#0C1F1E"/> <line y1="12.5" x2="24" y2="12.5" stroke="#0C1F1E"/> </svg> <span>Hotels & Resorts</span> </button> </div> <div class="header__column header__column--logo "> <a href="/warsaw/" target="_blank"> <img class="header__logo d-none d-md-block " src="/content/dam/raffles-aem/property-logos/logo-warsaw-large.svg" alt="Logo"/> </a> <a href="/warsaw/" target="_blank"> <img class="header__logo header__logo--property-desktop d-md-none" src="/content/dam/raffles-aem/property-logos/logo-warsaw-small.svg" alt="Logo"/> </a> </div> <div class="header__column header__column--controls"> <div class="header__item header__item--languages"> <button type="button" class="header__label header__label--language header__label--dropdown"> en <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 1L5 5L9 1" stroke="#727C74"/> </svg> </button> <ul class="header__dropdown header__dropdown--languages"> <li class="header__dropdown__item"> <a href="/de/warsaw/booking/" class="header__dropdown__link header__dropdown__link--language">Deutsch</a> </li> <li class="header__dropdown__item"> <a href="/warsaw/booking/" class="header__dropdown__link header__dropdown__link--language">English</a> </li> <li class="header__dropdown__item"> <a href="/es/warsaw/booking/" class="header__dropdown__link header__dropdown__link--language">Español</a> </li> <li class="header__dropdown__item"> <a href="/fr/warsaw/booking/" class="header__dropdown__link header__dropdown__link--language">Français</a> </li> <li class="header__dropdown__item"> <a href="/pl/warsaw/booking/" class="header__dropdown__link header__dropdown__link--language">Polski</a> </li> <li class="header__dropdown__item"> <a href="/ar/warsaw/booking/" class="header__dropdown__link header__dropdown__link--language">العربية</a> </li> </ul> </div> <div class="header__item header__item--auth js-auth-block"> <button type="button" class="header__label header__label--dropdown"> <span class="header__label--no-auth">Sign In</span> <span class="header__label--is-auth">My Account</span> <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 1L5 5L9 1" stroke="#727C74"/> </svg> </button> <div class="header__dropdown header__dropdown--no-auth"> <div class="header__dropdown__label header__dropdown__label--no-auth"> MY ALL ACCOUNT <button type="button" class="header__dropdown__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.38285" y1="0.646447" x2="18.3534" y2="17.617" stroke="#727C74"/> <line x1="0.675743" y1="17.6462" x2="17.6463" y2="0.67564" stroke="#727C74"/> </svg> </button> </div> <div class="header__auth-links"> <button type="button" class="js-accor-login-btn btn btn—-filled">LOGIN</button> <button type="button" class="js-accor-create-btn btn">CREATE AN ACCOUNT</button> </div> <div class="header__intro"> Create an account to take advantage of the member rate. </div> <a href="https://all.accor.com/account/index.en.shtml#/my-bookings" target="_blank" class="header__dropdown__all">My Bookings</a> </div> <div class="header__dropdown header__dropdown--is-auth"> <div class="header__auth-bg"> <div class="header__dropdown__label header__dropdown__label--profile"> Hello,<br/> <div class="header__user-name js-auth-name"></div> <button type="button" class="header__dropdown__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.38285" y1="0.646447" x2="18.3534" y2="17.617" stroke="#727C74"/> <line x1="0.675743" y1="17.6462" x2="17.6463" y2="0.67564" stroke="#727C74"/> </svg> </button> </div> <div class="header__status">Member status: <span class="js-auth-member-status"></span></div> <div class="header__status">Reward points: <span class="js-auth-reward-points"></span></div> </div> <div class="header__auth-content"> <ul class="header__dropdown__list header__dropdown__list--contacts"> <li class="header__dropdown__item icon icon--user"> <a href="https://all.accor.com/account/index.en.shtml" class="header__dropdown__link" target="_blank">My ALL Account</a> </li> <li class="header__dropdown__item icon icon--calendar"> <a href="https://all.accor.com/account/index.en.shtml#/my-bookings" class="header__dropdown__link" target="_blank">My Bookings</a> </li> <li class="header__dropdown__item icon icon--star"> <a href="https://all.accor.com/account/index.en.shtml#/rewards" class="header__dropdown__link" target="_blank">My Points History</a> </li> </ul> <a href="" class="btn header__logout js-accor-logout-btn">Logout</a> </div> </div> </div> <div class="header__item header__item--contacts"> <button type="button" class="header__label header__label--dropdown"> Contact <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 1L5 5L9 1" stroke="#727C74"/> </svg> </button> <div class="header__dropdown header__dropdown--contacts"> <div> <div class="header__dropdown__label header__dropdown__label--contacts"> CONCIERGE <button type="button" class="header__dropdown__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.38285" y1="0.646447" x2="18.3534" y2="17.617" stroke="#727C74"/> <line x1="0.675743" y1="17.6462" x2="17.6463" y2="0.67564" stroke="#727C74"/> </svg> </button> </div> <ul class="header__dropdown__list header__dropdown__list--contacts"> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--phone" href="/contact-us/telephone-numbers-with-access-code/">(+48) 22 255 95 00</a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--envelope" href="mailto:concierge.warsaw@raffles.com">concierge.warsaw@raffles.com</a> </li> </ul> <div class="header__dropdown__label header__dropdown__label--contacts"> RESERVATION </div> <ul class="header__dropdown__list header__dropdown__list--contacts"> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--phone" href="tel:(+48)%2022%20255%2095%2000">(+48) 22 255 95 00</a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--envelope" href="mailto:warsaw@raffles.com">warsaw@raffles.com</a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--map" href="http://maps.google.com/?q=Raffles%20Europejski%20Warsaw%20" target="_blank"> <div> <p> Krakowskie Przedmieście 13 </p> <p> 00-071 Warsaw </p> <p> Poland </p> </div> </a> </li> </ul> <div> <div class="xf-button"> <a type="button" href="#" class="modal-trigger-open btn " data-modal-id="#modal_id9087"> Contact Us </a> <div class="signup-form-newsletter-wrapper"> <div class="modal-b modal-b--full" role="dialog" tabindex="0" aria-modal="true" id="modal_id9087"> <div class="modal-backdrop modal-backdrop--no-close"></div> <div class="modal-wrapper"> <div class="modal-container"> <div class="xfpage page basicpage"> <div class="xf-content-height"> <div class="root container responsivegrid"> <div id="container-2a1b752c68" class="cmp-container"> <div class="xf-form"> <div class="xf-form-b background-color__brand-teal" style="background: #C9DADC"> <div class="xf-form-close"> <a href="#" class="modal-trigger-close"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 12.5L20.9706 20.9706L21.6777 20.2635L13.2071 11.7929L20.9706 4.02939L20.2635 3.32228L12.5 11.0858L4.70718 3.29297L4.00008 4.00008L11.7929 11.7929L3.29297 20.2928L4.00008 21L12.5 12.5Z" fill="white"/> </svg> <span>Close</span> </a> </div> <div class="xf-form-container"> <div class="xf-form-container__picture"> <div data-cmp-is="image" data-cmp-widths="575,991,1199,1920" data-cmp-dmimage data-cmp-src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=%7B.width%7D&ts=1715970280689&dpr=off" data-asset-id="b30a3fde-c541-4ec1-ae33-0ab42e6e995f" data-cmp-filereference="/content/dam/remote/brands/raf/hotels/europe/pl/warsaw/a7w6/aja_p_5921-73.jpg" id="image-baa5b19c6a" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <img src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&ts=1715970280689&dpr=off" srcset="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=575&ts=1715970280689&dpr=off 575w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=991&ts=1715970280689&dpr=off 991w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1199&ts=1715970280689&dpr=off 1199w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1920&ts=1715970280689&dpr=off 1920w" loading="lazy" class="cmp-image__image" itemprop="contentUrl" width="7383" height="4925" alt="Raffles Europejski Warsaw"/> </div> </div> <div class="xf-form-container__content"> <div class="xf-form--container__content-header"> <div class="xf-form-container__logo"> <img src="/content/dam/raffles-aem/property-logos/logo-warsaw-large.svg" alt=""/> </div> <div class="xf-form-container__description"> <p>Thank you for your interest in Raffles Europejski Warsaw. </p> <p>Please would you kindly provide us with details of your request using the form below.</p> </div> <div class="contactstable__title contactstable__title--lg c-appeared"></div> <div class="contactstable__content c-appeared"> <ul class="contactstable__list c-appeared"> <li class="contactstable__item icon icon--phone"> <a href="tel:(+48)%2022%20255%2095%2000" class="contactstable__link">(+48) 22 255 95 00</a> </li> <li class="contactstable__item icon icon--envelope"> <a href="mailto:warsaw@raffles.com" class="contactstable__link">warsaw@raffles.com</a> </li> <li class="contactstable__item icon icon--map"> <a href="http://maps.google.com/?q=Krakowskie%20Przedmieście%2013%20%2000-071,%20Warsaw,%20Poland" class="contactstable__link" target="_blank">Krakowskie Przedmieście 13 00-071, Warsaw, Poland</a> </li> </ul> </div> </div> <div class="xf-form-container__form-message-successfully js-form-message-successfully"> <p>Thank you for stepping into our Raffles world. We look foward to being in touch.</p> </div> <form action="/xf/en/site/contact_forms/inquiry-warsaw/master/_jcr_content/root/xf_form.xf-form.html" method="post" class="js-send-flexible-form xf-form-container__form" data-site-key="6LchgrspAAAAAPR6LWXGjMgt1Z47ot1FdagFkduu"> <div class="popup-form-fieldset__title"></div> <div class="xf-form-container__form-field"> <label> <span class="label">Name</span> <input name="flexible_form_input_Name" data-error-message="This field is required " required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Email </span> <input name="flexible_form_input_EMAIL" data-error-message="This field is required " data-validation-message="Incorrect Email Format" data-custom-validation="email" required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Phone</span> <input name="flexible_form_input_PHONE" data-error-message="This field is required " data-validation-message="Incorrect Phone Format " data-custom-validation="phone" required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Message</span> <textarea name="flexible_form_input_Message"></textarea> </label> </div> <div class="xf-form-container__form-field"> <label class="label-checkbox"> <input type="checkbox" name="flexible_form_input_"/> <span></span> <p>Please indicate you have read and agree to the <a href="https://all.accor.com/information/legal/data-protection.en.shtml?_gl=1*y9e5gv*_ga*MTEzOTE1OTU0NS4xNzA5MjQ5OTE1*_ga_CW6513Y003*MTcxMzM4NDIyMi4zLjAuMTcxMzM4NDIyMi4wLjAuMA..*_fplc*NDMlMkJVc002VmppJTJGZVJ1Nk1SJTJGQURoT2xLRXFsaTJubzVQVXBLaU4zcUtxcFJtS2NjNk15OHRqSnNKd1hXa00xcU1xSmRKeGhhVTE1SlI5VU43T05qblMzSnUlMkYzY0JBYXFuM29saHdJMGJHNjQlMkZTd204Z1IxY2tsWTdQcHZQdyUzRCUzRA..*_ga_KS93RBNSHZ*MTcxMzM4MDM1Ni4xMC4xLjE3MTMzODA0MjkuNjAuMC4w&_ga=2.103966144.1703033639.1713308324-1139159545.1709249915" target="_blank" rel="noopener noreferrer">privacy policy</a> of Raffles Hotels & Resorts. Your details are private and will never be shared with any third parties.</p> </label> </div> <div class="xf-form-container__form-control"> <div class="xf-form-container__form-message-error js-form-message-error"> <p>An error has occurred. Please try again later.</p> </div> <button name="" id="bt_submit" class="btn">Submit</button> </div> <div class="xf-form-container__form-field reCaptcha-info"> <p>The site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy" target="_blank" rel="noopener noreferrer">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.</p> </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="header__item header__item--booking"> <a class="btn header__booking-link header__booking-link--desktop" href="/warsaw/booking/#/booking/step-1" target="_blank">Book</a> </div> </div> </div> </div> <!-- Top Menu End --> <!-- Menu For Property/Restaurant --> <div class="header__bottom "> <div class="header__bottom__left"> <button type="button" class="header__burger header__burger--property-mobile"> <svg width="24" height="13" viewBox="0 0 24 13" fill="none" xmlns="http://www.w3.org/2000/svg"> <line y1="0.5" x2="24" y2="0.5" stroke="#0C1F1E"/> <line y1="6.5" x2="24" y2="6.5" stroke="#0C1F1E"/> <line y1="12.5" x2="24" y2="12.5" stroke="#0C1F1E"/> </svg> <span>Hotels & Resorts</span> </button> <a href="/warsaw/" target="_blank"> <img class="header__scroll-logo header__scroll-logo--restaurant d-none d-lg-block" src="/content/dam/raffles-aem/property-logos/logo-warsaw-horizontal.svg" alt="Logo"/> </a> <a href="/warsaw/" target="_blank"> <svg class="d-none d-md-block d-lg-none" xmlns="http://www.w3.org/2000/svg" width="37" height="32" viewBox="0 0 37 32" fill="none"> <path d="M34.987 18.6256C33.5715 18.5333 30.1895 19.6354 27.9834 20.3285C27.2652 19.3242 26.3313 18.4751 25.2428 17.8367C26.1644 17.4388 27.0626 16.9941 27.9336 16.5044C28.3639 16.835 28.754 17.2102 29.0965 17.6228C28.9404 17.7756 28.8099 17.9502 28.7096 18.1406C28.4729 18.6812 29.0564 19.2418 29.5705 18.6909C29.7402 18.5107 29.8124 18.1644 29.4437 17.6215C29.6283 17.4311 29.8357 17.2377 30.0287 17.0543C30.175 17.1391 30.6905 17.3304 31.104 17.5186C31.0465 17.6251 31.0025 17.7376 30.973 17.8539C30.8531 18.3734 31.2512 18.6746 31.6241 18.5885C32.0492 18.4909 32.1228 17.9643 31.8003 17.6454C31.7096 17.5641 31.6086 17.4939 31.4996 17.4364C31.5383 17.3865 31.5709 17.3388 31.6162 17.2818C31.8851 16.9519 32.1023 16.6974 32.2733 16.4924C32.4444 16.5644 32.6403 16.6453 32.8578 16.7531C33.0126 16.8277 33.1426 16.8949 33.2639 16.9602C33.2285 17.0142 33.1981 17.0709 33.173 17.1299C32.8584 17.8707 33.4606 18.0562 33.7085 18.0297C33.8062 18.0106 33.897 17.9678 33.9719 17.9053C34.0468 17.8429 34.1032 17.763 34.1356 17.6736C34.168 17.5842 34.1752 17.4883 34.1565 17.3955C34.1379 17.3026 34.094 17.216 34.0292 17.1441C33.9302 17.0326 33.8122 16.9377 33.6801 16.8631C33.895 16.5853 34.1751 16.2685 34.3988 16.0203C34.6771 16.1537 35.0122 16.2791 35.3501 16.4218C35.3273 16.7946 35.3711 17.1215 35.5636 17.304C36.1523 17.8539 36.6724 17.0725 36.183 16.5777C36.0177 16.4283 35.8244 16.3093 35.6131 16.227C35.7394 15.5931 36.0382 14.7777 36.0298 13.9428C36.0167 12.7881 34.1439 12.6441 31.1563 14.2988C30.1159 14.8757 29.0779 15.5176 27.9197 16.1625C27.0149 15.4583 25.7797 14.6575 24.4617 14.2507C25.3002 13.559 26.2301 12.6936 27.1459 11.8561C27.6326 12.1035 28.0802 12.4144 28.4757 12.7798C28.0843 13.271 27.9313 13.8359 28.431 14.0003C28.9447 14.1708 29.4266 13.6893 29.0817 13.1084C29.0084 12.9942 28.9228 12.8877 28.8262 12.7904C28.9642 12.6177 29.1259 12.4055 29.2737 12.1865C29.6093 12.3062 29.9724 12.3866 30.3038 12.524C30.2294 12.69 30.1936 12.8693 30.1989 13.0497C30.2725 13.6871 31.2644 13.7472 31.2182 12.9772C31.2024 12.7197 30.9563 12.5346 30.6794 12.395C30.8239 12.0924 31.0052 11.7678 31.1437 11.5182C31.4895 11.6251 31.8861 11.7116 32.211 11.8009C32.1117 12.018 32.1073 12.2636 32.1988 12.4838C32.5209 13.0068 33.4857 12.7758 33.0951 11.9969C32.969 11.824 32.7872 11.6944 32.5768 11.6277C32.5866 11.6056 32.594 11.5853 32.6048 11.5623C32.6877 11.3865 32.8443 11.0905 32.9725 10.7676C33.2447 10.8462 33.536 10.9156 33.7938 10.9704C33.8781 11.9656 34.2888 12.0601 34.6491 11.932C34.9516 11.8256 35.2252 11.1987 34.4286 10.8573C34.2961 10.8036 34.1593 10.7601 34.0194 10.7274C34.0249 10.193 34.0619 9.65928 34.1303 9.12877C34.3275 7.3 32.3397 7.88793 31.097 8.49797C30.0152 9.0263 28.2925 10.4584 27.07 11.5318C27.0234 11.5093 26.9777 11.4836 26.9278 11.4603C25.9038 10.9757 24.5265 10.8317 23.3487 10.9302C23.3916 10.8383 23.4363 10.7438 23.481 10.6435C23.6218 10.3347 23.8935 9.71674 24.2534 8.96623C24.8475 8.97418 25.4332 9.10013 25.9728 9.33593C25.9459 9.47893 25.9304 9.62363 25.9262 9.76883C25.9197 10.2221 26.1937 10.6475 26.7074 10.4226C26.8649 10.3532 27.3408 9.98263 26.5004 9.36199C26.4285 9.31014 26.3517 9.26459 26.2711 9.2259C26.3242 8.98918 26.389 8.74267 26.4374 8.47189C26.7702 8.46216 27.1542 8.43248 27.4899 8.42594C27.4898 8.46208 27.4917 8.4982 27.4955 8.53416C27.5654 9.12123 28.0469 9.4636 28.4757 9.17337C28.5467 9.11453 28.601 9.03961 28.6333 8.95557C28.6656 8.87154 28.6749 8.78113 28.6605 8.69274C28.646 8.60436 28.6082 8.52088 28.5505 8.45008C28.4929 8.37927 28.4172 8.32344 28.3307 8.28777C28.1519 8.21648 27.9606 8.17767 27.7667 8.17336C27.7877 7.91139 27.8381 7.55938 27.8809 7.23335C28.0916 7.23734 28.3363 7.23071 28.629 7.22366C28.7391 7.22134 28.8387 7.22276 28.9315 7.22672C28.9329 7.26249 28.9329 7.29697 28.9357 7.32214C28.9963 7.95428 29.4629 8.14733 29.8572 7.95428C30.2385 7.7652 30.1541 7.08361 29.2885 7.00365C29.2665 7.00145 29.241 6.99966 29.22 6.99704C29.2228 6.80353 29.234 6.57696 29.2443 6.32074C29.2494 6.1838 29.2508 6.06109 29.2494 5.9448C29.5559 5.92176 29.8609 5.88298 30.1629 5.82863C30.464 6.58267 30.7567 6.65558 30.9889 6.63172C31.4685 6.58267 31.7398 5.79063 30.9423 5.57332C30.7381 5.53169 30.5282 5.52125 30.3205 5.54239C30.0189 4.55942 29.8376 3.11418 29.1245 2.99798C27.7807 2.7811 26.3106 4.77025 25.4195 6.08001C24.8941 6.94373 24.4303 7.83975 24.0309 8.76208C23.0292 8.72187 22.029 8.87029 21.0881 9.19876C20.1473 9.52722 19.2845 10.0292 18.5496 10.6757C18.8354 9.5625 19.8314 7.03975 21.7368 6.59581C21.7767 6.77001 21.8403 6.93856 21.9261 7.0972C22.2783 7.68373 23.1542 7.42056 23.0377 6.83522C22.9785 6.5437 22.5604 6.3047 21.9601 6.34182C21.9202 6.13295 21.8936 5.92201 21.8804 5.71012C21.8779 5.66862 21.8752 5.63459 21.8724 5.59705C22.1838 5.56128 22.5455 5.51003 22.8778 5.48397C22.9952 6.03659 23.205 6.2084 23.5131 6.24111C24.1848 6.30866 24.2631 5.45659 23.7186 5.27458C23.5315 5.23282 23.3391 5.21661 23.1471 5.22645C23.094 4.92507 23.0628 4.58891 23.0423 4.30584C23.3839 4.24624 23.6836 4.20205 23.9409 4.17511C23.9781 4.31337 24.0349 4.44621 24.1097 4.57001C24.4402 5.06034 25.2129 5.03431 25.1747 4.42514C25.144 3.96085 24.629 3.87959 24.4896 3.87517C24.3926 3.87164 24.291 3.87385 24.1848 3.87913C24.1649 3.78123 24.1503 3.68246 24.1409 3.58317C24.1097 3.28191 24.0817 3.02042 24.0504 2.79513C24.3156 2.75008 24.5841 2.70502 24.8358 2.67632C24.903 2.83355 24.9908 2.98211 25.0973 3.11847C25.535 3.64371 26.208 3.32211 26.132 2.85698C26.0882 2.59107 25.9414 2.48723 25.5955 2.42098C25.3868 2.39175 25.175 2.38819 24.9654 2.4104C24.7511 1.65676 24.5217 0.632899 24.2024 0.258258C23.8543 -0.150347 22.8494 -0.285945 21.1985 1.49953C19.644 3.18208 18.8228 5.74503 18.5338 7.19839C18.4196 7.75594 18.3375 8.31896 18.2877 8.88495C18.2366 8.31904 18.1542 7.75608 18.0406 7.19839C17.7507 5.74503 16.9304 3.18208 15.3755 1.49953C13.7251 -0.285945 12.7206 -0.150347 12.3729 0.258258C12.0527 0.632899 11.8243 1.65676 11.6095 2.4104C11.3994 2.38822 11.1871 2.39177 10.9779 2.42098C10.633 2.48723 10.4853 2.59107 10.4429 2.85698C10.3646 3.32211 11.0395 3.64371 11.4767 3.11847C11.584 2.98255 11.672 2.8339 11.7386 2.67632C11.9894 2.70502 12.2583 2.75008 12.5235 2.79513C12.4932 3.02042 12.4648 3.28198 12.434 3.58317C12.4228 3.69188 12.4089 3.7886 12.3902 3.87913C12.2849 3.87385 12.1809 3.87164 12.0844 3.87517C11.9465 3.87959 11.4296 3.96094 11.3993 4.42514C11.362 5.03431 12.1339 5.06036 12.4648 4.57001C12.5395 4.44567 12.5962 4.31242 12.6336 4.17381C12.8923 4.20205 13.1906 4.24624 13.5327 4.30596C13.5112 4.58914 13.4805 4.9253 13.4273 5.22656C13.2353 5.21688 13.0427 5.23308 12.8554 5.27469C12.3124 5.4567 12.3912 6.30878 13.0615 6.24122C13.3705 6.20851 13.5779 6.0367 13.6986 5.48408C14.0291 5.51014 14.3898 5.5614 14.7021 5.59717C14.6993 5.6347 14.6961 5.66874 14.6937 5.71024C14.6818 5.92221 14.6554 6.13322 14.6145 6.34193C14.0152 6.30484 13.5956 6.54381 13.5374 6.83534C13.4217 7.42067 14.2976 7.68385 14.6485 7.09731C14.7343 6.93862 14.798 6.77009 14.8382 6.59593C16.7436 7.03986 17.7383 9.56262 18.0263 10.6758C17.2914 10.0294 16.4286 9.52748 15.4878 9.19902C14.547 8.87056 13.5468 8.72209 12.545 8.76219C12.1455 7.83968 11.6812 6.94361 11.1551 6.08001C10.264 4.77016 8.79155 2.78103 7.452 2.99798C6.73608 3.11418 6.55523 4.55954 6.25599 5.54239C6.04771 5.52109 5.83717 5.53153 5.63236 5.57332C4.83628 5.79063 5.10521 6.58267 5.58574 6.63172C5.81739 6.65558 6.11057 6.58267 6.41074 5.82863C6.71299 5.88285 7.0181 5.92163 7.32475 5.9448C7.32475 6.061 7.32475 6.1838 7.33128 6.32074C7.3406 6.57696 7.35225 6.80353 7.35506 6.99704C7.33304 6.99966 7.30797 7.00145 7.28605 7.00365C6.42147 7.08361 6.33708 7.7652 6.71883 7.95428C7.11176 8.14733 7.5783 7.95428 7.63938 7.32214C7.6417 7.29697 7.64217 7.26249 7.6431 7.22672C7.73632 7.22276 7.83561 7.22143 7.94559 7.22366C8.2383 7.23062 8.48206 7.23734 8.69167 7.23335C8.73737 7.55938 8.78678 7.91144 8.80774 8.17336C8.61352 8.17748 8.42186 8.2163 8.24282 8.28777C8.15647 8.32361 8.08105 8.37951 8.02353 8.4503C7.96602 8.52109 7.92827 8.60448 7.91377 8.69277C7.89928 8.78105 7.90851 8.87137 7.94061 8.95537C7.97271 9.03938 8.02664 9.11436 8.09742 9.17337C8.52668 9.4636 9.00909 9.12123 9.07856 8.53416C9.08274 8.5015 9.08274 8.46215 9.08509 8.42594C9.42022 8.43257 9.8038 8.46216 10.1366 8.47189C10.1855 8.74267 10.2499 8.98918 10.302 9.2259C10.2221 9.26499 10.1458 9.31052 10.0741 9.36199C9.23331 9.98263 9.70965 10.3532 9.86718 10.4226C10.3813 10.6475 10.6554 10.222 10.6498 9.76883C10.6443 9.62367 10.6284 9.47904 10.6022 9.33593C11.1419 9.10003 11.7278 8.97408 12.3221 8.96623C12.681 9.71674 12.9527 10.3347 13.0935 10.6435C13.1387 10.7438 13.1825 10.8382 13.2259 10.9302C12.0485 10.8317 10.6712 10.9757 9.64625 11.4603C9.59544 11.4836 9.55209 11.5093 9.5041 11.5318C8.28346 10.4584 6.55929 9.0263 5.47889 8.49797C4.23396 7.88793 2.24605 7.3 2.4446 9.12877C2.51229 9.65934 2.54933 10.193 2.55554 10.7274C2.41551 10.7602 2.2785 10.8036 2.14583 10.8573C1.34881 11.1987 1.62381 11.8256 1.92491 11.932C2.28707 12.0601 2.69722 11.9656 2.78019 10.9704C3.03795 10.9156 3.32973 10.8462 3.60101 10.7676C3.72916 11.0905 3.8867 11.3865 3.9706 11.5623C3.98039 11.5853 3.98738 11.6056 3.99859 11.6277C3.78778 11.6943 3.60543 11.8238 3.47887 11.9969C3.08876 12.7757 4.05404 13.0068 4.3761 12.4838C4.46733 12.2636 4.46315 12.0182 4.36446 11.8009C4.68841 11.7116 5.08503 11.6251 5.42997 11.5182C5.56886 11.7669 5.74968 12.0924 5.89418 12.395C5.61732 12.5346 5.3707 12.7196 5.35538 12.9772C5.31015 13.7472 6.3034 13.6871 6.37426 13.0497C6.38087 12.8693 6.34522 12.6897 6.26986 12.524C6.60217 12.3866 6.96526 12.3062 7.30134 12.1865C7.44862 12.4056 7.61081 12.6177 7.74738 12.7904C7.65222 12.8886 7.56704 12.995 7.49297 13.1084C7.14902 13.6893 7.62996 14.1708 8.14366 14.0003C8.64331 13.8359 8.49043 13.271 8.09752 12.7789C8.49433 12.4147 8.94227 12.1042 9.42868 11.8562C10.3454 12.6935 11.2744 13.5589 12.1129 14.2507C10.8488 14.6868 9.67759 15.3344 8.65488 16.1626C7.49711 15.5176 6.45726 14.8759 5.41739 14.2989C2.43066 12.6441 0.557868 12.7881 0.54483 13.9428C0.53551 14.7776 0.83475 15.5931 0.961976 16.2269C0.75108 16.3096 0.558135 16.4285 0.392873 16.5777C-0.099322 17.0724 0.421298 17.8539 1.01092 17.3039C1.20341 17.1215 1.2482 16.7946 1.22298 16.4218C1.56325 16.2791 1.89698 16.1537 2.17663 16.0202C2.40035 16.2685 2.67953 16.5852 2.89335 16.8631C2.76197 16.9385 2.64416 17.0333 2.54438 17.144C2.4798 17.216 2.43612 17.3028 2.41765 17.3957C2.39919 17.4886 2.40657 17.5844 2.43907 17.6738C2.47157 17.7632 2.52807 17.843 2.60301 17.9054C2.67795 17.9678 2.76874 18.0106 2.86645 18.0296C3.11442 18.0561 3.71527 17.8706 3.40292 17.1298C3.37653 17.0714 3.34618 17.0148 3.31204 16.9602C3.4309 16.8948 3.5628 16.8277 3.71755 16.753C3.93567 16.6452 4.13095 16.5644 4.30015 16.4924C4.47214 16.6973 4.6898 16.9518 4.95829 17.2817C5.00257 17.3387 5.03611 17.3864 5.07295 17.4364C4.96478 17.4943 4.86445 17.5644 4.77417 17.6453C4.45164 17.9642 4.52527 18.4908 4.9503 18.5884C5.3241 18.6746 5.72214 18.3733 5.60142 17.8538C5.5717 17.7378 5.52821 17.6253 5.47177 17.5185C5.88427 17.3304 6.39931 17.1391 6.54564 17.0543C6.73813 17.2376 6.94508 17.4311 7.12964 17.621C6.76052 18.1644 6.83415 18.5107 7.00288 18.6909C7.51746 19.2417 8.10146 18.6812 7.86469 18.1405C7.76455 17.9499 7.63372 17.7752 7.4769 17.6228C7.82047 17.2109 8.21058 16.8358 8.64025 16.5043C9.51163 16.9938 10.4102 17.4386 11.332 17.8366C10.2429 18.4748 9.30851 19.324 8.59011 20.3285C6.3864 19.6353 3.00304 18.5333 1.58749 18.6256C0.0610982 18.7259 -0.0862839 19.3805 0.0317441 19.9839C0.13693 20.5114 0.567188 21.215 0.814227 21.799C0.502413 21.9952 0.263837 22.2019 0.222742 22.4515C0.125335 23.0658 0.854785 23.296 1.15307 22.8274C1.28778 22.6176 1.24162 22.2725 1.11997 21.9333C1.38612 21.7646 1.73382 21.5711 2.18362 21.3414C2.33602 21.4686 2.49962 21.6002 2.66552 21.7448C2.82117 21.8821 2.95402 21.9975 3.06867 22.103C2.90092 22.2026 2.76556 22.3444 2.67763 22.5125C2.6395 22.59 2.62152 22.675 2.62522 22.7605C2.62891 22.8459 2.65416 22.9293 2.69885 23.0036C2.74354 23.0778 2.80637 23.1409 2.88207 23.1874C2.95777 23.2339 3.04414 23.2626 3.13394 23.271C3.28127 23.2724 3.42366 23.2206 3.53208 23.1261C3.64051 23.0315 3.70682 22.9013 3.7175 22.7621C3.72388 22.5401 3.6467 22.3232 3.49979 22.1503C3.89457 21.9108 4.34531 21.7081 4.46358 21.6365C4.48596 21.622 4.50516 21.6096 4.52698 21.5955C4.74044 21.77 4.96556 21.9409 5.11052 22.0668C5.18232 22.126 5.316 22.2329 5.45357 22.3575C5.08816 22.6728 5.07556 22.8942 5.11052 23.0669C5.21867 23.5912 5.8465 23.6195 6.0841 23.1623C6.22488 22.8897 6.0967 22.607 5.87862 22.3539C6.18251 22.1538 6.53953 21.978 6.79261 21.8415C7.05875 22.0209 7.35474 22.1857 7.62414 22.3381C7.46565 22.8615 7.44608 23.2418 7.77653 23.4592C8.38947 23.8669 9.01868 23.0978 8.4123 22.5748C8.26952 22.4506 8.11835 22.3354 7.95975 22.2298C8.13835 21.7555 8.35995 21.2968 8.62208 20.8587C8.65889 20.7951 8.69852 20.7315 8.7372 20.6687C9.90571 21.0074 11.0943 21.2802 12.2969 21.4858C14.2107 21.7965 15.945 21.738 16.729 20.8162C16.8256 21.3071 17.0662 21.7624 17.423 22.1299C17.7348 22.455 17.9935 22.6882 18.1389 22.815C18.1399 23.4618 18.1417 23.8593 18.1417 23.8593C18.153 24.0664 18.1196 24.2736 18.0436 24.4682C17.9676 24.6628 17.8507 24.8406 17.6998 24.991C17.5173 24.8007 17.2786 24.667 17.0147 24.6071C16.5775 24.4777 15.719 24.483 15.6439 25.0634C15.5581 25.7168 16.5319 25.8192 17.2738 25.5794C17.4058 25.5364 17.53 25.4744 17.6421 25.3956C17.7213 25.5124 17.7859 25.6375 17.8346 25.7684C18.0184 26.3705 18.1237 26.9917 18.1482 27.618C18.1529 27.7739 18.1599 27.925 18.1538 31.7358C18.1529 31.9165 18.2275 31.985 18.2876 32C18.3473 31.985 18.4218 31.9165 18.4204 31.7358C18.4134 27.925 18.4214 27.7738 18.426 27.618C18.4494 26.9916 18.5546 26.3703 18.7391 25.7684C18.7873 25.6374 18.8517 25.5122 18.9312 25.3956C19.0432 25.474 19.167 25.5359 19.2985 25.5794C20.0433 25.8192 21.016 25.7168 20.9298 25.0634C20.8543 24.483 19.9962 24.4777 19.5595 24.6071C19.2957 24.667 19.0572 24.8008 18.8748 24.991C18.7238 24.8407 18.6069 24.6629 18.5311 24.4683C18.4552 24.2736 18.4222 24.0664 18.4339 23.8593C18.4339 23.8593 18.4343 23.4617 18.4367 22.815C18.5807 22.6882 18.8394 22.455 19.1516 22.1299C19.5082 21.7622 19.7487 21.307 19.8458 20.8162C20.6302 21.7381 22.3627 21.7964 24.2788 21.4859C25.4811 21.2801 26.6696 21.0072 27.838 20.6687C27.8762 20.7314 27.9144 20.795 27.9513 20.8586C28.2142 21.2962 28.4357 21.7551 28.6131 22.2298C28.455 22.335 28.3046 22.4503 28.1628 22.5747C27.5579 23.0978 28.1857 23.8668 28.7981 23.4591C29.1281 23.2418 29.109 22.8615 28.951 22.338C29.2195 22.1856 29.5164 22.0208 29.783 21.8415C30.0333 21.978 30.3921 22.1538 30.6961 22.3538C30.4779 22.6069 30.3498 22.8897 30.4891 23.1622C30.7292 23.6194 31.357 23.5911 31.4652 23.0668C31.4997 22.8941 31.4852 22.6727 31.1212 22.3574C31.2587 22.2328 31.3925 22.1259 31.4652 22.0667C31.6087 21.9408 31.8338 21.77 32.0478 21.5954C32.0688 21.6095 32.0883 21.6219 32.1102 21.6365C32.2296 21.708 32.6784 21.9108 33.0751 22.1502C32.9283 22.3232 32.8513 22.5401 32.8578 22.762C32.8684 22.901 32.9344 23.031 33.0425 23.1255C33.1505 23.22 33.2925 23.272 33.4395 23.2709C33.5295 23.2627 33.616 23.2342 33.6918 23.1878C33.7677 23.1413 33.8307 23.0783 33.8755 23.0039C33.9203 22.9296 33.9456 22.8462 33.9493 22.7606C33.953 22.6751 33.935 22.59 33.8968 22.5124C33.8088 22.3442 33.6733 22.2025 33.5054 22.1029C33.6205 21.9974 33.7529 21.8821 33.9095 21.7447C34.0745 21.6002 34.2376 21.4686 34.3905 21.3413C34.8406 21.571 35.1885 21.7645 35.4555 21.9332C35.333 22.2725 35.2878 22.6175 35.4215 22.8273C35.7198 23.296 36.4502 23.0658 36.3504 22.4514C36.3099 22.2018 36.0722 21.9951 35.7594 21.7989C36.0069 21.215 36.439 20.5113 36.543 19.9838C36.6612 19.3805 36.514 18.7259 34.987 18.6256ZM29.1062 18.7776C28.9212 18.7471 28.8625 18.6265 28.9058 18.3734C28.9699 18.1708 29.0855 17.9862 29.2423 17.8358C29.2558 17.855 29.268 17.8751 29.2787 17.8958C29.6474 18.6322 29.2792 18.8067 29.1062 18.7776ZM29.7168 16.071C29.8758 15.6231 30.5451 15.7358 30.3922 16.2512C30.3031 16.4263 30.1797 16.5837 30.0286 16.7151C29.7984 16.564 29.6171 16.3546 29.7168 16.071ZM31.6162 17.8119C32.1065 18.3212 31.5015 18.5597 31.3272 18.4189C31.1841 18.3018 31.0671 18.1172 31.3603 17.644C31.4536 17.6881 31.5398 17.7446 31.6162 17.8119ZM32.2039 16.1218C31.9578 15.9801 31.7355 15.8011 31.7481 15.6192C31.7793 15.1575 32.3083 14.98 32.4599 15.4455C32.5223 15.6377 32.3913 15.8776 32.2039 16.1218L32.2039 16.1218ZM33.88 17.8097C33.7434 17.9868 33.2932 17.9012 33.3454 17.4285C33.3762 17.3106 33.431 17.1996 33.5067 17.1016C33.9681 17.3812 34.0608 17.5734 33.88 17.8097V17.8097ZM34.3316 15.6912C34.065 15.5379 33.8571 15.3307 33.9769 15.0679C34.2203 14.5316 34.7875 14.7931 34.6971 15.1704C34.6095 15.3635 34.4857 15.5399 34.3316 15.6911V15.6912ZM35.7989 16.6219C36.5587 16.9881 36.1368 17.6458 35.7076 17.1749C35.6378 17.0799 35.5894 16.9722 35.5653 16.8587C35.5413 16.7452 35.5421 16.6282 35.5677 16.515C35.6451 16.5503 35.7229 16.5853 35.7989 16.6219V16.6219ZM30.5223 14.9742C33.1804 13.3959 36.0954 12.7814 35.7076 14.6783C35.6366 15.0268 35.4624 15.5971 35.3841 16.1311C35.2559 16.0799 35.132 16.0331 35.0252 15.9897C34.945 15.9584 34.7693 15.8987 34.582 15.817C34.6719 15.7145 34.7404 15.6376 34.7656 15.6054C35.0634 15.199 35.0499 14.7294 34.458 14.6115C33.9979 14.5183 33.6395 15.0037 33.6852 15.3439C33.7145 15.4629 33.7719 15.5741 33.8531 15.6691C33.9343 15.764 34.0372 15.8403 34.1541 15.8921C33.9095 16.1598 33.6339 16.4562 33.4284 16.7225C33.2214 16.6134 32.9958 16.5092 32.7954 16.4125C32.744 16.3855 32.615 16.3329 32.4668 16.2614C32.7693 15.8815 32.8443 15.699 32.7189 15.4163C32.6689 15.2946 32.5766 15.1927 32.4573 15.1272C32.338 15.0618 32.1988 15.0368 32.0625 15.0562C31.9262 15.0757 31.8009 15.1385 31.7073 15.2344C31.6137 15.3303 31.5572 15.4535 31.5472 15.5837C31.4726 16.0295 31.6428 16.2013 31.997 16.3709C31.8646 16.5224 31.7285 16.6731 31.6162 16.8096C31.5081 16.9452 31.3645 17.1082 31.2373 17.2964C30.9829 17.1723 30.7264 17.0605 30.6202 17.0071C30.5535 16.9722 30.4062 16.9174 30.2473 16.8402C30.4258 16.6916 30.5686 16.5084 30.6658 16.303C30.835 15.5189 29.9163 15.4827 29.6238 15.8922C29.2397 16.4271 29.5553 16.7469 29.8162 16.9219C29.6461 17.0814 29.4648 17.2518 29.2942 17.4193C29.1265 17.2161 28.9423 17.0258 28.7433 16.8499C28.5825 16.7045 28.3895 16.5411 28.1765 16.3684C29.3267 15.7203 30.2487 15.1359 30.5223 14.9742V14.9742ZM34.1214 11.0384C35.0401 11.2287 34.8481 11.9439 34.3214 11.765C34.1396 11.7041 34.0581 11.4028 34.0292 11.0203C34.0608 11.0251 34.0912 11.0317 34.1214 11.0383V11.0384ZM28.5982 13.9065C28.2463 13.884 28.3353 13.3906 28.622 13.0425C28.635 13.0248 28.6546 13.0014 28.6723 12.9811C28.7158 13.0299 28.7549 13.082 28.7893 13.137C29.0415 13.5624 28.8904 13.9255 28.5982 13.9065ZM29.3947 11.2495C29.3505 11.4452 29.2771 11.634 29.1766 11.8101C28.8923 11.6678 28.6672 11.4814 28.7063 11.2349C28.8122 10.5688 29.4633 10.9142 29.3948 11.2495H29.3947ZM30.9128 12.9197C31.2643 13.2974 30.6635 13.6344 30.4663 13.2104C30.438 13.0198 30.4728 12.8256 30.566 12.6547C30.6947 12.7264 30.8116 12.8157 30.9128 12.9197H30.9128ZM31.226 10.7199C31.1738 10.869 31.1068 11.0132 31.0261 11.1505C30.6863 11.0242 30.4397 10.8462 30.5059 10.4944C30.6201 9.88806 31.3724 10.1893 31.2261 10.7199L31.226 10.7199ZM32.6737 11.9611C33.2256 12.2451 32.9301 12.7523 32.6201 12.614C32.4122 12.5213 32.3605 12.2663 32.4794 11.8803C32.546 11.9032 32.6109 11.9302 32.6737 11.9611H32.6737ZM32.8271 10.1893C32.801 10.2675 32.7711 10.34 32.7455 10.4146C32.4514 10.3077 32.2375 10.161 32.2058 9.92121C32.1228 9.25991 33.1534 9.22766 32.8271 10.1893H32.8271ZM29.0834 10.1522C30.7208 8.81333 34.127 7.10336 33.846 9.54398C33.7994 9.91779 33.7775 10.294 33.7802 10.6704C33.5416 10.6187 33.2927 10.5714 33.0634 10.5109C33.2144 10.0316 33.2452 9.54924 32.8271 9.34648C32.1167 9.0046 31.8688 9.95699 32.1144 10.3488C32.258 10.5008 32.445 10.6102 32.6528 10.6637C32.5264 10.9862 32.402 11.2747 32.3051 11.5269C32.072 11.4504 31.8436 11.3922 31.7001 11.352C31.5677 11.3122 31.4283 11.2773 31.294 11.238C31.3032 11.2228 31.3111 11.207 31.3178 11.1907C31.5014 10.8069 31.7004 10.2402 31.0195 10.0374C30.5086 9.88496 30.1353 10.5423 30.3761 11.0609C30.4906 11.2335 30.6668 11.3613 30.8725 11.4209C30.7182 11.6904 30.5449 11.9903 30.4111 12.2743C30.2792 12.2213 30.1557 12.1776 30.061 12.1436C29.9273 12.0906 29.6821 12.0203 29.4374 11.9249C29.5062 11.8106 29.5661 11.6918 29.6169 11.5693C29.7553 11.2208 29.6849 10.7062 29.1042 10.6969C28.4865 10.6894 28.3174 11.5401 28.5989 11.8092C28.721 11.9198 28.8615 12.0107 29.0148 12.0781C28.8949 12.2562 28.7656 12.4284 28.6274 12.594C28.2407 12.2394 27.8098 11.9307 27.3443 11.6748C27.9424 11.1307 28.5321 10.604 29.0834 10.1522H29.0834ZM29.7168 7.86669C29.3439 7.89451 29.2395 7.68204 29.2223 7.25266C30.099 7.37549 29.9429 7.84984 29.7168 7.86669H29.7168ZM31.0349 5.86341C31.3118 5.97517 31.3784 6.55121 30.9044 6.44255C30.6849 6.3944 30.5326 6.14216 30.4048 5.79717C30.6172 5.76341 30.8354 5.78635 31.035 5.86341H31.0349ZM26.4529 9.60889C26.6985 9.77581 26.8831 10.2127 26.6146 10.321C26.3093 10.442 26.1322 10.1381 26.2082 9.55854C26.2124 9.52673 26.2217 9.49624 26.2264 9.46666C26.3171 9.51878 26.3931 9.56783 26.4529 9.60889ZM26.094 8.21477C25.6032 8.22761 25.3063 7.63168 25.6424 7.38652C25.8405 7.24341 26.2221 7.43734 26.2315 7.77922C26.2321 7.92368 26.2198 8.06793 26.1948 8.21043C26.1615 8.21171 26.1237 8.21477 26.0939 8.21477H26.094ZM27.6186 6.94919C27.4619 6.95376 27.3064 6.92207 27.1656 6.85688C26.8216 6.60376 26.9362 6.07989 27.16 6.04454C27.3814 6.00786 27.6904 6.13553 27.6573 6.61039C27.6497 6.70227 27.6357 6.82064 27.6185 6.94919H27.6186ZM28.0311 8.44757C28.4757 8.52002 28.5615 8.73205 28.514 8.88268C28.3797 9.32084 27.7766 9.01299 27.7566 8.42636C27.8484 8.42749 27.9401 8.43458 28.031 8.44757H28.0311ZM27.9822 3.68435C29.3949 3.00229 29.6918 4.19669 29.9318 5.10717C29.9765 5.27592 30.0217 5.4261 30.0656 5.55996C29.7873 5.58512 29.4983 5.62256 29.2382 5.64741C29.1874 4.89117 28.9628 4.72374 28.7064 4.67292C28.5578 4.63804 28.4012 4.65205 28.2621 4.71265C28.123 4.77325 28.0098 4.87685 27.9411 5.00644C27.8031 5.28079 27.9099 5.98048 28.8122 5.96502C28.8547 5.96502 28.8882 5.96103 28.9287 5.95929C28.9404 6.35109 28.9329 6.71463 28.9316 6.9819C28.5899 6.96864 28.2291 6.96906 27.9173 6.96336C27.949 6.78196 27.9616 6.59803 27.9551 6.41426C27.9487 6.33028 27.9233 6.24858 27.8806 6.17474C27.8379 6.1009 27.7789 6.03665 27.7076 5.98638C27.6363 5.93612 27.5545 5.901 27.4676 5.88344C27.3807 5.86588 27.2908 5.86628 27.2041 5.88462C26.7072 5.97253 26.641 6.71066 26.9743 7.02739C27.1461 7.15893 27.3618 7.22815 27.5826 7.22264C27.5415 7.52787 27.4996 7.86669 27.4875 8.16001C27.1472 8.15602 26.7813 8.17814 26.4737 8.19666C26.4831 8.09859 26.497 8.00452 26.5003 7.89583C26.5147 7.20585 25.9489 7.00926 25.6031 7.24902C24.971 7.68855 25.4278 8.40373 25.9335 8.46202C25.9969 8.46865 26.0682 8.47307 26.146 8.4753C26.106 8.68335 26.0555 8.90069 26.0132 9.1127C25.4783 8.92207 24.9164 8.80832 24.346 8.77522C25.2638 6.89045 26.6891 4.30976 27.982 3.68435H27.9822ZM28.9144 5.67305C28.8388 5.67567 28.7671 5.67701 28.7064 5.67435C28.1891 5.64606 28.0311 5.15133 28.155 4.97686C28.3186 4.74628 28.8285 4.67292 28.8966 5.42742C28.9058 5.5087 28.91 5.59001 28.9142 5.67305H28.9144ZM22.7618 7.20451C22.5581 7.34899 22.2048 7.25841 22.0104 6.55253C22.6047 6.52376 23.0619 6.99514 22.7618 7.20451ZM23.782 5.56525C24.1297 5.77816 23.9181 6.16778 23.4809 6.00123C23.3532 5.95134 23.2632 5.74237 23.1966 5.46894C23.3973 5.45166 23.5992 5.48488 23.782 5.56525ZM25.0451 4.45428C25.0778 4.76174 24.5161 4.99677 24.2509 4.14903C24.7389 4.12476 25.0172 4.20249 25.0451 4.45428ZM25.9261 2.82738C26.1377 3.13571 25.4222 3.52178 25.0512 2.6551C25.4674 2.62332 25.8035 2.64891 25.9261 2.82738ZM10.6497 2.82738C10.7709 2.64887 11.1079 2.62336 11.5236 2.6551C11.1522 3.52178 10.4368 3.13571 10.6498 2.82738H10.6497ZM11.5306 4.45428C11.5572 4.2039 11.8359 4.12476 12.3235 4.14903C12.0569 4.99673 11.4967 4.76183 11.5307 4.45428H11.5306ZM13.0934 6.00123C12.6562 6.16778 12.4433 5.77816 12.7938 5.56525C12.9759 5.48476 13.1772 5.45153 13.3773 5.46894C13.3117 5.74248 13.2203 5.95134 13.0935 6.00123H13.0934ZM13.8126 7.20444C13.5125 6.99507 13.9683 6.52374 14.5649 6.55246C14.3692 7.25841 14.0164 7.34908 13.8127 7.20451L13.8126 7.20444ZM5.66955 6.44262C5.19645 6.55128 5.26218 5.97524 5.53858 5.86348C5.73858 5.78647 5.9572 5.76354 6.17013 5.79724C6.0429 6.14216 5.88955 6.3944 5.66955 6.44262ZM6.85763 7.86676C6.63111 7.84995 6.47544 7.37556 7.35215 7.25273C7.3349 7.68204 7.2305 7.89451 6.85763 7.86669V7.86676ZM8.0597 8.88274C8.01308 8.73205 8.09745 8.52009 8.54348 8.44764C8.63468 8.43457 8.72672 8.42748 8.81895 8.42643C8.79798 9.01299 8.19439 9.32088 8.0597 8.88268V8.88274ZM8.91831 6.61046C8.88521 6.1356 9.19378 6.00793 9.41562 6.04461C9.63795 6.07996 9.75319 6.60383 9.40865 6.85695C9.26795 6.92209 9.11263 6.95378 8.95611 6.94926C8.93874 6.82064 8.9257 6.70227 8.91824 6.61039L8.91831 6.61046ZM9.96004 10.321C9.69204 10.2128 9.87707 9.77592 10.1213 9.60896C10.181 9.56876 10.2569 9.51885 10.3488 9.46673C10.3544 9.49631 10.3618 9.5268 10.3646 9.55861C10.4428 10.138 10.2653 10.442 9.95997 10.321L9.96004 10.321ZM10.3426 7.77922C10.3524 7.43734 10.7328 7.24341 10.9336 7.38652C11.2697 7.63168 10.9695 8.22761 10.4806 8.21477C10.4503 8.21477 10.413 8.21171 10.3799 8.21036C10.3545 8.06793 10.342 7.92368 10.3426 7.77922ZM10.5607 9.11281C10.5174 8.9008 10.4685 8.68346 10.427 8.47542C10.5058 8.4731 10.578 8.46876 10.6409 8.46213C11.1467 8.40385 11.6025 7.68867 10.9695 7.24914C10.6255 7.00926 10.0593 7.20585 10.0742 7.89595C10.077 8.00463 10.091 8.09871 10.1022 8.19678C9.79316 8.17823 9.42822 8.15614 9.08656 8.16012C9.07492 7.86681 9.03203 7.52799 8.99197 7.22276C9.21278 7.22843 9.42848 7.15919 9.60021 7.02751C9.93252 6.71078 9.86728 5.97267 9.37041 5.88474C9.2837 5.86659 9.19387 5.86632 9.10704 5.88395C9.0202 5.90159 8.93838 5.93671 8.86712 5.98694C8.79586 6.03718 8.73683 6.10134 8.69403 6.17509C8.65124 6.24884 8.62567 6.33045 8.61907 6.41438C8.61448 6.59809 8.62697 6.78183 8.65637 6.96347C8.34547 6.96918 7.98473 6.96876 7.64354 6.98202C7.64214 6.71474 7.63422 6.35121 7.64586 5.95941C7.68549 5.96115 7.71951 5.96514 7.76147 5.96514C8.6657 5.9806 8.77242 5.28091 8.63492 5.00655C8.5659 4.87696 8.45251 4.77341 8.31332 4.71282C8.17412 4.65224 8.01736 4.63821 7.86866 4.67304C7.6109 4.72386 7.38676 4.89129 7.33498 5.64752C7.07629 5.62279 6.78637 5.58523 6.50907 5.56008C6.55381 5.42622 6.59809 5.27604 6.64376 5.10729C6.88334 4.19686 7.17884 3.00241 8.59251 3.68446C9.88592 4.30995 11.3108 6.89056 12.2295 8.7755C11.6586 8.80846 11.0961 8.92216 10.5607 9.11281ZM7.65978 5.67305C7.66445 5.59001 7.66956 5.5087 7.67656 5.42742C7.74694 4.67292 8.25498 4.74628 8.41951 4.97686C8.54348 5.15133 8.38456 5.64606 7.86858 5.67435C7.80799 5.67701 7.73475 5.67567 7.65978 5.67305ZM2.25307 11.765C1.72824 11.9439 1.53433 11.2287 2.45255 11.0383C2.4824 11.0317 2.51315 11.0251 2.54438 11.0202C2.51733 11.4028 2.43484 11.7041 2.25307 11.765ZM3.7469 10.1893C3.42205 9.22766 4.45164 9.25991 4.36774 9.92121C4.33699 10.161 4.12258 10.3077 3.82894 10.4146C3.80096 10.34 3.77393 10.2675 3.7469 10.1893ZM3.95524 12.614C3.64436 12.7523 3.34886 12.2451 3.90025 11.9611C3.96334 11.9306 4.02824 11.9037 4.09462 11.8803C4.21441 12.2664 4.16265 12.5213 3.95524 12.614ZM5.34795 10.7199C5.20299 10.1894 5.95293 9.88813 6.06854 10.4946C6.13517 10.8463 5.8886 11.0243 5.54929 11.1507C5.46744 11.0137 5.4 10.8694 5.34795 10.7199ZM6.10675 13.2104C5.91145 13.6345 5.31018 13.2975 5.66208 12.9198C5.7629 12.816 5.87908 12.7268 6.007 12.6547C6.10228 12.825 6.13725 13.0198 6.10675 13.2104V13.2104ZM7.17876 11.2495C7.11027 10.9143 7.76139 10.5689 7.86858 11.235C7.90635 11.4815 7.68216 11.6679 7.39784 11.8101C7.29766 11.6338 7.22393 11.4451 7.17876 11.2495V11.2495ZM7.97622 13.9066C7.684 13.9256 7.53204 13.5625 7.78422 13.1371C7.8197 13.0825 7.85942 13.0306 7.90305 12.9816C7.91983 13.0015 7.93894 13.0249 7.95246 13.0426C8.2382 13.3906 8.32815 13.884 7.97624 13.9065L7.97622 13.9066ZM7.94593 12.5929C7.82852 12.448 7.68957 12.2735 7.55907 12.0782C7.71258 12.011 7.85324 11.9202 7.97531 11.8093C8.25775 11.5404 8.08622 10.6895 7.46959 10.697C6.88882 10.7063 6.81891 11.2209 6.95641 11.5694C7.00784 11.6918 7.06811 11.8106 7.13681 11.925C6.89163 12.0205 6.64738 12.0907 6.51223 12.1437C6.419 12.1777 6.29408 12.2214 6.16404 12.2744C6.02935 11.9904 5.85597 11.6905 5.70122 11.421C5.90721 11.3617 6.08365 11.2338 6.19807 11.061C6.43904 10.5424 6.06617 9.88507 5.55487 10.0375C4.87297 10.2402 5.07297 10.807 5.25656 11.1908C5.26262 11.2055 5.27194 11.2222 5.2794 11.2381C5.14469 11.2775 5.00766 11.3123 4.87297 11.3521C4.72941 11.3923 4.5015 11.4506 4.26938 11.527C4.17334 11.2748 4.04937 10.9863 3.92258 10.6639C4.12979 10.6103 4.31615 10.5008 4.45908 10.3489C4.70423 9.9571 4.45663 9.00471 3.74687 9.34659C3.32973 9.54936 3.35908 10.0318 3.51104 10.511C3.28171 10.5716 3.03142 10.6188 2.79372 10.6705C2.79687 10.2941 2.77507 9.9179 2.72846 9.54409C2.44695 7.10334 5.8532 8.81333 7.49014 10.1522C8.04385 10.6041 8.6325 11.1306 9.22915 11.6749C8.76465 11.9317 8.33391 12.2398 7.94596 12.5928L7.94593 12.5929ZM0.867358 17.1749C0.438078 17.6458 0.0162843 16.9881 0.774599 16.6219C0.851996 16.5852 0.929344 16.5503 1.00904 16.515C1.03316 16.6284 1.03304 16.7452 1.00871 16.8585C0.984372 16.9719 0.936309 17.0795 0.867358 17.1749ZM1.87878 15.1703C1.78697 14.7931 2.35334 14.5316 2.59891 15.0678C2.71877 15.3307 2.50894 15.5378 2.24421 15.6925C2.08925 15.5414 1.96533 15.3644 1.87878 15.1703ZM2.69446 17.8097C2.51315 17.5734 2.6073 17.3812 3.06733 17.1016C3.14338 17.1993 3.19791 17.3104 3.22767 17.4285C3.28127 17.9011 2.83149 17.9868 2.69446 17.8097ZM4.11466 15.4455C4.26519 14.9799 4.79376 15.1575 4.82591 15.6191C4.83755 15.8011 4.61571 15.98 4.37146 16.1218C4.18222 15.8776 4.05221 15.6377 4.11466 15.4455ZM5.24724 18.4189C5.07292 18.5597 4.46747 18.3212 4.95827 17.8119C5.03457 17.7443 5.12094 17.6878 5.21461 17.644C5.50734 18.1172 5.39083 18.3018 5.24726 18.4189H5.24724ZM6.54591 16.7151C6.39478 16.5838 6.27154 16.4264 6.18283 16.2513C6.02948 15.7358 6.69877 15.6231 6.85773 16.0711C6.95785 16.3546 6.77744 16.564 6.54591 16.7151ZM7.66966 18.3734C7.71208 18.6265 7.65195 18.7471 7.46832 18.7776C7.29444 18.8067 6.92717 18.6322 7.29679 17.8959C7.30685 17.8749 7.3187 17.8549 7.33221 17.8358C7.48811 17.987 7.60375 18.1713 7.66956 18.3734L7.66966 18.3734ZM7.83047 16.8498C7.63246 17.0265 7.44849 17.2168 7.28008 17.4192C7.11042 17.2518 6.92959 17.0813 6.75946 16.9218C7.01859 16.7469 7.33507 16.4271 6.95195 15.8921C6.65692 15.4827 5.73965 15.5189 5.90744 16.303C6.00544 16.5081 6.14826 16.6912 6.32644 16.8401C6.16891 16.9174 6.02116 16.9723 5.95311 17.007C5.84777 17.0605 5.59107 17.1722 5.33833 17.2964C5.21062 17.1082 5.06612 16.9452 4.95847 16.8095C4.84658 16.673 4.71003 16.5224 4.57718 16.3709C4.93051 16.2013 5.10343 16.0294 5.02789 15.5837C5.01767 15.4534 4.96103 15.3302 4.86726 15.2344C4.77349 15.1385 4.64816 15.0758 4.5118 15.0563C4.37544 15.0368 4.23615 15.0619 4.11676 15.1273C3.99738 15.1927 3.90499 15.2946 3.85473 15.4163C3.73171 15.699 3.80673 15.8814 4.10783 16.2613C3.95962 16.3329 3.83051 16.3854 3.77828 16.4124C3.57836 16.5091 3.35321 16.6134 3.14534 16.7225C2.9412 16.4562 2.66525 16.1597 2.42056 15.892C2.53723 15.8401 2.63998 15.7638 2.72111 15.6688C2.80224 15.5739 2.85964 15.4628 2.889 15.3438C2.93421 15.0037 2.57812 14.5182 2.11574 14.6114C1.52474 14.7294 1.51168 15.199 1.80906 15.6053C1.83374 15.6376 1.9018 15.7144 1.99316 15.8169C1.80578 15.8987 1.62961 15.9584 1.5485 15.9897C1.44316 16.033 1.3187 16.0798 1.19055 16.1311C1.11176 15.597 0.938835 15.0267 0.867529 14.6782C0.477878 12.7814 3.3933 13.3958 6.0524 14.9742C6.32637 15.1358 7.24792 15.7203 8.39779 16.3683C8.18507 16.541 7.9916 16.7045 7.83037 16.8498L7.83047 16.8498ZM0.40826 22.7054C0.377951 22.5429 0.519658 22.3432 0.913982 22.0693C0.959435 22.191 0.986273 22.3182 0.993678 22.447C0.997984 23.0257 0.474893 23.0845 0.40826 22.7054ZM2.20784 20.9725C2.05814 20.8559 1.9287 20.7177 1.82425 20.563C1.76926 20.423 1.78326 20.0334 2.16263 20.0193C2.43066 20.0073 2.63619 20.5114 2.45862 20.7326C2.38445 20.821 2.30036 20.9014 2.20784 20.9725ZM3.50676 22.7682C3.49279 23.1861 2.85189 23.2846 2.8435 22.8115C2.83978 22.6511 3.02391 22.4722 3.26764 22.3017C3.40824 22.4219 3.49402 22.5892 3.50686 22.7682L3.50676 22.7682ZM4.5909 21.2164C4.58251 21.2221 4.5718 21.2287 4.56341 21.2349C4.30426 21.0065 4.11688 20.7954 4.13088 20.6567C4.18166 20.1474 4.64917 20.252 4.78992 20.5348C4.84967 20.6519 4.86243 20.7856 4.82584 20.911C4.78924 21.0364 4.70577 21.145 4.591 21.2164H4.5909ZM5.91556 23.0805C5.90762 23.1547 5.87083 23.2234 5.81234 23.2732C5.75386 23.3231 5.67788 23.3506 5.59921 23.3502C5.52054 23.3499 5.44482 23.3218 5.38681 23.2715C5.32879 23.2211 5.29264 23.1521 5.2854 23.0778C5.2953 22.9673 5.33189 22.8603 5.39234 22.7653C5.45279 22.6702 5.53548 22.5896 5.63403 22.5296C5.81404 22.7178 5.95758 22.9228 5.91565 23.0805H5.91556ZM6.80719 21.5026C6.35973 21.1497 6.21059 20.8372 6.47534 20.6359C6.54538 20.5847 6.63335 20.5607 6.72138 20.5688C6.80942 20.5768 6.89092 20.6163 6.94936 20.6792C7.10327 20.8524 7.2417 21.1524 6.80729 21.5026H6.80719ZM8.41941 22.9661C8.45368 23.0482 8.45389 23.1396 8.41999 23.2218C8.3861 23.3041 8.32063 23.3712 8.23671 23.4096C8.04373 23.4847 7.64011 23.3702 7.8792 22.4886C8.16269 22.6616 8.37895 22.819 8.41951 22.9661H8.41941ZM7.84564 21.7098C7.79672 21.8374 7.7529 21.958 7.71188 22.0747C7.60095 22.0102 7.48488 21.9421 7.34787 21.8626C7.24346 21.8016 7.14792 21.7416 7.05795 21.6828C7.06494 21.6753 7.07708 21.67 7.08405 21.6619C7.52592 21.271 7.32595 20.5218 6.81137 20.4264C6.69595 20.4019 6.57546 20.4102 6.465 20.4503C6.35453 20.4903 6.259 20.5604 6.19038 20.6517C6.12175 20.743 6.08308 20.8515 6.07922 20.9636C6.07535 21.0756 6.10646 21.1862 6.16864 21.2816C6.27612 21.4295 6.4069 21.5609 6.55643 21.6712C6.51355 21.6964 6.46927 21.7216 6.42128 21.7468C6.17117 21.8713 5.93027 22.0118 5.70022 22.1673C5.65827 22.128 5.61399 22.09 5.57057 22.0511C5.35103 21.8647 5.05553 21.6431 4.78985 21.4265C4.89462 21.3686 4.98034 21.2842 5.03746 21.1828C5.09457 21.0814 5.12083 20.967 5.11331 20.8522C5.10724 20.6843 5.04043 20.5235 4.92408 20.3968C4.80773 20.27 4.64892 20.185 4.47429 20.1561C3.98724 20.1512 3.64 20.5629 3.97513 21.0691C4.06791 21.191 4.17537 21.3022 4.29533 21.4005C4.01427 21.5577 3.63858 21.7445 3.31559 21.9402C3.21212 21.8338 3.09 21.718 2.94365 21.5873C2.85603 21.5087 2.65373 21.3492 2.44446 21.1752C2.56495 21.0949 2.65833 20.9833 2.71329 20.8538C2.76826 20.7244 2.78245 20.5826 2.75416 20.4456C2.72587 20.3086 2.6563 20.1824 2.55388 20.0821C2.45146 19.9818 2.32056 19.9118 2.17704 19.8805C2.09266 19.8752 2.00803 19.8865 1.92851 19.9138C1.84898 19.941 1.7763 19.9837 1.71505 20.0389C1.6538 20.0942 1.60533 20.1609 1.5727 20.2348C1.54006 20.3088 1.52399 20.3883 1.52548 20.4685C1.51012 20.6924 1.69328 20.9097 1.95801 21.147C1.66344 21.3347 1.31853 21.5047 1.01232 21.6792C1.00393 21.6642 0.997861 21.647 0.989471 21.6298C0.369561 20.3885 0.252585 19.5748 0.744853 19.2497C1.52323 18.7338 3.31725 18.952 5.64773 19.714C6.54591 20.0094 7.47707 20.3046 8.41858 20.5767C8.18901 20.9358 7.99714 21.3153 7.84574 21.7098H7.84564ZM16.7122 20.3267C15.4966 22.0269 12.014 21.2177 10.2815 20.8245C9.97435 20.7539 9.48494 20.6081 8.89206 20.423C9.08371 20.1193 9.30134 19.8311 9.54275 19.5612C10.1446 18.9165 10.8625 18.3784 11.663 17.9718C12.4996 18.3005 13.272 18.5147 13.8429 18.4948C15.1797 18.4498 15.595 17.5402 14.3869 17.0216C13.8676 16.7999 12.8082 17.0411 11.6728 17.6445C11.3768 17.5296 11.0608 17.3936 10.7173 17.231C10.0727 16.9258 9.47377 16.6122 8.90185 16.2985C9.62405 15.7315 10.4131 15.2458 11.2533 14.8509C11.6653 14.6734 12.0224 14.5382 12.3412 14.4357C12.5785 14.6252 12.8068 14.7997 13.0237 14.953C13.644 15.3877 14.8083 15.9398 15.1151 15.3148C15.5346 14.4614 14.3801 13.9644 13.6674 13.979C13.2473 13.9922 12.8303 14.0528 12.4253 14.1596C11.9713 13.7895 11.4544 13.3256 10.8527 12.7562C10.6812 12.5946 10.2617 12.2041 9.714 11.7168C10.3111 11.4422 10.9497 11.2575 11.6068 11.1695C12.1801 11.0943 12.7613 11.0909 13.3356 11.1594C14.0151 12.5508 14.4402 12.9161 15.0382 12.948C15.7765 12.9882 16.0664 12.2455 15.4363 11.6347C15.1067 11.3122 14.4174 11.0785 13.5887 10.9716C13.2876 10.3709 12.9641 9.66539 12.6378 8.96395C12.8107 8.9666 12.9925 8.97555 13.1841 8.99178C15.2927 9.17993 16.7907 9.88493 18.0642 11.1518C18.0167 11.2035 17.9687 11.2535 17.9207 11.3078C17.6914 11.5688 16.6575 12.4475 16.7335 13.7536C16.7824 14.5876 17.3809 14.9132 18.0097 15.2144C17.3863 15.5131 16.6442 15.9814 16.7245 17.0791C16.7813 17.868 17.4096 18.2793 18.0584 18.6653C17.9092 18.7572 17.7545 18.8549 17.5984 18.9657C17.3567 19.1195 17.1526 19.3205 16.9997 19.5552C16.8468 19.79 16.7488 20.053 16.7122 20.3267ZM12.0555 17.7828C12.5938 17.5294 13.1679 17.3511 13.7601 17.2536C14.235 17.1961 14.9239 17.3481 14.8633 17.7333C14.8046 18.0964 13.9759 18.4498 12.0555 17.7828ZM12.6545 14.3425C13.5074 14.1159 14.0374 14.1729 14.5007 14.3743C14.8279 14.5148 15.2618 15.0811 14.7878 15.2238C14.2783 15.3757 13.6239 15.0983 12.6545 14.3425ZM13.7153 11.2181C14.6414 11.3869 15.3303 11.7416 15.4912 12.1268C15.8035 12.8825 14.7832 12.8455 14.3264 12.2451C14.0954 11.9181 13.8911 11.5747 13.7153 11.2181ZM17.7671 11.9678C17.8827 11.8263 18.001 11.6974 18.118 11.5649C18.1195 12.1983 18.1208 13.4896 18.125 15.0078C17.0642 14.4812 16.4093 13.6609 17.7671 11.9678ZM18.1306 18.4299C17.5047 18.0491 17.04 17.7028 17.0609 16.8693C17.081 16.0737 17.5662 15.7163 18.125 15.4292C18.1264 16.3931 18.1288 17.4285 18.1306 18.4299ZM17.0171 20.3161C17.0432 19.6336 17.5522 19.248 18.1306 18.895C18.1344 20.2577 18.1371 21.5282 18.1376 22.4434C17.596 21.9735 16.9808 21.2601 17.0171 20.3161ZM15.8356 6.74864C15.546 6.57152 15.2247 6.44593 14.8875 6.37803C14.9369 6.12976 14.9732 5.86605 15.0003 5.62353C15.1252 5.63651 15.2513 5.63417 15.3755 5.61658C16.0113 5.47476 16.187 4.52724 15.514 4.43933C14.9574 4.36867 14.7971 4.57008 14.7216 5.34348C14.5328 5.32226 14.3445 5.29312 14.1879 5.27455C14.0318 5.25647 13.8817 5.24441 13.7423 5.23514C13.767 5.0659 13.7857 4.87028 13.7973 4.64235C13.8038 4.53545 13.8109 4.4365 13.8141 4.34372C14.9929 4.41969 14.9947 3.28091 14.5175 3.08965C13.8854 2.83433 13.6058 3.33525 13.5666 3.78628C13.5634 3.8406 13.5582 3.91657 13.5522 4.00446C13.2837 3.97534 12.9882 3.93259 12.702 3.90419C12.7705 3.55152 12.8182 3.19549 12.8446 2.83776C14.1008 2.96458 14.0858 1.65655 13.4608 1.57219C12.8982 1.4949 12.6969 1.74838 12.5645 2.5227C12.3272 2.49257 12.0788 2.45779 11.8383 2.43125C12.1171 1.67587 12.2555 0.738545 12.7556 0.490809C13.5522 0.0963461 15.5867 1.68966 16.6783 4.09812C17.5709 6.00179 18.0664 8.05115 18.1376 10.1332C17.7922 8.9825 17.0414 7.46648 15.8356 6.74864ZM15.0278 5.36511C15.0493 5.15131 15.066 4.97507 15.0842 4.87524C15.1616 4.4684 15.7936 4.41673 15.761 4.92516C15.7372 5.2918 15.4091 5.37399 15.0278 5.36513V5.36511ZM13.8393 4.03019C13.8994 3.37951 14.0056 3.19928 14.365 3.17631C14.5389 3.16618 14.8749 3.55665 14.4811 3.92993C14.2877 4.03761 14.0589 4.07335 13.8393 4.03022V4.03019ZM12.8675 2.55834C12.8768 2.45633 12.8842 2.36311 12.8936 2.29108C12.9626 1.69527 13.5666 1.55826 13.6757 1.92754C13.7657 2.24029 13.5666 2.61133 13.0385 2.5738C12.9863 2.56983 12.9262 2.56367 12.8675 2.55836V2.55834ZM16.386 25.4415C15.8766 25.385 15.706 24.8823 16.3787 24.8179C16.576 24.7924 16.7768 24.8115 16.9648 24.8734C17.1529 24.9353 17.3229 25.0385 17.4609 25.1744C17.1427 25.3716 16.7654 25.4654 16.386 25.4416V25.4415ZM20.1959 24.8179C20.8694 24.8824 20.6984 25.3851 20.1875 25.4416C19.808 25.4653 19.4306 25.3715 19.1122 25.1744C19.2506 25.0385 19.4209 24.9354 19.6091 24.8735C19.7974 24.8115 19.9984 24.7925 20.1959 24.8178V24.8179ZM18.7044 25.2128C18.4692 25.6167 18.3272 26.0633 18.2877 26.523C18.2476 26.0629 18.1054 25.616 17.8705 25.2115C18.049 25.0346 18.1906 24.8273 18.2877 24.6006C18.3843 24.8278 18.5257 25.0356 18.7044 25.2127V25.2128ZM19.8971 4.09826C20.9883 1.68989 23.0228 0.0965779 23.8189 0.491041C24.3195 0.738869 24.456 1.67619 24.7375 2.43148C24.4956 2.458 24.2453 2.49289 24.009 2.52294C23.8767 1.74862 23.6739 1.49501 23.1127 1.57242C22.4891 1.65679 22.4746 2.96481 23.7303 2.838C23.7557 3.1958 23.8032 3.55188 23.8725 3.90442C23.5863 3.93271 23.2912 3.97557 23.0223 4.00469C23.0167 3.9168 23.0111 3.84083 23.0069 3.78651C22.9678 3.33548 22.6886 2.83456 22.057 3.08988C21.5793 3.28114 21.5821 4.41993 22.7594 4.34395C22.7636 4.43669 22.7715 4.53568 22.7776 4.64258C22.7893 4.87052 22.8074 5.06621 22.8335 5.23537C22.6928 5.24465 22.5422 5.25661 22.3865 5.27478C22.2304 5.29333 22.0435 5.3225 21.8529 5.34371C21.7755 4.57022 21.6166 4.36881 21.0614 4.43956C20.3875 4.52747 20.5632 5.475 21.1984 5.61681C21.323 5.63437 21.4494 5.63671 21.5746 5.62376C21.6002 5.86628 21.6375 6.12999 21.6869 6.37826C21.3497 6.44593 21.0284 6.57145 20.7389 6.74864C19.5322 7.46648 18.7836 8.9825 18.4368 10.1332C18.5086 8.05117 19.0045 6.00191 19.8971 4.09826ZM23.7065 2.55836C23.6473 2.56367 23.5895 2.56995 23.536 2.57382C23.0069 2.61136 22.8088 2.24031 22.8997 1.92757C23.0069 1.55828 23.6128 1.69522 23.6818 2.2911C23.6893 2.36313 23.6963 2.45633 23.7065 2.55836ZM22.7343 4.03022C22.4383 4.04788 22.201 4.03253 22.0938 3.92995C21.6986 3.5567 22.0365 3.1662 22.2103 3.17633C22.5679 3.19928 22.6746 3.37953 22.7343 4.03022ZM21.5466 5.36513C21.1654 5.37399 20.8373 5.2918 20.8139 4.92518C20.7808 4.41675 21.4124 4.46847 21.4898 4.87527C21.5089 4.97512 21.5252 5.15131 21.5466 5.36513ZM18.4569 11.5649C18.5748 11.6974 18.6917 11.8264 18.8074 11.9678C20.1665 13.6609 19.5117 14.4812 18.4499 15.0078C18.4536 13.4896 18.455 12.1983 18.4569 11.5649ZM19.5145 16.8692C19.5354 17.7028 19.0703 18.0491 18.4443 18.4299C18.4468 17.4283 18.4485 16.393 18.4494 15.4292C19.0088 15.7163 19.4935 16.0759 19.5145 16.8693V16.8692ZM18.4368 22.4435C18.4382 21.5282 18.441 20.2578 18.4428 18.8951C19.0226 19.248 19.5307 19.6336 19.5583 20.3162C19.5932 21.2601 18.9771 21.9735 18.4368 22.4435ZM26.2947 20.8245C24.5599 21.2177 21.0777 22.0269 19.8626 20.3267C19.8263 20.0529 19.7283 19.7897 19.5754 19.5549C19.4224 19.3201 19.218 19.1192 18.976 18.9658C18.8195 18.855 18.6666 18.7573 18.5155 18.6654C19.1648 18.2794 19.7917 17.8681 19.8509 17.0792C19.9316 15.9815 19.188 15.5132 18.565 15.2146C19.1942 14.9132 19.7917 14.5878 19.8411 13.7538C19.9176 12.4476 18.8828 11.569 18.6535 11.308C18.6055 11.2536 18.5584 11.2036 18.5104 11.152C19.7847 9.88512 21.2818 9.18012 23.3895 8.99196C23.5834 8.97562 23.7619 8.96676 23.9358 8.96414C23.6104 9.6656 23.287 10.3711 22.9859 10.9718C22.1581 11.0787 21.4687 11.3124 21.1373 11.6348C20.5081 12.2458 20.7976 12.9884 21.5354 12.9482C22.1334 12.9163 22.5603 12.551 23.2385 11.1596C23.8129 11.0911 24.3943 11.0945 24.9677 11.1697C25.6248 11.2579 26.2634 11.4425 26.8605 11.717C26.3119 12.2043 25.8925 12.5948 25.7223 12.7564C25.1215 13.3258 24.6032 13.7896 24.1493 14.1598C23.7443 14.053 23.3273 13.9923 22.9071 13.9791C22.1953 13.9646 21.0395 14.4616 21.459 15.315C21.767 15.94 22.9305 15.3879 23.5513 14.9532C23.7676 14.7999 23.9969 14.6254 24.2327 14.4359C24.6027 14.557 24.9661 14.6955 25.3215 14.8511C26.1615 15.2465 26.9507 15.7322 27.6734 16.2987C27.1006 16.6123 26.5017 16.926 25.8547 17.2312C25.5131 17.3938 25.1971 17.5298 24.903 17.6447C23.7652 17.0413 22.7058 16.8001 22.1865 17.0218C20.9798 17.5404 21.3946 18.4499 22.7309 18.495C23.3024 18.5149 24.0747 18.3007 24.9118 17.972C25.7125 18.3785 26.4306 18.9167 27.0326 19.5614C27.2738 19.8316 27.4915 20.1198 27.6838 20.4232C27.0899 20.6081 26.6001 20.7539 26.2948 20.8245H26.2947ZM22.8587 11.2181C22.6839 11.575 22.4799 11.9184 22.2486 12.2451C21.7923 12.8455 20.7711 12.8827 21.0838 12.1268C21.245 11.7416 21.9321 11.3869 22.8587 11.2181ZM23.92 14.3425C22.9491 15.0983 22.2961 15.3757 21.7867 15.2238C21.3126 15.0811 21.7461 14.5148 22.0729 14.3743C22.5371 14.1729 23.067 14.1159 23.92 14.3425ZM24.5204 17.7828C22.5987 18.4498 21.7705 18.0964 21.7113 17.7333C21.6511 17.3481 22.3396 17.1961 22.8145 17.2536C23.4071 17.3511 23.9816 17.5294 24.5204 17.7828ZM28.3382 23.4096C28.254 23.3714 28.1883 23.3044 28.1542 23.2221C28.1201 23.1398 28.1202 23.0483 28.1546 22.9661C28.1961 22.819 28.4114 22.6617 28.6952 22.4885C28.9347 23.3702 28.5321 23.4846 28.3381 23.4096H28.3382ZM29.7654 21.5026C29.3324 21.1523 29.4704 20.8524 29.6242 20.6792C29.6828 20.6163 29.7645 20.5768 29.8526 20.5688C29.9408 20.5608 30.0289 20.5848 30.0991 20.6359C30.3643 20.8373 30.2142 21.1497 29.7653 21.5026H29.7654ZM31.2886 23.0778C31.2813 23.1521 31.2451 23.2212 31.1871 23.2715C31.129 23.3219 31.0533 23.35 30.9745 23.3503C30.8958 23.3507 30.8198 23.3232 30.7613 23.2733C30.7028 23.2234 30.6659 23.1547 30.658 23.0805C30.616 22.9228 30.7605 22.7178 30.9404 22.5296C31.0388 22.5897 31.1214 22.6703 31.1817 22.7654C31.2421 22.8604 31.2786 22.9673 31.2885 23.0778H31.2886ZM32.011 21.2349C32.0026 21.2287 31.9929 21.2221 31.9845 21.2164C31.8692 21.1454 31.7853 21.0369 31.7486 20.9114C31.7118 20.7858 31.7248 20.6519 31.785 20.5348C31.9253 20.2519 32.3928 20.1474 32.4445 20.6567C32.4589 20.7954 32.2692 21.0065 32.011 21.2349H32.011ZM33.7319 22.8114C33.7221 23.2845 33.0821 23.186 33.0681 22.7681C33.0797 22.589 33.1651 22.4215 33.3059 22.3016C33.55 22.4722 33.7336 22.6511 33.7318 22.8115L33.7319 22.8114ZM34.3667 20.9724C34.2745 20.9011 34.1906 20.8207 34.1164 20.7326C33.9365 20.5113 34.143 20.0072 34.4128 20.0192C34.7927 20.0333 34.8053 20.4229 34.7493 20.5629C34.6458 20.718 34.5165 20.8563 34.3666 20.9725L34.3667 20.9724ZM36.1677 22.7054C36.0987 23.0844 35.5776 23.0256 35.5818 22.4469C35.5885 22.3181 35.6147 22.191 35.6596 22.0693C36.0534 22.3432 36.1965 22.5429 36.1676 22.7054L36.1677 22.7054ZM35.586 21.6297C35.5767 21.6469 35.5697 21.6641 35.5627 21.6791C35.256 21.5046 34.912 21.3346 34.617 21.1468C34.8812 20.9096 35.0654 20.6923 35.0491 20.4684C35.0505 20.3883 35.0343 20.3088 35.0017 20.2349C34.9691 20.161 34.9206 20.0944 34.8594 20.0391C34.7983 19.9839 34.7257 19.9413 34.6462 19.9139C34.5668 19.8866 34.4822 19.8752 34.3979 19.8804C34.2544 19.9116 34.1235 19.9815 34.021 20.0818C33.9185 20.182 33.8488 20.3082 33.8204 20.4451C33.7919 20.582 33.806 20.7238 33.8607 20.8534C33.9155 20.9829 34.0087 21.0947 34.129 21.1751C33.9192 21.3492 33.7183 21.5086 33.6312 21.5872C33.4844 21.718 33.3623 21.8337 33.2583 21.9402C32.9367 21.7445 32.5606 21.5577 32.279 21.4004C32.3994 21.3025 32.5069 21.1913 32.5993 21.0691C32.9344 20.5629 32.5871 20.1512 32.1015 20.156C31.9266 20.1847 31.7675 20.2696 31.651 20.3964C31.5344 20.5232 31.4675 20.6841 31.4615 20.8522C31.4535 20.9669 31.4795 21.0815 31.5365 21.183C31.5936 21.2844 31.6795 21.3688 31.7844 21.4265C31.5178 21.6429 31.2237 21.8646 31.0037 22.0511C30.9599 22.09 30.9157 22.1279 30.8741 22.1672C30.6443 22.0119 30.4037 21.8714 30.1539 21.7467C30.1045 21.7215 30.0612 21.6963 30.0178 21.6712C30.1675 21.5609 30.2984 21.4295 30.4061 21.2816C30.4681 21.1861 30.499 21.0755 30.495 20.9635C30.491 20.8515 30.4523 20.7431 30.3837 20.6518C30.315 20.5606 30.2196 20.4905 30.1091 20.4504C29.9987 20.4103 29.8783 20.402 29.7629 20.4264C29.2483 20.5218 29.0479 21.271 29.4912 21.6619C29.4989 21.6697 29.5074 21.6767 29.5168 21.6828C29.4264 21.7415 29.3299 21.8014 29.2274 21.8625C29.0904 21.9421 28.9724 22.0101 28.8624 22.0746C28.8214 21.958 28.7776 21.8374 28.7286 21.7097C28.5772 21.3153 28.3855 20.9358 28.1562 20.5767C29.0972 20.3046 30.0285 20.0095 30.9262 19.714C33.2553 18.952 35.053 18.7338 35.83 19.2497C36.3219 19.5749 36.2044 20.3885 35.5859 21.6298L35.586 21.6297Z" fill="#0C1F1E"/> </svg> </a> </div> <div class="header__bottom__middle "> <div class="header__bottom__logo header__bottom__logo--property"> <a href="/warsaw/" target="_blank"> <img class="header__logo d-md-none" src="/content/dam/raffles-aem/property-logos/logo-warsaw-small.svg" alt="Logo"/> </a> </div> <ul class="header__property-menu"> <li class="header__property-menu__item"> <a href="/warsaw/about/" target="_self" class="header__property-menu__link">About</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/rooms-and-suites/" target="_self" class="header__property-menu__link">Rooms & Suites</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/dining/" target="_self" class="header__property-menu__link">Dining</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/spa/" target="_self" class="header__property-menu__link">Wellness</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/experiences/" target="_self" class="header__property-menu__link">Experiences</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/occasions/" target="_self" class="header__property-menu__link">Occasions</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/offers/" target="_self" class="header__property-menu__link">Offers</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/gallery/" target="_self" class="header__property-menu__link">Gallery</a> </li> <li class="header__property-menu__item"> <a href="https://giftcards.raffles.com/Warsaw" target="_blank" class="header__property-menu__link">Gift Card</a> </li> <li class="header__property-menu__item"> <a href="/warsaw/festive-season/" target="_self" class="header__property-menu__link">Festive</a> </li> </ul> </div> <div class="header__bottom__right"> <div class="header__item header__scroll__dropdown"> <button type="button" class="header__label header__label--dropdown"> Contact <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 1L5 5L9 1" stroke="#727C74"/> </svg> </button> <div class="header__dropdown header__dropdown--contacts"> <!-- Contacts Dropdown For Corp --> <!-- Contacts Dropdown For Corp --> <!-- Contacts Dropdown For Property --> <div> <div class="header__dropdown__label header__dropdown__label--contacts"> CONCIERGE <button type="button" class="header__dropdown__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.38285" y1="0.646447" x2="18.3534" y2="17.617" stroke="#727C74"/> <line x1="0.675743" y1="17.6462" x2="17.6463" y2="0.67564" stroke="#727C74"/> </svg> </button> </div> <ul class="header__dropdown__list header__dropdown__list--contacts"> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--phone" href="/contact-us/telephone-numbers-with-access-code/">(+48) 22 255 95 00</a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--envelope" href="mailto:concierge.warsaw@raffles.com">concierge.warsaw@raffles.com</a> </li> </ul> <div class="header__dropdown__label header__dropdown__label--contacts"> RESERVATION </div> <ul class="header__dropdown__list header__dropdown__list--contacts"> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--phone" href="tel:(+48)%2022%20255%2095%2000">(+48) 22 255 95 00</a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--envelope" href="mailto:warsaw@raffles.com">warsaw@raffles.com</a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link icon icon--map" href="http://maps.google.com/?q=Raffles%20Europejski%20Warsaw%20" target="_blank"> <div> <p> Krakowskie Przedmieście 13 </p> <p> 00-071 Warsaw </p> <p> Poland </p> </div> </a> </li> </ul> </div> <div class="header__item"> <div class="xf-button"> <a type="button" href="#" class="modal-trigger-open btn " data-modal-id="#modal_bottommenu_id9087"> Contact Us </a> <div class="signup-form-newsletter-wrapper"> <div class="modal-b modal-b--full" role="dialog" tabindex="0" aria-modal="true" id="modal_bottommenu_id9087"> <div class="modal-backdrop modal-backdrop--no-close"></div> <div class="modal-wrapper"> <div class="modal-container"> <div class="xfpage page basicpage"> <div class="xf-content-height"> <div class="root container responsivegrid"> <div id="container-2a1b752c68" class="cmp-container"> <div class="xf-form"> <div class="xf-form-b background-color__brand-teal" style="background: #C9DADC"> <div class="xf-form-close"> <a href="#" class="modal-trigger-close"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 12.5L20.9706 20.9706L21.6777 20.2635L13.2071 11.7929L20.9706 4.02939L20.2635 3.32228L12.5 11.0858L4.70718 3.29297L4.00008 4.00008L11.7929 11.7929L3.29297 20.2928L4.00008 21L12.5 12.5Z" fill="white"/> </svg> <span>Close</span> </a> </div> <div class="xf-form-container"> <div class="xf-form-container__picture"> <div data-cmp-is="image" data-cmp-widths="575,991,1199,1920" data-cmp-dmimage data-cmp-src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=%7B.width%7D&ts=1715970280689&dpr=off" data-asset-id="b30a3fde-c541-4ec1-ae33-0ab42e6e995f" data-cmp-filereference="/content/dam/remote/brands/raf/hotels/europe/pl/warsaw/a7w6/aja_p_5921-73.jpg" id="image-baa5b19c6a" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <img src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&ts=1715970280689&dpr=off" srcset="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=575&ts=1715970280689&dpr=off 575w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=991&ts=1715970280689&dpr=off 991w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1199&ts=1715970280689&dpr=off 1199w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1920&ts=1715970280689&dpr=off 1920w" loading="lazy" class="cmp-image__image" itemprop="contentUrl" width="7383" height="4925" alt="Raffles Europejski Warsaw"/> </div> </div> <div class="xf-form-container__content"> <div class="xf-form--container__content-header"> <div class="xf-form-container__logo"> <img src="/content/dam/raffles-aem/property-logos/logo-warsaw-large.svg" alt=""/> </div> <div class="xf-form-container__description"> <p>Thank you for your interest in Raffles Europejski Warsaw. </p> <p>Please would you kindly provide us with details of your request using the form below.</p> </div> <div class="contactstable__title contactstable__title--lg c-appeared"></div> <div class="contactstable__content c-appeared"> <ul class="contactstable__list c-appeared"> <li class="contactstable__item icon icon--phone"> <a href="tel:(+48)%2022%20255%2095%2000" class="contactstable__link">(+48) 22 255 95 00</a> </li> <li class="contactstable__item icon icon--envelope"> <a href="mailto:warsaw@raffles.com" class="contactstable__link">warsaw@raffles.com</a> </li> <li class="contactstable__item icon icon--map"> <a href="http://maps.google.com/?q=Krakowskie%20Przedmieście%2013%20%2000-071,%20Warsaw,%20Poland" class="contactstable__link" target="_blank">Krakowskie Przedmieście 13 00-071, Warsaw, Poland</a> </li> </ul> </div> </div> <div class="xf-form-container__form-message-successfully js-form-message-successfully"> <p>Thank you for stepping into our Raffles world. We look foward to being in touch.</p> </div> <form action="/xf/en/site/contact_forms/inquiry-warsaw/master/_jcr_content/root/xf_form.xf-form.html" method="post" class="js-send-flexible-form xf-form-container__form" data-site-key="6LchgrspAAAAAPR6LWXGjMgt1Z47ot1FdagFkduu"> <div class="popup-form-fieldset__title"></div> <div class="xf-form-container__form-field"> <label> <span class="label">Name</span> <input name="flexible_form_input_Name" data-error-message="This field is required " required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Email </span> <input name="flexible_form_input_EMAIL" data-error-message="This field is required " data-validation-message="Incorrect Email Format" data-custom-validation="email" required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Phone</span> <input name="flexible_form_input_PHONE" data-error-message="This field is required " data-validation-message="Incorrect Phone Format " data-custom-validation="phone" required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Message</span> <textarea name="flexible_form_input_Message"></textarea> </label> </div> <div class="xf-form-container__form-field"> <label class="label-checkbox"> <input type="checkbox" name="flexible_form_input_"/> <span></span> <p>Please indicate you have read and agree to the <a href="https://all.accor.com/information/legal/data-protection.en.shtml?_gl=1*y9e5gv*_ga*MTEzOTE1OTU0NS4xNzA5MjQ5OTE1*_ga_CW6513Y003*MTcxMzM4NDIyMi4zLjAuMTcxMzM4NDIyMi4wLjAuMA..*_fplc*NDMlMkJVc002VmppJTJGZVJ1Nk1SJTJGQURoT2xLRXFsaTJubzVQVXBLaU4zcUtxcFJtS2NjNk15OHRqSnNKd1hXa00xcU1xSmRKeGhhVTE1SlI5VU43T05qblMzSnUlMkYzY0JBYXFuM29saHdJMGJHNjQlMkZTd204Z1IxY2tsWTdQcHZQdyUzRCUzRA..*_ga_KS93RBNSHZ*MTcxMzM4MDM1Ni4xMC4xLjE3MTMzODA0MjkuNjAuMC4w&_ga=2.103966144.1703033639.1713308324-1139159545.1709249915" target="_blank" rel="noopener noreferrer">privacy policy</a> of Raffles Hotels & Resorts. Your details are private and will never be shared with any third parties.</p> </label> </div> <div class="xf-form-container__form-control"> <div class="xf-form-container__form-message-error js-form-message-error"> <p>An error has occurred. Please try again later.</p> </div> <button name="" id="bt_submit" class="btn">Submit</button> </div> <div class="xf-form-container__form-field reCaptcha-info"> <p>The site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy" target="_blank" rel="noopener noreferrer">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.</p> </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Contacts Dropdown For Property --> </div> </div> <div class="header__item"> <a class="btn header__booking-link header__booking-link--desktop" href="/warsaw/booking/#/booking/step-1" target="_blank">Book</a> </div> </div> </div> <!-- Menu For Property/Restaurant End --> <!-- Left Menu Start --> <div class="header-menu d-none"> <div class="header-menu__wrapper"> <div class="header-menu__mobile-line header-menu__mobile-line--property"> <div class="header-menu__property__desktop"> <div class="header-menu__section header-menu__section--first"> <button type="button" class="header__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <div class="header-menu__section header-menu__section--second"> <div class="header-menu__logo"> <a href="/warsaw/" class="d-md-none" target="_blank"> <img class="header__logo header__logo--mobile-properties" src="/content/dam/raffles-aem/property-logos/logo-icon-white.svg" alt="Logo"/> </a> <div class="header__logo header__logo--desktop-properties"> <a href="/" target="_blank"> <svg width="200" height="28" viewBox="0 0 200 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24.0172 9.19143C24.0686 7.52269 23.6366 5.87476 22.7736 4.4469C21.9652 3.16269 20.7965 2.14645 19.4141 1.52573C17.6197 0.766204 15.681 0.41051 13.7347 0.483731H0V26.5325H4.71432V18.0852H13.1035L19.1171 26.5323H25.0564L18.5232 17.378C22.1855 16.0141 24.0168 13.2852 24.0172 9.19143ZM16.7414 13.1731C15.7216 13.4934 14.6537 13.6321 13.5861 13.5826H4.71432V5.06093H13.5491C14.72 5.00069 15.8917 5.16487 17.0013 5.54466C18.5603 6.19 19.3398 7.41799 19.3399 9.22862C19.3399 11.2882 18.4737 12.603 16.7414 13.1731ZM41.5217 0.483731L29.6431 26.5325H34.7286L37.1416 21.0622H51.9156L54.3656 26.5323H59.5625L47.7209 0.483731H41.5217ZM39.1089 16.5595L44.5286 4.31661L49.9481 16.5595H39.1089ZM66.0577 0.483731H86.5854V5.13531H70.8094V11.4243H84.8411V16.0388H70.8094V26.5323H66.0579L66.0577 0.483731ZM94.0092 0.483731H114.537V5.13531H98.7606V11.4243H112.792V16.0388H98.7606V26.5323H94.0092V0.483731ZM126.861 21.8438H142.192V26.5325H121.961V0.483731H126.861V21.8438ZM153.017 21.9554H170.167V26.5325H148.34V0.483731H169.647V5.06093H153.017V11.052H167.605V15.592H153.017V21.9554ZM200 18.7922C200.012 19.9294 199.758 21.0537 199.258 22.0748C198.759 23.0959 198.027 23.9854 197.123 24.6718C195.205 26.2347 192.39 27.0161 188.678 27.0161C183.233 27.0161 179.175 25.4036 176.502 22.1786L180.14 19.1272C181.171 20.293 182.462 21.1982 183.908 21.7691C185.524 22.3297 187.228 22.5944 188.938 22.5506C191.041 22.5506 192.618 22.2095 193.671 21.5273C194.138 21.2744 194.53 20.9018 194.807 20.4475C195.085 19.9933 195.237 19.4735 195.248 18.9411C195.248 16.9816 193.454 15.828 189.866 15.4804L186.785 15.1826C183.79 14.8849 181.47 14.1717 179.824 13.0429C178.178 11.9143 177.356 10.1591 177.356 7.77737C177.332 6.67633 177.579 5.5863 178.074 4.60323C178.569 3.62015 179.298 2.77416 180.196 2.13971C182.089 0.713236 184.792 0 188.306 0C193.182 0 196.894 1.43887 199.443 4.31661L195.953 7.36802C194.196 5.43306 191.585 4.46556 188.121 4.46553C185.992 4.46553 184.458 4.7756 183.518 5.39574C182.577 6.01618 182.107 6.73562 182.107 7.55407C182.09 8.04934 182.226 8.53781 182.495 8.95367C182.763 9.36953 183.153 9.69279 183.611 9.87989C185.047 10.4646 186.572 10.7981 188.121 10.8659L191.016 11.1265C193.813 11.3747 196.009 12.1314 197.605 13.3965C199.201 14.6616 200 16.4601 200 18.7922Z" fill="white"/> </svg> </a> </div> </div> </div> </div> <div class="header-menu__property__mobile"> <div> <a href="/" target="_blank"> <img class="header-menu__mobile-logo header-menu__mobile-logo--properties" src="/content/dam/raffles-aem/property-logos/logo-icon-white.svg" alt="Logo"/> </a> </div> <div class="header-menu__section header-menu__section--second"> <div class="header-menu__logo"> <a href="/warsaw/" target="_blank"> <img class="header__logo header__logo--mobile" src="/content/dam/raffles-aem/property-logos/logo-warsaw-small-white.svg" alt="Logo"/> </a> </div> </div> <div class="header-menu__section header-menu__section--first"> <button type="button" class="header__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> </div> </div> <button type="button" class="header-menu__property-destinations"> Find a Raffles Destination <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> </button> <div class="header-menu__section header-menu__section--third"> <ul class="header-menu__nav header-menu__nav--property-desktop"> <li class="header-menu__nav__item header-menu__nav__item--destinations"> <button type="button"> <span class="header-menu__nav__link">Destinations</span> <span class="header-menu__trigger"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" viewBox="0 0 50 24" fill="none"> <path d="M47.7971 11.2854C45.5111 10.8489 39.8017 10.0837 38.5008 9.2739L38.2131 9.09126L38.4108 8.81463C38.7793 8.3195 39.0705 7.77188 39.2746 7.19028C40.1296 4.68782 40.0129 1.97329 38.9974 0.734187C38.5281 0.161394 37.8813 -0.0777445 37.0758 0.022057C36.7373 0.0569597 36.4113 0.168788 36.1231 0.348905C35.8349 0.529022 35.5921 0.772609 35.4136 1.06086C34.5966 2.32129 34.6385 4.537 35.0926 5.98175L35.1357 6.12051C35.3623 6.85525 35.7046 7.96564 36.8943 9.0234L37.1506 9.25124L36.9073 9.49269C35.4726 10.9169 33.5321 11.6389 31.1392 11.6389C31.1227 11.6389 31.1062 11.6389 31.0895 11.6388C30.8399 11.6388 5.93647 11.6367 0.656237 11.6274H0.655511C0.606805 11.6274 0.558576 11.637 0.513579 11.6555C0.468583 11.6741 0.427699 11.7012 0.393263 11.7355C0.323716 11.8047 0.284654 11.8985 0.284668 11.9963C0.284682 12.0942 0.323773 12.188 0.39334 12.2572C0.462907 12.3263 0.557252 12.3652 0.65562 12.3652H0.655836C5.9346 12.3607 30.8398 12.3529 31.0908 12.3529H31.111C33.5197 12.3529 35.4698 13.0763 36.9073 14.5033L37.1504 14.7445L36.8946 14.9724C35.7029 16.0338 35.361 17.145 35.1347 17.8804L35.0928 18.0159C34.6383 19.4633 34.5966 21.6813 35.4145 22.9416C35.5929 23.2294 35.8354 23.4726 36.1234 23.6523C36.4113 23.832 36.7369 23.9435 37.0751 23.9781C37.8812 24.0776 38.5285 23.8375 38.9982 23.2634C40.0138 22.0218 40.1303 19.3113 39.2754 16.8184C39.0739 16.2342 38.7826 15.6845 38.4117 15.189C38.4117 15.189 38.1803 14.9913 38.2119 14.9121C40.166 14.0643 41.8175 13.8893 43.5339 13.5365C45.3813 13.1568 49.6721 12.5458 49.5755 12.1054C49.4529 11.5464 47.7971 11.2854 47.7971 11.2854ZM35.5102 3.09422C35.7306 0.925394 36.876 0.7479 37.2217 0.745219C37.225 0.745219 37.2283 0.745219 37.2316 0.745219C38.069 0.745219 39.0529 1.57783 39.235 3.12858C39.3914 4.40957 39.0293 6.5902 37.864 8.34738L37.649 8.67167L37.3677 8.40204C35.9316 7.02531 35.2893 5.18984 35.5102 3.09422ZM39.2348 20.8937C39.0524 22.4395 38.0692 23.2696 37.2324 23.2696H37.2226C36.8766 23.2668 35.7306 23.0896 35.5102 20.9224C35.2879 18.8221 35.9305 16.9883 37.3686 15.6205L37.6497 15.3531L37.864 15.6759C39.0285 17.4298 39.391 19.6101 39.2348 20.8937ZM43.5134 12.7245C42.1561 12.9571 38.8328 13.6655 37.9362 14.2131L37.7216 14.3441L37.5406 14.1701C36.6972 13.3697 35.71 12.7343 34.6303 12.297L33.8639 11.9944L34.6319 11.6961C35.7143 11.2622 36.7037 10.6273 37.5474 9.82532L37.7291 9.65141L37.9434 9.78334C41.3548 11.1766 42.8449 11.0718 44.9216 11.5725C45.6448 11.7469 47.2807 11.9191 47.9135 12.0477C47.138 12.2913 44.7193 12.5178 43.5134 12.7245Z" fill="white"/> </svg> </span> </button> </li> <li class="header-menu__nav__item"> <a href="/hotels-resorts/" target="_self" class="header-menu__nav__link">Hotels & Resorts</a> </li> <li class="header-menu__nav__item"> <a href="/residences/" target="_self" class="header-menu__nav__link">Residences</a> </li> <li class="header-menu__nav__item"> <a href="/experiences/" target="_self" class="header-menu__nav__link">Experiences</a> </li> <li class="header-menu__nav__item"> <a href="/offers/" target="_self" class="header-menu__nav__link">Offers</a> </li> <li class="header-menu__nav__item"> <a href="/meetings-and-events/" target="_self" class="header-menu__nav__link">Occasions</a> </li> <li class="header-menu__nav__item"> <a href="/sustainability-by-raffles/" target="_self" class="header-menu__nav__link">Sustainability by Raffles</a> </li> <li class="header-menu__nav__item"> <a href="/opening-soon/" target="_self" class="header-menu__nav__link">Opening Soon</a> </li> <li class="header-menu__nav__item"> <a href="/about/" target="_self" class="header-menu__nav__link">About</a> </li> <li class="header-menu__nav__item"> <a href="/sign-up-newsletter/" target="_self" class="header-menu__nav__link">Sign Up Newsletter</a> </li> </ul> <ul class="header-menu__nav header-menu__nav--property"> <li class="header-menu__nav__item"> <a href="/warsaw/about/" target="_self" class="header-menu__nav__link">About</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/rooms-and-suites/" target="_self" class="header-menu__nav__link">Rooms & Suites</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/dining/" target="_self" class="header-menu__nav__link">Dining</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/spa/" target="_self" class="header-menu__nav__link">Wellness</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/experiences/" target="_self" class="header-menu__nav__link">Experiences</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/occasions/" target="_self" class="header-menu__nav__link">Occasions</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/offers/" target="_self" class="header-menu__nav__link">Offers</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/gallery/" target="_self" class="header-menu__nav__link">Gallery</a> </li> <li class="header-menu__nav__item"> <a href="https://giftcards.raffles.com/Warsaw" target="_blank" class="header-menu__nav__link">Gift Card</a> </li> <li class="header-menu__nav__item"> <a href="/warsaw/festive-season/" target="_self" class="header-menu__nav__link">Festive</a> </li> </ul> <!-- Second Menu Menu Start --> <div class="header-menu__sub"> <div class="header-menu__row"> <span>Destinations</span> <button type="button" class="header-menu__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <button type="button" class="header-menu__back"> <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> Back </button> <ul class="header-menu__regions"> <li class="header-menu__region"> <button type="button" class="header-menu__region__wrap"> <span class="header-menu__region__name">Asia Pacific</span> <span class="header-menu__region__trigger"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" viewBox="0 0 50 24" fill="none"> <path d="M47.7971 11.2854C45.5111 10.8489 39.8017 10.0837 38.5008 9.2739L38.2131 9.09126L38.4108 8.81463C38.7793 8.3195 39.0705 7.77188 39.2746 7.19028C40.1296 4.68782 40.0129 1.97329 38.9974 0.734187C38.5281 0.161394 37.8813 -0.0777445 37.0758 0.022057C36.7373 0.0569597 36.4113 0.168788 36.1231 0.348905C35.8349 0.529022 35.5921 0.772609 35.4136 1.06086C34.5966 2.32129 34.6385 4.537 35.0926 5.98175L35.1357 6.12051C35.3623 6.85525 35.7046 7.96564 36.8943 9.0234L37.1506 9.25124L36.9073 9.49269C35.4726 10.9169 33.5321 11.6389 31.1392 11.6389C31.1227 11.6389 31.1062 11.6389 31.0895 11.6388C30.8399 11.6388 5.93647 11.6367 0.656237 11.6274H0.655511C0.606805 11.6274 0.558576 11.637 0.513579 11.6555C0.468583 11.6741 0.427699 11.7012 0.393263 11.7355C0.323716 11.8047 0.284654 11.8985 0.284668 11.9963C0.284682 12.0942 0.323773 12.188 0.39334 12.2572C0.462907 12.3263 0.557252 12.3652 0.65562 12.3652H0.655836C5.9346 12.3607 30.8398 12.3529 31.0908 12.3529H31.111C33.5197 12.3529 35.4698 13.0763 36.9073 14.5033L37.1504 14.7445L36.8946 14.9724C35.7029 16.0338 35.361 17.145 35.1347 17.8804L35.0928 18.0159C34.6383 19.4633 34.5966 21.6813 35.4145 22.9416C35.5929 23.2294 35.8354 23.4726 36.1234 23.6523C36.4113 23.832 36.7369 23.9435 37.0751 23.9781C37.8812 24.0776 38.5285 23.8375 38.9982 23.2634C40.0138 22.0218 40.1303 19.3113 39.2754 16.8184C39.0739 16.2342 38.7826 15.6845 38.4117 15.189C38.4117 15.189 38.1803 14.9913 38.2119 14.9121C40.166 14.0643 41.8175 13.8893 43.5339 13.5365C45.3813 13.1568 49.6721 12.5458 49.5755 12.1054C49.4529 11.5464 47.7971 11.2854 47.7971 11.2854ZM35.5102 3.09422C35.7306 0.925394 36.876 0.7479 37.2217 0.745219C37.225 0.745219 37.2283 0.745219 37.2316 0.745219C38.069 0.745219 39.0529 1.57783 39.235 3.12858C39.3914 4.40957 39.0293 6.5902 37.864 8.34738L37.649 8.67167L37.3677 8.40204C35.9316 7.02531 35.2893 5.18984 35.5102 3.09422ZM39.2348 20.8937C39.0524 22.4395 38.0692 23.2696 37.2324 23.2696H37.2226C36.8766 23.2668 35.7306 23.0896 35.5102 20.9224C35.2879 18.8221 35.9305 16.9883 37.3686 15.6205L37.6497 15.3531L37.864 15.6759C39.0285 17.4298 39.391 19.6101 39.2348 20.8937ZM43.5134 12.7245C42.1561 12.9571 38.8328 13.6655 37.9362 14.2131L37.7216 14.3441L37.5406 14.1701C36.6972 13.3697 35.71 12.7343 34.6303 12.297L33.8639 11.9944L34.6319 11.6961C35.7143 11.2622 36.7037 10.6273 37.5474 9.82532L37.7291 9.65141L37.9434 9.78334C41.3548 11.1766 42.8449 11.0718 44.9216 11.5725C45.6448 11.7469 47.2807 11.9191 47.9135 12.0477C47.138 12.2913 44.7193 12.5178 43.5134 12.7245Z" fill="white"/> </svg> </span> </button> <!-- Third Menu Start --> <div class="header-menu__inner"> <div class="header-menu__row"> <span>Asia Pacific</span> <button type="button" class="header-menu__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <button type="button" class="header-menu__back"> <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> Back to Destinations </button> <ul class="header-menu__countries"> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">China</span> </div> <div class="header-menu__cities"> <a href="/shenzhen/" class="header-menu__cities__link" target="_blank">Shenzhen</a> <a href="/hainan/" class="header-menu__cities__link" target="_blank">Hainan</a> <a href="/macau/" class="header-menu__cities__link" target="_blank">Macau</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Singapore</span> </div> <div class="header-menu__cities"> <a href="/singapore/" class="header-menu__cities__link" target="_blank">Singapore</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">India</span> </div> <div class="header-menu__cities"> <a href="/udaipur/" class="header-menu__cities__link" target="_blank">Udaipur</a> <a href="/jaipur/" class="header-menu__cities__link" target="_blank">Jaipur</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Indonesia</span> </div> <div class="header-menu__cities"> <a href="/bali/" class="header-menu__cities__link" target="_blank">Bali</a> <a href="/jakarta/" class="header-menu__cities__link" target="_blank">Jakarta</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Cambodia</span> </div> <div class="header-menu__cities"> <a href="/phnom-penh/" class="header-menu__cities__link" target="_blank">Phnom Penh</a> <a href="/siem-reap/" class="header-menu__cities__link" target="_blank">Siem Reap</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Philippines</span> </div> <div class="header-menu__cities"> <a href="/makati/" class="header-menu__cities__link" target="_blank">Manila</a> </div> </li> </ul> <a href="/destinations/asia-pacific/" class="header-menu__view-all" target="_blank">View All Asia Pacific</a> </div> <!-- Third Menu End --> </li> <li class="header-menu__region"> <button type="button" class="header-menu__region__wrap"> <span class="header-menu__region__name">Middle East</span> <span class="header-menu__region__trigger"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" viewBox="0 0 50 24" fill="none"> <path d="M47.7971 11.2854C45.5111 10.8489 39.8017 10.0837 38.5008 9.2739L38.2131 9.09126L38.4108 8.81463C38.7793 8.3195 39.0705 7.77188 39.2746 7.19028C40.1296 4.68782 40.0129 1.97329 38.9974 0.734187C38.5281 0.161394 37.8813 -0.0777445 37.0758 0.022057C36.7373 0.0569597 36.4113 0.168788 36.1231 0.348905C35.8349 0.529022 35.5921 0.772609 35.4136 1.06086C34.5966 2.32129 34.6385 4.537 35.0926 5.98175L35.1357 6.12051C35.3623 6.85525 35.7046 7.96564 36.8943 9.0234L37.1506 9.25124L36.9073 9.49269C35.4726 10.9169 33.5321 11.6389 31.1392 11.6389C31.1227 11.6389 31.1062 11.6389 31.0895 11.6388C30.8399 11.6388 5.93647 11.6367 0.656237 11.6274H0.655511C0.606805 11.6274 0.558576 11.637 0.513579 11.6555C0.468583 11.6741 0.427699 11.7012 0.393263 11.7355C0.323716 11.8047 0.284654 11.8985 0.284668 11.9963C0.284682 12.0942 0.323773 12.188 0.39334 12.2572C0.462907 12.3263 0.557252 12.3652 0.65562 12.3652H0.655836C5.9346 12.3607 30.8398 12.3529 31.0908 12.3529H31.111C33.5197 12.3529 35.4698 13.0763 36.9073 14.5033L37.1504 14.7445L36.8946 14.9724C35.7029 16.0338 35.361 17.145 35.1347 17.8804L35.0928 18.0159C34.6383 19.4633 34.5966 21.6813 35.4145 22.9416C35.5929 23.2294 35.8354 23.4726 36.1234 23.6523C36.4113 23.832 36.7369 23.9435 37.0751 23.9781C37.8812 24.0776 38.5285 23.8375 38.9982 23.2634C40.0138 22.0218 40.1303 19.3113 39.2754 16.8184C39.0739 16.2342 38.7826 15.6845 38.4117 15.189C38.4117 15.189 38.1803 14.9913 38.2119 14.9121C40.166 14.0643 41.8175 13.8893 43.5339 13.5365C45.3813 13.1568 49.6721 12.5458 49.5755 12.1054C49.4529 11.5464 47.7971 11.2854 47.7971 11.2854ZM35.5102 3.09422C35.7306 0.925394 36.876 0.7479 37.2217 0.745219C37.225 0.745219 37.2283 0.745219 37.2316 0.745219C38.069 0.745219 39.0529 1.57783 39.235 3.12858C39.3914 4.40957 39.0293 6.5902 37.864 8.34738L37.649 8.67167L37.3677 8.40204C35.9316 7.02531 35.2893 5.18984 35.5102 3.09422ZM39.2348 20.8937C39.0524 22.4395 38.0692 23.2696 37.2324 23.2696H37.2226C36.8766 23.2668 35.7306 23.0896 35.5102 20.9224C35.2879 18.8221 35.9305 16.9883 37.3686 15.6205L37.6497 15.3531L37.864 15.6759C39.0285 17.4298 39.391 19.6101 39.2348 20.8937ZM43.5134 12.7245C42.1561 12.9571 38.8328 13.6655 37.9362 14.2131L37.7216 14.3441L37.5406 14.1701C36.6972 13.3697 35.71 12.7343 34.6303 12.297L33.8639 11.9944L34.6319 11.6961C35.7143 11.2622 36.7037 10.6273 37.5474 9.82532L37.7291 9.65141L37.9434 9.78334C41.3548 11.1766 42.8449 11.0718 44.9216 11.5725C45.6448 11.7469 47.2807 11.9191 47.9135 12.0477C47.138 12.2913 44.7193 12.5178 43.5134 12.7245Z" fill="white"/> </svg> </span> </button> <!-- Third Menu Start --> <div class="header-menu__inner"> <div class="header-menu__row"> <span>Middle East</span> <button type="button" class="header-menu__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <button type="button" class="header-menu__back"> <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> Back to Destinations </button> <ul class="header-menu__countries"> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Saudi Arabia</span> </div> <div class="header-menu__cities"> <a href="/makkah/" class="header-menu__cities__link" target="_blank">Makkah</a> <a href="/jeddah/" class="header-menu__cities__link" target="_blank">Jeddah</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Qatar</span> </div> <div class="header-menu__cities"> <a href="/doha/" class="header-menu__cities__link" target="_blank">Doha</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Bahrain</span> </div> <div class="header-menu__cities"> <a href="/bahrain/" class="header-menu__cities__link" target="_blank">Bahrain</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">UAE</span> </div> <div class="header-menu__cities"> <a href="/dubai/" class="header-menu__cities__link" target="_blank">Dubai</a> <a href="/thepalm-dubai/" class="header-menu__cities__link" target="_blank">Dubai - The Palm</a> </div> </li> </ul> <a href="/destinations/middle-east/" class="header-menu__view-all" target="_blank">View All Middle East</a> </div> <!-- Third Menu End --> </li> <li class="header-menu__region"> <button type="button" class="header-menu__region__wrap"> <span class="header-menu__region__name">North America</span> <span class="header-menu__region__trigger"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" viewBox="0 0 50 24" fill="none"> <path d="M47.7971 11.2854C45.5111 10.8489 39.8017 10.0837 38.5008 9.2739L38.2131 9.09126L38.4108 8.81463C38.7793 8.3195 39.0705 7.77188 39.2746 7.19028C40.1296 4.68782 40.0129 1.97329 38.9974 0.734187C38.5281 0.161394 37.8813 -0.0777445 37.0758 0.022057C36.7373 0.0569597 36.4113 0.168788 36.1231 0.348905C35.8349 0.529022 35.5921 0.772609 35.4136 1.06086C34.5966 2.32129 34.6385 4.537 35.0926 5.98175L35.1357 6.12051C35.3623 6.85525 35.7046 7.96564 36.8943 9.0234L37.1506 9.25124L36.9073 9.49269C35.4726 10.9169 33.5321 11.6389 31.1392 11.6389C31.1227 11.6389 31.1062 11.6389 31.0895 11.6388C30.8399 11.6388 5.93647 11.6367 0.656237 11.6274H0.655511C0.606805 11.6274 0.558576 11.637 0.513579 11.6555C0.468583 11.6741 0.427699 11.7012 0.393263 11.7355C0.323716 11.8047 0.284654 11.8985 0.284668 11.9963C0.284682 12.0942 0.323773 12.188 0.39334 12.2572C0.462907 12.3263 0.557252 12.3652 0.65562 12.3652H0.655836C5.9346 12.3607 30.8398 12.3529 31.0908 12.3529H31.111C33.5197 12.3529 35.4698 13.0763 36.9073 14.5033L37.1504 14.7445L36.8946 14.9724C35.7029 16.0338 35.361 17.145 35.1347 17.8804L35.0928 18.0159C34.6383 19.4633 34.5966 21.6813 35.4145 22.9416C35.5929 23.2294 35.8354 23.4726 36.1234 23.6523C36.4113 23.832 36.7369 23.9435 37.0751 23.9781C37.8812 24.0776 38.5285 23.8375 38.9982 23.2634C40.0138 22.0218 40.1303 19.3113 39.2754 16.8184C39.0739 16.2342 38.7826 15.6845 38.4117 15.189C38.4117 15.189 38.1803 14.9913 38.2119 14.9121C40.166 14.0643 41.8175 13.8893 43.5339 13.5365C45.3813 13.1568 49.6721 12.5458 49.5755 12.1054C49.4529 11.5464 47.7971 11.2854 47.7971 11.2854ZM35.5102 3.09422C35.7306 0.925394 36.876 0.7479 37.2217 0.745219C37.225 0.745219 37.2283 0.745219 37.2316 0.745219C38.069 0.745219 39.0529 1.57783 39.235 3.12858C39.3914 4.40957 39.0293 6.5902 37.864 8.34738L37.649 8.67167L37.3677 8.40204C35.9316 7.02531 35.2893 5.18984 35.5102 3.09422ZM39.2348 20.8937C39.0524 22.4395 38.0692 23.2696 37.2324 23.2696H37.2226C36.8766 23.2668 35.7306 23.0896 35.5102 20.9224C35.2879 18.8221 35.9305 16.9883 37.3686 15.6205L37.6497 15.3531L37.864 15.6759C39.0285 17.4298 39.391 19.6101 39.2348 20.8937ZM43.5134 12.7245C42.1561 12.9571 38.8328 13.6655 37.9362 14.2131L37.7216 14.3441L37.5406 14.1701C36.6972 13.3697 35.71 12.7343 34.6303 12.297L33.8639 11.9944L34.6319 11.6961C35.7143 11.2622 36.7037 10.6273 37.5474 9.82532L37.7291 9.65141L37.9434 9.78334C41.3548 11.1766 42.8449 11.0718 44.9216 11.5725C45.6448 11.7469 47.2807 11.9191 47.9135 12.0477C47.138 12.2913 44.7193 12.5178 43.5134 12.7245Z" fill="white"/> </svg> </span> </button> <!-- Third Menu Start --> <div class="header-menu__inner"> <div class="header-menu__row"> <span>North America</span> <button type="button" class="header-menu__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <button type="button" class="header-menu__back"> <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> Back to Destinations </button> <ul class="header-menu__countries"> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">USA</span> </div> <div class="header-menu__cities"> <a href="/boston/" class="header-menu__cities__link" target="_blank">Boston</a> </div> </li> </ul> <a href="/destinations/north-america/" class="header-menu__view-all" target="_blank">View All North America</a> </div> <!-- Third Menu End --> </li> <li class="header-menu__region"> <button type="button" class="header-menu__region__wrap"> <span class="header-menu__region__name">Europe</span> <span class="header-menu__region__trigger"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" viewBox="0 0 50 24" fill="none"> <path d="M47.7971 11.2854C45.5111 10.8489 39.8017 10.0837 38.5008 9.2739L38.2131 9.09126L38.4108 8.81463C38.7793 8.3195 39.0705 7.77188 39.2746 7.19028C40.1296 4.68782 40.0129 1.97329 38.9974 0.734187C38.5281 0.161394 37.8813 -0.0777445 37.0758 0.022057C36.7373 0.0569597 36.4113 0.168788 36.1231 0.348905C35.8349 0.529022 35.5921 0.772609 35.4136 1.06086C34.5966 2.32129 34.6385 4.537 35.0926 5.98175L35.1357 6.12051C35.3623 6.85525 35.7046 7.96564 36.8943 9.0234L37.1506 9.25124L36.9073 9.49269C35.4726 10.9169 33.5321 11.6389 31.1392 11.6389C31.1227 11.6389 31.1062 11.6389 31.0895 11.6388C30.8399 11.6388 5.93647 11.6367 0.656237 11.6274H0.655511C0.606805 11.6274 0.558576 11.637 0.513579 11.6555C0.468583 11.6741 0.427699 11.7012 0.393263 11.7355C0.323716 11.8047 0.284654 11.8985 0.284668 11.9963C0.284682 12.0942 0.323773 12.188 0.39334 12.2572C0.462907 12.3263 0.557252 12.3652 0.65562 12.3652H0.655836C5.9346 12.3607 30.8398 12.3529 31.0908 12.3529H31.111C33.5197 12.3529 35.4698 13.0763 36.9073 14.5033L37.1504 14.7445L36.8946 14.9724C35.7029 16.0338 35.361 17.145 35.1347 17.8804L35.0928 18.0159C34.6383 19.4633 34.5966 21.6813 35.4145 22.9416C35.5929 23.2294 35.8354 23.4726 36.1234 23.6523C36.4113 23.832 36.7369 23.9435 37.0751 23.9781C37.8812 24.0776 38.5285 23.8375 38.9982 23.2634C40.0138 22.0218 40.1303 19.3113 39.2754 16.8184C39.0739 16.2342 38.7826 15.6845 38.4117 15.189C38.4117 15.189 38.1803 14.9913 38.2119 14.9121C40.166 14.0643 41.8175 13.8893 43.5339 13.5365C45.3813 13.1568 49.6721 12.5458 49.5755 12.1054C49.4529 11.5464 47.7971 11.2854 47.7971 11.2854ZM35.5102 3.09422C35.7306 0.925394 36.876 0.7479 37.2217 0.745219C37.225 0.745219 37.2283 0.745219 37.2316 0.745219C38.069 0.745219 39.0529 1.57783 39.235 3.12858C39.3914 4.40957 39.0293 6.5902 37.864 8.34738L37.649 8.67167L37.3677 8.40204C35.9316 7.02531 35.2893 5.18984 35.5102 3.09422ZM39.2348 20.8937C39.0524 22.4395 38.0692 23.2696 37.2324 23.2696H37.2226C36.8766 23.2668 35.7306 23.0896 35.5102 20.9224C35.2879 18.8221 35.9305 16.9883 37.3686 15.6205L37.6497 15.3531L37.864 15.6759C39.0285 17.4298 39.391 19.6101 39.2348 20.8937ZM43.5134 12.7245C42.1561 12.9571 38.8328 13.6655 37.9362 14.2131L37.7216 14.3441L37.5406 14.1701C36.6972 13.3697 35.71 12.7343 34.6303 12.297L33.8639 11.9944L34.6319 11.6961C35.7143 11.2622 36.7037 10.6273 37.5474 9.82532L37.7291 9.65141L37.9434 9.78334C41.3548 11.1766 42.8449 11.0718 44.9216 11.5725C45.6448 11.7469 47.2807 11.9191 47.9135 12.0477C47.138 12.2913 44.7193 12.5178 43.5134 12.7245Z" fill="white"/> </svg> </span> </button> <!-- Third Menu Start --> <div class="header-menu__inner"> <div class="header-menu__row"> <span>Europe</span> <button type="button" class="header-menu__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <button type="button" class="header-menu__back"> <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> Back to Destinations </button> <ul class="header-menu__countries"> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Poland</span> </div> <div class="header-menu__cities"> <a href="/warsaw/" class="header-menu__cities__link" target="_blank">Warsaw</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">England</span> </div> <div class="header-menu__cities"> <a href="/london/" class="header-menu__cities__link" target="_blank">London</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">France</span> </div> <div class="header-menu__cities"> <a href="/paris/" class="header-menu__cities__link" target="_blank">Paris</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Turkey</span> </div> <div class="header-menu__cities"> <a href="/istanbul/" class="header-menu__cities__link" target="_blank">Istanbul</a> </div> </li> </ul> <a href="/destinations/europe/" class="header-menu__view-all" target="_blank">View All Europe</a> </div> <!-- Third Menu End --> </li> <li class="header-menu__region"> <button type="button" class="header-menu__region__wrap"> <span class="header-menu__region__name">Indian Ocean</span> <span class="header-menu__region__trigger"> <svg xmlns="http://www.w3.org/2000/svg" width="50" height="24" viewBox="0 0 50 24" fill="none"> <path d="M47.7971 11.2854C45.5111 10.8489 39.8017 10.0837 38.5008 9.2739L38.2131 9.09126L38.4108 8.81463C38.7793 8.3195 39.0705 7.77188 39.2746 7.19028C40.1296 4.68782 40.0129 1.97329 38.9974 0.734187C38.5281 0.161394 37.8813 -0.0777445 37.0758 0.022057C36.7373 0.0569597 36.4113 0.168788 36.1231 0.348905C35.8349 0.529022 35.5921 0.772609 35.4136 1.06086C34.5966 2.32129 34.6385 4.537 35.0926 5.98175L35.1357 6.12051C35.3623 6.85525 35.7046 7.96564 36.8943 9.0234L37.1506 9.25124L36.9073 9.49269C35.4726 10.9169 33.5321 11.6389 31.1392 11.6389C31.1227 11.6389 31.1062 11.6389 31.0895 11.6388C30.8399 11.6388 5.93647 11.6367 0.656237 11.6274H0.655511C0.606805 11.6274 0.558576 11.637 0.513579 11.6555C0.468583 11.6741 0.427699 11.7012 0.393263 11.7355C0.323716 11.8047 0.284654 11.8985 0.284668 11.9963C0.284682 12.0942 0.323773 12.188 0.39334 12.2572C0.462907 12.3263 0.557252 12.3652 0.65562 12.3652H0.655836C5.9346 12.3607 30.8398 12.3529 31.0908 12.3529H31.111C33.5197 12.3529 35.4698 13.0763 36.9073 14.5033L37.1504 14.7445L36.8946 14.9724C35.7029 16.0338 35.361 17.145 35.1347 17.8804L35.0928 18.0159C34.6383 19.4633 34.5966 21.6813 35.4145 22.9416C35.5929 23.2294 35.8354 23.4726 36.1234 23.6523C36.4113 23.832 36.7369 23.9435 37.0751 23.9781C37.8812 24.0776 38.5285 23.8375 38.9982 23.2634C40.0138 22.0218 40.1303 19.3113 39.2754 16.8184C39.0739 16.2342 38.7826 15.6845 38.4117 15.189C38.4117 15.189 38.1803 14.9913 38.2119 14.9121C40.166 14.0643 41.8175 13.8893 43.5339 13.5365C45.3813 13.1568 49.6721 12.5458 49.5755 12.1054C49.4529 11.5464 47.7971 11.2854 47.7971 11.2854ZM35.5102 3.09422C35.7306 0.925394 36.876 0.7479 37.2217 0.745219C37.225 0.745219 37.2283 0.745219 37.2316 0.745219C38.069 0.745219 39.0529 1.57783 39.235 3.12858C39.3914 4.40957 39.0293 6.5902 37.864 8.34738L37.649 8.67167L37.3677 8.40204C35.9316 7.02531 35.2893 5.18984 35.5102 3.09422ZM39.2348 20.8937C39.0524 22.4395 38.0692 23.2696 37.2324 23.2696H37.2226C36.8766 23.2668 35.7306 23.0896 35.5102 20.9224C35.2879 18.8221 35.9305 16.9883 37.3686 15.6205L37.6497 15.3531L37.864 15.6759C39.0285 17.4298 39.391 19.6101 39.2348 20.8937ZM43.5134 12.7245C42.1561 12.9571 38.8328 13.6655 37.9362 14.2131L37.7216 14.3441L37.5406 14.1701C36.6972 13.3697 35.71 12.7343 34.6303 12.297L33.8639 11.9944L34.6319 11.6961C35.7143 11.2622 36.7037 10.6273 37.5474 9.82532L37.7291 9.65141L37.9434 9.78334C41.3548 11.1766 42.8449 11.0718 44.9216 11.5725C45.6448 11.7469 47.2807 11.9191 47.9135 12.0477C47.138 12.2913 44.7193 12.5178 43.5134 12.7245Z" fill="white"/> </svg> </span> </button> <!-- Third Menu Start --> <div class="header-menu__inner"> <div class="header-menu__row"> <span>Indian Ocean</span> <button type="button" class="header-menu__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.35355" y1="0.646447" x2="18.3241" y2="17.617" stroke="white"/> <line x1="0.646447" y1="17.6464" x2="17.617" y2="0.675884" stroke="white"/> </svg> </button> </div> <button type="button" class="header-menu__back"> <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M10.5303 19.0801C10.2374 19.373 9.76256 19.373 9.46967 19.0801L3.46967 13.0801C3.17678 12.7872 3.17678 12.3124 3.46967 12.0195L9.46967 6.01948C9.76256 5.72658 10.2374 5.72658 10.5303 6.01948C10.8232 6.31237 10.8232 6.78724 10.5303 7.08014L5.81066 11.7998L20 11.7998C20.4142 11.7998 20.75 12.1356 20.75 12.5498C20.75 12.964 20.4142 13.2998 20 13.2998L5.81066 13.2998L10.5303 18.0195C10.8232 18.3124 10.8232 18.7872 10.5303 19.0801Z" fill="white"/> </svg> Back to Destinations </button> <ul class="header-menu__countries"> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Raffles Maldives Meradhoo </span> </div> <div class="header-menu__cities"> <a href="/maldives/" class="header-menu__cities__link" target="_blank">Maldives</a> </div> </li> <li class="header-menu__country"> <div class="header-menu__country-wrap"> <span class="header-menu__country-name">Republic of Seychelles</span> </div> <div class="header-menu__cities"> <a href="/seychelles/" class="header-menu__cities__link" target="_blank">Seychelles</a> </div> </li> </ul> <a href="/destinations/indian-ocean/" class="header-menu__view-all" target="_blank">View All Indian Ocean</a> </div> <!-- Third Menu End --> </li> </ul> <a href="/hotels-resorts/" class="header-menu__view-all" target="_blank">View All Destinations</a> </div> <!-- Second Menu End --> </div> <div class="header-menu__section header-menu__section--fourth"> <ul class="header-menu__list"> <li class="header-menu__list__item"> <a href="https://giftcards.raffles.com/" target="_blank" class="header-menu__list__link">Gift Cards</a> </li> <li class="header-menu__list__item"> <a href="/loyalty/" target="_self" class="header-menu__list__link">Loyalty</a> </li> <li class="header-menu__list__item"> <a href="/contact-us/" target="_self" class="header-menu__list__link">Contact</a> </li> </ul> </div> <div class="header-menu__section header-menu__section--mobile"> <!-- Language Start --> <div class="header__mobile-item header__mobile-item--language"> <button type="button" class="header__mobile-item__label header__mobile-item__label--language header__mobile-item__label--dropdown"> en <svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 1L5 5L9 1" stroke="#727C74"/> </svg> </button> <!-- Language Dropdown Start --> <ul class="header__dropdown header__dropdown--mobile header__dropdown--languages"> <li class="header__dropdown__item"> <a class="header__dropdown__link header__dropdown__link--language" href="/de/warsaw/booking/" target="_blank"> Deutsch </a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link header__dropdown__link--language" href="/warsaw/booking/" target="_blank"> English </a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link header__dropdown__link--language" href="/es/warsaw/booking/" target="_blank"> Español </a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link header__dropdown__link--language" href="/fr/warsaw/booking/" target="_blank"> Français </a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link header__dropdown__link--language" href="/pl/warsaw/booking/" target="_blank"> Polski </a> </li> <li class="header__dropdown__item"> <a class="header__dropdown__link header__dropdown__link--language" href="/ar/warsaw/booking/" target="_blank"> العربية </a> </li> </ul> <!-- Language Dropdown End --> </div> <!-- Auth Start --> <!-- isAuthenticated --> <div class="header__mobile-item header__mobile-item--auth js-auth-block"> <button type="button" class="header__mobile-item__label header__mobile-item__label--dropdown authPanelBtn"> <span class="header__label--no-auth">Sign In</span> <span class="header__label--is-auth">My Account</span> </button> <!-- Auth Dropdown For Guest Start --> <div class="header__dropdown header__dropdown--mobile header__dropdown--no-auth"> <div class="header__dropdown__panel"> <div class="header__dropdown__panel__left"> <svg xmlns="http://www.w3.org/2000/svg" width="37" height="32" viewBox="0 0 37 32" fill="none"> <path d="M34.987 18.6256C33.5715 18.5333 30.1895 19.6354 27.9834 20.3285C27.2652 19.3242 26.3313 18.4751 25.2428 17.8367C26.1644 17.4388 27.0626 16.9941 27.9336 16.5044C28.3639 16.835 28.754 17.2102 29.0965 17.6228C28.9404 17.7756 28.8099 17.9502 28.7096 18.1406C28.4729 18.6812 29.0564 19.2418 29.5705 18.6909C29.7402 18.5107 29.8124 18.1644 29.4437 17.6215C29.6283 17.4311 29.8357 17.2377 30.0287 17.0543C30.175 17.1391 30.6905 17.3304 31.104 17.5186C31.0465 17.6251 31.0025 17.7376 30.973 17.8539C30.8531 18.3734 31.2512 18.6746 31.6241 18.5885C32.0492 18.4909 32.1228 17.9643 31.8003 17.6454C31.7096 17.5641 31.6086 17.4939 31.4996 17.4364C31.5383 17.3865 31.5709 17.3388 31.6162 17.2818C31.8851 16.9519 32.1023 16.6974 32.2733 16.4924C32.4444 16.5644 32.6403 16.6453 32.8578 16.7531C33.0126 16.8277 33.1426 16.8949 33.2639 16.9602C33.2285 17.0142 33.1981 17.0709 33.173 17.1299C32.8584 17.8707 33.4606 18.0562 33.7085 18.0297C33.8062 18.0106 33.897 17.9678 33.9719 17.9053C34.0468 17.8429 34.1032 17.763 34.1356 17.6736C34.168 17.5842 34.1752 17.4883 34.1565 17.3955C34.1379 17.3026 34.094 17.216 34.0292 17.1441C33.9302 17.0326 33.8122 16.9377 33.6801 16.8631C33.895 16.5853 34.1751 16.2685 34.3988 16.0203C34.6771 16.1537 35.0122 16.2791 35.3501 16.4218C35.3273 16.7946 35.3711 17.1215 35.5636 17.304C36.1523 17.8539 36.6724 17.0725 36.183 16.5777C36.0177 16.4283 35.8244 16.3093 35.6131 16.227C35.7394 15.5931 36.0382 14.7777 36.0298 13.9428C36.0167 12.7881 34.1439 12.6441 31.1563 14.2988C30.1159 14.8757 29.0779 15.5176 27.9197 16.1625C27.0149 15.4583 25.7797 14.6575 24.4617 14.2507C25.3002 13.559 26.2301 12.6936 27.1459 11.8561C27.6326 12.1035 28.0802 12.4144 28.4757 12.7798C28.0843 13.271 27.9313 13.8359 28.431 14.0003C28.9447 14.1708 29.4266 13.6893 29.0817 13.1084C29.0084 12.9942 28.9228 12.8877 28.8262 12.7904C28.9642 12.6177 29.1259 12.4055 29.2737 12.1865C29.6093 12.3062 29.9724 12.3866 30.3038 12.524C30.2294 12.69 30.1936 12.8693 30.1989 13.0497C30.2725 13.6871 31.2644 13.7472 31.2182 12.9772C31.2024 12.7197 30.9563 12.5346 30.6794 12.395C30.8239 12.0924 31.0052 11.7678 31.1437 11.5182C31.4895 11.6251 31.8861 11.7116 32.211 11.8009C32.1117 12.018 32.1073 12.2636 32.1988 12.4838C32.5209 13.0068 33.4857 12.7758 33.0951 11.9969C32.969 11.824 32.7872 11.6944 32.5768 11.6277C32.5866 11.6056 32.594 11.5853 32.6048 11.5623C32.6877 11.3865 32.8443 11.0905 32.9725 10.7676C33.2447 10.8462 33.536 10.9156 33.7938 10.9704C33.8781 11.9656 34.2888 12.0601 34.6491 11.932C34.9516 11.8256 35.2252 11.1987 34.4286 10.8573C34.2961 10.8036 34.1593 10.7601 34.0194 10.7274C34.0249 10.193 34.0619 9.65928 34.1303 9.12877C34.3275 7.3 32.3397 7.88793 31.097 8.49797C30.0152 9.0263 28.2925 10.4584 27.07 11.5318C27.0234 11.5093 26.9777 11.4836 26.9278 11.4603C25.9038 10.9757 24.5265 10.8317 23.3487 10.9302C23.3916 10.8383 23.4363 10.7438 23.481 10.6435C23.6218 10.3347 23.8935 9.71674 24.2534 8.96623C24.8475 8.97418 25.4332 9.10013 25.9728 9.33593C25.9459 9.47893 25.9304 9.62363 25.9262 9.76883C25.9197 10.2221 26.1937 10.6475 26.7074 10.4226C26.8649 10.3532 27.3408 9.98263 26.5004 9.36199C26.4285 9.31014 26.3517 9.26459 26.2711 9.2259C26.3242 8.98918 26.389 8.74267 26.4374 8.47189C26.7702 8.46216 27.1542 8.43248 27.4899 8.42594C27.4898 8.46208 27.4917 8.4982 27.4955 8.53416C27.5654 9.12123 28.0469 9.4636 28.4757 9.17337C28.5467 9.11453 28.601 9.03961 28.6333 8.95557C28.6656 8.87154 28.6749 8.78113 28.6605 8.69274C28.646 8.60436 28.6082 8.52088 28.5505 8.45008C28.4929 8.37927 28.4172 8.32344 28.3307 8.28777C28.1519 8.21648 27.9606 8.17767 27.7667 8.17336C27.7877 7.91139 27.8381 7.55938 27.8809 7.23335C28.0916 7.23734 28.3363 7.23071 28.629 7.22366C28.7391 7.22134 28.8387 7.22276 28.9315 7.22672C28.9329 7.26249 28.9329 7.29697 28.9357 7.32214C28.9963 7.95428 29.4629 8.14733 29.8572 7.95428C30.2385 7.7652 30.1541 7.08361 29.2885 7.00365C29.2665 7.00145 29.241 6.99966 29.22 6.99704C29.2228 6.80353 29.234 6.57696 29.2443 6.32074C29.2494 6.1838 29.2508 6.06109 29.2494 5.9448C29.5559 5.92176 29.8609 5.88298 30.1629 5.82863C30.464 6.58267 30.7567 6.65558 30.9889 6.63172C31.4685 6.58267 31.7398 5.79063 30.9423 5.57332C30.7381 5.53169 30.5282 5.52125 30.3205 5.54239C30.0189 4.55942 29.8376 3.11418 29.1245 2.99798C27.7807 2.7811 26.3106 4.77025 25.4195 6.08001C24.8941 6.94373 24.4303 7.83975 24.0309 8.76208C23.0292 8.72187 22.029 8.87029 21.0881 9.19876C20.1473 9.52722 19.2845 10.0292 18.5496 10.6757C18.8354 9.5625 19.8314 7.03975 21.7368 6.59581C21.7767 6.77001 21.8403 6.93856 21.9261 7.0972C22.2783 7.68373 23.1542 7.42056 23.0377 6.83522C22.9785 6.5437 22.5604 6.3047 21.9601 6.34182C21.9202 6.13295 21.8936 5.92201 21.8804 5.71012C21.8779 5.66862 21.8752 5.63459 21.8724 5.59705C22.1838 5.56128 22.5455 5.51003 22.8778 5.48397C22.9952 6.03659 23.205 6.2084 23.5131 6.24111C24.1848 6.30866 24.2631 5.45659 23.7186 5.27458C23.5315 5.23282 23.3391 5.21661 23.1471 5.22645C23.094 4.92507 23.0628 4.58891 23.0423 4.30584C23.3839 4.24624 23.6836 4.20205 23.9409 4.17511C23.9781 4.31337 24.0349 4.44621 24.1097 4.57001C24.4402 5.06034 25.2129 5.03431 25.1747 4.42514C25.144 3.96085 24.629 3.87959 24.4896 3.87517C24.3926 3.87164 24.291 3.87385 24.1848 3.87913C24.1649 3.78123 24.1503 3.68246 24.1409 3.58317C24.1097 3.28191 24.0817 3.02042 24.0504 2.79513C24.3156 2.75008 24.5841 2.70502 24.8358 2.67632C24.903 2.83355 24.9908 2.98211 25.0973 3.11847C25.535 3.64371 26.208 3.32211 26.132 2.85698C26.0882 2.59107 25.9414 2.48723 25.5955 2.42098C25.3868 2.39175 25.175 2.38819 24.9654 2.4104C24.7511 1.65676 24.5217 0.632899 24.2024 0.258258C23.8543 -0.150347 22.8494 -0.285945 21.1985 1.49953C19.644 3.18208 18.8228 5.74503 18.5338 7.19839C18.4196 7.75594 18.3375 8.31896 18.2877 8.88495C18.2366 8.31904 18.1542 7.75608 18.0406 7.19839C17.7507 5.74503 16.9304 3.18208 15.3755 1.49953C13.7251 -0.285945 12.7206 -0.150347 12.3729 0.258258C12.0527 0.632899 11.8243 1.65676 11.6095 2.4104C11.3994 2.38822 11.1871 2.39177 10.9779 2.42098C10.633 2.48723 10.4853 2.59107 10.4429 2.85698C10.3646 3.32211 11.0395 3.64371 11.4767 3.11847C11.584 2.98255 11.672 2.8339 11.7386 2.67632C11.9894 2.70502 12.2583 2.75008 12.5235 2.79513C12.4932 3.02042 12.4648 3.28198 12.434 3.58317C12.4228 3.69188 12.4089 3.7886 12.3902 3.87913C12.2849 3.87385 12.1809 3.87164 12.0844 3.87517C11.9465 3.87959 11.4296 3.96094 11.3993 4.42514C11.362 5.03431 12.1339 5.06036 12.4648 4.57001C12.5395 4.44567 12.5962 4.31242 12.6336 4.17381C12.8923 4.20205 13.1906 4.24624 13.5327 4.30596C13.5112 4.58914 13.4805 4.9253 13.4273 5.22656C13.2353 5.21688 13.0427 5.23308 12.8554 5.27469C12.3124 5.4567 12.3912 6.30878 13.0615 6.24122C13.3705 6.20851 13.5779 6.0367 13.6986 5.48408C14.0291 5.51014 14.3898 5.5614 14.7021 5.59717C14.6993 5.6347 14.6961 5.66874 14.6937 5.71024C14.6818 5.92221 14.6554 6.13322 14.6145 6.34193C14.0152 6.30484 13.5956 6.54381 13.5374 6.83534C13.4217 7.42067 14.2976 7.68385 14.6485 7.09731C14.7343 6.93862 14.798 6.77009 14.8382 6.59593C16.7436 7.03986 17.7383 9.56262 18.0263 10.6758C17.2914 10.0294 16.4286 9.52748 15.4878 9.19902C14.547 8.87056 13.5468 8.72209 12.545 8.76219C12.1455 7.83968 11.6812 6.94361 11.1551 6.08001C10.264 4.77016 8.79155 2.78103 7.452 2.99798C6.73608 3.11418 6.55523 4.55954 6.25599 5.54239C6.04771 5.52109 5.83717 5.53153 5.63236 5.57332C4.83628 5.79063 5.10521 6.58267 5.58574 6.63172C5.81739 6.65558 6.11057 6.58267 6.41074 5.82863C6.71299 5.88285 7.0181 5.92163 7.32475 5.9448C7.32475 6.061 7.32475 6.1838 7.33128 6.32074C7.3406 6.57696 7.35225 6.80353 7.35506 6.99704C7.33304 6.99966 7.30797 7.00145 7.28605 7.00365C6.42147 7.08361 6.33708 7.7652 6.71883 7.95428C7.11176 8.14733 7.5783 7.95428 7.63938 7.32214C7.6417 7.29697 7.64217 7.26249 7.6431 7.22672C7.73632 7.22276 7.83561 7.22143 7.94559 7.22366C8.2383 7.23062 8.48206 7.23734 8.69167 7.23335C8.73737 7.55938 8.78678 7.91144 8.80774 8.17336C8.61352 8.17748 8.42186 8.2163 8.24282 8.28777C8.15647 8.32361 8.08105 8.37951 8.02353 8.4503C7.96602 8.52109 7.92827 8.60448 7.91377 8.69277C7.89928 8.78105 7.90851 8.87137 7.94061 8.95537C7.97271 9.03938 8.02664 9.11436 8.09742 9.17337C8.52668 9.4636 9.00909 9.12123 9.07856 8.53416C9.08274 8.5015 9.08274 8.46215 9.08509 8.42594C9.42022 8.43257 9.8038 8.46216 10.1366 8.47189C10.1855 8.74267 10.2499 8.98918 10.302 9.2259C10.2221 9.26499 10.1458 9.31052 10.0741 9.36199C9.23331 9.98263 9.70965 10.3532 9.86718 10.4226C10.3813 10.6475 10.6554 10.222 10.6498 9.76883C10.6443 9.62367 10.6284 9.47904 10.6022 9.33593C11.1419 9.10003 11.7278 8.97408 12.3221 8.96623C12.681 9.71674 12.9527 10.3347 13.0935 10.6435C13.1387 10.7438 13.1825 10.8382 13.2259 10.9302C12.0485 10.8317 10.6712 10.9757 9.64625 11.4603C9.59544 11.4836 9.55209 11.5093 9.5041 11.5318C8.28346 10.4584 6.55929 9.0263 5.47889 8.49797C4.23396 7.88793 2.24605 7.3 2.4446 9.12877C2.51229 9.65934 2.54933 10.193 2.55554 10.7274C2.41551 10.7602 2.2785 10.8036 2.14583 10.8573C1.34881 11.1987 1.62381 11.8256 1.92491 11.932C2.28707 12.0601 2.69722 11.9656 2.78019 10.9704C3.03795 10.9156 3.32973 10.8462 3.60101 10.7676C3.72916 11.0905 3.8867 11.3865 3.9706 11.5623C3.98039 11.5853 3.98738 11.6056 3.99859 11.6277C3.78778 11.6943 3.60543 11.8238 3.47887 11.9969C3.08876 12.7757 4.05404 13.0068 4.3761 12.4838C4.46733 12.2636 4.46315 12.0182 4.36446 11.8009C4.68841 11.7116 5.08503 11.6251 5.42997 11.5182C5.56886 11.7669 5.74968 12.0924 5.89418 12.395C5.61732 12.5346 5.3707 12.7196 5.35538 12.9772C5.31015 13.7472 6.3034 13.6871 6.37426 13.0497C6.38087 12.8693 6.34522 12.6897 6.26986 12.524C6.60217 12.3866 6.96526 12.3062 7.30134 12.1865C7.44862 12.4056 7.61081 12.6177 7.74738 12.7904C7.65222 12.8886 7.56704 12.995 7.49297 13.1084C7.14902 13.6893 7.62996 14.1708 8.14366 14.0003C8.64331 13.8359 8.49043 13.271 8.09752 12.7789C8.49433 12.4147 8.94227 12.1042 9.42868 11.8562C10.3454 12.6935 11.2744 13.5589 12.1129 14.2507C10.8488 14.6868 9.67759 15.3344 8.65488 16.1626C7.49711 15.5176 6.45726 14.8759 5.41739 14.2989C2.43066 12.6441 0.557868 12.7881 0.54483 13.9428C0.53551 14.7776 0.83475 15.5931 0.961976 16.2269C0.75108 16.3096 0.558135 16.4285 0.392873 16.5777C-0.099322 17.0724 0.421298 17.8539 1.01092 17.3039C1.20341 17.1215 1.2482 16.7946 1.22298 16.4218C1.56325 16.2791 1.89698 16.1537 2.17663 16.0202C2.40035 16.2685 2.67953 16.5852 2.89335 16.8631C2.76197 16.9385 2.64416 17.0333 2.54438 17.144C2.4798 17.216 2.43612 17.3028 2.41765 17.3957C2.39919 17.4886 2.40657 17.5844 2.43907 17.6738C2.47157 17.7632 2.52807 17.843 2.60301 17.9054C2.67795 17.9678 2.76874 18.0106 2.86645 18.0296C3.11442 18.0561 3.71527 17.8706 3.40292 17.1298C3.37653 17.0714 3.34618 17.0148 3.31204 16.9602C3.4309 16.8948 3.5628 16.8277 3.71755 16.753C3.93567 16.6452 4.13095 16.5644 4.30015 16.4924C4.47214 16.6973 4.6898 16.9518 4.95829 17.2817C5.00257 17.3387 5.03611 17.3864 5.07295 17.4364C4.96478 17.4943 4.86445 17.5644 4.77417 17.6453C4.45164 17.9642 4.52527 18.4908 4.9503 18.5884C5.3241 18.6746 5.72214 18.3733 5.60142 17.8538C5.5717 17.7378 5.52821 17.6253 5.47177 17.5185C5.88427 17.3304 6.39931 17.1391 6.54564 17.0543C6.73813 17.2376 6.94508 17.4311 7.12964 17.621C6.76052 18.1644 6.83415 18.5107 7.00288 18.6909C7.51746 19.2417 8.10146 18.6812 7.86469 18.1405C7.76455 17.9499 7.63372 17.7752 7.4769 17.6228C7.82047 17.2109 8.21058 16.8358 8.64025 16.5043C9.51163 16.9938 10.4102 17.4386 11.332 17.8366C10.2429 18.4748 9.30851 19.324 8.59011 20.3285C6.3864 19.6353 3.00304 18.5333 1.58749 18.6256C0.0610982 18.7259 -0.0862839 19.3805 0.0317441 19.9839C0.13693 20.5114 0.567188 21.215 0.814227 21.799C0.502413 21.9952 0.263837 22.2019 0.222742 22.4515C0.125335 23.0658 0.854785 23.296 1.15307 22.8274C1.28778 22.6176 1.24162 22.2725 1.11997 21.9333C1.38612 21.7646 1.73382 21.5711 2.18362 21.3414C2.33602 21.4686 2.49962 21.6002 2.66552 21.7448C2.82117 21.8821 2.95402 21.9975 3.06867 22.103C2.90092 22.2026 2.76556 22.3444 2.67763 22.5125C2.6395 22.59 2.62152 22.675 2.62522 22.7605C2.62891 22.8459 2.65416 22.9293 2.69885 23.0036C2.74354 23.0778 2.80637 23.1409 2.88207 23.1874C2.95777 23.2339 3.04414 23.2626 3.13394 23.271C3.28127 23.2724 3.42366 23.2206 3.53208 23.1261C3.64051 23.0315 3.70682 22.9013 3.7175 22.7621C3.72388 22.5401 3.6467 22.3232 3.49979 22.1503C3.89457 21.9108 4.34531 21.7081 4.46358 21.6365C4.48596 21.622 4.50516 21.6096 4.52698 21.5955C4.74044 21.77 4.96556 21.9409 5.11052 22.0668C5.18232 22.126 5.316 22.2329 5.45357 22.3575C5.08816 22.6728 5.07556 22.8942 5.11052 23.0669C5.21867 23.5912 5.8465 23.6195 6.0841 23.1623C6.22488 22.8897 6.0967 22.607 5.87862 22.3539C6.18251 22.1538 6.53953 21.978 6.79261 21.8415C7.05875 22.0209 7.35474 22.1857 7.62414 22.3381C7.46565 22.8615 7.44608 23.2418 7.77653 23.4592C8.38947 23.8669 9.01868 23.0978 8.4123 22.5748C8.26952 22.4506 8.11835 22.3354 7.95975 22.2298C8.13835 21.7555 8.35995 21.2968 8.62208 20.8587C8.65889 20.7951 8.69852 20.7315 8.7372 20.6687C9.90571 21.0074 11.0943 21.2802 12.2969 21.4858C14.2107 21.7965 15.945 21.738 16.729 20.8162C16.8256 21.3071 17.0662 21.7624 17.423 22.1299C17.7348 22.455 17.9935 22.6882 18.1389 22.815C18.1399 23.4618 18.1417 23.8593 18.1417 23.8593C18.153 24.0664 18.1196 24.2736 18.0436 24.4682C17.9676 24.6628 17.8507 24.8406 17.6998 24.991C17.5173 24.8007 17.2786 24.667 17.0147 24.6071C16.5775 24.4777 15.719 24.483 15.6439 25.0634C15.5581 25.7168 16.5319 25.8192 17.2738 25.5794C17.4058 25.5364 17.53 25.4744 17.6421 25.3956C17.7213 25.5124 17.7859 25.6375 17.8346 25.7684C18.0184 26.3705 18.1237 26.9917 18.1482 27.618C18.1529 27.7739 18.1599 27.925 18.1538 31.7358C18.1529 31.9165 18.2275 31.985 18.2876 32C18.3473 31.985 18.4218 31.9165 18.4204 31.7358C18.4134 27.925 18.4214 27.7738 18.426 27.618C18.4494 26.9916 18.5546 26.3703 18.7391 25.7684C18.7873 25.6374 18.8517 25.5122 18.9312 25.3956C19.0432 25.474 19.167 25.5359 19.2985 25.5794C20.0433 25.8192 21.016 25.7168 20.9298 25.0634C20.8543 24.483 19.9962 24.4777 19.5595 24.6071C19.2957 24.667 19.0572 24.8008 18.8748 24.991C18.7238 24.8407 18.6069 24.6629 18.5311 24.4683C18.4552 24.2736 18.4222 24.0664 18.4339 23.8593C18.4339 23.8593 18.4343 23.4617 18.4367 22.815C18.5807 22.6882 18.8394 22.455 19.1516 22.1299C19.5082 21.7622 19.7487 21.307 19.8458 20.8162C20.6302 21.7381 22.3627 21.7964 24.2788 21.4859C25.4811 21.2801 26.6696 21.0072 27.838 20.6687C27.8762 20.7314 27.9144 20.795 27.9513 20.8586C28.2142 21.2962 28.4357 21.7551 28.6131 22.2298C28.455 22.335 28.3046 22.4503 28.1628 22.5747C27.5579 23.0978 28.1857 23.8668 28.7981 23.4591C29.1281 23.2418 29.109 22.8615 28.951 22.338C29.2195 22.1856 29.5164 22.0208 29.783 21.8415C30.0333 21.978 30.3921 22.1538 30.6961 22.3538C30.4779 22.6069 30.3498 22.8897 30.4891 23.1622C30.7292 23.6194 31.357 23.5911 31.4652 23.0668C31.4997 22.8941 31.4852 22.6727 31.1212 22.3574C31.2587 22.2328 31.3925 22.1259 31.4652 22.0667C31.6087 21.9408 31.8338 21.77 32.0478 21.5954C32.0688 21.6095 32.0883 21.6219 32.1102 21.6365C32.2296 21.708 32.6784 21.9108 33.0751 22.1502C32.9283 22.3232 32.8513 22.5401 32.8578 22.762C32.8684 22.901 32.9344 23.031 33.0425 23.1255C33.1505 23.22 33.2925 23.272 33.4395 23.2709C33.5295 23.2627 33.616 23.2342 33.6918 23.1878C33.7677 23.1413 33.8307 23.0783 33.8755 23.0039C33.9203 22.9296 33.9456 22.8462 33.9493 22.7606C33.953 22.6751 33.935 22.59 33.8968 22.5124C33.8088 22.3442 33.6733 22.2025 33.5054 22.1029C33.6205 21.9974 33.7529 21.8821 33.9095 21.7447C34.0745 21.6002 34.2376 21.4686 34.3905 21.3413C34.8406 21.571 35.1885 21.7645 35.4555 21.9332C35.333 22.2725 35.2878 22.6175 35.4215 22.8273C35.7198 23.296 36.4502 23.0658 36.3504 22.4514C36.3099 22.2018 36.0722 21.9951 35.7594 21.7989C36.0069 21.215 36.439 20.5113 36.543 19.9838C36.6612 19.3805 36.514 18.7259 34.987 18.6256ZM29.1062 18.7776C28.9212 18.7471 28.8625 18.6265 28.9058 18.3734C28.9699 18.1708 29.0855 17.9862 29.2423 17.8358C29.2558 17.855 29.268 17.8751 29.2787 17.8958C29.6474 18.6322 29.2792 18.8067 29.1062 18.7776ZM29.7168 16.071C29.8758 15.6231 30.5451 15.7358 30.3922 16.2512C30.3031 16.4263 30.1797 16.5837 30.0286 16.7151C29.7984 16.564 29.6171 16.3546 29.7168 16.071ZM31.6162 17.8119C32.1065 18.3212 31.5015 18.5597 31.3272 18.4189C31.1841 18.3018 31.0671 18.1172 31.3603 17.644C31.4536 17.6881 31.5398 17.7446 31.6162 17.8119ZM32.2039 16.1218C31.9578 15.9801 31.7355 15.8011 31.7481 15.6192C31.7793 15.1575 32.3083 14.98 32.4599 15.4455C32.5223 15.6377 32.3913 15.8776 32.2039 16.1218L32.2039 16.1218ZM33.88 17.8097C33.7434 17.9868 33.2932 17.9012 33.3454 17.4285C33.3762 17.3106 33.431 17.1996 33.5067 17.1016C33.9681 17.3812 34.0608 17.5734 33.88 17.8097V17.8097ZM34.3316 15.6912C34.065 15.5379 33.8571 15.3307 33.9769 15.0679C34.2203 14.5316 34.7875 14.7931 34.6971 15.1704C34.6095 15.3635 34.4857 15.5399 34.3316 15.6911V15.6912ZM35.7989 16.6219C36.5587 16.9881 36.1368 17.6458 35.7076 17.1749C35.6378 17.0799 35.5894 16.9722 35.5653 16.8587C35.5413 16.7452 35.5421 16.6282 35.5677 16.515C35.6451 16.5503 35.7229 16.5853 35.7989 16.6219V16.6219ZM30.5223 14.9742C33.1804 13.3959 36.0954 12.7814 35.7076 14.6783C35.6366 15.0268 35.4624 15.5971 35.3841 16.1311C35.2559 16.0799 35.132 16.0331 35.0252 15.9897C34.945 15.9584 34.7693 15.8987 34.582 15.817C34.6719 15.7145 34.7404 15.6376 34.7656 15.6054C35.0634 15.199 35.0499 14.7294 34.458 14.6115C33.9979 14.5183 33.6395 15.0037 33.6852 15.3439C33.7145 15.4629 33.7719 15.5741 33.8531 15.6691C33.9343 15.764 34.0372 15.8403 34.1541 15.8921C33.9095 16.1598 33.6339 16.4562 33.4284 16.7225C33.2214 16.6134 32.9958 16.5092 32.7954 16.4125C32.744 16.3855 32.615 16.3329 32.4668 16.2614C32.7693 15.8815 32.8443 15.699 32.7189 15.4163C32.6689 15.2946 32.5766 15.1927 32.4573 15.1272C32.338 15.0618 32.1988 15.0368 32.0625 15.0562C31.9262 15.0757 31.8009 15.1385 31.7073 15.2344C31.6137 15.3303 31.5572 15.4535 31.5472 15.5837C31.4726 16.0295 31.6428 16.2013 31.997 16.3709C31.8646 16.5224 31.7285 16.6731 31.6162 16.8096C31.5081 16.9452 31.3645 17.1082 31.2373 17.2964C30.9829 17.1723 30.7264 17.0605 30.6202 17.0071C30.5535 16.9722 30.4062 16.9174 30.2473 16.8402C30.4258 16.6916 30.5686 16.5084 30.6658 16.303C30.835 15.5189 29.9163 15.4827 29.6238 15.8922C29.2397 16.4271 29.5553 16.7469 29.8162 16.9219C29.6461 17.0814 29.4648 17.2518 29.2942 17.4193C29.1265 17.2161 28.9423 17.0258 28.7433 16.8499C28.5825 16.7045 28.3895 16.5411 28.1765 16.3684C29.3267 15.7203 30.2487 15.1359 30.5223 14.9742V14.9742ZM34.1214 11.0384C35.0401 11.2287 34.8481 11.9439 34.3214 11.765C34.1396 11.7041 34.0581 11.4028 34.0292 11.0203C34.0608 11.0251 34.0912 11.0317 34.1214 11.0383V11.0384ZM28.5982 13.9065C28.2463 13.884 28.3353 13.3906 28.622 13.0425C28.635 13.0248 28.6546 13.0014 28.6723 12.9811C28.7158 13.0299 28.7549 13.082 28.7893 13.137C29.0415 13.5624 28.8904 13.9255 28.5982 13.9065ZM29.3947 11.2495C29.3505 11.4452 29.2771 11.634 29.1766 11.8101C28.8923 11.6678 28.6672 11.4814 28.7063 11.2349C28.8122 10.5688 29.4633 10.9142 29.3948 11.2495H29.3947ZM30.9128 12.9197C31.2643 13.2974 30.6635 13.6344 30.4663 13.2104C30.438 13.0198 30.4728 12.8256 30.566 12.6547C30.6947 12.7264 30.8116 12.8157 30.9128 12.9197H30.9128ZM31.226 10.7199C31.1738 10.869 31.1068 11.0132 31.0261 11.1505C30.6863 11.0242 30.4397 10.8462 30.5059 10.4944C30.6201 9.88806 31.3724 10.1893 31.2261 10.7199L31.226 10.7199ZM32.6737 11.9611C33.2256 12.2451 32.9301 12.7523 32.6201 12.614C32.4122 12.5213 32.3605 12.2663 32.4794 11.8803C32.546 11.9032 32.6109 11.9302 32.6737 11.9611H32.6737ZM32.8271 10.1893C32.801 10.2675 32.7711 10.34 32.7455 10.4146C32.4514 10.3077 32.2375 10.161 32.2058 9.92121C32.1228 9.25991 33.1534 9.22766 32.8271 10.1893H32.8271ZM29.0834 10.1522C30.7208 8.81333 34.127 7.10336 33.846 9.54398C33.7994 9.91779 33.7775 10.294 33.7802 10.6704C33.5416 10.6187 33.2927 10.5714 33.0634 10.5109C33.2144 10.0316 33.2452 9.54924 32.8271 9.34648C32.1167 9.0046 31.8688 9.95699 32.1144 10.3488C32.258 10.5008 32.445 10.6102 32.6528 10.6637C32.5264 10.9862 32.402 11.2747 32.3051 11.5269C32.072 11.4504 31.8436 11.3922 31.7001 11.352C31.5677 11.3122 31.4283 11.2773 31.294 11.238C31.3032 11.2228 31.3111 11.207 31.3178 11.1907C31.5014 10.8069 31.7004 10.2402 31.0195 10.0374C30.5086 9.88496 30.1353 10.5423 30.3761 11.0609C30.4906 11.2335 30.6668 11.3613 30.8725 11.4209C30.7182 11.6904 30.5449 11.9903 30.4111 12.2743C30.2792 12.2213 30.1557 12.1776 30.061 12.1436C29.9273 12.0906 29.6821 12.0203 29.4374 11.9249C29.5062 11.8106 29.5661 11.6918 29.6169 11.5693C29.7553 11.2208 29.6849 10.7062 29.1042 10.6969C28.4865 10.6894 28.3174 11.5401 28.5989 11.8092C28.721 11.9198 28.8615 12.0107 29.0148 12.0781C28.8949 12.2562 28.7656 12.4284 28.6274 12.594C28.2407 12.2394 27.8098 11.9307 27.3443 11.6748C27.9424 11.1307 28.5321 10.604 29.0834 10.1522H29.0834ZM29.7168 7.86669C29.3439 7.89451 29.2395 7.68204 29.2223 7.25266C30.099 7.37549 29.9429 7.84984 29.7168 7.86669H29.7168ZM31.0349 5.86341C31.3118 5.97517 31.3784 6.55121 30.9044 6.44255C30.6849 6.3944 30.5326 6.14216 30.4048 5.79717C30.6172 5.76341 30.8354 5.78635 31.035 5.86341H31.0349ZM26.4529 9.60889C26.6985 9.77581 26.8831 10.2127 26.6146 10.321C26.3093 10.442 26.1322 10.1381 26.2082 9.55854C26.2124 9.52673 26.2217 9.49624 26.2264 9.46666C26.3171 9.51878 26.3931 9.56783 26.4529 9.60889ZM26.094 8.21477C25.6032 8.22761 25.3063 7.63168 25.6424 7.38652C25.8405 7.24341 26.2221 7.43734 26.2315 7.77922C26.2321 7.92368 26.2198 8.06793 26.1948 8.21043C26.1615 8.21171 26.1237 8.21477 26.0939 8.21477H26.094ZM27.6186 6.94919C27.4619 6.95376 27.3064 6.92207 27.1656 6.85688C26.8216 6.60376 26.9362 6.07989 27.16 6.04454C27.3814 6.00786 27.6904 6.13553 27.6573 6.61039C27.6497 6.70227 27.6357 6.82064 27.6185 6.94919H27.6186ZM28.0311 8.44757C28.4757 8.52002 28.5615 8.73205 28.514 8.88268C28.3797 9.32084 27.7766 9.01299 27.7566 8.42636C27.8484 8.42749 27.9401 8.43458 28.031 8.44757H28.0311ZM27.9822 3.68435C29.3949 3.00229 29.6918 4.19669 29.9318 5.10717C29.9765 5.27592 30.0217 5.4261 30.0656 5.55996C29.7873 5.58512 29.4983 5.62256 29.2382 5.64741C29.1874 4.89117 28.9628 4.72374 28.7064 4.67292C28.5578 4.63804 28.4012 4.65205 28.2621 4.71265C28.123 4.77325 28.0098 4.87685 27.9411 5.00644C27.8031 5.28079 27.9099 5.98048 28.8122 5.96502C28.8547 5.96502 28.8882 5.96103 28.9287 5.95929C28.9404 6.35109 28.9329 6.71463 28.9316 6.9819C28.5899 6.96864 28.2291 6.96906 27.9173 6.96336C27.949 6.78196 27.9616 6.59803 27.9551 6.41426C27.9487 6.33028 27.9233 6.24858 27.8806 6.17474C27.8379 6.1009 27.7789 6.03665 27.7076 5.98638C27.6363 5.93612 27.5545 5.901 27.4676 5.88344C27.3807 5.86588 27.2908 5.86628 27.2041 5.88462C26.7072 5.97253 26.641 6.71066 26.9743 7.02739C27.1461 7.15893 27.3618 7.22815 27.5826 7.22264C27.5415 7.52787 27.4996 7.86669 27.4875 8.16001C27.1472 8.15602 26.7813 8.17814 26.4737 8.19666C26.4831 8.09859 26.497 8.00452 26.5003 7.89583C26.5147 7.20585 25.9489 7.00926 25.6031 7.24902C24.971 7.68855 25.4278 8.40373 25.9335 8.46202C25.9969 8.46865 26.0682 8.47307 26.146 8.4753C26.106 8.68335 26.0555 8.90069 26.0132 9.1127C25.4783 8.92207 24.9164 8.80832 24.346 8.77522C25.2638 6.89045 26.6891 4.30976 27.982 3.68435H27.9822ZM28.9144 5.67305C28.8388 5.67567 28.7671 5.67701 28.7064 5.67435C28.1891 5.64606 28.0311 5.15133 28.155 4.97686C28.3186 4.74628 28.8285 4.67292 28.8966 5.42742C28.9058 5.5087 28.91 5.59001 28.9142 5.67305H28.9144ZM22.7618 7.20451C22.5581 7.34899 22.2048 7.25841 22.0104 6.55253C22.6047 6.52376 23.0619 6.99514 22.7618 7.20451ZM23.782 5.56525C24.1297 5.77816 23.9181 6.16778 23.4809 6.00123C23.3532 5.95134 23.2632 5.74237 23.1966 5.46894C23.3973 5.45166 23.5992 5.48488 23.782 5.56525ZM25.0451 4.45428C25.0778 4.76174 24.5161 4.99677 24.2509 4.14903C24.7389 4.12476 25.0172 4.20249 25.0451 4.45428ZM25.9261 2.82738C26.1377 3.13571 25.4222 3.52178 25.0512 2.6551C25.4674 2.62332 25.8035 2.64891 25.9261 2.82738ZM10.6497 2.82738C10.7709 2.64887 11.1079 2.62336 11.5236 2.6551C11.1522 3.52178 10.4368 3.13571 10.6498 2.82738H10.6497ZM11.5306 4.45428C11.5572 4.2039 11.8359 4.12476 12.3235 4.14903C12.0569 4.99673 11.4967 4.76183 11.5307 4.45428H11.5306ZM13.0934 6.00123C12.6562 6.16778 12.4433 5.77816 12.7938 5.56525C12.9759 5.48476 13.1772 5.45153 13.3773 5.46894C13.3117 5.74248 13.2203 5.95134 13.0935 6.00123H13.0934ZM13.8126 7.20444C13.5125 6.99507 13.9683 6.52374 14.5649 6.55246C14.3692 7.25841 14.0164 7.34908 13.8127 7.20451L13.8126 7.20444ZM5.66955 6.44262C5.19645 6.55128 5.26218 5.97524 5.53858 5.86348C5.73858 5.78647 5.9572 5.76354 6.17013 5.79724C6.0429 6.14216 5.88955 6.3944 5.66955 6.44262ZM6.85763 7.86676C6.63111 7.84995 6.47544 7.37556 7.35215 7.25273C7.3349 7.68204 7.2305 7.89451 6.85763 7.86669V7.86676ZM8.0597 8.88274C8.01308 8.73205 8.09745 8.52009 8.54348 8.44764C8.63468 8.43457 8.72672 8.42748 8.81895 8.42643C8.79798 9.01299 8.19439 9.32088 8.0597 8.88268V8.88274ZM8.91831 6.61046C8.88521 6.1356 9.19378 6.00793 9.41562 6.04461C9.63795 6.07996 9.75319 6.60383 9.40865 6.85695C9.26795 6.92209 9.11263 6.95378 8.95611 6.94926C8.93874 6.82064 8.9257 6.70227 8.91824 6.61039L8.91831 6.61046ZM9.96004 10.321C9.69204 10.2128 9.87707 9.77592 10.1213 9.60896C10.181 9.56876 10.2569 9.51885 10.3488 9.46673C10.3544 9.49631 10.3618 9.5268 10.3646 9.55861C10.4428 10.138 10.2653 10.442 9.95997 10.321L9.96004 10.321ZM10.3426 7.77922C10.3524 7.43734 10.7328 7.24341 10.9336 7.38652C11.2697 7.63168 10.9695 8.22761 10.4806 8.21477C10.4503 8.21477 10.413 8.21171 10.3799 8.21036C10.3545 8.06793 10.342 7.92368 10.3426 7.77922ZM10.5607 9.11281C10.5174 8.9008 10.4685 8.68346 10.427 8.47542C10.5058 8.4731 10.578 8.46876 10.6409 8.46213C11.1467 8.40385 11.6025 7.68867 10.9695 7.24914C10.6255 7.00926 10.0593 7.20585 10.0742 7.89595C10.077 8.00463 10.091 8.09871 10.1022 8.19678C9.79316 8.17823 9.42822 8.15614 9.08656 8.16012C9.07492 7.86681 9.03203 7.52799 8.99197 7.22276C9.21278 7.22843 9.42848 7.15919 9.60021 7.02751C9.93252 6.71078 9.86728 5.97267 9.37041 5.88474C9.2837 5.86659 9.19387 5.86632 9.10704 5.88395C9.0202 5.90159 8.93838 5.93671 8.86712 5.98694C8.79586 6.03718 8.73683 6.10134 8.69403 6.17509C8.65124 6.24884 8.62567 6.33045 8.61907 6.41438C8.61448 6.59809 8.62697 6.78183 8.65637 6.96347C8.34547 6.96918 7.98473 6.96876 7.64354 6.98202C7.64214 6.71474 7.63422 6.35121 7.64586 5.95941C7.68549 5.96115 7.71951 5.96514 7.76147 5.96514C8.6657 5.9806 8.77242 5.28091 8.63492 5.00655C8.5659 4.87696 8.45251 4.77341 8.31332 4.71282C8.17412 4.65224 8.01736 4.63821 7.86866 4.67304C7.6109 4.72386 7.38676 4.89129 7.33498 5.64752C7.07629 5.62279 6.78637 5.58523 6.50907 5.56008C6.55381 5.42622 6.59809 5.27604 6.64376 5.10729C6.88334 4.19686 7.17884 3.00241 8.59251 3.68446C9.88592 4.30995 11.3108 6.89056 12.2295 8.7755C11.6586 8.80846 11.0961 8.92216 10.5607 9.11281ZM7.65978 5.67305C7.66445 5.59001 7.66956 5.5087 7.67656 5.42742C7.74694 4.67292 8.25498 4.74628 8.41951 4.97686C8.54348 5.15133 8.38456 5.64606 7.86858 5.67435C7.80799 5.67701 7.73475 5.67567 7.65978 5.67305ZM2.25307 11.765C1.72824 11.9439 1.53433 11.2287 2.45255 11.0383C2.4824 11.0317 2.51315 11.0251 2.54438 11.0202C2.51733 11.4028 2.43484 11.7041 2.25307 11.765ZM3.7469 10.1893C3.42205 9.22766 4.45164 9.25991 4.36774 9.92121C4.33699 10.161 4.12258 10.3077 3.82894 10.4146C3.80096 10.34 3.77393 10.2675 3.7469 10.1893ZM3.95524 12.614C3.64436 12.7523 3.34886 12.2451 3.90025 11.9611C3.96334 11.9306 4.02824 11.9037 4.09462 11.8803C4.21441 12.2664 4.16265 12.5213 3.95524 12.614ZM5.34795 10.7199C5.20299 10.1894 5.95293 9.88813 6.06854 10.4946C6.13517 10.8463 5.8886 11.0243 5.54929 11.1507C5.46744 11.0137 5.4 10.8694 5.34795 10.7199ZM6.10675 13.2104C5.91145 13.6345 5.31018 13.2975 5.66208 12.9198C5.7629 12.816 5.87908 12.7268 6.007 12.6547C6.10228 12.825 6.13725 13.0198 6.10675 13.2104V13.2104ZM7.17876 11.2495C7.11027 10.9143 7.76139 10.5689 7.86858 11.235C7.90635 11.4815 7.68216 11.6679 7.39784 11.8101C7.29766 11.6338 7.22393 11.4451 7.17876 11.2495V11.2495ZM7.97622 13.9066C7.684 13.9256 7.53204 13.5625 7.78422 13.1371C7.8197 13.0825 7.85942 13.0306 7.90305 12.9816C7.91983 13.0015 7.93894 13.0249 7.95246 13.0426C8.2382 13.3906 8.32815 13.884 7.97624 13.9065L7.97622 13.9066ZM7.94593 12.5929C7.82852 12.448 7.68957 12.2735 7.55907 12.0782C7.71258 12.011 7.85324 11.9202 7.97531 11.8093C8.25775 11.5404 8.08622 10.6895 7.46959 10.697C6.88882 10.7063 6.81891 11.2209 6.95641 11.5694C7.00784 11.6918 7.06811 11.8106 7.13681 11.925C6.89163 12.0205 6.64738 12.0907 6.51223 12.1437C6.419 12.1777 6.29408 12.2214 6.16404 12.2744C6.02935 11.9904 5.85597 11.6905 5.70122 11.421C5.90721 11.3617 6.08365 11.2338 6.19807 11.061C6.43904 10.5424 6.06617 9.88507 5.55487 10.0375C4.87297 10.2402 5.07297 10.807 5.25656 11.1908C5.26262 11.2055 5.27194 11.2222 5.2794 11.2381C5.14469 11.2775 5.00766 11.3123 4.87297 11.3521C4.72941 11.3923 4.5015 11.4506 4.26938 11.527C4.17334 11.2748 4.04937 10.9863 3.92258 10.6639C4.12979 10.6103 4.31615 10.5008 4.45908 10.3489C4.70423 9.9571 4.45663 9.00471 3.74687 9.34659C3.32973 9.54936 3.35908 10.0318 3.51104 10.511C3.28171 10.5716 3.03142 10.6188 2.79372 10.6705C2.79687 10.2941 2.77507 9.9179 2.72846 9.54409C2.44695 7.10334 5.8532 8.81333 7.49014 10.1522C8.04385 10.6041 8.6325 11.1306 9.22915 11.6749C8.76465 11.9317 8.33391 12.2398 7.94596 12.5928L7.94593 12.5929ZM0.867358 17.1749C0.438078 17.6458 0.0162843 16.9881 0.774599 16.6219C0.851996 16.5852 0.929344 16.5503 1.00904 16.515C1.03316 16.6284 1.03304 16.7452 1.00871 16.8585C0.984372 16.9719 0.936309 17.0795 0.867358 17.1749ZM1.87878 15.1703C1.78697 14.7931 2.35334 14.5316 2.59891 15.0678C2.71877 15.3307 2.50894 15.5378 2.24421 15.6925C2.08925 15.5414 1.96533 15.3644 1.87878 15.1703ZM2.69446 17.8097C2.51315 17.5734 2.6073 17.3812 3.06733 17.1016C3.14338 17.1993 3.19791 17.3104 3.22767 17.4285C3.28127 17.9011 2.83149 17.9868 2.69446 17.8097ZM4.11466 15.4455C4.26519 14.9799 4.79376 15.1575 4.82591 15.6191C4.83755 15.8011 4.61571 15.98 4.37146 16.1218C4.18222 15.8776 4.05221 15.6377 4.11466 15.4455ZM5.24724 18.4189C5.07292 18.5597 4.46747 18.3212 4.95827 17.8119C5.03457 17.7443 5.12094 17.6878 5.21461 17.644C5.50734 18.1172 5.39083 18.3018 5.24726 18.4189H5.24724ZM6.54591 16.7151C6.39478 16.5838 6.27154 16.4264 6.18283 16.2513C6.02948 15.7358 6.69877 15.6231 6.85773 16.0711C6.95785 16.3546 6.77744 16.564 6.54591 16.7151ZM7.66966 18.3734C7.71208 18.6265 7.65195 18.7471 7.46832 18.7776C7.29444 18.8067 6.92717 18.6322 7.29679 17.8959C7.30685 17.8749 7.3187 17.8549 7.33221 17.8358C7.48811 17.987 7.60375 18.1713 7.66956 18.3734L7.66966 18.3734ZM7.83047 16.8498C7.63246 17.0265 7.44849 17.2168 7.28008 17.4192C7.11042 17.2518 6.92959 17.0813 6.75946 16.9218C7.01859 16.7469 7.33507 16.4271 6.95195 15.8921C6.65692 15.4827 5.73965 15.5189 5.90744 16.303C6.00544 16.5081 6.14826 16.6912 6.32644 16.8401C6.16891 16.9174 6.02116 16.9723 5.95311 17.007C5.84777 17.0605 5.59107 17.1722 5.33833 17.2964C5.21062 17.1082 5.06612 16.9452 4.95847 16.8095C4.84658 16.673 4.71003 16.5224 4.57718 16.3709C4.93051 16.2013 5.10343 16.0294 5.02789 15.5837C5.01767 15.4534 4.96103 15.3302 4.86726 15.2344C4.77349 15.1385 4.64816 15.0758 4.5118 15.0563C4.37544 15.0368 4.23615 15.0619 4.11676 15.1273C3.99738 15.1927 3.90499 15.2946 3.85473 15.4163C3.73171 15.699 3.80673 15.8814 4.10783 16.2613C3.95962 16.3329 3.83051 16.3854 3.77828 16.4124C3.57836 16.5091 3.35321 16.6134 3.14534 16.7225C2.9412 16.4562 2.66525 16.1597 2.42056 15.892C2.53723 15.8401 2.63998 15.7638 2.72111 15.6688C2.80224 15.5739 2.85964 15.4628 2.889 15.3438C2.93421 15.0037 2.57812 14.5182 2.11574 14.6114C1.52474 14.7294 1.51168 15.199 1.80906 15.6053C1.83374 15.6376 1.9018 15.7144 1.99316 15.8169C1.80578 15.8987 1.62961 15.9584 1.5485 15.9897C1.44316 16.033 1.3187 16.0798 1.19055 16.1311C1.11176 15.597 0.938835 15.0267 0.867529 14.6782C0.477878 12.7814 3.3933 13.3958 6.0524 14.9742C6.32637 15.1358 7.24792 15.7203 8.39779 16.3683C8.18507 16.541 7.9916 16.7045 7.83037 16.8498L7.83047 16.8498ZM0.40826 22.7054C0.377951 22.5429 0.519658 22.3432 0.913982 22.0693C0.959435 22.191 0.986273 22.3182 0.993678 22.447C0.997984 23.0257 0.474893 23.0845 0.40826 22.7054ZM2.20784 20.9725C2.05814 20.8559 1.9287 20.7177 1.82425 20.563C1.76926 20.423 1.78326 20.0334 2.16263 20.0193C2.43066 20.0073 2.63619 20.5114 2.45862 20.7326C2.38445 20.821 2.30036 20.9014 2.20784 20.9725ZM3.50676 22.7682C3.49279 23.1861 2.85189 23.2846 2.8435 22.8115C2.83978 22.6511 3.02391 22.4722 3.26764 22.3017C3.40824 22.4219 3.49402 22.5892 3.50686 22.7682L3.50676 22.7682ZM4.5909 21.2164C4.58251 21.2221 4.5718 21.2287 4.56341 21.2349C4.30426 21.0065 4.11688 20.7954 4.13088 20.6567C4.18166 20.1474 4.64917 20.252 4.78992 20.5348C4.84967 20.6519 4.86243 20.7856 4.82584 20.911C4.78924 21.0364 4.70577 21.145 4.591 21.2164H4.5909ZM5.91556 23.0805C5.90762 23.1547 5.87083 23.2234 5.81234 23.2732C5.75386 23.3231 5.67788 23.3506 5.59921 23.3502C5.52054 23.3499 5.44482 23.3218 5.38681 23.2715C5.32879 23.2211 5.29264 23.1521 5.2854 23.0778C5.2953 22.9673 5.33189 22.8603 5.39234 22.7653C5.45279 22.6702 5.53548 22.5896 5.63403 22.5296C5.81404 22.7178 5.95758 22.9228 5.91565 23.0805H5.91556ZM6.80719 21.5026C6.35973 21.1497 6.21059 20.8372 6.47534 20.6359C6.54538 20.5847 6.63335 20.5607 6.72138 20.5688C6.80942 20.5768 6.89092 20.6163 6.94936 20.6792C7.10327 20.8524 7.2417 21.1524 6.80729 21.5026H6.80719ZM8.41941 22.9661C8.45368 23.0482 8.45389 23.1396 8.41999 23.2218C8.3861 23.3041 8.32063 23.3712 8.23671 23.4096C8.04373 23.4847 7.64011 23.3702 7.8792 22.4886C8.16269 22.6616 8.37895 22.819 8.41951 22.9661H8.41941ZM7.84564 21.7098C7.79672 21.8374 7.7529 21.958 7.71188 22.0747C7.60095 22.0102 7.48488 21.9421 7.34787 21.8626C7.24346 21.8016 7.14792 21.7416 7.05795 21.6828C7.06494 21.6753 7.07708 21.67 7.08405 21.6619C7.52592 21.271 7.32595 20.5218 6.81137 20.4264C6.69595 20.4019 6.57546 20.4102 6.465 20.4503C6.35453 20.4903 6.259 20.5604 6.19038 20.6517C6.12175 20.743 6.08308 20.8515 6.07922 20.9636C6.07535 21.0756 6.10646 21.1862 6.16864 21.2816C6.27612 21.4295 6.4069 21.5609 6.55643 21.6712C6.51355 21.6964 6.46927 21.7216 6.42128 21.7468C6.17117 21.8713 5.93027 22.0118 5.70022 22.1673C5.65827 22.128 5.61399 22.09 5.57057 22.0511C5.35103 21.8647 5.05553 21.6431 4.78985 21.4265C4.89462 21.3686 4.98034 21.2842 5.03746 21.1828C5.09457 21.0814 5.12083 20.967 5.11331 20.8522C5.10724 20.6843 5.04043 20.5235 4.92408 20.3968C4.80773 20.27 4.64892 20.185 4.47429 20.1561C3.98724 20.1512 3.64 20.5629 3.97513 21.0691C4.06791 21.191 4.17537 21.3022 4.29533 21.4005C4.01427 21.5577 3.63858 21.7445 3.31559 21.9402C3.21212 21.8338 3.09 21.718 2.94365 21.5873C2.85603 21.5087 2.65373 21.3492 2.44446 21.1752C2.56495 21.0949 2.65833 20.9833 2.71329 20.8538C2.76826 20.7244 2.78245 20.5826 2.75416 20.4456C2.72587 20.3086 2.6563 20.1824 2.55388 20.0821C2.45146 19.9818 2.32056 19.9118 2.17704 19.8805C2.09266 19.8752 2.00803 19.8865 1.92851 19.9138C1.84898 19.941 1.7763 19.9837 1.71505 20.0389C1.6538 20.0942 1.60533 20.1609 1.5727 20.2348C1.54006 20.3088 1.52399 20.3883 1.52548 20.4685C1.51012 20.6924 1.69328 20.9097 1.95801 21.147C1.66344 21.3347 1.31853 21.5047 1.01232 21.6792C1.00393 21.6642 0.997861 21.647 0.989471 21.6298C0.369561 20.3885 0.252585 19.5748 0.744853 19.2497C1.52323 18.7338 3.31725 18.952 5.64773 19.714C6.54591 20.0094 7.47707 20.3046 8.41858 20.5767C8.18901 20.9358 7.99714 21.3153 7.84574 21.7098H7.84564ZM16.7122 20.3267C15.4966 22.0269 12.014 21.2177 10.2815 20.8245C9.97435 20.7539 9.48494 20.6081 8.89206 20.423C9.08371 20.1193 9.30134 19.8311 9.54275 19.5612C10.1446 18.9165 10.8625 18.3784 11.663 17.9718C12.4996 18.3005 13.272 18.5147 13.8429 18.4948C15.1797 18.4498 15.595 17.5402 14.3869 17.0216C13.8676 16.7999 12.8082 17.0411 11.6728 17.6445C11.3768 17.5296 11.0608 17.3936 10.7173 17.231C10.0727 16.9258 9.47377 16.6122 8.90185 16.2985C9.62405 15.7315 10.4131 15.2458 11.2533 14.8509C11.6653 14.6734 12.0224 14.5382 12.3412 14.4357C12.5785 14.6252 12.8068 14.7997 13.0237 14.953C13.644 15.3877 14.8083 15.9398 15.1151 15.3148C15.5346 14.4614 14.3801 13.9644 13.6674 13.979C13.2473 13.9922 12.8303 14.0528 12.4253 14.1596C11.9713 13.7895 11.4544 13.3256 10.8527 12.7562C10.6812 12.5946 10.2617 12.2041 9.714 11.7168C10.3111 11.4422 10.9497 11.2575 11.6068 11.1695C12.1801 11.0943 12.7613 11.0909 13.3356 11.1594C14.0151 12.5508 14.4402 12.9161 15.0382 12.948C15.7765 12.9882 16.0664 12.2455 15.4363 11.6347C15.1067 11.3122 14.4174 11.0785 13.5887 10.9716C13.2876 10.3709 12.9641 9.66539 12.6378 8.96395C12.8107 8.9666 12.9925 8.97555 13.1841 8.99178C15.2927 9.17993 16.7907 9.88493 18.0642 11.1518C18.0167 11.2035 17.9687 11.2535 17.9207 11.3078C17.6914 11.5688 16.6575 12.4475 16.7335 13.7536C16.7824 14.5876 17.3809 14.9132 18.0097 15.2144C17.3863 15.5131 16.6442 15.9814 16.7245 17.0791C16.7813 17.868 17.4096 18.2793 18.0584 18.6653C17.9092 18.7572 17.7545 18.8549 17.5984 18.9657C17.3567 19.1195 17.1526 19.3205 16.9997 19.5552C16.8468 19.79 16.7488 20.053 16.7122 20.3267ZM12.0555 17.7828C12.5938 17.5294 13.1679 17.3511 13.7601 17.2536C14.235 17.1961 14.9239 17.3481 14.8633 17.7333C14.8046 18.0964 13.9759 18.4498 12.0555 17.7828ZM12.6545 14.3425C13.5074 14.1159 14.0374 14.1729 14.5007 14.3743C14.8279 14.5148 15.2618 15.0811 14.7878 15.2238C14.2783 15.3757 13.6239 15.0983 12.6545 14.3425ZM13.7153 11.2181C14.6414 11.3869 15.3303 11.7416 15.4912 12.1268C15.8035 12.8825 14.7832 12.8455 14.3264 12.2451C14.0954 11.9181 13.8911 11.5747 13.7153 11.2181ZM17.7671 11.9678C17.8827 11.8263 18.001 11.6974 18.118 11.5649C18.1195 12.1983 18.1208 13.4896 18.125 15.0078C17.0642 14.4812 16.4093 13.6609 17.7671 11.9678ZM18.1306 18.4299C17.5047 18.0491 17.04 17.7028 17.0609 16.8693C17.081 16.0737 17.5662 15.7163 18.125 15.4292C18.1264 16.3931 18.1288 17.4285 18.1306 18.4299ZM17.0171 20.3161C17.0432 19.6336 17.5522 19.248 18.1306 18.895C18.1344 20.2577 18.1371 21.5282 18.1376 22.4434C17.596 21.9735 16.9808 21.2601 17.0171 20.3161ZM15.8356 6.74864C15.546 6.57152 15.2247 6.44593 14.8875 6.37803C14.9369 6.12976 14.9732 5.86605 15.0003 5.62353C15.1252 5.63651 15.2513 5.63417 15.3755 5.61658C16.0113 5.47476 16.187 4.52724 15.514 4.43933C14.9574 4.36867 14.7971 4.57008 14.7216 5.34348C14.5328 5.32226 14.3445 5.29312 14.1879 5.27455C14.0318 5.25647 13.8817 5.24441 13.7423 5.23514C13.767 5.0659 13.7857 4.87028 13.7973 4.64235C13.8038 4.53545 13.8109 4.4365 13.8141 4.34372C14.9929 4.41969 14.9947 3.28091 14.5175 3.08965C13.8854 2.83433 13.6058 3.33525 13.5666 3.78628C13.5634 3.8406 13.5582 3.91657 13.5522 4.00446C13.2837 3.97534 12.9882 3.93259 12.702 3.90419C12.7705 3.55152 12.8182 3.19549 12.8446 2.83776C14.1008 2.96458 14.0858 1.65655 13.4608 1.57219C12.8982 1.4949 12.6969 1.74838 12.5645 2.5227C12.3272 2.49257 12.0788 2.45779 11.8383 2.43125C12.1171 1.67587 12.2555 0.738545 12.7556 0.490809C13.5522 0.0963461 15.5867 1.68966 16.6783 4.09812C17.5709 6.00179 18.0664 8.05115 18.1376 10.1332C17.7922 8.9825 17.0414 7.46648 15.8356 6.74864ZM15.0278 5.36511C15.0493 5.15131 15.066 4.97507 15.0842 4.87524C15.1616 4.4684 15.7936 4.41673 15.761 4.92516C15.7372 5.2918 15.4091 5.37399 15.0278 5.36513V5.36511ZM13.8393 4.03019C13.8994 3.37951 14.0056 3.19928 14.365 3.17631C14.5389 3.16618 14.8749 3.55665 14.4811 3.92993C14.2877 4.03761 14.0589 4.07335 13.8393 4.03022V4.03019ZM12.8675 2.55834C12.8768 2.45633 12.8842 2.36311 12.8936 2.29108C12.9626 1.69527 13.5666 1.55826 13.6757 1.92754C13.7657 2.24029 13.5666 2.61133 13.0385 2.5738C12.9863 2.56983 12.9262 2.56367 12.8675 2.55836V2.55834ZM16.386 25.4415C15.8766 25.385 15.706 24.8823 16.3787 24.8179C16.576 24.7924 16.7768 24.8115 16.9648 24.8734C17.1529 24.9353 17.3229 25.0385 17.4609 25.1744C17.1427 25.3716 16.7654 25.4654 16.386 25.4416V25.4415ZM20.1959 24.8179C20.8694 24.8824 20.6984 25.3851 20.1875 25.4416C19.808 25.4653 19.4306 25.3715 19.1122 25.1744C19.2506 25.0385 19.4209 24.9354 19.6091 24.8735C19.7974 24.8115 19.9984 24.7925 20.1959 24.8178V24.8179ZM18.7044 25.2128C18.4692 25.6167 18.3272 26.0633 18.2877 26.523C18.2476 26.0629 18.1054 25.616 17.8705 25.2115C18.049 25.0346 18.1906 24.8273 18.2877 24.6006C18.3843 24.8278 18.5257 25.0356 18.7044 25.2127V25.2128ZM19.8971 4.09826C20.9883 1.68989 23.0228 0.0965779 23.8189 0.491041C24.3195 0.738869 24.456 1.67619 24.7375 2.43148C24.4956 2.458 24.2453 2.49289 24.009 2.52294C23.8767 1.74862 23.6739 1.49501 23.1127 1.57242C22.4891 1.65679 22.4746 2.96481 23.7303 2.838C23.7557 3.1958 23.8032 3.55188 23.8725 3.90442C23.5863 3.93271 23.2912 3.97557 23.0223 4.00469C23.0167 3.9168 23.0111 3.84083 23.0069 3.78651C22.9678 3.33548 22.6886 2.83456 22.057 3.08988C21.5793 3.28114 21.5821 4.41993 22.7594 4.34395C22.7636 4.43669 22.7715 4.53568 22.7776 4.64258C22.7893 4.87052 22.8074 5.06621 22.8335 5.23537C22.6928 5.24465 22.5422 5.25661 22.3865 5.27478C22.2304 5.29333 22.0435 5.3225 21.8529 5.34371C21.7755 4.57022 21.6166 4.36881 21.0614 4.43956C20.3875 4.52747 20.5632 5.475 21.1984 5.61681C21.323 5.63437 21.4494 5.63671 21.5746 5.62376C21.6002 5.86628 21.6375 6.12999 21.6869 6.37826C21.3497 6.44593 21.0284 6.57145 20.7389 6.74864C19.5322 7.46648 18.7836 8.9825 18.4368 10.1332C18.5086 8.05117 19.0045 6.00191 19.8971 4.09826ZM23.7065 2.55836C23.6473 2.56367 23.5895 2.56995 23.536 2.57382C23.0069 2.61136 22.8088 2.24031 22.8997 1.92757C23.0069 1.55828 23.6128 1.69522 23.6818 2.2911C23.6893 2.36313 23.6963 2.45633 23.7065 2.55836ZM22.7343 4.03022C22.4383 4.04788 22.201 4.03253 22.0938 3.92995C21.6986 3.5567 22.0365 3.1662 22.2103 3.17633C22.5679 3.19928 22.6746 3.37953 22.7343 4.03022ZM21.5466 5.36513C21.1654 5.37399 20.8373 5.2918 20.8139 4.92518C20.7808 4.41675 21.4124 4.46847 21.4898 4.87527C21.5089 4.97512 21.5252 5.15131 21.5466 5.36513ZM18.4569 11.5649C18.5748 11.6974 18.6917 11.8264 18.8074 11.9678C20.1665 13.6609 19.5117 14.4812 18.4499 15.0078C18.4536 13.4896 18.455 12.1983 18.4569 11.5649ZM19.5145 16.8692C19.5354 17.7028 19.0703 18.0491 18.4443 18.4299C18.4468 17.4283 18.4485 16.393 18.4494 15.4292C19.0088 15.7163 19.4935 16.0759 19.5145 16.8693V16.8692ZM18.4368 22.4435C18.4382 21.5282 18.441 20.2578 18.4428 18.8951C19.0226 19.248 19.5307 19.6336 19.5583 20.3162C19.5932 21.2601 18.9771 21.9735 18.4368 22.4435ZM26.2947 20.8245C24.5599 21.2177 21.0777 22.0269 19.8626 20.3267C19.8263 20.0529 19.7283 19.7897 19.5754 19.5549C19.4224 19.3201 19.218 19.1192 18.976 18.9658C18.8195 18.855 18.6666 18.7573 18.5155 18.6654C19.1648 18.2794 19.7917 17.8681 19.8509 17.0792C19.9316 15.9815 19.188 15.5132 18.565 15.2146C19.1942 14.9132 19.7917 14.5878 19.8411 13.7538C19.9176 12.4476 18.8828 11.569 18.6535 11.308C18.6055 11.2536 18.5584 11.2036 18.5104 11.152C19.7847 9.88512 21.2818 9.18012 23.3895 8.99196C23.5834 8.97562 23.7619 8.96676 23.9358 8.96414C23.6104 9.6656 23.287 10.3711 22.9859 10.9718C22.1581 11.0787 21.4687 11.3124 21.1373 11.6348C20.5081 12.2458 20.7976 12.9884 21.5354 12.9482C22.1334 12.9163 22.5603 12.551 23.2385 11.1596C23.8129 11.0911 24.3943 11.0945 24.9677 11.1697C25.6248 11.2579 26.2634 11.4425 26.8605 11.717C26.3119 12.2043 25.8925 12.5948 25.7223 12.7564C25.1215 13.3258 24.6032 13.7896 24.1493 14.1598C23.7443 14.053 23.3273 13.9923 22.9071 13.9791C22.1953 13.9646 21.0395 14.4616 21.459 15.315C21.767 15.94 22.9305 15.3879 23.5513 14.9532C23.7676 14.7999 23.9969 14.6254 24.2327 14.4359C24.6027 14.557 24.9661 14.6955 25.3215 14.8511C26.1615 15.2465 26.9507 15.7322 27.6734 16.2987C27.1006 16.6123 26.5017 16.926 25.8547 17.2312C25.5131 17.3938 25.1971 17.5298 24.903 17.6447C23.7652 17.0413 22.7058 16.8001 22.1865 17.0218C20.9798 17.5404 21.3946 18.4499 22.7309 18.495C23.3024 18.5149 24.0747 18.3007 24.9118 17.972C25.7125 18.3785 26.4306 18.9167 27.0326 19.5614C27.2738 19.8316 27.4915 20.1198 27.6838 20.4232C27.0899 20.6081 26.6001 20.7539 26.2948 20.8245H26.2947ZM22.8587 11.2181C22.6839 11.575 22.4799 11.9184 22.2486 12.2451C21.7923 12.8455 20.7711 12.8827 21.0838 12.1268C21.245 11.7416 21.9321 11.3869 22.8587 11.2181ZM23.92 14.3425C22.9491 15.0983 22.2961 15.3757 21.7867 15.2238C21.3126 15.0811 21.7461 14.5148 22.0729 14.3743C22.5371 14.1729 23.067 14.1159 23.92 14.3425ZM24.5204 17.7828C22.5987 18.4498 21.7705 18.0964 21.7113 17.7333C21.6511 17.3481 22.3396 17.1961 22.8145 17.2536C23.4071 17.3511 23.9816 17.5294 24.5204 17.7828ZM28.3382 23.4096C28.254 23.3714 28.1883 23.3044 28.1542 23.2221C28.1201 23.1398 28.1202 23.0483 28.1546 22.9661C28.1961 22.819 28.4114 22.6617 28.6952 22.4885C28.9347 23.3702 28.5321 23.4846 28.3381 23.4096H28.3382ZM29.7654 21.5026C29.3324 21.1523 29.4704 20.8524 29.6242 20.6792C29.6828 20.6163 29.7645 20.5768 29.8526 20.5688C29.9408 20.5608 30.0289 20.5848 30.0991 20.6359C30.3643 20.8373 30.2142 21.1497 29.7653 21.5026H29.7654ZM31.2886 23.0778C31.2813 23.1521 31.2451 23.2212 31.1871 23.2715C31.129 23.3219 31.0533 23.35 30.9745 23.3503C30.8958 23.3507 30.8198 23.3232 30.7613 23.2733C30.7028 23.2234 30.6659 23.1547 30.658 23.0805C30.616 22.9228 30.7605 22.7178 30.9404 22.5296C31.0388 22.5897 31.1214 22.6703 31.1817 22.7654C31.2421 22.8604 31.2786 22.9673 31.2885 23.0778H31.2886ZM32.011 21.2349C32.0026 21.2287 31.9929 21.2221 31.9845 21.2164C31.8692 21.1454 31.7853 21.0369 31.7486 20.9114C31.7118 20.7858 31.7248 20.6519 31.785 20.5348C31.9253 20.2519 32.3928 20.1474 32.4445 20.6567C32.4589 20.7954 32.2692 21.0065 32.011 21.2349H32.011ZM33.7319 22.8114C33.7221 23.2845 33.0821 23.186 33.0681 22.7681C33.0797 22.589 33.1651 22.4215 33.3059 22.3016C33.55 22.4722 33.7336 22.6511 33.7318 22.8115L33.7319 22.8114ZM34.3667 20.9724C34.2745 20.9011 34.1906 20.8207 34.1164 20.7326C33.9365 20.5113 34.143 20.0072 34.4128 20.0192C34.7927 20.0333 34.8053 20.4229 34.7493 20.5629C34.6458 20.718 34.5165 20.8563 34.3666 20.9725L34.3667 20.9724ZM36.1677 22.7054C36.0987 23.0844 35.5776 23.0256 35.5818 22.4469C35.5885 22.3181 35.6147 22.191 35.6596 22.0693C36.0534 22.3432 36.1965 22.5429 36.1676 22.7054L36.1677 22.7054ZM35.586 21.6297C35.5767 21.6469 35.5697 21.6641 35.5627 21.6791C35.256 21.5046 34.912 21.3346 34.617 21.1468C34.8812 20.9096 35.0654 20.6923 35.0491 20.4684C35.0505 20.3883 35.0343 20.3088 35.0017 20.2349C34.9691 20.161 34.9206 20.0944 34.8594 20.0391C34.7983 19.9839 34.7257 19.9413 34.6462 19.9139C34.5668 19.8866 34.4822 19.8752 34.3979 19.8804C34.2544 19.9116 34.1235 19.9815 34.021 20.0818C33.9185 20.182 33.8488 20.3082 33.8204 20.4451C33.7919 20.582 33.806 20.7238 33.8607 20.8534C33.9155 20.9829 34.0087 21.0947 34.129 21.1751C33.9192 21.3492 33.7183 21.5086 33.6312 21.5872C33.4844 21.718 33.3623 21.8337 33.2583 21.9402C32.9367 21.7445 32.5606 21.5577 32.279 21.4004C32.3994 21.3025 32.5069 21.1913 32.5993 21.0691C32.9344 20.5629 32.5871 20.1512 32.1015 20.156C31.9266 20.1847 31.7675 20.2696 31.651 20.3964C31.5344 20.5232 31.4675 20.6841 31.4615 20.8522C31.4535 20.9669 31.4795 21.0815 31.5365 21.183C31.5936 21.2844 31.6795 21.3688 31.7844 21.4265C31.5178 21.6429 31.2237 21.8646 31.0037 22.0511C30.9599 22.09 30.9157 22.1279 30.8741 22.1672C30.6443 22.0119 30.4037 21.8714 30.1539 21.7467C30.1045 21.7215 30.0612 21.6963 30.0178 21.6712C30.1675 21.5609 30.2984 21.4295 30.4061 21.2816C30.4681 21.1861 30.499 21.0755 30.495 20.9635C30.491 20.8515 30.4523 20.7431 30.3837 20.6518C30.315 20.5606 30.2196 20.4905 30.1091 20.4504C29.9987 20.4103 29.8783 20.402 29.7629 20.4264C29.2483 20.5218 29.0479 21.271 29.4912 21.6619C29.4989 21.6697 29.5074 21.6767 29.5168 21.6828C29.4264 21.7415 29.3299 21.8014 29.2274 21.8625C29.0904 21.9421 28.9724 22.0101 28.8624 22.0746C28.8214 21.958 28.7776 21.8374 28.7286 21.7097C28.5772 21.3153 28.3855 20.9358 28.1562 20.5767C29.0972 20.3046 30.0285 20.0095 30.9262 19.714C33.2553 18.952 35.053 18.7338 35.83 19.2497C36.3219 19.5749 36.2044 20.3885 35.5859 21.6298L35.586 21.6297Z" fill="#0C1F1E"/> </svg> </div> <div class="header__dropdown__panel__middle"> <svg xmlns="http://www.w3.org/2000/svg" width="92" height="13" viewBox="0 0 92 13" fill="none"> <path d="M11.3795 4.17759C11.4029 3.41913 11.2061 2.67013 10.8129 2.02116C10.4446 1.43747 9.91205 0.97558 9.28218 0.69346C8.46462 0.348247 7.58129 0.186581 6.69446 0.21986H0.436523V12.0592H2.58451V8.2199H6.40687L9.14688 12.0592H11.853L8.87629 7.89848C10.5449 7.27856 11.3793 6.03826 11.3795 4.17759ZM8.06441 5.98727C7.59976 6.13289 7.11319 6.19589 6.62678 6.17343H2.58451V2.30024H6.6099C7.14343 2.27286 7.67728 2.34748 8.18285 2.5201C8.89316 2.81341 9.24834 3.37154 9.24839 4.19449C9.24839 5.13057 8.85373 5.72816 8.06441 5.98727ZM19.3551 0.21986L13.9428 12.0592H16.26L17.3594 9.57294H24.0909L25.2072 12.0592H27.575L22.1796 0.21986H19.3551ZM18.2558 7.52644L20.7251 1.96194L23.1944 7.52644H18.2558ZM30.5344 0.21986H39.8875V2.33404H32.6995V5.19245H39.0927V7.28978H32.6995V12.0592H30.5345L30.5344 0.21986ZM43.27 0.21986H52.6231V2.33404H45.4349V5.19245H51.8282V7.28978H45.4349V12.0592H43.27V0.21986ZM58.2382 9.9282H65.2234V12.0593H56.0056V0.21986H58.2382V9.9282ZM70.1558 9.97891H77.9698V12.0593H68.0247V0.21986H77.733V2.30024H70.1558V5.02322H76.8027V7.0867H70.1558V9.97891ZM91.5625 8.5412C91.5681 9.05809 91.4524 9.5691 91.2248 10.0332C90.9972 10.4973 90.6639 10.9016 90.2517 11.2136C89.3778 11.9239 88.0952 12.2791 86.4039 12.2791C83.9232 12.2791 82.074 11.5462 80.8563 10.0804L82.5138 8.69348C82.9835 9.22334 83.5717 9.63478 84.2305 9.89427C84.967 10.1491 85.7433 10.2694 86.5223 10.2494C87.4805 10.2494 88.1994 10.0944 88.6788 9.78434C88.8918 9.6694 89.0705 9.50007 89.1968 9.29359C89.323 9.08711 89.3923 8.85086 89.3976 8.60889C89.3976 7.71828 88.5801 7.19397 86.9451 7.03596L85.5413 6.90062C84.1769 6.76533 83.1198 6.44117 82.3701 5.92813C81.6201 5.41517 81.2452 4.61742 81.2453 3.53489C81.2345 3.03445 81.3468 2.53902 81.5725 2.09221C81.7981 1.64539 82.1301 1.26088 82.5392 0.972517C83.4017 0.324172 84.6336 0 86.2347 0C88.456 0 90.1473 0.653979 91.3088 1.96194L89.7189 3.34883C88.9181 2.46937 87.7286 2.02964 86.1502 2.02962C85.1803 2.02962 84.4812 2.17055 84.0528 2.45241C83.6242 2.73441 83.4099 3.0614 83.4101 3.43339C83.4025 3.6585 83.4641 3.88051 83.5866 4.06952C83.7091 4.25853 83.8866 4.40546 84.0952 4.4905C84.7495 4.75626 85.4446 4.90784 86.1502 4.93866L87.4694 5.05708C88.7435 5.16991 89.7442 5.51382 90.4715 6.08881C91.1988 6.66381 91.5625 7.48127 91.5625 8.5412Z" fill="#0C1F1E"/> </svg> </div> <button type="button" class="header__dropdown__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.38285" y1="0.646447" x2="18.3534" y2="17.617" stroke="#727C74"/> <line x1="0.675743" y1="17.6462" x2="17.6463" y2="0.67564" stroke="#727C74"/> </svg> </button> </div> <div class="header__dropdown__label header__dropdown__label"> MY ALL ACCOUNT </div> <div class="header__auth-links"> <button type="button" class="js-accor-login-btn btn btn—-filled">LOGIN</button> <button type="button" class="js-accor-create-btn btn">CREATE AN ACCOUNT</button> </div> <div class="header__intro"> Create an account to take advantage of the member rate. </div> <a href="https://all.accor.com/account/index.en.shtml#/my-bookings" class="header__dropdown__all" target="_blank">My Bookings</a> </div> <!-- Auth Dropdown For Guest End --> <!-- Auth Dropdown For User Start --> <div class="header__dropdown header__dropdown--mobile header__dropdown--is-auth"> <div class="header__auth-bg"> <div class="header__dropdown__panel header__dropdown__panel--auth"> <div class="header__dropdown__panel__left"> <svg xmlns="http://www.w3.org/2000/svg" width="37" height="32" viewBox="0 0 37 32" fill="none"> <path d="M34.987 18.6256C33.5715 18.5333 30.1895 19.6354 27.9834 20.3285C27.2652 19.3242 26.3313 18.4751 25.2428 17.8367C26.1644 17.4388 27.0626 16.9941 27.9336 16.5044C28.3639 16.835 28.754 17.2102 29.0965 17.6228C28.9404 17.7756 28.8099 17.9502 28.7096 18.1406C28.4729 18.6812 29.0564 19.2418 29.5705 18.6909C29.7402 18.5107 29.8124 18.1644 29.4437 17.6215C29.6283 17.4311 29.8357 17.2377 30.0287 17.0543C30.175 17.1391 30.6905 17.3304 31.104 17.5186C31.0465 17.6251 31.0025 17.7376 30.973 17.8539C30.8531 18.3734 31.2512 18.6746 31.6241 18.5885C32.0492 18.4909 32.1228 17.9643 31.8003 17.6454C31.7096 17.5641 31.6086 17.4939 31.4996 17.4364C31.5383 17.3865 31.5709 17.3388 31.6162 17.2818C31.8851 16.9519 32.1023 16.6974 32.2733 16.4924C32.4444 16.5644 32.6403 16.6453 32.8578 16.7531C33.0126 16.8277 33.1426 16.8949 33.2639 16.9602C33.2285 17.0142 33.1981 17.0709 33.173 17.1299C32.8584 17.8707 33.4606 18.0562 33.7085 18.0297C33.8062 18.0106 33.897 17.9678 33.9719 17.9053C34.0468 17.8429 34.1032 17.763 34.1356 17.6736C34.168 17.5842 34.1752 17.4883 34.1565 17.3955C34.1379 17.3026 34.094 17.216 34.0292 17.1441C33.9302 17.0326 33.8122 16.9377 33.6801 16.8631C33.895 16.5853 34.1751 16.2685 34.3988 16.0203C34.6771 16.1537 35.0122 16.2791 35.3501 16.4218C35.3273 16.7946 35.3711 17.1215 35.5636 17.304C36.1523 17.8539 36.6724 17.0725 36.183 16.5777C36.0177 16.4283 35.8244 16.3093 35.6131 16.227C35.7394 15.5931 36.0382 14.7777 36.0298 13.9428C36.0167 12.7881 34.1439 12.6441 31.1563 14.2988C30.1159 14.8757 29.0779 15.5176 27.9197 16.1625C27.0149 15.4583 25.7797 14.6575 24.4617 14.2507C25.3002 13.559 26.2301 12.6936 27.1459 11.8561C27.6326 12.1035 28.0802 12.4144 28.4757 12.7798C28.0843 13.271 27.9313 13.8359 28.431 14.0003C28.9447 14.1708 29.4266 13.6893 29.0817 13.1084C29.0084 12.9942 28.9228 12.8877 28.8262 12.7904C28.9642 12.6177 29.1259 12.4055 29.2737 12.1865C29.6093 12.3062 29.9724 12.3866 30.3038 12.524C30.2294 12.69 30.1936 12.8693 30.1989 13.0497C30.2725 13.6871 31.2644 13.7472 31.2182 12.9772C31.2024 12.7197 30.9563 12.5346 30.6794 12.395C30.8239 12.0924 31.0052 11.7678 31.1437 11.5182C31.4895 11.6251 31.8861 11.7116 32.211 11.8009C32.1117 12.018 32.1073 12.2636 32.1988 12.4838C32.5209 13.0068 33.4857 12.7758 33.0951 11.9969C32.969 11.824 32.7872 11.6944 32.5768 11.6277C32.5866 11.6056 32.594 11.5853 32.6048 11.5623C32.6877 11.3865 32.8443 11.0905 32.9725 10.7676C33.2447 10.8462 33.536 10.9156 33.7938 10.9704C33.8781 11.9656 34.2888 12.0601 34.6491 11.932C34.9516 11.8256 35.2252 11.1987 34.4286 10.8573C34.2961 10.8036 34.1593 10.7601 34.0194 10.7274C34.0249 10.193 34.0619 9.65928 34.1303 9.12877C34.3275 7.3 32.3397 7.88793 31.097 8.49797C30.0152 9.0263 28.2925 10.4584 27.07 11.5318C27.0234 11.5093 26.9777 11.4836 26.9278 11.4603C25.9038 10.9757 24.5265 10.8317 23.3487 10.9302C23.3916 10.8383 23.4363 10.7438 23.481 10.6435C23.6218 10.3347 23.8935 9.71674 24.2534 8.96623C24.8475 8.97418 25.4332 9.10013 25.9728 9.33593C25.9459 9.47893 25.9304 9.62363 25.9262 9.76883C25.9197 10.2221 26.1937 10.6475 26.7074 10.4226C26.8649 10.3532 27.3408 9.98263 26.5004 9.36199C26.4285 9.31014 26.3517 9.26459 26.2711 9.2259C26.3242 8.98918 26.389 8.74267 26.4374 8.47189C26.7702 8.46216 27.1542 8.43248 27.4899 8.42594C27.4898 8.46208 27.4917 8.4982 27.4955 8.53416C27.5654 9.12123 28.0469 9.4636 28.4757 9.17337C28.5467 9.11453 28.601 9.03961 28.6333 8.95557C28.6656 8.87154 28.6749 8.78113 28.6605 8.69274C28.646 8.60436 28.6082 8.52088 28.5505 8.45008C28.4929 8.37927 28.4172 8.32344 28.3307 8.28777C28.1519 8.21648 27.9606 8.17767 27.7667 8.17336C27.7877 7.91139 27.8381 7.55938 27.8809 7.23335C28.0916 7.23734 28.3363 7.23071 28.629 7.22366C28.7391 7.22134 28.8387 7.22276 28.9315 7.22672C28.9329 7.26249 28.9329 7.29697 28.9357 7.32214C28.9963 7.95428 29.4629 8.14733 29.8572 7.95428C30.2385 7.7652 30.1541 7.08361 29.2885 7.00365C29.2665 7.00145 29.241 6.99966 29.22 6.99704C29.2228 6.80353 29.234 6.57696 29.2443 6.32074C29.2494 6.1838 29.2508 6.06109 29.2494 5.9448C29.5559 5.92176 29.8609 5.88298 30.1629 5.82863C30.464 6.58267 30.7567 6.65558 30.9889 6.63172C31.4685 6.58267 31.7398 5.79063 30.9423 5.57332C30.7381 5.53169 30.5282 5.52125 30.3205 5.54239C30.0189 4.55942 29.8376 3.11418 29.1245 2.99798C27.7807 2.7811 26.3106 4.77025 25.4195 6.08001C24.8941 6.94373 24.4303 7.83975 24.0309 8.76208C23.0292 8.72187 22.029 8.87029 21.0881 9.19876C20.1473 9.52722 19.2845 10.0292 18.5496 10.6757C18.8354 9.5625 19.8314 7.03975 21.7368 6.59581C21.7767 6.77001 21.8403 6.93856 21.9261 7.0972C22.2783 7.68373 23.1542 7.42056 23.0377 6.83522C22.9785 6.5437 22.5604 6.3047 21.9601 6.34182C21.9202 6.13295 21.8936 5.92201 21.8804 5.71012C21.8779 5.66862 21.8752 5.63459 21.8724 5.59705C22.1838 5.56128 22.5455 5.51003 22.8778 5.48397C22.9952 6.03659 23.205 6.2084 23.5131 6.24111C24.1848 6.30866 24.2631 5.45659 23.7186 5.27458C23.5315 5.23282 23.3391 5.21661 23.1471 5.22645C23.094 4.92507 23.0628 4.58891 23.0423 4.30584C23.3839 4.24624 23.6836 4.20205 23.9409 4.17511C23.9781 4.31337 24.0349 4.44621 24.1097 4.57001C24.4402 5.06034 25.2129 5.03431 25.1747 4.42514C25.144 3.96085 24.629 3.87959 24.4896 3.87517C24.3926 3.87164 24.291 3.87385 24.1848 3.87913C24.1649 3.78123 24.1503 3.68246 24.1409 3.58317C24.1097 3.28191 24.0817 3.02042 24.0504 2.79513C24.3156 2.75008 24.5841 2.70502 24.8358 2.67632C24.903 2.83355 24.9908 2.98211 25.0973 3.11847C25.535 3.64371 26.208 3.32211 26.132 2.85698C26.0882 2.59107 25.9414 2.48723 25.5955 2.42098C25.3868 2.39175 25.175 2.38819 24.9654 2.4104C24.7511 1.65676 24.5217 0.632899 24.2024 0.258258C23.8543 -0.150347 22.8494 -0.285945 21.1985 1.49953C19.644 3.18208 18.8228 5.74503 18.5338 7.19839C18.4196 7.75594 18.3375 8.31896 18.2877 8.88495C18.2366 8.31904 18.1542 7.75608 18.0406 7.19839C17.7507 5.74503 16.9304 3.18208 15.3755 1.49953C13.7251 -0.285945 12.7206 -0.150347 12.3729 0.258258C12.0527 0.632899 11.8243 1.65676 11.6095 2.4104C11.3994 2.38822 11.1871 2.39177 10.9779 2.42098C10.633 2.48723 10.4853 2.59107 10.4429 2.85698C10.3646 3.32211 11.0395 3.64371 11.4767 3.11847C11.584 2.98255 11.672 2.8339 11.7386 2.67632C11.9894 2.70502 12.2583 2.75008 12.5235 2.79513C12.4932 3.02042 12.4648 3.28198 12.434 3.58317C12.4228 3.69188 12.4089 3.7886 12.3902 3.87913C12.2849 3.87385 12.1809 3.87164 12.0844 3.87517C11.9465 3.87959 11.4296 3.96094 11.3993 4.42514C11.362 5.03431 12.1339 5.06036 12.4648 4.57001C12.5395 4.44567 12.5962 4.31242 12.6336 4.17381C12.8923 4.20205 13.1906 4.24624 13.5327 4.30596C13.5112 4.58914 13.4805 4.9253 13.4273 5.22656C13.2353 5.21688 13.0427 5.23308 12.8554 5.27469C12.3124 5.4567 12.3912 6.30878 13.0615 6.24122C13.3705 6.20851 13.5779 6.0367 13.6986 5.48408C14.0291 5.51014 14.3898 5.5614 14.7021 5.59717C14.6993 5.6347 14.6961 5.66874 14.6937 5.71024C14.6818 5.92221 14.6554 6.13322 14.6145 6.34193C14.0152 6.30484 13.5956 6.54381 13.5374 6.83534C13.4217 7.42067 14.2976 7.68385 14.6485 7.09731C14.7343 6.93862 14.798 6.77009 14.8382 6.59593C16.7436 7.03986 17.7383 9.56262 18.0263 10.6758C17.2914 10.0294 16.4286 9.52748 15.4878 9.19902C14.547 8.87056 13.5468 8.72209 12.545 8.76219C12.1455 7.83968 11.6812 6.94361 11.1551 6.08001C10.264 4.77016 8.79155 2.78103 7.452 2.99798C6.73608 3.11418 6.55523 4.55954 6.25599 5.54239C6.04771 5.52109 5.83717 5.53153 5.63236 5.57332C4.83628 5.79063 5.10521 6.58267 5.58574 6.63172C5.81739 6.65558 6.11057 6.58267 6.41074 5.82863C6.71299 5.88285 7.0181 5.92163 7.32475 5.9448C7.32475 6.061 7.32475 6.1838 7.33128 6.32074C7.3406 6.57696 7.35225 6.80353 7.35506 6.99704C7.33304 6.99966 7.30797 7.00145 7.28605 7.00365C6.42147 7.08361 6.33708 7.7652 6.71883 7.95428C7.11176 8.14733 7.5783 7.95428 7.63938 7.32214C7.6417 7.29697 7.64217 7.26249 7.6431 7.22672C7.73632 7.22276 7.83561 7.22143 7.94559 7.22366C8.2383 7.23062 8.48206 7.23734 8.69167 7.23335C8.73737 7.55938 8.78678 7.91144 8.80774 8.17336C8.61352 8.17748 8.42186 8.2163 8.24282 8.28777C8.15647 8.32361 8.08105 8.37951 8.02353 8.4503C7.96602 8.52109 7.92827 8.60448 7.91377 8.69277C7.89928 8.78105 7.90851 8.87137 7.94061 8.95537C7.97271 9.03938 8.02664 9.11436 8.09742 9.17337C8.52668 9.4636 9.00909 9.12123 9.07856 8.53416C9.08274 8.5015 9.08274 8.46215 9.08509 8.42594C9.42022 8.43257 9.8038 8.46216 10.1366 8.47189C10.1855 8.74267 10.2499 8.98918 10.302 9.2259C10.2221 9.26499 10.1458 9.31052 10.0741 9.36199C9.23331 9.98263 9.70965 10.3532 9.86718 10.4226C10.3813 10.6475 10.6554 10.222 10.6498 9.76883C10.6443 9.62367 10.6284 9.47904 10.6022 9.33593C11.1419 9.10003 11.7278 8.97408 12.3221 8.96623C12.681 9.71674 12.9527 10.3347 13.0935 10.6435C13.1387 10.7438 13.1825 10.8382 13.2259 10.9302C12.0485 10.8317 10.6712 10.9757 9.64625 11.4603C9.59544 11.4836 9.55209 11.5093 9.5041 11.5318C8.28346 10.4584 6.55929 9.0263 5.47889 8.49797C4.23396 7.88793 2.24605 7.3 2.4446 9.12877C2.51229 9.65934 2.54933 10.193 2.55554 10.7274C2.41551 10.7602 2.2785 10.8036 2.14583 10.8573C1.34881 11.1987 1.62381 11.8256 1.92491 11.932C2.28707 12.0601 2.69722 11.9656 2.78019 10.9704C3.03795 10.9156 3.32973 10.8462 3.60101 10.7676C3.72916 11.0905 3.8867 11.3865 3.9706 11.5623C3.98039 11.5853 3.98738 11.6056 3.99859 11.6277C3.78778 11.6943 3.60543 11.8238 3.47887 11.9969C3.08876 12.7757 4.05404 13.0068 4.3761 12.4838C4.46733 12.2636 4.46315 12.0182 4.36446 11.8009C4.68841 11.7116 5.08503 11.6251 5.42997 11.5182C5.56886 11.7669 5.74968 12.0924 5.89418 12.395C5.61732 12.5346 5.3707 12.7196 5.35538 12.9772C5.31015 13.7472 6.3034 13.6871 6.37426 13.0497C6.38087 12.8693 6.34522 12.6897 6.26986 12.524C6.60217 12.3866 6.96526 12.3062 7.30134 12.1865C7.44862 12.4056 7.61081 12.6177 7.74738 12.7904C7.65222 12.8886 7.56704 12.995 7.49297 13.1084C7.14902 13.6893 7.62996 14.1708 8.14366 14.0003C8.64331 13.8359 8.49043 13.271 8.09752 12.7789C8.49433 12.4147 8.94227 12.1042 9.42868 11.8562C10.3454 12.6935 11.2744 13.5589 12.1129 14.2507C10.8488 14.6868 9.67759 15.3344 8.65488 16.1626C7.49711 15.5176 6.45726 14.8759 5.41739 14.2989C2.43066 12.6441 0.557868 12.7881 0.54483 13.9428C0.53551 14.7776 0.83475 15.5931 0.961976 16.2269C0.75108 16.3096 0.558135 16.4285 0.392873 16.5777C-0.099322 17.0724 0.421298 17.8539 1.01092 17.3039C1.20341 17.1215 1.2482 16.7946 1.22298 16.4218C1.56325 16.2791 1.89698 16.1537 2.17663 16.0202C2.40035 16.2685 2.67953 16.5852 2.89335 16.8631C2.76197 16.9385 2.64416 17.0333 2.54438 17.144C2.4798 17.216 2.43612 17.3028 2.41765 17.3957C2.39919 17.4886 2.40657 17.5844 2.43907 17.6738C2.47157 17.7632 2.52807 17.843 2.60301 17.9054C2.67795 17.9678 2.76874 18.0106 2.86645 18.0296C3.11442 18.0561 3.71527 17.8706 3.40292 17.1298C3.37653 17.0714 3.34618 17.0148 3.31204 16.9602C3.4309 16.8948 3.5628 16.8277 3.71755 16.753C3.93567 16.6452 4.13095 16.5644 4.30015 16.4924C4.47214 16.6973 4.6898 16.9518 4.95829 17.2817C5.00257 17.3387 5.03611 17.3864 5.07295 17.4364C4.96478 17.4943 4.86445 17.5644 4.77417 17.6453C4.45164 17.9642 4.52527 18.4908 4.9503 18.5884C5.3241 18.6746 5.72214 18.3733 5.60142 17.8538C5.5717 17.7378 5.52821 17.6253 5.47177 17.5185C5.88427 17.3304 6.39931 17.1391 6.54564 17.0543C6.73813 17.2376 6.94508 17.4311 7.12964 17.621C6.76052 18.1644 6.83415 18.5107 7.00288 18.6909C7.51746 19.2417 8.10146 18.6812 7.86469 18.1405C7.76455 17.9499 7.63372 17.7752 7.4769 17.6228C7.82047 17.2109 8.21058 16.8358 8.64025 16.5043C9.51163 16.9938 10.4102 17.4386 11.332 17.8366C10.2429 18.4748 9.30851 19.324 8.59011 20.3285C6.3864 19.6353 3.00304 18.5333 1.58749 18.6256C0.0610982 18.7259 -0.0862839 19.3805 0.0317441 19.9839C0.13693 20.5114 0.567188 21.215 0.814227 21.799C0.502413 21.9952 0.263837 22.2019 0.222742 22.4515C0.125335 23.0658 0.854785 23.296 1.15307 22.8274C1.28778 22.6176 1.24162 22.2725 1.11997 21.9333C1.38612 21.7646 1.73382 21.5711 2.18362 21.3414C2.33602 21.4686 2.49962 21.6002 2.66552 21.7448C2.82117 21.8821 2.95402 21.9975 3.06867 22.103C2.90092 22.2026 2.76556 22.3444 2.67763 22.5125C2.6395 22.59 2.62152 22.675 2.62522 22.7605C2.62891 22.8459 2.65416 22.9293 2.69885 23.0036C2.74354 23.0778 2.80637 23.1409 2.88207 23.1874C2.95777 23.2339 3.04414 23.2626 3.13394 23.271C3.28127 23.2724 3.42366 23.2206 3.53208 23.1261C3.64051 23.0315 3.70682 22.9013 3.7175 22.7621C3.72388 22.5401 3.6467 22.3232 3.49979 22.1503C3.89457 21.9108 4.34531 21.7081 4.46358 21.6365C4.48596 21.622 4.50516 21.6096 4.52698 21.5955C4.74044 21.77 4.96556 21.9409 5.11052 22.0668C5.18232 22.126 5.316 22.2329 5.45357 22.3575C5.08816 22.6728 5.07556 22.8942 5.11052 23.0669C5.21867 23.5912 5.8465 23.6195 6.0841 23.1623C6.22488 22.8897 6.0967 22.607 5.87862 22.3539C6.18251 22.1538 6.53953 21.978 6.79261 21.8415C7.05875 22.0209 7.35474 22.1857 7.62414 22.3381C7.46565 22.8615 7.44608 23.2418 7.77653 23.4592C8.38947 23.8669 9.01868 23.0978 8.4123 22.5748C8.26952 22.4506 8.11835 22.3354 7.95975 22.2298C8.13835 21.7555 8.35995 21.2968 8.62208 20.8587C8.65889 20.7951 8.69852 20.7315 8.7372 20.6687C9.90571 21.0074 11.0943 21.2802 12.2969 21.4858C14.2107 21.7965 15.945 21.738 16.729 20.8162C16.8256 21.3071 17.0662 21.7624 17.423 22.1299C17.7348 22.455 17.9935 22.6882 18.1389 22.815C18.1399 23.4618 18.1417 23.8593 18.1417 23.8593C18.153 24.0664 18.1196 24.2736 18.0436 24.4682C17.9676 24.6628 17.8507 24.8406 17.6998 24.991C17.5173 24.8007 17.2786 24.667 17.0147 24.6071C16.5775 24.4777 15.719 24.483 15.6439 25.0634C15.5581 25.7168 16.5319 25.8192 17.2738 25.5794C17.4058 25.5364 17.53 25.4744 17.6421 25.3956C17.7213 25.5124 17.7859 25.6375 17.8346 25.7684C18.0184 26.3705 18.1237 26.9917 18.1482 27.618C18.1529 27.7739 18.1599 27.925 18.1538 31.7358C18.1529 31.9165 18.2275 31.985 18.2876 32C18.3473 31.985 18.4218 31.9165 18.4204 31.7358C18.4134 27.925 18.4214 27.7738 18.426 27.618C18.4494 26.9916 18.5546 26.3703 18.7391 25.7684C18.7873 25.6374 18.8517 25.5122 18.9312 25.3956C19.0432 25.474 19.167 25.5359 19.2985 25.5794C20.0433 25.8192 21.016 25.7168 20.9298 25.0634C20.8543 24.483 19.9962 24.4777 19.5595 24.6071C19.2957 24.667 19.0572 24.8008 18.8748 24.991C18.7238 24.8407 18.6069 24.6629 18.5311 24.4683C18.4552 24.2736 18.4222 24.0664 18.4339 23.8593C18.4339 23.8593 18.4343 23.4617 18.4367 22.815C18.5807 22.6882 18.8394 22.455 19.1516 22.1299C19.5082 21.7622 19.7487 21.307 19.8458 20.8162C20.6302 21.7381 22.3627 21.7964 24.2788 21.4859C25.4811 21.2801 26.6696 21.0072 27.838 20.6687C27.8762 20.7314 27.9144 20.795 27.9513 20.8586C28.2142 21.2962 28.4357 21.7551 28.6131 22.2298C28.455 22.335 28.3046 22.4503 28.1628 22.5747C27.5579 23.0978 28.1857 23.8668 28.7981 23.4591C29.1281 23.2418 29.109 22.8615 28.951 22.338C29.2195 22.1856 29.5164 22.0208 29.783 21.8415C30.0333 21.978 30.3921 22.1538 30.6961 22.3538C30.4779 22.6069 30.3498 22.8897 30.4891 23.1622C30.7292 23.6194 31.357 23.5911 31.4652 23.0668C31.4997 22.8941 31.4852 22.6727 31.1212 22.3574C31.2587 22.2328 31.3925 22.1259 31.4652 22.0667C31.6087 21.9408 31.8338 21.77 32.0478 21.5954C32.0688 21.6095 32.0883 21.6219 32.1102 21.6365C32.2296 21.708 32.6784 21.9108 33.0751 22.1502C32.9283 22.3232 32.8513 22.5401 32.8578 22.762C32.8684 22.901 32.9344 23.031 33.0425 23.1255C33.1505 23.22 33.2925 23.272 33.4395 23.2709C33.5295 23.2627 33.616 23.2342 33.6918 23.1878C33.7677 23.1413 33.8307 23.0783 33.8755 23.0039C33.9203 22.9296 33.9456 22.8462 33.9493 22.7606C33.953 22.6751 33.935 22.59 33.8968 22.5124C33.8088 22.3442 33.6733 22.2025 33.5054 22.1029C33.6205 21.9974 33.7529 21.8821 33.9095 21.7447C34.0745 21.6002 34.2376 21.4686 34.3905 21.3413C34.8406 21.571 35.1885 21.7645 35.4555 21.9332C35.333 22.2725 35.2878 22.6175 35.4215 22.8273C35.7198 23.296 36.4502 23.0658 36.3504 22.4514C36.3099 22.2018 36.0722 21.9951 35.7594 21.7989C36.0069 21.215 36.439 20.5113 36.543 19.9838C36.6612 19.3805 36.514 18.7259 34.987 18.6256ZM29.1062 18.7776C28.9212 18.7471 28.8625 18.6265 28.9058 18.3734C28.9699 18.1708 29.0855 17.9862 29.2423 17.8358C29.2558 17.855 29.268 17.8751 29.2787 17.8958C29.6474 18.6322 29.2792 18.8067 29.1062 18.7776ZM29.7168 16.071C29.8758 15.6231 30.5451 15.7358 30.3922 16.2512C30.3031 16.4263 30.1797 16.5837 30.0286 16.7151C29.7984 16.564 29.6171 16.3546 29.7168 16.071ZM31.6162 17.8119C32.1065 18.3212 31.5015 18.5597 31.3272 18.4189C31.1841 18.3018 31.0671 18.1172 31.3603 17.644C31.4536 17.6881 31.5398 17.7446 31.6162 17.8119ZM32.2039 16.1218C31.9578 15.9801 31.7355 15.8011 31.7481 15.6192C31.7793 15.1575 32.3083 14.98 32.4599 15.4455C32.5223 15.6377 32.3913 15.8776 32.2039 16.1218L32.2039 16.1218ZM33.88 17.8097C33.7434 17.9868 33.2932 17.9012 33.3454 17.4285C33.3762 17.3106 33.431 17.1996 33.5067 17.1016C33.9681 17.3812 34.0608 17.5734 33.88 17.8097V17.8097ZM34.3316 15.6912C34.065 15.5379 33.8571 15.3307 33.9769 15.0679C34.2203 14.5316 34.7875 14.7931 34.6971 15.1704C34.6095 15.3635 34.4857 15.5399 34.3316 15.6911V15.6912ZM35.7989 16.6219C36.5587 16.9881 36.1368 17.6458 35.7076 17.1749C35.6378 17.0799 35.5894 16.9722 35.5653 16.8587C35.5413 16.7452 35.5421 16.6282 35.5677 16.515C35.6451 16.5503 35.7229 16.5853 35.7989 16.6219V16.6219ZM30.5223 14.9742C33.1804 13.3959 36.0954 12.7814 35.7076 14.6783C35.6366 15.0268 35.4624 15.5971 35.3841 16.1311C35.2559 16.0799 35.132 16.0331 35.0252 15.9897C34.945 15.9584 34.7693 15.8987 34.582 15.817C34.6719 15.7145 34.7404 15.6376 34.7656 15.6054C35.0634 15.199 35.0499 14.7294 34.458 14.6115C33.9979 14.5183 33.6395 15.0037 33.6852 15.3439C33.7145 15.4629 33.7719 15.5741 33.8531 15.6691C33.9343 15.764 34.0372 15.8403 34.1541 15.8921C33.9095 16.1598 33.6339 16.4562 33.4284 16.7225C33.2214 16.6134 32.9958 16.5092 32.7954 16.4125C32.744 16.3855 32.615 16.3329 32.4668 16.2614C32.7693 15.8815 32.8443 15.699 32.7189 15.4163C32.6689 15.2946 32.5766 15.1927 32.4573 15.1272C32.338 15.0618 32.1988 15.0368 32.0625 15.0562C31.9262 15.0757 31.8009 15.1385 31.7073 15.2344C31.6137 15.3303 31.5572 15.4535 31.5472 15.5837C31.4726 16.0295 31.6428 16.2013 31.997 16.3709C31.8646 16.5224 31.7285 16.6731 31.6162 16.8096C31.5081 16.9452 31.3645 17.1082 31.2373 17.2964C30.9829 17.1723 30.7264 17.0605 30.6202 17.0071C30.5535 16.9722 30.4062 16.9174 30.2473 16.8402C30.4258 16.6916 30.5686 16.5084 30.6658 16.303C30.835 15.5189 29.9163 15.4827 29.6238 15.8922C29.2397 16.4271 29.5553 16.7469 29.8162 16.9219C29.6461 17.0814 29.4648 17.2518 29.2942 17.4193C29.1265 17.2161 28.9423 17.0258 28.7433 16.8499C28.5825 16.7045 28.3895 16.5411 28.1765 16.3684C29.3267 15.7203 30.2487 15.1359 30.5223 14.9742V14.9742ZM34.1214 11.0384C35.0401 11.2287 34.8481 11.9439 34.3214 11.765C34.1396 11.7041 34.0581 11.4028 34.0292 11.0203C34.0608 11.0251 34.0912 11.0317 34.1214 11.0383V11.0384ZM28.5982 13.9065C28.2463 13.884 28.3353 13.3906 28.622 13.0425C28.635 13.0248 28.6546 13.0014 28.6723 12.9811C28.7158 13.0299 28.7549 13.082 28.7893 13.137C29.0415 13.5624 28.8904 13.9255 28.5982 13.9065ZM29.3947 11.2495C29.3505 11.4452 29.2771 11.634 29.1766 11.8101C28.8923 11.6678 28.6672 11.4814 28.7063 11.2349C28.8122 10.5688 29.4633 10.9142 29.3948 11.2495H29.3947ZM30.9128 12.9197C31.2643 13.2974 30.6635 13.6344 30.4663 13.2104C30.438 13.0198 30.4728 12.8256 30.566 12.6547C30.6947 12.7264 30.8116 12.8157 30.9128 12.9197H30.9128ZM31.226 10.7199C31.1738 10.869 31.1068 11.0132 31.0261 11.1505C30.6863 11.0242 30.4397 10.8462 30.5059 10.4944C30.6201 9.88806 31.3724 10.1893 31.2261 10.7199L31.226 10.7199ZM32.6737 11.9611C33.2256 12.2451 32.9301 12.7523 32.6201 12.614C32.4122 12.5213 32.3605 12.2663 32.4794 11.8803C32.546 11.9032 32.6109 11.9302 32.6737 11.9611H32.6737ZM32.8271 10.1893C32.801 10.2675 32.7711 10.34 32.7455 10.4146C32.4514 10.3077 32.2375 10.161 32.2058 9.92121C32.1228 9.25991 33.1534 9.22766 32.8271 10.1893H32.8271ZM29.0834 10.1522C30.7208 8.81333 34.127 7.10336 33.846 9.54398C33.7994 9.91779 33.7775 10.294 33.7802 10.6704C33.5416 10.6187 33.2927 10.5714 33.0634 10.5109C33.2144 10.0316 33.2452 9.54924 32.8271 9.34648C32.1167 9.0046 31.8688 9.95699 32.1144 10.3488C32.258 10.5008 32.445 10.6102 32.6528 10.6637C32.5264 10.9862 32.402 11.2747 32.3051 11.5269C32.072 11.4504 31.8436 11.3922 31.7001 11.352C31.5677 11.3122 31.4283 11.2773 31.294 11.238C31.3032 11.2228 31.3111 11.207 31.3178 11.1907C31.5014 10.8069 31.7004 10.2402 31.0195 10.0374C30.5086 9.88496 30.1353 10.5423 30.3761 11.0609C30.4906 11.2335 30.6668 11.3613 30.8725 11.4209C30.7182 11.6904 30.5449 11.9903 30.4111 12.2743C30.2792 12.2213 30.1557 12.1776 30.061 12.1436C29.9273 12.0906 29.6821 12.0203 29.4374 11.9249C29.5062 11.8106 29.5661 11.6918 29.6169 11.5693C29.7553 11.2208 29.6849 10.7062 29.1042 10.6969C28.4865 10.6894 28.3174 11.5401 28.5989 11.8092C28.721 11.9198 28.8615 12.0107 29.0148 12.0781C28.8949 12.2562 28.7656 12.4284 28.6274 12.594C28.2407 12.2394 27.8098 11.9307 27.3443 11.6748C27.9424 11.1307 28.5321 10.604 29.0834 10.1522H29.0834ZM29.7168 7.86669C29.3439 7.89451 29.2395 7.68204 29.2223 7.25266C30.099 7.37549 29.9429 7.84984 29.7168 7.86669H29.7168ZM31.0349 5.86341C31.3118 5.97517 31.3784 6.55121 30.9044 6.44255C30.6849 6.3944 30.5326 6.14216 30.4048 5.79717C30.6172 5.76341 30.8354 5.78635 31.035 5.86341H31.0349ZM26.4529 9.60889C26.6985 9.77581 26.8831 10.2127 26.6146 10.321C26.3093 10.442 26.1322 10.1381 26.2082 9.55854C26.2124 9.52673 26.2217 9.49624 26.2264 9.46666C26.3171 9.51878 26.3931 9.56783 26.4529 9.60889ZM26.094 8.21477C25.6032 8.22761 25.3063 7.63168 25.6424 7.38652C25.8405 7.24341 26.2221 7.43734 26.2315 7.77922C26.2321 7.92368 26.2198 8.06793 26.1948 8.21043C26.1615 8.21171 26.1237 8.21477 26.0939 8.21477H26.094ZM27.6186 6.94919C27.4619 6.95376 27.3064 6.92207 27.1656 6.85688C26.8216 6.60376 26.9362 6.07989 27.16 6.04454C27.3814 6.00786 27.6904 6.13553 27.6573 6.61039C27.6497 6.70227 27.6357 6.82064 27.6185 6.94919H27.6186ZM28.0311 8.44757C28.4757 8.52002 28.5615 8.73205 28.514 8.88268C28.3797 9.32084 27.7766 9.01299 27.7566 8.42636C27.8484 8.42749 27.9401 8.43458 28.031 8.44757H28.0311ZM27.9822 3.68435C29.3949 3.00229 29.6918 4.19669 29.9318 5.10717C29.9765 5.27592 30.0217 5.4261 30.0656 5.55996C29.7873 5.58512 29.4983 5.62256 29.2382 5.64741C29.1874 4.89117 28.9628 4.72374 28.7064 4.67292C28.5578 4.63804 28.4012 4.65205 28.2621 4.71265C28.123 4.77325 28.0098 4.87685 27.9411 5.00644C27.8031 5.28079 27.9099 5.98048 28.8122 5.96502C28.8547 5.96502 28.8882 5.96103 28.9287 5.95929C28.9404 6.35109 28.9329 6.71463 28.9316 6.9819C28.5899 6.96864 28.2291 6.96906 27.9173 6.96336C27.949 6.78196 27.9616 6.59803 27.9551 6.41426C27.9487 6.33028 27.9233 6.24858 27.8806 6.17474C27.8379 6.1009 27.7789 6.03665 27.7076 5.98638C27.6363 5.93612 27.5545 5.901 27.4676 5.88344C27.3807 5.86588 27.2908 5.86628 27.2041 5.88462C26.7072 5.97253 26.641 6.71066 26.9743 7.02739C27.1461 7.15893 27.3618 7.22815 27.5826 7.22264C27.5415 7.52787 27.4996 7.86669 27.4875 8.16001C27.1472 8.15602 26.7813 8.17814 26.4737 8.19666C26.4831 8.09859 26.497 8.00452 26.5003 7.89583C26.5147 7.20585 25.9489 7.00926 25.6031 7.24902C24.971 7.68855 25.4278 8.40373 25.9335 8.46202C25.9969 8.46865 26.0682 8.47307 26.146 8.4753C26.106 8.68335 26.0555 8.90069 26.0132 9.1127C25.4783 8.92207 24.9164 8.80832 24.346 8.77522C25.2638 6.89045 26.6891 4.30976 27.982 3.68435H27.9822ZM28.9144 5.67305C28.8388 5.67567 28.7671 5.67701 28.7064 5.67435C28.1891 5.64606 28.0311 5.15133 28.155 4.97686C28.3186 4.74628 28.8285 4.67292 28.8966 5.42742C28.9058 5.5087 28.91 5.59001 28.9142 5.67305H28.9144ZM22.7618 7.20451C22.5581 7.34899 22.2048 7.25841 22.0104 6.55253C22.6047 6.52376 23.0619 6.99514 22.7618 7.20451ZM23.782 5.56525C24.1297 5.77816 23.9181 6.16778 23.4809 6.00123C23.3532 5.95134 23.2632 5.74237 23.1966 5.46894C23.3973 5.45166 23.5992 5.48488 23.782 5.56525ZM25.0451 4.45428C25.0778 4.76174 24.5161 4.99677 24.2509 4.14903C24.7389 4.12476 25.0172 4.20249 25.0451 4.45428ZM25.9261 2.82738C26.1377 3.13571 25.4222 3.52178 25.0512 2.6551C25.4674 2.62332 25.8035 2.64891 25.9261 2.82738ZM10.6497 2.82738C10.7709 2.64887 11.1079 2.62336 11.5236 2.6551C11.1522 3.52178 10.4368 3.13571 10.6498 2.82738H10.6497ZM11.5306 4.45428C11.5572 4.2039 11.8359 4.12476 12.3235 4.14903C12.0569 4.99673 11.4967 4.76183 11.5307 4.45428H11.5306ZM13.0934 6.00123C12.6562 6.16778 12.4433 5.77816 12.7938 5.56525C12.9759 5.48476 13.1772 5.45153 13.3773 5.46894C13.3117 5.74248 13.2203 5.95134 13.0935 6.00123H13.0934ZM13.8126 7.20444C13.5125 6.99507 13.9683 6.52374 14.5649 6.55246C14.3692 7.25841 14.0164 7.34908 13.8127 7.20451L13.8126 7.20444ZM5.66955 6.44262C5.19645 6.55128 5.26218 5.97524 5.53858 5.86348C5.73858 5.78647 5.9572 5.76354 6.17013 5.79724C6.0429 6.14216 5.88955 6.3944 5.66955 6.44262ZM6.85763 7.86676C6.63111 7.84995 6.47544 7.37556 7.35215 7.25273C7.3349 7.68204 7.2305 7.89451 6.85763 7.86669V7.86676ZM8.0597 8.88274C8.01308 8.73205 8.09745 8.52009 8.54348 8.44764C8.63468 8.43457 8.72672 8.42748 8.81895 8.42643C8.79798 9.01299 8.19439 9.32088 8.0597 8.88268V8.88274ZM8.91831 6.61046C8.88521 6.1356 9.19378 6.00793 9.41562 6.04461C9.63795 6.07996 9.75319 6.60383 9.40865 6.85695C9.26795 6.92209 9.11263 6.95378 8.95611 6.94926C8.93874 6.82064 8.9257 6.70227 8.91824 6.61039L8.91831 6.61046ZM9.96004 10.321C9.69204 10.2128 9.87707 9.77592 10.1213 9.60896C10.181 9.56876 10.2569 9.51885 10.3488 9.46673C10.3544 9.49631 10.3618 9.5268 10.3646 9.55861C10.4428 10.138 10.2653 10.442 9.95997 10.321L9.96004 10.321ZM10.3426 7.77922C10.3524 7.43734 10.7328 7.24341 10.9336 7.38652C11.2697 7.63168 10.9695 8.22761 10.4806 8.21477C10.4503 8.21477 10.413 8.21171 10.3799 8.21036C10.3545 8.06793 10.342 7.92368 10.3426 7.77922ZM10.5607 9.11281C10.5174 8.9008 10.4685 8.68346 10.427 8.47542C10.5058 8.4731 10.578 8.46876 10.6409 8.46213C11.1467 8.40385 11.6025 7.68867 10.9695 7.24914C10.6255 7.00926 10.0593 7.20585 10.0742 7.89595C10.077 8.00463 10.091 8.09871 10.1022 8.19678C9.79316 8.17823 9.42822 8.15614 9.08656 8.16012C9.07492 7.86681 9.03203 7.52799 8.99197 7.22276C9.21278 7.22843 9.42848 7.15919 9.60021 7.02751C9.93252 6.71078 9.86728 5.97267 9.37041 5.88474C9.2837 5.86659 9.19387 5.86632 9.10704 5.88395C9.0202 5.90159 8.93838 5.93671 8.86712 5.98694C8.79586 6.03718 8.73683 6.10134 8.69403 6.17509C8.65124 6.24884 8.62567 6.33045 8.61907 6.41438C8.61448 6.59809 8.62697 6.78183 8.65637 6.96347C8.34547 6.96918 7.98473 6.96876 7.64354 6.98202C7.64214 6.71474 7.63422 6.35121 7.64586 5.95941C7.68549 5.96115 7.71951 5.96514 7.76147 5.96514C8.6657 5.9806 8.77242 5.28091 8.63492 5.00655C8.5659 4.87696 8.45251 4.77341 8.31332 4.71282C8.17412 4.65224 8.01736 4.63821 7.86866 4.67304C7.6109 4.72386 7.38676 4.89129 7.33498 5.64752C7.07629 5.62279 6.78637 5.58523 6.50907 5.56008C6.55381 5.42622 6.59809 5.27604 6.64376 5.10729C6.88334 4.19686 7.17884 3.00241 8.59251 3.68446C9.88592 4.30995 11.3108 6.89056 12.2295 8.7755C11.6586 8.80846 11.0961 8.92216 10.5607 9.11281ZM7.65978 5.67305C7.66445 5.59001 7.66956 5.5087 7.67656 5.42742C7.74694 4.67292 8.25498 4.74628 8.41951 4.97686C8.54348 5.15133 8.38456 5.64606 7.86858 5.67435C7.80799 5.67701 7.73475 5.67567 7.65978 5.67305ZM2.25307 11.765C1.72824 11.9439 1.53433 11.2287 2.45255 11.0383C2.4824 11.0317 2.51315 11.0251 2.54438 11.0202C2.51733 11.4028 2.43484 11.7041 2.25307 11.765ZM3.7469 10.1893C3.42205 9.22766 4.45164 9.25991 4.36774 9.92121C4.33699 10.161 4.12258 10.3077 3.82894 10.4146C3.80096 10.34 3.77393 10.2675 3.7469 10.1893ZM3.95524 12.614C3.64436 12.7523 3.34886 12.2451 3.90025 11.9611C3.96334 11.9306 4.02824 11.9037 4.09462 11.8803C4.21441 12.2664 4.16265 12.5213 3.95524 12.614ZM5.34795 10.7199C5.20299 10.1894 5.95293 9.88813 6.06854 10.4946C6.13517 10.8463 5.8886 11.0243 5.54929 11.1507C5.46744 11.0137 5.4 10.8694 5.34795 10.7199ZM6.10675 13.2104C5.91145 13.6345 5.31018 13.2975 5.66208 12.9198C5.7629 12.816 5.87908 12.7268 6.007 12.6547C6.10228 12.825 6.13725 13.0198 6.10675 13.2104V13.2104ZM7.17876 11.2495C7.11027 10.9143 7.76139 10.5689 7.86858 11.235C7.90635 11.4815 7.68216 11.6679 7.39784 11.8101C7.29766 11.6338 7.22393 11.4451 7.17876 11.2495V11.2495ZM7.97622 13.9066C7.684 13.9256 7.53204 13.5625 7.78422 13.1371C7.8197 13.0825 7.85942 13.0306 7.90305 12.9816C7.91983 13.0015 7.93894 13.0249 7.95246 13.0426C8.2382 13.3906 8.32815 13.884 7.97624 13.9065L7.97622 13.9066ZM7.94593 12.5929C7.82852 12.448 7.68957 12.2735 7.55907 12.0782C7.71258 12.011 7.85324 11.9202 7.97531 11.8093C8.25775 11.5404 8.08622 10.6895 7.46959 10.697C6.88882 10.7063 6.81891 11.2209 6.95641 11.5694C7.00784 11.6918 7.06811 11.8106 7.13681 11.925C6.89163 12.0205 6.64738 12.0907 6.51223 12.1437C6.419 12.1777 6.29408 12.2214 6.16404 12.2744C6.02935 11.9904 5.85597 11.6905 5.70122 11.421C5.90721 11.3617 6.08365 11.2338 6.19807 11.061C6.43904 10.5424 6.06617 9.88507 5.55487 10.0375C4.87297 10.2402 5.07297 10.807 5.25656 11.1908C5.26262 11.2055 5.27194 11.2222 5.2794 11.2381C5.14469 11.2775 5.00766 11.3123 4.87297 11.3521C4.72941 11.3923 4.5015 11.4506 4.26938 11.527C4.17334 11.2748 4.04937 10.9863 3.92258 10.6639C4.12979 10.6103 4.31615 10.5008 4.45908 10.3489C4.70423 9.9571 4.45663 9.00471 3.74687 9.34659C3.32973 9.54936 3.35908 10.0318 3.51104 10.511C3.28171 10.5716 3.03142 10.6188 2.79372 10.6705C2.79687 10.2941 2.77507 9.9179 2.72846 9.54409C2.44695 7.10334 5.8532 8.81333 7.49014 10.1522C8.04385 10.6041 8.6325 11.1306 9.22915 11.6749C8.76465 11.9317 8.33391 12.2398 7.94596 12.5928L7.94593 12.5929ZM0.867358 17.1749C0.438078 17.6458 0.0162843 16.9881 0.774599 16.6219C0.851996 16.5852 0.929344 16.5503 1.00904 16.515C1.03316 16.6284 1.03304 16.7452 1.00871 16.8585C0.984372 16.9719 0.936309 17.0795 0.867358 17.1749ZM1.87878 15.1703C1.78697 14.7931 2.35334 14.5316 2.59891 15.0678C2.71877 15.3307 2.50894 15.5378 2.24421 15.6925C2.08925 15.5414 1.96533 15.3644 1.87878 15.1703ZM2.69446 17.8097C2.51315 17.5734 2.6073 17.3812 3.06733 17.1016C3.14338 17.1993 3.19791 17.3104 3.22767 17.4285C3.28127 17.9011 2.83149 17.9868 2.69446 17.8097ZM4.11466 15.4455C4.26519 14.9799 4.79376 15.1575 4.82591 15.6191C4.83755 15.8011 4.61571 15.98 4.37146 16.1218C4.18222 15.8776 4.05221 15.6377 4.11466 15.4455ZM5.24724 18.4189C5.07292 18.5597 4.46747 18.3212 4.95827 17.8119C5.03457 17.7443 5.12094 17.6878 5.21461 17.644C5.50734 18.1172 5.39083 18.3018 5.24726 18.4189H5.24724ZM6.54591 16.7151C6.39478 16.5838 6.27154 16.4264 6.18283 16.2513C6.02948 15.7358 6.69877 15.6231 6.85773 16.0711C6.95785 16.3546 6.77744 16.564 6.54591 16.7151ZM7.66966 18.3734C7.71208 18.6265 7.65195 18.7471 7.46832 18.7776C7.29444 18.8067 6.92717 18.6322 7.29679 17.8959C7.30685 17.8749 7.3187 17.8549 7.33221 17.8358C7.48811 17.987 7.60375 18.1713 7.66956 18.3734L7.66966 18.3734ZM7.83047 16.8498C7.63246 17.0265 7.44849 17.2168 7.28008 17.4192C7.11042 17.2518 6.92959 17.0813 6.75946 16.9218C7.01859 16.7469 7.33507 16.4271 6.95195 15.8921C6.65692 15.4827 5.73965 15.5189 5.90744 16.303C6.00544 16.5081 6.14826 16.6912 6.32644 16.8401C6.16891 16.9174 6.02116 16.9723 5.95311 17.007C5.84777 17.0605 5.59107 17.1722 5.33833 17.2964C5.21062 17.1082 5.06612 16.9452 4.95847 16.8095C4.84658 16.673 4.71003 16.5224 4.57718 16.3709C4.93051 16.2013 5.10343 16.0294 5.02789 15.5837C5.01767 15.4534 4.96103 15.3302 4.86726 15.2344C4.77349 15.1385 4.64816 15.0758 4.5118 15.0563C4.37544 15.0368 4.23615 15.0619 4.11676 15.1273C3.99738 15.1927 3.90499 15.2946 3.85473 15.4163C3.73171 15.699 3.80673 15.8814 4.10783 16.2613C3.95962 16.3329 3.83051 16.3854 3.77828 16.4124C3.57836 16.5091 3.35321 16.6134 3.14534 16.7225C2.9412 16.4562 2.66525 16.1597 2.42056 15.892C2.53723 15.8401 2.63998 15.7638 2.72111 15.6688C2.80224 15.5739 2.85964 15.4628 2.889 15.3438C2.93421 15.0037 2.57812 14.5182 2.11574 14.6114C1.52474 14.7294 1.51168 15.199 1.80906 15.6053C1.83374 15.6376 1.9018 15.7144 1.99316 15.8169C1.80578 15.8987 1.62961 15.9584 1.5485 15.9897C1.44316 16.033 1.3187 16.0798 1.19055 16.1311C1.11176 15.597 0.938835 15.0267 0.867529 14.6782C0.477878 12.7814 3.3933 13.3958 6.0524 14.9742C6.32637 15.1358 7.24792 15.7203 8.39779 16.3683C8.18507 16.541 7.9916 16.7045 7.83037 16.8498L7.83047 16.8498ZM0.40826 22.7054C0.377951 22.5429 0.519658 22.3432 0.913982 22.0693C0.959435 22.191 0.986273 22.3182 0.993678 22.447C0.997984 23.0257 0.474893 23.0845 0.40826 22.7054ZM2.20784 20.9725C2.05814 20.8559 1.9287 20.7177 1.82425 20.563C1.76926 20.423 1.78326 20.0334 2.16263 20.0193C2.43066 20.0073 2.63619 20.5114 2.45862 20.7326C2.38445 20.821 2.30036 20.9014 2.20784 20.9725ZM3.50676 22.7682C3.49279 23.1861 2.85189 23.2846 2.8435 22.8115C2.83978 22.6511 3.02391 22.4722 3.26764 22.3017C3.40824 22.4219 3.49402 22.5892 3.50686 22.7682L3.50676 22.7682ZM4.5909 21.2164C4.58251 21.2221 4.5718 21.2287 4.56341 21.2349C4.30426 21.0065 4.11688 20.7954 4.13088 20.6567C4.18166 20.1474 4.64917 20.252 4.78992 20.5348C4.84967 20.6519 4.86243 20.7856 4.82584 20.911C4.78924 21.0364 4.70577 21.145 4.591 21.2164H4.5909ZM5.91556 23.0805C5.90762 23.1547 5.87083 23.2234 5.81234 23.2732C5.75386 23.3231 5.67788 23.3506 5.59921 23.3502C5.52054 23.3499 5.44482 23.3218 5.38681 23.2715C5.32879 23.2211 5.29264 23.1521 5.2854 23.0778C5.2953 22.9673 5.33189 22.8603 5.39234 22.7653C5.45279 22.6702 5.53548 22.5896 5.63403 22.5296C5.81404 22.7178 5.95758 22.9228 5.91565 23.0805H5.91556ZM6.80719 21.5026C6.35973 21.1497 6.21059 20.8372 6.47534 20.6359C6.54538 20.5847 6.63335 20.5607 6.72138 20.5688C6.80942 20.5768 6.89092 20.6163 6.94936 20.6792C7.10327 20.8524 7.2417 21.1524 6.80729 21.5026H6.80719ZM8.41941 22.9661C8.45368 23.0482 8.45389 23.1396 8.41999 23.2218C8.3861 23.3041 8.32063 23.3712 8.23671 23.4096C8.04373 23.4847 7.64011 23.3702 7.8792 22.4886C8.16269 22.6616 8.37895 22.819 8.41951 22.9661H8.41941ZM7.84564 21.7098C7.79672 21.8374 7.7529 21.958 7.71188 22.0747C7.60095 22.0102 7.48488 21.9421 7.34787 21.8626C7.24346 21.8016 7.14792 21.7416 7.05795 21.6828C7.06494 21.6753 7.07708 21.67 7.08405 21.6619C7.52592 21.271 7.32595 20.5218 6.81137 20.4264C6.69595 20.4019 6.57546 20.4102 6.465 20.4503C6.35453 20.4903 6.259 20.5604 6.19038 20.6517C6.12175 20.743 6.08308 20.8515 6.07922 20.9636C6.07535 21.0756 6.10646 21.1862 6.16864 21.2816C6.27612 21.4295 6.4069 21.5609 6.55643 21.6712C6.51355 21.6964 6.46927 21.7216 6.42128 21.7468C6.17117 21.8713 5.93027 22.0118 5.70022 22.1673C5.65827 22.128 5.61399 22.09 5.57057 22.0511C5.35103 21.8647 5.05553 21.6431 4.78985 21.4265C4.89462 21.3686 4.98034 21.2842 5.03746 21.1828C5.09457 21.0814 5.12083 20.967 5.11331 20.8522C5.10724 20.6843 5.04043 20.5235 4.92408 20.3968C4.80773 20.27 4.64892 20.185 4.47429 20.1561C3.98724 20.1512 3.64 20.5629 3.97513 21.0691C4.06791 21.191 4.17537 21.3022 4.29533 21.4005C4.01427 21.5577 3.63858 21.7445 3.31559 21.9402C3.21212 21.8338 3.09 21.718 2.94365 21.5873C2.85603 21.5087 2.65373 21.3492 2.44446 21.1752C2.56495 21.0949 2.65833 20.9833 2.71329 20.8538C2.76826 20.7244 2.78245 20.5826 2.75416 20.4456C2.72587 20.3086 2.6563 20.1824 2.55388 20.0821C2.45146 19.9818 2.32056 19.9118 2.17704 19.8805C2.09266 19.8752 2.00803 19.8865 1.92851 19.9138C1.84898 19.941 1.7763 19.9837 1.71505 20.0389C1.6538 20.0942 1.60533 20.1609 1.5727 20.2348C1.54006 20.3088 1.52399 20.3883 1.52548 20.4685C1.51012 20.6924 1.69328 20.9097 1.95801 21.147C1.66344 21.3347 1.31853 21.5047 1.01232 21.6792C1.00393 21.6642 0.997861 21.647 0.989471 21.6298C0.369561 20.3885 0.252585 19.5748 0.744853 19.2497C1.52323 18.7338 3.31725 18.952 5.64773 19.714C6.54591 20.0094 7.47707 20.3046 8.41858 20.5767C8.18901 20.9358 7.99714 21.3153 7.84574 21.7098H7.84564ZM16.7122 20.3267C15.4966 22.0269 12.014 21.2177 10.2815 20.8245C9.97435 20.7539 9.48494 20.6081 8.89206 20.423C9.08371 20.1193 9.30134 19.8311 9.54275 19.5612C10.1446 18.9165 10.8625 18.3784 11.663 17.9718C12.4996 18.3005 13.272 18.5147 13.8429 18.4948C15.1797 18.4498 15.595 17.5402 14.3869 17.0216C13.8676 16.7999 12.8082 17.0411 11.6728 17.6445C11.3768 17.5296 11.0608 17.3936 10.7173 17.231C10.0727 16.9258 9.47377 16.6122 8.90185 16.2985C9.62405 15.7315 10.4131 15.2458 11.2533 14.8509C11.6653 14.6734 12.0224 14.5382 12.3412 14.4357C12.5785 14.6252 12.8068 14.7997 13.0237 14.953C13.644 15.3877 14.8083 15.9398 15.1151 15.3148C15.5346 14.4614 14.3801 13.9644 13.6674 13.979C13.2473 13.9922 12.8303 14.0528 12.4253 14.1596C11.9713 13.7895 11.4544 13.3256 10.8527 12.7562C10.6812 12.5946 10.2617 12.2041 9.714 11.7168C10.3111 11.4422 10.9497 11.2575 11.6068 11.1695C12.1801 11.0943 12.7613 11.0909 13.3356 11.1594C14.0151 12.5508 14.4402 12.9161 15.0382 12.948C15.7765 12.9882 16.0664 12.2455 15.4363 11.6347C15.1067 11.3122 14.4174 11.0785 13.5887 10.9716C13.2876 10.3709 12.9641 9.66539 12.6378 8.96395C12.8107 8.9666 12.9925 8.97555 13.1841 8.99178C15.2927 9.17993 16.7907 9.88493 18.0642 11.1518C18.0167 11.2035 17.9687 11.2535 17.9207 11.3078C17.6914 11.5688 16.6575 12.4475 16.7335 13.7536C16.7824 14.5876 17.3809 14.9132 18.0097 15.2144C17.3863 15.5131 16.6442 15.9814 16.7245 17.0791C16.7813 17.868 17.4096 18.2793 18.0584 18.6653C17.9092 18.7572 17.7545 18.8549 17.5984 18.9657C17.3567 19.1195 17.1526 19.3205 16.9997 19.5552C16.8468 19.79 16.7488 20.053 16.7122 20.3267ZM12.0555 17.7828C12.5938 17.5294 13.1679 17.3511 13.7601 17.2536C14.235 17.1961 14.9239 17.3481 14.8633 17.7333C14.8046 18.0964 13.9759 18.4498 12.0555 17.7828ZM12.6545 14.3425C13.5074 14.1159 14.0374 14.1729 14.5007 14.3743C14.8279 14.5148 15.2618 15.0811 14.7878 15.2238C14.2783 15.3757 13.6239 15.0983 12.6545 14.3425ZM13.7153 11.2181C14.6414 11.3869 15.3303 11.7416 15.4912 12.1268C15.8035 12.8825 14.7832 12.8455 14.3264 12.2451C14.0954 11.9181 13.8911 11.5747 13.7153 11.2181ZM17.7671 11.9678C17.8827 11.8263 18.001 11.6974 18.118 11.5649C18.1195 12.1983 18.1208 13.4896 18.125 15.0078C17.0642 14.4812 16.4093 13.6609 17.7671 11.9678ZM18.1306 18.4299C17.5047 18.0491 17.04 17.7028 17.0609 16.8693C17.081 16.0737 17.5662 15.7163 18.125 15.4292C18.1264 16.3931 18.1288 17.4285 18.1306 18.4299ZM17.0171 20.3161C17.0432 19.6336 17.5522 19.248 18.1306 18.895C18.1344 20.2577 18.1371 21.5282 18.1376 22.4434C17.596 21.9735 16.9808 21.2601 17.0171 20.3161ZM15.8356 6.74864C15.546 6.57152 15.2247 6.44593 14.8875 6.37803C14.9369 6.12976 14.9732 5.86605 15.0003 5.62353C15.1252 5.63651 15.2513 5.63417 15.3755 5.61658C16.0113 5.47476 16.187 4.52724 15.514 4.43933C14.9574 4.36867 14.7971 4.57008 14.7216 5.34348C14.5328 5.32226 14.3445 5.29312 14.1879 5.27455C14.0318 5.25647 13.8817 5.24441 13.7423 5.23514C13.767 5.0659 13.7857 4.87028 13.7973 4.64235C13.8038 4.53545 13.8109 4.4365 13.8141 4.34372C14.9929 4.41969 14.9947 3.28091 14.5175 3.08965C13.8854 2.83433 13.6058 3.33525 13.5666 3.78628C13.5634 3.8406 13.5582 3.91657 13.5522 4.00446C13.2837 3.97534 12.9882 3.93259 12.702 3.90419C12.7705 3.55152 12.8182 3.19549 12.8446 2.83776C14.1008 2.96458 14.0858 1.65655 13.4608 1.57219C12.8982 1.4949 12.6969 1.74838 12.5645 2.5227C12.3272 2.49257 12.0788 2.45779 11.8383 2.43125C12.1171 1.67587 12.2555 0.738545 12.7556 0.490809C13.5522 0.0963461 15.5867 1.68966 16.6783 4.09812C17.5709 6.00179 18.0664 8.05115 18.1376 10.1332C17.7922 8.9825 17.0414 7.46648 15.8356 6.74864ZM15.0278 5.36511C15.0493 5.15131 15.066 4.97507 15.0842 4.87524C15.1616 4.4684 15.7936 4.41673 15.761 4.92516C15.7372 5.2918 15.4091 5.37399 15.0278 5.36513V5.36511ZM13.8393 4.03019C13.8994 3.37951 14.0056 3.19928 14.365 3.17631C14.5389 3.16618 14.8749 3.55665 14.4811 3.92993C14.2877 4.03761 14.0589 4.07335 13.8393 4.03022V4.03019ZM12.8675 2.55834C12.8768 2.45633 12.8842 2.36311 12.8936 2.29108C12.9626 1.69527 13.5666 1.55826 13.6757 1.92754C13.7657 2.24029 13.5666 2.61133 13.0385 2.5738C12.9863 2.56983 12.9262 2.56367 12.8675 2.55836V2.55834ZM16.386 25.4415C15.8766 25.385 15.706 24.8823 16.3787 24.8179C16.576 24.7924 16.7768 24.8115 16.9648 24.8734C17.1529 24.9353 17.3229 25.0385 17.4609 25.1744C17.1427 25.3716 16.7654 25.4654 16.386 25.4416V25.4415ZM20.1959 24.8179C20.8694 24.8824 20.6984 25.3851 20.1875 25.4416C19.808 25.4653 19.4306 25.3715 19.1122 25.1744C19.2506 25.0385 19.4209 24.9354 19.6091 24.8735C19.7974 24.8115 19.9984 24.7925 20.1959 24.8178V24.8179ZM18.7044 25.2128C18.4692 25.6167 18.3272 26.0633 18.2877 26.523C18.2476 26.0629 18.1054 25.616 17.8705 25.2115C18.049 25.0346 18.1906 24.8273 18.2877 24.6006C18.3843 24.8278 18.5257 25.0356 18.7044 25.2127V25.2128ZM19.8971 4.09826C20.9883 1.68989 23.0228 0.0965779 23.8189 0.491041C24.3195 0.738869 24.456 1.67619 24.7375 2.43148C24.4956 2.458 24.2453 2.49289 24.009 2.52294C23.8767 1.74862 23.6739 1.49501 23.1127 1.57242C22.4891 1.65679 22.4746 2.96481 23.7303 2.838C23.7557 3.1958 23.8032 3.55188 23.8725 3.90442C23.5863 3.93271 23.2912 3.97557 23.0223 4.00469C23.0167 3.9168 23.0111 3.84083 23.0069 3.78651C22.9678 3.33548 22.6886 2.83456 22.057 3.08988C21.5793 3.28114 21.5821 4.41993 22.7594 4.34395C22.7636 4.43669 22.7715 4.53568 22.7776 4.64258C22.7893 4.87052 22.8074 5.06621 22.8335 5.23537C22.6928 5.24465 22.5422 5.25661 22.3865 5.27478C22.2304 5.29333 22.0435 5.3225 21.8529 5.34371C21.7755 4.57022 21.6166 4.36881 21.0614 4.43956C20.3875 4.52747 20.5632 5.475 21.1984 5.61681C21.323 5.63437 21.4494 5.63671 21.5746 5.62376C21.6002 5.86628 21.6375 6.12999 21.6869 6.37826C21.3497 6.44593 21.0284 6.57145 20.7389 6.74864C19.5322 7.46648 18.7836 8.9825 18.4368 10.1332C18.5086 8.05117 19.0045 6.00191 19.8971 4.09826ZM23.7065 2.55836C23.6473 2.56367 23.5895 2.56995 23.536 2.57382C23.0069 2.61136 22.8088 2.24031 22.8997 1.92757C23.0069 1.55828 23.6128 1.69522 23.6818 2.2911C23.6893 2.36313 23.6963 2.45633 23.7065 2.55836ZM22.7343 4.03022C22.4383 4.04788 22.201 4.03253 22.0938 3.92995C21.6986 3.5567 22.0365 3.1662 22.2103 3.17633C22.5679 3.19928 22.6746 3.37953 22.7343 4.03022ZM21.5466 5.36513C21.1654 5.37399 20.8373 5.2918 20.8139 4.92518C20.7808 4.41675 21.4124 4.46847 21.4898 4.87527C21.5089 4.97512 21.5252 5.15131 21.5466 5.36513ZM18.4569 11.5649C18.5748 11.6974 18.6917 11.8264 18.8074 11.9678C20.1665 13.6609 19.5117 14.4812 18.4499 15.0078C18.4536 13.4896 18.455 12.1983 18.4569 11.5649ZM19.5145 16.8692C19.5354 17.7028 19.0703 18.0491 18.4443 18.4299C18.4468 17.4283 18.4485 16.393 18.4494 15.4292C19.0088 15.7163 19.4935 16.0759 19.5145 16.8693V16.8692ZM18.4368 22.4435C18.4382 21.5282 18.441 20.2578 18.4428 18.8951C19.0226 19.248 19.5307 19.6336 19.5583 20.3162C19.5932 21.2601 18.9771 21.9735 18.4368 22.4435ZM26.2947 20.8245C24.5599 21.2177 21.0777 22.0269 19.8626 20.3267C19.8263 20.0529 19.7283 19.7897 19.5754 19.5549C19.4224 19.3201 19.218 19.1192 18.976 18.9658C18.8195 18.855 18.6666 18.7573 18.5155 18.6654C19.1648 18.2794 19.7917 17.8681 19.8509 17.0792C19.9316 15.9815 19.188 15.5132 18.565 15.2146C19.1942 14.9132 19.7917 14.5878 19.8411 13.7538C19.9176 12.4476 18.8828 11.569 18.6535 11.308C18.6055 11.2536 18.5584 11.2036 18.5104 11.152C19.7847 9.88512 21.2818 9.18012 23.3895 8.99196C23.5834 8.97562 23.7619 8.96676 23.9358 8.96414C23.6104 9.6656 23.287 10.3711 22.9859 10.9718C22.1581 11.0787 21.4687 11.3124 21.1373 11.6348C20.5081 12.2458 20.7976 12.9884 21.5354 12.9482C22.1334 12.9163 22.5603 12.551 23.2385 11.1596C23.8129 11.0911 24.3943 11.0945 24.9677 11.1697C25.6248 11.2579 26.2634 11.4425 26.8605 11.717C26.3119 12.2043 25.8925 12.5948 25.7223 12.7564C25.1215 13.3258 24.6032 13.7896 24.1493 14.1598C23.7443 14.053 23.3273 13.9923 22.9071 13.9791C22.1953 13.9646 21.0395 14.4616 21.459 15.315C21.767 15.94 22.9305 15.3879 23.5513 14.9532C23.7676 14.7999 23.9969 14.6254 24.2327 14.4359C24.6027 14.557 24.9661 14.6955 25.3215 14.8511C26.1615 15.2465 26.9507 15.7322 27.6734 16.2987C27.1006 16.6123 26.5017 16.926 25.8547 17.2312C25.5131 17.3938 25.1971 17.5298 24.903 17.6447C23.7652 17.0413 22.7058 16.8001 22.1865 17.0218C20.9798 17.5404 21.3946 18.4499 22.7309 18.495C23.3024 18.5149 24.0747 18.3007 24.9118 17.972C25.7125 18.3785 26.4306 18.9167 27.0326 19.5614C27.2738 19.8316 27.4915 20.1198 27.6838 20.4232C27.0899 20.6081 26.6001 20.7539 26.2948 20.8245H26.2947ZM22.8587 11.2181C22.6839 11.575 22.4799 11.9184 22.2486 12.2451C21.7923 12.8455 20.7711 12.8827 21.0838 12.1268C21.245 11.7416 21.9321 11.3869 22.8587 11.2181ZM23.92 14.3425C22.9491 15.0983 22.2961 15.3757 21.7867 15.2238C21.3126 15.0811 21.7461 14.5148 22.0729 14.3743C22.5371 14.1729 23.067 14.1159 23.92 14.3425ZM24.5204 17.7828C22.5987 18.4498 21.7705 18.0964 21.7113 17.7333C21.6511 17.3481 22.3396 17.1961 22.8145 17.2536C23.4071 17.3511 23.9816 17.5294 24.5204 17.7828ZM28.3382 23.4096C28.254 23.3714 28.1883 23.3044 28.1542 23.2221C28.1201 23.1398 28.1202 23.0483 28.1546 22.9661C28.1961 22.819 28.4114 22.6617 28.6952 22.4885C28.9347 23.3702 28.5321 23.4846 28.3381 23.4096H28.3382ZM29.7654 21.5026C29.3324 21.1523 29.4704 20.8524 29.6242 20.6792C29.6828 20.6163 29.7645 20.5768 29.8526 20.5688C29.9408 20.5608 30.0289 20.5848 30.0991 20.6359C30.3643 20.8373 30.2142 21.1497 29.7653 21.5026H29.7654ZM31.2886 23.0778C31.2813 23.1521 31.2451 23.2212 31.1871 23.2715C31.129 23.3219 31.0533 23.35 30.9745 23.3503C30.8958 23.3507 30.8198 23.3232 30.7613 23.2733C30.7028 23.2234 30.6659 23.1547 30.658 23.0805C30.616 22.9228 30.7605 22.7178 30.9404 22.5296C31.0388 22.5897 31.1214 22.6703 31.1817 22.7654C31.2421 22.8604 31.2786 22.9673 31.2885 23.0778H31.2886ZM32.011 21.2349C32.0026 21.2287 31.9929 21.2221 31.9845 21.2164C31.8692 21.1454 31.7853 21.0369 31.7486 20.9114C31.7118 20.7858 31.7248 20.6519 31.785 20.5348C31.9253 20.2519 32.3928 20.1474 32.4445 20.6567C32.4589 20.7954 32.2692 21.0065 32.011 21.2349H32.011ZM33.7319 22.8114C33.7221 23.2845 33.0821 23.186 33.0681 22.7681C33.0797 22.589 33.1651 22.4215 33.3059 22.3016C33.55 22.4722 33.7336 22.6511 33.7318 22.8115L33.7319 22.8114ZM34.3667 20.9724C34.2745 20.9011 34.1906 20.8207 34.1164 20.7326C33.9365 20.5113 34.143 20.0072 34.4128 20.0192C34.7927 20.0333 34.8053 20.4229 34.7493 20.5629C34.6458 20.718 34.5165 20.8563 34.3666 20.9725L34.3667 20.9724ZM36.1677 22.7054C36.0987 23.0844 35.5776 23.0256 35.5818 22.4469C35.5885 22.3181 35.6147 22.191 35.6596 22.0693C36.0534 22.3432 36.1965 22.5429 36.1676 22.7054L36.1677 22.7054ZM35.586 21.6297C35.5767 21.6469 35.5697 21.6641 35.5627 21.6791C35.256 21.5046 34.912 21.3346 34.617 21.1468C34.8812 20.9096 35.0654 20.6923 35.0491 20.4684C35.0505 20.3883 35.0343 20.3088 35.0017 20.2349C34.9691 20.161 34.9206 20.0944 34.8594 20.0391C34.7983 19.9839 34.7257 19.9413 34.6462 19.9139C34.5668 19.8866 34.4822 19.8752 34.3979 19.8804C34.2544 19.9116 34.1235 19.9815 34.021 20.0818C33.9185 20.182 33.8488 20.3082 33.8204 20.4451C33.7919 20.582 33.806 20.7238 33.8607 20.8534C33.9155 20.9829 34.0087 21.0947 34.129 21.1751C33.9192 21.3492 33.7183 21.5086 33.6312 21.5872C33.4844 21.718 33.3623 21.8337 33.2583 21.9402C32.9367 21.7445 32.5606 21.5577 32.279 21.4004C32.3994 21.3025 32.5069 21.1913 32.5993 21.0691C32.9344 20.5629 32.5871 20.1512 32.1015 20.156C31.9266 20.1847 31.7675 20.2696 31.651 20.3964C31.5344 20.5232 31.4675 20.6841 31.4615 20.8522C31.4535 20.9669 31.4795 21.0815 31.5365 21.183C31.5936 21.2844 31.6795 21.3688 31.7844 21.4265C31.5178 21.6429 31.2237 21.8646 31.0037 22.0511C30.9599 22.09 30.9157 22.1279 30.8741 22.1672C30.6443 22.0119 30.4037 21.8714 30.1539 21.7467C30.1045 21.7215 30.0612 21.6963 30.0178 21.6712C30.1675 21.5609 30.2984 21.4295 30.4061 21.2816C30.4681 21.1861 30.499 21.0755 30.495 20.9635C30.491 20.8515 30.4523 20.7431 30.3837 20.6518C30.315 20.5606 30.2196 20.4905 30.1091 20.4504C29.9987 20.4103 29.8783 20.402 29.7629 20.4264C29.2483 20.5218 29.0479 21.271 29.4912 21.6619C29.4989 21.6697 29.5074 21.6767 29.5168 21.6828C29.4264 21.7415 29.3299 21.8014 29.2274 21.8625C29.0904 21.9421 28.9724 22.0101 28.8624 22.0746C28.8214 21.958 28.7776 21.8374 28.7286 21.7097C28.5772 21.3153 28.3855 20.9358 28.1562 20.5767C29.0972 20.3046 30.0285 20.0095 30.9262 19.714C33.2553 18.952 35.053 18.7338 35.83 19.2497C36.3219 19.5749 36.2044 20.3885 35.5859 21.6298L35.586 21.6297Z" fill="#0C1F1E"/> </svg> </div> <div class="header__dropdown__panel__middle"> <svg xmlns="http://www.w3.org/2000/svg" width="92" height="13" viewBox="0 0 92 13" fill="none"> <path d="M11.3795 4.17759C11.4029 3.41913 11.2061 2.67013 10.8129 2.02116C10.4446 1.43747 9.91205 0.97558 9.28218 0.69346C8.46462 0.348247 7.58129 0.186581 6.69446 0.21986H0.436523V12.0592H2.58451V8.2199H6.40687L9.14688 12.0592H11.853L8.87629 7.89848C10.5449 7.27856 11.3793 6.03826 11.3795 4.17759ZM8.06441 5.98727C7.59976 6.13289 7.11319 6.19589 6.62678 6.17343H2.58451V2.30024H6.6099C7.14343 2.27286 7.67728 2.34748 8.18285 2.5201C8.89316 2.81341 9.24834 3.37154 9.24839 4.19449C9.24839 5.13057 8.85373 5.72816 8.06441 5.98727ZM19.3551 0.21986L13.9428 12.0592H16.26L17.3594 9.57294H24.0909L25.2072 12.0592H27.575L22.1796 0.21986H19.3551ZM18.2558 7.52644L20.7251 1.96194L23.1944 7.52644H18.2558ZM30.5344 0.21986H39.8875V2.33404H32.6995V5.19245H39.0927V7.28978H32.6995V12.0592H30.5345L30.5344 0.21986ZM43.27 0.21986H52.6231V2.33404H45.4349V5.19245H51.8282V7.28978H45.4349V12.0592H43.27V0.21986ZM58.2382 9.9282H65.2234V12.0593H56.0056V0.21986H58.2382V9.9282ZM70.1558 9.97891H77.9698V12.0593H68.0247V0.21986H77.733V2.30024H70.1558V5.02322H76.8027V7.0867H70.1558V9.97891ZM91.5625 8.5412C91.5681 9.05809 91.4524 9.5691 91.2248 10.0332C90.9972 10.4973 90.6639 10.9016 90.2517 11.2136C89.3778 11.9239 88.0952 12.2791 86.4039 12.2791C83.9232 12.2791 82.074 11.5462 80.8563 10.0804L82.5138 8.69348C82.9835 9.22334 83.5717 9.63478 84.2305 9.89427C84.967 10.1491 85.7433 10.2694 86.5223 10.2494C87.4805 10.2494 88.1994 10.0944 88.6788 9.78434C88.8918 9.6694 89.0705 9.50007 89.1968 9.29359C89.323 9.08711 89.3923 8.85086 89.3976 8.60889C89.3976 7.71828 88.5801 7.19397 86.9451 7.03596L85.5413 6.90062C84.1769 6.76533 83.1198 6.44117 82.3701 5.92813C81.6201 5.41517 81.2452 4.61742 81.2453 3.53489C81.2345 3.03445 81.3468 2.53902 81.5725 2.09221C81.7981 1.64539 82.1301 1.26088 82.5392 0.972517C83.4017 0.324172 84.6336 0 86.2347 0C88.456 0 90.1473 0.653979 91.3088 1.96194L89.7189 3.34883C88.9181 2.46937 87.7286 2.02964 86.1502 2.02962C85.1803 2.02962 84.4812 2.17055 84.0528 2.45241C83.6242 2.73441 83.4099 3.0614 83.4101 3.43339C83.4025 3.6585 83.4641 3.88051 83.5866 4.06952C83.7091 4.25853 83.8866 4.40546 84.0952 4.4905C84.7495 4.75626 85.4446 4.90784 86.1502 4.93866L87.4694 5.05708C88.7435 5.16991 89.7442 5.51382 90.4715 6.08881C91.1988 6.66381 91.5625 7.48127 91.5625 8.5412Z" fill="#0C1F1E"/> </svg> </div> <button type="button" class="header__dropdown__close"> <svg xmlns="http://www.w3.org/2000/svg" width="19" height="18" viewBox="0 0 19 18" fill="none"> <line x1="1.38285" y1="0.646447" x2="18.3534" y2="17.617" stroke="#727C74"/> <line x1="0.675743" y1="17.6462" x2="17.6463" y2="0.67564" stroke="#727C74"/> </svg> </button> </div> <div class="header__dropdown__label header__dropdown__label--profile"> Hello,<br/> <div class="header__user-name js-auth-name"></div> </div> <div class="header__status">Member status: <span class="js-auth-member-status"></span></div> <div class="header__status">Reward points: <span class="js-auth-reward-points"></span></div> </div> <div class="header__auth-content"> <ul class="header__dropdown__list header__dropdown__list--contacts"> <li class="header__dropdown__item"> <a href="https://all.accor.com/account/index.en.shtml" class="header__dropdown__link icon icon--user" target="_blank">My ALL Account</a> </li> <li class="header__dropdown__item"> <a href="https://all.accor.com/account/index.en.shtml#/my-bookings" class="header__dropdown__link icon icon--calendar" target="_blank">My Bookings</a> </li> <li class="header__dropdown__item"> <a href="https://all.accor.com/account/index.en.shtml#/rewards" class="header__dropdown__link icon icon--star" target="_blank">My Points History</a> </li> </ul> <a href="" class="btn header__logout js-accor-logout-btn">Logout</a> </div> </div> <!-- Auth Dropdown For User End --> </div> <!-- Auth End --> </div> </div> </div> <div class="header__overlay"></div> <!-- Left Menu End --> </div> </header> <script src="/etc.clientlibs/raffles-aem/components/header/clientlibs/component.lc-efcfe18f170544281933250c6aa0e6cf-lc.min.js"></script> </div> </div> </div> </div> <div class="booking aem-GridColumn aem-GridColumn--default--12"> <div class="booking-aem__wrapper"> <script type="text/javascript"> window.addEventListener('DOMContentLoaded', (event) => { let url = document.location.href; if (!url.includes("#/booking")) { document.location.href = url +"#/booking/step-1"; } }); window.BOOKING_SETTINGS = { baseUri: "https://newbooking.azds.com", hotel: "a7w6", theme: 'raffles', lang: "en", emergency: { email: "", phone: "" } }; </script> <booking-layout> <!-- Booking engine content here --> </booking-layout> <script type="text/javascript" src="https://newbooking.azds.com/inline.bundle.js"></script> <link href="https://newbooking.azds.com/api/hotel/a7w6/styles" rel="stylesheet" type="text/css"/> </div> </div> <div class="property-footer-wrapper aem-GridColumn aem-GridColumn--default--12"> <div><div class="xfpage page basicpage generic-page"> <div class="xf-content-height"> <div class="root container responsivegrid property-footer"> <div id="container-39e909406b" class="cmp-container" style="background-image:url(\2f content\2f dam\2fraffles-aem\2f footer-bg.jpg);background-size:cover;background-repeat:no-repeat;background-color:#0C1F1E;"> <div class="container responsivegrid property-footer-lvl1"> <div id="container-ed77d58739" class="cmp-container"> <div class="image"> <div data-cmp-is="image" data-cmp-src="/content/experience-fragments/raffles-aem/en/destinations/europe/poland/warsaw/property-footer/master/_jcr_content/root/container/image.coreimg{.width}.svg/1694778894066/logo-warsaw-large-white.svg" data-asset-id="9f5adbea-9511-4bef-9397-7a4cdd0a00cb" data-cmp-filereference="/content/dam/raffles-aem/property-logos/logo-warsaw-large-white.svg" id="image-2aac824869" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <a class="cmp-image__link" href="/warsaw/"> <img src="/content/experience-fragments/raffles-aem/en/destinations/europe/poland/warsaw/property-footer/master/_jcr_content/root/container/image.coreimg.svg/1694778894066/logo-warsaw-large-white.svg" loading="lazy" class="cmp-image__image" itemprop="contentUrl" alt="Warsaw Raffles Logo Light"/> </a> </div> </div> <div class="propertyfootercontact"> <div class="property-footer-contacts js-property-block-mobile"> <div class="property-footer-contacts_connect"> <p> <a title="phone number" href="tel:(+48)%2022%20255%2095%2000">(+48) 22 255 95 00</a> </p> <p> <a title="email" href="mailto:warsaw@raffles.com">warsaw@raffles.com</a> </p> </div> <div class="property-footer-contacts_location"> <a title="location" href="http://maps.google.com/?q=Raffles%20Europejski%20Warsaw%20" target="_blank"> <p>Krakowskie Przedmieście 13</p> <p>00-071 Warsaw</p> <p>Poland</p> </a> </div> </div> </div> <div class="propertyfootercontact"> <div class="property-footer-contacts "> <div class="property-footer-contacts_connect"> <p> <a title="phone number" href="tel:(+48)%2022%20255%2095%2000">(+48) 22 255 95 00</a> </p> <p> <a title="email" href="mailto:warsaw@raffles.com">warsaw@raffles.com</a> </p> </div> <div class="property-footer-contacts_location"> <a title="location" href="http://maps.google.com/?q=Raffles%20Europejski%20Warsaw%20" target="_blank"> <p>Krakowskie Przedmieście 13</p> <p>00-071 Warsaw</p> <p>Poland</p> </a> </div> </div> </div> <div class="list"> <ul class="cmp-list"> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/warsaw/booking/"> <span class="cmp-list__item-title ">Reserve Your Stay</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/warsaw/booking/#/booking/modify"> <span class="cmp-list__item-title ">Manage Reservation</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://www.google.com/maps?q=Raffles%20Europejski%20Warsaw,%20Krakowskie%20Przedmieście%2013,,%20Warsaw,%20Poland&z=13"> <span class="cmp-list__item-title ">Get Directions</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://giftcards.raffles.com/gift-card-warsaw-031476"> <span class="cmp-list__item-title ">Gift Cards</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="#"> <span class="cmp-list__item-title modal-trigger-open" data-modal-id="#modal-item-ec19dc7122">Contact Us</span> </a> <div class="modal-b modal-b--full" role="dialog" tabindex="0" aria-modal="true" id="modal-item-ec19dc7122"> <div class="modal-backdrop modal-backdrop--no-close"></div> <div class="modal-wrapper"> <div class="modal-container"> <div class="xfpage page basicpage"> <div class="xf-content-height"> <div class="root container responsivegrid"> <div id="container-64c006bd69" class="cmp-container"> <div class="xf-form"> <div class="xf-form-b background-color__brand-teal" style="background: #C9DADC"> <div class="xf-form-close"> <a href="#" class="modal-trigger-close"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 12.5L20.9706 20.9706L21.6777 20.2635L13.2071 11.7929L20.9706 4.02939L20.2635 3.32228L12.5 11.0858L4.70718 3.29297L4.00008 4.00008L11.7929 11.7929L3.29297 20.2928L4.00008 21L12.5 12.5Z" fill="white"/> </svg> <span>Close</span> </a> </div> <div class="xf-form-container"> <div class="xf-form-container__picture"> <div data-cmp-is="image" data-cmp-widths="575,991,1199,1920" data-cmp-dmimage data-cmp-src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=%7B.width%7D&ts=1715970280689&dpr=off" data-asset-id="b30a3fde-c541-4ec1-ae33-0ab42e6e995f" data-cmp-filereference="/content/dam/remote/brands/raf/hotels/europe/pl/warsaw/a7w6/aja_p_5921-73.jpg" id="image-9b074e9ca0" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <img src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&ts=1715970280689&dpr=off" srcset="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=575&ts=1715970280689&dpr=off 575w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=991&ts=1715970280689&dpr=off 991w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1199&ts=1715970280689&dpr=off 1199w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1920&ts=1715970280689&dpr=off 1920w" loading="lazy" class="cmp-image__image" itemprop="contentUrl" width="7383" height="4925" alt="Raffles Europejski Warsaw"/> </div> </div> <div class="xf-form-container__content"> <div class="xf-form--container__content-header"> <div class="xf-form-container__logo"> <img src="/content/dam/raffles-aem/property-logos/logo-warsaw-large.svg" alt=""/> </div> <div class="xf-form-container__description"> <p>Thank you for your interest in Raffles Europejski Warsaw. </p> <p>Please would you kindly provide us with details of your request using the form below.</p> </div> <div class="contactstable__title contactstable__title--lg c-appeared"></div> <div class="contactstable__content c-appeared"> <ul class="contactstable__list c-appeared"> <li class="contactstable__item icon icon--phone"> <a href="tel:(+48)%2022%20255%2095%2000" class="contactstable__link">(+48) 22 255 95 00</a> </li> <li class="contactstable__item icon icon--envelope"> <a href="mailto:warsaw@raffles.com" class="contactstable__link">warsaw@raffles.com</a> </li> <li class="contactstable__item icon icon--map"> <a href="http://maps.google.com/?q=Krakowskie%20Przedmieście%2013%20%2000-071,%20Warsaw,%20Poland" class="contactstable__link" target="_blank">Krakowskie Przedmieście 13 00-071, Warsaw, Poland</a> </li> </ul> </div> </div> <div class="xf-form-container__form-message-successfully js-form-message-successfully"> <p>Thank you for stepping into our Raffles world. We look foward to being in touch.</p> </div> <form action="/xf/en/site/contact_forms/inquiry-warsaw/master/_jcr_content/root/xf_form.xf-form.html" method="post" class="js-send-flexible-form xf-form-container__form" data-site-key="6LchgrspAAAAAPR6LWXGjMgt1Z47ot1FdagFkduu"> <div class="popup-form-fieldset__title"></div> <div class="xf-form-container__form-field"> <label> <span class="label">Name</span> <input name="flexible_form_input_Name" data-error-message="This field is required " required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Email </span> <input name="flexible_form_input_EMAIL" data-error-message="This field is required " data-validation-message="Incorrect Email Format" data-custom-validation="email" required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Phone</span> <input name="flexible_form_input_PHONE" data-error-message="This field is required " data-validation-message="Incorrect Phone Format " data-custom-validation="phone" required="true"/> </label> </div> <div class="xf-form-container__form-field"> <label> <span class="label">Message</span> <textarea name="flexible_form_input_Message"></textarea> </label> </div> <div class="xf-form-container__form-field"> <label class="label-checkbox"> <input type="checkbox" name="flexible_form_input_"/> <span></span> <p>Please indicate you have read and agree to the <a href="https://all.accor.com/information/legal/data-protection.en.shtml?_gl=1*y9e5gv*_ga*MTEzOTE1OTU0NS4xNzA5MjQ5OTE1*_ga_CW6513Y003*MTcxMzM4NDIyMi4zLjAuMTcxMzM4NDIyMi4wLjAuMA..*_fplc*NDMlMkJVc002VmppJTJGZVJ1Nk1SJTJGQURoT2xLRXFsaTJubzVQVXBLaU4zcUtxcFJtS2NjNk15OHRqSnNKd1hXa00xcU1xSmRKeGhhVTE1SlI5VU43T05qblMzSnUlMkYzY0JBYXFuM29saHdJMGJHNjQlMkZTd204Z1IxY2tsWTdQcHZQdyUzRCUzRA..*_ga_KS93RBNSHZ*MTcxMzM4MDM1Ni4xMC4xLjE3MTMzODA0MjkuNjAuMC4w&_ga=2.103966144.1703033639.1713308324-1139159545.1709249915" target="_blank" rel="noopener noreferrer">privacy policy</a> of Raffles Hotels & Resorts. Your details are private and will never be shared with any third parties.</p> </label> </div> <div class="xf-form-container__form-control"> <div class="xf-form-container__form-message-error js-form-message-error"> <p>An error has occurred. Please try again later.</p> </div> <button name="" id="bt_submit" class="btn">Submit</button> </div> <div class="xf-form-container__form-field reCaptcha-info"> <p>The site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy" target="_blank" rel="noopener noreferrer">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.</p> </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://www.menumodo.com/app.php/viewer/outlet/11443/56242/only?lang=en&tags=s"> <span class="cmp-list__item-title ">Sustainability Statement</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/warsaw/standard-for-the-protection-of-minors/"> <span class="cmp-list__item-title ">Protection of Minors</span> </a> </li> </ul> </div> <div class="container responsivegrid property-footer-lvl1"> <div id="container-3c0ed6abb3" class="cmp-container"> <div class="signup"> <div class="newsletter_sign_up js-newsletter-sign-up"> <div class="text"> <div class="cmp-form-text"> <label for="newsletter_sign_up_input">Sign up for news from Raffles Europejski Warsaw</label> <input class="cmp-form-text__text js-newsletter-sign-up-input" data-cmp-hook-form-text="input" type="email" id="newsletter_sign_up_input" placeholder="Email Address" name="input_email" data-validation-message="Please enter a valid email address" data-error-message="Field cannot be empty"/> </div> </div> <div class="button"> <a type="button" href="" class="modal-trigger-open modal-validate-open js-newsletter-sign-btn" data-modal-id="#modal_38052024073809"> <span class="cmp-button__text"> Submit </span> </a> </div> </div> <div class="signup-form-newsletter-wrapper"> <div class="modal-b modal-b--full" id="modal_38052024073809" role="dialog" tabindex="0" aria-modal="true"> <div class="modal-backdrop modal-backdrop--no-close"></div> <div class="modal-wrapper"> <div class="modal-container"> <div class="xfpage page basicpage generic-page"> <div class="xf-content-height"> <div class="root container responsivegrid"> <div id="container-e4ab976548" class="cmp-container"> <div class="newsletter-property newsletter"> <div class="newsletter-from-b background-color__brand-teal" style="background: #C9DADC"> <div class="newsletter-from-close"> <a href="#" class="modal-trigger-close"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 12.5L20.9706 20.9706L21.6777 20.2635L13.2071 11.7929L20.9706 4.02939L20.2635 3.32228L12.5 11.0858L4.70718 3.29297L4.00008 4.00008L11.7929 11.7929L3.29297 20.2928L4.00008 21L12.5 12.5Z" fill="white"/></svg> <span>Close</span> </a> </div> <div class="newsletter-from-container"> <div class="newsletter-from-container__picture"> <div data-cmp-is="image" data-cmp-widths="575,991,1199,1920" data-cmp-dmimage data-cmp-src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=%7B.width%7D&ts=1713820288901&dpr=off" data-asset-id="b30a3fde-c541-4ec1-ae33-0ab42e6e995f" data-cmp-filereference="/content/dam/remote/brands/raf/hotels/europe/pl/warsaw/a7w6/aja_p_5921-73.jpg" id="image-57bf4576d0" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <img src="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&ts=1713820288901&dpr=off" srcset="https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=575&ts=1713820288901&dpr=off 575w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=991&ts=1713820288901&dpr=off 991w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1199&ts=1713820288901&dpr=off 1199w,https://m.ahstatic.com/is/image/accorhotels/aja_p_5921-73?qlt=82&wid=1920&ts=1713820288901&dpr=off 1920w" loading="lazy" class="cmp-image__image" itemprop="contentUrl" width="7383" height="4925" alt="Raffles Europejski Warsaw"/> </div> </div> <div class="newsletter-from-container__content"> <div class="newsletter-from-container__content-header"> <div class="newsletter-from-container__logo"> <img src="/content/dam/raffles-aem/property-logos/logo-warsaw-large.svg" alt=""/> </div> <div class="newsletter-from-container__title"> <h2><p>Newsletter Sign Up</p> </h2> </div> </div> <div class="newsletter-from-container__form-message-successfully js-form-message-successfully"> <p>Thank you for stepping into our Raffles world.</p> <p> We look forward to being in touch.<br /> </p> <p> </p> </div> <form action="/bin/components/newsletter/rfl?action=raffles-aem/components/form/newsletter-property" method="post" class="js-send-form newsletter-from-container__form" data-site-key="6LchgrspAAAAAPR6LWXGjMgt1Z47ot1FdagFkduu"> <div class="newsletter-from-container__form-field"> <label> <span class="label">Title</span> <select name="GUEST_TITLE" id="" required data-error-message="Field cannot be empty"> <option value="">Please select</option> <option value="MR">Mr</option> <option value="MRS">Mrs</option> <option value="MS">Ms</option> <option value="DOC">Dr</option> <option value="PRO">Prof</option> </select> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">First Name</span> <input type="text" name="FIRST_NAME" required data-error-message="Field cannot be empty"/> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Last Name</span> <input type="text" name="LAST_NAME" required data-error-message="Field cannot be empty"/> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Email Address</span> <input type="email" name="EMAIL_ADDRESS_" required data-validation-message="Please enter a valid email address" data-error-message="Field cannot be empty"/> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Language</span> <select name="LANGUAGE" id=""> <option value="en">English</option> <option value="pl">Polish</option> </select> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Country</span> <select name="COUNTRY_" id="" required data-error-message="Field cannot be empty"> <option disabled selected value></option> <option value="AX">Åland Islands</option> <option value="AL">Albania</option> <option value="DZ">Algeria</option> <option value="AS">American Samoa</option> <option value="AD">Andorra</option> <option value="AO">Angola</option> <option value="AI">Anguilla</option> <option value="AQ">Antarctica</option> <option value="AG">Antigua & Barbuda</option> <option value="AR">Argentina</option> <option value="AM">Armenia</option> <option value="AW">Aruba</option> <option value="AC">Ascension Island</option> <option value="AU">Australia</option> <option value="AT">Austria</option> <option value="AZ">Azerbaijan</option> <option value="BS">Bahamas</option> <option value="BH">Bahrain</option> <option value="BD">Bangladesh</option> <option value="BB">Barbados</option> <option value="BY">Belarus</option> <option value="BE">Belgium</option> <option value="BZ">Belize</option> <option value="BJ">Benin</option> <option value="BM">Bermuda</option> <option value="BT">Bhutan</option> <option value="BO">Bolivia</option> <option value="BA">Bosnia & Herzegovina</option> <option value="BW">Botswana</option> <option value="BV">Bouvet Island</option> <option value="BR">Brazil</option> <option value="IO">British Indian Ocean Territory</option> <option value="VG">British Virgin Islands</option> <option value="BN">Brunei</option> <option value="BG">Bulgaria</option> <option value="BF">Burkina Faso</option> <option value="BI">Burundi</option> <option value="KH">Cambodia</option> <option value="CM">Cameroon</option> <option value="CA">Canada</option> <option value="CV">Cape Verde</option> <option value="BQ">Caribbean Netherlands</option> <option value="KY">Cayman Islands</option> <option value="CF">Central African Republic</option> <option value="TD">Chad</option> <option value="CL">Chile</option> <option value="CX">Christmas Island</option> <option value="CC">Cocos (Keeling) Islands</option> <option value="CO">Colombia</option> <option value="KM">Comoros</option> <option value="CD">Congo (DRC)</option> <option value="CG">Congo (Republic)</option> <option value="CK">Cook Islands</option> <option value="CR">Costa Rica</option> <option value="CI">Côte d’Ivoire</option> <option value="HR">Croatia</option> <option value="CW">Curaçao</option> <option value="CY">Cyprus</option> <option value="CZ">Czech Republic</option> <option value="DK">Denmark</option> <option value="DJ">Djibouti</option> <option value="DM">Dominica</option> <option value="DO">Dominican Republic</option> <option value="EC">Ecuador</option> <option value="EG">Egypt</option> <option value="SV">El Salvador</option> <option value="GQ">Equatorial Guinea</option> <option value="ER">Eritrea</option> <option value="EE">Estonia</option> <option value="ET">Ethiopia</option> <option value="FK">Falkland Islands (Islas Malvinas)</option> <option value="FO">Faroe Islands</option> <option value="FJ">Fiji</option> <option value="FI">Finland</option> <option value="FR">France</option> <option value="GF">French Guiana</option> <option value="PF">French Polynesia</option> <option value="TF">French Southern Territories</option> <option value="GA">Gabon</option> <option value="GM">Gambia</option> <option value="GE">Georgia</option> <option value="DE">Germany</option> <option value="GH">Ghana</option> <option value="GI">Gibraltar</option> <option value="GR">Greece</option> <option value="GL">Greenland</option> <option value="GD">Grenada</option> <option value="GP">Guadeloupe</option> <option value="GU">Guam</option> <option value="GT">Guatemala</option> <option value="GG">Guernsey</option> <option value="GN">Guinea</option> <option value="GW">Guinea-Bissau</option> <option value="GY">Guyana</option> <option value="HT">Haiti</option> <option value="HM">Heard & McDonald Islands</option> <option value="HN">Honduras</option> <option value="HK">Hong Kong</option> <option value="HU">Hungary</option> <option value="IS">Iceland</option> <option value="IN">India</option> <option value="ID">Indonesia</option> <option value="IQ">Iraq</option> <option value="IE">Ireland</option> <option value="IM">Isle of Man</option> <option value="IL">Israel</option> <option value="IT">Italy</option> <option value="JM">Jamaica</option> <option value="JP">Japan</option> <option value="JE">Jersey</option> <option value="JO">Jordan</option> <option value="KZ">Kazakhstan</option> <option value="KE">Kenya</option> <option value="KI">Kiribati</option> <option value="XK">Kosovo</option> <option value="KW">Kuwait</option> <option value="KG">Kyrgyzstan</option> <option value="LA">Laos</option> <option value="LV">Latvia</option> <option value="LB">Lebanon</option> <option value="LS">Lesotho</option> <option value="LR">Liberia</option> <option value="LY">Libya</option> <option value="LI">Liechtenstein</option> <option value="LT">Lithuania</option> <option value="LU">Luxembourg</option> <option value="MO">Macau</option> <option value="MK">North Macedonia</option> <option value="MG">Madagascar</option> <option value="MW">Malawi</option> <option value="MY">Malaysia</option> <option value="MV">Maldives</option> <option value="ML">Mali</option> <option value="MT">Malta</option> <option value="MH">Marshall Islands</option> <option value="MQ">Martinique</option> <option value="MR">Mauritania</option> <option value="MU">Mauritius</option> <option value="YT">Mayotte</option> <option value="MX">Mexico</option> <option value="FM">Micronesia</option> <option value="MD">Moldova</option> <option value="MC">Monaco</option> <option value="MN">Mongolia</option> <option value="ME">Montenegro</option> <option value="MS">Montserrat</option> <option value="MA">Morocco</option> <option value="MZ">Mozambique</option> <option value="MM">Myanmar (Burma)</option> <option value="NA">Namibia</option> <option value="NR">Nauru</option> <option value="NP">Nepal</option> <option value="NL">Netherlands</option> <option value="NC">New Caledonia</option> <option value="NZ">New Zealand</option> <option value="NI">Nicaragua</option> <option value="NE">Niger</option> <option value="NG">Nigeria</option> <option value="NU">Niue</option> <option value="NF">Norfolk Island</option> <option value="MP">Northern Mariana Islands</option> <option value="NO">Norway</option> <option value="OM">Oman</option> <option value="PK">Pakistan</option> <option value="PW">Palau</option> <option value="PS">Palestine</option> <option value="PA">Panama</option> <option value="PG">Papua New Guinea</option> <option value="PY">Paraguay</option> <option value="PE">Peru</option> <option value="PH">Philippines</option> <option value="PN">Pitcairn Islands</option> <option value="PL">Poland</option> <option value="PT">Portugal</option> <option value="PR">Puerto Rico</option> <option value="QA">Qatar</option> <option value="RE">Réunion</option> <option value="RO">Romania</option> <option value="RU">Russia</option> <option value="RW">Rwanda</option> <option value="WS">Samoa</option> <option value="SM">San Marino</option> <option value="ST">São Tomé & Príncipe</option> <option value="SA">Saudi Arabia</option> <option value="SN">Senegal</option> <option value="RS">Serbia</option> <option value="SC">Seychelles</option> <option value="SL">Sierra Leone</option> <option value="SG">Singapore</option> <option value="SX">Sint Maarten</option> <option value="SK">Slovakia</option> <option value="SI">Slovenia</option> <option value="SB">Solomon Islands</option> <option value="SO">Somalia</option> <option value="ZA">South Africa</option> <option value="GS">South Georgia & South Sandwich Islands</option> <option value="KR">South Korea</option> <option value="SS">South Sudan</option> <option value="ES">Spain</option> <option value="LK">Sri Lanka</option> <option value="BL">St. Barthélemy</option> <option value="SH">St. Helena</option> <option value="KN">St. Kitts & Nevis</option> <option value="LC">St. Lucia</option> <option value="MF">St. Martin</option> <option value="PM">St. Pierre & Miquelon</option> <option value="VC">St. Vincent & Grenadines</option> <option value="SR">Suriname</option> <option value="SJ">Svalbard & Jan Mayen</option> <option value="SZ">Swaziland</option> <option value="SE">Sweden</option> <option value="CH">Switzerland</option> <option value="TW">Taiwan</option> <option value="TJ">Tajikistan</option> <option value="TZ">Tanzania</option> <option value="TH">Thailand</option> <option value="TL">Timor-Leste</option> <option value="TG">Togo</option> <option value="TK">Tokelau</option> <option value="TO">Tonga</option> <option value="TT">Trinidad & Tobago</option> <option value="TA">Tristan da Cunha</option> <option value="TN">Tunisia</option> <option value="TR">Turkey</option> <option value="TM">Turkmenistan</option> <option value="TC">Turks & Caicos Islands</option> <option value="TV">Tuvalu</option> <option value="UM">U.S. Outlying Islands</option> <option value="VI">U.S. Virgin Islands</option> <option value="UG">Uganda</option> <option value="UA">Ukraine</option> <option value="AE">United Arab Emirates</option> <option value="GB">United Kingdom</option> <option value="US">United States</option> <option value="UY">Uruguay</option> <option value="UZ">Uzbekistan</option> <option value="VU">Vanuatu</option> <option value="VA">Vatican City</option> <option value="VE">Venezuela</option> <option value="VN">Vietnam</option> <option value="WF">Wallis & Futuna</option> <option value="EH">Western Sahara</option> <option value="YE">Yemen</option> <option value="ZM">Zambia</option> <option value="ZW">Zimbabwe</option> </select> </label> </div> <div class="newsletter-from-container__form-field"> <label class="label-checkbox"> <input type="checkbox" name="newsletter[privacy]" required data-error-message="Please check the box"/> <span></span> <p>Please indicate you have read and agree to the <a href="https://all.accor.com/information/legal/data-protection.en.shtml" target="_blank" rel="noopener noreferrer">privacy policy</a> of Raffles Hotels & Resorts. Your details are private to Raffles. You can unsubscribe at any time. </p> </label> </div> <div class="newsletter-from-container__form-control"> <div class="newsletter-from-container__form-message-error js-form-message-error"> <p>An error has occurred. Please try again later.</p> </div> <button name="" id="bt_submit" class="btn">Submit</button> </div> <div class="newsletter-from-container__form-field reCaptcha-info"> This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy" target="_blank" rel="noopener noreferrer"><strong>Privacy Policy</strong></a> and <a href="https://policies.google.com/terms" target="_blank" rel="noopener noreferrer"><strong>Terms of Service</strong></a> apply. </div> <input type="hidden" name="HOTEL_OPTIN" value="RWW"/> <input type="hidden" name="_ri_" value="X0Gzc2X%3DAQjkPkSSRQGXCNuzbuBzfhry8J1OzepzbyzaNOWHdIyBmIeRezfhp4yuzefVwjpnpgHlpgneHmgJoXX0Gzc2X%3DAQjkPkSSRQG1T0uPfSuErMlzgTzaefeSfbRWHdIyBmIeRezfhp4yuzef"/> <input type="hidden" name="_ei_" value="EOjXWcI6YHfuoKvXc1R6b5o"/> <input type="hidden" name="_di_" value="drfgotbd6jtfejg5gf4vdjik8iafgktvakkcjrktsts7ijvlj310"/> <input type="hidden" name="EMAIL_PERMISSION_STATUS_" value="i"/> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div></div> <div class="sociallinks"> <div class="raffles-footer-icon hide-on-desktop hide-on-tablet hide-on-mobile c-appeared"> <ul class="raffles-footer-icon__list"> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="Instagram opens in a new window" target="_blank" href="https://www.instagram.com/raffleseuropejski/"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/Instagram.svg" alt="Instagram"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="Facebook opens in a new window" target="_blank" href="https://www.facebook.com/raffleseuropejski"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/Facebook.svg" alt="Facebook"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="Twitter opens in a new window" target="_blank" href="https://twitter.com/raffleshotels"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/x-social.svg" alt="Twitter"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="LinkedIn opens in a new window" target="_blank" href="https://www.linkedin.com/company/raffles-europejski-warsaw"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/LinkedIn.svg" alt="LinkedIn"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="YouTube opens in a new window" target="_blank" href="https://www.youtube.com/@raffleseuropejskiwarsaw"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/YouTube.svg" alt="YouTube"/> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="experiencefragment aem-GridColumn aem-GridColumn--default--12"> <div id="experiencefragment-cd3de6af2b" class="cmp-experiencefragment cmp-experiencefragment--main-footer"> <div class="xf-content-height"> <div class="root container responsivegrid main-footer"> <div id="container-40a3bc6917" class="cmp-container" style="background-color:#0C1F1E;"> <div class="container responsivegrid main-footer-lvl1"> <div id="container-960aae9996" class="cmp-container"> <div class="container responsivegrid"> <div id="container-1b6efe8d21" class="cmp-container"> <div class="container responsivegrid"> <div id="main-footer-logo" class="cmp-container"> </div> </div> <div class="container responsivegrid"> <div id="main-footer-contacts" class="cmp-container"> <div class="title"> <div id="title-2fcef8bb8b" class="cmp-title"> <h2 class="cmp-title__text">Raffles Hotels & Resorts</h2> </div> </div> <div class="signup"> <div class="newsletter_sign_up js-newsletter-sign-up"> <div class="text"> <div class="cmp-form-text"> <label for="newsletter_sign_up_input">Keep in touch with Raffles</label> <input class="cmp-form-text__text js-newsletter-sign-up-input" data-cmp-hook-form-text="input" type="email" id="newsletter_sign_up_input" placeholder="Email Address" name="input_email" data-validation-message="Please enter a valid email address" data-error-message="Field cannot be empty"/> </div> </div> <div class="button"> <a type="button" href="" class="modal-trigger-open modal-validate-open js-newsletter-sign-btn" data-modal-id="#modal_23232024102328"> <span class="cmp-button__text"> Submit </span> </a> </div> </div> <div class="signup-form-newsletter-wrapper"> <div class="modal-b modal-b--full" id="modal_23232024102328" role="dialog" tabindex="0" aria-modal="true"> <div class="modal-backdrop modal-backdrop--no-close"></div> <div class="modal-wrapper"> <div class="modal-container"> <div class="xfpage page basicpage"> <div class="xf-content-height"> <div class="root container responsivegrid"> <div id="container-e5cb43333c" class="cmp-container"> <div class="newsletter"> <div class="newsletter-from-b background-color__brand-primary" style="background: #0C1F1E"> <div class="newsletter-from-close"> <a href="#" class="modal-trigger-close"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.5 12.5L20.9706 20.9706L21.6777 20.2635L13.2071 11.7929L20.9706 4.02939L20.2635 3.32228L12.5 11.0858L4.70718 3.29297L4.00008 4.00008L11.7929 11.7929L3.29297 20.2928L4.00008 21L12.5 12.5Z" fill="white"/></svg> <span>close</span> </a> </div> <div class="newsletter-from-container"> <div class="newsletter-from-container__picture"> <div data-cmp-is="image" data-cmp-widths="575,991,1199,1920" data-cmp-dmimage data-cmp-src="https://m.ahstatic.com/is/image/accorhotels/aja_p_6549-22?qlt=82&wid=%7B.width%7D&ts=1713801122845&dpr=off" data-asset-id="e8c23396-2a48-4ddb-84af-36cf0a40fe54" data-cmp-filereference="/content/dam/remote/brands/raf/hotels/europe/gb/london/b1c0/aja_p_6549-22.jpg" id="image-d78553c0e0" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <img src="https://m.ahstatic.com/is/image/accorhotels/aja_p_6549-22?qlt=82&ts=1713801122845&dpr=off" srcset="https://m.ahstatic.com/is/image/accorhotels/aja_p_6549-22?qlt=82&wid=575&ts=1713801122845&dpr=off 575w,https://m.ahstatic.com/is/image/accorhotels/aja_p_6549-22?qlt=82&wid=991&ts=1713801122845&dpr=off 991w,https://m.ahstatic.com/is/image/accorhotels/aja_p_6549-22?qlt=82&wid=1199&ts=1713801122845&dpr=off 1199w,https://m.ahstatic.com/is/image/accorhotels/aja_p_6549-22?qlt=82&wid=1920&ts=1713801122845&dpr=off 1920w" loading="lazy" class="cmp-image__image" itemprop="contentUrl" width="3700" height="3700" alt="Raffles London at The OWO - United Kingdom"/> </div> </div> <div class="newsletter-from-container__content"> <div class="newsletter-from-container__content-header"> <div class="newsletter-from-container__logo"> <img src="/content/dam/raffles-aem/property-logos/logo-brand-small.svg" alt=""/> </div> <div class="newsletter-from-container__title"> <h4><p>Newsletter Sign Up</p> </h4> </div> </div> <div class="newsletter-from-container__form-message-successfully js-form-message-successfully"> <p>Thank you for stepping into our Raffles world. </p> <p>We look forward to being in touch.</p> </div> <form action="/bin/components/newsletter/rfl?action=raffles-aem/components/form/newsletter" method="post" class="js-send-form newsletter-from-container__form" data-site-key="6LchgrspAAAAAPR6LWXGjMgt1Z47ot1FdagFkduu"> <div class="newsletter-from-container__form-field"> <label> <span class="label">Title</span> <select name="title" id="" required data-error-message="Field cannot be empty"> <option value="">Please select</option> <option value="MR">Mr</option> <option value="MRS">Mrs</option> <option value="MS">Ms</option> <option value="DOC">Dr</option> <option value="PRO">Prof</option> </select> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">First Name</span> <input type="text" name="firstName" required data-error-message="Field cannot be empty"/> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Last Name</span> <input type="text" name="lastName" required data-error-message="Field cannot be empty"/> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Email Address</span> <input type="email" name="email" required data-validation-message="Please enter a valid email address" data-error-message="Field cannot be empty"/> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Language</span> <select name="language" id=""> <option value="en">English</option> <option value="fr">French</option> <option value="de">German</option> <option value="ja">Japanese</option> <option value="zh">Chinese</option> <option value="es">Spanish</option> <option value="tr">Turkish</option> </select> </label> </div> <div class="newsletter-from-container__form-field"> <label> <span class="label">Country</span> <select name="country" id="" required data-error-message="Field cannot be empty"> <option disabled selected value></option> <option value="AX">Åland Islands</option> <option value="AL">Albania</option> <option value="DZ">Algeria</option> <option value="AS">American Samoa</option> <option value="AD">Andorra</option> <option value="AO">Angola</option> <option value="AI">Anguilla</option> <option value="AQ">Antarctica</option> <option value="AG">Antigua & Barbuda</option> <option value="AR">Argentina</option> <option value="AM">Armenia</option> <option value="AW">Aruba</option> <option value="AC">Ascension Island</option> <option value="AU">Australia</option> <option value="AT">Austria</option> <option value="AZ">Azerbaijan</option> <option value="BS">Bahamas</option> <option value="BH">Bahrain</option> <option value="BD">Bangladesh</option> <option value="BB">Barbados</option> <option value="BY">Belarus</option> <option value="BE">Belgium</option> <option value="BZ">Belize</option> <option value="BJ">Benin</option> <option value="BM">Bermuda</option> <option value="BT">Bhutan</option> <option value="BO">Bolivia</option> <option value="BA">Bosnia & Herzegovina</option> <option value="BW">Botswana</option> <option value="BV">Bouvet Island</option> <option value="BR">Brazil</option> <option value="IO">British Indian Ocean Territory</option> <option value="VG">British Virgin Islands</option> <option value="BN">Brunei</option> <option value="BG">Bulgaria</option> <option value="BF">Burkina Faso</option> <option value="BI">Burundi</option> <option value="KH">Cambodia</option> <option value="CM">Cameroon</option> <option value="CA">Canada</option> <option value="CV">Cape Verde</option> <option value="BQ">Caribbean Netherlands</option> <option value="KY">Cayman Islands</option> <option value="CF">Central African Republic</option> <option value="TD">Chad</option> <option value="CL">Chile</option> <option value="CX">Christmas Island</option> <option value="CC">Cocos (Keeling) Islands</option> <option value="CO">Colombia</option> <option value="KM">Comoros</option> <option value="CD">Congo (DRC)</option> <option value="CG">Congo (Republic)</option> <option value="CK">Cook Islands</option> <option value="CR">Costa Rica</option> <option value="CI">Côte d’Ivoire</option> <option value="HR">Croatia</option> <option value="CW">Curaçao</option> <option value="CY">Cyprus</option> <option value="CZ">Czech Republic</option> <option value="DK">Denmark</option> <option value="DJ">Djibouti</option> <option value="DM">Dominica</option> <option value="DO">Dominican Republic</option> <option value="EC">Ecuador</option> <option value="EG">Egypt</option> <option value="SV">El Salvador</option> <option value="GQ">Equatorial Guinea</option> <option value="ER">Eritrea</option> <option value="EE">Estonia</option> <option value="ET">Ethiopia</option> <option value="FK">Falkland Islands (Islas Malvinas)</option> <option value="FO">Faroe Islands</option> <option value="FJ">Fiji</option> <option value="FI">Finland</option> <option value="FR">France</option> <option value="GF">French Guiana</option> <option value="PF">French Polynesia</option> <option value="TF">French Southern Territories</option> <option value="GA">Gabon</option> <option value="GM">Gambia</option> <option value="GE">Georgia</option> <option value="DE">Germany</option> <option value="GH">Ghana</option> <option value="GI">Gibraltar</option> <option value="GR">Greece</option> <option value="GL">Greenland</option> <option value="GD">Grenada</option> <option value="GP">Guadeloupe</option> <option value="GU">Guam</option> <option value="GT">Guatemala</option> <option value="GG">Guernsey</option> <option value="GN">Guinea</option> <option value="GW">Guinea-Bissau</option> <option value="GY">Guyana</option> <option value="HT">Haiti</option> <option value="HM">Heard & McDonald Islands</option> <option value="HN">Honduras</option> <option value="HK">Hong Kong</option> <option value="HU">Hungary</option> <option value="IS">Iceland</option> <option value="IN">India</option> <option value="ID">Indonesia</option> <option value="IQ">Iraq</option> <option value="IE">Ireland</option> <option value="IM">Isle of Man</option> <option value="IL">Israel</option> <option value="IT">Italy</option> <option value="JM">Jamaica</option> <option value="JP">Japan</option> <option value="JE">Jersey</option> <option value="JO">Jordan</option> <option value="KZ">Kazakhstan</option> <option value="KE">Kenya</option> <option value="KI">Kiribati</option> <option value="XK">Kosovo</option> <option value="KW">Kuwait</option> <option value="KG">Kyrgyzstan</option> <option value="LA">Laos</option> <option value="LV">Latvia</option> <option value="LB">Lebanon</option> <option value="LS">Lesotho</option> <option value="LR">Liberia</option> <option value="LY">Libya</option> <option value="LI">Liechtenstein</option> <option value="LT">Lithuania</option> <option value="LU">Luxembourg</option> <option value="MO">Macau</option> <option value="MK">North Macedonia</option> <option value="MG">Madagascar</option> <option value="MW">Malawi</option> <option value="MY">Malaysia</option> <option value="MV">Maldives</option> <option value="ML">Mali</option> <option value="MT">Malta</option> <option value="MH">Marshall Islands</option> <option value="MQ">Martinique</option> <option value="MR">Mauritania</option> <option value="MU">Mauritius</option> <option value="YT">Mayotte</option> <option value="MX">Mexico</option> <option value="FM">Micronesia</option> <option value="MD">Moldova</option> <option value="MC">Monaco</option> <option value="MN">Mongolia</option> <option value="ME">Montenegro</option> <option value="MS">Montserrat</option> <option value="MA">Morocco</option> <option value="MZ">Mozambique</option> <option value="MM">Myanmar (Burma)</option> <option value="NA">Namibia</option> <option value="NR">Nauru</option> <option value="NP">Nepal</option> <option value="NL">Netherlands</option> <option value="NC">New Caledonia</option> <option value="NZ">New Zealand</option> <option value="NI">Nicaragua</option> <option value="NE">Niger</option> <option value="NG">Nigeria</option> <option value="NU">Niue</option> <option value="NF">Norfolk Island</option> <option value="MP">Northern Mariana Islands</option> <option value="NO">Norway</option> <option value="OM">Oman</option> <option value="PK">Pakistan</option> <option value="PW">Palau</option> <option value="PS">Palestine</option> <option value="PA">Panama</option> <option value="PG">Papua New Guinea</option> <option value="PY">Paraguay</option> <option value="PE">Peru</option> <option value="PH">Philippines</option> <option value="PN">Pitcairn Islands</option> <option value="PL">Poland</option> <option value="PT">Portugal</option> <option value="PR">Puerto Rico</option> <option value="QA">Qatar</option> <option value="RE">Réunion</option> <option value="RO">Romania</option> <option value="RU">Russia</option> <option value="RW">Rwanda</option> <option value="WS">Samoa</option> <option value="SM">San Marino</option> <option value="ST">São Tomé & Príncipe</option> <option value="SA">Saudi Arabia</option> <option value="SN">Senegal</option> <option value="RS">Serbia</option> <option value="SC">Seychelles</option> <option value="SL">Sierra Leone</option> <option value="SG">Singapore</option> <option value="SX">Sint Maarten</option> <option value="SK">Slovakia</option> <option value="SI">Slovenia</option> <option value="SB">Solomon Islands</option> <option value="SO">Somalia</option> <option value="ZA">South Africa</option> <option value="GS">South Georgia & South Sandwich Islands</option> <option value="KR">South Korea</option> <option value="SS">South Sudan</option> <option value="ES">Spain</option> <option value="LK">Sri Lanka</option> <option value="BL">St. Barthélemy</option> <option value="SH">St. Helena</option> <option value="KN">St. Kitts & Nevis</option> <option value="LC">St. Lucia</option> <option value="MF">St. Martin</option> <option value="PM">St. Pierre & Miquelon</option> <option value="VC">St. Vincent & Grenadines</option> <option value="SR">Suriname</option> <option value="SJ">Svalbard & Jan Mayen</option> <option value="SZ">Swaziland</option> <option value="SE">Sweden</option> <option value="CH">Switzerland</option> <option value="TW">Taiwan</option> <option value="TJ">Tajikistan</option> <option value="TZ">Tanzania</option> <option value="TH">Thailand</option> <option value="TL">Timor-Leste</option> <option value="TG">Togo</option> <option value="TK">Tokelau</option> <option value="TO">Tonga</option> <option value="TT">Trinidad & Tobago</option> <option value="TA">Tristan da Cunha</option> <option value="TN">Tunisia</option> <option value="TR">Turkey</option> <option value="TM">Turkmenistan</option> <option value="TC">Turks & Caicos Islands</option> <option value="TV">Tuvalu</option> <option value="UM">U.S. Outlying Islands</option> <option value="VI">U.S. Virgin Islands</option> <option value="UG">Uganda</option> <option value="UA">Ukraine</option> <option value="AE">United Arab Emirates</option> <option value="GB">United Kingdom</option> <option value="US">United States</option> <option value="UY">Uruguay</option> <option value="UZ">Uzbekistan</option> <option value="VU">Vanuatu</option> <option value="VA">Vatican City</option> <option value="VE">Venezuela</option> <option value="VN">Vietnam</option> <option value="WF">Wallis & Futuna</option> <option value="EH">Western Sahara</option> <option value="YE">Yemen</option> <option value="ZM">Zambia</option> <option value="ZW">Zimbabwe</option> </select> </label> </div> <div class="newsletter-from-container__form-field"> <label class="label-checkbox"> <input type="checkbox" name="newsletter[privacy]" required data-error-message="Please check the box"/> <span></span> <p>Please indicate you have read and agree to the <a href="https://all.accor.com/information/legal/data-protection.en.shtml" target="_blank" title="alt" rel="noopener noreferrer">privacy policy</a> of Raffles Hotels & Resorts. Your details are private to Raffles. You can unsubscribe at any time. </p> </label> </div> <div class="newsletter-from-container__form-control"> <div class="newsletter-from-container__form-message-error js-form-message-error"> <p>We're sorry, there was an error submitting the form.</p> <p> Please enter your information and try again.</p> </div> <button name="" id="bt_submit" class="btn">submit</button> </div> <div class="newsletter-from-container__form-field reCaptcha-info"> This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy" target="_blank" rel="noopener noreferrer"><strong>Privacy Policy</strong></a> and <a href="https://policies.google.com/terms" target="_blank" rel="noopener noreferrer"><strong>Terms of Service</strong></a> apply. </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div></div> <div class="sociallinks"> <div class="raffles-footer-icon c-appeared"> <ul class="raffles-footer-icon__list"> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="Instagram opens in a new window" target="_blank" href="https://www.instagram.com/raffleshotels/"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/Instagram.svg" alt="Instagram"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="Facebook opens in a new window" target="_blank" href="https://www.facebook.com/RafflesHotels/"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/Facebook.svg" alt="Facebook"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="Twitter opens in a new window" target="_blank" href="https://twitter.com/raffleshotels"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/x-social.svg" alt="Twitter"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="LinkedIn opens in a new window" target="_blank" href="https://fr.linkedin.com/company/raffles-hotels-&-resorts"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/LinkedIn.svg" alt="LinkedIn"/> </a> </li> <li class="raffles-footer-icon__list--item"> <a class="raffles-footer-icon__list--item--link" aria-label="YouTube opens in a new window" target="_blank" href="https://www.youtube.com/user/raffleshotels/featured"> <img class="raffles-footer-icon__list--item--image" src="/content/dam/raffles-aem/social-icons/YouTube.svg" alt="YouTube"/> </a> </li> </ul> </div> </div> </div> </div> </div> </div> <div class="container responsivegrid"> <div id="container-c6137993d3" class="cmp-container"> <div class="container responsivegrid"> <div id="container-099b726eab" class="cmp-container"> <div class="title"> <div id="title-87bcd340a3" class="cmp-title"> <h2 class="cmp-title__text">Explore</h2> </div> </div> <div class="list"> <ul class="cmp-list"> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="https://www.raffles.com/magazine/"> <span class="cmp-list__item-title ">Raffles 1887</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://press.accor.com/press-releases/?lang=en"> <span class="cmp-list__item-title ">Press Room </span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/explore-nav/careers/"> <span class="cmp-list__item-title ">Careers</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://giftcards.raffles.com/"> <span class="cmp-list__item-title ">Boutique</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://giftcards.raffles.com/pages/giftcard-global"> <span class="cmp-list__item-title ">Gift Cards</span> </a> </li> </ul> </div> </div> </div> <div class="container responsivegrid"> <div id="container-2def4c33d7" class="cmp-container"> <div class="title"> <div id="title-5acff528f5" class="cmp-title"> <h2 class="cmp-title__text">Connect</h2> </div> </div> <div class="list"> <ul class="cmp-list"> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/loyalty/"> <span class="cmp-list__item-title ">Loyalty</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/travel-advisors/"> <span class="cmp-list__item-title ">Travel Advisors</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/contact-us/"> <span class="cmp-list__item-title ">Contact</span> </a> </li> </ul> </div> </div> </div> <div class="container responsivegrid"> <div id="container-a1b45f3a22" class="cmp-container"> <div class="title"> <div id="title-d7def70777" class="cmp-title"> <h2 class="cmp-title__text">Links</h2> </div> </div> <div class="list"> <ul class="cmp-list"> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/legal/terms-of-use/"> <span class="cmp-list__item-title ">Terms of Use</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" target="_blank" href="https://all.accor.com/information/legal/data-protection.en.shtml"> <span class="cmp-list__item-title ">Privacy Policy</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="#ot-sdk-show-settings"> <span class="cmp-list__item-title ">Cookies</span> </a> </li> <li class="cmp-list__item"> <a class="cmp-list__item-link" href="/legal/accessibility/"> <span class="cmp-list__item-title ">Accessibility</span> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="separator main-footer--separator"> <div id="separator-7af4828beb" class="cmp-separator"> <hr class="cmp-separator__horizontal-rule"/> </div></div> <div class="container responsivegrid main-footer-lvl2"> <div id="container-875e052ed0" class="cmp-container"> <div class="container responsivegrid"> <div id="container-916e8d875f" class="cmp-container"> <div class="image"> <div data-cmp-is="image" data-cmp-src="/content/experience-fragments/raffles-aem/en/site/main-footer/master/_jcr_content/root/container_2042126694_38111730/container_copy/image.coreimg{.width}.svg/1695304279527/accor-logo.svg" data-asset-id="6b67c536-5785-45c3-bbeb-7c59256e28e0" data-cmp-filereference="/content/dam/raffles-aem/social-icons/accor_logo.svg" id="image-ac861a253c" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <a class="cmp-image__link" href="https://all.accor.com/usa/index.en.shtml" target="_blank"> <img src="/content/experience-fragments/raffles-aem/en/site/main-footer/master/_jcr_content/root/container_2042126694_38111730/container_copy/image.coreimg.svg/1695304279527/accor-logo.svg" loading="lazy" class="cmp-image__image" itemprop="contentUrl" width="150" height="59" alt="accor logo"/> </a> </div> </div> </div> </div> <div class="container responsivegrid"> <div id="container-d027338e79" class="cmp-container"> <div class="title"> <div id="get-the-app-title" class="cmp-title"> <h3 class="cmp-title__text">GET THE APP</h3> </div> </div> <div class="text"> <div id="text-1897adc006" class="cmp-text"> <p>The best trip is the one we haven't taken yet... Find it on Accor ALL App on Apple store and Google Play.</p> </div> </div> </div> </div> <div class="container responsivegrid"> <div id="container-46d4e3e036" class="cmp-container"> <div class="image"> <div data-cmp-is="image" data-cmp-src="/content/experience-fragments/raffles-aem/en/site/main-footer/master/_jcr_content/root/container_2042126694_38111730/container/image.coreimg{.width}.svg/1720442485074/google-badge-sm.svg" data-asset-id="ef4a54bd-f9d1-4570-bfa0-84dcf6351f86" data-cmp-filereference="/content/dam/raffles-aem/social-icons/google-badge-sm.svg" id="image-ac5b13e430" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <a class="cmp-image__link" href="https://play.google.com/store/apps/details?id=com.accor.appli.hybrid&hl=en&gl=US" target="_blank"> <img src="/content/experience-fragments/raffles-aem/en/site/main-footer/master/_jcr_content/root/container_2042126694_38111730/container/image.coreimg.svg/1720442485074/google-badge-sm.svg" loading="lazy" class="cmp-image__image" itemprop="contentUrl" alt="google play"/> </a> </div> </div> <div class="image"> <div data-cmp-is="image" data-cmp-src="/content/experience-fragments/raffles-aem/en/site/main-footer/master/_jcr_content/root/container_2042126694_38111730/container/image_408870243.coreimg{.width}.svg/1720442507044/apple-badge-sm.svg" data-asset-id="1a52a821-e897-4116-9992-a3becfe3a0ab" data-cmp-filereference="/content/dam/raffles-aem/social-icons/apple-badge-sm.svg" id="image-80d313ef35" data-cmp-hook-image="imageV3" class="cmp-image" itemscope itemtype="http://schema.org/ImageObject"> <a class="cmp-image__link" href="https://apps.apple.com/us/app/accor-all-hotel-booking/id489472613" target="_blank"> <img src="/content/experience-fragments/raffles-aem/en/site/main-footer/master/_jcr_content/root/container_2042126694_38111730/container/image_408870243.coreimg.svg/1720442507044/apple-badge-sm.svg" loading="lazy" class="cmp-image__image" itemprop="contentUrl" alt="app store"/> </a> </div> </div> </div> </div> </div> </div> <div class="separator main-footer--separator"> <div id="separator-070fdad267" class="cmp-separator"> <hr class="cmp-separator__horizontal-rule"/> </div></div> <div class="container responsivegrid main-footer-lvl3"> <div id="container-85aa714d56" class="cmp-container"> <div class="logosslider"> </div> </div> </div> <div class="separator main-footer--separator"> <div id="separator-3b049ccf1e" class="cmp-separator"> <hr class="cmp-separator__horizontal-rule"/> </div></div> </div> </div> </div> </div> </div> </div> </div> </div> <script async src="/etc.clientlibs/core/wcm/components/commons/site/clientlibs/container.lc-0a6aff292f5cc42142779cde92054524-lc.min.js"></script> <script async src="/etc.clientlibs/raffles-aem/clientlibs/clientlib-base.lc-2aeb574daeec36096cdd4aefa8dbbb19-lc.min.js"></script> <script> const pageData = getPageData(); const domain = "https:\/\/newbooking.azds.com"; const urlProfile = domain + '/oauth2/destination/raffles/accor/profile'; if (!window.location.href.includes('/booking/')) { getUserData(); } window.addEventListener('DOMContentLoaded', () => { const pageName = pageData.page_name; const headerMenu = document.querySelector('.header-menu'); const headerPropertyMenu = document.querySelector('.header__property-menu'); const headerLeftMenu = document.querySelectorAll('.header-menu__nav'); const headerControls = document.querySelector('.header__column--controls'); const authDropdowns = document.querySelectorAll('.header__dropdown--no-auth'); const mobileAuthBlock = document.querySelector('.header__mobile-item--auth'); const reserveBtn = document.querySelectorAll('.js-g-reserve-btn'); const bookingBtn = document.querySelectorAll('.header__booking-link'); const linkGift = document.querySelectorAll('a[href*="giftcards.raffles.com"]'); const linkArticleSideMenu = document.querySelectorAll('.blog-post-heading__tags-link'); const linkBlogFiltersMenu = document.querySelectorAll('.blog-filters .blog-items .blog-link'); const linkBlogFiltersMenuMobile = document.querySelectorAll('.blog-filters .blog-dropdown__inner .blog-link'); const linkBlogFiltersMenuLocation = document.querySelectorAll('.blog-filters .blog-dropdown__inner .blog-dropdown__link'); const linkBlogShowMore = document.querySelectorAll('.blog-load-more'); const linkBlogBreadcrumb = document.querySelectorAll('.blog-introbox .cmp-breadcrumb__list .cmp-breadcrumb__item'); const linkBlogDiscover = document.querySelectorAll('.blog-page .callout .callout__link, .blog-page .highlight .link'); const signUpSubmit = document.querySelectorAll('.js-newsletter-sign-btn'); const signUpSubmitForm = document.querySelectorAll('.js-send-form button.btn'); const linkAccommodations = document.querySelectorAll('.callout__link, .callout__wraplink'); blogDescriptionDiscoverListener(pageName, linkBlogDiscover) blogArticleLinkListener(pageName); blogBreadcrumbLinkListener(pageName, linkBlogBreadcrumb); blogLinkShowMoreListener(pageName, linkBlogShowMore); blogFiltersMenuLinkListener(pageName, linkBlogFiltersMenu); blogFiltersMenuLinkListener(pageName, linkBlogFiltersMenuMobile); blogFiltersMenuLinkListener(pageName, linkBlogFiltersMenuLocation); articleSideMenuLinkListener(pageName, linkArticleSideMenu); giftLinkListener(pageName, linkGift); singUpSubmitListener(pageName, signUpSubmit) singUpSubmitFormListener(pageName, signUpSubmitForm) headerMenuObserver(headerMenu, pageName); headerPropertyMenuInteractListener(headerPropertyMenu, pageName); headerLeftMenuInteractListener(headerLeftMenu, pageName); headerControlsInteractListener(headerControls, pageName); mobileAuthBlockListener(mobileAuthBlock, pageName); authDropdownsLinksListener(authDropdowns, pageName); reserveBtnListener(pageName, reserveBtn); bookingBtnListener(pageName, bookingBtn); accommodationsLinkListener(pageName, linkAccommodations) if (window.location.pathname.includes('home') || window.location.pathname === '/') { const hotelsLinks = document.querySelectorAll('[href$="/hotels-resorts/"]'); hotelsLinksListener(hotelsLinks, pageName); } }); function hotelsLinksListener(hotelsLinks, pageName) { if (hotelsLinks) { hotelsLinks.forEach((link) => { if (link.closest('.header-menu') === null) { link.addEventListener('click', () => { pushFindHotelEvent(pageName, link.textContent); }); } }); } } function pushFindHotelEvent(pageName, blocInteraction) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': 'find a hotel', 'bloc_interaction': blocInteraction.toLowerCase() } }); } function reserveBtnListener(pageName, btn) { if (btn) { btn.forEach((link) => { link.addEventListener('click', () => { pushReserveBtnEvent(pageName, link.textContent); }); }); } } function pushReserveBtnEvent(pageName, blocInteraction) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': 'book now - inpage', 'bloc_interaction': blocInteraction.toLowerCase() } }); } function bookingBtnListener(pageName, btn) { if (btn) { btn.forEach((link) => { link.addEventListener('click', () => { pushBookingBtnEvent(pageName, link.textContent); }); }); } } function pushBookingBtnEvent(pageName, blocInteraction) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': 'book now - inpage', 'bloc_interaction': blocInteraction.toLowerCase() } }); } function mobileAuthBlockListener(mobileAuthBlock, pageName) { if (mobileAuthBlock) { const mobileAuthBtn = mobileAuthBlock.querySelector('.header__mobile-item__label'); if (mobileAuthBtn) { mobileAuthBtn.addEventListener('click', () => { pushUserConnectOpenEvent(pageName); }); } } } function authDropdownsLinksListener(authDropdown, pageName) { if (authDropdown) { authDropdown.forEach((dropdown) => { const authLinks = dropdown.querySelector('.header__auth-links').querySelectorAll('button'); const myBookingsLink = dropdown.querySelector('.header__dropdown__all'); const linksArray = []; authLinks.forEach((link) => { linksArray.push(link); }); linksArray.push(myBookingsLink); linksArray.filter(Boolean).forEach((link, position) => { link.addEventListener('click', () => { pushUserConnectInteractEvent(pageName, position + 1, link.textContent); }); }); }) } } function pushUserConnectInteractEvent(pageName, menuPosition, menuLabel) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'user_connect_interact', 'event_data': { 'pagename': pageName, 'user_is_logged': isUserLogged() ? '1' : '0', 'menu_position': menuPosition, 'menu_label': menuLabel.toLowerCase() } }); } function pushLoginEvent(pageName) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'login', 'event_data': { 'pagename': pageName, 'connection_context':'raffles' } }); } function headerControlsInteractListener(headerControls, pageName) { if (headerControls) { headerControls.querySelectorAll('.header__item').forEach((item, position) => { for (const childItem of item.children) { if (childItem.tagName === 'BUTTON') { childItem.addEventListener('click', () => { let itemText = ''; if (item.classList.contains('header__item--auth')) { const noAuthLabel = item.querySelector('.header__label--no-auth'); const isAuthLabel = item.querySelector('.header__label--is-auth'); if (getComputedStyle(noAuthLabel).display !== 'none') { itemText = noAuthLabel.textContent; } else { itemText = isAuthLabel.textContent; } pushUserConnectOpenEvent(pageName); } else { itemText = childItem.textContent; } pushMenuInteractOtherEvent(pageName, position + 1, itemText.trim()); }); } } }); } } function pushUserConnectOpenEvent(pageName) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'user_connect_open', 'event_data': { 'pagename': pageName, 'user_is_logged': isUserLogged() ? '1' : '0' } }); } function pushMenuInteractOtherEvent(pageName, menuPosition, menuLabel) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'menu_interact_other', 'event_data': { 'pagename': pageName, 'menu_position': menuPosition, 'menu_label': menuLabel.toLowerCase() } }); } function headerLeftMenuInteractListener(headerLeftMenu, pageName) { if (headerLeftMenu) { headerLeftMenu.forEach((menu) => { const leftMenuLinks = menu.querySelectorAll('.header-menu__nav__link'); leftMenuLinks.forEach((link, index) => { link.addEventListener('click', () => { pushMenuInteractEvent(pageName, index + 1, link.textContent); }); }); }); } } function headerPropertyMenuInteractListener(headerPropertyMenu, pageName) { if (headerPropertyMenu) { const isRestaurantMenu = document.querySelector('#header').classList.contains('header--restaurant'); const propertyMenuLinks = headerPropertyMenu.querySelectorAll('.header__property-menu__link'); propertyMenuLinks.forEach((link, index) => { link.addEventListener('click', () => { const linkIndex = index + 1; const linkText = link.textContent; pushMenuInpageEvent(pageName, linkIndex, linkText, isRestaurantMenu); }); }); } } function pushMenuInpageEvent(pageName, menuPosition, menuLabel, isRestaurantMenu) { pushEmptyEventData(); const eventData = { 'event': 'GA4event', 'eventName': 'menu_inpage', 'event_data': { 'pagename': pageName, 'menu_position': menuPosition, 'menu_label': menuLabel.toLowerCase() } }; if (isRestaurantMenu) { const urlArray = window?.location?.href?.split('/'); const blockName = urlArray[urlArray.length - 2]; eventData.event_data.bloc_name = 'main navigation'; } dataLayer.push({...eventData}); } function pushMenuInteractEvent(pageName, menuPosition, menuLabel) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'menu_interact', 'event_data': { 'pagename': pageName, 'menu_position': menuPosition, 'menu_label': menuLabel.toLowerCase() } }); } function headerMenuObserver(headerMenu, pageName) { if (headerMenu) { const observer = new MutationObserver(function (mutations) { mutations.forEach(function (mutationRecord) { const target = mutationRecord.target; if (target.classList.contains('opened') && !target.classList.contains('d-none')) { pushMenuOpenEvent(pageName); } }) }); observer.observe(headerMenu, { attributes: true, attributeFilter: ['class'] }); } } function pushMenuOpenEvent(pageName) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'menu_open', 'event_data': { 'pagename': pageName } }); } function giftLinkListener(pageName, link) { if (link) { link.forEach((item) => { item.addEventListener('click', () => { pushGiftCardEvent(pageName); }); }); } } function pushGiftCardEvent(pageName) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': 'gift card', 'bloc_interaction': 'book a gift card', } }); } function singUpSubmitListener(pageName, link) { if (link) { link.forEach((item) => { item.addEventListener('click', () => { let parent = item.closest('.js-newsletter-sign-up'), input = parent?.querySelector('.js-newsletter-sign-up-input') setTimeout(()=> { if (input?.classList.contains('error-field')) { let errorMessage = parent.querySelector('.error-message').textContent pushSingUpSubmitErrorEvent(pageName, errorMessage); } else { pushSingUpSubmitEvent(pageName); } }, 150) }); }); } } function pushSingUpSubmitEvent(pageName) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'newsletter_submit', 'event_data': { 'pagename': pageName, 'newsletter_name': 'raffles' } }); } function pushSingUpSubmitErrorEvent(pageName, errorMessage) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'newsletter_interact', 'event_data': { 'pagename': pageName, 'form_action': 'error', 'bloc_name': 'footer', 'error_type': 'incorrect value', 'error_field': 'email' } }) } function singUpSubmitFormListener(pageName, link) { if (link) { link.forEach((item) => { item.addEventListener('click', () => { let parent = item.closest('.js-send-form'), inputs = parent?.querySelectorAll('.newsletter-from-container__form-field input, .newsletter-from-container__form-field select'), errorFields = []; setTimeout(()=> { inputs.forEach(function (item) { if (item.classList.contains('error-field')) { errorFields.push(item.getAttribute('name')); } }) if (errorFields.length) { // todo array error fields // let errorFieldsString = errorFields.join('::'); // pushSingUpSubmitErrorFormEvent(pageName, errorFieldsString.toString()); pushSingUpSubmitErrorFormEvent(pageName); } else { pushSingUpSubmitFormEvent(pageName); } }, 150) }); }); } } function pushSingUpSubmitFormEvent(pageName) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'newsletter_submit', 'event_data': { 'pagename': pageName, 'newsletter_name': 'raffles' } }); } function pushSingUpSubmitErrorFormEvent(pageName, errorType) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'newsletter_interact', 'event_data': { 'pagename': pageName, 'form_action': 'error', 'bloc_name': 'newsletter form', 'error_type': 'incorrect value', 'error_field': "email" } }) } function articleSideMenuLinkListener(pageName, link) { if (link) { link.forEach((item) => { item.addEventListener('click', () => { const linkText = item.textContent.trim().toLowerCase(); pushArticleSideMenuEvent(pageName, linkText); }); }); } } function pushArticleSideMenuEvent(pageName, linkText) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': linkText, } }); } function blogBreadcrumbLinkListener(pageName, link) { if (link) { let linkText; link.forEach((item, index) => { if (item.classList.contains("cmp-breadcrumb__item--active")) { return linkText = item.textContent.trim().toLowerCase(); } item.addEventListener('click', () => { pushBlogBreadcrumbEvent(pageName, linkText, index + 1); }); }); } } function pushBlogBreadcrumbEvent(pageName, linkText, menuPosition) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': document.title, 'menu_position': 'back to magazine hub', } }); } function blogArticleLinkListener(pageName) { document.addEventListener('click', (event) => { if (event.target.matches('.blog-card__link')) { const link = event.target; const links = document.querySelectorAll('.blog-card__link'); const articleCategory = link.getAttribute('data-articleCategory').trim().toLowerCase(); const articleName = link.getAttribute('data-articleName'); const vignetteNumber = Array.from(links).indexOf(link) + 1; pushBlogArticleEvent(pageName, articleCategory, articleName, vignetteNumber); } }); } function pushBlogArticleEvent(pageName, articleCategory, articleName, vignetteNumber) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': articleCategory, 'bloc_interaction': articleName, 'bloc_type': vignetteNumber, } }); } function blogFiltersMenuLinkListener(pageName, link) { if (link) { link.forEach((item, index) => { item.addEventListener('click', () => { const linkText = item.textContent.trim().toLowerCase(); pushBlogFiltersMenuEvent(pageName, linkText, index + 1); }); }); } } function pushBlogFiltersMenuEvent(pageName, linkText, menuPosition) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': linkText, 'menu_position': menuPosition, } }); } function blogLinkShowMoreListener(pageName, link) { if (link) { link.forEach((item) => { item.addEventListener('click', () => { pushBlogLinkShowMoreEvent(pageName); }); }); } } function getCategoryFromUrl() { const urlParams = new URLSearchParams(window.location.search); return urlParams.get('category') || 'all'; } function pushBlogLinkShowMoreEvent(pageName) { const category = getCategoryFromUrl(); pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_interaction': 'show more', 'bloc_name': category } }); } function blogDescriptionDiscoverListener(pageName, link) { if (link) { link.forEach((item) => { item.addEventListener('click', () => { pushBlogDescriptionDiscoverEvent(pageName, document.title); }); }); } } function pushBlogDescriptionDiscoverEvent(pageName, articleTitle) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name' : articleTitle, 'bloc_interaction' : 'experience', 'bloc_type' : 'discover' } }); } function accommodationsLinkListener(pageName, link) { if (link && pageName.includes("rooms and suites")) { link.forEach((item) => { item.addEventListener('click', () => { let accommodationsInteraction = item.href.includes('#/booking/') ? 'check availabilities' : 'view offers'; pushAccommodationsEvent(pageName, accommodationsInteraction); }); }); } } function pushAccommodationsEvent(pageName, accommodationsInteraction) { pushEmptyEventData(); dataLayer.push({ 'event': 'GA4event', 'eventName': 'bloc_interact', 'event_data': { 'pagename': pageName, 'bloc_name': 'accommodations', 'bloc_interaction': accommodationsInteraction, } }); } function pushEmptyEventData() { dataLayer.push({'event_data': null}); } function pushPageViewEvent(pageData, userData) { dataLayer.push({'page_data': null}); dataLayer.push({ 'event': 'page_view', 'page_data': pageData, 'user_data': userData }); } function getEnvironmentName() { const hostName = window.location.host; switch (hostName) { case 'publish-p80753-e698524.adobeaemcloud.com': case 'author-p80753-e698524.adobeaemcloud.com': return 'development' case 'publish-p80753-e698564.adobeaemcloud.com': case 'author-p80753-e698564.adobeaemcloud.com': return 'stage' case 'publish-p80753-e698610.adobeaemcloud.com': case 'author-p80753-e698610.adobeaemcloud.com': case 'pl.raffles.com': case 'www.raffles.ru': case 'www.raffles.jp': case 'www.raffles.fr': case 'www.raffles.es': case 'www.raffles-tr.com': case 'www.raffles-hotels.de': case 'www.raffles-cn.com': case 'www.raffles-ae.com': case 'www.raffles.com': return 'production' default: return '' } } function isUserLogged() { return localStorage.hasOwnProperty('rr_accor_auth_data'); } function getHashedUserId() { return isUserLogged() ? md5(JSON.parse(localStorage.rr_accor_auth_data).id_token) : ''; } function getUserData() { let getProfileData = { 'user_is_logged': isUserLogged() ? 'yes' : 'no', 'user_id': getHashedUserId(), 'user_city': '', 'user_country': '', 'user_loyalty_card_type': '', 'user_all_member': 'no' } const options = { headers: { Authorization: "Bearer " + JSON.parse(window.localStorage.getItem('rr_accor_auth_data'))?.access_token } }; return fetch(urlProfile, options) .then((response) => { if (!response.ok) { throw new Error('Request failed with status: ' + response.status); } return response.json(); }) .then((data) => { if (!data.errors || !data.status === 401) { getProfileData = { 'user_is_logged': isUserLogged() ? 'yes' : 'no', 'user_id': getHashedUserId(), 'user_city': data?.userCity ? data?.userCity : '', 'user_country': data?.userCountry ? data?.userCountry : '', 'user_loyalty_card_type': data?.loyaltyCardProductTier ? data?.loyaltyCardProductTier : '', 'user_all_member': data?.isLoyaltyMember ? 'yes' : 'no' } } pushPageViewEvent(pageData, getProfileData); }) .catch((error) => { // console.error(error); pushPageViewEvent(pageData, getProfileData); }); } function getPageData() { const language = document.getElementsByTagName('html')[0].lang; const pageCategory = "destination"; const pageSubCategory1 = ""; const pageSubCategory2 = "booking"; const pageSubCategory3 = ""; const hotelRidCode = "rww"; const pageName = "booking"; const pageNameArray = [pageCategory, pageSubCategory1, hotelRidCode, pageSubCategory2, pageSubCategory3]; const eventPageName = pageNameArray.filter(Boolean).join('::'); let pageData = { 'environment': getEnvironmentName(), 'page_name': eventPageName, 'page_category': pageCategory, 'page_sub_category_level1': pageSubCategory1, 'page_sub_category_level2': pageSubCategory2, 'page_sub_category_level3': pageSubCategory3, 'page_language': language, 'error_type': pageCategory === 'error' ? (pageName === '404-page' ? '404' : '') : '' } if (hotelRidCode !== '') { pageData = { ...pageData, 'page_sub_category_level1': hotelRidCode, 'hotel_rid_code': hotelRidCode, 'hotel_name': "Raffles Europejski Warsaw ", 'hotel_country_name': "poland", 'hotel_city_name': "warsaw", 'hotel_continent': "europe", 'hotel_region': "europe" } } pageData = Object.fromEntries( Object.entries(pageData).map(([key, value]) => [key, value ? value.toLowerCase().replace(/-/g, ' ') : '']) ); return pageData; } </script> <script src="https://static-p80753-e698610.adobeaemcloud.com/7827d37700fc302f056e99c9cd137528bdd1277a0e5b04bf1a683fea32878b4f/theme.js" async type="text/javascript"></script> <!--bottom of the page--> </body> </html>