CINXE.COM
Preview Request - Mintlify
<!DOCTYPE html><!-- Last Published: Fri Nov 22 2024 06:41:38 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="landing.mintlify.com" data-wf-page="67077cd2b5eba3947d41eb07" data-wf-site="66cc2bd703ccf308a49a6188" lang="en"><head><meta charset="utf-8"/><title>Preview Request - Mintlify</title><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." name="description"/><meta content="Preview Request - Mintlify" property="og:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="og:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="og:image"/><meta content="Preview Request - Mintlify" property="twitter:title"/><meta content="Meet the modern standard for public facing documentation. Beautiful out of the box, easy to maintain, and optimized for user engagement." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/6731aa4104da280d698c4084_Landing%20page%20OG%20Image.png" property="twitter:image"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/css/mintlify-lander.2281b6ffd.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e0d67f2324645580a18_favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66cc3e124fa129b7d5fd6c4a_webclip.png" rel="apple-touch-icon"/><script> (function() { var savedTheme = localStorage.getItem('isDarkMode'); var systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches; var isDark = savedTheme === 'true' || (savedTheme === null && systemDark); if (isDark) { document.documentElement.classList.add('dark-mode'); } document.documentElement.classList.add('theme-loaded'); })(); </script> <script tr-color-vars="background-main,background-invert,text-main,text-invert,text-soft,text-sub,muted,muted-invert,muted-invert-90,border-solid,border-soft,border-sub,background-soft,transparent,transparent-invert,brand,brand-8"></script> <script> (function() { const htmlElement = document.documentElement; const scriptTag = document.querySelector("[tr-color-vars]"); const cssVariables = scriptTag ? scriptTag.getAttribute("tr-color-vars").split(",") : []; let lightColors = {}; let darkColors = {}; // Capture initial color values cssVariables.forEach(item => { const lightValue = getComputedStyle(htmlElement).getPropertyValue(`--color--${item}`); const darkValue = getComputedStyle(htmlElement).getPropertyValue(`--dark--${item}`) || lightValue; lightColors[`--color--${item}`] = lightValue; darkColors[`--color--${item}`] = darkValue; }); function setColors(colorObject) { Object.keys(colorObject).forEach(key => { htmlElement.style.setProperty(key, colorObject[key]); }); } function switchImageSource(element, isDarkMode) { const lightSrc = element.getAttribute('data-light-src'); const darkSrc = element.getAttribute('data-dark-src'); const lightSrcset = element.getAttribute('data-light-srcset'); const darkSrcset = element.getAttribute('data-dark-srcset'); if (isDarkMode) { if (darkSrc) element.src = darkSrc; if (darkSrcset) element.srcset = darkSrcset; } else { if (lightSrc) element.src = lightSrc; if (lightSrcset) element.srcset = lightSrcset; } } function switchAssets(isDarkMode) { document.querySelectorAll('.theme-asset').forEach(asset => { if (asset.tagName.toLowerCase() === 'picture') { asset.querySelectorAll('source, img').forEach(element => { switchImageSource(element, isDarkMode); }); } else if (asset.tagName.toLowerCase() === 'img') { switchImageSource(asset, isDarkMode); } }); document.querySelectorAll('.dark-asset, .light-asset').forEach(asset => { asset.classList.toggle('hidden', isDarkMode ? asset.classList.contains('light-asset') : asset.classList.contains('dark-asset')); }); } function setTheme(isDarkMode) { localStorage.setItem("isDarkMode", isDarkMode); htmlElement.classList.toggle("dark-mode", isDarkMode); document.body.classList.add('theme-loaded'); setColors(isDarkMode ? darkColors : lightColors); switchAssets(isDarkMode); updateToggleStates(isDarkMode); } function updateToggleStates(isDarkMode) { const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; document.querySelector('[tr-color-system]')?.classList.toggle('active', isDarkMode === systemDark); document.querySelector('[tr-color-light]')?.classList.toggle('active', !isDarkMode); document.querySelector('[tr-color-dark]')?.classList.toggle('active', isDarkMode); } function initializeTheme() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; setTheme(isDarkMode); window.matchMedia("(prefers-color-scheme: dark)").addListener(() => { if (localStorage.getItem("isDarkMode") === null) { setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); } }); } function setupToggles() { document.querySelector('[tr-color-system]')?.addEventListener("click", () => { localStorage.removeItem("isDarkMode"); setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches); }); document.querySelector('[tr-color-light]')?.addEventListener("click", () => setTheme(false)); document.querySelector('[tr-color-dark]')?.addEventListener("click", () => setTheme(true)); } function preloadCorrectAssets() { const storedMode = localStorage.getItem("isDarkMode"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const isDarkMode = storedMode === null ? systemDark : storedMode === 'true'; switchAssets(isDarkMode); } // Preload correct assets immediately preloadCorrectAssets(); // Initialize theme and setup toggles when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { initializeTheme(); setupToggles(); }); } else { initializeTheme(); setupToggles(); } })(); </script> <style> :root { --color--background-main: #ffffff; } .dark-mode { --color--background-main: #08090A; } body { background-color: var(--color--background-main); } /* Hide the body until the theme is loaded */ body:not(.theme-loaded) { visibility: hidden; } </style> <link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css"/> <!-- Cal element-click embed code begins --> <script type="text/javascript"> (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement("script")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === "string"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, ["initNamespace", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, "https://app.cal.com/embed/embed.js", "init"); Cal("init", "demo-with-mintlify", {origin:"https://cal.com"}); Cal("init", "mintlify-enterprise", {origin:"https://cal.com"}); Cal.ns["demo-with-mintlify", "mintlify-enterprise"]("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); </script> <!-- Cal element-click embed code ends --> <!-- Posthog --> <script> !function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]); posthog.init('phc_eNuN6Ojnk9O7uWfC17z12AK85fNR0BY6IiGVy0Gfwzw',{api_host:'https://us.i.posthog.com', person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well }) </script> <!-- 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-MJWB25XN');</script> <!-- End Google Tag Manager --> <!-- Quora Pixel Code (JS Helper) --> <script> !function(q,e,v,n,t,s){if(q.qp) return; n=q.qp=function(){n.qp?n.qp.apply(n,arguments):n.queue.push(arguments);}; n.queue=[];t=document.createElement(e);t.async=!0;t.src=v; s=document.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s);}(window, 'script', 'https://a.quora.com/qevents.js'); qp('init', 'c6c2eacaf9ae4ef89e5e5312c5333c7e'); qp('track', 'ViewContent'); </script> <noscript><img height="1" width="1" style="display:none" src="https://q.quora.com/_/ad/c6c2eacaf9ae4ef89e5e5312c5333c7e/pixel?tag=ViewContent&noscript=1"/></noscript> <!-- End of Quora Pixel Code --> <!-- Unify GTM Code (JS Helper) --> <script> !function(){window.unify||(window.unify=Object.assign([],["identify","page","startAutoPage","stopAutoPage","startAutoIdentify","stopAutoIdentify"].reduce((function(t,e){return t[e]=function(){return unify.push([e,[].slice.call(arguments)]),unify},t}),{})));var t=document.createElement("script");t.async=!0,t.setAttribute("src","https://tag.unifyintent.com/v1/ShALG1c5rTJzkBaNJWFZWP/script.js"),t.setAttribute("data-api-key","wk_98uM5hH8_CooeLr8Z3fRL39Q1rxtqo5fejQKhn3qL"),t.setAttribute("id","unifytag"),(document.body||document.head).appendChild(t)}(); </script> <!-- End of Quora Pixel Code --></head><body><div class="page-wrapper"><div class="bufo"><div id="bufo-cursor" class="bufo-cursor"></div><div class="code-embed w-embed w-script"><script> document.addEventListener('DOMContentLoaded', function() { let mintieCount = 0; let timeoutId = null; const mintieChars = ['m', 'i', 'n', 't', 'i', 'e']; function handleKeyDown(event) { if (document.activeElement instanceof HTMLInputElement || document.activeElement instanceof HTMLTextAreaElement) { return; } if (event.key.toLowerCase() === mintieChars[mintieCount]) { mintieCount++; if (mintieCount === mintieChars.length) { // URL to your mode-independent GIF const gifUrl = 'https://mintlify-assets.b-cdn.net/website/home/minties.gif'; const cursorImage = document.createElement('img'); cursorImage.src = gifUrl; cursorImage.style.position = 'fixed'; cursorImage.style.zIndex = 9999; cursorImage.style.pointerEvents = 'none'; cursorImage.style.width = '32px'; cursorImage.style.height = 'auto'; cursorImage.style.transform = 'translate(-50%, -50%)'; document.body.appendChild(cursorImage); function updateCursorPosition(e) { cursorImage.style.left = e.clientX + 'px'; cursorImage.style.top = e.clientY + 'px'; } updateCursorPosition(event); document.addEventListener('mousemove', updateCursorPosition); timeoutId = setTimeout(() => { cursorImage.remove(); document.removeEventListener('mousemove', updateCursorPosition); mintieCount = 0; }, 3000); } else { clearTimeout(timeoutId); timeoutId = setTimeout(() => { mintieCount = 0; }, 1000); } } else { mintieCount = 0; clearTimeout(timeoutId); } } document.addEventListener('keydown', handleKeyDown); }); </script>'</div></div><div class="global-styles w-embed"><style> /* Make text look crisper and more legible in all browsers */ body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-rendering: optimizeLegibility; } /* Focus state style for keyboard navigation for the focusable elements */ *[tabindex]:focus-visible, input[type="file"]:focus-visible { outline: 0.125rem solid #4d65ff; outline-offset: 0.125rem; } /* Set color style to inherit */ .inherit-color * { color: inherit; } /* Get rid of top margin on first element in any rich text element */ .w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child { margin-top: 0 !important; } /* Get rid of bottom margin on last element in any rich text element */ .w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child { margin-bottom: 0 !important; } /* Make sure containers never lose their center alignment */ .container-medium,.container-small, .container-large { margin-right: auto !important; margin-left: auto !important; } /* Make the following elements inherit typography styles from the parent and not have hardcoded values. Important: You will not be able to style for example "All Links" in Designer with this CSS applied. Uncomment this CSS to use it in the project. Leave this message for future hand-off. */ /* a, .w-input, .w-select, .w-tab-link, .w-nav-link, .w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link { color: inherit; text-decoration: inherit; font-size: inherit; } */ /* Apply "..." after 3 lines of text */ .text-style-3lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; } /* Apply "..." after 2 lines of text */ .text-style-2lines { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } /* These classes are never overwritten */ .hide { display: none !important; } @media screen and (max-width: 991px) { .hide, .hide-tablet { display: none !important; } } @media screen and (max-width: 767px) { .hide-mobile-landscape{ display: none !important; } } @media screen and (max-width: 479px) { .hide-mobile{ display: none !important; } } .margin-0 { margin: 0rem !important; } .padding-0 { padding: 0rem !important; } .spacing-clean { padding: 0rem !important; margin: 0rem !important; } .margin-top { margin-right: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-top { padding-right: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-right { margin-top: 0rem !important; margin-bottom: 0rem !important; margin-left: 0rem !important; } .padding-right { padding-top: 0rem !important; padding-bottom: 0rem !important; padding-left: 0rem !important; } .margin-bottom { margin-top: 0rem !important; margin-right: 0rem !important; margin-left: 0rem !important; } .padding-bottom { padding-top: 0rem !important; padding-right: 0rem !important; padding-left: 0rem !important; } .margin-left { margin-top: 0rem !important; margin-right: 0rem !important; margin-bottom: 0rem !important; } .padding-left { padding-top: 0rem !important; padding-right: 0rem !important; padding-bottom: 0rem !important; } .margin-horizontal { margin-top: 0rem !important; margin-bottom: 0rem !important; } .padding-horizontal { padding-top: 0rem !important; padding-bottom: 0rem !important; } .margin-vertical { margin-right: 0rem !important; margin-left: 0rem !important; } .padding-vertical { padding-right: 0rem !important; padding-left: 0rem !important; } </style></div><nav class="navigation"><div data-animation="default" class="navbar w-nav" data-easing2="ease" fs-scrolldisable-element="smart-nav" data-easing="ease" data-collapse="medium" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e932" role="banner" data-duration="400"><div class="navbar_container"><a href="/" class="navbar_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="100%" height="auto" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><nav role="navigation" id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e936-1c96e931" class="navbar_menu is-page-height-tablet w-nav-menu"><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e965" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="https://mintlify.com/docs" class="navbar_link w-inline-block"><div>Documentation</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e96b-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e96b" href="https://mintlify.com/docs" class="nav-link-card with-image guides w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabfa0d26093561a2128e_Getting%20started.svg" alt="Feature set UI" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Getting%20started.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Guides</div></div><div class="text-style-muted">Start building modern documentation in under five minutes<br/></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e973-1c96e931" href="https://mintlify.com/docs/content/components/" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21884)"> <path d="M6.25 2.50195H3.75C2.7835 2.50195 2 3.28545 2 4.25195V6.75195C2 7.71845 2.7835 8.50195 3.75 8.50195H6.25C7.2165 8.50195 8 7.71845 8 6.75195V4.25195C8 3.28545 7.2165 2.50195 6.25 2.50195Z" fill="currentColor"/> <path d="M5 16.752C6.79493 16.752 8.25 15.2969 8.25 13.502C8.25 11.707 6.79493 10.252 5 10.252C3.20507 10.252 1.75 11.707 1.75 13.502C1.75 15.2969 3.20507 16.752 5 16.752Z" fill="currentColor"/> <path d="M15.5 12.752H13.75V11.002C13.75 10.588 13.414 10.252 13 10.252C12.586 10.252 12.25 10.588 12.25 11.002V12.752H10.5C10.086 12.752 9.75 13.088 9.75 13.502C9.75 13.916 10.086 14.252 10.5 14.252H12.25V16.002C12.25 16.416 12.586 16.752 13 16.752C13.414 16.752 13.75 16.416 13.75 16.002V14.252H15.5C15.914 14.252 16.25 13.916 16.25 13.502C16.25 13.088 15.914 12.752 15.5 12.752Z" fill="currentColor"/> <path d="M14.0829 2.70211C13.6319 1.92011 12.3689 1.91911 11.9179 2.70211L9.65192 6.62611C9.42592 7.01811 9.42592 7.48511 9.65192 7.87611C9.87792 8.26811 10.2829 8.50111 10.7349 8.50111H15.2659C15.7179 8.50111 16.1219 8.26811 16.3489 7.87611C16.5749 7.48511 16.5749 7.01811 16.3489 6.62611L14.0829 2.70211Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21884"> <rect width="18" height="18" fill="white" transform="translate(0 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Components</div></div><div class="text-style-muted">Explore the variety of components available</div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e97b-1c96e931" href="https://mintlify.com/docs/api-playground" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_21895)"> <path d="M15.0459 2.5H4.5459C3.0289 2.5 1.7959 3.733 1.7959 5.25V13.75C1.7959 15.267 3.0289 16.5 4.5459 16.5H15.0459C16.5629 16.5 17.7959 15.267 17.7959 13.75V5.25C17.7959 3.733 16.5629 2.5 15.0459 2.5ZM7.7959 4.5C8.3479 4.5 8.7959 4.948 8.7959 5.5C8.7959 6.052 8.3479 6.5 7.7959 6.5C7.2439 6.5 6.7959 6.052 6.7959 5.5C6.7959 4.948 7.2439 4.5 7.7959 4.5ZM3.7959 5.5C3.7959 4.948 4.2439 4.5 4.7959 4.5C5.3479 4.5 5.7959 4.948 5.7959 5.5C5.7959 6.052 5.3479 6.5 4.7959 6.5C4.2439 6.5 3.7959 6.052 3.7959 5.5ZM8.5759 12.22C8.8689 12.513 8.8689 12.988 8.5759 13.281C8.4299 13.427 8.2379 13.501 8.0459 13.501C7.8539 13.501 7.6619 13.428 7.5159 13.281L5.2659 11.031C4.9729 10.738 4.9729 10.263 5.2659 9.97L7.5159 7.72C7.8089 7.427 8.2839 7.427 8.5769 7.72C8.8699 8.013 8.8699 8.488 8.5769 8.781L6.8569 10.501L8.5769 12.221L8.5759 12.22ZM14.3259 11.03L12.0759 13.28C11.9299 13.426 11.7379 13.5 11.5459 13.5C11.3539 13.5 11.1619 13.427 11.0159 13.28C10.7229 12.987 10.7229 12.512 11.0159 12.219L12.7359 10.499L11.0159 8.779C10.7229 8.486 10.7229 8.011 11.0159 7.718C11.3089 7.425 11.7839 7.425 12.0769 7.718L14.3269 9.968C14.6199 10.261 14.6199 10.736 14.3269 11.029L14.3259 11.03Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_21895"> <rect width="18" height="18" fill="white" transform="translate(0.795898 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">API playground</div></div><div class="text-style-muted">Enable users to interact with your API<br/></div></div></a></div></nav></div><div data-hover="true" data-delay="0" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e983" class="dd-menu-wrap hide-tablet w-dropdown"><div class="dropdown-toggle w-dropdown-toggle"><a href="/customers" class="navbar_link w-inline-block"><div>Resources</div></a></div><nav class="dd-menu-content w-dropdown-list"><div class="dd-content resources"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e989-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e989" href="/customers" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" sizes="100vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/CX3-Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb266513745ada050da046_CX3-Light.png 972w"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Customers</div></div><div class="text-style-muted">Discover how we help our customers win</div></div></a><link rel="prefetch" href="/customers"/><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e991-1c96e931" data-w-id="58a4fd58-9c06-75df-d600-2ded1c96e991" href="/enterprise" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66fb1f61e959ed44eea75a0f_ENT-New-Light.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Dark.svg" data-light-srcset="https://mintlify-assets.b-cdn.net/website/enterprise/Ent-Nav-Light.svg" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Enterprise</div></div><div class="text-style-muted">For organizations with custom needs<br/></div></div></a><link rel="prefetch" href="/enterprise"/><a id="w-node-_8c387d58-9737-ace0-1ec1-d0cf06bbf9e7-1c96e931" data-w-id="8c387d58-9737-ace0-1ec1-d0cf06bbf9e7" href="/blog" class="nav-link-card with-image w-inline-block"><img class="nav-card-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66eaabf98655455a7fb6b139_Blog.svg" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog-dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/nav-assets/Blog.png" loading="lazy"/><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Blog</div></div><div class="text-style-muted">Discover and stay updated on what鈥檚 happening</div></div></a><link rel="prefetch" href="/blog"/><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e999-1c96e931" class="_2x2-grid"><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e99a-1c96e931" href="https://mintlify.com/security/responsible-disclosure" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"> <title>shield-check</title> <g fill="currentColor"> <path d="M14.783,2.813l-5.25-1.68c-.349-.112-.718-.111-1.066,0L3.216,2.813c-.728,.233-1.216,.903-1.216,1.667v6.52c0,3.508,4.946,5.379,6.46,5.869,.177,.057,.358,.086,.54,.086s.362-.028,.538-.085c1.516-.49,6.462-2.361,6.462-5.869V4.48c0-.764-.489-1.434-1.217-1.667Zm-2.681,4.389l-3.397,4.5c-.128,.169-.322,.276-.534,.295-.021,.002-.043,.003-.065,.003-.189,0-.372-.071-.511-.201l-1.609-1.5c-.303-.283-.32-.757-.038-1.06,.284-.303,.758-.319,1.06-.038l1.001,.933,2.896-3.836c.25-.33,.72-.396,1.051-.146,.331,.25,.396,.72,.146,1.051Z"></path> </g> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Security</div></div></div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4055_135)"> <path d="M7.04401 2H4.54401C3.57901 2 2.79401 2.785 2.79401 3.75V13C2.79401 14.654 4.14001 16 5.79401 16C7.44801 16 8.79401 14.654 8.79401 13V3.75C8.79401 2.785 8.00901 2 7.04401 2ZM5.79401 13.75C5.38001 13.75 5.04401 13.414 5.04401 13C5.04401 12.586 5.38001 12.25 5.79401 12.25C6.20801 12.25 6.54401 12.586 6.54401 13C6.54401 13.414 6.20801 13.75 5.79401 13.75Z" fill="currentColor"/> <path d="M14.456 6.10415L12.688 4.33615C12.053 3.70015 10.965 3.68215 10.293 4.27115V12.7402L14.455 8.57815C14.786 8.24715 14.968 7.80815 14.968 7.34115C14.968 6.87415 14.787 6.43415 14.456 6.10415Z" fill="currentColor"/> <path d="M15.1467 10.0078L9.15674 15.9978H15.0437C16.0087 15.9978 16.7937 15.2128 16.7937 14.2478V11.7478C16.7937 10.8188 16.0627 10.0628 15.1467 10.0078Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_4055_135"> <rect width="18" height="18" fill="white" transform="translate(0.793945)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Templates</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9a6-1c96e931" href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22859)"> <path d="M9.58987 7C10.7099 7 11.6719 6.325 12.1009 5.362C13.5389 6.104 14.6079 7.458 14.9599 9.058C15.0369 9.408 15.3479 9.646 15.6909 9.646C15.7449 9.646 15.7989 9.641 15.8539 9.628C16.2579 9.539 16.5129 9.138 16.4239 8.734C15.9349 6.522 14.3699 4.683 12.2939 3.809C12.0809 2.503 10.9539 1.5 9.58887 1.5C8.07187 1.5 6.83887 2.733 6.83887 4.25C6.83887 5.767 8.07187 7 9.58887 7H9.58987Z" fill="currentColor"/> <path d="M6.77681 11.8733C6.21681 10.9043 5.15081 10.4073 4.10281 10.5183C4.02581 8.90126 4.66381 7.29926 5.87181 6.19426C6.17781 5.91526 6.19881 5.44026 5.91981 5.13426C5.63981 4.82926 5.16581 4.80726 4.85981 5.08726C3.18781 6.61626 2.37781 8.89126 2.65881 11.1253C2.21381 11.4873 1.88981 11.9723 1.73781 12.5373C1.54881 13.2463 1.64581 13.9883 2.01281 14.6233C2.37981 15.2593 2.97281 15.7153 3.68281 15.9053C3.91881 15.9683 4.15981 16.0003 4.39881 16.0003C4.87581 16.0003 5.34481 15.8753 5.76881 15.6303C7.08081 14.8733 7.53381 13.1883 6.77581 11.8743L6.77681 11.8733Z" fill="currentColor"/> <path d="M17.443 12.5381C17.253 11.8291 16.797 11.2351 16.162 10.8681C14.85 10.1091 13.163 10.5621 12.405 11.8751C11.845 12.8451 11.949 14.0151 12.569 14.8671C11.209 15.7421 9.50404 15.9901 7.93804 15.4961C7.54104 15.3721 7.12204 15.5911 6.99804 15.9851C6.87304 16.3801 7.09204 16.8011 7.48704 16.9261C8.17004 17.1421 8.87504 17.2471 9.57704 17.2471C11.102 17.2471 12.609 16.7461 13.84 15.8071C14.145 15.9211 14.46 15.9991 14.783 15.9991C15.022 15.9991 15.262 15.9681 15.499 15.9041C16.209 15.7141 16.802 15.2581 17.169 14.6231C17.536 13.9881 17.634 13.2461 17.444 12.5371L17.443 12.5381Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22859"> <rect width="18" height="18" fill="white" transform="translate(0.59082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Integrations</div></div></div></a><a id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9ac-1c96e931" href="/love" class="nav-link-card w-inline-block"><div class="icon-flex w-embed"><svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_5469_22851)"> <path d="M15.9988 13.49L14.7358 13.069L14.3148 11.806C14.1778 11.398 13.5028 11.398 13.3658 11.806L12.9448 13.069L11.6818 13.49C11.4778 13.558 11.3398 13.749 11.3398 13.964C11.3398 14.179 11.4778 14.37 11.6818 14.438L12.9448 14.859L13.3658 16.122C13.4338 16.326 13.6258 16.464 13.8408 16.464C14.0558 16.464 14.2468 16.326 14.3158 16.122L14.7368 14.859L15.9998 14.438C16.2038 14.37 16.3418 14.179 16.3418 13.964C16.3418 13.749 16.2038 13.558 15.9998 13.49H15.9988Z" fill="currentColor"/> <path d="M12.5049 2.5C11.3099 2.515 10.1809 2.99 9.34086 3.806C8.50086 2.991 7.36886 2.515 6.16286 2.5C3.63286 2.515 1.58086 4.584 1.59086 7.109C1.59086 12.362 6.89686 15.538 8.52286 16.387C8.77886 16.52 9.05986 16.587 9.34086 16.587C9.62186 16.587 9.90286 16.52 10.1579 16.387C10.4079 16.257 10.7499 16.065 11.1399 15.827C10.3629 15.535 9.83986 14.802 9.83986 13.965C9.83986 13.102 10.3899 12.34 11.2089 12.068L11.7589 11.884L11.9429 11.333C12.2099 10.535 12.9719 10.001 13.8399 10.001C14.7079 10.001 15.4699 10.535 15.7369 11.331L15.7809 11.463C16.5579 10.225 17.0899 8.774 17.0899 7.114C17.0989 4.586 15.0479 2.517 12.5039 2.502L12.5049 2.5ZM9.08386 8.981L8.13786 9.296L7.82186 10.243C7.77086 10.396 7.62786 10.499 7.46686 10.499C7.30586 10.499 7.16186 10.395 7.11186 10.243L6.79586 9.296L5.84986 8.981C5.69686 8.93 5.59286 8.787 5.59286 8.625C5.59286 8.463 5.69686 8.32 5.84986 8.269L6.79586 7.954L7.11186 7.007C7.21386 6.701 7.72086 6.701 7.82286 7.007L8.13886 7.954L9.08486 8.269C9.23786 8.32 9.34186 8.463 9.34186 8.625C9.34186 8.787 9.23786 8.93 9.08486 8.981H9.08386ZM12.5909 7.5C12.1769 7.5 11.8409 7.164 11.8409 6.75C11.8409 6.336 12.1769 6 12.5909 6C13.0049 6 13.3409 6.336 13.3409 6.75C13.3409 7.164 13.0049 7.5 12.5909 7.5Z" fill="currentColor"/> </g> <defs> <clipPath id="clip0_5469_22851"> <rect width="18" height="18" fill="white" transform="translate(0.34082 0.5)"/> </clipPath> </defs> </svg></div><div class="text-content"><div class="margin-bottom margin-tiny"><div class="text-weight-medium">Wall of Love</div></div></div></a><link rel="prefetch" href="/love"/></div></div></nav></div><a href="/preview" class="navbar_link hide-tablet sing-p w-nav-link">Request Preview</a><a href="/careers" class="navbar_link hide-tablet sing-p w-nav-link">Careers</a><a href="/pricing" class="navbar_link hide-tablet sing-p w-nav-link">Pricing</a><div class="responsive-nav"><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9f0-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Documentation</div><a href="https://mintlify.com/docs" class="nav-link-block w-inline-block"><div>Getting Started</div></a><a href="https://mintlify.com/docs/content/components" class="nav-link-block w-inline-block"><div>Components</div></a><a href="https://mintlify.com/docs/api-playground/" class="nav-link-block w-inline-block"><div>API Playground</div></a><a href="/pricing" class="nav-link-block w-inline-block"><div>Pricing</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96e9fc-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Resources</div><a href="/customers" class="nav-link-block w-inline-block"><div>Customers</div></a><a href="/enterprise" class="nav-link-block w-inline-block"><div>Enterprise</div></a><a href="/preview" class="nav-link-block w-inline-block"><div>Request Preview</div></a><a href="https://mintlify.com/docs/integrations/analytics/overview" class="nav-link-block w-inline-block"><div>Integrations</div></a><a href="https://github.com/mintlify/themes" target="_blank" class="nav-link-block w-inline-block"><div>Templates</div></a><a href="/love" class="nav-link-block w-inline-block"><div>Wall of Love</div></a></div><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea11-1c96e931" class="link-group"><div class="text-style-muted text-size-small">Company</div><a href="/blog" class="nav-link-block w-inline-block"><div>Blog</div></a><a href="/careers" class="nav-link-block w-inline-block"><div>Careers</div></a><a href="https://feedback.mintlify.com/roadmap" class="nav-link-block w-inline-block"><div>Public Roadmap</div></a><a href="https://mintlify.com/security/responsible-disclosure" class="nav-link-block w-inline-block"><div>Security</div></a></div></div><div class="hide-desktop flex"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small mobile-only w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-small mobile-only w-button">Book a demo</a></div></nav><div id="w-node-_58a4fd58-9c06-75df-d600-2ded1c96ea25-1c96e931" class="navbar_button-wrapper"><a href="https://dashboard.mintlify.com/login" class="button is-secondary is-small ghost hide-mobile-landscape w-button">Login</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary is-small hide-mobile-portrait w-button">Get a demo</a><a href="https://dashboard.mintlify.com/signup" class="button is-small w-button">Sign up</a><div class="navbar_menu-button w-nav-button"><div class="menu-icon"><div class="menu-icon_line-top"></div><div class="menu-icon_line-middle"><div class="menu-icon_line-middle-inner"></div></div><div class="menu-icon_line-bottom"></div></div></div></div></div></div><div class="glass-bg"></div></nav><main class="main-wrapper"><section class="page-title"><div class="padding-global"><div class="container-large"><div class="padding-section-large padding-top"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-xsmall"><p class="description align-center text-weight-medium">Powered by Mintlify</p></div><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2 text-weight-semibold">Your documentation can look that nice too.</h1></div><p class="align-center">Want to try it on for style? Submit a link to your documentation and we鈥檒l share a preview of how it鈥檇 look on Mintlify.</p></div></div></div></div></div></section><section class="section-generic"><div class="padding-global"><div class="container-large"><div class="padding-section-medium padding-top"><div class="section-inner mobile-alter"><img class="layout_image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/preview/Preview%20mockup%20-%20light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/preview/Preview%20mockup%20-%20dark.png" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 92vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/preview/Preview%20mockup%20-%20dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/preview/Preview%20mockup%20-%20light.png" loading="eager" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-1080.png 1080w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-1600.png 1600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-2000.png 2000w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-2600.png 2600w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light-p-3200.png 3200w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f53fa4669b37efd24560b6_Preview%20mockup%20-%20light.png 3962w"/><div class="preview-form-wrapper"><div class="form-wrapper w-form"><form id="wf-form-docs-access" name="wf-form-wf-form-docs-access" data-name="Docs Access Form" method="get" class="form-content" data-wf-page-id="67077cd2b5eba3947d41eb07" data-wf-element-id="98fa8122-e14b-0402-ca53-ba6f51e03aa5"><div class="w-layout-vflex form-input-group"><div class="w-layout-hflex _2-col-flex"><input class="form_input w-input" autofocus="true" maxlength="256" name="firstName-2" data-name="First Name" pattern="[A-Za-z\s]+" placeholder="First name" title="Please enter a valid first name (letters and spaces only)" type="text" id="firstName-2" required=""/><input class="form_input w-input" maxlength="256" name="lastName-2" data-name="Last Name 2" pattern="[A-Za-z\s]+" placeholder="Last name" title="Please enter a valid last name (letters and spaces only)" type="text" id="lastName-2" Email="Last Name" required=""/></div><input class="form_input email w-input" maxlength="256" name="email-2" data-name="Email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" placeholder="you@company.com" title="Please enter a valid email address" type="email" id="email-2" required=""/><input class="form_input link w-input" maxlength="256" name="docsLinkInput-2" data-name="Docs Link" pattern="/^(?:(ftp|http|https):\/\/)?(?:[\w-]+\.)+[a-z]{3,6}$/;" placeholder="https://company.com/docs" type="url" id="docsLinkInput-2" required=""/><div class="form_input file-upload w-file-upload"><div class="w-file-upload-default"><input class="w-file-upload-input" accept="" name="file-2" data-name="File 2" aria-hidden="true" type="file" id="file-2" tabindex="-1"/><label for="file-2" role="button" tabindex="0" class="upload w-file-upload-label"><div class="w-icon-file-upload-icon"></div><div class="upload-form-text">Upload your OpenAPI specs (optional)</div></label></div><div tabindex="-1" class="w-file-upload-uploading w-hidden"><div class="uploading w-file-upload-uploading-btn"><svg class="w-icon-file-upload-uploading" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" aria-hidden="true"><path fill="currentColor" opacity=".2" d="M15 30a15 15 0 1 1 0-30 15 15 0 0 1 0 30zm0-3a12 12 0 1 0 0-24 12 12 0 0 0 0 24z"></path><path fill="currentColor" opacity=".75" d="M0 15A15 15 0 0 1 15 0v3A12 12 0 0 0 3 15H0z"><animateTransform attributeName="transform" attributeType="XML" dur="0.6s" from="0 15 15" repeatCount="indefinite" to="360 15 15" type="rotate"></animateTransform></path></svg><div class="upload-form-text w-inline-block">Uploading...</div></div></div><div tabindex="-1" class="w-file-upload-success w-hidden"><div class="uploaded w-file-upload-file"><div class="upload-form-text w-file-upload-file-name">fileuploaded.jpg</div><div aria-label="Remove file" role="button" tabindex="0" class="icon-flex w-file-remove-link"><div class="w-icon-file-upload-remove"></div></div></div></div><div tabindex="-1" class="w-file-upload-error w-hidden"><div class="w-file-upload-error-msg" data-w-size-error="Upload failed. Max size for files is 10 MB." data-w-type-error="Upload failed. Invalid file type." data-w-generic-error="Upload failed. Something went wrong. Please retry.">Upload failed. Max size for files is 10 MB.</div></div></div></div><input type="submit" data-wait="Please wait..." class="button w-button" value="Request Preview"/></form><div class="success-message w-form-done"><div>We have your request, we will reach out soon!</div></div><div class="w-form-fail"><div>Oops! Something went wrong while submitting the form.</div></div></div></div></div></div></div></div></section><section class="customers"><div class="padding-global"><div class="container-large"><div class="padding-section-medium"><div class="text-align-center"><div class="margin-bottom margin-medium"><h1 blocks-non-deletable="true" class="heading-style-h4">Powering experiences<br/><span class="text-style-muted">from next-gen startups to enterprises</span></h1></div></div><div class="logo-cloud"><div id="w-node-_319fde2d-5f2b-fe95-2f80-7adbc2a7d512-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="120" height="30" viewBox="0 0 120 30" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M29.3666 11.4089H33.7401V21.8142H36.5316V11.4089H40.9053V8.92272H29.3666V11.4089Z" fill="currentColor"/> <path d="M24.4365 17.9467L18.5741 8.92272H15.4103V21.8142H18.1089V12.7902L23.9712 21.8142H27.1349V8.92272H24.4365V17.9467Z" fill="currentColor"/> <path d="M52.0714 14.0609H45.9299V8.92272H43.1384V21.8142H45.9299V16.5471H52.0714V21.8142H54.8629V8.92272H52.0714V14.0609Z" fill="currentColor"/> <path d="M5.19233 8.92272L0 21.8142H2.90325L3.96516 19.107H9.39741L10.4592 21.8142H13.3624L8.17005 8.92272H5.19233ZM4.90424 16.7129L6.68119 12.1824L8.45817 16.7129H4.90424Z" fill="currentColor"/> <path d="M77.997 8.69702C74.2374 8.69702 71.5763 11.4595 71.5763 15.3822C71.5763 19.268 74.2374 22.0305 77.997 22.0305C81.7376 22.0305 84.3805 19.268 84.3805 15.3822C84.3805 11.4595 81.7376 8.69702 77.997 8.69702ZM77.997 19.4522C75.8006 19.4522 74.4608 17.9052 74.4608 15.3822C74.4608 12.8223 75.8006 11.2753 77.997 11.2753C80.1744 11.2753 81.4956 12.8223 81.4956 15.3822C81.4956 17.9052 80.1744 19.4522 77.997 19.4522Z" fill="currentColor"/> <path d="M117.022 17.4816C116.538 18.734 115.57 19.4522 114.249 19.4522C112.053 19.4522 110.713 17.9052 110.713 15.3822C110.713 12.8223 112.053 11.2753 114.249 11.2753C115.57 11.2753 116.538 11.9935 117.022 13.2459H119.981C119.256 10.4834 117.078 8.69702 114.249 8.69702C110.49 8.69702 107.829 11.4595 107.829 15.3822C107.829 19.268 110.49 22.0305 114.249 22.0305C117.097 22.0305 119.274 20.2256 120 17.4816H117.022Z" fill="currentColor"/> <path d="M99.2326 8.92272L104.425 21.8142H107.272L102.08 8.92272H99.2326Z" fill="currentColor"/> <path d="M93.3491 8.92272H86.9842V21.8142H89.7758V17.1364H93.3491C96.3079 17.1364 98.1132 15.5895 98.1132 13.0296C98.1132 10.4697 96.3079 8.92272 93.3491 8.92272ZM93.2186 14.6502H89.7758V11.4089H93.2186C94.596 11.4089 95.3217 11.9614 95.3217 13.0296C95.3217 14.0977 94.596 14.6502 93.2186 14.6502Z" fill="currentColor"/> <path d="M69.4372 12.8454C69.4372 10.4144 67.6319 8.92272 64.6727 8.92272H58.3078V21.8142H61.0993V16.7681H64.2072L66.9992 21.8142H70.0885L66.9971 16.3837C68.5487 15.7935 69.4372 14.5506 69.4372 12.8454ZM61.0993 11.4089H64.5426C65.9196 11.4089 66.6452 11.9061 66.6452 12.8454C66.6452 13.7847 65.9196 14.2819 64.5426 14.2819H61.0993V11.4089Z" fill="currentColor"/> </svg></div><div id="w-node-_694ce328-b3c7-5ec9-1e76-48081c4ba782-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="114" height="32" viewBox="0 0 114 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M35.757 20.3058L35.7457 20.2695L42.868 13.6612V10.4771H31.4415V13.6612H38.2665L38.2778 13.6916L31.2251 20.3058V23.4899H42.9827V20.3058H35.757Z" fill="currentColor"/> <path d="M49.9954 10.1724C48.6774 10.1724 47.6032 10.3738 46.773 10.7768C45.9996 11.1279 45.3481 11.7065 44.9031 12.4374C44.4773 13.1732 44.2099 13.9919 44.1186 14.8398L47.5856 15.3336C47.7111 14.5849 47.9619 14.0543 48.3381 13.7416C48.7658 13.4145 49.2929 13.2493 49.828 13.2744C50.5318 13.2744 51.0422 13.4651 51.3593 13.8464C51.6737 14.2278 51.8335 14.7559 51.8335 15.4518V15.7989H48.4999C46.8031 15.7989 45.584 16.1802 44.8429 16.9429C44.1017 17.7055 43.7317 18.7122 43.7329 19.963C43.7329 21.2442 44.1029 22.1975 44.8429 22.8229C45.5828 23.4483 46.5134 23.759 47.6346 23.7552C49.0254 23.7552 50.0953 23.2703 50.8439 22.3005C51.2863 21.7044 51.602 21.0222 51.7714 20.2966H51.8973L52.3752 23.4806H55.5167V15.4175C55.5167 13.7511 55.0836 12.4603 54.217 11.5451C53.3504 10.6299 51.9431 10.1724 49.9954 10.1724ZM51.0942 20.1116C50.5956 20.533 49.9427 20.7427 49.1301 20.7427C48.4604 20.7427 47.9952 20.6239 47.7343 20.3862C47.6072 20.2737 47.5061 20.1343 47.4381 19.9778C47.3702 19.8212 47.337 19.6515 47.3411 19.4806C47.3337 19.3193 47.3587 19.1583 47.4146 19.0072C47.4706 18.8561 47.5563 18.7181 47.6665 18.6016C47.7858 18.4883 47.9265 18.4006 48.08 18.3439C48.2336 18.2872 48.3969 18.2627 48.5601 18.2717H51.8391V18.491C51.8457 18.801 51.7819 19.1083 51.653 19.3893C51.5237 19.6702 51.3326 19.9174 51.0942 20.1116Z" fill="currentColor"/> <path d="M74.5146 10.4771H70.8032V23.4918H74.5146V10.4771Z" fill="currentColor"/> <path d="M96.4293 10.4771C95.3805 10.4771 94.5543 10.852 93.9499 11.602C93.5161 12.1409 93.1861 12.9373 92.9603 13.991H92.851L92.3659 10.4771H89.1958V23.4899H92.9079V16.8166C92.9079 15.9752 93.1019 15.3301 93.491 14.8814C93.8796 14.4327 94.5972 14.2084 95.6426 14.2084H97.052V10.4771H96.4293Z" fill="currentColor"/> <path d="M85.5121 10.8994C84.6463 10.377 83.553 10.1164 82.2338 10.1177C80.1565 10.1177 78.5313 10.717 77.3577 11.9156C76.1835 13.1143 75.5964 14.7667 75.5964 16.8729C75.5668 18.1463 75.8412 19.4081 76.3965 20.5508C76.9044 21.5691 77.6955 22.4142 78.6723 22.9818C79.6552 23.5576 80.825 23.8461 82.1809 23.8474C83.3534 23.8474 84.333 23.6644 85.1191 23.2983C85.8589 22.9695 86.5023 22.4542 86.9896 21.8016C87.4529 21.1609 87.7969 20.4398 88.0049 19.6737L84.8074 18.7662C84.6725 19.2643 84.4132 19.7188 84.0547 20.0856C83.6935 20.4516 83.088 20.6347 82.2394 20.6347C81.2297 20.6347 80.4771 20.3417 79.982 19.7557C79.6224 19.3325 79.3966 18.7281 79.2968 17.9445H88.0539C88.0896 17.5784 88.1086 17.2714 88.1086 17.0235V16.2132C88.1298 15.1246 87.9079 14.0452 87.4596 13.0558C87.0398 12.1545 86.3613 11.4028 85.5121 10.8994ZM82.1262 13.2198C83.6316 13.2198 84.4846 13.9704 84.6864 15.4715H79.3625C79.4473 14.9706 79.6525 14.4985 79.9591 14.0968C80.4469 13.5109 81.1695 13.2185 82.1262 13.2198Z" fill="currentColor"/> <path d="M72.7002 5.22827C72.4209 5.21865 72.1427 5.26601 71.882 5.36755C71.6212 5.46908 71.3834 5.62272 71.1821 5.81932C70.9841 6.01782 70.8285 6.25591 70.7259 6.51849C70.6233 6.78106 70.5756 7.06239 70.5858 7.34464C70.576 7.62871 70.6236 7.91183 70.7266 8.17632C70.8292 8.44082 70.9847 8.68102 71.1831 8.88192C71.3814 9.08282 71.6185 9.24012 71.8796 9.34402C72.141 9.44792 72.4198 9.49618 72.7002 9.48578C72.979 9.49645 73.2566 9.44822 73.5153 9.34419C73.7746 9.24012 74.0093 9.08252 74.205 8.88139C74.3996 8.67819 74.5507 8.43731 74.651 8.17321C74.7508 7.90912 74.7971 7.62727 74.7865 7.34464C74.7993 7.06367 74.7547 6.78307 74.6544 6.52077C74.554 6.25846 74.4007 6.02022 74.205 5.82124C74.0087 5.62227 73.7735 5.46693 73.5148 5.36516C73.2566 5.26339 72.9795 5.21742 72.7024 5.23018L72.7002 5.22827Z" fill="currentColor"/> <path d="M65.0317 10.1177C63.7675 10.1177 62.7515 10.52 61.9842 11.3246C61.4159 11.9207 60.9989 12.8105 60.7331 13.9939H60.6147L60.1293 10.4799H56.9595V27.2278H60.671V20.3297H60.8065C60.9196 20.7896 61.0785 21.2367 61.2804 21.6643C61.5945 22.3607 62.1095 22.9444 62.7574 23.3383C63.429 23.7098 64.1858 23.8947 64.9508 23.8741C66.5048 23.8741 67.6878 23.2608 68.5005 22.0342C69.3132 20.8076 69.7197 19.096 69.7197 16.8996C69.7197 14.7782 69.3263 13.1175 68.5403 11.9175C67.7539 10.7176 66.5844 10.1177 65.0317 10.1177ZM65.408 19.5479C64.9751 20.1834 64.298 20.5012 63.3761 20.5012C62.9962 20.519 62.6173 20.4447 62.2713 20.2846C61.925 20.1244 61.6215 19.8831 61.386 19.5803C60.9055 18.9689 60.666 18.1319 60.6674 17.0693V16.8214C60.6674 15.7423 60.9068 14.916 61.386 14.3428C61.8648 13.7695 62.5285 13.4861 63.3761 13.4924C64.3144 13.4924 64.9958 13.7943 65.4211 14.3981C65.8463 15.0018 66.0588 15.8439 66.0588 16.9244C66.0614 18.0417 65.8457 18.9162 65.4116 19.5479H65.408Z" fill="currentColor"/> <path d="M29.7889 20.3052H16.9478V23.4931H29.7889V20.3052Z" fill="currentColor"/> </svg></div><div id="w-node-_5310150b-ab6e-c977-2265-7eb29bc4de29-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="105" height="auto" viewBox="0 0 117 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.1797 14.5228C31.1797 10.131 33.9658 7.67168 38.0375 7.67168H42.9275V10.2872H38.1932C35.6995 10.2872 34.0048 11.712 34.0048 14.5228C34.0048 17.3336 35.6995 18.7584 38.1932 18.7584H42.9275V21.3739H38.0375C33.9658 21.3739 31.1797 18.8755 31.1797 14.5228Z" fill="currentColor"/> <path d="M45.46 17.0017V7.67151H48.1875V16.4356C48.1875 18.1337 49.0643 18.7389 50.5058 18.7389H52.1424C53.5645 18.7389 54.4608 18.1337 54.4608 16.4356V7.67151H57.1687V17.0212C57.1687 19.9686 55.2206 21.3739 52.5904 21.3739H50.0577C47.4083 21.3739 45.46 19.9686 45.46 17.0017Z" fill="currentColor"/> <path d="M67.8243 13.5078C69.0712 13.5078 69.5777 12.8442 69.5777 11.8682C69.5777 10.8141 69.0712 10.2482 67.7853 10.2482H62.8565V13.5078H67.8243ZM60.1094 7.67164H68.1944C70.9608 7.67164 72.3441 9.15511 72.3441 11.5364C72.3441 13.0588 71.6232 14.2886 70.4738 14.6205C71.6622 14.7571 72.2271 15.6159 72.2271 16.6503V21.374H69.4802V17.2944C69.4802 16.5723 69.2658 16.0649 68.2919 16.0649H62.8565V21.374H60.1094V7.67164Z" fill="currentColor"/> <path d="M74.7784 18.7779H82.3179C83.2337 18.7779 83.8179 18.2705 83.8179 17.3531C83.8179 16.3966 83.2142 16.0258 82.2594 15.9476L78.4604 15.655C76.0641 15.4793 74.4277 14.2691 74.4277 11.6925C74.4277 9.13561 76.2397 7.67168 78.6163 7.67168H86.078V10.2676H78.7724C77.7202 10.2676 77.1747 10.7751 77.1747 11.6731C77.1747 12.6099 77.7592 13.0004 78.7919 13.0979L82.649 13.3712C85.0064 13.5468 86.565 14.7961 86.565 17.314C86.565 19.7344 84.9091 21.3739 82.5128 21.3739H74.7784V18.7779Z" fill="currentColor"/> <path d="M94.9803 18.9536C97.4545 18.9536 99.2664 17.1968 99.2664 14.5229C99.2664 11.8683 97.4545 10.092 94.9803 10.092C92.5256 10.092 90.7139 11.8683 90.7139 14.5229C90.7139 17.1968 92.5256 18.9536 94.9803 18.9536ZM87.9473 14.5033C87.9473 10.3457 90.9476 7.43739 94.9608 7.43739H94.9998C99.0133 7.43739 102.033 10.3457 102.033 14.5033C102.033 18.6803 99.0133 21.6082 94.9998 21.6082H94.9608C90.9476 21.6082 87.9473 18.6803 87.9473 14.5033Z" fill="currentColor"/> <path d="M111.908 13.5078C113.155 13.5078 113.662 12.8442 113.662 11.8682C113.662 10.8141 113.155 10.2482 111.869 10.2482H106.94V13.5078H111.908ZM104.193 7.67164H112.278C115.045 7.67164 116.428 9.15511 116.428 11.5364C116.428 13.0588 115.707 14.2886 114.558 14.6205C115.746 14.7571 116.311 15.6159 116.311 16.6503V21.374H113.564V17.2944C113.564 16.5723 113.35 16.0649 112.376 16.0649H106.94V21.374H104.193V7.67164Z" fill="currentColor"/> <path d="M12.9048 25.638V14.3392L22.8537 8.58436L12.9048 25.638ZM14.8852 24.7034L18.4927 18.3026L22.2218 20.4595L14.8852 24.7034ZM2.73666 7.72659L22.2218 7.48797L12.273 13.2429L2.73666 7.72659ZM11.6411 25.5677L1.9356 19.9534L11.6411 14.3957V25.5677ZM11.6411 2.09866V6.47386L3.72607 6.67701L11.6411 2.09866ZM12.273 0.271284L0.428711 7.12256V20.8251L12.273 27.6764L24.1172 20.8251V7.12256L12.273 0.271284Z" fill="currentColor"/> </svg></div><div id="w-node-_3a53a875-187d-3e0d-15e9-eef3c503b8f7-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="130" height="28" viewBox="0 0 130 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M120.046 13.9758L117.019 14.0567C116.988 13.841 116.902 13.65 116.763 13.4837C116.624 13.3129 116.442 13.1804 116.217 13.086C115.997 12.9871 115.741 12.9377 115.449 12.9377C115.067 12.9377 114.741 13.0141 114.471 13.1669C114.206 13.3197 114.076 13.5264 114.08 13.787C114.076 13.9893 114.157 14.1645 114.323 14.3128C114.494 14.4611 114.797 14.5802 115.233 14.6701L117.228 15.0476C118.262 15.2453 119.03 15.5734 119.534 16.0317C120.041 16.4901 120.298 17.0968 120.302 17.8518C120.298 18.5618 120.086 19.1797 119.668 19.7055C119.255 20.2313 118.689 20.6403 117.97 20.9324C117.251 21.22 116.428 21.3638 115.503 21.3638C114.024 21.3638 112.858 21.0604 112.004 20.4538C111.155 19.8426 110.669 19.0247 110.548 18.0001L113.804 17.9192C113.876 18.2967 114.062 18.5843 114.363 18.782C114.664 18.9797 115.049 19.0786 115.516 19.0786C115.939 19.0786 116.282 19 116.547 18.8427C116.813 18.6854 116.947 18.4764 116.952 18.2158C116.947 17.9821 116.844 17.7956 116.642 17.6563C116.44 17.5125 116.123 17.4001 115.691 17.3192L113.885 16.9755C112.847 16.7867 112.074 16.4384 111.566 15.9306C111.058 15.4183 110.806 14.7667 110.811 13.9758C110.806 13.2837 110.991 12.6928 111.364 12.2029C111.737 11.7086 112.267 11.3311 112.955 11.0705C113.642 10.8098 114.453 10.6795 115.388 10.6795C116.79 10.6795 117.896 10.9738 118.705 11.5625C119.513 12.1467 119.961 12.9512 120.046 13.9758Z" fill="currentColor"/> <path d="M99.4337 21.1688V7.36353H102.73V12.5877H102.797C102.932 12.2731 103.123 11.9698 103.37 11.6777C103.622 11.3856 103.941 11.1474 104.328 10.9632C104.719 10.7744 105.186 10.68 105.73 10.68C106.449 10.68 107.121 10.8688 107.745 11.2463C108.374 11.6238 108.882 12.2057 109.269 12.9922C109.655 13.7786 109.848 14.7807 109.848 15.9986C109.848 17.1715 109.662 18.1534 109.289 18.9443C108.92 19.7353 108.421 20.3285 107.792 20.7239C107.168 21.1194 106.473 21.3171 105.709 21.3171C105.188 21.3171 104.736 21.2318 104.354 21.061C103.973 20.8902 103.651 20.6655 103.391 20.3869C103.134 20.1083 102.937 19.8094 102.797 19.4904H102.696V21.1688H99.4337ZM102.663 15.9918C102.663 16.5491 102.737 17.0344 102.885 17.4479C103.038 17.8613 103.256 18.1826 103.539 18.4118C103.826 18.6365 104.17 18.7489 104.57 18.7489C104.975 18.7489 105.318 18.6365 105.602 18.4118C105.885 18.1826 106.098 17.8613 106.242 17.4479C106.39 17.0344 106.464 16.5491 106.464 15.9918C106.464 15.4346 106.39 14.9515 106.242 14.5426C106.098 14.1336 105.885 13.8168 105.602 13.5921C105.323 13.3674 104.979 13.2551 104.57 13.2551C104.166 13.2551 103.822 13.3652 103.539 13.5854C103.256 13.8056 103.038 14.1201 102.885 14.5291C102.737 14.938 102.663 15.4256 102.663 15.9918Z" fill="currentColor"/> <path d="M91.7999 21.3435C91.1393 21.3435 90.5528 21.2334 90.0405 21.0132C89.5327 20.7886 89.1305 20.4515 88.8339 20.0021C88.5418 19.5482 88.3958 18.9798 88.3958 18.2967C88.3958 17.7215 88.4969 17.2361 88.6991 16.8406C88.9013 16.4452 89.1799 16.1239 89.535 15.8767C89.89 15.6295 90.2989 15.443 90.7618 15.3172C91.2247 15.1869 91.719 15.0993 92.2448 15.0543C92.8335 15.0004 93.3076 14.9442 93.6671 14.8858C94.0266 14.8229 94.2873 14.7352 94.4491 14.6229C94.6153 14.5061 94.6985 14.342 94.6985 14.1308V14.0971C94.6985 13.7511 94.5794 13.4837 94.3412 13.2949C94.103 13.1062 93.7817 13.0118 93.3773 13.0118C92.9414 13.0118 92.5908 13.1062 92.3257 13.2949C92.0606 13.4837 91.892 13.7443 91.8201 14.0769L88.78 13.969C88.8699 13.3399 89.1013 12.7781 89.4743 12.2838C89.8518 11.785 90.3686 11.394 91.0247 11.1109C91.6853 10.8233 92.4785 10.6795 93.4042 10.6795C94.0648 10.6795 94.6738 10.7581 95.231 10.9154C95.7882 11.0682 96.2736 11.2929 96.687 11.5895C97.1005 11.8816 97.4195 12.2411 97.6442 12.668C97.8734 13.095 97.988 13.5826 97.988 14.1308V21.1683H94.8872V19.7257H94.8063C94.6221 20.0763 94.3862 20.3729 94.0985 20.6155C93.8154 20.8582 93.4806 21.0402 93.0941 21.1615C92.7122 21.2829 92.2808 21.3435 91.7999 21.3435ZM92.8178 19.1865C93.1728 19.1865 93.4919 19.1146 93.775 18.9708C94.0626 18.827 94.2918 18.6292 94.4625 18.3776C94.6333 18.1214 94.7187 17.8248 94.7187 17.4878V16.5036C94.6243 16.553 94.5097 16.598 94.3749 16.6384C94.2446 16.6789 94.1008 16.7171 93.9435 16.753C93.7862 16.789 93.6244 16.8204 93.4582 16.8474C93.2919 16.8744 93.1323 16.8991 92.9796 16.9215C92.6695 16.971 92.4043 17.0474 92.1841 17.1507C91.9684 17.2541 91.8022 17.3889 91.6853 17.5552C91.573 17.717 91.5168 17.9102 91.5168 18.1349C91.5168 18.4764 91.6381 18.7371 91.8808 18.9168C92.128 19.0966 92.4403 19.1865 92.8178 19.1865Z" fill="currentColor"/> <path d="M78.6436 21.1688V7.36353H81.9804V18.459H87.7236V21.1688H78.6436Z" fill="currentColor"/> <path d="M70.4781 15.2633V21.1683H67.1818V10.8143H70.3163V12.7152H70.4309C70.6601 12.0816 71.0511 11.585 71.6038 11.2255C72.1566 10.8615 72.8149 10.6795 73.5789 10.6795C74.3069 10.6795 74.9383 10.8435 75.4731 11.1716C76.0123 11.4951 76.4303 11.949 76.7269 12.5332C77.028 13.1129 77.1763 13.7915 77.1718 14.569V21.1683H73.8755V15.2161C73.88 14.6409 73.7339 14.1915 73.4373 13.8679C73.1452 13.5444 72.7385 13.3826 72.2172 13.3826C71.8712 13.3826 71.5656 13.459 71.3005 13.6118C71.0398 13.7601 70.8376 13.9735 70.6938 14.2522C70.5545 14.5308 70.4826 14.8678 70.4781 15.2633Z" fill="currentColor"/> <path d="M61.1538 21.3638C60.0708 21.3638 59.1361 21.1503 58.3496 20.7234C57.5677 20.292 56.9655 19.6786 56.5431 18.8831C56.1251 18.0832 55.9162 17.1328 55.9162 16.0317C55.9162 14.9622 56.1274 14.0275 56.5498 13.2275C56.9722 12.4231 57.5677 11.7985 58.3362 11.3536C59.1046 10.9042 60.0101 10.6795 61.0527 10.6795C61.7897 10.6795 62.4638 10.7941 63.075 11.0233C63.6862 11.2525 64.2142 11.5918 64.6591 12.0411C65.104 12.4905 65.45 13.0455 65.6972 13.7061C65.9443 14.3623 66.0679 15.115 66.0679 15.9643V16.7867H57.0689V14.8723H63.0008C62.9963 14.5218 62.9132 14.2095 62.7514 13.9353C62.5896 13.6612 62.3672 13.4477 62.0841 13.2949C61.8055 13.1377 61.4841 13.059 61.1201 13.059C60.7516 13.059 60.4213 13.1422 60.1292 13.3084C59.8371 13.4702 59.6057 13.6927 59.4349 13.9758C59.2641 14.2544 59.1743 14.5712 59.1653 14.9262V16.8744C59.1653 17.2968 59.2484 17.6675 59.4147 17.9866C59.581 18.3012 59.8169 18.5461 60.1225 18.7213C60.4281 18.8966 60.7921 18.9842 61.2145 18.9842C61.5066 18.9842 61.7717 18.9438 62.0099 18.8629C62.2481 18.782 62.4526 18.6629 62.6233 18.5056C62.7941 18.3484 62.9222 18.1551 63.0076 17.9259L66.0342 18.0136C65.9084 18.6921 65.632 19.2831 65.2051 19.7864C64.7827 20.2852 64.2277 20.674 63.5401 20.9526C62.8525 21.2267 62.0571 21.3638 61.1538 21.3638Z" fill="currentColor"/> <path d="M55.9529 10.8145L52.4005 21.1685H48.6256L45.0799 10.8145H48.5514L50.4591 17.9463H50.567L52.4814 10.8145H55.9529Z" fill="currentColor"/> <path d="M40.1586 21.3638C39.0756 21.3638 38.1408 21.1503 37.3544 20.7234C36.5724 20.292 35.9703 19.6786 35.5478 18.8831C35.1299 18.0832 34.9209 17.1328 34.9209 16.0317C34.9209 14.9622 35.1321 14.0275 35.5546 13.2275C35.977 12.4231 36.5724 11.7985 37.3409 11.3536C38.1094 10.9042 39.0149 10.6795 40.0575 10.6795C40.7945 10.6795 41.4686 10.7941 42.0797 11.0233C42.6909 11.2525 43.219 11.5918 43.6638 12.0411C44.1087 12.4905 44.4548 13.0455 44.7019 13.7061C44.9491 14.3623 45.0727 15.115 45.0727 15.9643V16.7867H36.0736V14.8723H42.0056C42.0011 14.5218 41.918 14.2095 41.7562 13.9353C41.5944 13.6612 41.372 13.4477 41.0888 13.2949C40.8102 13.1377 40.4889 13.059 40.1249 13.059C39.7564 13.059 39.4261 13.1422 39.134 13.3084C38.8419 13.4702 38.6104 13.6927 38.4397 13.9758C38.2689 14.2544 38.179 14.5712 38.17 14.9262V16.8744C38.17 17.2968 38.2532 17.6675 38.4194 17.9866C38.5857 18.3012 38.8217 18.5461 39.1272 18.7213C39.4328 18.8966 39.7968 18.9842 40.2193 18.9842C40.5114 18.9842 40.7765 18.9438 41.0147 18.8629C41.2529 18.782 41.4573 18.6629 41.6281 18.5056C41.7989 18.3484 41.927 18.1551 42.0123 17.9259L45.039 18.0136C44.9132 18.6921 44.6368 19.2831 44.2099 19.7864C43.7874 20.2852 43.2324 20.674 42.5449 20.9526C41.8573 21.2267 41.0619 21.3638 40.1586 21.3638Z" fill="currentColor"/> <path d="M33.7905 7.36353V21.1688H30.4943V7.36353H33.7905Z" fill="currentColor"/> <path d="M19.3479 21.1688V7.36353H28.9739V10.0734H22.6846V12.9045H28.4818V15.6211H22.6846V18.459H28.9739V21.1688H19.3479Z" fill="currentColor"/> <path d="M17.8192 7.36353V21.1688H14.5229V7.36353H17.8192Z" fill="currentColor"/> <path d="M12.9942 7.36353V21.1688H9.69794V7.36353H12.9942Z" fill="currentColor"/> </svg></div><div id="w-node-dd7f8e2a-4496-2b16-c19e-aa8fc43074a3-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="120" height="38" viewBox="0 0 120 38" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0937 13.6757V7.22754H19.7604V13.7049L26.105 7.35426V14.1609H28.821V23.8742H26.105V30.7188L19.7604 24.3681V31.2275H19.0937V24.3974L12.7777 30.7188V23.8742H10.061V14.1609H12.777V7.35438L19.0937 13.6757ZM18.636 14.1609L13.4437 8.9647V14.1609H18.636ZM12.777 14.8275H10.7277V23.2075H12.7771L12.7777 20.6922L18.6361 14.8289H12.777V14.8275ZM19.0937 15.3141L13.4444 20.9682V29.1083L19.0937 23.4542V15.3141ZM19.775 15.2995V23.4396L25.4384 29.1083L25.4383 20.9682L19.775 15.2995ZM26.105 23.2075V20.6922L20.2472 14.8289H26.105V14.8275H28.1544V23.2075H26.105ZM25.4384 14.1609V8.96482L20.2472 14.1609H25.4384Z" fill="currentColor"/> <path d="M47.0331 15.9102C47.4284 15.1708 47.9811 14.6015 48.6938 14.2008C49.4051 13.8015 50.2398 13.6015 51.1971 13.6015C52.1545 13.6015 52.9471 13.7982 53.6104 14.1922C54.2744 14.5862 54.7711 15.1082 55.0998 15.7582C55.4284 16.4088 55.5931 17.1215 55.5931 17.8962V18.9695H48.1458C48.2058 19.9002 48.5198 20.6402 49.0878 21.1888C49.6558 21.7382 50.4184 22.0122 51.3764 22.0122C52.1538 22.0122 52.7498 21.8542 53.1618 21.5382C53.5751 21.2222 53.8765 20.7842 54.0685 20.2228H55.7738C55.5464 21.0935 55.0831 21.8488 54.3831 22.4868C53.6838 23.1255 52.6811 23.4442 51.3771 23.4442C50.3958 23.4442 49.5311 23.2442 48.7831 22.8448C48.0358 22.4455 47.4578 21.8755 47.0511 21.1355C46.6445 20.3955 46.4411 19.5248 46.4411 18.5222C46.4411 17.5195 46.6378 16.6502 47.0331 15.9102ZM53.7991 17.6275C53.7991 16.8162 53.5898 16.1815 53.1711 15.7215C52.7524 15.2622 52.0944 15.0328 51.1964 15.0328C50.3591 15.0328 49.6738 15.2562 49.1418 15.7035C48.6091 16.1508 48.2831 16.7928 48.1638 17.6275H53.7991ZM57.8304 13.8695V15.3548C57.8304 15.4388 57.8725 15.4802 57.9565 15.4802C58.0045 15.4802 58.0398 15.4682 58.0645 15.4442C58.0891 15.4202 58.1124 15.3728 58.1358 15.3015C58.4464 14.3235 59.2184 13.8342 60.4511 13.8342H61.2405V15.4442H60.2171C59.4151 15.4442 58.8171 15.6348 58.4218 16.0168C58.0265 16.3988 57.8291 17.0248 57.8291 17.8962V23.1755H56.2138V13.8688L57.8304 13.8695ZM70.7251 21.2155C70.3005 21.9608 69.7498 22.5188 69.0738 22.8882C68.3978 23.2575 67.6704 23.4428 66.8931 23.4428C65.3618 23.4428 64.2844 22.8348 63.6624 21.6175C63.6144 21.5228 63.5544 21.4748 63.4831 21.4748C63.4118 21.4748 63.3751 21.5108 63.3751 21.5822V26.5748H61.7598V13.8702H63.3751V15.4628C63.3751 15.5342 63.4111 15.5702 63.4831 15.5702C63.5551 15.5702 63.6144 15.5222 63.6624 15.4275C64.2844 14.2102 65.3618 13.6022 66.8931 13.6022C67.6704 13.6022 68.3978 13.7875 69.0738 14.1568C69.7498 14.5262 70.2998 15.0842 70.7251 15.8302C71.1498 16.5755 71.3624 17.4742 71.3624 18.5228C71.3624 19.5715 71.1498 20.4695 70.7251 21.2155ZM68.8584 15.9542C68.2658 15.3395 67.4851 15.0322 66.5164 15.0322C65.5478 15.0322 64.7664 15.3395 64.1744 15.9542C63.5818 16.5688 63.3644 17.4248 63.3644 18.5222C63.3644 19.6195 63.5818 20.4762 64.1744 21.0902C64.7671 21.7048 65.5478 22.0122 66.5164 22.0122C67.4851 22.0122 68.2664 21.7055 68.8584 21.0902C69.4511 20.4755 69.7471 19.6195 69.7471 18.5222C69.7471 17.4248 69.4511 16.5688 68.8584 15.9542ZM73.7064 10.2902V23.1748H72.0911V10.2915H73.7064V10.2902ZM75.0364 15.9095C75.4311 15.1702 75.9844 14.6008 76.6971 14.2002C77.4084 13.8008 78.2431 13.6008 79.1998 13.6008C80.1564 13.6008 80.9505 13.7975 81.6138 14.1915C82.2778 14.5855 82.7745 15.1075 83.1031 15.7575C83.4325 16.4082 83.5965 17.1208 83.5965 17.8955V18.9688H76.1491C76.2091 19.8995 76.5231 20.6395 77.0911 21.1882C77.6591 21.7375 78.4218 22.0115 79.3798 22.0115C80.1571 22.0115 80.7524 21.8535 81.1651 21.5375C81.5784 21.2215 81.8798 20.7835 82.0718 20.2222H83.7771C83.5498 21.0928 83.0858 21.8482 82.3864 22.4862C81.6871 23.1248 80.6844 23.4435 79.3804 23.4435C78.3991 23.4435 77.5344 23.2435 76.7864 22.8442C76.0391 22.4448 75.4611 21.8748 75.0544 21.1348C74.6478 20.3948 74.4445 19.5242 74.4445 18.5215C74.4445 17.5188 74.6411 16.6495 75.0364 15.9095ZM81.8024 17.6268C81.8024 16.8155 81.5931 16.1808 81.1744 15.7208C80.7558 15.2615 80.0978 15.0322 79.1998 15.0322C78.3631 15.0322 77.6771 15.2555 77.1451 15.7028C76.6124 16.1502 76.2871 16.7922 76.1671 17.6268H81.8024ZM82.8778 22.8168L86.5744 18.2528L83.5418 14.2268V13.8688H85.3185L87.8498 17.3402L90.5778 13.8688H92.3898V14.2448L88.9084 18.5222L92.1211 22.8168V23.1748H90.3804L87.6344 19.4348L84.6918 23.1748H82.8791V22.8168H82.8778ZM94.7351 10.8402V12.8542H92.8484V10.8402H94.7351ZM94.6371 23.1755H93.0211V13.8695H94.6371V23.1755ZM95.1464 13.8695H96.9038V11.3642H98.5198V13.8695H100.369L100.823 15.2335H98.5198V19.6855C98.5198 20.2935 98.5044 20.7442 98.4744 21.0368C98.4444 21.3295 98.4298 21.5055 98.4298 21.5648C98.4298 21.6488 98.4531 21.7142 98.5011 21.7615C98.5491 21.8095 98.6144 21.8328 98.6991 21.8328C98.7584 21.8328 98.9351 21.8182 99.2285 21.7882C99.5211 21.7582 99.9731 21.7435 100.584 21.7435H101.212V23.1748H99.9558C98.9264 23.1748 98.1604 22.9248 97.6584 22.4228C97.1564 21.9215 96.9044 21.1588 96.9044 20.1322V15.2328H95.1478V13.8688L95.1464 13.8695ZM100.856 13.8695H102.502L105.176 21.6768C105.213 21.7728 105.27 21.8988 105.453 21.8988C105.636 21.8988 105.693 21.7722 105.729 21.6768L108.403 13.8695H109.939V14.2275L106.594 24.2668C106.306 25.1262 105.903 25.7255 105.383 26.0655C104.862 26.4055 104.258 26.5755 103.252 26.5755H101.529V25.1442H102.84C103.258 25.1442 103.599 25.1588 103.862 25.1888C104.125 25.2188 104.293 25.2335 104.365 25.2335C104.568 25.2335 104.706 25.1442 104.778 24.9655L105.281 23.6055C105.341 23.4628 105.346 23.3555 105.299 23.2828C105.275 23.2348 105.246 23.2048 105.21 23.1935C105.174 23.1815 105.12 23.1755 105.048 23.1755H103.954L100.857 13.8702L100.856 13.8695ZM45.4145 21.2308C44.9898 21.9762 44.4391 22.5342 43.7631 22.9035C43.0871 23.2728 42.3598 23.4582 41.5825 23.4582C40.0511 23.4582 38.9738 22.8502 38.3518 21.6328C38.3038 21.5382 38.2438 21.4902 38.1724 21.4902C38.1011 21.4902 38.0645 21.5262 38.0645 21.5975V26.5902H36.4491V13.8855H38.0645V15.4782C38.0645 15.5495 38.1004 15.5855 38.1724 15.5855C38.2444 15.5855 38.3038 15.5375 38.3518 15.4428C38.9731 14.2255 40.0511 13.6175 41.5825 13.6175C42.3598 13.6175 43.0871 13.8028 43.7631 14.1722C44.4391 14.5415 44.9891 15.0995 45.4145 15.8448C45.8391 16.5902 46.0518 17.4888 46.0518 18.5382C46.0518 19.5875 45.8391 20.4855 45.4145 21.2308ZM43.5478 15.9695C42.9551 15.3548 42.1745 15.0475 41.2058 15.0475C40.2371 15.0475 39.4558 15.3548 38.8638 15.9695C38.2711 16.5842 38.0538 17.4402 38.0538 18.5375C38.0538 19.6348 38.2711 20.4915 38.8638 21.1055C39.4565 21.7202 40.2371 22.0275 41.2058 22.0275C42.1745 22.0275 42.9558 21.7208 43.5478 21.1055C44.1404 20.4908 44.4365 19.6348 44.4365 18.5375C44.4365 17.4402 44.1404 16.5842 43.5478 15.9695Z" fill="currentColor"/> </svg></div><div id="w-node-e2a874cb-d360-125f-d4b7-4fbb154708c8-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="140" height="31" viewBox="0 0 140 31" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M30.0802 17.0661H33.6726L34.722 17.7356H29.9217L27.7673 24.2871C25.3872 23.3789 23.1845 21.2752 22.2605 18.9108C21.2755 16.6193 21.2755 13.7405 22.2821 11.4394C23.2257 9.07411 25.4921 6.93791 27.9043 6.06038C29.8026 5.28686 32.3428 5.20495 34.3558 5.81377C36.666 6.46468 38.8472 8.09362 40.1152 10.2202C41.5336 12.5521 41.9321 15.5155 41.0698 18.1769C40.5253 19.9432 39.4033 21.6346 37.8587 22.8441L35.2073 18.4975L38.8982 20.5228C38.9189 20.5228 38.9296 20.4999 38.9189 20.4789L34.0844 16.3727L40.3372 17.3109C40.3588 17.3109 40.3676 17.3013 40.3676 17.2906L40.3265 17.2597L34.431 15.2257L40.5575 13.7704C40.5781 13.7704 40.5781 13.7512 40.5673 13.7405L34.2823 14.143L39.2035 10.4775C39.2142 10.4571 39.1712 10.4475 39.1614 10.4687L33.633 13.226L36.6847 7.92892C36.6847 7.92103 36.6847 7.89893 36.666 7.90945L32.6786 12.5134L33.4442 6.46485C33.4442 6.45345 33.4217 6.44293 33.4012 6.45345L31.5674 12.3266L29.962 6.27717C29.9513 6.26752 29.9297 6.25682 29.9181 6.27717L30.3605 12.5521L26.5737 7.70335C26.5621 7.69195 26.5521 7.70335 26.5414 7.713L29.4059 13.0789L23.9913 10.1683C23.9815 10.1683 23.9599 10.1797 23.9599 10.1893L28.7755 14.0797L22.6285 13.4409C22.6069 13.4523 22.6069 13.4709 22.6285 13.4805L28.5885 15.1958L22.6607 16.9093C22.6492 16.918 22.6492 16.9393 22.6607 16.9489L28.7755 16.2477L23.9706 20.2629C23.9599 20.2629 23.9499 20.2833 23.9706 20.2947L24.0351 20.2743L27.8828 18.2921L28.7864 16.8782H29.8135L29.1014 16.3833L31.4815 12.6242L30.0775 17.0632L30.0802 17.0661ZM47.8097 22.0131H43.0129L46.8543 8.52317H56.6859L55.7494 11.7246H50.7323L50.0885 14.0211H55.1065L54.2602 16.9678H49.2433L47.8097 22.0131ZM58.9095 22.0132H54.1682L56.9799 12.1582H61.7221L58.9095 22.0132ZM61.979 11.2182H57.2377L58.0095 8.52335H62.7508L61.979 11.2182ZM71.2112 22.0129H66.5612L66.8915 20.91C65.954 21.6879 64.9987 22.2472 63.4737 22.2472C61.929 22.2472 60.9558 21.5239 60.9558 19.9875C60.9558 18.2883 61.6363 15.7564 62.6463 13.9848C63.3814 12.6642 64.7049 11.9781 66.2674 11.9781C67.6079 11.9781 68.6009 12.556 68.9867 13.2792L70.3102 8.52388H75.0514L71.2112 22.0129ZM67.6456 15.0868C67.222 15.0868 66.8003 15.2145 66.5612 15.7925C66.212 16.624 65.8994 17.4381 65.8994 18.2512C65.8994 18.6319 66.1752 18.9569 66.6345 18.9569C67.0016 18.9569 67.2406 18.8485 67.443 18.7225L68.3993 15.485C68.2339 15.25 67.9393 15.0868 67.6456 15.0868ZM84.5988 17.7096H78.0569C77.928 18.2328 77.8 18.595 77.8 19.0107C77.8 19.2098 77.8367 19.7164 78.4975 19.7164C79.1593 19.7164 79.4537 19.4626 79.7286 18.505H84.3786C83.7906 21.3073 80.4092 22.2649 78.3327 22.2649C75.5201 22.2649 73.3337 21.8677 73.3337 19.2098C73.3337 17.7449 74.0867 15.3222 75.0797 14.0386C76.2743 12.5014 78.3507 11.9235 80.2625 11.9235C83.2032 11.9235 85.1136 12.5199 85.1136 14.9786C85.1136 15.5758 84.8568 16.8956 84.5988 17.7096ZM79.8576 14.4007C79.2692 14.4007 78.8654 14.7979 78.6076 15.7927H80.5561C80.6116 15.5936 80.685 15.2861 80.685 15.1045C80.685 14.5627 80.3537 14.4007 79.8576 14.4007ZM89.3646 22.0131H84.6228L88.464 8.52317H93.2064L89.3646 22.0131ZM95.6298 22.0132H90.8874L93.6996 12.1582H98.4414L95.6298 22.0132ZM98.6982 11.2182H93.957L94.7286 8.52335H99.4704L98.6982 11.2182ZM107.223 12.1582L107.636 14.3826H104.006L102.941 18.1248C102.848 18.4147 102.775 18.7759 102.775 19.0111C102.775 19.4445 102.959 19.5899 103.601 19.5899H104.612L103.914 22.0134H99.687C98.2902 22.0134 97.7574 21.3439 97.7574 20.3308C97.7574 19.9158 97.8126 19.4631 97.9602 18.9565L100.533 9.97006H105.274L104.649 12.1584L107.223 12.1582ZM42.9158 23.5282L44.0979 23.5273L43.3448 25.9534H42.1664L42.9158 23.5282ZM47.0411 23.5301L48.7702 23.5293L49.2134 25.1466H49.2251L49.7256 23.5284L50.7518 23.5275L49.9934 25.9483L48.3385 25.9536L47.8595 24.2252H47.8514L47.3268 25.9501L46.3006 25.951L47.0411 23.5301ZM52.9926 23.5312L54.2935 23.5303L54.5219 25.0552L55.712 23.5285L56.9162 23.5276L54.9311 25.9494L53.4859 25.9512L52.9926 23.5312ZM59.1821 23.532L61.8711 23.5294L61.7197 24.0211L60.1733 24.0219L60.0239 24.5196L61.4735 24.5187L61.3284 24.9856L59.8788 24.9865L59.7292 25.4667L61.2917 25.4656L61.1341 25.9564L58.4309 25.9582L59.1821 23.532ZM70.7296 24.1226L69.8092 24.1237L69.991 23.535L73.0129 23.5324L72.8312 24.121L71.9108 24.1218L71.3467 25.9471L70.1656 25.948L70.7296 24.1226ZM75.4583 23.5289L77.2491 23.5271L77.335 25.1464H77.3431L78.4114 23.5263L80.2093 23.5245L79.4625 25.9515L78.3675 25.9524L78.9289 24.1252H78.9209L77.5901 25.9533L76.4486 25.9542L76.2866 24.1272H76.2748L75.7143 25.9489L74.7114 25.9498L75.4583 23.5289ZM87.7332 23.5301L89.4606 23.5293L89.9058 25.1466H89.9172L90.4176 23.5275H91.443L90.693 25.9536L89.0166 25.9492L88.5516 24.2252H88.5438L88.0074 25.9501L86.9802 25.951L87.7332 23.5301ZM94.2768 24.1189L93.3552 24.1198L93.537 23.5305L96.5598 23.5287L96.378 24.1172L95.457 24.118L94.8936 25.9496L93.7116 25.9504L94.2768 24.1189ZM114.808 20.0308C114.098 20.0308 113.519 20.5999 113.519 21.2994C113.519 21.998 114.098 22.5679 114.808 22.5679C115.519 22.5679 116.098 21.9978 116.098 21.2994C116.098 20.5999 115.519 20.0308 114.808 20.0308ZM114.808 22.3425C114.527 22.3425 114.257 22.2326 114.059 22.037C113.86 21.8414 113.748 21.5761 113.748 21.2995C113.748 21.0228 113.86 20.7575 114.059 20.5619C114.257 20.3663 114.527 20.2564 114.808 20.2564C115.09 20.2564 115.359 20.3663 115.558 20.5619C115.757 20.7575 115.868 21.0228 115.868 21.2995C115.868 21.5761 115.757 21.8414 115.558 22.037C115.359 22.2326 115.09 22.3425 114.808 22.3425Z" fill="currentColor"/> <path d="M115.325 21.0362C115.325 20.7844 115.175 20.6425 114.857 20.6425H114.355V21.9497H114.587V21.4149H114.766L115.097 21.9497H115.354L115.006 21.3965C115.187 21.3746 115.325 21.2636 115.325 21.0362ZM114.587 21.2115V20.8451H114.766C114.915 20.8424 115.082 20.8512 115.082 21.0266C115.082 21.2029 114.915 21.2117 114.766 21.2117L114.587 21.2115ZM65.4936 24.2648C65.4676 24.2376 65.4658 24.1917 65.4776 24.1547C65.5161 24.0314 65.6719 23.9504 65.9217 23.9504C66.0686 23.9495 66.295 23.9661 66.3595 24.0174C66.3913 24.0381 66.4152 24.0687 66.4274 24.1043C66.4396 24.1398 66.4393 24.1783 66.4268 24.2138H67.4734C67.597 23.7804 67.3194 23.5011 66.1374 23.5029C65.0146 23.5038 64.3779 23.7407 64.2141 24.2694C64.172 24.4069 64.1667 24.5769 64.2831 24.6905C64.5723 24.9741 65.8779 25.0869 65.988 25.2402C65.9998 25.2558 66.0075 25.274 66.0105 25.2932C66.0135 25.3125 66.0115 25.3321 66.0049 25.3504C65.9449 25.5451 65.6646 25.5953 65.4202 25.5953C65.2644 25.5953 65.062 25.5626 65.0039 25.4993C64.9494 25.436 64.9494 25.3381 64.9806 25.2755L63.8847 25.2773C63.7753 25.6535 63.7279 26.0445 65.251 26.0438C66.5287 26.042 67.1144 25.7345 67.2612 25.2562C67.3337 25.0219 67.262 24.8916 67.1788 24.8088C66.8949 24.5211 65.6305 24.4155 65.4936 24.2648ZM82.6153 23.5322L85.3039 23.5296L85.1527 24.0212L83.6065 24.0221L83.4565 24.5199L84.9055 24.519L84.7603 24.9859L83.3119 24.9866L83.1625 25.4678L84.7237 25.466L84.5665 25.9566L81.8641 25.9583L82.6153 23.5322ZM113.624 12.1578L111.05 17.6187L111.124 12.1578H106.328L107.246 22.0129C107.129 22.5899 106.935 22.9149 106.567 23.0753C106.164 23.2515 105.254 23.2198 104.934 23.2021L104.876 23.2056L104.119 25.8836L107.356 25.8863C109.268 25.8863 110.205 24.941 111.566 22.8443L118.475 12.1575L113.624 12.1578ZM99.6259 24.2589C99.5995 24.2317 99.5989 24.1848 99.6097 24.1487C99.6481 24.0254 99.8047 23.9444 100.054 23.9444C100.201 23.9435 100.427 23.9602 100.492 24.0114C100.523 24.0321 100.547 24.0627 100.559 24.0982C100.571 24.1338 100.571 24.1724 100.559 24.2078H101.606C101.729 23.7744 101.452 23.4952 100.27 23.4969C99.1477 23.4978 98.5099 23.7348 98.3473 24.2634C98.3041 24.401 98.2987 24.5709 98.4151 24.6846C98.7043 24.9682 100.01 25.081 100.12 25.2343C100.132 25.2498 100.139 25.2681 100.142 25.2873C100.145 25.3065 100.144 25.3261 100.137 25.3445C100.078 25.5391 99.7969 25.5893 99.5521 25.5893C99.3967 25.5893 99.1939 25.5567 99.1357 25.4934C99.0811 25.43 99.0811 25.3322 99.1123 25.2695L98.0167 25.2713C97.9075 25.6475 97.8601 26.0385 99.3829 26.0378C100.661 26.036 101.246 25.7286 101.394 25.2503C101.465 25.0159 101.394 24.8856 101.311 24.8028C101.028 24.5153 99.7627 24.4095 99.6259 24.2589Z" fill="currentColor"/> </svg></div><div id="w-node-_560f2eb4-8902-093c-e536-52836ead8272-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="112" height="23" viewBox="0 0 112 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.8257 10.0684C14.0533 9.93757 14.3112 9.86871 14.5737 9.86871C14.8362 9.86871 15.0941 9.93757 15.3217 10.0684L16.5166 10.758C16.5547 10.7794 16.5953 10.796 16.6376 10.8075L16.663 10.8143C16.7042 10.8246 16.7455 10.8308 16.7874 10.8315L16.7936 10.8322C16.7984 10.8322 16.8026 10.8308 16.8074 10.8301C16.846 10.8293 16.8845 10.8245 16.9222 10.8157L16.9414 10.8109C16.9821 10.7995 17.0214 10.7833 17.0583 10.7628L17.0707 10.758L19.4597 9.37884C19.5437 9.33017 19.6135 9.26029 19.662 9.1762C19.7105 9.0921 19.7361 8.99673 19.7361 8.89965V6.14072C19.7361 6.04362 19.7106 5.94823 19.6621 5.86412C19.6136 5.78001 19.5438 5.71014 19.4597 5.66153L17.0707 4.28241C16.9865 4.23383 16.8911 4.20826 16.794 4.20826C16.6968 4.20826 16.6014 4.23383 16.5172 4.28241L14.1275 5.66153C14.1234 5.66359 14.1206 5.66703 14.1179 5.66909C14.0813 5.69094 14.0473 5.71701 14.0168 5.74678C14.0127 5.75159 14.0086 5.75709 14.0037 5.76122C13.9769 5.78951 13.9531 5.82063 13.9329 5.85403C13.9302 5.85953 13.9261 5.86434 13.9226 5.86984C13.9022 5.90638 13.8861 5.94513 13.8745 5.98534L13.8676 6.01216C13.8567 6.05438 13.8509 6.09778 13.8504 6.14141V7.52053C13.8504 8.05334 13.5644 8.54971 13.1031 8.81577C12.8755 8.94661 12.6176 9.01546 12.3551 9.01546C12.0926 9.01546 11.8347 8.94661 11.6071 8.81577L10.4123 8.12621C10.3665 8.10005 10.3172 8.08082 10.2658 8.06915C10.2253 8.05907 10.1838 8.05376 10.1421 8.05334L10.1228 8.05403C10.0839 8.05503 10.0452 8.0601 10.0073 8.06915C10.0004 8.07053 9.99425 8.07121 9.98806 8.07328C9.94738 8.08476 9.90816 8.1009 9.87119 8.1214C9.86707 8.12415 9.86294 8.12484 9.8595 8.1269L7.47044 9.50602C7.38644 9.55469 7.31669 9.62456 7.26819 9.70866C7.21968 9.79276 7.19412 9.88813 7.19407 9.98521V12.7441C7.19407 12.9421 7.29926 13.1243 7.47044 13.2233L9.8595 14.6025L9.8705 14.6073C9.90831 14.6279 9.9475 14.6444 9.98738 14.6554L10.008 14.6595C10.0458 14.6691 10.0836 14.674 10.1221 14.6746C10.1269 14.6746 10.1311 14.6767 10.1359 14.6767L10.1421 14.676C10.1833 14.676 10.2246 14.6691 10.2658 14.6595L10.2926 14.652C10.3339 14.6396 10.3751 14.6245 10.4136 14.6025L11.6085 13.9129C11.836 13.7821 12.0938 13.7133 12.3562 13.7133C12.6185 13.7133 12.8763 13.7821 13.1038 13.9129C13.3309 14.0444 13.5196 14.2333 13.6508 14.4606C13.7821 14.6879 13.8514 14.9457 13.8518 15.2081V16.5873C13.8518 16.6319 13.8587 16.6753 13.869 16.7165L13.8759 16.7426C13.8874 16.7831 13.9035 16.8221 13.924 16.8588L13.9343 16.8746C13.9545 16.9078 13.9783 16.9387 14.0051 16.9668C14.0092 16.9716 14.0134 16.9771 14.0182 16.9812C14.0484 17.0108 14.0821 17.0362 14.1186 17.0596C14.122 17.0609 14.1254 17.0644 14.1282 17.0664L16.5172 18.4463C16.6014 18.4947 16.6968 18.5202 16.794 18.5202C16.8911 18.5202 16.9865 18.4947 17.0707 18.4463L19.4597 17.0671C19.5438 17.0185 19.6136 16.9487 19.6621 16.8645C19.7106 16.7804 19.7361 16.685 19.7361 16.5879V13.829C19.7361 13.7319 19.7106 13.6365 19.6621 13.5524C19.6136 13.4683 19.5438 13.3984 19.4597 13.3498L17.0707 11.97L17.059 11.9659C17.022 11.9452 16.9828 11.9288 16.9421 11.9171L16.9236 11.913C16.8853 11.9034 16.8461 11.8981 16.8067 11.8971L16.7888 11.8965C16.7466 11.8968 16.7046 11.9023 16.6637 11.913C16.6124 11.9249 16.5631 11.9441 16.5172 11.97L15.3231 12.6596C15.0956 12.7905 14.8378 12.8594 14.5754 12.8594C14.313 12.8594 14.0552 12.7905 13.8277 12.6596C13.6006 12.5281 13.4119 12.3392 13.2806 12.1119C13.1494 11.8846 13.0801 11.6268 13.0797 11.3643C13.0802 11.102 13.1495 10.8443 13.2808 10.6171C13.4121 10.3899 13.6007 10.2012 13.8277 10.0698L13.8257 10.0684ZM0.812019 9.37815L3.20108 10.758C3.28526 10.8064 3.38067 10.8319 3.4778 10.8319C3.57492 10.8319 3.67034 10.8064 3.75451 10.758L6.14357 9.37815C6.14701 9.37677 6.14976 9.37334 6.1532 9.37127C6.18958 9.34913 6.22327 9.32283 6.25357 9.2929C6.25838 9.28877 6.26182 9.28327 6.26732 9.27915C6.29396 9.25081 6.31747 9.2197 6.33745 9.18634L6.34776 9.17052C6.36821 9.13377 6.38436 9.09479 6.39588 9.05434L6.40276 9.02821C6.4137 8.98598 6.41948 8.94258 6.41995 8.89896V7.51915C6.4204 7.25678 6.48973 6.99912 6.62099 6.77194C6.75226 6.54476 6.94086 6.35602 7.16795 6.22459C7.3955 6.09369 7.65342 6.0248 7.91594 6.0248C8.17846 6.0248 8.43639 6.09369 8.66394 6.22459L9.85882 6.91415C9.90456 6.94026 9.9539 6.95949 10.0053 6.97122C10.0458 6.98134 10.0873 6.98687 10.129 6.98772H10.1359L10.1489 6.98634C10.1876 6.98531 10.2261 6.98024 10.2638 6.97122C10.2706 6.96984 10.2768 6.96915 10.283 6.96709C10.3239 6.95566 10.3634 6.93951 10.4006 6.91897L10.4116 6.91415L12.8006 5.53366C12.8848 5.48513 12.9547 5.4153 13.0034 5.33119C13.052 5.24707 13.0776 5.15163 13.0777 5.05447V2.29622C13.0776 2.19906 13.052 2.10362 13.0034 2.01951C12.9547 1.93539 12.8848 1.86556 12.8006 1.81704L10.4116 0.437916C10.3274 0.389342 10.232 0.36377 10.1348 0.36377C10.0377 0.36377 9.94226 0.389342 9.85813 0.437916L7.46907 1.81704L7.45944 1.8246C7.42307 1.8465 7.38939 1.87257 7.35907 1.90229C7.35426 1.9071 7.35082 1.9126 7.34532 1.91741C7.31872 1.94553 7.29522 1.97642 7.2752 2.00954L7.26488 2.02535C7.24443 2.0621 7.22829 2.10109 7.21676 2.14154L7.20988 2.16766C7.19893 2.20989 7.19316 2.25329 7.19269 2.29691V3.67603C7.19269 4.20885 6.90601 4.70522 6.4447 4.97128C6.21722 5.10205 5.95943 5.17087 5.69704 5.17087C5.43466 5.17087 5.17686 5.10205 4.94939 4.97128L3.75451 4.28241C3.70859 4.25615 3.659 4.23692 3.60739 4.22535C3.56688 4.21526 3.52537 4.20972 3.48364 4.20885L3.46508 4.21022C3.42595 4.21102 3.38702 4.21586 3.34889 4.22466L3.33033 4.22947C3.2894 4.24089 3.24995 4.25705 3.21276 4.2776L3.20108 4.28241L0.812019 5.66153C0.727965 5.71014 0.658179 5.78001 0.609668 5.86412C0.561157 5.94823 0.535628 6.04362 0.535645 6.14072V8.89965C0.535645 9.09696 0.640832 9.27984 0.812019 9.37815ZM12.802 17.1923L10.4129 15.8124L10.4013 15.8083C10.3643 15.7878 10.3251 15.7717 10.2844 15.7602L10.2644 15.7554C10.2266 15.7464 10.1879 15.7413 10.1489 15.7403L10.1304 15.7396C10.0884 15.74 10.0466 15.7455 10.0059 15.7561L9.9805 15.7629C9.93828 15.7747 9.89765 15.7916 9.8595 15.8131L8.66463 16.5034C8.4372 16.6343 8.17939 16.7032 7.91697 16.7032C7.65456 16.7032 7.39675 16.6343 7.16932 16.5034C6.94223 16.3718 6.75363 16.1829 6.62238 15.9556C6.49112 15.7283 6.42179 15.4706 6.42132 15.2081V13.8283C6.42085 13.7847 6.41508 13.7413 6.40413 13.6991L6.39726 13.673C6.38572 13.6327 6.36957 13.594 6.34913 13.5575C6.34638 13.5513 6.34226 13.5471 6.33882 13.541C6.31858 13.5078 6.29484 13.4769 6.26801 13.4488L6.25495 13.4344C6.22439 13.4049 6.19074 13.3789 6.15457 13.3567L6.14495 13.3491L3.75589 11.9693C3.67176 11.9208 3.57632 11.8952 3.47917 11.8952C3.38202 11.8952 3.28659 11.9208 3.20245 11.9693L0.813394 13.3491C0.729259 13.3977 0.659374 13.4676 0.610745 13.5517C0.562117 13.6358 0.536455 13.7312 0.536332 13.8283V16.5873C0.536332 16.7846 0.642207 16.9674 0.813394 17.0658L3.20245 18.4456L3.21414 18.4504C3.25109 18.4709 3.29032 18.4871 3.33101 18.4985L3.35164 18.5026C3.38876 18.5116 3.42726 18.5164 3.46508 18.5178C3.46989 18.5178 3.4747 18.5198 3.47883 18.5198L3.4857 18.5184C3.52695 18.5184 3.5682 18.5123 3.60945 18.5026L3.63558 18.4958C3.67683 18.4834 3.71808 18.4676 3.75589 18.4456L4.95076 17.756C5.17826 17.6253 5.43605 17.5565 5.69842 17.5565C5.96079 17.5565 6.21857 17.6253 6.44607 17.756C6.67321 17.8875 6.86184 18.0764 6.9931 18.3037C7.12437 18.531 7.19367 18.7888 7.19407 19.0513V20.4304C7.19407 20.4751 7.20094 20.5184 7.21126 20.5603L7.21813 20.5864C7.22982 20.6263 7.24563 20.6655 7.26626 20.7019L7.27657 20.7178C7.29719 20.7514 7.32057 20.7824 7.34738 20.8106L7.36044 20.8243C7.39069 20.8546 7.42438 20.88 7.46151 20.9027L7.47044 20.9096L9.8595 22.2894C9.94366 22.3379 10.0391 22.3634 10.1362 22.3634C10.2334 22.3634 10.3288 22.3379 10.4129 22.2894L12.802 20.9103C12.886 20.8616 12.9558 20.7917 13.0043 20.7076C13.0528 20.6235 13.0783 20.5281 13.0784 20.4311V17.6721C13.0784 17.575 13.0529 17.4796 13.0043 17.3955C12.9558 17.3114 12.8861 17.2409 12.802 17.1923Z" fill="currentColor"/> <path d="M104.669 18.2058H102.398V8.0033H104.226L104.419 9.5048C105.054 8.44605 106.344 7.6953 107.865 7.6953C110.04 7.6953 111.464 9.1583 111.464 11.449V18.2058H109.193V11.5645C109.193 10.4288 108.442 9.67805 107.172 9.67805C105.689 9.67805 104.688 10.6983 104.669 12.0265V18.2058Z" fill="currentColor"/> <path d="M95.7863 18.4945C92.4753 18.4945 90.5503 16.1653 90.5503 13.0083C90.5503 9.67805 92.8025 7.6953 95.7863 7.6953C99.078 7.6953 101.003 10.0053 101.003 13.0083C101.003 16.454 98.8278 18.4945 95.7863 18.4945ZM95.7863 16.5503C97.615 16.5503 98.693 15.0488 98.693 13.0083C98.693 10.987 97.5573 9.63954 95.7863 9.63954C94.0153 9.63954 92.8603 10.987 92.8603 13.0083C92.8603 15.2413 94.1115 16.5503 95.7863 16.5503Z" fill="currentColor"/> <path d="M88.0233 6.6364C87.1955 6.6364 86.5603 5.9819 86.5603 5.15415C86.5603 4.3264 87.1955 3.69116 88.0233 3.69116C88.8703 3.69116 89.4863 4.3264 89.4863 5.15415C89.4863 5.9819 88.8703 6.6364 88.0233 6.6364ZM89.159 18.2056H86.8875V8.00315H89.159V18.2056Z" fill="currentColor"/> <path d="M85.417 18.205H84.108C81.8942 18.205 80.7008 17.1078 80.7008 15.0865V9.92754H78.9105V8.00255H80.7008V4.5183H82.9722V8.00255H85.6095V9.92754H82.9722V14.9325C82.9722 15.7988 83.415 16.28 84.262 16.28H85.417V18.205Z" fill="currentColor"/> <path d="M76.4989 6.6364C75.6712 6.6364 75.0359 5.9819 75.0359 5.15415C75.0359 4.3264 75.6712 3.69116 76.4989 3.69116C77.3459 3.69116 77.9619 4.3264 77.9619 5.15415C77.9619 5.9819 77.3459 6.6364 76.4989 6.6364ZM77.6347 18.2056H75.3632V8.00315H77.6347V18.2056Z" fill="currentColor"/> <path d="M66.7781 18.2058H64.5066V8.0033H66.3353L66.5278 9.5048C67.1631 8.44605 68.4528 7.6953 69.9736 7.6953C72.1488 7.6953 73.5733 9.1583 73.5733 11.449V18.2058H71.3018V11.5645C71.3018 10.4288 70.5511 9.67805 69.2806 9.67805C67.7983 9.67805 66.7973 10.6983 66.7781 12.0265V18.2058Z" fill="currentColor"/> <path d="M57.5936 22.3638C54.7446 22.3638 52.7811 20.9778 52.7811 18.7833H55.0526C55.0526 19.7458 56.0729 20.5158 57.5936 20.5158C59.4031 20.5158 60.3464 19.4378 60.3464 17.8978V16.454C59.6919 17.4358 58.5561 18.0518 57.0931 18.0518C54.3596 18.0518 52.3961 15.9343 52.3961 12.8928C52.3961 9.83204 54.3596 7.6953 57.0739 7.6953C58.6716 7.6953 59.9614 8.44605 60.5966 9.58179L60.7891 8.0033H62.5986V17.8978C62.5986 20.5928 60.6929 22.3638 57.5936 22.3638ZM57.5359 16.146C59.1914 16.146 60.3464 14.7985 60.3464 12.8735C60.3464 10.9485 59.1914 9.6203 57.5359 9.6203C55.8804 9.6203 54.7446 10.9485 54.7446 12.8928C54.7446 14.8178 55.8804 16.146 57.5359 16.146Z" fill="currentColor"/> <path d="M46.3247 18.4945C43.0137 18.4945 41.0887 16.1653 41.0887 13.0083C41.0887 9.67805 43.3409 7.6953 46.3247 7.6953C49.6164 7.6953 51.5414 10.0053 51.5414 13.0083C51.5414 16.454 49.3662 18.4945 46.3247 18.4945ZM46.3247 16.5503C48.1534 16.5503 49.2314 15.0488 49.2314 13.0083C49.2314 10.987 48.0957 9.63954 46.3247 9.63954C44.5537 9.63954 43.3987 10.987 43.3987 13.0083C43.3987 15.2413 44.6499 16.5503 46.3247 16.5503Z" fill="currentColor"/> <path d="M33.5715 18.4942C29.4328 18.4942 26.7955 15.6452 26.7955 11.4295C26.7955 7.34851 29.375 4.44176 33.5715 4.44176C37.075 4.44176 39.4813 6.48226 40.0588 9.92801H37.691C37.2675 7.81051 35.7083 6.52076 33.5715 6.52076C30.8573 6.52076 29.1633 8.42651 29.1633 11.4295C29.1633 14.5095 30.8573 16.396 33.5715 16.396C35.7468 16.396 37.2675 15.1447 37.691 13.008H40.0588C39.4428 16.5115 37.0943 18.4942 33.5715 18.4942Z" fill="currentColor"/> </svg></div><div id="w-node-fdba8564-7ee2-f6f5-24b9-fc421acd1282-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="72" height="23" viewBox="0 0 72 23" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M51.5867 22.3428C51.4426 22.3428 51.2998 22.3153 51.1667 22.2619C51.0335 22.2085 50.9125 22.1303 50.8106 22.0316C50.7087 21.933 50.6279 21.8158 50.5727 21.6869C50.5176 21.558 50.4892 21.4198 50.4892 21.2803V1.44697C50.4892 1.30744 50.5176 1.16928 50.5727 1.04037C50.6279 0.911455 50.7087 0.794325 50.8106 0.695664C50.9125 0.597003 51.0335 0.518744 51.1667 0.465358C51.2998 0.411972 51.4426 0.384503 51.5867 0.384522C51.7308 0.384485 51.8736 0.41194 52.0068 0.465318C52.1399 0.518696 52.2609 0.596951 52.3629 0.695614C52.4648 0.794277 52.5457 0.911413 52.6008 1.04033C52.656 1.16925 52.6843 1.30743 52.6843 1.44697V21.2803C52.6843 21.4199 52.656 21.558 52.6008 21.687C52.5457 21.8159 52.4648 21.933 52.3629 22.0317C52.2609 22.1303 52.1399 22.2086 52.0068 22.262C51.8736 22.3153 51.7308 22.3428 51.5867 22.3428ZM70.357 19.5597C70.4503 19.4534 70.521 19.3303 70.5652 19.1975C70.6094 19.0646 70.6261 18.9247 70.6144 18.7856C70.6027 18.6466 70.5628 18.5111 70.497 18.387C70.4312 18.2628 70.3408 18.1525 70.2309 18.0622C70.121 17.9718 69.9939 17.9033 69.8567 17.8606C69.7195 17.8178 69.575 17.8016 69.4313 17.813C69.2877 17.8243 69.1477 17.8629 69.0195 17.9266C68.8913 17.9903 68.7772 18.0778 68.684 18.1842C67.5498 19.4766 65.8522 20.2179 64.0256 20.2179C60.9998 20.2179 58.538 17.8347 58.538 14.9055C58.538 11.9763 60.9998 9.59327 64.0256 9.59327C66.4843 9.59327 68.5385 11.3034 68.9843 13.5597H62.2692C62.1251 13.5597 61.9823 13.5872 61.8492 13.6406C61.716 13.694 61.595 13.7722 61.4931 13.8709C61.3912 13.9696 61.3103 14.0867 61.2552 14.2157C61.2001 14.3446 61.1717 14.4828 61.1717 14.6223C61.1717 14.7618 61.2001 14.9 61.2552 15.0289C61.3104 15.1578 61.3912 15.2749 61.4931 15.3736C61.5951 15.4723 61.716 15.5505 61.8492 15.6039C61.9824 15.6573 62.1251 15.6848 62.2692 15.6848H70.1715C70.3157 15.6848 70.4584 15.6573 70.5916 15.604C70.7248 15.5506 70.8458 15.4723 70.9477 15.3737C71.0496 15.275 71.1304 15.1578 71.1856 15.0289C71.2407 14.9 71.2691 14.7618 71.269 14.6223V14.4805C71.269 10.6137 68.0197 7.46796 64.0252 7.46796C59.7888 7.46796 56.3423 10.8044 56.3423 14.9055C56.3423 19.0066 59.7894 22.3428 64.0256 22.3428C66.4974 22.3428 68.8051 21.3282 70.357 19.5597ZM46.8308 21.2803V14.4801C46.8308 10.6133 43.5815 7.46768 39.5871 7.46768C35.3506 7.46768 31.9041 10.8041 31.9041 14.9052C31.9041 19.0063 35.3506 22.3428 39.5871 22.3428C39.7312 22.3428 39.8739 22.3153 40.0071 22.2619C40.1403 22.2085 40.2613 22.1303 40.3632 22.0316C40.4651 21.933 40.5459 21.8158 40.6011 21.6869C40.6562 21.558 40.6846 21.4198 40.6846 21.2803C40.6846 21.1408 40.6563 21.0026 40.6011 20.8737C40.546 20.7448 40.4651 20.6276 40.3632 20.529C40.2613 20.4303 40.1403 20.3521 40.0071 20.2987C39.874 20.2453 39.7312 20.2178 39.5871 20.2179C36.5612 20.2179 34.0995 17.8347 34.0995 14.9055C34.0995 11.9763 36.5612 9.59327 39.5871 9.59327C42.3708 9.59327 44.6358 11.7856 44.6358 14.4808V21.2806C44.6358 21.4201 44.6641 21.5583 44.7193 21.6872C44.7744 21.8161 44.8553 21.9333 44.9572 22.0319C45.0591 22.1306 45.1801 22.2089 45.3133 22.2622C45.4464 22.3156 45.5892 22.3431 45.7333 22.343C46.0244 22.3429 46.3035 22.2309 46.5093 22.0316C46.7151 21.8324 46.8308 21.5621 46.8308 21.2803ZM13.6084 18.0928C13.6084 17.0559 13.215 15.6415 11.3405 14.7916C10.2158 14.2815 8.80448 14.072 7.43963 13.8694C4.24211 13.3948 3.10669 12.9982 3.10669 11.7177C3.10669 10.3228 5.10496 9.59285 7.07906 9.59285C8.32304 9.59285 10.1107 9.83569 11.5643 10.9929C11.6756 11.0815 11.8039 11.1481 11.9418 11.1887C12.0797 11.2294 12.2246 11.2433 12.3681 11.2298C12.5115 11.2163 12.6509 11.1755 12.7781 11.1099C12.9053 11.0442 13.0179 10.9549 13.1095 10.8471C13.2011 10.7393 13.2698 10.6152 13.3118 10.4816C13.3538 10.3481 13.3682 10.2079 13.3542 10.069C13.3402 9.93012 13.2981 9.79524 13.2303 9.67209C13.1625 9.54894 13.0703 9.43992 12.9589 9.35127C11.0034 7.79418 8.68202 7.46726 7.07935 7.46726C2.84195 7.46726 0.911998 9.67034 0.911998 11.7172C0.911998 12.7611 1.30702 14.185 3.18862 15.041C4.31955 15.5554 5.73694 15.7656 7.10757 15.9692C10.2854 16.441 11.4137 16.8325 11.4137 18.0923C11.4137 19.3634 9.84624 20.2172 7.51389 20.2172C5.1261 20.2172 3.3063 19.2799 2.43433 18.7209C2.19157 18.5654 1.89497 18.5096 1.60974 18.5658C1.32451 18.622 1.074 18.7855 0.9133 19.0205C0.833739 19.1368 0.778632 19.2672 0.751126 19.4042C0.72362 19.5412 0.724254 19.682 0.752992 19.8188C0.78173 19.9555 0.838009 20.0854 0.918615 20.2011C0.999221 20.3168 1.10257 20.4159 1.22278 20.4929C3.08339 21.6858 5.3176 22.3428 7.51316 22.3428C11.7238 22.3428 13.6084 20.2081 13.6084 18.0928ZM29.5221 19.2069C29.6832 18.9721 29.7414 18.6851 29.6839 18.4089C29.6264 18.1326 29.458 17.8898 29.2156 17.7337C28.9732 17.5777 28.6766 17.5214 28.3913 17.577C28.1059 17.6327 27.855 17.7958 27.6939 18.0305C26.7539 19.4001 25.1807 20.2175 23.4863 20.2175C20.4604 20.2175 17.9987 17.8344 17.9987 14.9052C17.9987 11.976 20.4604 9.59299 23.4863 9.59299C25.181 9.59299 26.7539 10.4104 27.6939 11.78C27.7737 11.8962 27.8763 11.9961 27.996 12.0739C28.1156 12.1517 28.25 12.2059 28.3913 12.2334C28.5326 12.261 28.6781 12.2613 28.8196 12.2344C28.961 12.2075 29.0956 12.1539 29.2156 12.0766C29.3357 11.9994 29.4388 11.9 29.5192 11.7842C29.5996 11.6684 29.6556 11.5383 29.6841 11.4016C29.7125 11.2648 29.7129 11.1239 29.6851 10.987C29.6573 10.8501 29.6019 10.7198 29.5221 10.6036C28.1742 8.63985 25.9175 7.46754 23.4863 7.46754C19.2499 7.46754 15.8034 10.804 15.8034 14.9052C15.8034 19.0063 19.2499 22.3428 23.4863 22.3428C25.9178 22.3428 28.1742 21.1705 29.5221 19.2069Z" fill="currentColor"/> </svg></div><div id="w-node-_848efdbb-6451-243d-d5f8-636deff6a9a9-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="108" height="22" viewBox="0 0 108 22" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M24.3953 5.60716H29.9739C34.0062 5.60716 35.037 7.95718 35.037 9.86719C35.037 11.7771 33.9961 14.1271 29.9739 14.1271H26.5277V20.8472H24.3953V5.60716ZM26.5379 12.3271H29.3574C31.0553 12.3271 32.743 11.9472 32.743 9.87714C32.743 7.80717 31.0451 7.42715 29.3574 7.42715H26.5379V12.3271Z" fill="currentColor"/> <path d="M37.8364 5.53803C38.6448 5.53803 39.3018 6.16803 39.3119 6.93804C39.322 7.71806 38.6853 8.35803 37.8768 8.37806C37.0683 8.39803 36.4013 7.78805 36.371 7.00804C36.3609 6.61806 36.5125 6.24804 36.7854 5.96803C37.0481 5.69804 37.4321 5.53803 37.8364 5.53803ZM36.846 10.6481H38.8268V20.858H36.846V10.6481Z" fill="currentColor"/> <path d="M41.1307 10.6473H43.1418V12.2273H43.1924C43.8897 11.0273 45.2439 10.3073 46.6688 10.3973C48.7204 10.3973 50.489 11.5873 50.489 14.2973V20.8674H48.5082V14.8473C48.5082 12.9273 47.3662 12.2174 46.0928 12.2174C44.4253 12.2174 43.152 13.2474 43.152 15.6173V20.8674H41.1307V10.6473Z" fill="currentColor"/> <path d="M54.1572 16.4671C54.1572 18.2471 55.8752 19.4171 57.7247 19.4171C58.8867 19.3871 59.9681 18.8171 60.6253 17.8971L62.1514 19.0171C61.0392 20.4271 59.2809 21.2171 57.452 21.1271C54.0966 21.1271 52.0147 18.8071 52.0147 15.7671C51.9541 14.3471 52.5099 12.9671 53.5407 11.9571C54.5715 10.9471 55.9864 10.3871 57.4619 10.4071C61.1909 10.4071 62.6162 13.1571 62.6162 15.7871V16.4771H54.1572V16.4671ZM60.5037 14.9171C60.4533 13.2171 59.4731 11.9671 57.452 11.9671C55.7237 11.9571 54.2785 13.2471 54.1673 14.9171H60.5037Z" fill="currentColor"/> <path d="M71.7119 13.3677C71.0548 12.6177 70.0949 12.1977 69.0742 12.2277C66.891 12.2277 65.7696 13.9277 65.7696 15.8477C65.7187 16.7577 66.0527 17.6377 66.6994 18.2977C67.3461 18.9577 68.2452 19.3277 69.1854 19.3177C70.176 19.3477 71.1254 18.9277 71.7524 18.1777L73.1772 19.5377C72.1363 20.5977 70.671 21.1678 69.1651 21.1077C67.6796 21.1777 66.2345 20.6477 65.1831 19.6278C64.1323 18.6177 63.5661 17.2177 63.6373 15.7877C63.5661 14.3478 64.1323 12.9477 65.1831 11.9278C66.2345 10.9077 67.6796 10.3577 69.175 10.4077C70.7011 10.3677 72.1768 10.9577 73.238 12.0177L71.7119 13.3677Z" fill="currentColor"/> <path d="M79.1197 10.3884C82.1719 10.4384 84.6174 12.8584 84.5873 15.8084C84.5566 18.7584 82.0608 21.1284 78.9987 21.1084C75.9465 21.0884 73.4703 18.6984 73.4703 15.7484C73.4703 14.3084 74.0667 12.9384 75.1279 11.9284C76.1989 10.9184 77.6341 10.3684 79.1197 10.3884ZM79.1197 19.3084C81.252 19.3084 82.5963 17.8384 82.5963 15.7484C82.5963 13.6684 81.252 12.1984 79.1197 12.1984C76.9874 12.1984 75.6333 13.6684 75.6333 15.7484C75.6333 17.8284 76.977 19.3084 79.1197 19.3084Z" fill="currentColor"/> <path d="M86.3759 10.6474H88.3872V12.2274C89.0848 11.0174 90.4488 10.3074 91.8736 10.3974C93.9254 10.3974 95.6941 11.5874 95.6941 14.2974V20.8674H93.6828V14.8474C93.6828 12.9274 92.5405 12.2174 91.2773 12.2174C89.6001 12.2174 88.3368 13.2474 88.3368 15.6174V20.8674H86.3863V10.6474H86.3759Z" fill="currentColor"/> <path d="M99.423 16.4679C99.423 18.2479 101.141 19.4179 102.99 19.4179C104.152 19.3779 105.234 18.8179 105.891 17.8979L107.417 19.0179C106.305 20.4179 104.557 21.1979 102.728 21.0979C99.3825 21.0979 97.2907 18.7779 97.2907 15.7379C97.23 14.3179 97.7857 12.9279 98.8168 11.9179C99.8474 10.8979 101.272 10.3479 102.748 10.3779C106.477 10.3779 107.902 13.1279 107.902 15.7579V16.4479L99.423 16.4679ZM105.76 14.9079C105.709 13.2079 104.739 11.9579 102.707 11.9579C100.979 11.9479 99.5342 13.2379 99.423 14.9079H105.76Z" fill="currentColor"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.329 1.10816C12.1168 0.858157 11.7631 0.798156 11.4801 0.958156L11.2173 1.09815L8.35732 2.70815L9.02432 3.86816L10.8838 2.81815L10.4291 5.27815L11.753 5.51816L12.2179 3.04816L13.5923 4.66816L14.6231 3.80815L12.5413 1.34816H12.5311L12.329 1.10816ZM8.31691 21.8581C9.00412 21.8581 9.55997 21.3182 9.55997 20.6582C9.55997 19.9982 9.00412 19.4582 8.31691 19.4582C7.6297 19.4582 7.07385 19.9982 7.07385 20.6582C7.06378 21.3182 7.6297 21.8581 8.31691 21.8581ZM9.98439 15.2682L9.53976 17.7382L8.20575 17.4981L8.65038 15.0381L6.79092 16.0981L6.11378 14.9382L8.95358 13.3282L9.21636 13.1782C9.49929 13.0181 9.85303 13.0782 10.0653 13.3282L10.2674 13.5681L12.3796 16.0182L11.3487 16.8882L9.98439 15.2682ZM11.0658 9.36816L10.6211 11.8382L9.28711 11.5982L9.73174 9.14816L7.88235 10.1981L7.21535 9.03816L10.0451 7.43818V7.41815H10.0653L10.328 7.26815C10.611 7.10818 10.9647 7.16816 11.1769 7.41815L11.379 7.64817L13.4811 10.1082L12.4503 10.9782L11.0658 9.36816ZM2.34423 19.1282H2.33413L2.06127 19.0482C1.76819 18.9682 1.57617 18.6882 1.59639 18.3882L1.83893 15.0482L3.1224 15.1382L2.97081 17.1681L4.9617 15.8282L5.67922 16.8782L3.72876 18.1881L5.71964 18.7582L5.36596 19.9782L2.34423 19.1282ZM15.5528 20.5082L15.4619 20.7981C15.3709 21.0782 15.1082 21.2681 14.805 21.2482L14.522 21.2281L14.5018 21.2381L14.4917 21.2281L11.3588 21.0181L11.4397 19.7482L13.5215 19.8882L12.1572 17.9982L13.1981 17.2582L14.5928 19.1982L15.1991 17.2381L16.4219 17.6081L15.5528 20.5082ZM19.2315 13.6282L19.383 13.8981C19.5346 14.1682 19.474 14.5082 19.2315 14.7081L19.0091 14.8982V14.9082H18.999L16.5634 16.9481L15.7145 15.9581L17.3113 14.6182L14.9162 14.1981L15.1486 12.9182L17.5639 13.3382L16.5534 11.5382L17.6953 10.9082L19.2315 13.6282ZM16.7555 8.04816L14.5928 9.19818L13.9662 8.05818L16.0985 6.92813L14.1481 6.13816L14.6433 4.93816L17.6145 6.12816L17.6246 6.11815L17.6347 6.13816L17.9075 6.24816C18.2006 6.36817 18.3623 6.66818 18.3118 6.96814L18.2613 7.26815L17.7054 10.3182L16.4119 10.0881L16.7555 8.04816ZM2.24317 10.7282L4.64841 11.1282L4.42608 12.4082L2.00063 11.9981L3.03144 13.7982L1.88946 14.4382L0.333131 11.7282L0.18154 11.4682C0.0299494 11.1982 0.0905872 10.8581 0.323023 10.6582L0.545356 10.4682V10.4581H0.555465L2.9607 8.40815L3.81971 9.39815L2.24317 10.7282ZM5.87126 5.18816L7.468 6.94816L6.48772 7.81815L4.85053 6.01816L4.47661 8.06814L3.18303 7.83818L3.74897 4.79815L3.80961 4.48816C3.86014 4.18816 4.1229 3.96816 4.42608 3.95815L4.70905 3.94816L4.71916 3.93816L4.72926 3.94816L7.94297 3.81816L7.99351 5.11816L5.87126 5.18816Z" fill="currentColor"/> </svg></div><div id="w-node-e2c63ac1-e201-91fe-bd92-b28ec86c53a5-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="82" height="21" viewBox="0 0 82 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M0.66095 19.9433V1.56836H8.46241C9.55294 1.56836 10.5428 1.83086 11.432 2.35586C12.3211 2.86336 13.0175 3.55461 13.5208 4.42961C14.0409 5.30461 14.301 6.30211 14.301 7.42211C14.301 8.52461 14.0409 9.53086 13.5208 10.4409C13.0175 11.3334 12.3211 12.0421 11.432 12.5671C10.5428 13.0921 9.55294 13.3546 8.46241 13.3546H4.31002V19.9433H0.66095ZM10.6519 19.9433L6.1723 11.6484L10.0479 10.9921L15.0308 19.9696L10.6519 19.9433ZM4.31002 10.1521H8.28625C8.73924 10.1521 9.1335 10.0471 9.46905 9.83711C9.82137 9.60961 10.0898 9.30336 10.2744 8.91836C10.4589 8.51587 10.5512 8.06962 10.5512 7.57961C10.5512 7.05461 10.4421 6.59962 10.224 6.21461C10.0059 5.82961 9.68715 5.53211 9.26772 5.32211C8.84829 5.09461 8.36175 4.98086 7.80809 4.98086H4.31002V10.1521Z" fill="currentColor"/> <path d="M22.3449 20.2079C20.902 20.2079 19.6353 19.9017 18.5447 19.2891C17.471 18.6766 16.6322 17.8366 16.0281 16.7691C15.441 15.7017 15.1473 14.4766 15.1473 13.0941C15.1473 12.0092 15.3151 11.0204 15.6506 10.1279C15.9862 9.23539 16.4559 8.4654 17.0599 7.81789C17.6639 7.1529 18.377 6.64539 19.1991 6.29539C20.0379 5.92789 20.9439 5.74414 21.9171 5.74414C22.823 5.74414 23.6618 5.91915 24.4337 6.26914C25.2054 6.61915 25.8681 7.10914 26.4218 7.73914C26.9922 8.35164 27.4284 9.08665 27.7304 9.94414C28.0324 10.7841 28.1665 11.6941 28.1331 12.6741L28.1079 13.8291H17.4123L16.8334 11.5454H25.1635L24.7608 12.0179V11.4404C24.7272 10.9679 24.5762 10.5479 24.3077 10.1804C24.0562 9.7954 23.729 9.49789 23.3264 9.28789C22.9237 9.0604 22.4706 8.94664 21.9673 8.94664C21.2291 8.94664 20.6 9.0954 20.0798 9.39289C19.5765 9.6904 19.1907 10.1279 18.9222 10.7054C18.6538 11.2829 18.5195 11.9829 18.5195 12.8054C18.5195 13.6454 18.6874 14.3716 19.023 14.9841C19.3753 15.5967 19.8618 16.0778 20.4826 16.4279C21.1201 16.7603 21.8666 16.9266 22.7222 16.9266C23.3095 16.9266 23.8464 16.8304 24.333 16.6379C24.8195 16.4453 25.3395 16.1129 25.8933 15.6404L27.6046 18.1341C27.118 18.5892 26.5811 18.9741 25.9939 19.2891C25.4067 19.5867 24.8027 19.8141 24.1819 19.9716C23.5612 20.1291 22.9489 20.2079 22.3449 20.2079Z" fill="currentColor"/> <path d="M33.9954 20.207C32.7538 20.207 31.6465 19.997 30.6735 19.577C29.7172 19.1396 28.9455 18.5445 28.3582 17.792L30.598 15.797C31.1013 16.3745 31.6717 16.7945 32.3093 17.057C32.9469 17.3021 33.5843 17.4245 34.2219 17.4245C34.4735 17.4245 34.7 17.3983 34.9014 17.3458C35.1194 17.2758 35.304 17.1883 35.455 17.0833C35.606 16.9608 35.7151 16.8208 35.7822 16.6633C35.8661 16.4883 35.908 16.3046 35.908 16.112C35.908 15.7271 35.757 15.4295 35.455 15.2195C35.2873 15.1145 35.0272 15.0007 34.6749 14.8783C34.3226 14.7382 33.8696 14.5895 33.3159 14.432C32.4603 14.2046 31.7305 13.9421 31.1265 13.6445C30.5392 13.3295 30.0695 12.9795 29.7172 12.5945C29.4152 12.227 29.1803 11.8333 29.0125 11.4133C28.8615 10.9758 28.786 10.4945 28.786 9.96953C28.786 9.33953 28.9203 8.77079 29.1887 8.26328C29.4571 7.73828 29.8263 7.29203 30.296 6.92453C30.7826 6.55703 31.3362 6.27704 31.957 6.08453C32.5777 5.87453 33.232 5.76953 33.9199 5.76953C34.6078 5.76953 35.2789 5.85704 35.9332 6.03203C36.5875 6.20704 37.1915 6.46079 37.7451 6.79328C38.3155 7.10828 38.8105 7.48454 39.2299 7.92203L37.3173 10.127C37.0153 9.82953 36.6714 9.55828 36.2855 9.31328C35.9164 9.06829 35.5305 8.87579 35.1279 8.73578C34.7252 8.59579 34.3645 8.52578 34.0457 8.52578C33.7605 8.52578 33.5005 8.55203 33.2656 8.60453C33.0475 8.65703 32.8629 8.74454 32.7119 8.86703C32.5609 8.97203 32.4435 9.10328 32.3596 9.26078C32.2925 9.41828 32.2589 9.59328 32.2589 9.78578C32.2589 9.97828 32.3008 10.162 32.3848 10.337C32.4854 10.512 32.6197 10.6608 32.7874 10.7833C32.972 10.8883 33.2404 11.0108 33.5927 11.1508C33.9618 11.2908 34.4568 11.4483 35.0775 11.6233C35.8828 11.8508 36.5623 12.1045 37.116 12.3845C37.6864 12.6645 38.1394 12.9883 38.4749 13.3558C38.7602 13.6708 38.9698 14.0295 39.1041 14.432C39.2384 14.8346 39.3054 15.2808 39.3054 15.7708C39.3054 16.6282 39.0705 17.3895 38.6008 18.0545C38.1478 18.7196 37.5186 19.2446 36.7133 19.6295C35.908 20.0145 35.002 20.207 33.9954 20.207Z" fill="currentColor"/> <path d="M46.9112 20.2079C45.4683 20.2079 44.2017 19.9017 43.1111 19.2891C42.0374 18.6766 41.1985 17.8366 40.5945 16.7691C40.0072 15.7017 39.7137 14.4766 39.7137 13.0941C39.7137 12.0092 39.8814 11.0204 40.217 10.1279C40.5526 9.23539 41.0223 8.4654 41.6263 7.81789C42.2303 7.1529 42.9434 6.64539 43.7654 6.29539C44.6043 5.92789 45.5103 5.74414 46.4833 5.74414C47.3893 5.74414 48.2282 5.91915 48.9999 6.26914C49.7717 6.61915 50.4344 7.10914 50.988 7.73914C51.5584 8.35164 51.9947 9.08665 52.2967 9.94414C52.5987 10.7841 52.7329 11.6941 52.6993 12.6741L52.6742 13.8291H41.9786L41.3998 11.5454H49.7297L49.3271 12.0179V11.4404C49.2935 10.9679 49.1425 10.5479 48.8741 10.1804C48.6224 9.7954 48.2953 9.49789 47.8926 9.28789C47.49 9.0604 47.037 8.94664 46.5337 8.94664C45.7954 8.94664 45.1663 9.0954 44.6462 9.39289C44.1429 9.6904 43.757 10.1279 43.4886 10.7054C43.2202 11.2829 43.0859 11.9829 43.0859 12.8054C43.0859 13.6454 43.2537 14.3716 43.5892 14.9841C43.9416 15.5967 44.4282 16.0778 45.0489 16.4279C45.6865 16.7603 46.433 16.9266 47.2886 16.9266C47.8759 16.9266 48.4127 16.8304 48.8993 16.6379C49.3859 16.4453 49.9059 16.1129 50.4596 15.6404L52.1709 18.1341C51.6843 18.5892 51.1475 18.9741 50.5602 19.2891C49.973 19.5867 49.369 19.8141 48.7483 19.9716C48.1276 20.1291 47.5151 20.2079 46.9112 20.2079Z" fill="currentColor"/> <path d="M54.0828 19.9445V6.05828H57.5054L57.6061 8.89328L56.9014 9.20828C57.086 8.57828 57.4132 8.00954 57.8829 7.50203C58.3695 6.97703 58.9483 6.55703 59.6193 6.24203C60.2905 5.92703 60.9952 5.76953 61.7333 5.76953C62.7399 5.76953 63.5788 5.97953 64.2499 6.39953C64.9378 6.81953 65.4495 7.45829 65.785 8.31578C66.1373 9.15578 66.3135 10.197 66.3135 11.4395V19.9445H62.7399V11.7283C62.7399 11.0983 62.6561 10.5733 62.4883 10.1533C62.3205 9.73328 62.0604 9.42704 61.7081 9.23453C61.3727 9.04203 60.9531 8.95454 60.4498 8.97203C60.0472 8.97203 59.6697 9.04204 59.3174 9.18203C58.9819 9.30453 58.6882 9.48829 58.4365 9.73328C58.2017 9.97829 58.0087 10.2583 57.8577 10.5733C57.7236 10.8883 57.6564 11.2295 57.6564 11.597V19.9445H55.8948C55.509 19.9445 55.165 19.9445 54.863 19.9445C54.561 19.9445 54.301 19.9445 54.0828 19.9445Z" fill="currentColor"/> <path d="M73.6886 20.207C72.5143 20.207 71.4657 19.9008 70.5429 19.2883C69.6369 18.6583 68.9155 17.8095 68.3786 16.742C67.8585 15.657 67.5984 14.4058 67.5984 12.9883C67.5984 11.6058 67.8585 10.372 68.3786 9.28703C68.9155 8.18453 69.6369 7.32703 70.5429 6.71453C71.4657 6.08453 72.5143 5.76953 73.6886 5.76953C74.3095 5.76953 74.905 5.87453 75.4754 6.08453C76.0627 6.27703 76.5827 6.54829 77.0357 6.89828C77.5055 7.24828 77.883 7.64203 78.1682 8.07953C78.4534 8.49953 78.6129 8.93704 78.6463 9.39203L77.7403 9.57578V0.519531H81.3391V19.9445H77.9417L77.7907 16.742L78.4953 16.8208C78.4619 17.2582 78.3109 17.6782 78.0423 18.0808C77.7739 18.4833 77.4132 18.8508 76.9602 19.1833C76.5241 19.4983 76.0208 19.752 75.4502 19.9445C74.8966 20.1195 74.3095 20.207 73.6886 20.207ZM74.4939 17.1095C75.1651 17.1095 75.7522 16.9346 76.2556 16.5845C76.7589 16.2345 77.1532 15.7533 77.4384 15.1408C77.7236 14.5282 77.8662 13.8108 77.8662 12.9883C77.8662 12.1833 77.7236 11.4745 77.4384 10.862C77.1532 10.2495 76.7589 9.76828 76.2556 9.41828C75.7522 9.06829 75.1651 8.89328 74.4939 8.89328C73.8229 8.89328 73.2356 9.06829 72.7323 9.41828C72.2459 9.76828 71.8599 10.2495 71.5747 10.862C71.3063 11.4745 71.172 12.1833 71.172 12.9883C71.172 13.8108 71.3063 14.5282 71.5747 15.1408C71.8599 15.7533 72.2459 16.2345 72.7323 16.5845C73.2356 16.9346 73.8229 17.1095 74.4939 17.1095Z" fill="currentColor"/> </svg></div><div id="w-node-c9335c45-b587-fb81-eb82-b7b9b01da3f2-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="120" height="auto" viewBox="0 0 102 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M28.7745 17.625V13.6849H30.9634C31.7764 13.6849 32.48 13.5599 33.0585 13.2941C33.637 13.0283 34.0904 12.653 34.3875 12.1527C34.6846 11.6524 34.8409 11.0582 34.8409 10.3703C34.8409 9.71361 34.6846 9.11947 34.3875 8.60351C34.0748 8.08755 33.637 7.68103 33.0429 7.3996C32.4487 7.11817 31.7608 6.96181 30.9477 6.96181H26.867V17.6094H28.7745V17.625ZM30.9634 12.1683H28.7745V8.5097H30.9634C31.4168 8.5097 31.792 8.60351 32.0891 8.7755C32.3862 8.94748 32.6051 9.18201 32.7458 9.46344C32.8865 9.74488 32.9647 10.0576 32.9647 10.4016C32.9647 10.9488 32.8083 11.3866 32.48 11.6993C32.1517 12.012 31.6513 12.1683 30.9634 12.1683ZM39.5627 17.7657C40.3132 17.7657 40.9699 17.5937 41.5328 17.2498C42.0956 16.9058 42.5178 16.4211 42.8148 15.8113C43.1119 15.2016 43.2526 14.5136 43.2526 13.7475V13.5911C43.2526 12.825 43.1119 12.1371 42.8148 11.5273C42.5178 10.9175 42.0956 10.4328 41.5328 10.0888C40.9699 9.74488 40.3132 9.57289 39.5471 9.57289C38.7966 9.57289 38.1399 9.74488 37.5927 10.0888C37.0298 10.4328 36.6077 10.9175 36.3106 11.5273C36.0135 12.1371 35.8728 12.825 35.8728 13.5911V13.7475C35.8728 14.5136 36.0135 15.2016 36.3106 15.8113C36.6077 16.4211 37.0298 16.9058 37.5927 17.2498C38.1556 17.5937 38.8122 17.7657 39.5627 17.7657ZM39.5627 16.296C38.9373 16.296 38.4683 16.0615 38.1556 15.5768C37.8429 15.0921 37.6865 14.4823 37.6865 13.7318V13.5755C37.6865 13.0908 37.749 12.6687 37.8898 12.2778C38.0305 11.8869 38.2337 11.5742 38.5152 11.3553C38.7966 11.1208 39.1406 11.0113 39.5471 11.0113C39.9692 11.0113 40.3132 11.1208 40.5947 11.3553C40.8761 11.5898 41.0793 11.8869 41.2201 12.2778C41.3608 12.6687 41.4233 13.0908 41.4233 13.5755V13.7318C41.4233 14.2165 41.3608 14.6543 41.2201 15.0296C41.0793 15.4204 40.8761 15.7175 40.5947 15.952C40.3289 16.1866 39.9692 16.296 39.5627 16.296ZM46.6611 17.625V6.38331H44.8474V17.625H46.6611ZM49.2722 20.8146C49.9601 20.8146 50.4917 20.6113 50.867 20.2204C51.2422 19.8296 51.5236 19.3605 51.7269 18.8133L54.8852 9.69797H52.9464L51.3516 15.0139L49.71 9.69797H47.7399L50.523 17.5781L50.2728 18.2504C50.1477 18.6413 49.9601 18.9071 49.7412 19.0634C49.5067 19.2198 49.1784 19.298 48.7562 19.298L48.4122 19.2823V20.6739C48.7562 20.7677 49.0376 20.8146 49.2722 20.8146ZM57.6995 11.9025C57.9966 11.3397 58.4813 11.0426 59.1849 11.0426C59.6383 11.0426 59.9979 11.152 60.2324 11.3866C60.467 11.6211 60.592 11.9963 60.592 12.5279V17.6406H62.4057V12.1996C62.5152 11.8556 62.6872 11.5742 62.953 11.3709C63.2031 11.1677 63.5315 11.0582 63.9067 11.0582C64.3758 11.0582 64.7197 11.1677 64.9543 11.3709C65.1888 11.5898 65.2982 11.9651 65.2982 12.4967V17.625H67.1119V12.5123C67.1119 11.496 66.893 10.7455 66.4396 10.2765C66.0018 9.80742 65.3608 9.57289 64.5165 9.57289C63.9849 9.57289 63.5158 9.68234 63.1093 9.88559C62.7028 10.1045 62.3588 10.4016 62.093 10.7768C61.8898 10.3703 61.6083 10.0576 61.2331 9.86996C60.8578 9.6667 60.4357 9.57289 59.9354 9.57289C59.4507 9.57289 59.0129 9.65107 58.622 9.82305C58.2468 9.99504 57.9184 10.2296 57.6526 10.5579L57.5901 9.72924H55.8858V17.6406H57.6995V11.9025ZM71.349 17.7657C71.7868 17.7657 72.1777 17.6875 72.5217 17.5312C72.8657 17.3748 73.1627 17.1559 73.4129 16.8902C73.4754 17.2185 73.538 17.453 73.6161 17.625H75.4767V17.4999C75.2735 17.0778 75.1797 16.4993 75.1797 15.7801V12.2934C75.1797 11.6993 75.0546 11.1989 74.7888 10.7924C74.523 10.3859 74.1634 10.0732 73.7099 9.86996C73.2409 9.6667 72.7093 9.55725 72.1152 9.55725C71.4741 9.55725 70.8956 9.6667 70.3953 9.90123C69.895 10.1358 69.5041 10.4328 69.2383 10.8081C68.9725 11.1833 68.8318 11.5742 68.8318 11.9963H70.6455C70.6455 11.7931 70.708 11.6211 70.8174 11.4491C70.9269 11.2928 71.0832 11.1677 71.2865 11.0739C71.4898 10.9801 71.7243 10.9331 71.9901 10.9331C72.4435 10.9331 72.7718 11.0582 73.0064 11.2928C73.2409 11.5273 73.3503 11.8556 73.3503 12.2778V12.7937H72.2559C71.0989 12.7937 70.2233 13.0126 69.5823 13.466C68.9569 13.9195 68.6442 14.5605 68.6442 15.4048C68.6442 15.8582 68.7536 16.2647 68.9881 16.6244C69.2227 16.984 69.5354 17.2654 69.9419 17.4687C70.364 17.6719 70.8175 17.7657 71.349 17.7657ZM71.693 16.3117C71.3021 16.3117 71.0051 16.2178 70.7862 16.0146C70.5673 15.8113 70.4578 15.5455 70.4578 15.2328C70.4578 14.8107 70.6142 14.498 70.9425 14.2634C71.2709 14.0289 71.7556 13.9195 72.381 13.9195H73.3347V15.3892C73.194 15.6393 72.9751 15.8582 72.6937 16.0459C72.4122 16.2335 72.0683 16.3117 71.693 16.3117ZM78.8227 17.625V12.2309C79.1041 11.6211 79.6513 11.324 80.4643 11.324C80.6989 11.324 80.949 11.3397 81.1836 11.3866L81.1992 9.6667C81.1367 9.63543 81.0429 9.61979 80.9178 9.60416C80.7927 9.58852 80.6676 9.57289 80.5738 9.57289C80.1829 9.57289 79.8389 9.6667 79.5419 9.83869C79.2448 10.0263 78.9946 10.2765 78.7914 10.6048L78.7445 9.71361H77.009V17.625H78.8227ZM84.123 17.625V15.0608L84.9204 14.2478L87.2188 17.625H89.3295L86.093 12.997L89.0324 9.69797H86.8435L84.6859 12.1527L84.1386 12.825V6.38331H82.3249V17.625H84.123ZM93.6292 17.7657C94.3484 17.7657 94.9738 17.625 95.4897 17.3436C96.0057 17.0621 96.3966 16.7025 96.6937 16.2804L95.7243 15.3423C95.2239 15.9833 94.5673 16.3117 93.7543 16.3117C93.3477 16.3117 93.0038 16.2178 92.7067 16.0459C92.4096 15.8739 92.1751 15.6237 91.9875 15.311C91.8155 14.9983 91.706 14.6387 91.6748 14.2322H96.8344V13.466C96.8344 12.6843 96.7093 12.012 96.4591 11.4178C96.209 10.8237 95.8337 10.3703 95.3178 10.0419C94.8174 9.71361 94.1764 9.55725 93.4415 9.55725C92.7536 9.55725 92.1438 9.72924 91.5966 10.0576C91.0494 10.4016 90.6272 10.8706 90.3145 11.4804C90.0018 12.0902 89.8455 12.8094 89.8455 13.6224V13.9195C89.8455 14.6387 90.0018 15.2954 90.2989 15.8739C90.6116 16.4524 91.0494 16.9058 91.6279 17.2498C92.1907 17.5937 92.863 17.7657 93.6292 17.7657ZM91.706 12.9188C91.7842 12.3247 91.9718 11.8556 92.2689 11.5273C92.566 11.1989 92.9412 11.027 93.4259 11.027C93.9575 11.027 94.364 11.1989 94.6142 11.5273C94.8643 11.8556 95.0051 12.2778 95.0363 12.7937V12.9188H91.706ZM100.696 17.7657C101.134 17.7657 101.525 17.7032 101.885 17.5937V16.1866C101.666 16.2335 101.462 16.2647 101.259 16.2647C100.993 16.2647 100.774 16.2022 100.649 16.0928C100.509 15.9677 100.446 15.7488 100.446 15.4204V11.0739H101.838V9.72924H100.446V7.80611H98.6324V9.72924H97.3503V11.0739H98.6324V15.5455C98.6324 16.3273 98.82 16.8902 99.1953 17.2498C99.5549 17.5937 100.055 17.7657 100.696 17.7657Z" fill="currentColor"/> <path d="M19.2058 24.3638L0.115234 18.9071V5.82045L19.2058 0.36377V24.3638ZM17.3608 13.8882L3.32045 17.8908L17.3608 21.8934V13.8882ZM1.96019 8.35334V16.3742L16.0006 12.3716L1.96019 8.35334ZM17.3608 2.80286L3.32045 6.8211L17.3608 10.8237V2.80286Z" fill="currentColor"/> </svg></div><div id="w-node-_4c304643-dcf9-8b07-3f8e-d346a065bd60-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="106" height="25" viewBox="0 0 106 25" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14.1884 0.375733H10.9584C5.23243 0.382733 0.592433 5.01373 0.587433 10.7277C0.594433 16.4407 5.23343 21.0697 10.9584 21.0767H14.2004C19.9264 21.0717 24.5674 16.4417 24.5744 10.7277C24.5684 5.00773 19.9204 0.374733 14.1884 0.375733ZM1.87143 10.7277C1.87143 5.72273 5.93643 1.66673 10.9514 1.66673C11.4584 1.66673 11.9654 1.70773 12.4654 1.79173C16.8414 2.51373 20.0454 6.29673 20.0294 10.7227C20.0244 13.5637 17.9694 15.9877 15.1624 16.4627C16.9994 15.1247 18.0844 12.9917 18.0824 10.7227C18.0884 7.47573 15.8874 4.63873 12.7354 3.83173C12.1524 3.68073 11.5534 3.60573 10.9514 3.60573C7.01943 3.61773 3.83843 6.79973 3.83443 10.7227C3.82443 14.2777 5.64843 17.5867 8.66143 19.4827C4.67243 18.4377 1.88743 14.8437 1.87843 10.7277H1.87143ZM12.5684 5.13673C15.0654 5.85373 16.7844 8.13473 16.7824 10.7277C16.7834 13.3197 15.0644 15.5987 12.5684 16.3157C10.0724 15.5987 8.35443 13.3197 8.35443 10.7277C8.35243 8.13473 10.0714 5.85373 12.5684 5.13673ZM14.1884 19.7837H14.1514C13.6584 19.7807 13.1654 19.7397 12.6784 19.6587C8.41843 18.9537 5.25343 15.3387 5.12543 11.0317V10.7277C5.12843 7.88573 7.18443 5.46073 9.99143 4.98673C8.15443 6.32473 7.06843 8.45773 7.06843 10.7277C7.06443 13.9737 9.26543 16.8097 12.4164 17.6167C12.9984 17.7677 13.5984 17.8437 14.2004 17.8417C18.1364 17.8377 21.3264 14.6557 21.3324 10.7277C21.3434 7.17273 19.5194 3.86273 16.5044 1.96773C20.4934 3.01473 23.2744 6.61173 23.2754 10.7277C23.2744 13.1307 22.3164 15.4357 20.6114 17.1337C18.9074 18.8327 16.5964 19.7857 14.1884 19.7837Z" fill="currentColor"/> <path d="M45.3384 19.2717H30.5674V17.6087C32.3884 17.3027 32.7464 16.6637 32.7464 16.0487V5.63373C32.7464 4.45773 32.3884 3.97073 30.5674 3.84373V2.18073H39.8514V3.84373C38.0304 3.97073 37.6714 4.45773 37.6714 5.63373V16.6537C37.6714 17.2667 37.8504 17.7027 39.3894 17.7027H41.0564C42.0034 17.7027 43.1324 17.2417 43.9274 14.7337H45.5934L45.3384 19.2717ZM46.6714 13.0027C46.6714 8.85873 49.6724 5.78773 53.9274 5.78773C58.4164 5.78773 61.0054 8.80773 61.0054 12.4907C61.0054 16.6127 57.9554 19.6317 53.7754 19.6317C49.2114 19.6317 46.6714 16.6887 46.6714 13.0027ZM56.1854 13.9507C56.1854 9.88273 54.7744 7.45073 53.3904 7.45073C52.0824 7.45073 51.5454 9.08873 51.5454 11.4427C51.5454 15.5887 52.9804 17.9687 54.3374 17.9687C55.6234 17.9687 56.1854 16.3557 56.1854 13.9507ZM62.5954 13.0027C62.5954 8.85873 65.5974 5.78773 69.8524 5.78773C74.3414 5.78773 76.9304 8.80773 76.9304 12.4907C76.9304 16.6127 73.8804 19.6317 69.6984 19.6317C65.1354 19.6317 62.5954 16.6887 62.5954 13.0027ZM72.1104 13.9507C72.1104 9.88273 70.6994 7.45073 69.3154 7.45073C68.0074 7.45073 67.4674 9.08873 67.4674 11.4427C67.4674 15.5887 68.9054 17.9687 70.2624 17.9687C71.5464 17.9687 72.1104 16.3557 72.1104 13.9507ZM92.7594 12.2877C92.7594 16.7647 90.0424 19.6347 86.1184 19.6347C85.3274 19.6487 84.5414 19.5007 83.8094 19.1987V21.0917C83.8094 22.0397 84.1944 22.4237 85.9394 22.6787V24.3517H77.5534V22.6887C78.8864 22.3827 79.0414 22.0487 79.0414 21.1017V9.83573C79.0414 9.16973 78.8104 8.78573 77.9634 8.40373L77.5534 8.22473V6.89273L82.7834 5.79273H83.8094V7.43173C84.4684 6.38873 85.6274 5.76673 86.8624 5.79273C90.9384 5.78773 92.7594 8.92273 92.7594 12.2877ZM87.8364 13.2087C87.8364 10.5467 87.1004 8.24473 85.3234 8.24473C84.5534 8.24473 84.4254 8.19273 83.8094 8.65373V13.7957C83.8094 16.8427 84.3004 17.7387 85.6304 17.7387C86.8624 17.7387 87.8364 16.2277 87.8364 13.2087ZM105.153 7.29673L102.794 10.5217C101.665 8.26873 100.585 7.32373 99.3074 7.32373C98.5364 7.32373 97.5374 7.78373 97.5374 8.57773C97.5374 11.2717 105.562 9.52273 105.41 15.4617C105.332 17.6087 103.255 19.6247 99.6654 19.6247C96.5364 19.6247 93.9224 18.0627 93.2844 17.4987L96.0554 14.6087C97.5944 17.0137 98.8504 18.0887 100.08 18.0887C100.72 18.0887 101.849 17.8077 101.876 16.5537C101.876 13.6617 93.9524 15.9907 93.9764 10.1867C93.9764 7.44873 96.2594 5.77773 99.9014 5.77773C102.767 5.78773 104.615 6.78473 105.153 7.29673Z" fill="currentColor"/> </svg></div><div id="w-node-_8fa2a063-41b1-8b72-ce6e-84bef7bf9777-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="56" height="19" viewBox="0 0 56 19" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M2.14914 18.3532L0.221436 0.374268H3.74159L4.74735 11.7184L5.75312 0.374268H9.10564L10.0695 11.7184L11.0333 0.374268H14.5954L12.6258 18.3532H8.30943L7.40845 9.68814L6.54934 18.3532H2.14914Z" fill="currentColor"/> <path d="M15.6169 0.374268H21.1487C22.0287 0.374268 22.7062 0.576592 23.1811 0.981238C23.67 1.37194 23.9983 1.93007 24.1659 2.65564C24.3335 3.36727 24.4173 4.28122 24.4173 5.39749C24.4173 6.4161 24.2847 7.21144 24.0192 7.78353C23.7538 8.35562 23.2929 8.75327 22.6363 8.97652C23.1811 9.08817 23.5722 9.36023 23.8097 9.7928C24.0612 10.2254 24.1868 10.8114 24.1868 11.5509L24.145 18.3532H20.6248V11.3207C20.6248 10.8184 20.527 10.4975 20.3315 10.3579C20.1359 10.2184 19.7797 10.1486 19.2628 10.1486V18.3532H15.6169V0.374268ZM20.1429 7.03005C20.6458 7.03005 20.8972 6.48584 20.8972 5.39749C20.8972 4.92307 20.8762 4.56726 20.8343 4.33006C20.7925 4.09285 20.7156 3.93239 20.6039 3.84866C20.4921 3.75099 20.3315 3.70215 20.1219 3.70215H19.2838V7.03005H20.1429Z" fill="currentColor"/> <path d="M25.4352 18.3532V0.374268H28.9135V18.3532H25.4352Z" fill="currentColor"/> <path d="M31.9007 18.3532V3.82773H29.7635V0.374268H37.6419V3.82773H35.5046V18.3532H31.9007Z" fill="currentColor"/> <path d="M38.6578 18.3532V0.374268H45.8658V3.84866H42.3246V7.34397H45.7191V10.7347H42.3246V14.8579H46.0962V18.3532H38.6578Z" fill="currentColor"/> <path d="M46.9783 0.374268H52.5099C53.3898 0.374268 54.0676 0.576592 54.5423 0.981238C55.0314 1.37194 55.3595 1.93007 55.5272 2.65564C55.6948 3.36727 55.7787 4.28122 55.7787 5.39749C55.7787 6.4161 55.646 7.21144 55.3806 7.78353C55.1152 8.35562 54.6544 8.75327 53.9977 8.97652C54.5423 9.08817 54.9337 9.36023 55.1713 9.7928C55.4223 10.2254 55.5483 10.8114 55.5483 11.5509L55.5061 18.3532H51.9863V11.3207C51.9863 10.8184 51.8886 10.4975 51.6927 10.3579C51.4972 10.2184 51.1408 10.1486 50.6241 10.1486V18.3532H46.9783V0.374268ZM51.5044 7.03005C52.0069 7.03005 52.2584 6.48584 52.2584 5.39749C52.2584 4.92307 52.2378 4.56726 52.1956 4.33006C52.154 4.09285 52.0768 3.93239 51.9652 3.84866C51.8536 3.75099 51.6927 3.70215 51.4834 3.70215H50.6451V7.03005H51.5044Z" fill="currentColor"/> </svg></div><div id="w-node-_27e954e8-bd6a-9f97-7ad3-8e100ccf74a8-7d41eb07" class="logo-wrap lg-cloud w-embed"><svg width="94" height="15" viewBox="0 0 94 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M25.0662 9.16663C25.0244 9.12351 25.0544 9.05166 25.1145 9.05166H25.3705C25.3705 9.05166 25.3823 9.05166 25.3888 9.05166C27.6211 8.82439 29.4863 7.38237 29.4863 4.82358C29.4863 1.87553 27.1077 0.513184 24.383 0.513184H11.6216C11.4505 0.513184 11.3108 0.651639 11.3108 0.824054V13.9054C11.3108 14.0766 11.4492 14.2163 11.6216 14.2163H15.697C15.868 14.2163 16.0078 14.0778 16.0078 13.9054V9.7283C16.0078 9.55718 16.1463 9.41739 16.3187 9.41739H18.9676C19.3347 9.41739 19.6847 9.57549 19.929 9.84978L23.7025 14.1105C23.7835 14.1471 23.8541 14.1785 23.935 14.215H29.3138C29.5895 14.215 29.7279 13.8832 29.5346 13.686L25.0675 9.16663H25.0662ZM23.3668 6.34786H16.3174C16.1463 6.34786 16.0065 6.20943 16.0065 6.03702V4.05554C16.0065 3.88443 16.145 3.74467 16.3174 3.74467H23.265C24.2616 3.74467 24.912 4.23318 24.912 5.00513C24.912 5.89987 24.3021 6.34658 23.3668 6.34658V6.34786Z" fill="currentColor"/> <path d="M76.5737 0.513184H72.4997C72.3282 0.513184 72.1887 0.652365 72.1887 0.824054V9.50754C72.1887 9.67924 72.3282 9.81839 72.4997 9.81839H76.5737C76.7451 9.81839 76.8846 9.67924 76.8846 9.50754V0.824054C76.8846 0.652365 76.7451 0.513184 76.5737 0.513184Z" fill="currentColor"/> <path d="M76.5737 11.6675H72.4997C72.3282 11.6675 72.1887 11.8066 72.1887 11.9783V13.9049C72.1887 14.0766 72.3282 14.2158 72.4997 14.2158H76.5737C76.7451 14.2158 76.8846 14.0766 76.8846 13.9049V11.9783C76.8846 11.8066 76.7451 11.6675 76.5737 11.6675Z" fill="currentColor"/> <path d="M93.3546 13.8062L88.1117 6.86384C87.9937 6.70841 88.0042 6.49288 88.135 6.3492L93.0867 0.918099C93.2279 0.762664 93.1181 0.513184 92.9076 0.513184H88.6232C88.5099 0.513184 88.4012 0.561513 88.3256 0.645108L83.5449 5.89987H83.5425C83.5268 5.91685 83.5059 5.92991 83.4798 5.92991H83.3071C83.2618 5.92991 83.2263 5.89334 83.2252 5.84892V0.799236C83.2252 0.641189 83.0973 0.513184 82.9392 0.513184H79.0216C78.8635 0.513184 78.7356 0.641189 78.7356 0.799236V13.9133C78.7356 14.0583 78.853 14.1758 78.9983 14.1758H82.9613C83.106 14.1758 83.224 14.0583 83.224 13.9133V11.472C83.224 11.3702 83.263 11.2709 83.3321 11.1964L85.0718 9.33514C85.0718 9.33514 85.0875 9.3116 85.1229 9.3116H85.3578C85.3868 9.3116 85.4037 9.33514 85.4037 9.33514L88.9098 14.0139C88.9854 14.1157 89.1057 14.1758 89.2324 14.1758H93.1692C93.3598 14.1758 93.4697 13.9577 93.3535 13.8049L93.3546 13.8062Z" fill="currentColor"/> <path d="M35.8251 3.64345H39.8103C39.9814 3.64345 40.1211 3.50499 40.1211 3.33258V0.822102C40.1211 0.650991 39.9827 0.51123 39.8103 0.51123H31.567C31.3959 0.51123 31.2561 0.649685 31.2561 0.822102V13.9035C31.2561 14.0746 31.3946 14.2144 31.567 14.2144H39.8103C39.9814 14.2144 40.1211 14.0759 40.1211 13.9035V11.393C40.1211 11.2219 39.9827 11.0821 39.8103 11.0821H35.7964C35.6253 11.0821 35.4856 10.9437 35.4856 10.7713V9.14378C35.4856 8.95697 35.637 8.80416 35.8251 8.80416H39.8103C39.9814 8.80416 40.1211 8.6657 40.1211 8.4933V6.04421C40.1211 5.8731 39.9827 5.73334 39.8103 5.73334H35.8251C35.6384 5.73334 35.4856 5.58182 35.4856 5.39373V3.97783C35.4856 3.79105 35.637 3.63823 35.8251 3.63823V3.64345Z" fill="currentColor"/> <path d="M46.539 3.64345H50.5241C50.6952 3.64345 50.835 3.50499 50.835 3.33258V0.822102C50.835 0.650991 50.6966 0.51123 50.5241 0.51123H42.2808C42.1097 0.51123 41.97 0.649685 41.97 0.822102V13.9035C41.97 14.0746 42.1084 14.2144 42.2808 14.2144H50.5241C50.6952 14.2144 50.835 14.0759 50.835 13.9035V11.393C50.835 11.2219 50.6966 11.0821 50.5241 11.0821H46.5102C46.3391 11.0821 46.1994 10.9437 46.1994 10.7713V9.14378C46.1994 8.95697 46.3509 8.80416 46.539 8.80416H50.5241C50.6952 8.80416 50.835 8.6657 50.835 8.4933V6.04421C50.835 5.8731 50.6966 5.73334 50.5241 5.73334H46.539C46.3522 5.73334 46.1994 5.58182 46.1994 5.39373V3.97783C46.1994 3.79105 46.3509 3.63823 46.539 3.63823V3.64345Z" fill="currentColor"/> <path d="M5.16789 3.64345H9.15307C9.32414 3.64345 9.46393 3.50499 9.46393 3.33258V0.822102C9.46393 0.650991 9.32547 0.51123 9.15307 0.51123H0.909747C0.738637 0.51123 0.598877 0.649685 0.598877 0.822102V13.9035C0.598877 14.0746 0.737331 14.2144 0.909747 14.2144H4.51611C4.68721 14.2144 4.82698 14.0759 4.82698 13.9035L4.82959 9.14506C4.82959 8.9583 4.98111 8.80549 5.1692 8.80549H9.15435C9.32547 8.80549 9.46521 8.66704 9.46521 8.49458V6.04551C9.46521 5.87441 9.32675 5.73464 9.15435 5.73464H5.1692C4.98241 5.73464 4.82959 5.58312 4.82959 5.39504V3.97914C4.82959 3.79235 4.98111 3.63953 5.1692 3.63953L5.16789 3.64345Z" fill="currentColor"/> <path d="M52.9947 0.513184C52.8236 0.513184 52.6838 0.651639 52.6838 0.824054V13.9054C52.6838 14.0766 52.8223 14.2163 52.9947 14.2163H57.07C57.2411 14.2163 57.3809 14.0778 57.3809 13.9054V9.57549C57.3809 9.48795 57.4514 9.41739 57.5389 9.41739H65.354C68.4858 9.41739 70.8596 7.78471 70.8596 4.90195C70.8596 2.01921 68.4858 0.513184 65.3342 0.513184H52.9947ZM64.7396 6.34786H57.6904C57.5193 6.34786 57.3795 6.20943 57.3795 6.03702V4.05554C57.3795 3.88443 57.518 3.74598 57.6904 3.74598H64.6379C65.6347 3.74598 66.2851 4.23318 66.2851 5.00644C66.2851 5.90117 65.6748 6.34786 64.7396 6.34786Z" fill="currentColor"/> </svg></div></div><div class="margin-top margin-medium"><div class="button-group is-center"><a href="/customers" class="button w-button">Our customers</a><link rel="prefetch" href="/customers"/></div></div></div></div></div></section><section class="collab"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="margin-bottom margin-xlarge"><div class="text-align-center"><div class="max-width-medium align-center"><div class="margin-bottom margin-small"><h1 blocks-non-deletable="true" class="heading-style-h2">Built for modern teams</h1></div><p class="description align-center">Crafted with customizability and collaboration in mind. Designed to impress.</p></div></div></div><div class="swiper-component"><div class="swiper3"><div class="swiper-wrapper ft-grid"><div data-w-id="280ccfda-00e8-3a7b-0c88-75ae5290c0bf" class="swiper-slide feature-card"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Dark.png" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 29vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/OOTB%20-%20Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aab30db431b6a5c57768_OOTB%20-%20Light.png 948w"/></div><div class="feature-card-wrap"><h1 blocks-non-deletable="true" class="heading-style-h4">Beautiful out of the box</h1></div></div><div id="w-node-_280ccfda-00e8-3a7b-0c88-75ae5290c0c7-7d41eb07" data-w-id="280ccfda-00e8-3a7b-0c88-75ae5290c0c7" class="swiper-slide feature-card"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Dark.png" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 29vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Dark.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Collab%20-%20Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5a9dbb2a95605b9a2cfb4_Collab%20-%20Light.png 970w"/></div><div class="feature-card-wrap"><h1 blocks-non-deletable="true" class="heading-style-h4">Built for collaboration</h1></div></div><div id="w-node-_280ccfda-00e8-3a7b-0c88-75ae5290c0cd-7d41eb07" data-w-id="280ccfda-00e8-3a7b-0c88-75ae5290c0cd" class="swiper-slide feature-card"><div class="feature-image-wrapper"><img class="feature-image theme-asset" src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light.png" alt="" data-light-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Light.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Darks.png" style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, 29vw" data-dark-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Darks.png" data-light-srcset="https://mintlify-assets.b-cdn.net/website/home/overview%20features/Conversion%20-%20Light.png" loading="lazy" srcset="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light-p-500.png 500w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light-p-800.png 800w, https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f5aa67849e034afe751325_Conversion%20-%20Light.png 948w"/></div><div class="feature-card-wrap"><h1 blocks-non-deletable="true" class="heading-style-h4">Designed for conversion</h1></div></div></div></div></div></div></div></div></section><section class="cta gradient1"><div class="padding-global"><div class="container-large"><div class="padding-section-small padding-top"><div class="section-divider margin-bottom margin-xxlarge"><div class="divider-inner-line"></div></div><div class="margin-bottom margin-xxlarge"><div class="text-align-center"><div class="max-width-medium align-center"><h1 blocks-non-deletable="true" class="heading-style-h2">The documentation you want, available today</h1></div><div class="margin-top margin-large"><div class="button-group is-center"><a href="https://dashboard.mintlify.com/signup" class="button w-button">Get started</a><a data-cal-namespace="demo-with-mintlify" data-cal-link="team/mintlify/demo-with-mintlify" href="#" class="button is-secondary w-button">Get a demo</a></div></div></div></div></div><img src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66f29d9b066343224a22e4b1_footer%20CTA%20-%20updated%201.svg" loading="lazy" data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/footer%20CTA%20-%20updated%201.svg" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/Footer%20CTA%20Updated%201%20-%20dark.svg" alt="" class="cta-illust theme-asset hide-mobile-portrait"/><img src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/66ed32d350cf8baabd44e39f_mobile%20illust.svg" loading="lazy" data-light-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile.png" data-dark-src="https://mintlify-assets.b-cdn.net/website/home/cta/cta-mobile-dark.png" alt="" class="cta-illust theme-asset mobile-only"/></div></div></section></main><footer class="footer"><div class="padding-global"><div class="container-large lines"><div class="padding-section-medium"><div class="padding-bottom padding-section-medium"><div class="w-layout-grid footer_top-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a442-3cb3a43c" class="footer_left-wrapper"><a href="#" aria-label="Footer link" class="footer_logo-link w-nav-brand"><div class="brand-logo w-embed"><svg width="110" height="24" viewBox="0 0 110 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M31.3809 3.06182H36.2383L40.3588 13.1095H40.549L44.6695 3.06182H49.5269V19.2902H45.7075V9.32179H45.5728L41.6742 19.1872H39.2336L35.335 9.26635H35.2003V19.2902H31.3809V3.06182ZM51.0807 19.2902V7.1189H54.9559V19.2902H51.0807ZM53.0221 5.70052C52.4781 5.70052 52.0105 5.52091 51.6198 5.16171C51.229 4.79718 51.0331 4.35872 51.0331 3.8463C51.0331 3.33916 51.229 2.90598 51.6198 2.54676C52.0105 2.18225 52.4781 2 53.0221 2C53.5715 2 54.0391 2.18225 54.4249 2.54676C54.8156 2.90598 55.011 3.33916 55.011 3.8463C55.011 4.35872 54.8156 4.79718 54.4249 5.16171C54.0391 5.52091 53.5715 5.70052 53.0221 5.70052ZM60.4045 12.3488V19.2902H56.5293V7.1189H60.2141V9.35348H60.349C60.6183 8.60863 61.0779 8.0249 61.7275 7.60227C62.3776 7.17438 63.1512 6.96042 64.0492 6.96042C64.905 6.96042 65.6474 7.15326 66.2761 7.5389C66.9098 7.91923 67.4012 8.45278 67.7498 9.13956C68.1039 9.82103 68.2784 10.6187 68.273 11.5326V19.2902H64.3983V12.2933C64.4032 11.6171 64.2317 11.0889 63.8831 10.7085C63.5394 10.3282 63.0614 10.138 62.4485 10.138C62.0419 10.138 61.6829 10.2278 61.371 10.4074C61.0645 10.5817 60.827 10.8326 60.6579 11.1602C60.4943 11.4877 60.4095 11.8839 60.4045 12.3488ZM76.6497 7.1189V9.97158H68.9712V7.1189H76.6497ZM70.5798 4.20288H74.4545V15.4629C74.4545 15.7006 74.4917 15.8935 74.5655 16.0414C74.6449 16.184 74.7584 16.287 74.9062 16.3504C75.054 16.4085 75.231 16.4376 75.4373 16.4376C75.585 16.4376 75.7407 16.4244 75.9044 16.398C76.0735 16.3662 76.2004 16.3399 76.2852 16.3187L76.8713 19.1159C76.6864 19.1687 76.425 19.2347 76.0869 19.314C75.7541 19.3932 75.3554 19.4434 74.8903 19.4646C73.9819 19.5068 73.2024 19.4011 72.5528 19.1476C71.9082 18.8887 71.4143 18.4873 71.0712 17.9431C70.733 17.399 70.5693 16.7149 70.5798 15.8908V4.20288ZM81.8702 3.06182V19.2902H77.9954V3.06182H81.8702ZM83.444 19.2902V7.1189H87.3188V19.2902H83.444ZM85.3854 5.70052C84.8414 5.70052 84.3738 5.52091 83.9831 5.16171C83.5918 4.79718 83.3964 4.35872 83.3964 3.8463C83.3964 3.33916 83.5918 2.90598 83.9831 2.54676C84.3738 2.18225 84.8414 2 85.3854 2C85.9348 2 86.4024 2.18225 86.7882 2.54676C87.1789 2.90598 87.3743 3.33916 87.3743 3.8463C87.3743 4.35872 87.1789 4.79718 86.7882 5.16171C86.4024 5.52091 85.9348 5.70052 85.3854 5.70052ZM95.8105 7.1189V9.97158H87.9812V7.1189H95.8105ZM89.6136 19.2902V6.50085C89.6136 5.56053 89.7907 4.78133 90.1447 4.16326C90.4988 3.5399 90.9902 3.07503 91.6184 2.76863C92.2472 2.45695 92.9736 2.30111 93.7978 2.30111C94.3368 2.30111 94.8436 2.34337 95.3191 2.4279C95.8001 2.50714 96.1566 2.57845 96.3887 2.64185L95.7708 5.47867C95.628 5.43111 95.454 5.39149 95.2477 5.35981C95.0469 5.32807 94.8569 5.31225 94.6774 5.31225C94.2227 5.31225 93.9113 5.41262 93.7422 5.61334C93.5731 5.81412 93.4888 6.08878 93.4888 6.43748V19.2902H89.6136ZM99.1511 23.8544C98.6865 23.8544 98.2477 23.8175 97.8356 23.7435C97.4241 23.6748 97.07 23.5824 96.774 23.4662L97.6298 20.6532C98.0102 20.78 98.3538 20.8539 98.6597 20.875C98.9716 20.8961 99.2384 20.846 99.4601 20.7245C99.6877 20.6082 99.8617 20.3996 99.9832 20.0985L100.134 19.734L95.8075 7.1189H99.8642L102.107 15.8037H102.233L104.508 7.1189H108.589L104.001 20.4551C103.779 21.1207 103.465 21.707 103.058 22.2142C102.656 22.7266 102.136 23.1281 101.497 23.4186C100.863 23.7092 100.081 23.8544 99.1511 23.8544Z" fill="currentcolor"/> <mask id="mask0_4238_40" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="0" width="24" height="24"> <path d="M24.6348 0H1V23.6348H24.6348V0Z" fill="white"/> </mask> <g mask="url(#mask0_4238_40)"> <path d="M7.22763 8.62342C7.24415 6.37269 8.13673 4.21692 9.71609 2.61328H9.71318L3.61572 8.71074H3.61863C3.59593 8.7286 3.57453 8.74804 3.55459 8.76894C2.0717 10.2499 1.17264 12.216 1.02241 14.3063C0.872184 16.3967 1.48087 18.4711 2.73675 20.149L8.89533 13.9903L8.95936 13.9292C7.81152 12.4007 7.20254 10.5348 7.22763 8.62342Z" fill="#0C8C5E"/> <path d="M22.0327 14.9336C20.8657 16.0773 19.4008 16.8701 17.805 17.2216C16.2093 17.573 14.5469 17.469 13.0074 16.9215C12.1865 16.63 11.415 16.2149 10.7197 15.6904L10.6556 15.7544L4.49707 21.91C6.17554 23.1628 8.24884 23.7695 10.3379 23.6194C12.427 23.4692 14.3921 22.5721 15.8741 21.0921L15.9353 21.031L22.0327 14.9336Z" fill="#0C8C5E"/> <path d="M24.6467 8.71108V4.35893e-06H15.9356C14.7916 -0.00114182 13.6586 0.223763 12.6016 0.661799C11.5448 1.09984 10.5848 1.74238 9.77701 2.5525L9.71589 2.61362C8.6511 3.6946 7.88927 5.03658 7.50684 6.50493C8.19913 6.32565 8.91058 6.23087 9.62567 6.22262C11.5371 6.20012 13.4024 6.80995 14.9315 7.95726C16.3057 8.98207 17.3457 10.3908 17.9206 12.0058C18.5064 13.6564 18.5834 15.4449 18.1417 17.1398C19.6104 16.7581 20.9525 15.9961 22.033 14.9308L22.0942 14.8726C22.9046 14.0644 23.5474 13.104 23.9854 12.0466C24.4234 10.9892 24.6482 9.85563 24.6467 8.71108Z" fill="#18E299"/> </g> </svg></div></a><div class="w-layout-grid footer_social-list"><a aria-label="social twitter" href="https://x.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_704)"> <path d="M12.0125 8.75562L17.9319 1.875H16.5294L11.3894 7.84938L7.28436 1.875H2.54999L8.75749 10.9094L2.54999 18.125H3.95249L9.37999 11.8156L13.715 18.125H18.45L12.0125 8.75562ZM10.0912 10.9888L9.46249 10.0894L4.45811 2.93125H6.61249L10.6512 8.70812L11.28 9.6075L16.53 17.1169H14.3756L10.0919 10.9894L10.0912 10.9888Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_704"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social twitter" id="w-node-_2a678e1a-5e6c-fcb8-46d2-53b52fe4bc65-3cb3a43c" href="https://www.linkedin.com/company/mintlify/" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.854 11.5719V18.8895H7.46094V6.24477H10.6617L10.7183 9.40031H10.5147C10.8465 8.34469 11.3479 7.53036 12.0189 6.95731C12.6976 6.37672 13.5722 6.08643 14.6429 6.08643C15.5176 6.08643 16.2791 6.2787 16.9276 6.66324C17.5835 7.04025 18.0887 7.58691 18.4431 8.30322C18.805 9.01199 18.986 9.86026 18.986 10.848V18.8895H15.593V11.4361C15.593 10.652 15.3894 10.0374 14.9822 9.59258C14.5826 9.14771 14.0246 8.92528 13.3083 8.92528C12.8333 8.92528 12.4073 9.03084 12.0303 9.24197C11.6608 9.44555 11.3705 9.74338 11.1594 10.1355C10.9558 10.5276 10.854 11.0064 10.854 11.5719Z" fill="currentColor"/> <path d="M1.1725 18.89V6.24517H4.56556V18.89H1.1725ZM2.86903 4.59389C2.3563 4.59389 1.91897 4.42423 1.55705 4.08493C1.19512 3.74562 1.01416 3.33469 1.01416 2.85212C1.01416 2.36955 1.19512 1.95862 1.55705 1.61931C1.91897 1.28 2.3563 1.11035 2.86903 1.11035C3.38176 1.11035 3.81908 1.28 4.18101 1.61931C4.55048 1.95107 4.73521 2.36201 4.73521 2.85212C4.73521 3.33469 4.55048 3.74562 4.18101 4.08493C3.81908 4.42423 3.38176 4.59389 2.86903 4.59389Z" fill="currentColor"/> </svg></div></a><a aria-label="social github" href="https://github.com/mintlify" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_683)"> <path d="M10.5 1.46547C15.3344 1.46547 19.25 5.38109 19.25 10.2155C19.2488 13.9748 16.8506 17.3148 13.2894 18.5167C12.8519 18.6042 12.6875 18.3305 12.6875 18.1011C12.6875 17.8055 12.6988 16.8648 12.6988 15.6948C12.6988 14.8748 12.4256 14.3498 12.1081 14.0761C14.055 13.8573 16.1006 13.1136 16.1006 9.75609C16.1006 8.79359 15.7613 8.01672 15.2038 7.40484C15.2913 7.18609 15.5975 6.28922 15.1163 5.08609C15.1163 5.08609 14.3831 4.84547 12.71 5.98297C12.01 5.78609 11.2663 5.68797 10.5225 5.68797C9.77875 5.68797 9.035 5.78609 8.335 5.98297C6.66188 4.85672 5.92875 5.08609 5.92875 5.08609C5.4475 6.28922 5.75375 7.18609 5.84125 7.40484C5.28375 8.01734 4.94438 8.80484 4.94438 9.75609C4.94438 13.103 6.97875 13.858 8.92563 14.0767C8.67375 14.2955 8.44438 14.6786 8.3675 15.2467C7.86438 15.4767 6.60625 15.8486 5.81938 14.5248C5.655 14.2623 5.16313 13.6173 4.47438 13.628C3.74125 13.6392 4.17938 14.0436 4.485 14.2073C4.85688 14.4148 5.28313 15.1917 5.38188 15.4436C5.55688 15.9355 6.12563 16.8767 8.32375 16.4717C8.32375 17.2048 8.335 17.8936 8.335 18.1011C8.335 18.3311 8.17063 18.593 7.73313 18.5167C4.15875 17.3267 1.74813 13.9823 1.75 10.2148C1.75 5.38047 5.66563 1.46547 10.5 1.46547Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_683"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a><a aria-label="social slack community" href="https://mintlify.com/community" target="_blank" class="footer_social-link w-inline-block"><div class="icon-embed-xsmall w-embed"><svg width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4281_723)"> <path d="M5.78948 12.1385C5.78948 13.0779 5.02198 13.8454 4.08261 13.8454C3.14323 13.8454 2.37573 13.0779 2.37573 12.1385C2.37573 11.1991 3.14323 10.4316 4.08261 10.4316H5.78948V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M6.64954 12.1385C6.64954 11.1991 7.41704 10.4316 8.35641 10.4316C9.29579 10.4316 10.0633 11.1991 10.0633 12.1385V16.4129C10.0633 17.3523 9.29579 18.1198 8.35641 18.1198C7.41704 18.1198 6.64954 17.3523 6.64954 16.4129V12.1385Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35641 5.2868C7.41704 5.2868 6.64954 4.5193 6.64954 3.57992C6.64954 2.64055 7.41704 1.87305 8.35641 1.87305C9.29579 1.87305 10.0633 2.64055 10.0633 3.57992V5.2868H8.35641Z" fill="currentcolor" fill-opacity="1"/> <path d="M8.35637 6.14453C9.29575 6.14453 10.0632 6.91203 10.0632 7.85141C10.0632 8.79078 9.29575 9.55828 8.35637 9.55828H4.082C3.14262 9.55828 2.37512 8.79078 2.37512 7.85141C2.37512 6.91203 3.14262 6.14453 4.082 6.14453H8.35637Z" fill="currentcolor" fill-opacity="1"/> <path d="M15.2107 7.85141C15.2107 6.91203 15.9782 6.14453 16.9176 6.14453C17.8569 6.14453 18.6244 6.91203 18.6244 7.85141C18.6244 8.79078 17.8569 9.55828 16.9176 9.55828H15.2107V7.85141Z" fill="currentcolor" fill-opacity="1"/> <path d="M14.3508 7.85234C14.3508 8.79172 13.5833 9.55922 12.6439 9.55922C11.7045 9.55922 10.937 8.79172 10.937 7.85234V3.57797C10.937 2.63859 11.7045 1.87109 12.6439 1.87109C13.5833 1.87109 14.3508 2.63859 14.3508 3.57797V7.85234Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 14.707C13.5833 14.707 14.3508 15.4745 14.3508 16.4139C14.3508 17.3533 13.5833 18.1208 12.6439 18.1208C11.7045 18.1208 10.937 17.3533 10.937 16.4139V14.707H12.6439Z" fill="currentcolor" fill-opacity="1"/> <path d="M12.6439 13.8454C11.7045 13.8454 10.937 13.0779 10.937 12.1385C10.937 11.1991 11.7045 10.4316 12.6439 10.4316H16.9183C17.8576 10.4316 18.6251 11.1991 18.6251 12.1385C18.6251 13.0779 17.8576 13.8454 16.9183 13.8454H12.6439Z" fill="currentcolor" fill-opacity="1"/> </g> <defs> <clipPath id="clip0_4281_723"> <rect width="20" height="20" fill="white" transform="translate(0.5)"/> </clipPath> </defs> </svg></div></a></div></div><div class="w-layout-grid footer_menu-wrapper"><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a45c-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Documentation</p><a href="https://mintlify.com/docs/" class="footer_link">Getting Started</a><a href="https://mintlify.com/docs/content/components" class="footer_link">Components</a><a href="https://mintlify.com/docs/api-playground/" class="footer_link">API playground</a><a href="/pricing" class="footer_link">Pricing</a><link rel="prefetch" href="/pricing"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a465-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Resources</p><a href="/customers" class="footer_link">Customers</a><link rel="prefetch" href="/customers"/><a href="/enterprise" class="footer_link">Enterprise</a><link rel="prefetch" href="/enterprise"/><a href="/preview" class="footer_link">Request Preview</a><link rel="prefetch" href="/preview"/><a href="https://mintlify.com/docs/integrations/analytics/overview" class="footer_link">Integrations</a><a href="https://github.com/mintlify/themes" target="_blank" class="footer_link">Templates</a><a href="/love" class="footer_link">Wall of Love</a><link rel="prefetch" href="/love"/></div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a470-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Company</p><a href="/careers" class="footer_link">Careers</a><a href="/blog" class="footer_link">Blog</a><link rel="prefetch" href="/blog"/><a href="https://feedback.mintlify.com/roadmap" class="footer_link">Public Roadmap</a><a href="https://mintlify.com/security/responsible-disclosure" class="footer_link">Security</a></div><div id="w-node-bb4edd60-b98b-a009-1d55-2aebeaf325d3-3cb3a43c" class="footer_link-list"><p class="footer_menu-header">Legal</p><a href="https://mintlify.com/legal/privacy" class="footer_link">Privacy Policy</a><a href="https://mintlify.com/legal/terms" class="footer_link">Terms of Service</a></div></div></div></div><div class="padding-section-small padding-0"><div class="footer-bottom"><a id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a47e-3cb3a43c" href="https://status.mintlify.com/" target="_blank" class="status w-inline-block"><div class="status-color"></div><div class="status-text">Status-text</div></a><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a482-3cb3a43c" class="footer_credit-text">漏 <span class="current-year">currentYear</span> Mintlify, Inc.</div><div id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a487-3cb3a43c" class="theme-switch-wrap"><a aria-label="theme light switch" tr-color-light="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48a-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1878)"> <path d="M7 1.4375V2.60417" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 3.31641L10.7124 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M13.4167 7.85352H12.25" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M11.5376 12.3916L10.7124 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7 14.2702V13.1035" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 12.3916L3.28775 11.5664" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.583374 7.85352H1.75004" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M2.46252 3.31641L3.28775 4.14163" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> <path d="M7.00001 11.1599C8.82562 11.1599 10.3056 9.67999 10.3056 7.85438C10.3056 6.02878 8.82562 4.54883 7.00001 4.54883C5.17441 4.54883 3.69446 6.02878 3.69446 7.85438C3.69446 9.67999 5.17441 11.1599 7.00001 11.1599Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1878"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a><a aria-label="theme dark switch" tr-color-dark="" id="w-node-_6bc48d27-6e7a-f1ea-4cd0-92863cb3a48c-3cb3a43c" href="#" class="theme-toggle w-inline-block"><div class="icon-flex w-embed"><svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_4326_1858)"> <path d="M10.1111 9.99267C7.42621 9.99267 5.24999 7.81645 5.24999 5.13156C5.24999 4.08001 5.58676 3.11012 6.15376 2.31445C3.53732 2.8029 1.55554 5.09501 1.55554 7.85379C1.55554 10.968 4.08021 13.4927 7.19443 13.4927C9.8171 13.4927 12.0151 11.6991 12.6459 9.27401C11.907 9.72745 11.0413 9.99267 10.1111 9.99267Z" stroke="currentcolor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> </g> <defs> <clipPath id="clip0_4326_1858"> <rect width="14" height="14" fill="white" transform="translate(0 0.853516)"/> </clipPath> </defs> </svg></div></a></div><div id="w-node-_43bf6cdd-526c-279b-9ac7-86fd5c62ee35-3cb3a43c" class="footer-status w-embed w-script"><script> // Function to fetch and update the status function updateStatus() { fetch('https://status.mintlify.com/proxy/status.mintlify.com/incidents') .then(response => response.json()) .then(data => { const status = data.incidents[0]?.status; let statusText, statusColor; switch (status) { case 'resolved': statusText = 'All systems normal'; statusColor = '#00C853'; break; case 'partial_outage': statusText = 'Partial outage'; statusColor = '#FFD600'; break; case 'full_outage': statusText = 'Full outage'; statusColor = '#D50000'; break; default: statusText = 'Status unavailable'; statusColor = '#9E9E9E'; } // Update the status text const statusTextElement = document.querySelector('.status-text'); if (statusTextElement) { statusTextElement.textContent = statusText; } // Update the status color const statusColorElement = document.querySelector('.status-color'); if (statusColorElement) { statusColorElement.style.backgroundColor = statusColor; statusColorElement.style.outlineColor = `${statusColor}26`; // 26 is 15% opacity in hex } }) .catch(error => { console.error('Error fetching status:', error); }); } // Run the update function when the DOM is fully loaded document.addEventListener('DOMContentLoaded', updateStatus); // Optionally, update the status every 5 minutes setInterval(updateStatus, 300000); </script></div></div></div></div></div></div></footer></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=66cc2bd703ccf308a49a6188" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/66cc2bd703ccf308a49a6188/js/mintlify-lander.de0eeabc2.js" type="text/javascript"></script><script> document.addEventListener('DOMContentLoaded', function() { const currentYear = new Date().getFullYear(); const elements = document.getElementsByClassName('current-year'); for (let element of elements) { element.textContent = currentYear; } }); </script> <script> document.addEventListener('DOMContentLoaded', () => { const dropdowns = document.querySelectorAll('.dd-menu-wrap'); const glassOverlay = document.querySelector('.glass-bg'); const navbarContainer = document.querySelector('.navbar_container'); function activateDropdownState() { glassOverlay.classList.add('active'); navbarContainer.classList.add('dropdown-active'); } function deactivateDropdownState() { glassOverlay.classList.remove('active'); navbarContainer.classList.remove('dropdown-active'); } dropdowns.forEach(dropdown => { dropdown.addEventListener('mouseenter', activateDropdownState); dropdown.addEventListener('mouseleave', deactivateDropdownState); }); // Handle focus events for accessibility dropdowns.forEach(dropdown => { const focusableElements = dropdown.querySelectorAll('a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])'); focusableElements.forEach(element => { element.addEventListener('focus', activateDropdownState); element.addEventListener('blur', (event) => { // Delay deactivation to check if focus moved to another element within the dropdown setTimeout(() => { if (!dropdown.contains(document.activeElement)) { deactivateDropdownState(); } }, 0); }); }); }); }); </script> <!-- LinkedIn Insight Tag --> <script type="text/javascript"> _linkedin_partner_id = "6729188"; window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || []; window._linkedin_data_partner_ids.push(_linkedin_partner_id); </script><script type="text/javascript"> (function(l) { if (!l){window.lintrk = function(a,b){window.lintrk.q.push([a,b])}; window.lintrk.q=[]} var s = document.getElementsByTagName("script")[0]; var b = document.createElement("script"); b.type = "text/javascript";b.async = true; b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js"; s.parentNode.insertBefore(b, s);})(window.lintrk); </script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=6729188&fmt=gif" /> </noscript></body></html>