CINXE.COM

Event Ticketing - Optimize Ticketing Operations | Universe

<!DOCTYPE html><!-- Last Published: Tue Oct 22 2024 15:23:22 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="universe-static.webflow.io" data-wf-page="64921487527c76ad0b897442" data-wf-site="64628d0a55b289f26f93662f"><head><meta charset="utf-8"/><title>Event Ticketing - Optimize Ticketing Operations | Universe</title><meta content="Create, sell, promote, and manage your events on one platform. Get started with Universe today." name="description"/><meta content="Event Ticketing - Optimize Ticketing Operations | Universe" property="og:title"/><meta content="Create, sell, promote, and manage your events on one platform. Get started with Universe today." property="og:description"/><meta content="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/654b9f1f30364f8a8a738c80_og-image.png" property="og:image"/><meta content="Event Ticketing - Optimize Ticketing Operations | Universe" property="twitter:title"/><meta content="Create, sell, promote, and manage your events on one platform. Get started with Universe today." property="twitter:description"/><meta content="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/654b9f1f30364f8a8a738c80_og-image.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/64628d0a55b289f26f93662f/css/universe-static.d15d82996.min.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/64628d0a55b289f26f93662f/64628d0a55b289f26f936646_favicon-32x32.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/64628d0a55b289f26f936647_universe-favicon-256x256.png" rel="apple-touch-icon"/><script type="text/javascript">window.liveSettings={api_key:"8e7ac86cffe1430c98fce57013919c34"};</script> <script type="text/javascript" src="//cdn.transifex.com/live.js"></script> <script> //This is called each time the languages list is retrieved //from Transifex Live. This may happen more than once, so we should //be able to handle this case. function switch_locale(new_locale) { document.cookie = `locale=${new_locale}` localStorage.setItem('locale', new_locale) } Transifex.live.onFetchLanguages(function(languages) { //empty our language <select> list $('#language-select').empty(); //add translation languages to the list for (var i = 0; i < languages.length; ++i) { $('#language-select').append( '<option value="' + languages[i].code + '">' + languages[i].name + '</option>' ); } //set the language selector to the source language (default) $('#language-select').val( Transifex.live.getSourceLanguage().code ); //handle user selecting a language $('#language-select').change(function() { //tell transifex live to translate the page //based on user selection let locale_code = $(this).val() Transifex.live.translateTo($(this).val()); switch_locale(locale_code); }); //called when Transifex Live successfully translates the //page to a language. In that case let's update the //selected language of the widget Transifex.live.onTranslatePage(function(language_code) { $('#language-select').val(language_code); }); }); </script> <style> /* Default Transifex */ .tx-live-lang-container { display: none !important; } .w-webflow-badge { display: none !important; } div#onetrust-consent-sdk * { font-family: 'Circularpro'!important; font-weight: 300; } #onetrust-banner-sdk.otFloatingRoundedIcon { max-width: 40rem!important; } a.ot-sdk-show-settings { font-family: 'Circularpro'!important; } </style> <script> const authRequestUrl = 'https://www.universe.com/api/v2/current_user.json'; const cacheKey = 'userData'; const cacheExpiry = 20; // minutes const enableCache = false; let userData = null; // get logged_in status from set cookie const loggedIn = getCookie('logged_in'); // user data const user = { first_name: null, last_name: null, image_url: { full: null, lg: null, md: null, sm: null, }, is_host: false, is_admin: false, is_super_admin: false, is_business: false, is_business_seller: false, slug: null, memberships: [], }; /** * Check if the API works by the data it returns * @returns {boolean} */ let apiWorks = () => { return userData !== null && 'current_user' in userData; }; /** * DOM elements */ let MENU_PROFILE_WRAPPERS = null; let AUTH_LINKS = null; let LOGIN_LINKS = null; let REGISTER_LINKS = null; let LOGOUT_LINKS = null; let AUTH_ONLY_ELEMENTS = null; let GUEST_ONLY_ELEMENTS = null; let HOST_ONLY_ELEMENTS = null; let ADMIN_ONLY_ELEMENTS = null; let SUPER_ADMIN_ONLY_ELEMENTS = null; let BUSINESS_ONLY_ELEMENTS = null; let BUSINESS_SELLER_ONLY_ELEMENTS = null; let PROFILE_LINKS = null; let PROFILE_NAMES = null; let PROFILE_IMAGES = null; /** * Get a cookie by name * @param {string} name * @returns {string} */ function getCookie(name) { let cookies = document.cookie.split(';'); for (let i = 0; i < cookies.length; i++) { let cookie = cookies[i]; let parts = cookie.split('='); if (parts[0].trim() === name) { return parts[1]; } } return null; } /** * Get the current user data from the API * @returns {Promise<any>} */ async function getAuthUser() { const cachedData = localStorage.getItem(cacheKey); // Check if cached data is available and not expired if (cachedData && enableCache) { const { data, expiry } = JSON.parse(cachedData); if (expiry > Date.now()) { return data; } } // Fetch new data try { const res = await fetch(authRequestUrl, { method: 'GET', redirect: 'manual', }); if (!res.ok) return null; const data = await res.json(); // Cache the data with an expiry (e.g., 1 hour) const expiry = Date.now() + cacheExpiry * 60 * 1000; if (enableCache) localStorage.setItem(cacheKey, JSON.stringify({ data, expiry })); return data; } catch (e) { console.error(e); return null; } } /** * Init the DOM state */ function initDomState() { MENU_PROFILE_WRAPPERS = document.querySelectorAll('[data-element="menu-profile"]'); AUTH_LINKS = document.querySelectorAll('[data-element="auth-button"]'); AUTH_ONLY_ELEMENTS = document.querySelectorAll('[data-element-show="auth"]'); GUEST_ONLY_ELEMENTS = document.querySelectorAll('[data-element-show="guest"]'); HOST_ONLY_ELEMENTS = document.querySelectorAll('[data-element-show="host-only"]'); ADMIN_ONLY_ELEMENTS = document.querySelectorAll('[data-element-show="admin-only"]'); SUPER_ADMIN_ONLY_ELEMENTS = document.querySelectorAll('[data-element-show="super-admin-only"]'); BUSINESS_ONLY_ELEMENTS = document.querySelectorAll('[data-element-show="business-only"]'); BUSINESS_SELLER_ONLY_ELEMENTS = document.querySelectorAll( '[data-element-show="business-seller-only"]' ); LOGIN_LINKS = document.querySelectorAll('[data-action="login"]'); REGISTER_LINKS = document.querySelectorAll('[data-action="register"]'); LOGOUT_LINKS = document.querySelectorAll('[data-element="logout-button"]'); PROFILE_LINKS = document.querySelectorAll('[data-element="profile-button"]'); PROFILE_NAMES = document.querySelectorAll('[data-element="profile-name"]'); PROFILE_IMAGES = document.querySelectorAll('[data-element="profile-image"]'); const currentPath = window.location.pathname; // show/hide elements based on user login status if (AUTH_ONLY_ELEMENTS.length > 0) { AUTH_ONLY_ELEMENTS.forEach((AUTH_ONLY_ITEM) => { AUTH_ONLY_ITEM.style.display = loggedIn ? 'block' : 'none'; }); } // show/hide elements based on user login status if (GUEST_ONLY_ELEMENTS.length > 0) { GUEST_ONLY_ELEMENTS.forEach((GUEST_ONLY_ITEM) => { GUEST_ONLY_ITEM.style.display = loggedIn ? 'none' : 'block'; }); } // change link to login by adding redirectTo={current path i.e /events/today} if (LOGIN_LINKS.length > 0) { LOGIN_LINKS.forEach((LOGIN_LINK) => { const loginUrl = `/sign-in?redirectTo=${currentPath}`; LOGIN_LINK.href = loginUrl; }) } // change link to register by adding redirectTo={current path i.e /events/today} if (REGISTER_LINKS.length > 0) { REGISTER_LINKS.forEach((REGISTER_LINK) => { const registerUrl = `/sign-up?redirectTo=${currentPath}`; REGISTER_LINK.href = registerUrl; }) } // change link to logout by adding redirectTo={current path i.e /events/today} if (LOGOUT_LINKS.length > 0) { LOGOUT_LINKS.forEach((LOGOUT_LINK) => { const logoutUrl = `/sign-out?redirectTo=${currentPath}`; LOGOUT_LINK.href = logoutUrl; }) } } /** * Toggle the profile menu * @param {boolean} toggle */ const toggleProfileMenu = (toggle = true) => { if (MENU_PROFILE_WRAPPERS.length == 0 || AUTH_LINKS.length === 0) return; MENU_PROFILE_WRAPPERS.forEach((MENU_PROFILE_WRAPPER) => { if (toggle) { MENU_PROFILE_WRAPPER.style.display = 'block'; AUTH_LINKS.forEach((button) => { button.style.display = 'none'; }); // authButtonsWrapper.style.display = "none"; } else { MENU_PROFILE_WRAPPER.style.display = 'none'; AUTH_LINKS.forEach((button) => { button.style.display = 'block'; }); //authButtonsWrapper.style.display = "block"; } }) }; /** * Update the DOM with the current user data * @returns {Promise<any>} */ function updateDom() { if (PROFILE_NAMES.length > 0) PROFILE_NAMES.forEach((PROFILE_NAME) => { PROFILE_NAME.innerText = user.first_name; }) if (PROFILE_IMAGES.length > 0) PROFILE_IMAGES.forEach((PROFILE_IMAGE) => { PROFILE_IMAGE.src = user.image_url().md; }) toggleProfileMenu(loggedIn); if (HOST_ONLY_ELEMENTS.length > 0) HOST_ONLY_ELEMENTS.forEach((HOST_ONLY_ITEM) => { HOST_ONLY_ITEM.style.display = user.is_host || user.memberships.length > 0 ? 'block' : 'none'; }); if (ADMIN_ONLY_ELEMENTS.length > 0) ADMIN_ONLY_ELEMENTS.forEach((ADMIN_ONLY_ITEM) => { ADMIN_ONLY_ITEM.style.display = user.is_admin ? 'block' : 'none'; }); if (SUPER_ADMIN_ONLY_ELEMENTS.length > 0) SUPER_ADMIN_ONLY_ELEMENTS.forEach((SUPER_ADMIN_ONLY_ITEM) => { SUPER_ADMIN_ONLY_ITEM.style.display = user.is_super_admin ? 'block' : 'none'; }); if (BUSINESS_ONLY_ELEMENTS.length > 0) BUSINESS_ONLY_ELEMENTS.forEach((BUSINESS_ONLY_ITEM) => { BUSINESS_ONLY_ITEM.style.display = user.is_business ? 'block' : 'none'; }); if (BUSINESS_SELLER_ONLY_ELEMENTS.length > 0) BUSINESS_SELLER_ONLY_ELEMENTS.forEach((BUSINESS_SELLER_ONLY_ITEM) => { BUSINESS_SELLER_ONLY_ITEM.style.display = user.is_business_seller ? 'block' : 'none'; }); // change link to profile by adding users/{slug} if (PROFILE_LINKS.length > 0) PROFILE_LINKS.forEach((PROFILE_LINK) => { const profileUrl = `/users/${user.slug}`; PROFILE_LINK.href = profileUrl; }) } /** * Wait for the Webflow API to be ready then push the functions to the instance */ window.Webflow = window.Webflow || []; window.Webflow.push(async function () { // init dom state initDomState(); // check if localStorage contains cached data if (localStorage.getItem(cacheKey)) if (document.referrer.includes('https://www.universe.com/sign-in') || !enableCache) { // check if page is coming from login or cache is disabled then remove cache localStorage.removeItem(cacheKey); } else { // check if cache is expired then remove cache const { expiry } = JSON.parse(localStorage.getItem(cacheKey)); if (expiry < Date.now()) { localStorage.removeItem(cacheKey); } } // init userData userData = await getAuthUser(); if (!apiWorks()) return; // process userData and update dom const { current_user } = userData; user.first_name = current_user.first_name; user.last_name = current_user.last_name; if (user.last_name) { // split on space using regex and get first name const [lastName] = user.last_name.split(/\s(.+)/); user.last_name = lastName; } user.is_host = current_user.is_host ?? false; user.is_admin = current_user.is_admin ?? false; user.is_super_admin = current_user.is_super_admin ?? false; user.is_business = current_user.is_business ?? false; user.is_business_seller = current_user.is_business_seller ?? false; user.slug = current_user.slug; user.image_url = () => { const avatar = `https://ui-avatars.com/api/?name=${user.first_name ?? ''}+${user.last_name ?? '' }&background=5C5ED6&color=fff&font-size=0.4`; return { full: current_user.image_url ?? `${avatar}&size=1000`, lg: current_user.image_url_500 ?? `${avatar}&size=500`, md: current_user.image_url_160 ?? `${avatar}&size=160`, sm: current_user.image_url_50 ?? `${avatar}&size=50`, }; }; user.memberships = current_user.memberships ?? []; if (user.first_name) updateDom(); }); </script><script type="application/ld+json"> { "@context": "http://schema.org", "@type": "website", "url": "https://www.universe.com/", "name": "Event Ticketing - Optimize Ticketing Operations | Universe", "description": "Create, sell, promote, and manage your events on one platform. Get started with Universe today." } </script> <script> // This object must be completed to the spec in the tab ""CEDDL - digitalData Object"" window.digitalData = { "page": { "pageInfo": { "domain": "US", "environment": "production", "isTestEntity": 0, "language": "en-us", "pageChannel": "", "pageExperience": "", "pageName": "Event Ticketing - Optimize Ticketing Operations | Universe", "pageID": "", "pageType": "", "pageVariant": "", "platform": "webflow", "publisher": "universe", "publisherDivision": "US" } }, "pageURL": "https://www.universe.com/", "pageReferrer": "", "version": "0.1" }; </script> <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-K4QMLG');</script> <script> // This is the default event, additional tracking events comply with the tab ""Event Tracking - dataLayer Object"" dataLayer.push({ event: 'virtualPageView' }); </script></head><body><div class="page-wrapper"><div data-w-id="432f216a-59dd-90e2-5037-f1c8b9f50be6" data-animation="over-right" data-collapse="medium" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="navbar_component padding-global w-nav"><div><div class="navbar_content"><a href="/" class="navbar_logo-wrapper w-nav-brand"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/662147222b9467b353782c03_universe-logo.svg" loading="lazy" alt="" class="navbar_logo-image"/></a><div class="navbar_mobile-overlay"></div><nav role="navigation" class="navbar_links-wrapper w-nav-menu"><div class="navbar_links-wrapper-mobile"><div class="navbar_links-mobile-upper-row"><div class="show-tablet"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/662147222b9467b353782c05_brand-blue-19c27a9412161d6102c1503bde5bea39c99a048003366c78c5834407c85d1639.svg" loading="lazy" alt="" class="navbar_logo-mobile"/><div data-element-show="auth"><a data-element-show="host-only" href="/dashboard" class="navbar_link">Dashboard</a><a data-element-show="host-only" href="/dashboard/my-events" class="navbar_link is-underlined">My Events</a><a href="/dashboard/tickets" class="navbar_link is-underlined">My Tickets</a><a href="https://universe.com/listings" class="navbar_link is-tablet-padding-bottom-lower">Find Events</a><a href="https://www.universe.com/create" class="navbar_link is-underlined">Create Event</a><a href="/features" class="navbar_link is-underlined">Features</a><a data-element-show="admin-only" href="https://admin.universe.com" class="navbar_link">Admin Panel</a></div></div><div class="hide-tablet"><div class="navbar_links-wrapper-inner is-top-border-0"><a href="/discover" class="navbar_link is-margin-right w-nav-link">Find Events</a><div data-hover="false" data-delay="0" data-w-id="432f216a-59dd-90e2-5037-f1c8b9f50c04" class="navbar_dd w-dropdown"><div class="navbar_dd-toggle w-dropdown-toggle"><div class="navbar_dd-text">Host Events</div><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/662147222b9467b353782c04_chevron-grey.svg" loading="lazy" alt="" class="navbar_dd-toggle-icon"/></div><nav class="navbar_dd-content w-dropdown-list"><a href="/create" class="navbar_dd-link is-primary w-dropdown-link">Create Event</a><a href="https://universe.com/features" class="navbar_dd-link w-dropdown-link">Features</a><a href="/pricing" class="navbar_dd-link w-dropdown-link">Pricing</a></nav></div></div></div><div class="show-tablet"><div data-element-show="guest" class="navbar_links-wrapper-inner is-top-border-0"><a href="/discover" class="navbar_link is-margin-right w-nav-link">Find Events</a><div data-hover="false" data-delay="0" data-w-id="432f216a-59dd-90e2-5037-f1c8b9f50c14" class="navbar_dd w-dropdown"><div class="navbar_dd-toggle w-dropdown-toggle"><div class="navbar_dd-text">Host Events</div><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/662147222b9467b353782c04_chevron-grey.svg" loading="lazy" alt="" class="navbar_dd-toggle-icon"/></div><nav class="navbar_dd-content w-dropdown-list"><a href="/sign-in?redirectTo=/create" class="navbar_dd-link is-primary w-dropdown-link">Create Event</a><a href="https://universe.com/features" class="navbar_dd-link w-dropdown-link">Features</a><a href="/pricing" class="navbar_dd-link w-dropdown-link">Pricing</a><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/654e6b19d6ca351e120d8674_chevron-up.svg" loading="lazy" alt="" class="navbar_dd-chevron"/></nav></div></div></div></div><div class="hide-tablet"><div data-hover="false" data-delay="0" class="navbar_dd w-dropdown"><div class="navbar_dd-toggle w-dropdown-toggle"><div class="navbar_dd-text">Help</div></div><nav class="navbar_dd-content w-dropdown-list"><a href="https://support.universe.com/hc/en-us" target="_blank" class="navbar_dd-link is-primary w-dropdown-link">Help Center</a><a href="/help/find_tickets" class="navbar_dd-link w-dropdown-link">Where are my tickets?</a><a href="/help/contact_organizer" class="navbar_dd-link w-dropdown-link">Contact the event organizer</a><a href="/help/get_refund" class="navbar_dd-link w-dropdown-link">Can I get a refund?</a></nav></div></div><div class="navbar_links-wrapper-inner"><div class="show-tablet"><a data-element="profile-button" data-element-show="auth" href="#" class="navbar_link is-grey-mobile w-nav-link">Profile</a><a data-element-show="auth" href="/dashboard/conversations" class="navbar_link is-grey-mobile w-nav-link">Messages</a><a data-element-show="auth" href="/dashboard/settings" class="navbar_link is-grey-mobile w-nav-link">Settings</a><a href="/help" class="navbar_link is-grey-mobile w-nav-link">Help</a></div><a data-action="login" data-element="auth-button" href="/sign-in?redirectTo=/dashboard/my-events" class="navbar_link is-grey-mobile is-margin-right w-nav-link">Log In</a><a data-action="register" data-element="auth-button" href="/sign-up?redirectTo=/create" class="navbar_link is-grey-mobile w-nav-link">Sign Up</a><div class="show-tablet"><a data-element-show="auth" data-element="logout-button" href="#" class="navbar_link is-grey-mobile w-nav-link">Log Out</a></div><div class="hide-tablet"><div data-hover="false" data-delay="0" data-element-show="auth" data-element="menu-profile" class="navbar_dd is-profile w-dropdown"><div class="navbar_dd-toggle is-profile w-dropdown-toggle"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/65a954a90c5743875e901875_profile-default.svg" loading="lazy" data-element="profile-image" alt="" class="navbar_dd-profile-image"/><div data-element="profile-name" class="navbar_dd-text">Name</div></div><nav class="navbar_dd-content is-profile w-dropdown-list"><a data-element-show="host-only" href="/dashboard" class="navbar_dd-link w-dropdown-link">Dashboard</a><a data-element-show="host-only" href="/dashboard/my-events" class="navbar_dd-link is-primary w-dropdown-link">My Events</a><a href="/dashboard/tickets" class="navbar_dd-link is-primary w-dropdown-link">My Tickets</a><a data-element-show="admin-only" href="https://admin.universe.com" target="_blank" class="navbar_dd-link is-primary w-dropdown-link">Admin panel</a><a data-element="profile-button" href="#" class="navbar_dd-link w-dropdown-link">Profile</a><a href="/dashboard/conversations" class="navbar_dd-link w-dropdown-link">Messages</a><a href="/dashboard/settings" class="navbar_dd-link w-dropdown-link">Settings</a><a href="/help" class="navbar_dd-link w-dropdown-link">Help</a><a data-element="logout-button" href="#" class="navbar_dd-link w-dropdown-link">Log Out</a></nav></div></div></div></div><a href="#" class="navbar_mobile-close w-inline-block"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/662147222b9467b353782c06_close-54d548f6bd4a4473cf1f8666242395b884ce0c7c1005adf76d76cfad39a97d31.svg" loading="lazy" alt="" class="navbar_mobile-close-icon"/></a></nav><div class="navbar_mobile-menu w-nav-button"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/64628d0a55b289f26f936648_hamburger-85a2c5040c0cd868cb554c4630facb22379f29c4b68dd97b77c5158dde8883dc.svg" loading="lazy" alt=""/></div></div></div></div><div data-w-id="81ce116a-e79f-4bec-060d-7162f5a7a7c4" data-animation="default" data-collapse="medium" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="secondary-nav_component w-nav"><div class="padding-global"><div class="container-large"><nav role="navigation" class="secondary-nav_links-wrapper w-nav-menu"><a href="/features-create" class="secondary-nav_link w-nav-link">Create</a><a href="/features-convert" class="secondary-nav_link w-nav-link">Convert</a><a href="/features-promote" class="secondary-nav_link w-nav-link">Promote</a><a href="/features-optimize" aria-current="page" class="secondary-nav_link w-nav-link w--current">Optimize</a><a href="/features-scan" class="secondary-nav_link w-nav-link">Scan</a></nav><div class="secondary-nav_menu w-nav-button"><div class="secondary-nav_menu-icon w-embed"><svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_3281_736)"> <path d="M2.03904 0.769581C1.95604 0.683691 1.8566 0.615387 1.74665 0.568737C1.6367 0.522087 1.51848 0.498046 1.39904 0.498046C1.2796 0.498046 1.16138 0.522087 1.05143 0.568737C0.941475 0.615387 0.842037 0.683691 0.759038 0.769581C0.409038 1.12958 0.409038 1.70958 0.759038 2.06958L5.85904 7.22958C5.94204 7.31547 6.04147 7.38377 6.15143 7.43042C6.26138 7.47707 6.3796 7.50111 6.49904 7.50111C6.61848 7.50111 6.73669 7.47707 6.84665 7.43042C6.9566 7.38377 7.05604 7.31547 7.13904 7.22958L12.239 2.06958C12.4088 1.89583 12.5039 1.66253 12.5039 1.41958C12.5039 1.17664 12.4088 0.943335 12.239 0.769581C12.156 0.683692 12.0566 0.615388 11.9466 0.568738C11.8367 0.522088 11.7185 0.498047 11.599 0.498047C11.4796 0.498047 11.3614 0.522088 11.2514 0.568738C11.1415 0.615388 11.042 0.683692 10.959 0.769581L6.49904 4.99958L2.03904 0.769581Z" fill="currentColor"/> </g> </svg></div></div></div></div></div><main class="main-wrapper"><div class="section_features-hero is-optimize"><div class="padding-global padding-section-large"><div class="container-large text-align-center"><div><h1>Optimize your operations</h1></div><div class="padding-bottom padding-small"><div class="padding-bottom padding-xxsmall"></div></div><p>Build a winning strategy with access to real-time data and specialized support insights</p><div class="padding-bottom padding-custom2"></div><div><a href="/partner-with-us" target="_blank" class="button w-button">Partner with us</a></div></div></div></div><div class="section_features-2-col background-color-grey"><div class="padding-global padding-section-large"><div class="container-large"><h2 id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4955-0b897442" class="text-align-center">Own your data to make better decisions</h2><div class="padding-medium"></div><div class="_2-col-section_component"><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4959-0b897442" class="_2-col-section_column"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f809_646cdb6e005f9e73e2461517_Group%201686.webp" loading="lazy" sizes="(max-width: 479px) 92vw, (max-width: 767px) 95vw, (max-width: 991px) 94vw, (max-width: 1279px) 44vw, 544px" srcset="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f809_646cdb6e005f9e73e2461517_Group%25201686-p-500.webp 500w, https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f809_646cdb6e005f9e73e2461517_Group%25201686-p-800.webp 800w, https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f809_646cdb6e005f9e73e2461517_Group%25201686-p-1080.webp 1080w, https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f809_646cdb6e005f9e73e2461517_Group%201686.webp 1572w" alt=""/></div><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed495b-0b897442" class="checklist_component"><div class="checklist_item"><div class="checklist_bullet"></div><p>Get a quick overview of sales to date from your customizable dashboard.</p></div><div class="checklist_item"><div class="checklist_bullet"></div><p>Instantly download pre-organized sales and attendee data.</p></div><div class="checklist_item"><div class="checklist_bullet"></div><p>Select from account or event level data and create custom downloadable reports.</p></div></div></div></div></div></div><div class="section_features-2-col"><div class="padding-global padding-section-large"><div class="container-large fade-in"><h2 id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed496b-0b897442" class="text-align-center">Manage every detail</h2><div class="spacer-medium"></div><div class="text-align-center"><p>Our flexible options put you in control of your external communications, data, and team.</p></div><div class="padding-medium"></div><div class="_2-col-section_component fade-in"><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4973-0b897442" class="_2-col-section_column"><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f0d808856f331cedc79c_64628d0a55b289f26f93679a_team-members.png" loading="lazy" alt=""/></div><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4975-0b897442" class="checklist_component"><div class="checklist_item fade-in"><div class="checklist_bullet"></div><p>Update event details on the go and manage fans better with ticket resends, transfers, refunds and more.</p></div><div class="checklist_item fade-in"><div class="checklist_bullet"></div><p>Set varying levels of permissions and ensure every team member has the right level of access.</p></div><div class="checklist_item fade-in"><div class="checklist_bullet"></div><p>Data you collect on your attendees is yours to keep; we never share it with anyone.</p></div></div></div></div></div></div><div class="section_features-featured background-color-grey"><div class="padding-global padding-section-large"><div class="container-large fade-in"><div class="text-align-center"><div class="max-width-large align-center"><h2>Focus on what matters most. Automate everything else.</h2><div class="spacer-medium"></div></div><div class="text-align-center"><p>Connect Universe with 5000+ popular apps through Zapier to streamline your worfklows—no code needed.<br/></p></div><div class="padding-medium"></div></div><div class="grid-5-col_component"><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f1529665a36f25428672_6474f92e1f9f3593b56b1b5b_hubshpot.svg" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4990-0b897442" alt="" class="features-optimize_logo-image"/><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f152afa8fa3df2d9afaf_6473a08c4eeb1ff94a8377c3_salesforce.svg" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4991-0b897442" alt="" class="features-optimize_logo-image"/><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f152c38239e37c898e28_6473a0a5944b04bd3be13ac9_slack.svg" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4992-0b897442" alt="" class="features-optimize_logo-image"/><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f1529fe281a2a4362e06_6473a0995ba8b370254877e9_googlesheets.svg" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4993-0b897442" alt="" class="features-optimize_logo-image"/><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/655b5e6989555e88f384e1d6_6473a0adc16a8d71e8d01f50_mailchimp.svg" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed4994-0b897442" alt="" class="features-optimize_logo-image"/></div></div></div></div><div class="section_features-featured"><div class="padding-global padding-section-large"><div class="container-large fade-in"><div class="text-align-center"><div class="max-width-large align-center"><h2>Complete control of your money</h2><div class="spacer-medium"></div></div><div class="text-align-center"><p>Choose between two disbursement options and access your money when you need it.</p></div><div class="padding-medium"></div></div><div class="_2-col-section_component is-gap-lower"><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f1d27e85790dab6e93a4_6492188ce29aa6b45b13a9d4_stripepay.png" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed49a2-0b897442" alt="" class="_2-col-section_image fade-in"/><img src="https://cdn.prod.website-files.com/655b54d157a7cfacc769106a/65b0f1d2870258ca8c179365_6492189a209919353e49febd_universepay.png" loading="lazy" id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed49a3-0b897442" alt="" class="_2-col-section_image fade-in"/></div></div></div></div><div class="section_globe background-color-grey"><div class="padding-global padding-section-large"><div class="container-large fade-in"><div class="_2-col-section_component is-60-40"><div class="_2-col-section_column"><h3 class="text-size-xlarge">We’re here to help</h3><div class="spacer-medium"></div><div class="home-reach_3-col-layout"><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed49ad-0b897442"><h2 class="text-size-xlarge text-color-green">100M+</h2><p class="text-size-regular">Monthly visitors</p></div><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed49b2-0b897442"><h2 class="text-size-xlarge text-color-green">30</h2><p class="text-size-regular">Countries</p></div><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed49b7-0b897442"><h2 class="text-size-xlarge text-color-green">14M</h2><p class="text-size-regular">Monthly app users</p></div></div><div class="spacer-large"></div><div class="checklist_component"><div class="checklist_item"><p>Launch and scale faster with local account support and years of specialized segment expertise.</p></div><div class="checklist_item"><p>We’re committed to helping you grow your bottom line with dedicated help at every stage— from strategy to execution.</p></div></div></div><div id="w-node-_69a4d096-6f17-b0c8-fab1-384f5aed49c4-0b897442" class="_2-col-section_column"><img src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f847_6478a54a156cddb6add18e60_globe.webp" loading="lazy" sizes="100vw" srcset="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f847_6478a54a156cddb6add18e60_globe-p-500.webp 500w, https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f847_6478a54a156cddb6add18e60_globe-p-800.webp 800w, https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/663112b0120a86b013c2f847_6478a54a156cddb6add18e60_globe.webp 928w" alt="" class="globe_image"/></div></div></div></div></div><div class="section_cta padding-global"><div class="padding-section-large"><div class="container-large"><div class="text-align-center fade-in"><h2>Learn how we help you streamline on-site operations</h2><div class="padding-bottom padding-large"></div><a href="/features-scan" class="button is-secondary w-button">EXPLORE SCANNING TOOLS</a></div></div></div></div></main><div class="footer_component"><div class="padding-global"><div class="container-large"><div class="footer_grid"><div id="w-node-_78c5ad59-51fe-11f3-65f2-16db99f98c72-99f98c6e" class="footer_grid-row"><h5>About us</h5><div class="padding-xxsmall"></div><a href="/about" class="footer_link w-inline-block"><div class="text-block">Our story</div></a><a href="/careers" class="footer_link w-inline-block"><div>Jobs</div></a><a href="/discover" class="footer_link w-inline-block"><div>Find events</div></a><a href="/partner-with-us" class="footer_link w-inline-block"><div>Partner with us</div></a></div><div id="w-node-_78c5ad59-51fe-11f3-65f2-16db99f98c82-99f98c6e" class="footer_grid-row"><h5>Host events</h5><div class="padding-xxsmall"></div><a href="/sign-in?redirectTo=/create" class="footer_link w-inline-block"><div class="text-block">Create event</div></a><a href="/pricing" class="footer_link w-inline-block"><div>Pricing</div></a><a href="/features" class="footer_link w-inline-block"><div>Features</div></a><a href="https://developers.universe.com/" target="_blank" class="footer_link w-inline-block"><div>Developers</div></a></div><div id="w-node-_78c5ad59-51fe-11f3-65f2-16db99f98c92-99f98c6e" class="footer_grid-row"><h5>Get help</h5><div class="padding-xxsmall"></div><a href="https://support.universe.com/hc/en-us" target="_blank" class="footer_link w-inline-block"><div class="text-block">Help center (FAQs)</div></a><a href="https://www.universe.com/contact-us/demo" class="footer_link w-inline-block"><div>Contact us</div></a><a href="https://support.universe.com/hc/en-us/articles/360002596612-Find-your-tickets" target="_blank" class="footer_link w-inline-block"><div>Where are my tickets?</div></a><a href="https://support.universe.com/hc/en-us/articles/360002690051-Contact-the-event-organizer" target="_blank" class="footer_link w-inline-block"><div>Contact the event organizer</div></a><a href="https://support.universe.com/hc/en-us/articles/360002596632-Can-I-get-a-refund-" target="_blank" class="footer_link w-inline-block"><div>Can I get a refund?</div></a></div><div class="hide w-embed"><style> .lang-select { -webkit-appearance: none; -moz-appearance: none; text-indent: 1px; text-overflow: ''; } </style> <select id="language-select" class="lang-select"> </select></div></div><div class="footer_lower-grid"><a href="/" class="w-inline-block"><div class="w-embed"><svg width="207" height="16" viewBox="0 0 450 36"><g fill="none" fill-rule="evenodd"><g fill="#1B212A"><path d="M299.115 28.55h-.05c-1.14 1.44-2.28 2.25-4.11 2.25-2.3 0-3.93-1.29-3.93-3.64 0-4.21 4.7-4.53 7.82-4.53h1.16c.1-.35.1-.72.1-1.09 0-1.29-1.39-1.66-2.55-1.66-1.46 0-2.87.37-4.18.99l.47-2.65c1.41-.49 2.85-.77 4.33-.77 2.55 0 4.95.94 4.95 3.94 0 1.71-1.26 6.71-1.56 9.11h-2.8l.35-1.95zm-3.24-.17c2.48 0 3.24-1.71 3.76-3.76h-1.16c-1.61 0-4.28.27-4.28 2.43 0 .88.84 1.33 1.68 1.33zm-83.27-8.21h2.4l-.94 4.31c-.22 1.01-.42 1.98-.42 2.97 0 2.45 1.58 3.34 3.84 3.34.57 0 1.21-.17 1.78-.3l.57-2.58c-.42.17-1.01.3-1.61.3-.74 0-1.26-.47-1.26-1.24 0-.49.07-.94.15-1.24l1.21-5.57h2.97l.52-2.43h-2.97l.82-3.79-3.56 1.16-.57 2.62h-2.4l-.53 2.45zm10.57-2.42h3.32l-2.72 12.75h-3.32l2.72-12.75zm1.22-5.5h3.32l-.69 3.17h-3.32l.69-3.17zm12.94 5.69c-.89-.27-2.08-.49-3.32-.49-4.58 0-7.53 3.39-7.53 7.85 0 3.29 2.13 5.49 5.42 5.49 1.09 0 2.18-.1 3.19-.59l.37-2.62c-.87.42-1.88.64-2.7.64-2.28 0-2.82-1.66-2.82-3.32 0-2.4 1.48-4.88 4.13-4.88.92 0 1.78.22 2.43.64l.83-2.72zm-1.12 12.56h3.24l1.44-6.76h.05l3.29 6.76h3.74l-3.84-6.93 6.11-5.82h-4.31l-4.63 4.63h-.05l2.2-10.45h-3.32l-3.92 18.57zm25.47-10.33h2.4l-.94 4.31c-.22 1.01-.42 1.98-.42 2.97 0 2.45 1.58 3.34 3.84 3.34.57 0 1.21-.17 1.78-.3l.57-2.58c-.42.17-1.01.3-1.61.3-.74 0-1.26-.47-1.26-1.24 0-.49.07-.94.15-1.24l1.21-5.57h2.97l.52-2.43h-2.97l.82-3.79-3.57 1.16-.57 2.62h-2.4l-.52 2.45zm-.59 2.13c0-3.24-2.08-4.85-5.22-4.85-4.18 0-7.25 3.81-7.25 7.77 0 3.79 2.48 5.57 6.14 5.57 1.36 0 2.77-.32 4.06-.72l.42-2.63c-1.24.57-2.55.92-3.91.92-2.12 0-3.36-.75-3.52-2.76-.01-.12-.02-.23-.02-.35v-.07-.04c.02-.87.21-1.73.54-2.53.64-1.62 1.54-2.74 3.49-2.74 1.39 0 2.1.77 2.1 2.13 0 .3-.03.57-.07.87h-4.54c-.29 1-.35 1.67-.35 2.28h7.81c.2-.94.32-1.88.32-2.85zm8.9 8.2h3.32l1.31-6.07c.42-1.71 1.04-4.41 3.29-4.41.84 0 1.56.59 1.56 1.53 0 .77-.25 1.96-.42 2.72l-1.34 6.21h3.32l1.31-6.07c.42-1.73.99-4.41 3.29-4.41.84 0 1.56.59 1.56 1.53 0 .77-.25 1.96-.42 2.72l-1.34 6.21h3.32l1.34-6.09c.27-1.04.57-2.33.57-3.47 0-1.93-1.63-3.49-3.54-3.49-1.78 0-3.64.77-4.48 2.42h-.05c-.17-1.53-1.73-2.42-3.24-2.42-1.56 0-3.02.69-3.91 2h-.05l.3-1.71h-3.09c-.08.4-.17.92-.27 1.41l-2.34 11.39zm43.7-12.66c-.65-.17-1.89-.39-3.1-.39-2.62 0-5.52 1.06-5.52 4.06 0 3.19 4.31 3.39 4.31 5.45 0 1.04-1.16 1.41-2.28 1.41-1.29 0-2.23-.47-3.17-.99l-.72 2.65c1.21.57 2.55.77 3.89.77 2.85 0 5.74-.99 5.74-4.31 0-3.12-4.31-3.71-4.31-5.32 0-1.01 1.24-1.29 2.23-1.29.94 0 1.86.27 2.21.47l.72-2.51zm.89 2.33h2.4l-.94 4.31c-.22 1.01-.42 1.98-.42 2.97 0 2.45 1.58 3.34 3.84 3.34.57 0 1.21-.17 1.78-.3l.57-2.58c-.42.17-1.01.3-1.61.3-.74 0-1.26-.47-1.26-1.24 0-.49.07-.94.15-1.24l1.21-5.57h2.97l.52-2.43h-2.97l.82-3.79-3.56 1.16-.57 2.62h-2.4l-.53 2.45zm20.73 10.33h3.32l1.19-5.72c.42-2.05 1.56-4.16 3.91-4.16.42 0 .89.07 1.26.2l.69-3.24c-.4-.1-.84-.12-1.26-.12-1.53 0-3.17 1.31-3.76 2.7h-.05l.45-2.4h-3.17c-.1.6-.2 1.16-.3 1.71l-2.28 11.03zm-.03-8.2c0-3.24-2.08-4.85-5.22-4.85-4.18 0-7.25 3.81-7.25 7.77 0 3.79 2.47 5.57 6.14 5.57 1.36 0 2.77-.32 4.06-.72l.42-2.63c-1.24.57-2.55.92-3.91.92-2.12 0-3.36-.75-3.52-2.76-.01-.12-.02-.23-.02-.35V25.14c.01-.87.21-1.73.54-2.53.64-1.62 1.54-2.74 3.49-2.74 1.39 0 2.1.77 2.1 2.13 0 .3-.02.57-.07.87h-4.54c-.29 1-.35 1.67-.35 2.28h7.81c.2-.94.32-1.88.32-2.85zm15.09-5.31a2.87 2.87 0 0 1 2.87 2.87c0 1.58-1.29 2.86-2.87 2.86s-2.87-1.28-2.87-2.86a2.87 2.87 0 0 1 2.87-2.87zm.01 5.3c1.32 0 2.31-1.06 2.31-2.44 0-1.37-.99-2.44-2.31-2.44-1.33 0-2.33 1.06-2.33 2.44s1 2.44 2.33 2.44zm-1.1-4.12h1.29c.77 0 1.15.31 1.15.95 0 .54-.34.93-.87.93l.96 1.48h-.58l-.94-1.48h-.46v1.48h-.55v-3.36zm.54 1.44h.65c.42 0 .69-.09.69-.52 0-.38-.34-.49-.69-.49h-.65v1.01zM199.225 29.44c2.95 0 4.3-2.65 4.64-5.32-.52 0-1.02-.05-1.55-.05-2.12 0-5.57.32-5.57 3.12.01 1.45 1.21 2.25 2.48 2.25zm5.64-1.97c-.25.97-.42 2.15-.47 3.02h-1.57c.07-.67.12-1.32.25-1.87h-.05c-1.07 1.6-2.47 2.17-4.34 2.17-1.97 0-3.65-1.47-3.65-3.57 0-3.72 4.2-4.49 7.32-4.49.65 0 1.22.05 1.72.1.05-.37.08-.75.08-1.27 0-1.75-.97-2.75-2.72-2.75-1.47 0-2.92.68-3.77 1.1l.17-1.6c.9-.37 2.35-.85 3.84-.85 2.75 0 4.2 1.5 4.2 4.15 0 .5-.1 1.42-.32 2.42l-.69 3.44zM369.195 19.37c-.48-.25-1.95-.58-2.95-.58-3.63 0-5.58 2.65-5.58 6.05 0 2.63 1.75 4.6 4.13 4.6.95 0 1.9-.33 2.7-.6l-.2 1.58c-.6.2-1.6.37-2.9.37-3.68 0-5.45-3.08-5.45-5.83 0-4.5 2.55-7.53 7.48-7.53 1.05 0 2.58.25 3.23.5l-.46 1.44z"></path><path d="M373.965 29.45c3.3 0 5.15-3.5 5.15-6.5 0-2.4-1.08-4.15-3.55-4.15-3.53 0-5.18 3.45-5.18 6.7 0 2.2 1.36 3.95 3.58 3.95m1.8-12.01c3.25 0 5.08 2.18 5.08 5.48 0 4.25-2.68 7.88-7.08 7.88-3.15 0-5.1-2.38-5.1-5.55 0-4.28 2.78-7.81 7.1-7.81M383.405 19.89c.15-.63.27-1.48.32-2.15h1.58c-.08.8-.17 1.48-.27 1.92h.05c1.2-1.6 2.2-2.23 3.95-2.23 1.8 0 3.13 1 3.2 2.85h.05c.83-1.78 2.3-2.85 4.33-2.85 2.2 0 3.6 1.43 3.6 3.75 0 .5-.17 1.48-.38 2.4l-1.45 6.91h-1.65l1.43-6.76c.17-.78.33-1.52.33-2.48 0-1.4-.6-2.48-2.13-2.48-2.6 0-3.93 2.93-4.4 5.23l-1.32 6.48h-1.65l1.43-6.76c.18-.78.33-1.52.33-2.48 0-1.4-.6-2.48-2.13-2.48-2.6 0-3.93 2.93-4.4 5.23l-1.33 6.48h-1.65l2.16-10.58zM406.825 29.45c3.28 0 4.75-3.9 4.75-6.85 0-2.1-.9-3.8-3.1-3.8-3.03 0-4.85 3.9-4.85 6.6 0 2 .97 4.05 3.2 4.05zm-3.93-8.73c.2-.95.4-2.03.5-2.98h1.58c-.05.78-.17 1.43-.27 1.9h.05c.85-1.35 2.45-2.2 4.18-2.2 2.9 0 4.38 2.3 4.38 5.15 0 3.95-2.18 8.2-6.48 8.2-1.8 0-3.28-1.02-3.8-2.78h-.05l-1.55 7.73h-1.65l3.11-15.02zM417.815 29.45c2.95 0 4.3-2.65 4.65-5.33-.52 0-1.03-.05-1.55-.05-2.13 0-5.58.32-5.58 3.13.01 1.45 1.21 2.25 2.48 2.25zm5.66-1.98a16.2 16.2 0 0 0-.47 3.03h-1.58c.07-.68.12-1.33.25-1.88h-.05c-1.08 1.6-2.48 2.18-4.35 2.18-1.98 0-3.65-1.48-3.65-3.58 0-3.73 4.2-4.5 7.33-4.5.65 0 1.23.05 1.73.1.05-.37.08-.75.08-1.27 0-1.75-.97-2.75-2.73-2.75-1.48 0-2.93.68-3.78 1.1l.17-1.6c.9-.38 2.35-.85 3.85-.85 2.75 0 4.2 1.5 4.2 4.15 0 .5-.1 1.43-.33 2.43l-.67 3.44zM427.455 19.77c.15-.85.25-1.4.3-2.03h1.57c-.07.8-.15 1.48-.27 1.92h.05c.87-1.35 2.48-2.22 4.05-2.22 2.3 0 4 1.3 4 3.7 0 .88-.2 1.83-.38 2.63l-1.43 6.73h-1.65l1.45-7.03c.18-.83.28-1.38.28-2.23 0-1.5-.85-2.45-2.45-2.45-2.75 0-4.23 2.73-4.83 5.65l-1.25 6.05h-1.65l2.21-10.72zM440.415 33.5c-.78 1.45-1.7 2.4-3.43 2.4-.55 0-1.05-.08-1.52-.35l.37-1.35c.28.28.65.35 1.03.35 1.1 0 1.95-1 2.43-2l1.07-2.02-1.8-12.78h1.65l1.3 10.98h.05l5.98-10.98h1.7l-8.83 15.75z"></path></g><g fill="#3A66E5"><path d="M103.6 14.47c-.6 1.07-1.07 2.72-1.07 5.22 0 5.22.12 12.22.12 12.45 0 .36.12.6.6.71.36.12 1.18.24 2.37.24 1.31 0 2.34-.12 2.7-.24.48-.24.45-.6.45-.6v-12.2c0-2.37 2.03-3.6 4.41-3.27l.14.04c1.66.33 1.89.25 2.38-.46.48-.82 1.41-2.84 1.77-4.01.12-.36-.09-.64-.6-.82-.36-.12-1.31-.48-2.61-.72-.91-.15-1.82-.24-2.7-.24-3.24 0-6.19 1.11-7.96 3.9zM1.45 10.79c-.49.13-.58.38-.58.74 0 .12-.12 6.85-.12 11.93v.06c0 2.48.48 3.76 1.07 4.83 1.78 3.09 4.86 4.73 9.01 4.73h.12c4.16 0 7.36-1.66 9.12-4.73.6-1.06 1.07-2.36 1.07-4.83 0-5.09-.12-11.78-.12-12.02 0-.36-.22-.62-.57-.72-.34-.09-1.22-.2-2.4-.2-1.3 0-2.36.09-2.72.21-.48.11-.48.7-.48.7.12 4.15 0 11.06 0 11.66 0 2.49-1.78 3.79-4.03 3.79s-4.03-1.3-4.04-3.79c0-.58.01-7.6.01-11.75 0 0 0-.41-.6-.61-.33-.12-1.07-.24-2.39-.24-1.05.02-1.86.09-2.35.24zM73.07 11.76c-.35.48-3.78 9.37-4.72 11.86-.12.12-.48.12-.48 0-.71-1.89-4.25-11.26-4.49-11.86-.48-.94-.72-1.18-3.19-1.18-1.18 0-2.84.1-2.84.82 0 .71 2.01 6.04 4.26 11.84 2.12 5.44 3.72 8.9 4.13 9.38.41.49 1.55.47 2.63.48 1.07 0 2.16.01 2.44-.47.37-.62 2.04-4.04 4.16-9.5 2.24-5.8 4.14-11.02 4.14-11.74 0-.82-1.66-.82-2.84-.82-2.49.01-2.73.23-3.2 1.19zM34.48 10.57c-4.02 0-7.2 1.6-9.2 4.81-.58 1.07-1.06 2.44-1.06 4.94 0 5.13.12 11.76.12 12 0 .24.28.53.58.6.3.07 1.3.17 2.48.17 1.3 0 2.04-.03 2.48-.15.42-.13.46-.69.46-.69-.12-4.17.01-11.33.01-11.92 0-2.49 1.9-4.04 4.14-4.04 2.36 0 4.03 1.54 4.03 4.04v11.94s.01.42.45.6c.45.16 1.29.21 2.59.21 1.18 0 2 0 2.36-.12.46-.12.58-.35.58-.7 0-.12.12-6.9.12-12.02 0-2.49-.48-3.78-1.06-4.85-1.78-3.22-4.84-4.82-8.97-4.82h-.11zM49.17 10.7c-.46.12-.58.36-.58.71 0 .12-.12 1.43-.12 10.19 0 9.13.12 10.31.12 10.43 0 .34.11.76.58.87.29.07 1.39.19 2.57.19s2.01-.07 2.37-.19c.44-.19.58-.36.58-.72 0-.12.12-1.48.12-10.6 0-8.76-.12-10.07-.12-10.19 0-.36-.13-.65-.58-.72-.34-.05-1.42-.12-2.58-.12-1.18.02-2 .02-2.36.15zM118.65 17.8c0 4.97 4.57 6.25 8.96 6.61l.41.04c1.66.12 3.45.23 3.45 1.88 0 1.3-.73 2.01-2.74 2.01-2.37 0-5.22-1.07-7.12-2.01-.95-.48-1.54-.95-1.78-.95s-1.07.71-1.78 1.65c-.6.95-.95 2.01-.72 2.37.6.72 2.49 1.66 4.39 2.37 1.54.6 4.03 1.3 6.64 1.3 5.92 0 9.83-2.72 9.83-7.35.24-5.68-5.58-6.62-9.85-6.74-.95 0-2.85-.24-2.85-1.88 0-1.66 1.21-1.78 2.51-1.78.82 0 2.49.24 4.75.82 1.54.48 2.61.95 2.97 1.07.36.24 1.07-.72 1.66-1.89.58-1.18.71-2.25.36-2.37-.6-.36-5.22-2.37-10.07-2.37-4.28 0-9.02 1.89-9.02 7.22z"></path><path d="M140.32 21.35c0-6.52 4.14-10.78 10.51-10.78 5.43 0 10.3 2.85 10.3 10.78 0 .84-.01 1.06.03 1.88-.01.53-.42.72-.94.72-1.19 0-3.79.12-7.45.12-2.25 0-5.02-.12-6.08-.12-.16 0-.19.05-.17.17.11.71 1.39 3.75 5.05 3.75 1.54 0 4.14-.48 5.9-1.3.58-.24.8-.15.94 0 .27.27.7.94 1.18 1.89.36.82.6 1.42.72 1.78.11.48 0 .6-.72.95-2.13 1.07-4.37 1.89-8.39 1.89-4.15.01-10.88-3.68-10.88-11.73zm6.14-1.95l8.95.03c.09 0 .28-.03.27-.27 0-2.25-2.11-4.01-4.71-4.01s-4.74 1.76-4.74 4.01c-.01 0-.01.24.23.24zM79.08 21.48c0-6.52 4.14-10.78 10.51-10.78 5.43 0 10.3 2.85 10.3 10.78 0 .84-.01 1.06.03 1.88-.01.53-.43.72-.94.72-1.19 0-3.79.12-7.45.12-2.25 0-5.02-.12-6.08-.12-.16 0-.19.05-.17.17.11.71 1.39 3.75 5.05 3.75 1.54 0 4.13-.48 5.9-1.3.58-.24.8-.15.94 0 .27.26.7.94 1.18 1.89.36.82.6 1.42.71 1.77.11.48 0 .6-.71.95-2.13 1.07-4.37 1.89-8.39 1.89-4.14.02-10.88-3.66-10.88-11.72zm6.14-1.94l8.95.03c.09 0 .28-.03.28-.25 0-2.25-2.12-4.03-4.72-4.03-2.6 0-4.74 1.76-4.74 4.01-.01 0-.01.24.23.24z" fill-rule="nonzero"></path></g><path fill="#1B212A" d="M175.88 41.674L184.735.425l.978.21-8.855 41.25z"></path></g></svg></div></a><div class="footer_lower-grid-link-wrapper"><a href="https://www.universe.com/terms#NA" class="footer_lower-grid-link">Terms and conditions</a><div class="footer_lower-grid-link hide-tablet">|</div><a href="https://www.universe.com/terms-of-use" class="footer_lower-grid-link">Terms of Use</a><div class="footer_lower-grid-link hide-tablet">|</div><a href="https://www.universe.com/privacy" class="footer_lower-grid-link">Privacy Policy</a><div class="footer_lower-grid-link hide-tablet">|</div><a href="https://www.universe.com/privacy#your-choice-and-rights" class="footer_lower-grid-link">Do Not Sell Or Share My Personal Information</a><div class="footer_lower-grid-link hide-tablet">|</div><a href="https://www.universe.com/cookies" class="footer_lower-grid-link">Cookie Policy</a><div class="footer_lower-grid-link hide-tablet">|</div><a href="#" class="footer_lower-grid-link">© Universe <span id="footerYear">2023</span></a><div class="hide w-embed w-script"><script> const footerYear = 'footerYear' const date = new Date let year = date.getFullYear() document.getElementById(footerYear).innerText = year </script></div></div><div class="footer_social-wrapper"><a href="https://twitter.com/i/flow/login?redirect_after_login=%2Funiiverse" class="footer_social-icon-link w-inline-block"><div class="footer_social-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z" fill="currentColor"/></svg></div></a><a href="https://www.facebook.com/universe" class="footer_social-icon-link w-inline-block"><div class="footer_social-icon w-embed"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z" fill="currentColor"/></svg></div></a><a href="https://www.linkedin.com/company/universe-com/?viewAsMember=true" class="footer_social-icon-link w-inline-block"><div class="footer_social-icon w-embed"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M5.4442 4.22321C5.4439 4.81255 5.20951 5.37763 4.79257 5.79415C4.37564 6.21066 3.81033 6.44449 3.22099 6.4442C2.63165 6.4439 2.06657 6.20951 1.65005 5.79257C1.23354 5.37564 0.999706 4.81033 1 4.22099C1.00029 3.63165 1.23469 3.06657 1.65162 2.65005C2.06856 2.23354 2.63387 1.99971 3.22321 2C3.81255 2.00029 4.37763 2.23469 4.79415 2.65162C5.21066 3.06856 5.44449 3.63387 5.4442 4.22321ZM5.51086 8.08966H1.06666V22H5.51086V8.08966ZM12.5327 8.08966H8.11072V22H12.4883V14.7004C12.4883 10.634 17.788 10.2562 17.788 14.7004V22H22.1766V13.1894C22.1766 6.3342 14.3326 6.58975 12.4883 9.95623L12.5327 8.08966Z" fill="currentColor"/> </svg></div></a></div></div></div></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; } /* 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; } /* Prevent all click and hover interaction with an element */ .pointer-events-off { pointer-events: none; } /* Enables all click and hover interaction with an element */ .pointer-events-on { pointer-events: auto; } /* Create a class of .div-square which maintains a 1:1 dimension of a div */ .div-square::after { content: ""; display: block; padding-bottom: 100%; } /* 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 1 line of text */ .text-style-1line { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 1; -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; } /* Adds inline flex display */ .display-inlineflex { display: inline-flex; } /* 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; } @media only screen and (max-width: 991px) { .navbar_links-wrapper { height: 100dvh!important; } .w-nav-overlay { z-index: 9999!important; } } select { -webkit-appearance: none; -moz-appearance: none; text-indent: 1px; text-overflow: ''; } .w-nav-overlay { z-index: 999; } </style></div></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=64628d0a55b289f26f93662f" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/64628d0a55b289f26f93662f/js/universe-static.2267777f6.js" type="text/javascript"></script></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10