<!DOCTYPE html>
<html lang="en">
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="p:domain_verify" content="603d1e95dc63329bd662b1f52b6c5a87">
    <meta property="og:site_name" content="Compass">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Buy, sell, and rent smarter with Lexi Cerretti at Compass. Partner with a local real estate agent to find the home or apartment that&#39;s right for you">
    
  

    <meta name="apple-itunes-app" content="app-id=692766504">
    
      <link rel="canonical" href=https://www.compass.com/agents/lexi-cerretti/ />
    

    <title>
      Lexi Cerretti, Real Estate Agent in Lake Tahoe - Compass
    </title>
    <script async type="text/javascript">(function(){
function hasCookie(cookieName) {
  return document.cookie.indexOf(cookieName + '=')  > -1;
}

window.hasCookie = hasCookie;

function getUserId() { var p = window.uc && window.uc.user || {}; return p.impersonatorId || p.personId || p.userId || p._id; };

!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","once","off","on","addSourceMiddleware"];analytics.factory=function(t){return function(){if(analytics!==window.analytics){analytics=window.analytics;}var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t,e){var n=document.createElement("script");n.type="text/javascript";n.async=!0;n.src="https://cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(n,a);analytics._loadOptions=e};analytics.SNIPPET_VERSION="4.1.0";

  analytics.ready(function() {
    var userProfile = window.uc && window.uc.user || {}, userId = userProfile.impersonatorId || userProfile.personId || userProfile.userId || userProfile._id;

    const userIdHash = window.uc && window.uc.user && window.uc.user.userIdHash;
    let integrations = {};

    if (userIdHash) {
      integrations["Intercom"] = {
        user_hash: userIdHash,
      }
    }

    if (userId) analytics.identify(userId, userProfile, {integrations: integrations});
  });

  let integrations = {"Appboy":false,"Intercom":false};

  
    // Sample sessions sent to FullStory
    // By default sessions are sent to FullStory through Segment
    // Reduce to only 1% of non-loggedin sessions, and 100% of loggedin user sessions
    const userLoggedIn = hasCookie('ajs_user_id');
    if (userLoggedIn) {
      integrations["FullStory"] = true
    } else {
      const fullStoryNonLoggedInUserSampleRate = 0.01;
      const excludeSessionFromFullStory = window.Math && window.Math.random() > fullStoryNonLoggedInUserSampleRate || false;
      if (excludeSessionFromFullStory) {
        integrations["FullStory"] = false
      } else {
        integrations["FullStory"] = true
      }
    }
  

  analytics.load("wEDO6AEahHXxDr20gGm08Lp1rclLUVjC", {
    integrations: integrations,
  });

  
    const fullUrl = window.location && window.location.href;
    analytics.page({url: fullUrl});
  

  if (window.self !== window.parent) {
    analytics.track('iframe_use_detected', {
      compass_page: window.self.location.href
    });
  }

  
    const performanceMetricsCategory = 'Performance Metrics';

    // First Input Delay Setup, from https://github.com/GoogleChromeLabs/first-input-delay
    !function(n,e){var t,o,i,c=[],f={passive:!0,capture:!0},r=new Date,a="pointerup",u="pointercancel";function p(n,c){t||(t=c,o=n,i=new Date,w(e),s())}function s(){o>=0&&o<i-r&&(c.forEach(function(n){n(o,t)}),c=[])}function l(t){if(t.cancelable){var o=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,o){function i(){p(t,o),r()}function c(){r()}function r(){e(a,i,f),e(u,c,f)}n(a,i,f),n(u,c,f)}(o,t):p(o,t)}}function w(n){["click","mousedown","keydown","touchstart","pointerdown"].forEach(function(e){n(e,l,f)})}w(n),self.perfMetrics=self.perfMetrics||{},self.perfMetrics.onFirstInputDelay=function(n){c.push(n),s()}}(addEventListener,removeEventListener);
    perfMetrics.onFirstInputDelay(function(delay, evt) {
      const metricName = 'first-input-delay';

      // Follow the format to also create a Google Analytics Event
      // https://segment.com/docs/connections/destinations/catalog/google-analytics/#track
      analytics.track(metricName, {
          category: performanceMetricsCategory,
          value: Math.round(delay),
          nonInteraction: 1,
      });
    });

    // Performance Observer Setup, currently used by SEO team to track FCP
    // Code modified from https://developers.google.com/web/fundamentals/performance/user-centric-performance-metrics#tracking_fpfcp
    if (window.PerformanceObserver) {
      const observer = new PerformanceObserver((list) => {
        for (const entry of list.getEntries()) {
          // entry.name will be either 'first-paint' or 'first-contentful-paint'.
          const metricName = entry.name;
          const time = Math.round(entry.startTime + entry.duration);

          analytics.track(metricName, {
            category: performanceMetricsCategory,
            value: time,
            nonInteraction: 1,
          })
        }
      });
      try {
        // Prevent Safari from stopping execution when it doesn't recognize the 'paint' entry type.
        observer.observe({entryTypes: ['paint']});
      }
      catch (error) {
        console.log(error);
      }
    }


    // Both ttfb and plt (below) should be using observer.observe with 'navigation'
    // (navigation timing api v2) instead, but it's not supported by Safari yet.
    // It is currently under development.
    // See https://webkit.org/status/#specification-navigation-timing-level-2 and
    // https://developer.mozilla.org/en-US/docs/Web/API/PerformanceNavigationTiming#Browser_compatibility

    // Report time to first byte
    // responseStart is already populated because the response has to have been received for
    // code to be running at all.
    const timingObject = window.performance.timing;
    const timeToFirstByte = timingObject.responseStart - timingObject.requestStart;
    analytics.track('time-to-first-byte', {
      category: performanceMetricsCategory,
      value: timeToFirstByte,
      nonInteraction: 1,
    });

    // Report onload time when the load happens.
    function waitForPageLoadThenReportPageLoadTime() {
      // Using the navigation timing API v1
      // https://developer.mozilla.org/en-US/docs/Web/API/Navigation_timing_API
      // Wait until perfData.loadEventEnd is populated before reporting page load.
      // perfData.loadEventEnd is NOT loaded until AFTER all 'load' event listeners and
      // window.onload() are done running.
      const perfData = window.performance.timing;
      const pageLoadTime = perfData.loadEventEnd - perfData.navigationStart;
      if (pageLoadTime > 0) {
        analytics.track("page-load-time", {
          category: performanceMetricsCategory,
          value: pageLoadTime,
          nonInteraction: 1,
        })
      }
      else {
        setTimeout(waitForPageLoadThenReportPageLoadTime, 1);
      }
    }
    window.addEventListener('load', waitForPageLoadThenReportPageLoadTime);

  

}}();
(function(win,doc) {
  const s=doc.createElement('script');
  const conf={"applicationId":"9767a1ac-e423-4709-a01f-8407127e4396","clientToken":"puba3c877c6fe037e0f283e9824c6547122","env":"production","service":"unknown"};
  const userLoggedIn=hasCookie('ajs_user_id');
  s.setAttribute('data-testId','dd_rum');
  s.src='https://www.datadoghq-browser-agent.com/datadog-rum-us.js';
  s.addEventListener('load', function () {
    if (conf.sampleRate==null) conf.sampleRate=userLoggedIn ? 50 : 30;
    var id=getUserId();if (id) DD_RUM.setUser({id: id});
    win.DD_RUM && win.DD_RUM.init(conf);
  }, false);
  doc.head.appendChild(s);
})(window,document);
})();
</script>

    <link rel="stylesheet" href="/ucfe-assets/normalize.css/8/normalize.min.css">
    <link rel="stylesheet" type="text/css" href="/ucfe-assets/util-classes.css/2/util-classes.min.css">
    <link rel="stylesheet" type="text/css" href="/ucfe-assets/fonts/3/fonts.min.css">
    <link rel="stylesheet" type="text/css" href="/ucfe-assets/cx/3/cx.min.css">
    <link rel="stylesheet" type="text/css" href="/ucfe-assets/agent-profiles/agent-profiles-v1.102.0/base.css">

    <style type="text/css">#consumer-footer {
  --consumerFooter-caretSize: 16px;
}

  #consumer-footer * {
    box-sizing: border-box;
  }

  /* stylelint-disable max-nesting-depth */

  #consumer-footer .consumerFooter {
    background-color: #000000;
    background-color: var(--cx-color-black);
    color: #FFFFFF;
    color: var(--cx-color-white);
  }

  #consumer-footer .consumerFooter-wrapper {
    position: relative;
    padding: 64px 24px;
    padding: var(--cx-spacing-8x) var(--cx-spacing-3x);
  }

  @media (max-width: 511px) {

  #consumer-footer .consumerFooter-wrapper {
      padding: 64px 16px;
      padding: var(--cx-spacing-8x) var(--cx-spacing-2x)
  }
    }

  #consumer-footer .consumerFooter-main {
    display: grid;
    grid-gap: 24px;
    grid-gap: var(--cx-spacing-3x);
    grid-template-areas: 'company explore mobile social'
      'company explore legal legal';
    grid-template-columns: repeat(4, 1fr);
  }

  #consumer-footer .consumerFooter-footnote {
    position: relative;
    max-width: 606px;
  }

  #consumer-footer .consumerFooter-logo {
    width: 75px;
    height: 75px;
    fill: #FFFFFF;
    fill: var(--cx-color-white);
  }

  #consumer-footer .consumerFooter-label {
    -webkit-tap-highlight-color: transparent;
  }

  #consumer-footer .consumerFooter-accordion {
    display: none;
  }

  #consumer-footer .consumerFooter-header {
    position: relative;
    margin: 0;
    padding-top: 16px;
    padding-top: var(--cx-spacing-2x);
    padding-bottom: 16px;
    padding-bottom: var(--cx-spacing-2x);
    line-height: 1.4em;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    color: inherit;
  }

  #consumer-footer .consumerFooter-item {
    color: inherit;
    line-height: 32px;
    line-height: var(--cx-spacing-4x);
    text-decoration: none;
  }

  #consumer-footer .consumerFooter-item:hover,
    #consumer-footer .consumerFooter-item:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-item:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  /* Hide the ir link by default */

  #consumer-footer .consumerFooter-ir-link {
    display: none;
  }

  #consumer-footer .consumerFooter-itemIcon {
    color: inherit;
    text-decoration: none;
  }

  #consumer-footer .consumerFooter-itemIcon:hover,
    #consumer-footer .consumerFooter-itemIcon:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-mobileIcon {
    margin: 8px 0;
    border: 1px solid #FFFFFF;
    border: 1px solid var(--cx-color-white);
    width: 100%;
    max-width: 140px;
    height: 100%;
    max-height: 40px;
    border-radius: 4px;
  }

  #consumer-footer .consumerFooter-mobileIcon:hover,
    #consumer-footer .consumerFooter-mobileIcon:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-social {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 24px;
    right: var(--cx-spacing-3x);
  }

  #consumer-footer .consumerFooter-social:hover,
    #consumer-footer .consumerFooter-social:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-social:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  #consumer-footer .consumerFooter-socialLink {
    display: inline-block;
    padding-top: 16px;
    padding-top: var(--cx-spacing-2x);
    color: #FFFFFF;
    color: var(--cx-color-white);
    text-decoration: none;
  }

  #consumer-footer .consumerFooter-socialLink:hover,
    #consumer-footer .consumerFooter-socialLink:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-socialLink:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  #consumer-footer .consumerFooter-socialIcon {
    width: 24px;
    width: var(--cx-spacing-3x);
    height: 24px;
    height: var(--cx-spacing-3x);
    fill: #FFFFFF;
    fill: var(--cx-color-white);
  }

  #consumer-footer .consumerFooter-socialIcon:hover,
    #consumer-footer .consumerFooter-socialIcon:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-socialIcon:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  #consumer-footer .consumerFooter-legalLinks {
    padding: 0 0 6px;
    line-height: 1.5em;
    color: inherit;
  }

  #consumer-footer .consumerFooter-browseLink {
    color: inherit;
    text-decoration: none;
  }

  #consumer-footer .consumerFooter-browseLink:hover,
    #consumer-footer .consumerFooter-browseLink:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-browseLink:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  #consumer-footer .consumerFooter-legalTerms {
    color: inherit;
    line-height: 1.3em;
    text-decoration: underline;
  }

  #consumer-footer .consumerFooter-legalTerms:hover,
    #consumer-footer .consumerFooter-legalTerms:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-legalTerms:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  #consumer-footer .consumerFooter-legalDisclaimer {
    margin: 0;
    color: #FFFFFF;
    color: var(--cx-color-white);
    line-height: 1.3em;
    line-height: var(--cx-lineHeight);
    text-decoration: none;
  }

  #consumer-footer .consumerFooter-legalDisclaimer a {
    color: #FFFFFF;
    color: var(--cx-color-white);
    text-decoration: none;
  }

  #consumer-footer .consumerFooter-legalDisclaimer a:hover,
    #consumer-footer .consumerFooter-legalDisclaimer a:focus {
      color: #C9C9C9;
      color: var(--cx-color-onDarkTextSubtle);
    }

  #consumer-footer .consumerFooter-legalDisclaimer a:focus {
      box-shadow: 0 0 2px 2px #0064E5;
      box-shadow: 0 0 2px 2px var(--cx-color-interactive);
      outline: none;
    }

  #consumer-footer .consumerFooter-legalDisclaimer a[href^='tel'] {
    color: #C9C9C9;
    color: var(--cx-color-onDarkTextSubtle);
    text-decoration: none;
    pointer-events: none;
  }

  #consumer-footer .consumerFooter-mobile-no-br {

  }

  #consumer-footer .consumerFooter-phone {
    white-space: nowrap;
  }

  @media (max-width: 1023px) {
    #consumer-footer .consumerFooter-social {
      flex-direction: row;
      flex-wrap: wrap;
      position: relative;
      top: 0;
      right: 0;
    }

    #consumer-footer .consumerFooter-socialLink {
      padding-right: 16px;
      padding-right: var(--cx-spacing-2x);
    }
  }

  /* Strictly Tablet View */

  @media (max-width: 1023px) and (min-width: 512px) {
    #consumer-footer .consumerFooter-main {
      grid-template-areas: 'company explore mobile'
        'social social social'
        'legal legal legal';
      grid-template-columns: repeat(3, 1fr);
    }

    #consumer-footer .consumerFooter-wrapper {
      padding-bottom: 24px;
      padding-bottom: var(--cx-spacing-3x);
    }
  }

  /* Mobile designs, in descending order. */

  @media (max-width: 511px) {
    #consumer-footer .consumerFooter-main {
      grid-template-areas: 'company'
        'explore'
        'mobile'
        'social'
        'legal';
      grid-template-columns: 100%;
      grid-gap: 0;
    }

    #consumer-footer .consumerFooter {
      background-image: none;
    }

    #consumer-footer .consumerFooter-wrapper {
      flex-direction: column;
    }

    #consumer-footer .consumerFooter-wrapper:first-child {
      flex-direction: column-reverse;
    }

    #consumer-footer .consumerFooter-column {
      width: 100%;
      border-bottom: 1px solid #333333;
      border-bottom: 1px solid #333333;
      border-bottom: 1px solid var(--cx-color-grey100, var(--colorIntent-backgroundBold));
      padding-right: 24px;
      padding-right: var(--cx-spacing-3x);
    }

    #consumer-footer .consumerFooter-column .consumerFooter-header {
      cursor: pointer;
      transition: color 200ms ease-out;
    }

    #consumer-footer .consumerFooter-column .consumerFooter-header:after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: var(--consumerFooter-caretSize);
      width: var(--consumerFooter-caretSize);
      height: var(--consumerFooter-caretSize);
      height: var(--consumerFooter-caretSize);
      margin-top: calc(var(--consumerFooter-caretSize)*-1/2);
      margin-top: calc(var(--consumerFooter-caretSize)*-1/2);
      background-repeat: no-repeat;
      pointer-events: none;

      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M8%2011.914L2.293%206.207l1.414-1.414L8%209.086l4.293-4.293%201.414%201.414L8%2011.914z%22%2F%3E%0A%3Cdefs%3E%3Cstyle%3Epath%2C%0A%20%20%20%20%20%20%20%20polygon%20%7B%0A%20%20%20%20%20%20%20%20%20%20fill%3A%20%23ACACAC%3B%0A%20%20%20%20%20%20%20%20%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3C%2Fsvg%3E%0A')
    }

    #consumer-footer .consumerFooter-links {
      display: none;
    }

    #consumer-footer .consumerFooter-item {
      display: block; /* Make links full width on mobile for easier clickability. */
    }

    #consumer-footer .consumerFooter-accordion:checked ~ .consumerFooter-header {
      color: #FFFFFF;
      color: var(--cx-color-white);
    }

    #consumer-footer .consumerFooter-accordion:checked ~ .consumerFooter-header:after {
      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M12.293%2011.207L8%206.914l-4.293%204.293-1.414-1.414L8%204.086l5.707%205.707-1.414%201.414z%22%2F%3E%0A%3Cdefs%3E%3Cstyle%3Epath%2C%0A%20%20%20%20%20%20%20%20polygon%20%7B%0A%20%20%20%20%20%20%20%20%20%20fill%3A%20%23FFFFFF%3B%0A%20%20%20%20%20%20%20%20%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3C%2Fsvg%3E%0A')
    }

    #consumer-footer .consumerFooter-accordion:checked ~ .consumerFooter-links {
      display: block;
      padding-bottom: 16px;
      padding-bottom: var(--cx-spacing-2x);
    }

    #consumer-footer .consumerFooter-column.consumerFooter-column--mobile {
      border-bottom: none;
    }

    #consumer-footer .consumerFooter-column.consumerFooter-column--mobile .consumerFooter-header {
      display: none;
    }

    #consumer-footer .consumerFooter-column.consumerFooter-column--mobile .consumerFooter-links {
      display: flex;
      flex-wrap: wrap;
      height: auto;
      padding-top: 32px;
      padding-top: var(--cx-spacing-4x);
      padding-bottom: 16px;
      padding-bottom: var(--cx-spacing-2x);
      opacity: 1;
    }

    #consumer-footer .consumerFooter-column.consumerFooter-column--mobile .consumerFooter-mobileIcon {
      margin: 16px 16px 0 0;
      margin: var(--cx-spacing-2x) var(--cx-spacing-2x) 0 0;
    }

    #consumer-footer .consumerFooter-social {
      padding-top: 32px;
      padding-top: var(--cx-spacing-4x);
    }

    #consumer-footer .consumerFooter-mobile-no-br br {
      display: none;
    }

    #consumer-footer .consumerFooter-legalLinks {
      padding-top: 16px;
      padding-top: var(--cx-spacing-2x);
    }
  }

  @media (max-width: 359px) {
    #consumer-footer .consumerFooter-wrapper {
      padding-right: 16px;
      padding-right: var(--cx-spacing-2x);
      padding-left: 16px;
      padding-left: var(--cx-spacing-2x);
    }
  }

  #consumer-footer .consumerFooter-column--company {
    grid-area: company;
  }

  #consumer-footer .consumerFooter-column--explore {
    grid-area: explore;
  }

  #consumer-footer .consumerFooter-column--mobile {
    grid-area: mobile;
  }

  #consumer-footer .consumerFooter-column--legal {
    grid-area: legal;
  }

  #consumer-footer .consumerFooter-column--social {
    grid-area: social;
  }

  #consumer-footer .consumerFooter-TREC {
    /* stylelint-disable-next-line declaration-property-value-allowed-list */
    font-weight: 1000;
  }
</style>

    
  

  </head>
  <body>

    <nav id="uc-corpNav-placeholder" data-tn="ucCorpNav-placeholder">
  <style>
    @custom-media --tablet-viewport (min-width: 1300px);

    :root {
      --drawerWidth: 286px;
      --flyoutItemHeight: 39px;
      --navHeight: 48px;
      --locationLookupHeight: 40px;
      --iconSizeMedium: 24px;
    }

    #uc-corpNav-placeholder {
      display: flex;
      justify-content: space-between;
      position: relative;
      border-bottom: 1px solid var(--cx-color-dropShadow);
      width: 100%;
      height: var(--navHeight);
      color: var(--cx-color-textStrong);
      background-color: var(--cx-color-background);
      user-select: none;
      z-index: var(--cx-zIndex-10);
    }

    #uc-corpNav-placeholder,
    #uc-corpNav-placeholder * {
      box-sizing: border-box;
    }

    .uc-corpNav-a {
      text-decoration: none;
    }

    .uc-corpNav-button {
      background-color: transparent;
    }

    .uc-corpNav-svg {
      display: block;
      margin: auto;
      color: inherit;
      fill: currentColor;
    }

    .uc-corpNav-iconSizeMedium {
      width: var(--iconSizeMedium);
      height: var(--iconSizeMedium);
    }

    .uc-corpNav-header {
      display: flex;
      align-items: center;
      flex-grow: 1;
      height: 100%;
    }

    .uc-corpNav-hamburger {
      display: flex;
      align-items: center;
      width: 48px;
      height: 100%;
    }

    .uc-corpNav-logotype {
      display: flex;
      align-items: center;
      padding-right: var(--cx-spacing-3x);
      width: 123px;
      height: 100%;
      color: inherit;
    }

    .uc-corpNav-logotype svg {
      width: 98px;
      height: 14px;
    }

    .uc-corpNav-menuWrapper {
      display: flex;
      height: 100%;
    }

    .uc-corpNav-menu {
      display: none;
      padding: 0 10px;
      height: 100%;
    }

    .uc-corpNav-menu > .uc-corpNav-a,
    .uc-corpNav-menu > .uc-corpNav-button {
      border-top: 3px solid transparent;
      border-bottom: 3px solid transparent;
    }

    .uc-corpNav-userMenu {
      display: flex;
    }

    .uc-corpNav-menuItem {
      display: flex;
      align-items: center;
      border: none;
      padding: 0 10px;
      height: 100%;
      outline: none;
      appearance: none;
      color: inherit;
      font-weight: var(--cx-font-weightMedium);
      cursor: pointer;
      transition: all 0.1s ease;
    }

    .uc-corpNav-dropdown {
      display: flex;
      position: relative;
    }

    .uc-corpNav-dropdownIcon {
      margin-left: 4px;
    }

    .uc-corpNav-dropdown-checkbox {
      display: none;
    }

    .uc-corpNav-flyout {
      display: none;
      position: absolute;
      top: calc(var(--navHeight) - 1px);
      margin: 0;
      padding: 14px 0 18px;
      min-width: 100%;
      max-height: calc(7 * var(--flyoutItemHeight) + 34px);
      padding-top: 14px;
      padding-bottom: 18px;
      overflow-y: auto;
      white-space: nowrap;
      background-color: var(--cx-color-background);
      transform: translateX(-10px);
      list-style-type: none;
    }

    .uc-corpNav-flyout--flipped {
      right: -10px;
    }

    .uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown > .uc-corpNav-flyout,
    .uc-corpNav-dropdown.is-active > .uc-corpNav-flyout {
      display: block;
    }

    .uc-corpNav-flyoutItem {
      padding: 0 30px 0 var(--cx-spacing-2x);
      height: var(--flyoutItemHeight);
      font-weight: var(--cx-font-weightRegular);
      color: var(--cx-color-textStrong);
      cursor: pointer;
    }

    .uc-corpNav-avatar {
      width: 44px;
    }

    .uc-corpNav-drawer {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: calc(var(--drawerWidth) * -1);
      width: var(--drawerWidth);
      height: 100vh;
      background-color: inherit;
      overflow-y: auto;
      transition: left 0.3s ease;
      z-index: var(--cx-zIndex-10);
      -webkit-overflow-scrolling: touch;
    }

    .uc-corpNav-drawerOpen {
      overflow-y: hidden;
    }

    .uc-corpNav-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--cx-color-backgroundDark);
      opacity: 0.5;
      cursor: pointer;
      visibility: hidden;
      z-index: var(--cx-zIndex-9);
    }

    .uc-corpNav-drawer.is-active {
      left: 0;
    }

    .uc-corpNav-drawer.is-active ~ .uc-corpNav-backdrop {
      visibility: visible;
    }

    .uc-corpNav-drawerTop {
      display: flex;
      justify-content: space-between;
      margin: var(--cx-spacing-2x) var(--cx-spacing-2x) var(--cx-spacing-4x);
      flex-shrink: 0;
    }

    .uc-corpNav-logo {
      color: inherit;
      fill: currentColor;
    }

    .uc-corpNav-close {
      padding: 4px;
      width: var(--cx-spacing-3x);
      height: var(--cx-spacing-3x);
      color: inherit;
      fill: currentColor;
      cursor: pointer;
    }

    .uc-corpNav-drawer .uc-corpNav-menuItem {
      padding-left: var(--cx-spacing-2x);
      height: 40px;
      min-height: 40px;
      font-weight: var(--cx-font-weightRegular);
    }

    .uc-corpNav-label {
      position: relative;
      -webkit-tap-highlight-color: transparent;
    }

    .uc-corpNav-accordion {
      display: none;
    }

    .uc-corpNav-accordionHeader {
      position: relative;
      cursor: pointer;
    }

    .uc-corpNav-accordionHeader:after {
      content: '';
      position: absolute;
      top: 50%;
      right: var(--cx-spacing-2x);
      margin-top: -(var(--cx-spacing-1x));
      width: var(--cx-spacing-2x);
      height: var(--cx-spacing-2x);

      @mixin svgBgImg cx-icon-chevronDown_16x16 {
        path {
          fill: var(--cx-color-actionableLowEmph);
        }
      }
    }

    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader:after {
      @mixin svgBgImg cx-icon-chevronUp_16x16 {
        path {
          fill: var(--cx-color-actionableActive);
        }
      }
    }

    .uc-corpNav-accordionMenu {
      height: 0;
      opacity: 0;
      overflow-y: hidden;
      -webkit-transition: opacity 200ms ease-out;
      transition: opacity 200ms ease-out;
    }

    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {
      height: auto;
      opacity: 1;
    }

    .uc-corpNav-auth {
      display: flex;
      margin: var(--cx-spacing-2x);
    }

    .uc-corpNav-auth .uc-corpNav-authBtn:last-child {
      margin-left: var(--cx-spacing-2x);
    }

    .uc-corpNav-auth button {
      flex: 1;
    }

    .uc-corpNav-userMenu-loadingSpinner {
      /* 137 pixels is the width of the current `Register/Sign In` field that replaces this one, when the user is logged out. */
      padding: 0 57px 0 60px;
    }

    /* Mobile styles */
    @media (--cx-mq-maxWidthMobileLandscape) {
      .uc-corpNav-menuItem {
        font-size: var(--cx-font-sizeMd);
      }
    }

    @media (--cx-mq-minWidthLaptop) {
      .uc-corpNav-logotype {
        padding-left: var(--cx-spacing-2x);
        width: 152px; /* 16px left padding + 112px svg + 24px right padding */
      }

      /* inherit size from svg width & height attrs */
      .uc-corpNav-logotype svg {
        width: auto;
        height: auto;
      }

      .uc-corpNav-menu {
        display: flex;
      }

      .uc-corpNav-userMenu::before {
        content: '';
        position: relative;
        top: 17px;
        left: -10px;
        border-left: 1px solid;
        height: var(--cx-spacing-2x);
        opacity: 0.15;
      }

      .uc-corpNav-drawer,
      .uc-corpNav-hamburger {
        display: none;
      }
    }

    @media (--cx-mq-hover) {
      .uc-corpNav-menuItem:hover {
        color: var(--cx-color-actionableLowEmphHover);
        background: var(--cx-color-faintNeutral);
      }
    }

    /*
    * Fix clicks on the documentElement (used to close dropdowns) not being detected on iOS
    * See: https://gravitydept.com/blog/js-click-event-bubbling-on-ios &
    * https://stackoverflow.com/a/47818418
    */
    @supports (-webkit-overflow-scrolling: touch) {
      body {
        cursor: pointer;
      }
    }

    .uc-corpNav-menuItem:active,
    .uc-corpNav-menuItem.is-active,
    .uc-corpNav-flyoutItem.is-selected {
      color: var(--cx-color-selectedText);
      background-color: var(--cx-color-selectedBackground);
    }

    .uc-corpNav-menu > .uc-corpNav-a:active,
    .uc-corpNav-menu > .uc-corpNav-a.is-active,
    .uc-corpNav-menu > .uc-corpNav-button:active,
    .uc-corpNav-menu > .uc-corpNav-button.is-active {
      border-bottom-color: var(--cx-color-actionableActive);
      color: var(--cx-color-actionableActive);
      background-color: transparent;
    }

    @media (--cx-mq-hover) {
      .uc-corpNav-menu > .uc-corpNav-a:hover:active,
      .uc-corpNav-menu > .uc-corpNav-a:hover.is-active,
      .uc-corpNav-menu > .uc-corpNav-button:hover:active,
      .uc-corpNav-menu > .uc-corpNav-button:hover.is-active {
        background-color: var(--cx-color-faintNeutral);
      }
    }

    .uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown,
    .uc-corpNav-dropdown:active,
    .uc-corpNav-dropdown.is-active {
      background-color: var(--cx-color-white);
      filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));
    }

    .uc-corpNav-menuItem.is-active,
    .uc-corpNav-menuItem.is-selected,
    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader {
      font-weight: var(--cx-font-weightMedium);
    }

    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader,
    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {
      background-color: var(--cx-color-faintNeutral);
    }
  </style>
  <header class="uc-corpNav-header">
    <div class="uc-corpNav-hamburger" data-tn="ucCorpNav-hamburger" tabindex="0"
      role="button" aria-label="Expand Navigation">
      <svg class="uc-corpNav-svg cx-icon" width="24" height="24">
        <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-Hamburger_24x24"></use>
      </svg>
    </div>
    <a href="/" class="uc-corpNav-a uc-corpNav-logotype" data-tn="ucCorpNav-logotype">
      <svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 112 16" width="112" height="16">
        <title>Compass</title>
        <path d="M53,.457,45,11.314,37,.457V15h2V6.543l6,8.143,6-8.143V15h2ZM60,15H58V1h6.5a4.5,4.5,0,0,1,0,9H60Zm0-7h4.5a2.5,2.5,0,0,0,0-5H60Zm22.863,7h2.275L77.5.9,69.863,15h2.275l1.625-3h7.475Zm-8.018-5L77.5,5.1,80.155,10ZM97,11.085c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375A4.494,4.494,0,0,0,91.94,13.29c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L91,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C95.516,7.487,97,8.96,97,11.085Zm14,0c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375a4.494,4.494,0,0,0,3.468,1.775c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L105,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C109.516,7.487,111,8.96,111,11.085Zm-98.611.8h0a5.5,5.5,0,1,1,0-7.778h0l.354.354L14.157,3.05,13.8,2.7h0a7.5,7.5,0,1,0,0,10.607l0,0h0l.354-.353-1.414-1.415ZM25.5.5A7.5,7.5,0,1,0,33,8,7.5,7.5,0,0,0,25.5.5Zm0,13A5.5,5.5,0,1,1,31,8,5.5,5.5,0,0,1,25.5,13.5Zm3.207-7.293L27.293,4.793l-5,5,1.414,1.414Z"/>
      </svg>
    </a>
  </header>
  <div class="uc-corpNav-menuWrapper">
    <div class="uc-corpNav-menu">
      <a href="/homes-for-sale/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1
              " data-tn="ucCorpNav-link-Buy" data-label="Buy">
        Buy
      </a>
      <a href="/for-rent/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1
              " data-tn="ucCorpNav-link-Rent" data-label="Rent">
        Rent
      </a>
      <a href="/sell/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1
              " data-tn="ucCorpNav-link-Sell" data-label="Sell">
        Sell
      </a>
      <div class="uc-corpNav-label u-absoluteFill">
        <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill" data-tn="ucCorpNav-CompassExclusives" data-label="Compass Exclusives"
          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">
          Compass Exclusives
            <div class="uc-corpNav-dropdownIcon">
              <svg class="uc-corpNav-svg cx-icon" width="16" height="16">
                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>
              </svg>
            </div>
            <ul class="uc-corpNav-flyout Compass Exclusives">
              <li>
                <a href="/private-exclusives/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem
                        " data-tn="ucCorpNav-userMenu-PrivateExclusives" data-label="Private Exclusives">
                  Private Exclusives
                </a>
              </li>
              <li>
                <a href="/coming-soon/listings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem
                        " data-tn="ucCorpNav-userMenu-ComingSoon" data-label="Coming Soon">
                  Coming Soon
                </a>
              </li>
              <li>
                <a href="/compass-listings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem
                        " data-tn="ucCorpNav-userMenu-CompassListings" data-label="Compass Listings">
                  Compass Listings
                </a>
              </li>
            </ul>
        </div>
      </div>
      <a href="/development/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1
              " data-tn="ucCorpNav-link-NewDevelopment" data-label="New Development">
        New Development
      </a>
      <div class="uc-corpNav-label u-absoluteFill">
        <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill" data-tn="ucCorpNav-Agents" data-label="Agents"
          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">
          Agents
            <div class="uc-corpNav-dropdownIcon">
              <svg class="uc-corpNav-svg cx-icon" width="16" height="16">
                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>
              </svg>
            </div>
            <ul class="uc-corpNav-flyout Agents">
              <li>
                <a href="/agents/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem
                        " data-tn="ucCorpNav-userMenu-FindanAgent" data-label="Find an Agent">
                  Find an Agent
                </a>
              </li>
              <li>
                <a href="//agents.compass.com/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem
                        " data-tn="ucCorpNav-userMenu-BecomeanAgent" data-label="Become an Agent">
                  Become an Agent
                </a>
              </li>
            </ul>
        </div>
      </div>
    </div>
  </div>
  <div class="uc-corpNav-drawer">
    <div class="uc-corpNav-drawerTop">
      <a href="/" class="uc-corpNav-a uc-corpNav-logo" data-tn="ucCorpNav-drawerLogo">
        <svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="48" height="48">
          <path d="M12,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22ZM12,3a9,9,0,1,0,9,9A9.011,9.011,0,0,0,12,3ZM8.854,15.854l7-7a.5.5,0,0,0-.708-.708l-7,7a.5.5,0,0,0,.708.708Z"></path>
        </svg>
      </a>
      <div class="uc-corpNav-close" data-tn="ucCorpNav-drawerClose">
        <svg class="uc-corpNav-svg cx-icon" width="16" height="16">
          <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-x_16x16"></use>
        </svg>
      </div>
    </div>
    <a href="/homes-for-sale/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body
            " data-tn="ucCorpNav-drawerLink-Buy" data-label="Buy">
      Buy
    </a>
    <a href="/for-rent/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body
            " data-tn="ucCorpNav-drawerLink-Rent" data-label="Rent">
      Rent
    </a>
    <a href="/sell/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body
            " data-tn="ucCorpNav-drawerLink-Sell" data-label="Sell">
      Sell
    </a>
    <div class="uc-corpNav-label">
      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"
        id="CompassExclusives">
      <label for="CompassExclusives"
        class="uc-corpNav-accordion">Compass Exclusives</label>
      <div class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body
              " data-tn="ucCorpNav-drawerLink-CompassExclusives" data-label="Compass Exclusives"
              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">
        Compass Exclusives
      </div>
      <ul class="uc-corpNav-accordionMenu">
        <li>
          <a href="/private-exclusives/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem
                " data-tn="ucCorpNav-drawerLink-PrivateExclusives" data-label="Private Exclusives">
            Private Exclusives
          </a>
        </li>
        <li>
          <a href="/coming-soon/listings/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem
                " data-tn="ucCorpNav-drawerLink-ComingSoon" data-label="Coming Soon">
            Coming Soon
          </a>
        </li>
        <li>
          <a href="/compass-listings/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem
                " data-tn="ucCorpNav-drawerLink-CompassListings" data-label="Compass Listings">
            Compass Listings
          </a>
        </li>
      </ul>
    </div>
    <a href="/development/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body
            " data-tn="ucCorpNav-drawerLink-NewDevelopment" data-label="New Development">
      New Development
    </a>
    <div class="uc-corpNav-label">
      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"
        id="Agents">
      <label for="Agents" class="uc-corpNav-accordion">Agents</label>
      <div class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body
              " data-tn="ucCorpNav-drawerLink-Agents" data-label="Agents"
              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">
        Agents
      </div>
      <ul class="uc-corpNav-accordionMenu">
        <li>
          <a href="/agents/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem
                  " data-tn="ucCorpNav-drawerLink-FindanAgent" data-label="Find an Agent">
            Find an Agent
          </a>
        </li>
        <li>
          <a href="//agents.compass.com/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem
                  " data-tn="ucCorpNav-drawerLink-BecomeanAgent" data-label="Become an Agent">
            Become an Agent
          </a>
        </li>
      </ul>
    </div>
  </div>
  <div class="uc-corpNav-menu uc-corpNav-userMenu">
    <div class="cx-animDotShift cx-animDotShift--sm uc-corpNav-userMenu-loadingSpinner"></div>
  </div>
  <div class="uc-corpNav-backdrop" data-tn="ucCorpNav-drawerBackdrop"></div>
</nav>
    <main class="font-sansRegular agents-mainSection cx-mainLayout cx-mainLayout--contentFill">
      
<div>
  <div id="isPrivateBanner-container">
    
  </div>
  <div id="clientViewBanner-container">
    
  </div>
  <section>
    <div class="profile-container">

      <!-- Profile Card -->
      <div class="profile-card">
        <div class="profileCard-image">
          <div class="profileImage-container" id="profileImage-container" data-reactroot=""><div><img class="profile-image" src="https://d2787ndpv5cwhz.cloudfront.net/ba94ae9f7a7aa9a4413edaa4ca69eb7889d61c2b/300x300.jpg" alt="Lexi Cerretti" data-tn="profile-image"/></div></div>
        </div>
        <div class="profileCard-info">
          
          <h1 class="profileCard-name textIntent-headline1" data-tn="profile-name">Lexi Cerretti</h1>
          <div class="titleCard textIntent-body" data-tn="profile-title">Realtor® | DRE# S.0075552 </div>
          <div class="profileCard-contactInfoSectionDesktop">
            <div class="emailCard textIntent-body">
              <a class="profileCard-email" href="mailto:lexi@compass.com" data-tn="profile-email">lexi@compass.com </a>
            </div>
            <div class="phoneCard textIntent-body">
              
  
  <a
    href="tel:+1-775-833-1646"
    aria-label="Call Mobile: 775-833-1646"
    
      class="mobile-link"
    
      data-tn="profile-phone"
    
    >
    
      M:
    
    775-833-1646
    </a>

              
              
            </div>
          </div>
          <div class="profileCard-contactInfoSectionMobile">
            
              <button id="agent-phone-button" class="cx-enclosedBtn cx-enclosedBtn--sm profileCard-phoneIconButton">
                <a class="profileCard-contactIconLink"  href="tel:+1-775-833-1646"  data-tn="agent-phone-link">
                  <svg class="cx-btn-icon cx-icon" width="16" height="16">
                    <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-phone_16x16"></use>
                  </svg>
                </a>
                
              </button>
            
            <button class="cx-enclosedBtn cx-enclosedBtn--sm">
              <a class="profileCard-contactIconLink" href="mailto:lexi@compass.com">
                <svg class="cx-btn-icon cx-icon" width="16" height="16">
                  <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-envelope_16x16"></use>
                </svg>
              </a>
            </button>
          </div>
          
          <div class="profileCard-actionSection">
            
              
                
                    <button class="cx-solidBtn cx-solidBtn--sm profileCard-profileButton" data-tn="agent-contact-btn" data-productPath="Top Module">
                      Contact Lexi
                    </button>
                
                
              
            
          </div>
        </div>
      </div>
    </div>

    <!--Experience & About Card !-->
    <!-- classes to use depending on if there are experiences or not -->
    
    <div class="profile-experience-about">
    
      <!--Experience block-->
      
      <div class="profile-experience">
        <div class="textIntent-headline1">Experience</div>
        
           
              
                <div>
                  <div class="textIntent-title1 experience-title" data-tn="social-media-section">Social Media</div>
                  <p class="profile-body"><img src='https://i.imgur.com/KdGGD0L.png' border='0'/><a href="https://www.linkedin.com/in/tahoehomes/" target="_blank"><b style="font-size: 20px;">LinkedIn</b></a><br />

<img src='https://i.imgur.com/xVfuSkC.png' border='0'/><a href="https://www.facebook.com/tahoehomes" target="_blank"><b style="font-size: 20px;">Facebook</b></a><br />

<img src='https://i.imgur.com/kB0X80W.png'' border='0'/><a href="https://www.instagram.com/lexicerretti/?hl=en" target="_blank"><b style="font-size: 20px;">Instagram</b></a><br />

<img src='https://i.imgur.com/OFPEhnY.png' border='0'/><a href="https://twitter.com/buytahoehomes" target="_blank"><b style="font-size: 20px;">Twitter</b></a><br />

&nbsp;&nbsp;<img src='https://imgur.com/j0fyfzZ.png' border='0'/> <a href="https://www.compass.com/concierge/lexi-cerretti" target="_blank"><b style="font-size: 18px;">Lexi’s Concierge Page</b></a><br>

<br>
&nbsp;&nbsp;<img src='https://imgur.com/KeI9feQ.png' border='0'/> <a href="https://www.compass.com/bridge-loan-services/lexi-cerretti" target="_blank"><b style="font-size: 18px;">Lexi’s Bridge Loan Services Page</b></a> </p>
                </div>
              
            
        
           
              
                <div class="profile-experience-specialties" data-tn="profile-experience-specialties">
                  <h2 class="textIntent-title1 experience-title">Specialties</h2>
                  <p class="profile-body"> Buyer's Agent, Listing Agent, Relocation, Luxury Homes, Lakefront Sales, Landlord
 </p>
                </div>
              
            
        
           
              
                <div class="profile-experience-education" data-tn="profile-experience-education">
                  <h2 class="textIntent-title1 experience-title">Education</h2>
                  <p class="profile-body"> Antioch University New England - Master of Science<br>
Environmental Science
<br><br>
University of Rhode Island - Bachelor of Arts<br>
Marine Studies
<br><br>

<div class="textIntent-title1">Client Testimonials</div>

<br>

<div style="height:375px;width:325px;border:1px solid #ccc;overflow:auto;padding:10px">

<font size="3">Scroll down for more</font>

<p class="textIntent-body" style="font-size: 15px;"><span>​</span>

★★★★★<br/><span>"</span><i>We purchased a home from Lexi a couple years back.  She was extremely professional, always had our interests in mind and negotiated a great deal for us.  We were very satisfied with her expertise and judgement as our agent.</i><span>"</span><b></b><br/><br/>

★★★★★<br/><span>"</span><i>Lexi worked really hard to help us find our new rental. We thought she took a balanced approach to the negotiation process. She does not rush you to make decisions and is empathetic, thoughtful and creative. She did much more than she needed to do for us. I wholly recommend her as a realtor and would happily use her for a purchase or sale.</i><span>"</span><b></b><br/><br/>

★★★★★<br/><span>"</span><i>Lexi worked really hard to help us find our new rental. We thought she took a balanced approach to the negotiation process. She does not rush you to make decisions and is empathetic, thoughtful and creative. She did much more than she needed to do for us. I wholly recommend her as a realtor and would happily use her for a purchase or sale.</i><span>"</span><b></b><br/><br/>

★★★★★<br/><span>"</span><i>Lexi Cerretti is very professional,  knowledgable, and detailed. Our transactions and questions were all handled promptly. A pleasure to work with and have already recommended her to friends.</i><span>"</span><b></b><br/><br/>

★★★★★<br/><span>"</span><i>I would highly recommend Lexi. She is very informed on the real estate market in Tahoe, extremely reliable and is overall a wonderful person to work with.</i><span>"</span><b></b><br/></p></div>

<br>​
 </p>
                </div>
              
            
        
      </div>
      

      <!--About Block-->
      <div class="aboutAgent-wrapper" data-tn="aboutAgent-container" id="aboutAgent-container"><div class="textIntent-headline1 profile-about-headline">About <!-- -->Lexi</div><div class="profile-about" data-tn="profile-about"><div class="profile-body" data-tn="profile-about-body">Lexi is the #1 Sales Agent for Reno-Lake Tahoe, Nevada in 2020, non-broker/owner, with over $98 Million sold. Averaging 9 sales a year, Lexi doesn't focus on quantity, rather, on the quality of her relationships with select clients valuing her time and hands-on approach. Her knowledge of Lake Tahoe's luxury and waterfront properties is second to none, with over 25 Lakefront sales including Lake Tahoe, Nevada’s highest priced lakefront sale at $38 Million. Lexi leverages her network of top luxury brokers to reach high net worth Buyers, providing her Sellers a distinct advantage. Lexi has a Master’s of Science degree and has worked in land planning and permitting, web marketing, and has completed several residential construction projects with her husband, a licensed Nevada General Contractor. Ask Lexi about Compass’s unique home improvement and lending programs. She also participates in Compass’s private listing service, as an opportunity for Sellers who do not their property publicly listed.<br><br>

Lexi is an avid sailor and skier, having grown up in Connecticut, Rhode Island and Maine, racing sailboats collegiately and in yacht racing circuits. Lexi medaled in the Adams Cup US Sailing Women's National Championships, and also competed in women's ice hockey. Lexi moved to Lake Tahoe in 2001 and has embraced the four-season lifestyle with her husband and daughter, who ski races with the Squaw Valley Ski Team. Lexi’s competitive spirit and negotiating tactics help her navigate smoothly through the most challenging transactions.<br><br>

Nevada's tax haven, combined with world-class Waterfront, Mountain, Ski, Golf, Farm & Ranch and Metropolitan lifestyles provides unique opportunities for buyers, in close proximity to the major wealth centers of San Francisco Bay Area and Silicon Valley. Lexi connects buyers to advisors helping them domicile in Nevada with all the intricacies involved in transitioning to Nevada.<br><br></div></div></div>
    </div>
  </section>

  <!-- Featured Spotlights -->
  

  <!-- Team Members -->
  

   <div id="active-listing-container"></div>

  <div id="listings-react-app"></div>
  <script src="/ucfe-assets/agent-profiles/agent-profiles-v1.102.0/agentProfiles.bundle.js"></script>
  <script>
    // this variable is exposed to be used by all client side components
    window.__AGENT_PROFILE__ = {"data": {"entityId":"6036a0bf38a0ae00016042c1","displayName":"Lexi Cerretti","isTeam":false,"activeListings":{"sales":[],"rentals":[]},"closedDeals":{"rentals":[],"sales":[{"listingIdSHA":"550851633306009433","listingType":2,"location":{"prettyAddress":"550 Sierra Sunset Lane","city":"Zephyr Cove","state":"NV","zipCode":"89448","geoId":"lake_tahoe"},"size":{"bedrooms":10,"bathrooms":12.5},"price":{"lastKnown":38000000,"formatted":"$38,000,000"},"detailedInfo":{"amenities":["Air Conditioning","Boating","Butlers Pantry","Game Room","Garage","Laundry","Pantry","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/ef2dcb71252fafcc638a3a4310002e0411050701_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 550 Sierra Sunset Lane."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/550-sierra-sunset-lane-zephyr-cove-nv-89448/550851633306009433/","pageLinkSlug":"550-sierra-sunset-lane-zephyr-cove-nv-89448","propertyLinkSlug":"550-sierra-sunset-lane-zephyr-cove-nv-89448","navigationPageLink":"/listing/550-sierra-sunset-lane-zephyr-cove-nv-89448/550851633306009433/","canonicalPageLink":"/listing/550-sierra-sunset-lane-zephyr-cove-nv-89448/550851633306009433/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"592145642745530929","listingType":2,"location":{"prettyAddress":"1165 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3.5},"price":{"lastKnown":16900000,"formatted":"$16,900,000"},"detailedInfo":{"amenities":["Deck","Garage","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/b60ef7be6e7b4ad4e7da15107fd10522600fbea8_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1165 Lakeshore Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1165-lakeshore-boulevard-incline-village-nv-89451/592145642745530929/","pageLinkSlug":"1165-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"1165-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/1165-lakeshore-boulevard-incline-village-nv-89451/592145642745530929/","canonicalPageLink":"/listing/1165-lakeshore-boulevard-incline-village-nv-89451/592145642745530929/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"629829578216785593","listingType":2,"location":{"prettyAddress":"444 Gonowabie Road","city":"Crystal Bay","state":"NV","zipCode":"89402","geoId":"lake_tahoe"},"size":{"bedrooms":6,"bathrooms":6.5},"price":{"lastKnown":15450000,"formatted":"$15,450,000"},"detailedInfo":{"amenities":["Barbecue Area","Deck","Elevator","Garage","Lake Views","Laundry in Building","Private Outdoor Space","Washer / Dryer in Unit","Waterfront","Wine Cellar"],"access":"Elevator","outdoorSpace":["Barbecue Area","Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/cf8df037398010ca92bc8947c08290db3295f0dd_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 444 Gonowabie Road."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/444-gonowabie-road-crystal-bay-nv-89402/629829578216785593/","pageLinkSlug":"444-gonowabie-road-crystal-bay-nv-89402","propertyLinkSlug":"444-gonowabie-road-crystal-bay-nv-89402","navigationPageLink":"/listing/444-gonowabie-road-crystal-bay-nv-89402/629829578216785593/","canonicalPageLink":"/listing/444-gonowabie-road-crystal-bay-nv-89402/629829578216785593/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467763581588665","listingType":2,"location":{"prettyAddress":"1170 Vivian Lane","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":5.5},"price":{"lastKnown":15000000,"formatted":"$15,000,000"},"detailedInfo":{"amenities":["Air Conditioning","Garage","Lake Views","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/83ee437fed2c69fcfd534f54799c9a46aab63e6e_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1170 Vivian Lane."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1170-vivian-lane-incline-village-nv-89451/552467763581588665/","pageLinkSlug":"1170-vivian-lane-incline-village-nv-89451","propertyLinkSlug":"1170-vivian-lane-incline-village-nv-89451","navigationPageLink":"/listing/1170-vivian-lane-incline-village-nv-89451/552467763581588665/","canonicalPageLink":"/listing/1170-vivian-lane-incline-village-nv-89451/552467763581588665/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469351419692649","listingType":2,"location":{"prettyAddress":"869 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":9.5},"price":{"lastKnown":11875000,"formatted":"$11,875,000"},"detailedInfo":{"amenities":["Garage","Parking Included","Waterfront"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/e9e6ddd4348681b29552b92e2c5ab6450c95c59c_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 869 Lakeshore Boulevard."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/869-lakeshore-boulevard-incline-village-nv-89451/552469351419692649/","pageLinkSlug":"869-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"869-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/869-lakeshore-boulevard-incline-village-nv-89451/552469351419692649/","canonicalPageLink":"/listing/869-lakeshore-boulevard-incline-village-nv-89451/552469351419692649/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468221968689865","listingType":2,"location":{"prettyAddress":"1155 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4.5},"price":{"lastKnown":11600000,"formatted":"$11,600,000"},"detailedInfo":{"amenities":["Air Conditioning","Breakfast Nook","Deck","Formal Dining Room","Garage","Lake Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/bc94fa65c32686b9b81b545f78fc9584be6a4d91_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1155 Lakeshore Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1155-lakeshore-boulevard-incline-village-nv-89451/552468221968689865/","pageLinkSlug":"1155-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"1155-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/1155-lakeshore-boulevard-incline-village-nv-89451/552468221968689865/","canonicalPageLink":"/listing/1155-lakeshore-boulevard-incline-village-nv-89451/552468221968689865/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468882630639281","listingType":2,"location":{"prettyAddress":"93 Shoreline Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":6.5},"price":{"lastKnown":10500000,"formatted":"$10,500,000"},"detailedInfo":{"amenities":["Deck","Elevator","Garage","Lake Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/5fd3f0d10dcf6b967d2f53b69dfb53631807faab_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 93 Shoreline Circle."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/93-shoreline-circle-incline-village-nv-89451/552468882630639281/","pageLinkSlug":"93-shoreline-circle-incline-village-nv-89451","propertyLinkSlug":"93-shoreline-circle-incline-village-nv-89451","navigationPageLink":"/listing/93-shoreline-circle-incline-village-nv-89451/552468882630639281/","canonicalPageLink":"/listing/93-shoreline-circle-incline-village-nv-89451/552468882630639281/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469483372498217","listingType":2,"location":{"prettyAddress":"32 Crystal Drive","city":"Crystal Bay","state":"NV","zipCode":"89402","geoId":"lake_tahoe"},"size":{"bedrooms":6,"bathrooms":9.5},"price":{"lastKnown":7500000,"formatted":"$7,500,000"},"detailedInfo":{"amenities":["Elevator","Garage","Gazebo","Parking Included","Private Outdoor Space","Spa","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/cd7d2d56cc55ca9cb1c3b933f27a78db9bcc3411_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 32 Crystal Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/32-crystal-drive-crystal-bay-nv-89402/552469483372498217/","pageLinkSlug":"32-crystal-drive-crystal-bay-nv-89402","propertyLinkSlug":"32-crystal-drive-crystal-bay-nv-89402","navigationPageLink":"/listing/32-crystal-drive-crystal-bay-nv-89402/552469483372498217/","canonicalPageLink":"/listing/32-crystal-drive-crystal-bay-nv-89402/552469483372498217/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"550851634505515041","listingType":2,"location":{"prettyAddress":"453 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3.5},"price":{"lastKnown":7300000,"formatted":"$7,300,000"},"detailedInfo":{"amenities":["Boat Lift","Deck","Elevator","Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f7c48bb4942f8f9a49725d3cef87eaa3a1e9b6a2_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 453 Lakeshore Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/453-lakeshore-boulevard-incline-village-nv-89451/550851634505515041/","pageLinkSlug":"453-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"453-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/453-lakeshore-boulevard-incline-village-nv-89451/550851634505515041/","canonicalPageLink":"/listing/453-lakeshore-boulevard-incline-village-nv-89451/550851634505515041/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468929069897161","listingType":2,"location":{"prettyAddress":"28 Crystal Drive","city":"Crystal Bay","state":"NV","zipCode":"89402","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4.5},"price":{"lastKnown":6250000,"formatted":"$6,250,000"},"detailedInfo":{"amenities":["Garage","Home Theater","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront","Wine Cellar"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/65e1717d4bed420f1c6f0711b791a84b76d8246e_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 28 Crystal Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/28-crystal-drive-crystal-bay-nv-89402/552468929069897161/","pageLinkSlug":"28-crystal-drive-crystal-bay-nv-89402","propertyLinkSlug":"28-crystal-drive-crystal-bay-nv-89402","navigationPageLink":"/listing/28-crystal-drive-crystal-bay-nv-89402/552468929069897161/","canonicalPageLink":"/listing/28-crystal-drive-crystal-bay-nv-89402/552468929069897161/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467788320078017","listingType":2,"location":{"prettyAddress":"1444 Pittman Terrace","city":"Glenbrook","state":"NV","zipCode":"89413","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":5.5},"price":{"lastKnown":6095000,"formatted":"$6,095,000"},"detailedInfo":{"amenities":["Cooktop","Garage","Laundry in Building","Private Outdoor Space","Range","Refrigerator","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/4a1108e8e50a6a7f6240798deae442d6de5dd2a5_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1444 Pittman Terrace."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1444-pittman-terrace-glenbrook-nv-89413/552467788320078017/","pageLinkSlug":"1444-pittman-terrace-glenbrook-nv-89413","propertyLinkSlug":"1444-pittman-terrace-glenbrook-nv-89413","navigationPageLink":"/listing/1444-pittman-terrace-glenbrook-nv-89413/552467788320078017/","canonicalPageLink":"/listing/1444-pittman-terrace-glenbrook-nv-89413/552467788320078017/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468615704790289","listingType":2,"location":{"prettyAddress":"1680 Pine Cone Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":5},"price":{"lastKnown":5790000,"formatted":"$5,790,000"},"detailedInfo":{"amenities":["Garage","Laundry","Laundry Area","Parking Included","Private Outdoor Space","Soaking Tub","Spa","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/217ab1c5dbf1d9ae487672a7ccb37501a0fae015_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1680 Pine Cone Circle."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/1680-pine-cone-circle-incline-village-nv-89451/552468615704790289/","pageLinkSlug":"1680-pine-cone-circle-incline-village-nv-89451","propertyLinkSlug":"1680-pine-cone-circle-incline-village-nv-89451","navigationPageLink":"/listing/1680-pine-cone-circle-incline-village-nv-89451/552468615704790289/","canonicalPageLink":"/listing/1680-pine-cone-circle-incline-village-nv-89451/552468615704790289/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"550851629573321569","listingType":2,"location":{"prettyAddress":"545 Eagle Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4.5},"price":{"lastKnown":5653000,"formatted":"$5,653,000"},"detailedInfo":{"amenities":["Deck","Driveway","Elevator","Garage","Gym","Kitchen Dining","Laundry","Laundry in Building","Pantry","Parking Included","Private Outdoor Space","Spa","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/78670323d01d7ec4966c9b6f1824ff7f82480878_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 545 Eagle Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/545-eagle-drive-incline-village-nv-89451/550851629573321569/","pageLinkSlug":"545-eagle-drive-incline-village-nv-89451","propertyLinkSlug":"545-eagle-drive-incline-village-nv-89451","navigationPageLink":"/listing/545-eagle-drive-incline-village-nv-89451/550851629573321569/","canonicalPageLink":"/listing/545-eagle-drive-incline-village-nv-89451/550851629573321569/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468539393783649","listingType":2,"location":{"prettyAddress":"790 Fairview Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":6,"bathrooms":8},"price":{"lastKnown":5600000,"formatted":"$5,600,000"},"detailedInfo":{"amenities":["Basement","Driveway","Elevator","Garage","Parking Included","Private Outdoor Space","Waterfront","Wine Cellar"],"access":"Elevator","outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/e0e78bfb339fc8fe30514a83ec199f46bab5b1da_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 790 Fairview Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/790-fairview-boulevard-incline-village-nv-89451/552468539393783649/","pageLinkSlug":"790-fairview-boulevard-incline-village-nv-89451","propertyLinkSlug":"790-fairview-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/790-fairview-boulevard-incline-village-nv-89451/552468539393783649/","canonicalPageLink":"/listing/790-fairview-boulevard-incline-village-nv-89451/552468539393783649/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468878813483321","listingType":2,"location":{"prettyAddress":"843 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3.5},"price":{"lastKnown":5325000,"formatted":"$5,325,000"},"detailedInfo":{"amenities":["Deck","Garage","Home Office","Parking Included","Private Outdoor Space","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/937998bcf5c85ef6797bb8dc81042e11f1c3c44b_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 843 Lakeshore Boulevard."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/843-lakeshore-boulevard-incline-village-nv-89451/552468878813483321/","pageLinkSlug":"843-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"843-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/843-lakeshore-boulevard-incline-village-nv-89451/552468878813483321/","canonicalPageLink":"/listing/843-lakeshore-boulevard-incline-village-nv-89451/552468878813483321/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467674889175057","listingType":2,"location":{"prettyAddress":"469 Fairview Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":6,"bathrooms":8},"price":{"lastKnown":4580000,"formatted":"$4,580,000"},"detailedInfo":{"amenities":["Balcony","Elevator","Floor to Ceiling Windows","Garage","Kitchen Dining","Laundry in Building","Mountain Views","Parking Included","Private Outdoor Space","Steam Shower","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Balcony","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/671401d3703db06d66c97fe1df0b39f3f17193e4_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 469 Fairview Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/469-fairview-boulevard-incline-village-nv-89451/552467674889175057/","pageLinkSlug":"469-fairview-boulevard-incline-village-nv-89451","propertyLinkSlug":"469-fairview-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/469-fairview-boulevard-incline-village-nv-89451/552467674889175057/","canonicalPageLink":"/listing/469-fairview-boulevard-incline-village-nv-89451/552467674889175057/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469978015019601","listingType":2,"location":{"prettyAddress":"336 5th Green Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":6},"price":{"lastKnown":4500000,"formatted":"$4,500,000"},"detailedInfo":{"amenities":["Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/0111226705935c53339a74cb83b5b95a1309658f_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 336 5th Green Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/336-5th-green-court-incline-village-nv-89451/552469978015019601/","pageLinkSlug":"336-5th-green-court-incline-village-nv-89451","propertyLinkSlug":"336-5th-green-court-incline-village-nv-89451","navigationPageLink":"/listing/336-5th-green-court-incline-village-nv-89451/552469978015019601/","canonicalPageLink":"/listing/336-5th-green-court-incline-village-nv-89451/552469978015019601/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467666902879945","listingType":2,"location":{"prettyAddress":"759 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":5.5},"price":{"lastKnown":4400000,"formatted":"$4,400,000"},"detailedInfo":{"amenities":["Air Conditioning","Formal Dining Room","Garage","Laundry","Laundry in Building","Parking Included","Waterfront","Wine Cooler"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/2e47cfb5a19deb3ef65b0c9a0fe10c559773d007_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 759 Lakeshore Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/759-lakeshore-boulevard-incline-village-nv-89451/552467666902879945/","pageLinkSlug":"759-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"759-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/759-lakeshore-boulevard-incline-village-nv-89451/552467666902879945/","canonicalPageLink":"/listing/759-lakeshore-boulevard-incline-village-nv-89451/552467666902879945/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468567176853553","listingType":2,"location":{"prettyAddress":"880 Freels Peak Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4},"price":{"lastKnown":3975000,"formatted":"$3,975,000"},"detailedInfo":{"amenities":["Breakfast Bar","Chef's Kitchen","Garage","Laundry in Building","Parking Included","Private Outdoor Space","Private Patio","Spa","Steam Shower","Walk-in Closet","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space","Private Patio"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/3a79c70ec10ffba46040b2c704278425a5eabb6b_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 880 Freels Peak Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/880-freels-peak-drive-incline-village-nv-89451/552468567176853553/","pageLinkSlug":"880-freels-peak-drive-incline-village-nv-89451","propertyLinkSlug":"880-freels-peak-drive-incline-village-nv-89451","navigationPageLink":"/listing/880-freels-peak-drive-incline-village-nv-89451/552468567176853553/","canonicalPageLink":"/listing/880-freels-peak-drive-incline-village-nv-89451/552468567176853553/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468790154284761","listingType":2,"location":{"prettyAddress":"536 Fairview Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":5},"price":{"lastKnown":3850000,"formatted":"$3,850,000"},"detailedInfo":{"amenities":["Air Conditioning","Deck","Elevator","Garage","Lake Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/81f0a49d85e7edb67a85450a6bcbe789f15b6c70_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 536 Fairview Boulevard."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/536-fairview-boulevard-incline-village-nv-89451/552468790154284761/","pageLinkSlug":"536-fairview-boulevard-incline-village-nv-89451","propertyLinkSlug":"536-fairview-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/536-fairview-boulevard-incline-village-nv-89451/552468790154284761/","canonicalPageLink":"/listing/536-fairview-boulevard-incline-village-nv-89451/552468790154284761/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467748096218033","listingType":2,"location":{"prettyAddress":"625 Anderson Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":6,"bathrooms":6},"price":{"lastKnown":3800000,"formatted":"$3,800,000"},"detailedInfo":{"amenities":["Balcony","Game Room","Garage","Lake Views","Laundry in Building","Pantry","Parking Included","Private Outdoor Space","Tile Floors","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Balcony","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/8bb6c9b0c7134458ede6cc12441fd5e1b895a0fe_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 625 Anderson Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/625-anderson-drive-incline-village-nv-89451/552467748096218033/","pageLinkSlug":"625-anderson-drive-incline-village-nv-89451","propertyLinkSlug":"625-anderson-drive-incline-village-nv-89451","navigationPageLink":"/listing/625-anderson-drive-incline-village-nv-89451/552467748096218033/","canonicalPageLink":"/listing/625-anderson-drive-incline-village-nv-89451/552467748096218033/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"592621550564698161","listingType":2,"location":{"prettyAddress":"717 Mays Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4.5},"price":{"lastKnown":3750000,"formatted":"$3,750,000"},"detailedInfo":{"amenities":["Corner Lot","Deck","Driveway","Garage","Hot Tub","Parking Included","Private Outdoor Space","Stone Floors","Walk-in Closet","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"],"apartmentLayout":"Corner Lot"},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/66dc6e7f3adbd807ab675d717cb308f5eccc2852_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 717 Mays Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/717-mays-boulevard-incline-village-nv-89451/592621550564698161/","pageLinkSlug":"717-mays-boulevard-incline-village-nv-89451","propertyLinkSlug":"717-mays-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/717-mays-boulevard-incline-village-nv-89451/592621550564698161/","canonicalPageLink":"/listing/717-mays-boulevard-incline-village-nv-89451/592621550564698161/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468570649838841","listingType":2,"location":{"prettyAddress":"907 Tyner Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":6,"bathrooms":7},"price":{"lastKnown":3550000,"formatted":"$3,550,000"},"detailedInfo":{"amenities":["Balcony","Elevator","Garage","Gym","Lake Views","Laundry","Laundry in Building","Media / Recreation Room","Parking Included","Pool","Private Outdoor Space","Walk-in Closet","Washer / Dryer in Unit","Waterfront","Wet Bar"],"access":"Elevator","outdoorSpace":["Balcony","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/6c4c4877a0362a25d17a08ca21844e9eab20d904_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 907 Tyner Way."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/907-tyner-way-incline-village-nv-89451/552468570649838841/","pageLinkSlug":"907-tyner-way-incline-village-nv-89451","propertyLinkSlug":"907-tyner-way-incline-village-nv-89451","navigationPageLink":"/listing/907-tyner-way-incline-village-nv-89451/552468570649838841/","canonicalPageLink":"/listing/907-tyner-way-incline-village-nv-89451/552468570649838841/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468570800833801","listingType":2,"location":{"prettyAddress":"569 Alden Lane","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":6},"price":{"lastKnown":3525000,"formatted":"$3,525,000"},"detailedInfo":{"amenities":["Air Conditioning","Balcony","Deck","Game Room","Garage","Home Office","Lake Views","Laundry in Building","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Balcony","Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/c78697de12bb8d62af624b86260e42bf3952b8a2_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 569 Alden Lane."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/569-alden-lane-incline-village-nv-89451/552468570800833801/","pageLinkSlug":"569-alden-lane-incline-village-nv-89451","propertyLinkSlug":"569-alden-lane-incline-village-nv-89451","navigationPageLink":"/listing/569-alden-lane-incline-village-nv-89451/552468570800833801/","canonicalPageLink":"/listing/569-alden-lane-incline-village-nv-89451/552468570800833801/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467728080998985","listingType":2,"location":{"prettyAddress":"515 Spencer Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4.5},"price":{"lastKnown":3500000,"formatted":"$3,500,000"},"detailedInfo":{"amenities":["Air Conditioning","Waterfront"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/54f046ee8407f59c6f52c9fcd88c2b3c32ff0b9b_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 515 Spencer Way."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/515-spencer-way-incline-village-nv-89451/552467728080998985/","pageLinkSlug":"515-spencer-way-incline-village-nv-89451","propertyLinkSlug":"515-spencer-way-incline-village-nv-89451","navigationPageLink":"/listing/515-spencer-way-incline-village-nv-89451/552467728080998985/","canonicalPageLink":"/listing/515-spencer-way-incline-village-nv-89451/552467728080998985/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467654529844873","listingType":2,"location":{"prettyAddress":"558 Dale Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":5},"price":{"lastKnown":3095000,"formatted":"$3,095,000"},"detailedInfo":{"amenities":["Deck","Elevator","Formal Dining Room","Game Room","Garage","Hot Tub","Kitchen Dining","Laundry in Building","Parking Included","Private Outdoor Space","Stainless Steel Appliances","Steam Shower","Walk-in Closet","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/609e1e2678dd9546e99190b7f4260a1f057d8cd3_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 558 Dale Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/558-dale-drive-incline-village-nv-89451/552467654529844873/","pageLinkSlug":"558-dale-drive-incline-village-nv-89451","propertyLinkSlug":"558-dale-drive-incline-village-nv-89451","navigationPageLink":"/listing/558-dale-drive-incline-village-nv-89451/552467654529844873/","canonicalPageLink":"/listing/558-dale-drive-incline-village-nv-89451/552467654529844873/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468443587328417","listingType":2,"location":{"prettyAddress":"121 Mayhew Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4},"price":{"lastKnown":2950000,"formatted":"$2,950,000"},"detailedInfo":{"amenities":["Balcony","Garage","Gym","Laundry","Pantry","Parking Included","Private Outdoor Space","Spa","Walk-in Closet","Washer / Dryer in Unit"],"outdoorSpace":["Balcony","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/db265fd1e5a283fefda02043e97a4eac0d4b3b7c_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 121 Mayhew Circle."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/121-mayhew-circle-incline-village-nv-89451/552468443587328417/","pageLinkSlug":"121-mayhew-circle-incline-village-nv-89451","propertyLinkSlug":"121-mayhew-circle-incline-village-nv-89451","navigationPageLink":"/listing/121-mayhew-circle-incline-village-nv-89451/552468443587328417/","canonicalPageLink":"/listing/121-mayhew-circle-incline-village-nv-89451/552468443587328417/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468579189287705","listingType":2,"location":{"prettyAddress":"590 Pinto Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4.5},"price":{"lastKnown":2925000,"formatted":"$2,925,000"},"detailedInfo":{"amenities":["Deck","Double Oven","Garage","Hot Tub","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Soaking Tub","Spa","Steam Shower","Walk-in Closet","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/48336400da0e7c28575a73e0b69119ea82ad13f6_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 590 Pinto Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/590-pinto-court-incline-village-nv-89451/552468579189287705/","pageLinkSlug":"590-pinto-court-incline-village-nv-89451","propertyLinkSlug":"590-pinto-court-incline-village-nv-89451","navigationPageLink":"/listing/590-pinto-court-incline-village-nv-89451/552468579189287705/","canonicalPageLink":"/listing/590-pinto-court-incline-village-nv-89451/552468579189287705/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468368794761353","listingType":2,"location":{"prettyAddress":"545 Lodgepole Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":7.5},"price":{"lastKnown":2800000,"formatted":"$2,800,000"},"detailedInfo":{"amenities":["Game Room","Garage","Home Theater","Lake Views","Private Outdoor Space","Private Yard","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space","Private Yard"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/4e53714aa801e580271d86aadd9e093697fc48ce_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 545 Lodgepole Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/545-lodgepole-drive-incline-village-nv-89451/552468368794761353/","pageLinkSlug":"545-lodgepole-drive-incline-village-nv-89451","propertyLinkSlug":"545-lodgepole-drive-incline-village-nv-89451","navigationPageLink":"/listing/545-lodgepole-drive-incline-village-nv-89451/552468368794761353/","canonicalPageLink":"/listing/545-lodgepole-drive-incline-village-nv-89451/552468368794761353/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468602366903153","listingType":2,"location":{"prettyAddress":"142 Mayhew Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":5},"price":{"lastKnown":2650000,"formatted":"$2,650,000"},"detailedInfo":{"amenities":["Deck","Garage","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Private Yard","Washer / Dryer in Unit","Wine Cooler"],"outdoorSpace":["Deck","Private Outdoor Space","Private Yard"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/1ed90378ba980adbad8bc5a45a51b5b6c42a5dfd_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 142 Mayhew Circle."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/142-mayhew-circle-incline-village-nv-89451/552468602366903153/","pageLinkSlug":"142-mayhew-circle-incline-village-nv-89451","propertyLinkSlug":"142-mayhew-circle-incline-village-nv-89451","navigationPageLink":"/listing/142-mayhew-circle-incline-village-nv-89451/552468602366903153/","canonicalPageLink":"/listing/142-mayhew-circle-incline-village-nv-89451/552468602366903153/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467956930778169","listingType":2,"location":{"prettyAddress":"435 Fairview Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4},"price":{"lastKnown":2450000,"formatted":"$2,450,000"},"detailedInfo":{"amenities":["Deck","Game Room","Garage","Private Outdoor Space","Spa","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/b0cb71370c0bb9af117324ef49cc4d3bc0d5864a_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 435 Fairview Boulevard."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/435-fairview-boulevard-incline-village-nv-89451/552467956930778169/","pageLinkSlug":"435-fairview-boulevard-incline-village-nv-89451","propertyLinkSlug":"435-fairview-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/435-fairview-boulevard-incline-village-nv-89451/552467956930778169/","canonicalPageLink":"/listing/435-fairview-boulevard-incline-village-nv-89451/552467956930778169/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467643440283129","listingType":2,"location":{"prettyAddress":"475 Lakeshore Boulevard, Unit 11","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2.5},"price":{"lastKnown":2450000,"formatted":"$2,450,000"},"detailedInfo":{"amenities":["Chef's Kitchen","Contemporary","Deck","Elevator","Garage","Lake Views","Powder Room","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/2b49fc93184857d367c5894fb31af56ed71821fb_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 475 Lakeshore Boulevard, Unit 11."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/475-lakeshore-boulevard-unit-11-incline-village-nv-89451/552467643440283129/","pageLinkSlug":"475-lakeshore-boulevard-unit-11-incline-village-nv-89451","propertyLinkSlug":"475-lakeshore-boulevard-apt-11-incline-village-nv-89451","navigationPageLink":"/listing/475-lakeshore-boulevard-unit-11-incline-village-nv-89451/552467643440283129/","canonicalPageLink":"/listing/475-lakeshore-boulevard-unit-11-incline-village-nv-89451/552467643440283129/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468274783785281","listingType":2,"location":{"prettyAddress":"419 Valerie Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3.5},"price":{"lastKnown":2440000,"formatted":"$2,440,000"},"detailedInfo":{"amenities":["Deck","Driveway","Garage","Gym","Lake Views","Laundry","Parking Included","Washer / Dryer in Unit","Waterfront","Wine Cellar"],"outdoorSpace":["Deck"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/5f3b7e42cbcf2a11610d8b34a43e07e4e157e3e3_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 419 Valerie Court."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/419-valerie-court-incline-village-nv-89451/552468274783785281/","pageLinkSlug":"419-valerie-court-incline-village-nv-89451","propertyLinkSlug":"419-valerie-court-incline-village-nv-89451","navigationPageLink":"/listing/419-valerie-court-incline-village-nv-89451/552468274783785281/","canonicalPageLink":"/listing/419-valerie-court-incline-village-nv-89451/552468274783785281/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469728193768457","listingType":2,"location":{"prettyAddress":"475 Lakeshore Boulevard, Unit 24","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4.5},"price":{"lastKnown":2250000,"formatted":"$2,250,000"},"detailedInfo":{"amenities":["Common Outdoor Space","Garage","Hot Water Included","Panoramic Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Common Outdoor Space","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/049abffa2089f97b42a34e596d715aa2d6b4f50a_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 475 Lakeshore Boulevard, Unit 24."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/475-lakeshore-boulevard-unit-24-incline-village-nv-89451/552469728193768457/","pageLinkSlug":"475-lakeshore-boulevard-unit-24-incline-village-nv-89451","propertyLinkSlug":"475-lakeshore-boulevard-apt-24-incline-village-nv-89451","navigationPageLink":"/listing/475-lakeshore-boulevard-unit-24-incline-village-nv-89451/552469728193768457/","canonicalPageLink":"/listing/475-lakeshore-boulevard-unit-24-incline-village-nv-89451/552469728193768457/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468996598203497","listingType":2,"location":{"prettyAddress":"517 Spencer Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":3.5},"price":{"lastKnown":2137500,"formatted":"$2,137,500"},"detailedInfo":{"amenities":["Deck","Garage","Lake Views","Panoramic Views","Pantry","Parking Included","Private Outdoor Space","Waterfront","Wine Cellar"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f012b0648f0fb40b7bd8cfa0e493ece29fd5107f_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 517 Spencer Way."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/517-spencer-way-incline-village-nv-89451/552468996598203497/","pageLinkSlug":"517-spencer-way-incline-village-nv-89451","propertyLinkSlug":"517-spencer-way-incline-village-nv-89451","navigationPageLink":"/listing/517-spencer-way-incline-village-nv-89451/552468996598203497/","canonicalPageLink":"/listing/517-spencer-way-incline-village-nv-89451/552468996598203497/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"550851656299310737","listingType":2,"location":{"prettyAddress":"617 Tumbleweed Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4.5},"price":{"lastKnown":2025000,"formatted":"$2,025,000"},"detailedInfo":{"amenities":["Air Conditioning","Attic","Deck","Driveway","Front Yard","Garage","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Spa","Walk-in Closet","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Front Yard","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/0997cfb4d751293c864abe2945dbecf530fdafcb_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 617 Tumbleweed Circle."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/617-tumbleweed-circle-incline-village-nv-89451/550851656299310737/","pageLinkSlug":"617-tumbleweed-circle-incline-village-nv-89451","propertyLinkSlug":"617-tumbleweed-circle-incline-village-nv-89451","navigationPageLink":"/listing/617-tumbleweed-circle-incline-village-nv-89451/550851656299310737/","canonicalPageLink":"/listing/617-tumbleweed-circle-incline-village-nv-89451/550851656299310737/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469501307198313","listingType":2,"location":{"prettyAddress":"928 Lakeshore Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3.5},"price":{"lastKnown":1950000,"formatted":"$1,950,000"},"detailedInfo":{"amenities":["Garage","Home Office","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/ecc8c2850f2905c9684a022f9f971374fb5e6d75_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 928 Lakeshore Boulevard."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/928-lakeshore-boulevard-incline-village-nv-89451/552469501307198313/","pageLinkSlug":"928-lakeshore-boulevard-incline-village-nv-89451","propertyLinkSlug":"928-lakeshore-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/928-lakeshore-boulevard-incline-village-nv-89451/552469501307198313/","canonicalPageLink":"/listing/928-lakeshore-boulevard-incline-village-nv-89451/552469501307198313/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467856955293441","listingType":2,"location":{"prettyAddress":"676 Tyner Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":1900000,"formatted":"$1,900,000"},"detailedInfo":{"amenities":["Attached Garage","Deck","Garage","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Soaking Tub","Spa","Walk-in Closet","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/a9c314d7b06823b97ab65c8f5a98a8cf0e658228_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 676 Tyner Way."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/676-tyner-way-incline-village-nv-89451/552467856955293441/","pageLinkSlug":"676-tyner-way-incline-village-nv-89451","propertyLinkSlug":"676-tyner-way-incline-village-nv-89451","navigationPageLink":"/listing/676-tyner-way-incline-village-nv-89451/552467856955293441/","canonicalPageLink":"/listing/676-tyner-way-incline-village-nv-89451/552467856955293441/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467982667027969","listingType":2,"location":{"prettyAddress":"475 Lakeshore Boulevard, Unit 14","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":1750000,"formatted":"$1,750,000"},"detailedInfo":{"amenities":["Boat Dock","Breakfast Bar","Deck","Garage","Hardwood Floors","Lake Views","Laundry in Building","Parking Included","Private Outdoor Space","Range","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/673d53b3bcc947d74b4ce6869429e23bd9340191_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 475 Lakeshore Boulevard, Unit 14."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/475-lakeshore-boulevard-unit-14-incline-village-nv-89451/552467982667027969/","pageLinkSlug":"475-lakeshore-boulevard-unit-14-incline-village-nv-89451","propertyLinkSlug":"475-lakeshore-boulevard-apt-14-incline-village-nv-89451","navigationPageLink":"/listing/475-lakeshore-boulevard-unit-14-incline-village-nv-89451/552467982667027969/","canonicalPageLink":"/listing/475-lakeshore-boulevard-unit-14-incline-village-nv-89451/552467982667027969/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467865822206913","listingType":2,"location":{"prettyAddress":"676 Tyner Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":1620000,"formatted":"$1,620,000"},"detailedInfo":{"amenities":["Garage","Laundry in Building","Parking Included","Waterfront"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/4dd525e134685f0f550190845ce971157cc0cdce_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 676 Tyner Way."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/676-tyner-way-incline-village-nv-89451/552467865822206913/","pageLinkSlug":"676-tyner-way-incline-village-nv-89451","propertyLinkSlug":"676-tyner-way-incline-village-nv-89451","navigationPageLink":"/listing/676-tyner-way-incline-village-nv-89451/552467865822206913/","canonicalPageLink":"/listing/676-tyner-way-incline-village-nv-89451/552467865822206913/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469462190953793","listingType":2,"location":{"prettyAddress":"550 Fairview Boulevard","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":5.5},"price":{"lastKnown":1570000,"formatted":"$1,570,000"},"detailedInfo":{"amenities":["Deck","Elevator","Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/048bace608fb49ef2c35c695bf39cdb0c1866c5d_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 550 Fairview Boulevard."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/550-fairview-boulevard-incline-village-nv-89451/552469462190953793/","pageLinkSlug":"550-fairview-boulevard-incline-village-nv-89451","propertyLinkSlug":"550-fairview-boulevard-incline-village-nv-89451","navigationPageLink":"/listing/550-fairview-boulevard-incline-village-nv-89451/552469462190953793/","canonicalPageLink":"/listing/550-fairview-boulevard-incline-village-nv-89451/552469462190953793/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469973661167345","listingType":2,"location":{"prettyAddress":"768 Golfers Pass Road","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":4.5},"price":{"lastKnown":1465000,"formatted":"$1,465,000"},"detailedInfo":{"amenities":["Garage","Parking Included","Private Outdoor Space"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/2229fb199cfbd18352ac33e559c8811a2e02ce57_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 768 Golfers Pass Road."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/768-golfers-pass-road-incline-village-nv-89451/552469973661167345/","pageLinkSlug":"768-golfers-pass-road-incline-village-nv-89451","propertyLinkSlug":"768-golfers-pass-road-incline-village-nv-89451","navigationPageLink":"/listing/768-golfers-pass-road-incline-village-nv-89451/552469973661167345/","canonicalPageLink":"/listing/768-golfers-pass-road-incline-village-nv-89451/552469973661167345/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468606737707545","listingType":2,"location":{"prettyAddress":"701 Cristina Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3.5},"price":{"lastKnown":1450000,"formatted":"$1,450,000"},"detailedInfo":{"amenities":["Air Conditioning","Breakfast Nook","Built-Ins","Deck","Garage","Laundry","Parking Included","Private Outdoor Space","Skylight","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/c4d6aea51b0ddf41c4d16775161995741bc950de_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 701 Cristina Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/701-cristina-drive-incline-village-nv-89451/552468606737707545/","pageLinkSlug":"701-cristina-drive-incline-village-nv-89451","propertyLinkSlug":"701-cristina-drive-incline-village-nv-89451","navigationPageLink":"/listing/701-cristina-drive-incline-village-nv-89451/552468606737707545/","canonicalPageLink":"/listing/701-cristina-drive-incline-village-nv-89451/552468606737707545/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468645753047649","listingType":2,"location":{"prettyAddress":"933 Northwood Boulevard, Unit 24","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3.5},"price":{"lastKnown":1450000,"formatted":"$1,450,000"},"detailedInfo":{"amenities":["Balcony","Eat-in Kitchen","Elevator","Garage","Laundry","Laundry in Building","Parking Included","Penthouse","Pool","Private Outdoor Space","Recessed Lighting","Soaking Tub","Spa","Tile Floors","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Balcony","Private Outdoor Space"],"apartmentLayout":"Penthouse"},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/fbbb365848c2e7786aa063db5cd437c7602defa6_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 933 Northwood Boulevard, Unit 24."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/933-northwood-boulevard-unit-24-incline-village-nv-89451/552468645753047649/","pageLinkSlug":"933-northwood-boulevard-unit-24-incline-village-nv-89451","propertyLinkSlug":"933-northwood-boulevard-apt-24-incline-village-nv-89451","navigationPageLink":"/listing/933-northwood-boulevard-unit-24-incline-village-nv-89451/552468645753047649/","canonicalPageLink":"/listing/933-northwood-boulevard-unit-24-incline-village-nv-89451/552468645753047649/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469353172602737","listingType":2,"location":{"prettyAddress":"933 Northwood Boulevard, Unit 20","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":1325000,"formatted":"$1,325,000"},"detailedInfo":{"amenities":["Elevator","Garage","Mountain Views","Parking Included","Penthouse","Pool","Private Outdoor Space","Spa","Steam Shower","Washer / Dryer in Unit","Waterfront"],"access":"Elevator","outdoorSpace":["Private Outdoor Space"],"apartmentLayout":"Penthouse"},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/da577b2c245f56863c2ae13ce6d4359ffaddb7f9_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 933 Northwood Boulevard, Unit 20."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/933-northwood-boulevard-unit-20-incline-village-nv-89451/552469353172602737/","pageLinkSlug":"933-northwood-boulevard-unit-20-incline-village-nv-89451","propertyLinkSlug":"933-northwood-boulevard-apt-20-incline-village-nv-89451","navigationPageLink":"/listing/933-northwood-boulevard-unit-20-incline-village-nv-89451/552469353172602737/","canonicalPageLink":"/listing/933-northwood-boulevard-unit-20-incline-village-nv-89451/552469353172602737/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468166553705977","listingType":2,"location":{"prettyAddress":"617 Tumbleweed Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":5,"bathrooms":5.5},"price":{"lastKnown":1325000,"formatted":"$1,325,000"},"detailedInfo":{"amenities":["Barbecue Area","Canyon Views","Deck","Garage","Gym","Media / Recreation Room","Parking Included","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Barbecue Area","Deck"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/a8bf08bf0c455a9cb1d87b6fb02035d15a816c7b_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 617 Tumbleweed Circle."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/617-tumbleweed-circle-incline-village-nv-89451/552468166553705977/","pageLinkSlug":"617-tumbleweed-circle-incline-village-nv-89451","propertyLinkSlug":"617-tumbleweed-circle-incline-village-nv-89451","navigationPageLink":"/listing/617-tumbleweed-circle-incline-village-nv-89451/552468166553705977/","canonicalPageLink":"/listing/617-tumbleweed-circle-incline-village-nv-89451/552468166553705977/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468579827131577","listingType":2,"location":{"prettyAddress":"475 Lakeshore Boulevard, Unit 6","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4},"price":{"lastKnown":1311500,"formatted":"$1,311,500"},"detailedInfo":{"amenities":["Garage","Kitchen Dining","Parking Included","Private Outdoor Space","Recessed Lighting","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/9ba75157648579b83868e2637098a4cbbc871c92_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 475 Lakeshore Boulevard, Unit 6."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/475-lakeshore-boulevard-unit-6-incline-village-nv-89451/552468579827131577/","pageLinkSlug":"475-lakeshore-boulevard-unit-6-incline-village-nv-89451","propertyLinkSlug":"475-lakeshore-boulevard-apt-6-incline-village-nv-89451","navigationPageLink":"/listing/475-lakeshore-boulevard-unit-6-incline-village-nv-89451/552468579827131577/","canonicalPageLink":"/listing/475-lakeshore-boulevard-unit-6-incline-village-nv-89451/552468579827131577/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468796295163889","listingType":2,"location":{"prettyAddress":"560 Chiquita Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2.5},"price":{"lastKnown":1075000,"formatted":"$1,075,000"},"detailedInfo":{"amenities":["Deck","Garage","Hardwood Floors","Lake Views","Parking Included","Private Outdoor Space","Skylight","Spa","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/e212e0229e583d36f9916bc9d0f3efdb3010f798_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 560 Chiquita Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/560-chiquita-court-incline-village-nv-89451/552468796295163889/","pageLinkSlug":"560-chiquita-court-incline-village-nv-89451","propertyLinkSlug":"560-chiquita-court-incline-village-nv-89451","navigationPageLink":"/listing/560-chiquita-court-incline-village-nv-89451/552468796295163889/","canonicalPageLink":"/listing/560-chiquita-court-incline-village-nv-89451/552468796295163889/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468435433601265","listingType":2,"location":{"prettyAddress":"1442 Berne Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":2.5},"price":{"lastKnown":1060000,"formatted":"$1,060,000"},"detailedInfo":{"amenities":["Common Outdoor Space","Deck","Garage","Kitchenette","Panoramic Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Common Outdoor Space","Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/a3339028b81406cf5eb567bee2671686d6e818ab_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1442 Berne Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/1442-berne-court-incline-village-nv-89451/552468435433601265/","pageLinkSlug":"1442-berne-court-incline-village-nv-89451","propertyLinkSlug":"1442-berne-court-incline-village-nv-89451","navigationPageLink":"/listing/1442-berne-court-incline-village-nv-89451/552468435433601265/","canonicalPageLink":"/listing/1442-berne-court-incline-village-nv-89451/552468435433601265/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469394897704297","listingType":2,"location":{"prettyAddress":"652 Crystal Peak Road","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":1050000,"formatted":"$1,050,000"},"detailedInfo":{"amenities":["Deck","Garage","Gym","Parking Included","Pool","Private Outdoor Space","RV Parking","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/2fe0dc9380c67d209394fe161f47761b30175e81_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 652 Crystal Peak Road."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/652-crystal-peak-road-incline-village-nv-89451/552469394897704297/","pageLinkSlug":"652-crystal-peak-road-incline-village-nv-89451","propertyLinkSlug":"652-crystal-peak-road-incline-village-nv-89451","navigationPageLink":"/listing/652-crystal-peak-road-incline-village-nv-89451/552469394897704297/","canonicalPageLink":"/listing/652-crystal-peak-road-incline-village-nv-89451/552469394897704297/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467956310021153","listingType":2,"location":{"prettyAddress":"1003 Marlene Street","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":2,"bathrooms":3},"price":{"lastKnown":1049000,"formatted":"$1,049,000"},"detailedInfo":{"amenities":["Deck","Floor to Ceiling Windows","Garage","Lake Views","Parking Included","Private Outdoor Space","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f504adcd7cee16d0d7a777b0c2e4307850163f12_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1003 Marlene Street."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1003-marlene-street-incline-village-nv-89451/552467956310021153/","pageLinkSlug":"1003-marlene-street-incline-village-nv-89451","propertyLinkSlug":"1003-marlene-street-incline-village-nv-89451","navigationPageLink":"/listing/1003-marlene-street-incline-village-nv-89451/552467956310021153/","canonicalPageLink":"/listing/1003-marlene-street-incline-village-nv-89451/552467956310021153/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468361798507473","listingType":2,"location":{"prettyAddress":"967 Cinnabar Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3.5},"price":{"lastKnown":1025000,"formatted":"$1,025,000"},"detailedInfo":{"amenities":["Deck","Garage","Laundry","Laundry in Building","Mountain Views","Parking Included","Private Outdoor Space","Soaking Tub","Walk-in Closet","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/934ae4185df44c473ece590951b7acbfc005ecee_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 967 Cinnabar Court."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/967-cinnabar-court-incline-village-nv-89451/552468361798507473/","pageLinkSlug":"967-cinnabar-court-incline-village-nv-89451","propertyLinkSlug":"967-cinnabar-court-incline-village-nv-89451","navigationPageLink":"/listing/967-cinnabar-court-incline-village-nv-89451/552468361798507473/","canonicalPageLink":"/listing/967-cinnabar-court-incline-village-nv-89451/552468361798507473/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468187382877297","listingType":2,"location":{"prettyAddress":"575 Tyner Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":1020000,"formatted":"$1,020,000"},"detailedInfo":{"amenities":["Balcony","Deck","Panoramic Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Balcony","Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/0235fa73ffd1e4d656bd239fa399874cc1036263_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 575 Tyner Way."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/575-tyner-way-incline-village-nv-89451/552468187382877297/","pageLinkSlug":"575-tyner-way-incline-village-nv-89451","propertyLinkSlug":"575-tyner-way-incline-village-nv-89451","navigationPageLink":"/listing/575-tyner-way-incline-village-nv-89451/552468187382877297/","canonicalPageLink":"/listing/575-tyner-way-incline-village-nv-89451/552468187382877297/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469501533577801","listingType":2,"location":{"prettyAddress":"665 Martis Peak Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":965000,"formatted":"$965,000"},"detailedInfo":{"amenities":["Deck","Garage","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/fde9ff9f3d3a22a439e8ecc51461b4b552b08e61_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 665 Martis Peak Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/665-martis-peak-drive-incline-village-nv-89451/552469501533577801/","pageLinkSlug":"665-martis-peak-drive-incline-village-nv-89451","propertyLinkSlug":"665-martis-peak-drive-incline-village-nv-89451","navigationPageLink":"/listing/665-martis-peak-drive-incline-village-nv-89451/552469501533577801/","canonicalPageLink":"/listing/665-martis-peak-drive-incline-village-nv-89451/552469501533577801/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468264557993081","listingType":2,"location":{"prettyAddress":"106 Steam Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"price":{"lastKnown":950000,"formatted":"$950,000"},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/bfc4c58edb773a24249bd9b83ff6f964c26139d7_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 106 Steam Circle."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/106-steam-circle-incline-village-nv-89451/552468264557993081/","pageLinkSlug":"106-steam-circle-incline-village-nv-89451","propertyLinkSlug":"106-steam-circle-incline-village-nv-89451","navigationPageLink":"/listing/106-steam-circle-incline-village-nv-89451/552468264557993081/","canonicalPageLink":"/listing/106-steam-circle-incline-village-nv-89451/552468264557993081/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468300176023297","listingType":2,"location":{"prettyAddress":"230 Estates Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"price":{"lastKnown":950000,"formatted":"$950,000"},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f3b39a3323acd9a691d75496712974dfcf68fa57_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 230 Estates Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/230-estates-drive-incline-village-nv-89451/552468300176023297/","pageLinkSlug":"230-estates-drive-incline-village-nv-89451","propertyLinkSlug":"230-estates-drive-incline-village-nv-89451","navigationPageLink":"/listing/230-estates-drive-incline-village-nv-89451/552468300176023297/","canonicalPageLink":"/listing/230-estates-drive-incline-village-nv-89451/552468300176023297/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467742165734953","listingType":2,"location":{"prettyAddress":"683 Tyner Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":940000,"formatted":"$940,000"},"detailedInfo":{"amenities":["Deck","Game Room","Garage","Laundry","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/2b431fd7eeeb844726dfed71e3baf599c0dee6c8_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 683 Tyner Way."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/683-tyner-way-incline-village-nv-89451/552467742165734953/","pageLinkSlug":"683-tyner-way-incline-village-nv-89451","propertyLinkSlug":"683-tyner-way-incline-village-nv-89451","navigationPageLink":"/listing/683-tyner-way-incline-village-nv-89451/552467742165734953/","canonicalPageLink":"/listing/683-tyner-way-incline-village-nv-89451/552467742165734953/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469081893714433","listingType":2,"location":{"prettyAddress":"599 Lucille Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3.5},"price":{"lastKnown":925000,"formatted":"$925,000"},"detailedInfo":{"amenities":["Driveway","Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/3a75b8e3055d4822d69c08bdb3d38135455f1e5d_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 599 Lucille Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/599-lucille-drive-incline-village-nv-89451/552469081893714433/","pageLinkSlug":"599-lucille-drive-incline-village-nv-89451","propertyLinkSlug":"599-lucille-drive-incline-village-nv-89451","navigationPageLink":"/listing/599-lucille-drive-incline-village-nv-89451/552469081893714433/","canonicalPageLink":"/listing/599-lucille-drive-incline-village-nv-89451/552469081893714433/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468109662112145","listingType":2,"location":{"prettyAddress":"557 Lakeshore Boulevard, Unit 113","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":2,"bathrooms":2},"price":{"lastKnown":900000,"formatted":"$900,000"},"detailedInfo":{"amenities":["Waterfront"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/64d7fd05862ec12a69a64b4bf8f08e3d516a2acc_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 557 Lakeshore Boulevard, Unit 113."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/557-lakeshore-boulevard-unit-113-incline-village-nv-89451/552468109662112145/","pageLinkSlug":"557-lakeshore-boulevard-unit-113-incline-village-nv-89451","propertyLinkSlug":"557-lakeshore-boulevard-apt-113-incline-village-nv-89451","navigationPageLink":"/listing/557-lakeshore-boulevard-unit-113-incline-village-nv-89451/552468109662112145/","canonicalPageLink":"/listing/557-lakeshore-boulevard-unit-113-incline-village-nv-89451/552468109662112145/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468420552629433","listingType":2,"location":{"prettyAddress":"560 Lucille Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":895000,"formatted":"$895,000"},"detailedInfo":{"amenities":["Balcony","Chandeliers","Deck","Floor to Ceiling Windows","Garage","Parking Included","Pool","Private Outdoor Space","Skylight","Soaking Tub","Spa","Walk-in Closet","Washer / Dryer in Unit"],"outdoorSpace":["Balcony","Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/130739c545f826cb47f27aeb958073b0104a2e6c_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 560 Lucille Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/560-lucille-drive-incline-village-nv-89451/552468420552629433/","pageLinkSlug":"560-lucille-drive-incline-village-nv-89451","propertyLinkSlug":"560-lucille-drive-incline-village-nv-89451","navigationPageLink":"/listing/560-lucille-drive-incline-village-nv-89451/552468420552629433/","canonicalPageLink":"/listing/560-lucille-drive-incline-village-nv-89451/552468420552629433/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468952063083169","listingType":2,"location":{"prettyAddress":"376 2nd Tee Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":4},"price":{"lastKnown":840000,"formatted":"$840,000"},"detailedInfo":{"amenities":["Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/b113dfa500c753cda94e4b60a9e0e94f229e86f6_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 376 2nd Tee Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/376-2nd-tee-drive-incline-village-nv-89451/552468952063083169/","pageLinkSlug":"376-2nd-tee-drive-incline-village-nv-89451","propertyLinkSlug":"376-2nd-tee-drive-incline-village-nv-89451","navigationPageLink":"/listing/376-2nd-tee-drive-incline-village-nv-89451/552468952063083169/","canonicalPageLink":"/listing/376-2nd-tee-drive-incline-village-nv-89451/552468952063083169/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"550898695200373865","listingType":2,"location":{"prettyAddress":"725 Fairview Boulevard, Unit 15","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":830000,"formatted":"$830,000"},"detailedInfo":{"amenities":["Air Conditioning","Assigned Parking","Guest Parking","Laundry","Laundry in Building","Pantry","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/e871ea33c9957e797a649d849ee817bb9797f4e4_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 725 Fairview Boulevard, Unit 15."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/725-fairview-boulevard-unit-15-incline-village-nv-89451/550898695200373865/","pageLinkSlug":"725-fairview-boulevard-unit-15-incline-village-nv-89451","propertyLinkSlug":"725-fairview-boulevard-apt-15-incline-village-nv-89451","navigationPageLink":"/listing/725-fairview-boulevard-unit-15-incline-village-nv-89451/550898695200373865/","canonicalPageLink":"/listing/725-fairview-boulevard-unit-15-incline-village-nv-89451/550898695200373865/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469633637377825","listingType":2,"location":{"prettyAddress":"578 Knotty Pine Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":750000,"formatted":"$750,000"},"detailedInfo":{"amenities":["Private Outdoor Space","Waterfront"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/a2165c802d7af7c17c29d4279885684f89a0e831_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 578 Knotty Pine Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/578-knotty-pine-drive-incline-village-nv-89451/552469633637377825/","pageLinkSlug":"578-knotty-pine-drive-incline-village-nv-89451","propertyLinkSlug":"578-knotty-pine-drive-incline-village-nv-89451","navigationPageLink":"/listing/578-knotty-pine-drive-incline-village-nv-89451/552469633637377825/","canonicalPageLink":"/listing/578-knotty-pine-drive-incline-village-nv-89451/552469633637377825/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468922543715401","listingType":2,"location":{"prettyAddress":"557 Lakeshore Boulevard, Unit 114","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":2,"bathrooms":2},"price":{"lastKnown":750000,"formatted":"$750,000"},"detailedInfo":{"amenities":["Boat Slip","Deck","Marina","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/ab0d4ec325dbc695a206fef17d46845d115e8666_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 557 Lakeshore Boulevard, Unit 114."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/557-lakeshore-boulevard-unit-114-incline-village-nv-89451/552468922543715401/","pageLinkSlug":"557-lakeshore-boulevard-unit-114-incline-village-nv-89451","propertyLinkSlug":"557-lakeshore-boulevard-apt-114-incline-village-nv-89451","navigationPageLink":"/listing/557-lakeshore-boulevard-unit-114-incline-village-nv-89451/552468922543715401/","canonicalPageLink":"/listing/557-lakeshore-boulevard-unit-114-incline-village-nv-89451/552468922543715401/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467908947886393","listingType":2,"location":{"prettyAddress":"1712 State Route 28 Highway","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":1,"bathrooms":1},"price":{"lastKnown":717500,"formatted":"$717,500"},"detailedInfo":{"amenities":["Basement","Cabin","Deck","Granite Kitchen Counter","Lake Views","Parking Included","Private Outdoor Space","Stainless Steel Appliances","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/8c0250d8faf1464acf076ba272f615a45ebd3050_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1712 State Route 28 Highway."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1712-state-route-28-highway-incline-village-nv-89451/552467908947886393/","pageLinkSlug":"1712-state-route-28-highway-incline-village-nv-89451","propertyLinkSlug":"1712-state-route-28-highway-incline-village-nv-89451","navigationPageLink":"/listing/1712-state-route-28-highway-incline-village-nv-89451/552467908947886393/","canonicalPageLink":"/listing/1712-state-route-28-highway-incline-village-nv-89451/552467908947886393/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552467966627847273","listingType":2,"location":{"prettyAddress":"725 Fairview Boulevard, Unit 15","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":680000,"formatted":"$680,000"},"detailedInfo":{"amenities":["Assigned Parking","Boating","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/5c3915363b6f4c4c5983e43605f07b5322b730e3_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 725 Fairview Boulevard, Unit 15."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/725-fairview-boulevard-unit-15-incline-village-nv-89451/552467966627847273/","pageLinkSlug":"725-fairview-boulevard-unit-15-incline-village-nv-89451","propertyLinkSlug":"725-fairview-boulevard-apt-15-incline-village-nv-89451","navigationPageLink":"/listing/725-fairview-boulevard-unit-15-incline-village-nv-89451/552467966627847273/","canonicalPageLink":"/listing/725-fairview-boulevard-unit-15-incline-village-nv-89451/552467966627847273/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469827842044361","listingType":2,"location":{"prettyAddress":"552 Lantern Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":670000,"formatted":"$670,000"},"detailedInfo":{"amenities":["Deck","Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/bd095497adc3514fd5479342e236d3d235b99d0b_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 552 Lantern Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/552-lantern-court-incline-village-nv-89451/552469827842044361/","pageLinkSlug":"552-lantern-court-incline-village-nv-89451","propertyLinkSlug":"552-lantern-court-incline-village-nv-89451","navigationPageLink":"/listing/552-lantern-court-incline-village-nv-89451/552469827842044361/","canonicalPageLink":"/listing/552-lantern-court-incline-village-nv-89451/552469827842044361/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468215132135929","listingType":2,"location":{"prettyAddress":"1058 Sawmill Road","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":663000,"formatted":"$663,000"},"detailedInfo":{"amenities":["Driveway","Garage","Parking Included","Private Outdoor Space"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/ec39cfea598771b409159a7dcaf90a0ac0757089_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1058 Sawmill Road."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1058-sawmill-road-incline-village-nv-89451/552468215132135929/","pageLinkSlug":"1058-sawmill-road-incline-village-nv-89451","propertyLinkSlug":"1058-sawmill-road-incline-village-nv-89451","navigationPageLink":"/listing/1058-sawmill-road-incline-village-nv-89451/552468215132135929/","canonicalPageLink":"/listing/1058-sawmill-road-incline-village-nv-89451/552468215132135929/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469244749996841","listingType":2,"location":{"prettyAddress":"547 Cole Circle","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":653000,"formatted":"$653,000"},"detailedInfo":{"amenities":["Deck","Garage","Lake Views","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/82e071f9c3ab1768c3857a2e39016227075fe662_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 547 Cole Circle."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/547-cole-circle-incline-village-nv-89451/552469244749996841/","pageLinkSlug":"547-cole-circle-incline-village-nv-89451","propertyLinkSlug":"547-cole-circle-incline-village-nv-89451","navigationPageLink":"/listing/547-cole-circle-incline-village-nv-89451/552469244749996841/","canonicalPageLink":"/listing/547-cole-circle-incline-village-nv-89451/552469244749996841/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"550898705543533073","listingType":2,"location":{"prettyAddress":"759 Mays Boulevard, Unit 14","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2.5},"price":{"lastKnown":640000,"formatted":"$640,000"},"detailedInfo":{"amenities":["Balcony","Garage","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Balcony","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/705701c969c28ccd2d768449f1cec2f23b5c14b6_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 759 Mays Boulevard, Unit 14."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/759-mays-boulevard-unit-14-incline-village-nv-89451/550898705543533073/","pageLinkSlug":"759-mays-boulevard-unit-14-incline-village-nv-89451","propertyLinkSlug":"759-mays-boulevard-apt-14-incline-village-nv-89451","navigationPageLink":"/listing/759-mays-boulevard-unit-14-incline-village-nv-89451/550898705543533073/","canonicalPageLink":"/listing/759-mays-boulevard-unit-14-incline-village-nv-89451/550898705543533073/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468578115700065","listingType":2,"location":{"prettyAddress":"954 Fairway Boulevard, Unit 15","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":2.5},"price":{"lastKnown":625000,"formatted":"$625,000"},"detailedInfo":{"amenities":["Deck","Garage","Golf Course Views","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/2d66f62baec64c397b0ab6c8592cdbad585216a9_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 954 Fairway Boulevard, Unit 15."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/954-fairway-boulevard-unit-15-incline-village-nv-89451/552468578115700065/","pageLinkSlug":"954-fairway-boulevard-unit-15-incline-village-nv-89451","propertyLinkSlug":"954-fairway-boulevard-apt-15-incline-village-nv-89451","navigationPageLink":"/listing/954-fairway-boulevard-unit-15-incline-village-nv-89451/552468578115700065/","canonicalPageLink":"/listing/954-fairway-boulevard-unit-15-incline-village-nv-89451/552468578115700065/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468424142696657","listingType":2,"location":{"prettyAddress":"929 Jennifer Street","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":615000,"formatted":"$615,000"},"detailedInfo":{"amenities":["Deck","Garage","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Walk-in Closet","Washer / Dryer in Unit"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/4ec351e1b050f5aa6235d907234136bb6ecca9c7_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 929 Jennifer Street."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/929-jennifer-street-incline-village-nv-89451/552468424142696657/","pageLinkSlug":"929-jennifer-street-incline-village-nv-89451","propertyLinkSlug":"929-jennifer-street-incline-village-nv-89451","navigationPageLink":"/listing/929-jennifer-street-incline-village-nv-89451/552468424142696657/","canonicalPageLink":"/listing/929-jennifer-street-incline-village-nv-89451/552468424142696657/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468767958366713","listingType":2,"location":{"prettyAddress":"579 Ponderosa Avenue","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":610000,"formatted":"$610,000"},"detailedInfo":{"amenities":["Back Yard","Fence","Garage","Parking Included","Private Outdoor Space","RV Parking","Washer / Dryer in Unit"],"outdoorSpace":["Back Yard","Fence","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/c44e5f6ba5f22b2f2d3af6d590c4a5d2a4acc649_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 579 Ponderosa Avenue."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/579-ponderosa-avenue-incline-village-nv-89451/552468767958366713/","pageLinkSlug":"579-ponderosa-avenue-incline-village-nv-89451","propertyLinkSlug":"579-ponderosa-avenue-incline-village-nv-89451","navigationPageLink":"/listing/579-ponderosa-avenue-incline-village-nv-89451/552468767958366713/","canonicalPageLink":"/listing/579-ponderosa-avenue-incline-village-nv-89451/552468767958366713/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469870993157209","listingType":2,"location":{"prettyAddress":"929 Northwood Boulevard, Unit 88","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":585000,"formatted":"$585,000"},"detailedInfo":{"amenities":["Garage","Gym","Hardwood Floors","Parking Included","Pool","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/e913a67c95cdcd9d88b6e8345f038fb62b132e76_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 929 Northwood Boulevard, Unit 88."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/929-northwood-boulevard-unit-88-incline-village-nv-89451/552469870993157209/","pageLinkSlug":"929-northwood-boulevard-unit-88-incline-village-nv-89451","propertyLinkSlug":"929-northwood-boulevard-apt-88-incline-village-nv-89451","navigationPageLink":"/listing/929-northwood-boulevard-unit-88-incline-village-nv-89451/552469870993157209/","canonicalPageLink":"/listing/929-northwood-boulevard-unit-88-incline-village-nv-89451/552469870993157209/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469510962373321","listingType":2,"location":{"prettyAddress":"844 Oneil Way","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":580000,"formatted":"$580,000"},"detailedInfo":{"amenities":["Deck","Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/9081638384733a13171514a4ec466d0169655208_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 844 Oneil Way."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/844-oneil-way-incline-village-nv-89451/552469510962373321/","pageLinkSlug":"844-oneil-way-incline-village-nv-89451","propertyLinkSlug":"844-oneil-way-incline-village-nv-89451","navigationPageLink":"/listing/844-oneil-way-incline-village-nv-89451/552469510962373321/","canonicalPageLink":"/listing/844-oneil-way-incline-village-nv-89451/552469510962373321/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468603994711809","listingType":2,"location":{"prettyAddress":"1415 Tirol Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":3},"price":{"lastKnown":552000,"formatted":"$552,000"},"detailedInfo":{"amenities":["Corner Lot","Deck","Garage","Laundry","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"],"apartmentLayout":"Corner Lot"},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f7c4a62fa5e84f04491d353e8eadf7024898781f_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1415 Tirol Drive."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1415-tirol-drive-incline-village-nv-89451/552468603994711809/","pageLinkSlug":"1415-tirol-drive-incline-village-nv-89451","propertyLinkSlug":"1415-tirol-drive-incline-village-nv-89451","navigationPageLink":"/listing/1415-tirol-drive-incline-village-nv-89451/552468603994711809/","canonicalPageLink":"/listing/1415-tirol-drive-incline-village-nv-89451/552468603994711809/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469979893991625","listingType":2,"location":{"prettyAddress":"521 Sugarpine Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":530000,"formatted":"$530,000"},"detailedInfo":{"amenities":["Garage","Washer / Dryer in Unit","Waterfront"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/d0c244f19b9a584a9a11bce65a8501d7605015f7_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 521 Sugarpine Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/521-sugarpine-drive-incline-village-nv-89451/552469979893991625/","pageLinkSlug":"521-sugarpine-drive-incline-village-nv-89451","propertyLinkSlug":"521-sugarpine-drive-incline-village-nv-89451","navigationPageLink":"/listing/521-sugarpine-drive-incline-village-nv-89451/552469979893991625/","canonicalPageLink":"/listing/521-sugarpine-drive-incline-village-nv-89451/552469979893991625/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469628965035993","listingType":2,"location":{"prettyAddress":"680 Ralston Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":3},"price":{"lastKnown":530000,"formatted":"$530,000"},"detailedInfo":{"amenities":["Deck","Garage","Parking Included","Porch","Private Outdoor Space","Skylight"],"outdoorSpace":["Deck","Porch","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/733bdfc47489e391b0cf241d2061eee8a3a02884_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 680 Ralston Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/680-ralston-court-incline-village-nv-89451/552469628965035993/","pageLinkSlug":"680-ralston-court-incline-village-nv-89451","propertyLinkSlug":"680-ralston-court-incline-village-nv-89451","navigationPageLink":"/listing/680-ralston-court-incline-village-nv-89451/552469628965035993/","canonicalPageLink":"/listing/680-ralston-court-incline-village-nv-89451/552469628965035993/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469459330747241","listingType":2,"location":{"prettyAddress":"136 Juanita Drive, Unit 21","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":4,"bathrooms":2},"price":{"lastKnown":500000,"formatted":"$500,000"},"detailedInfo":{"amenities":["Deck","Pool","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/55907b6675d5da9563a7b9002482857dc4915341_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 136 Juanita Drive, Unit 21."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/136-juanita-drive-unit-21-incline-village-nv-89451/552469459330747241/","pageLinkSlug":"136-juanita-drive-unit-21-incline-village-nv-89451","propertyLinkSlug":"136-juanita-drive-apt-21-incline-village-nv-89451","navigationPageLink":"/listing/136-juanita-drive-unit-21-incline-village-nv-89451/552469459330747241/","canonicalPageLink":"/listing/136-juanita-drive-unit-21-incline-village-nv-89451/552469459330747241/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468598323857177","listingType":2,"location":{"prettyAddress":"844 Jeffrey Street","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":497500,"formatted":"$497,500"},"detailedInfo":{"amenities":["Deck","Garage","Hardwood Floors","Mountain Views","Pantry","Parking Included","Private Outdoor Space"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/cc8df1c4e59a3c678c53409f8311fdccd7361c61_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 844 Jeffrey Street."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/844-jeffrey-street-incline-village-nv-89451/552468598323857177/","pageLinkSlug":"844-jeffrey-street-incline-village-nv-89451","propertyLinkSlug":"844-jeffrey-street-incline-village-nv-89451","navigationPageLink":"/listing/844-jeffrey-street-incline-village-nv-89451/552468598323857177/","canonicalPageLink":"/listing/844-jeffrey-street-incline-village-nv-89451/552468598323857177/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469371182996209","listingType":2,"location":{"prettyAddress":"727 Lynda Court","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":461000,"formatted":"$461,000"},"detailedInfo":{"amenities":["Driveway","Garage","Parking Included","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/35f4dd0e34419f5d109c7f2c2dbca1732fd9edcb_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 727 Lynda Court."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/727-lynda-court-incline-village-nv-89451/552469371182996209/","pageLinkSlug":"727-lynda-court-incline-village-nv-89451","propertyLinkSlug":"727-lynda-court-incline-village-nv-89451","navigationPageLink":"/listing/727-lynda-court-incline-village-nv-89451/552469371182996209/","canonicalPageLink":"/listing/727-lynda-court-incline-village-nv-89451/552469371182996209/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469463726222857","listingType":2,"location":{"prettyAddress":"964 Jennifer Street","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":445000,"formatted":"$445,000"},"detailedInfo":{"amenities":["Deck","Garage","Private Outdoor Space","Spa","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/1456a51430d1b068cbd439734ae6cef570b95e20_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 964 Jennifer Street."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/964-jennifer-street-incline-village-nv-89451/552469463726222857/","pageLinkSlug":"964-jennifer-street-incline-village-nv-89451","propertyLinkSlug":"964-jennifer-street-incline-village-nv-89451","navigationPageLink":"/listing/964-jennifer-street-incline-village-nv-89451/552469463726222857/","canonicalPageLink":"/listing/964-jennifer-street-incline-village-nv-89451/552469463726222857/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469349993211753","listingType":2,"location":{"prettyAddress":"123 Juanita Drive, Unit 65","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":439000,"formatted":"$439,000"},"detailedInfo":{"amenities":["Pool","Private Outdoor Space","Range","Skylight","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f3e26b105cd4953e77865d8b20e81aa07ca0ba3f_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 123 Juanita Drive, Unit 65."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/123-juanita-drive-unit-65-incline-village-nv-89451/552469349993211753/","pageLinkSlug":"123-juanita-drive-unit-65-incline-village-nv-89451","propertyLinkSlug":"123-juanita-drive-apt-65-incline-village-nv-89451","navigationPageLink":"/listing/123-juanita-drive-unit-65-incline-village-nv-89451/552469349993211753/","canonicalPageLink":"/listing/123-juanita-drive-unit-65-incline-village-nv-89451/552469349993211753/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469443207687025","listingType":2,"location":{"prettyAddress":"844 Jeffrey Street","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":402500,"formatted":"$402,500"},"detailedInfo":{"amenities":["Garage","Parking Included"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f25e082f917a351244131600bf624ddf836ed732_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 844 Jeffrey Street."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/844-jeffrey-street-incline-village-nv-89451/552469443207687025/","pageLinkSlug":"844-jeffrey-street-incline-village-nv-89451","propertyLinkSlug":"844-jeffrey-street-incline-village-nv-89451","navigationPageLink":"/listing/844-jeffrey-street-incline-village-nv-89451/552469443207687025/","canonicalPageLink":"/listing/844-jeffrey-street-incline-village-nv-89451/552469443207687025/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552470265693835041","listingType":2,"location":{"prettyAddress":"875 Southwood Boulevard, Unit 4","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2.5},"price":{"lastKnown":400000,"formatted":"$400,000"},"detailedInfo":{"amenities":["Deck","Parking Included","Private Outdoor Space","Washer / Dryer in Unit","Wet Bar"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/f20e7151ed3246c1ce5896d34bef695327a0a22c_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 875 Southwood Boulevard, Unit 4."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/875-southwood-boulevard-unit-4-incline-village-nv-89451/552470265693835041/","pageLinkSlug":"875-southwood-boulevard-unit-4-incline-village-nv-89451","propertyLinkSlug":"875-southwood-boulevard-apt-4-incline-village-nv-89451","navigationPageLink":"/listing/875-southwood-boulevard-unit-4-incline-village-nv-89451/552470265693835041/","canonicalPageLink":"/listing/875-southwood-boulevard-unit-4-incline-village-nv-89451/552470265693835041/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469114374249713","listingType":2,"location":{"prettyAddress":"680 Wilson Way, Unit 1","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2.5},"price":{"lastKnown":400000,"formatted":"$400,000"},"detailedInfo":{"amenities":["Deck","Driveway","Hardwood Floors","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/dc4c108576e1bfc075f29db1289439b36640f7c5_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 680 Wilson Way, Unit 1."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/680-wilson-way-unit-1-incline-village-nv-89451/552469114374249713/","pageLinkSlug":"680-wilson-way-unit-1-incline-village-nv-89451","propertyLinkSlug":"680-wilson-way-apt-1-incline-village-nv-89451","navigationPageLink":"/listing/680-wilson-way-unit-1-incline-village-nv-89451/552469114374249713/","canonicalPageLink":"/listing/680-wilson-way-unit-1-incline-village-nv-89451/552469114374249713/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469725668636945","listingType":2,"location":{"prettyAddress":"521 Lucille Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":395000,"formatted":"$395,000"},"detailedInfo":{"amenities":["Deck","Garage","Laundry","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/7578ea2999787421e27ebede91bab1f03545d6d2_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 521 Lucille Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/521-lucille-drive-incline-village-nv-89451/552469725668636945/","pageLinkSlug":"521-lucille-drive-incline-village-nv-89451","propertyLinkSlug":"521-lucille-drive-incline-village-nv-89451","navigationPageLink":"/listing/521-lucille-drive-incline-village-nv-89451/552469725668636945/","canonicalPageLink":"/listing/521-lucille-drive-incline-village-nv-89451/552469725668636945/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468985625892969","listingType":2,"location":{"prettyAddress":"788 Geraldine Drive","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":370000,"formatted":"$370,000"},"detailedInfo":{"amenities":["Cabin","Deck","Mountain Views","Private Outdoor Space","Washer / Dryer in Unit","Waterfront"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/cc927d13552a2fa7ed96bbd56dfa0d36a7cb8a2e_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 788 Geraldine Drive."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/788-geraldine-drive-incline-village-nv-89451/552468985625892969/","pageLinkSlug":"788-geraldine-drive-incline-village-nv-89451","propertyLinkSlug":"788-geraldine-drive-incline-village-nv-89451","navigationPageLink":"/listing/788-geraldine-drive-incline-village-nv-89451/552468985625892969/","canonicalPageLink":"/listing/788-geraldine-drive-incline-village-nv-89451/552468985625892969/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469202865574833","listingType":2,"location":{"prettyAddress":"759 Mays Boulevard, Unit 14","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2.5},"price":{"lastKnown":355000,"formatted":"$355,000"},"detailedInfo":{"amenities":["Deck","Garage","Gas Stove","Laundry","Laundry in Building","Parking Included","Private Outdoor Space","Southern Exposure","Stove","Washer / Dryer in Unit"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/9f4e25b1e919c376d44699d81ecbdcb5544cc907_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 759 Mays Boulevard, Unit 14."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/759-mays-boulevard-unit-14-incline-village-nv-89451/552469202865574833/","pageLinkSlug":"759-mays-boulevard-unit-14-incline-village-nv-89451","propertyLinkSlug":"759-mays-boulevard-apt-14-incline-village-nv-89451","navigationPageLink":"/listing/759-mays-boulevard-unit-14-incline-village-nv-89451/552469202865574833/","canonicalPageLink":"/listing/759-mays-boulevard-unit-14-incline-village-nv-89451/552469202865574833/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552470337089316001","listingType":2,"location":{"prettyAddress":"807 Alder Avenue, Unit 26","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":2,"bathrooms":2},"price":{"lastKnown":327500,"formatted":"$327,500"},"detailedInfo":{"amenities":["Gym","Parking Included","Pool","Private Outdoor Space"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/587521239d6d7b30e4db8539a1f47615010c7ec7_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 807 Alder Avenue, Unit 26."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/807-alder-avenue-unit-26-incline-village-nv-89451/552470337089316001/","pageLinkSlug":"807-alder-avenue-unit-26-incline-village-nv-89451","propertyLinkSlug":"807-alder-avenue-apt-26-incline-village-nv-89451","navigationPageLink":"/listing/807-alder-avenue-unit-26-incline-village-nv-89451/552470337089316001/","canonicalPageLink":"/listing/807-alder-avenue-unit-26-incline-village-nv-89451/552470337089316001/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469909085826873","listingType":2,"location":{"prettyAddress":"136 Juanita Drive, Unit 4","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":3,"bathrooms":2},"price":{"lastKnown":325000,"formatted":"$325,000"},"detailedInfo":{"amenities":["Parking Included","Pool","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/870881d96429ab560ea9c304c108b4d2e9eabda2_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 136 Juanita Drive, Unit 4."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/136-juanita-drive-unit-4-incline-village-nv-89451/552469909085826873/","pageLinkSlug":"136-juanita-drive-unit-4-incline-village-nv-89451","propertyLinkSlug":"136-juanita-drive-apt-4-incline-village-nv-89451","navigationPageLink":"/listing/136-juanita-drive-unit-4-incline-village-nv-89451/552469909085826873/","canonicalPageLink":"/listing/136-juanita-drive-unit-4-incline-village-nv-89451/552469909085826873/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469020379742313","listingType":2,"location":{"prettyAddress":"939 Incline Way, Unit 201","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":2,"bathrooms":2},"price":{"lastKnown":315000,"formatted":"$315,000"},"detailedInfo":{"amenities":["Deck","Garage","Gym","Parking Included","Pool","Private Outdoor Space","Washer / Dryer in Unit"],"outdoorSpace":["Deck","Private Outdoor Space"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/5d9585d7cbce5d64f45e67ee1e5ca44d6f7993fb_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 939 Incline Way, Unit 201."}},"isConsumerSearchable":false,"isOffMLS":false,"pageLink":"/listing/939-incline-way-unit-201-incline-village-nv-89451/552469020379742313/","pageLinkSlug":"939-incline-way-unit-201-incline-village-nv-89451","propertyLinkSlug":"939-incline-way-apt-201-incline-village-nv-89451","navigationPageLink":"/listing/939-incline-way-unit-201-incline-village-nv-89451/552469020379742313/","canonicalPageLink":"/listing/939-incline-way-unit-201-incline-village-nv-89451/552469020379742313/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552469633293557825","listingType":2,"location":{"prettyAddress":"801 Northwood Boulevard, Unit 10","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"size":{"bedrooms":2,"bathrooms":1.5},"price":{"lastKnown":167500,"formatted":"$167,500"},"detailedInfo":{"amenities":["Garage","Washer / Dryer in Unit"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/ff75d0e083f6ef30141712e948f374a516f49588_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 801 Northwood Boulevard, Unit 10."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/801-northwood-boulevard-unit-10-incline-village-nv-89451/552469633293557825/","pageLinkSlug":"801-northwood-boulevard-unit-10-incline-village-nv-89451","propertyLinkSlug":"801-northwood-boulevard-apt-10-incline-village-nv-89451","navigationPageLink":"/listing/801-northwood-boulevard-unit-10-incline-village-nv-89451/552469633293557825/","canonicalPageLink":"/listing/801-northwood-boulevard-unit-10-incline-village-nv-89451/552469633293557825/","editable":true,"userListingCompliance":{"descriptionCompliance":0}},{"listingIdSHA":"552468984451498873","listingType":2,"location":{"prettyAddress":"1177 Altdorf Terrace","city":"Incline Village","state":"NV","zipCode":"89451","geoId":"lake_tahoe"},"price":{"lastKnown":15000,"formatted":"$15,000"},"detailedInfo":{"amenities":["Pool"]},"media":[{"category":0,"thumbnailUrl":"https://d3mi7e2vp4lzjl.cloudfront.net/a034ffc83dce97fc4002e88e452e2475ab9d9caf_img_0/165x165.jpg"}],"dealInfo":{"disclaimer":"No guarantee, warranty or representation of any kind is made regarding the completeness or accuracy of descriptions or measurements (including square footage measurements and property condition), such should be independently verified, and Compass expressly disclaims any liability in connection therewith. No financial or legal advice provided. Equal Housing Opportunity.","regionalDisclaimer":"COPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. data maintained by MetroList® may not reflect all real estate activity in the market. All real estate content on this site is subject to the Federal Fair Housing Act of 1968, as amended, which makes it illegal to advertise any preference, limitation or discrimination because of race, color, religion, sex, handicap, family status or national origin or an intention to make any such preference, limitation or discrimination. MetroList® will not knowingly accept any advertisement for real estate which is in violation of the law. Users of this site are hereby informed that, pursuant to applicable laws and regulations, all dwellings advertised in the MetroList® service are available on an equal opportunity basis.All measurements and all calculations of area are approximate. Information provided by Seller/Other sources, not verified by Broker. All interested persons should independently verify accuracy of information. Provided properties may or may not be listed by the office/agent presenting the information.\n\nTerms of Use   (Link to https://www.metrolistmls.com/enpropertysearch/TermsOfUse.aspx)\n\nCOPYRIGHTED PROPRIETARY MATERIAL of MetroList Services, Inc. © 2021 MetroList ®\n\nWe also need to include the Metrolist logo which I've attached to the ticket.\n\n\nDetails provided by TSMLS and may not match the public record.","contactFormInfo":{"contactFormMessage":"I would like more information about 1177 Altdorf Terrace."}},"isConsumerSearchable":true,"isOffMLS":false,"pageLink":"/listing/1177-altdorf-terrace-incline-village-nv-89451/552468984451498873/","pageLinkSlug":"1177-altdorf-terrace-incline-village-nv-89451","propertyLinkSlug":"1177-altdorf-terrace-incline-village-nv-89451","navigationPageLink":"/listing/1177-altdorf-terrace-incline-village-nv-89451/552468984451498873/","canonicalPageLink":"/listing/1177-altdorf-terrace-incline-village-nv-89451/552468984451498873/","editable":true,"userListingCompliance":{"descriptionCompliance":0}}]},"imageUrl":"https://d2787ndpv5cwhz.cloudfront.net/ba94ae9f7a7aa9a4413edaa4ca69eb7889d61c2b/300x300.jpg","showIsPrivateBanner":false} }
  </script>
  <section class="profile-bottom-block">
    <!-- Bread Crumbs !-->
    
    <nav class="agent-profile-breadcrumbsWrapper">
      <ol class="agent-profile-breadcrumbs cx-breadcrumbs">
        
          <li class="agent-profile-breadcrumbItems">
            
              <a href="/agents/?bypass=True" class="cx-textLink" data-tn="allCompassRegions-text-breadcrumb">
                All Compass Regions
              </a>
            
          </li>
        
          <li class="agent-profile-breadcrumbItems">
            
              <a href="/agents/lake_tahoe/" class="cx-textLink" data-tn="geo-text-breadcrumb">
                Lake Tahoe
              </a>
            
          </li>
        
          <li class="agent-profile-breadcrumbItems">
            
              <span aria-current="page" data-tn="agentProfiles-text-breadcrumb">
                Lexi Cerretti
              </span>
            
          </li>
        
      </ol>
    </nav>
    

    <button class="cx-solidBtn profileCard-profileButton" data-tn="work-with-agentBtn" data-productPath="Bottom Module">
      Work with Lexi Cerretti
    </button>
  </section>

  

</div>

    </main>
    <footer id="consumer-footer" class="consumerFooter">
  <div class="consumerFooter cx-mainLayout cx-mainLayout--contentFill">
    <div class="consumerFooter-wrapper">
      <div class="consumerFooter-main">
        
          
            <section class="consumerFooter-column
                consumerFooter-column--company"
                data-tn="consumerFooter-column--company">
              <label class="consumerFooter-label">
                <input class="consumerFooter-accordion" type="checkbox">
                <h4 class="textIntent-headline1 consumerFooter-header"
                    data-label="Company">
                  Company
                </h4>
                <ul class="consumerFooter-links u-unstyledList">
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/about/"
                          data-tn="footer-link-about"
                          data-label="About Us">
                          About Us
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/about/team/"
                          data-tn="footer-link-team"
                          data-label="Team">
                          Team
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-ir-link" 
                          href="//investors.compass.com"
                          data-tn="footer-link-investor_relations"
                          data-label="Investors">
                          Investors
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/careers/"
                          data-tn="footer-link-careers"
                          data-label="Careers">
                          Careers
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-old-investors-link" 
                          href="/about/investors/"
                          data-tn="footer-link-investors"
                          data-label="Investors">
                          Investors
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/contact/"
                          data-tn="footer-link-contact"
                          data-label="Contact Us">
                          Contact Us
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/about/offices/"
                          data-tn="footer-link-offices"
                          data-label="Offices">
                          Offices
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="//join.compass.com"
                          data-tn="footer-link-agent_experience"
                          data-label="Agent Experience">
                          Agent Experience
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/newsroom/"
                          data-tn="footer-link-newsroom"
                          data-label="Newsroom">
                          Newsroom
                        </a>
                        
                      </li>
                    
                  
                </ul>
              </label>
            </section>
          
        
          
            <section class="consumerFooter-column
                consumerFooter-column--explore"
                data-tn="consumerFooter-column--explore">
              <label class="consumerFooter-label">
                <input class="consumerFooter-accordion" type="checkbox">
                <h4 class="textIntent-headline1 consumerFooter-header"
                    data-label="Explore">
                  Explore
                </h4>
                <ul class="consumerFooter-links u-unstyledList">
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/concierge/"
                          data-tn="footer-link-concierge"
                          data-label="Concierge">
                          Concierge
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/bridge-loan-services/"
                          data-tn="footer-link-bridge-loan"
                          data-label="Bridge Loan Services">
                          Bridge Loan Services
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/private-exclusives/"
                          data-tn="footer-link-private-exclusives"
                          data-label="Private Exclusives">
                          Private Exclusives
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/coming-soon/"
                          data-tn="footer-link-coming-soon"
                          data-label="Compass Coming Soon">
                          Compass Coming Soon
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-notForClients" 
                          href="/agents/"
                          data-tn="footer-link-agents"
                          data-label="Find an Agent">
                          Find an Agent
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/calculators/mortgage-calculator/"
                          data-tn="footer-link-mortgage-calculator"
                          data-label="Mortgage Calculator">
                          Mortgage Calculator
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-notForClients" 
                          href="//openacademy.compass.com/"
                          data-tn="footer-link-compassAcademy"
                          data-label="Compass Academy">
                          Compass Academy
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/compass-cares/"
                          data-tn="footer-link-compassCares"
                          data-label="Compass Cares">
                          Compass Cares
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/neighborhood-guides/"
                          data-tn="footer-link-neighborhoodGuides"
                          data-label="Neighborhood Guides">
                          Neighborhood Guides
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-notForClients" 
                          href="/development/"
                          data-tn="footer-link-newDevelopments"
                          data-label="New Development">
                          New Development
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-notForClients" 
                          href="/commercial/"
                          data-tn="footer-link-commercial"
                          data-label="Commercial">
                          Commercial
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item consumerFooter-notForClients" 
                          href="/se/"
                          data-tn="footer-link-sportsAndEntertainment"
                          data-label="Sports &#38; Entertainment">
                          Sports &#38; Entertainment
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/research/"
                          data-tn="footer-link-research"
                          data-label="Market Research">
                          Market Research
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-item" 
                          href="/collections/"
                          data-tn="footer-link-collectionsLanding"
                          data-label="Collections">
                          Collections
                        </a>
                        
                      </li>
                    
                  
                </ul>
              </label>
            </section>
          
        
          
            <section class="consumerFooter-column
                consumerFooter-column--mobile"
                data-tn="consumerFooter-column--mobile">
              <label class="consumerFooter-label">
                <input class="consumerFooter-accordion" type="checkbox">
                <h4 class="textIntent-headline1 consumerFooter-header"
                    data-label="Mobile Apps">
                  Mobile Apps
                </h4>
                <ul class="consumerFooter-links u-unstyledList">
                  
                    
                      <li>
                        
                        <a class="consumerFooter-itemIcon" href="//itunes.apple.com/app/id692766504"
                          data-tn="footer-link-iOSHomes"
                          rel="nofollow">
                          <img class="consumerFooter-mobileIcon"
                              src="https://images.ctfassets.net/x01lqw608u1m/3X7x96c8UYp8qoSgXRtVhE/5cde7194bab3e7ccb3d30be21112a522/appstore.png" alt="Compass iOS App">
                        </a>
                        
                      </li>
                    
                  
                    
                      <li>
                        
                        <a class="consumerFooter-itemIcon" href="//play.google.com/store/apps/details?id=com.compass.compass"
                          data-tn="footer-link-android"
                          rel="nofollow">
                          <img class="consumerFooter-mobileIcon"
                              src="https://images.ctfassets.net/x01lqw608u1m/5IuqcWiWxI4ZhGAsBRGE7v/d78c00f0311bd3465720f7c574e1fb62/playstore.png" alt="Compass Android App">
                        </a>
                        
                      </li>
                    
                  
                </ul>
              </label>
            </section>
          
        
        
          <div class="consumerFooter-social consumerFooter-column--social">
            
              
                <a class="consumerFooter-socialLink"
                    data-tn="footer-link-instagram"
                    href="//instagram.com/compass/"
                    rel="nofollow noopener"
                    target="_blank"
                    title="Instagram">
                  <svg class="cx-icon consumerFooter-socialIcon">
                    <use xlink:href=/cx-icons/4/cx-icons.cdn.svg#cx-icon-instagram_24x24></use>
                  </svg>
                </a>
              
            
              
                <a class="consumerFooter-socialLink"
                    data-tn="footer-link-facebook"
                    href="//facebook.com/compass/"
                    rel="nofollow noopener"
                    target="_blank"
                    title="Facebook">
                  <svg class="cx-icon consumerFooter-socialIcon">
                    <use xlink:href=/cx-icons/4/cx-icons.cdn.svg#cx-icon-facebook_24x24></use>
                  </svg>
                </a>
              
            
              
                <a class="consumerFooter-socialLink"
                    data-tn="footer-link-twitter"
                    href="//twitter.com/compass/"
                    rel="nofollow noopener"
                    target="_blank"
                    title="Twitter">
                  <svg class="cx-icon consumerFooter-socialIcon">
                    <use xlink:href=/cx-icons/4/cx-icons.cdn.svg#cx-icon-twitter_24x24></use>
                  </svg>
                </a>
              
            
              
                <a class="consumerFooter-socialLink"
                    data-tn="footer-link-medium"
                    href="//medium.com/compass-quarterly/"
                    rel="nofollow noopener"
                    target="_blank"
                    title="Medium">
                  <svg class="cx-icon consumerFooter-socialIcon">
                    <use xlink:href=/cx-icons/4/cx-icons.cdn.svg#cx-icon-medium_24x24></use>
                  </svg>
                </a>
              
            
          </div>
        
        <div class="consumerFooter-footnote consumerFooter-column--legal">
          <div class="textIntent-caption1 consumerFooter-legalLinks">
            <a class="consumerFooter-legalTerms" href="/legal/terms-of-service/" data-tn="footer-link-terms-of-service">Terms of Service</a>,
            <a class="consumerFooter-legalTerms" href="/legal/privacy-policy/" data-tn="footer-link-privacy-policy">Privacy Policy</a>,
            <a class="consumerFooter-legalTerms" href="/legal/responsible-disclosure/" data-tn="footer-link-responsible-disclosure">Responsible Disclosure</a>,
            <a class="consumerFooter-legalTerms"
              href="/ucfe-assets/consumer-footer/5/YCPR-Jan-2019.pdf"
              data-tn="footer-link-california-applicant-notice">Notice for California Applicants</a>,
            and
            <a class="consumerFooter-legalTerms"
              href="/ucfe-assets/consumer-footer/5/(6-2-2020)-PRE-Posted-Rules-of-Entry.pdf"
              data-tn="footer-link-california-rules-of-entry">California COVID-19 Rules of Entry</a>
          </div>
          <p class="textIntent-caption2 consumerFooter-legalDisclaimer">
            
              
                
                  COMPASS, the Compass logo, and other various trademarks, logos, designs, and slogans
                
                  are the registered and unregistered trademarks of Compass, Inc. dba Compass in
                
                  the U.S. and/or other countries.
                
                
                  <br/>
                  <br/>
                
              
                
                  Corporate Responsibility, Privacy &#38; Legal Notices: Compass is a licensed real estate 
                
                  broker, licensed to do business as Compass RE in Delaware, New Jersey, Pennsylvania and 
                
                  Tennessee, and Compass Real Estate in Washington, DC. California License
      # 01991628, 1527235, 
                
                  1527365, 1356742, 1443761, 1997075, 1935359, 1961027, 1842987, 1869607,
      1866771, 1527205, 1079009, 
                
                  1272467. No guarantee, warranty or representation of any kind is made regarding the 
                
                  completeness or accuracy of descriptions or measurements (including square
      footage measurements 
                
                  and property condition), such should be independently verified, and Compass
      expressly disclaims 
                
                  any liability in connection therewith. No financial or legal advice provided.
      Equal Housing Opportunity. 
                
                
              
              © Compass 2021. <span class="consumerFooter-phone">212-913-9058.</span>
              <div class="textIntent-caption2 consumerFooter-legalDisclaimer consumerFooter-mobile-no-br">
                <br />
                
                  
                    <a data-tn=footer-link-info-brokerage-service
                        href=/ucfe-assets/consumer-footer/5/IABS-May-2019.pdf
                        rel="nofollow noopener"
                        target="_blank"
                        data-label="Texas Real Estate Commission Information About Brokerage Services">
                      Texas Real Estate Commission Information About Brokerage Services</a><br/>
                  
                    <a data-tn=footer-link-consumer-protection-notice
                        href=//www.trec.texas.gov/sites/default/files/pdf-forms/CN%201-3.pdf
                        rel="nofollow noopener"
                        target="_blank"
                        data-label="Texas Real Estate Commission Consumer Protection Notice">
                      Texas Real Estate Commission Consumer Protection Notice</a><br/>
                  
                  <br/>
                
                  
                    <a data-tn=footer-link-consumer-fair-housing-notice
                        href=/ucfe-assets/consumer-footer/5/NY-FairHousingNotice-(2020).pdf
                        rel="nofollow noopener"
                        target="_blank"
                        data-label="New York State Fair Housing Notice">
                      New York State Fair Housing Notice</a><br/>
                  
                  <br/>
                
              </div>
            
          </p>
          <a class="textIntent-caption2 consumerFooter-browseLink" href="/sitemap/"
              data-tn="footer-link-sitemap"
              data-label="Sitemap">
            Sitemap</a>
          |
          <a class="textIntent-caption2 consumerFooter-browseLink" href="/recently-sold/"
              data-tn="footer-link-recentlySoldHomes"
              data-label="Recently Sold Homes">
            Recently Sold Homes</a>
        </div>
      </div>
    </div>
  </div>
  <script>!function(){"use strict";function e(e){window.analytics&&window.analytics.track("Consumer Footer Clicked",e)}function t(e){return e.dataset.label||e.textContent?e.dataset.label?e.dataset.label.trim():e.textContent.trim():""}return function o(){"complete"===document.readyState?(function(){const o=document.querySelectorAll(".consumerFooter-column");o&&o.forEach(o=>{const n=t(o.querySelector(".consumerFooter-header")),c=o.querySelectorAll("a.consumerFooter-item");c.forEach(o=>{o.addEventListener("click",()=>{e({"Top level category":n,Link:t(o)||o.querySelector(".consumerFooter-mobileIcon").alt,Geography:window.uc&&window.uc.geoId||"Geography not detected"})})})})}(),function(){const t=document.querySelectorAll(".consumerFooter-socialLink");t&&t.forEach(t=>{t.addEventListener("click",()=>{e({"Top level category":"Social Media",Link:t.title,Geography:window.uc&&window.uc.geoId||"Geography not detected"})})})}(),function(){const o=document.querySelector('[data-tn="footer-link-sitemap"]'),n=document.querySelector('[data-tn="footer-link-recentlySoldHomes"]');[o,n].forEach(o=>{o.addEventListener("click",()=>{e({"Top level category":"Seo Footer",Link:t(o),Geography:window.uc&&window.uc.geoId||"Geography not detected"})})})}(),function(){const o=document.querySelector('[data-tn="footer-link-california-applicant-notice"]'),n=document.querySelector('[data-tn="footer-link-consumer-protection-notice"]'),c=document.querySelector('[data-tn="footer-link-info-brokerage-service"]'),r=document.querySelector('[data-tn="footer-link-privacy-policy"]'),a=document.querySelector('[data-tn="footer-link-responsible-disclosure"]'),i=document.querySelector('[data-tn="footer-link-terms-of-service"]');[o,n,c,r,a,i].forEach(o=>{o.addEventListener("click",()=>{e({"Top level category":"Legal",Link:t(o),Geography:window.uc&&window.uc.geoId||"Geography not detected"})})})}(),document.removeEventListener("readystatechange",o)):document.addEventListener("readystatechange",o)}}()();
</script>
  <script>!function(){"use strict";return function(){window.addEventListener("DOMContentLoaded",()=>{window.uc&&window.uc.agentRelations&&(window.uc.agentRelations.brandingAgentOrTeam||window.uc.agentRelations.brandingAgent)&&Array.from(document.querySelectorAll(".consumerFooter-notForClients")).forEach(e=>{e.style.display="none"}),window.uc&&window.uc.experiments&&window.uc.experiments["24f533bbd597fc3b85d362a5778aa68d451e415c"]&&(document.querySelector(".consumerFooter-ir-link").style.display="inline",document.querySelector(".consumerFooter-old-investors-link").style.display="none")})}}()();
</script>
</footer>
    <script type="application/ld+json">
  [{
    "@context": "http://schema.org",
    "@type": "Organization",
    "name": "Compass",
    "logo": "https://www.compass.com/static/img/compass_logo_black.svg",
    "url": "https://compass.com",
    "sameAs": [
        "https://www.facebook.com/compass",
        "https://twitter.com/compass",
        "https://www.instagram.com/compass/"
    ],
    "contactPoint": [
        {
          "@type": "ContactPoint",
          "telephone": "+1-212-913-9058",
          "contactType": "customer service"
        }
    ]
  }
  
    ,{
      "@context": "http://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [{"@type":"ListItem","position":1,"item":{"@id":"https://www.compass.com/agents/?bypass=True","@type":"Thing","name":"All Compass Regions"}},{"@type":"ListItem","position":2,"item":{"@id":"https://www.compass.com/agents/lexi-cerretti/","@type":"Thing","name":"Lexi Cerretti"}}]
    }
  
  ]
</script>

    <script type="text/javascript">
  (function (global) {
    global.uc = {"experiments":{"0061a84a242469dc7456fe773772880b120eb3f5":true,"00946e1668d1dcbf7d8b08ad2624766c0d7ccb09":true,"00ca925707c226aea0505d0a91b950a659b793f6":true,"0190521ea1b075a714433ecad973a29e1ea0f1c7":true,"02ad1cbf03696c84886933ec7c0bea50b3eeac35":true,"0310835c2e7c7b04c0b7b385d91c9fc812c2d965":true,"03a1fed6766177c2462d3f4ba06b6232761a05c4":true,"0437c11eeba77df053130810bbf4758c43b5f53d":true,"0491199763f52f563e3b38049f766803f7dcfa7a":true,"05a4429e4b34b8cd2a90a938b514d22a34af0f32":true,"065aa7718b7c1b00c8c7eda75e37f9239c8cbcc6":true,"068b257c29740c68de2cd2b4552115e6f22b9272":true,"0745833f7b44bb251e684ed54daa7f30db4a61ff":true,"075ec088b4bbb6cbf6620db933d5d3a60228767e":true,"07cd67b11adf8432e9e0d877ed089e0990675301":true,"0a354ab18812c48392e93a761fb6afcfe34b9bd0":true,"0a3fa392af4da66887d11bcb3509c08dd14ae121":true,"0a4a4b2383d66c8562bde9661bee853705270fb3":true,"0a91e2cae4852a7999fd7207378f756ea7eae0f3":true,"0a9e03abbee0ee92f16ba08e60b84a7bdd9a2664":true,"0af8474710270b8d9f64ea48fd411848a59069cd":true,"0b319019d5f24b470106039472a85979af6e880e":true,"0c2db305f357daa6cbf4fbdace35eee4c0090f25":true,"0cb0c31a4149d9cd1c8e04f737320b2f3c624db4":true,"0d09597603c7fea66e14083fbf56b489225a8512":true,"0d3e4ae69d7eb33ebfa18b630c798ac2a1b94913":true,"0e493fdb62de8c63e29b186cf29961fc32d7482f":true,"0f2dcc7362a341887f4db91acd7f83700cfb90d1":true,"0fa53f095c33bdfbbff0558a43819d5c0805798e":true,"0fe9df5a3738205e85dd60afa961dd45929b2229":true,"10c15a841e59f76e51d95676eb509b94f48cebff":true,"10df198f0e4f78f6e800a0a53e18d799d61d4731":true,"115d47d6786f1de505f1cc0566cbc18292add226":true,"11cdbad7252a12f3a975deb4ce8ac3daa8aa58f7":true,"11e88f91eb8f9f2d9d34447369f12b15e2640e1a":true,"128d324715e164a56d6091664b7b298d37585816":true,"12eb5b8678c2d27fda5abadc1177df8300f5ce52":true,"130268e63ff57a7537b332f93545e80f1be34a08":true,"132459522fe6dbcf2225a358636473928a7c3bcf":true,"13424aff284bc5b76bd8ddfb93d5db7d52769cc4":true,"139084a3da1914284d4363a90e461030bc9f93fe":true,"13975ebf692444333665bede8ce365c2f9319e28":true,"13dd4f69703471bc87b204f5b987fc69851265d5":true,"13f5489c26c92d0e14eed1a876ed13e6fec76fe9":true,"13ff476b716deb13ab9d9fce93cc5c113cf11395":true,"148e24279e70103293a5a3d560400875b9c02068":true,"149d2e5b2e2b393fda704b2b846ab65d6caee4df":true,"14ed39b88711efcab41a72df939a72ee09d5ffed":true,"15337888a5559125309858959f527fd407abcd53":true,"15773205466c0aba069d1be90ac50a6933495515":true,"15a3b25c0eedb05cb78a548c2d4165c73d35eff9":true,"15d20a58455aae74acb91b2e74386e4ca8022f0c":true,"1612286a624af55d41f3f02d1d3162c468c83b29":true,"166234617f4e259e98b3e8786559e3f338ccc2b7":true,"169747e856da5e66fc93f2489cb3a4c65d1e571d":true,"17a8a94b1b0ea1f84a5478416174d54daeb7d2d7":true,"18010c1d66849b4223fe04d8b51dc849eca0ea46":true,"1819a1909cd05400dfe0f44be8ce4bb5790411a7":true,"187528a738e7add82d6af33da118ba0be4c45775":true,"18e99042a03e457c58352ae0b76a63bebb497866":true,"1964d3606778d314c0ec08ac9d32e627df4e33e9":true,"199f11603415a35209fe4a5ea35912867fc35cde":true,"19be5cb94e7228be43d251c82a22f86d319e1700":true,"19c214704d1973e65d4fd2484462763c80d95451":true,"19dd4404b99678d453952c3be2f787c62948eb09":true,"1a0f6c23e978cf3992c0ccab156e7c9a7090f88a":true,"1a1fff7699153b326e74aa7259bff6f4708a8434":true,"1aa489c43542db70bb6b30d27e75d2ee4b59516a":true,"1ad0988bea0919bc5f75bdfdb97e02813149b304":true,"1ae20126cf8b879309573baff4ec4f2019c4f7f7":true,"1aea7aa6b28b55168c92b0fd18ab69c5d05126f5":true,"1b507f1f515d3a3cb6964dbfd60034e33d56eaa3":true,"1b69a4fc14f37cec4bd20d589ab3cc862e8452d6":true,"1b88fa524a2cdffcff069302978ab920811c9238":true,"1c57b91d8291eba1ec61a02cd5f0703b42674f3c":true,"1cb21337a1f27560ec2794293d3c8fffe406102f":true,"1cb6665cc6b9fc77f368370a5569097bc1f06932":true,"1d1b428aeaeb4f65baed66372c7c884bf64017d6":true,"1d34ad7edccb1a4775e635acffedb7c7e8003b47":true,"1d455d09b80d1afc2559c63f1d9d5df909ebf89c":true,"1d5bd0148e5b2a87b2f67f7b27d1719bc998c825":true,"1d6ac7a4ef74f3189a2470690cad1ed394ee3f75":true,"1deb774d65f0eceae324bae8242ca44e4b4151cd":true,"1e1039f9b08fe69dd86eb76a8c47b8c3aa58052c":true,"1e419bac35fc87abe136bbd4befbfa4c60ce3685":true,"1ee24fe67c3f1a771993e7b9d28777b071228e92":true,"2003029bea089d4aa31887e9b2dda8b6cb7f8af9":true,"20ef83c4168a8a45c14abfdb1bdb1f21a500ae31":true,"219aaa2cecc0bc5ad1010e59279bf77a5889a283":true,"21c7764eead5b83e9ef78256d211dfdebaa543ea":true,"23abe989a1e43e68c38a1915ffcd4e54524cb29a":true,"23fdcf63ff47e9128bd0fcc9edcd4e8a795e01cd":true,"24297827167b18f72161f2889a53092124719bf0":true,"24f533bbd597fc3b85d362a5778aa68d451e415c":true,"24f72f42aca3419607d39eb21c0ac1dd9c43059c":true,"255e74feb0cbb65c5894f442c638ca8367084e41":true,"257721f3491fa1bc907bd459e08d697b7718399c":true,"2680a0b344452557626f0ee1214845e344fca796":true,"26926ad887f7739cb10bf75afb1438f22baf8229":true,"26ecd7d824ffbcccb1dbf32020a2bffdaa9b0371":true,"272dc4c81e7b376d96876bbd14bc84d76f11b188":true,"27a16ccc794849a3d157e99d7cbaeb8a8a4c20c6":true,"289b6b0a95c4602a827e943a31508c3e8c3ec1e3":true,"28cdd83349c8d3686737306c93544e7870afae87":true,"28de5783f152aa6ebaac21bf3165952378d2d819":true,"28ecdbcc5ffec6acc7fab56c1f57ff36acbfbd4b":true,"291be9f366cac02465c7f169231e31fa256d9bec":true,"297691d407e10eef6a5298c8a4e9baef53673c83":true,"2a16e8ce3f8d2cbc0a334cf9069a3bb1b39d23cb":true,"2a20f62e31411a4116581f0329cda26860b314e4":true,"2a9b790a8da9505d30f09471f2ee6d7bd27bd144":true,"2b6e01258c4c9f1e98357cd709f7d89c0915809d":true,"2c4c3a22d095f3fad4e70d5f04d768fc72ad436f":true,"2c9e2b60302e8ed56cb435cf9ad9dd0ae8760183":true,"2ca950fd555c24af37f119599340944ce1ea8cfc":true,"2cca6fe305134da2539fac5f7911438187d9814a":true,"2d82021308a401188573c108946247c4d2f2c9eb":true,"2dd4a2efe814fcb285546dd969a5819d99017367":true,"2df3d96e8726f52340b32db0fa35aa9a91181711":true,"2dfc5693271cb463d0241549d1b7af288b44ebca":true,"2e94e8610e65c5989cb36d9707855bc5ca7f2e11":true,"2eb48c90cb9308cdbadd6e4b18572fc68182d23c":true,"2ff5d618aff02532797e4447befc79caad07b627":true,"30192be2000e25ef7d7a4ccfe31ef99e071839f0":true,"30c0481c7a28c049a5669050229b692205668b7f":true,"30d7c50fdea83b83c68a0b12189f6c52e57698d0":true,"3140513bc9123038bb96cd3d6c4554d9c30d70a3":true,"324045dd08778716b3b73b7e35d90c90c10f47fd":true,"3245b50abc3ae30ed7c14f07c3d990731db9bc81":true,"32eb6777987f63d9bb78b3543c67de43d2fe26df":true,"331ed30673d222bcfccabf66e912f781a650cc03":true,"3365ce8021bbbb70f8c6cbb99b808acc7e528f6d":true,"33673bbab02d5e79fd293346dc7f955c4b110b07":true,"33ecded75bb9980d3ebf08cc4711a4a9486074f6":true,"34239506e07f6c50df366ff7d922e0ed6488d98f":true,"343159831b60f42d185095cf71eb1d966842d7a1":true,"34732bdcf6dc5d4ca05ddfa43a46962f19de80e7":true,"3493d368d021a1173e46abdd98da967e27b198ec":true,"349a4eca2e3c015682573ae846278b017be07e57":true,"34cb75178794a61a9d07be92c33cb94992ac5368":true,"34ffead248b1214d445a81595b4f8f8d801d13e8":true,"35128a918f70f3edbf1c1d378d0cc43a09477128":true,"363a4030f365738af8eba43f6fcb0d3cbefe78b0":true,"37822e0abc1adaa8e53653238b9db91eeabc22a2":true,"37edd5fa0e3ce99ac5b838d25981b6f6cabcdf5a":true,"37fb56a539ec5425b7fcbda2ba75681e15cc9bb3":true,"38f3867a7cab708ec792f1576487017036577bed":true,"38fd5f285d313df791b1d7557d0f5da97955fec1":true,"39badead0b4583a8968288477d762febb72f4be7":true,"39e61d22fa3ddbdbba2dd0a8cb92816b61d22f44":true,"3a093d92dbb3a050dc580cdeeb6de1cdb78cfcb5":true,"3a3531b0184aae134683c1ff1d175a9be8f3e25b":true,"3a62591f6a4b2cfaaed92cce2389bfede54adc51":true,"3b060382b8d5882f8e55b542f7a701ef0e1073db":true,"3bedc7c0a21d3ce9aabf7cae408a7ea47fd8f7e1":true,"3c33471e4e53d599bfafb174ef75cd290d48ca49":true,"3d7645036ec488f36e6f3e22b8316da685b0ce93":true,"3e5561420b580ab31cf04ec7599dd16b064c1307":true,"3fb55cbccde52c5a559e8e9286462d5d2f8c0b2f":true,"400b3a3bd117d36c93d766696bff872fe748c7fa":true,"405736757ce5b7e7213d72b870930e779013be46":true,"417ad0843d2ea5a87ef1e16c3ce9bcff1507ad21":true,"418a2a5b78ecfc43f97fe1ce63dcb4d98ae0491c":true,"41cd358c0e9cbb292fd215bea33b42ae63c45ba6":true,"425d34ad76d21c10e9592b5c6cdbcd63b745d18f":true,"429722bf06868f49ab2e2952174bbb6ae3343acc":true,"4432d062b43e403762cf005ec7af6109ad22f195":true,"4497a4cb9d78f287c53e233e82d5f307750128b8":true,"44c254a04f8aababdd8f100afee547ba0e4ea95b":true,"44c616ec5970153e20ed0c780afcff98981f0345":true,"44e431dc42502fe6dded2638785e1047db67a380":true,"45ed57bcdb2b2662a912c851da68abf1626270f9":true,"4610dc7e685448c638b371be9cc738c034a02692":true,"46331f20f76d403e720a964e05cb8511498165f4":true,"46ae24bfd0a76a150fc5c457f84c57a93dd22397":true,"46ae7a6db6aac05069430e8726c40708fe3080ca":true,"46b432deef5cddec2506fddacfcf0912118e1e41":true,"47168e1fba46d0bb9880290a3c8faf4513358f66":true,"478820d55453813fb8d10d3c6fd76ce787e954ed":true,"47e12e863f44f4e10e433a4e9cafb60e906d0690":true,"47e1ce46a1480e1a91242d976a5ba5c9095ad901":true,"4840007f57847e9c29701b5aae06110301569a33":true,"48670cdae11efd189475f892577d2d69421a92cd":true,"48ea4fd6c92295ce4b70245badd5567779d64cb7":true,"49848fd227dcf1e1afb40ef207b5cef911be67d6":true,"4b272df8e3547a29e4d3dd79d9366985bb1ee48d":true,"4b7e94cf991425c298681a7f3c41da481f71056f":true,"4b8ecf24df051b50cc35bdfdefc273940a473bc3":true,"4bdca60848a337e35944d6d2ed7962556914c347":true,"4c0f44c946329b88ce3543f9dc90f74a55035687":true,"4c203c2211d70963e3c662931cf99eeddfee7953":true,"4c4e053a2c0fcce2118defead7aff67c49d6fa02":true,"4cc6f3161cbc728f9bc99b3c45adc931ddf69448":true,"4d5a0d353d30dd70738e5c57728737d1811d4601":true,"4d6439633db5c903eadc6d724f430b7c28a86b15":true,"4d7816c8a10cedd2cbf21988465bbc230d045afc":true,"4dc9442691ce80c04972f0059c94f72978f6465a":true,"4f3aa21a0f1adb626a307c836117438d3443c2e7":true,"4fc18569615424cdd0b42e75ba4e8b5da8477e17":true,"50088242c216da039d5659e6b04f4fee462ed07b":true,"503ff4ddafdfc7b5f0cbd6e5a33dc45eb1d8bb1f":true,"5058912d23410c75bccab033e63ed6e929f9dbc3":true,"50c44950066d662b67dfe7a5df9933dc102a2b32":true,"514acb9b3b25995cf987fabdf7d8c339f4239bd9":true,"51690390c32aec2ead2bb756aa59e637e97db2f8":true,"51df94758bea9275ca4cf3f7c1a82c5c94c082f7":true,"5258a4f73fe534d3c60ab898e978b070cb683ff4":true,"5284715e35d2c553be27cbb3d1f4b80bdb8214df":true,"53257ebea0a0e7e370967750d011ca3308e60829":true,"53ba5fb3bdfaa37b3b3fb25382584972efdb4121":true,"53c284b6a22ed1393529e36e189c9e6fc7d773b1":true,"5427a547fd2ccc04462f86177eebb2cecb76bc0f":true,"54727efb700e12c35232dc9015b68d04a1231315":true,"54af02831571f7b524eca833e1a3d3acb374fa0e":true,"550a165ac1ef1b5fd7e987c3934a3c48dd5e168e":true,"557a0ab1ff2afba9cb834682f848e4c7cec80edb":true,"55a0f7f09445bd91111a8d7f397daeaf6660e7ff":true,"55aafdfcc07a3d7a84cd958a8d9648c519f380f4":true,"56684e9aa021a00440e9015deb39a6468d023fcd":true,"57ba882d2b9269e5d8ab5359802155741da41d02":true,"57d41a7fde0c11fa81d234c3d61b9be78dd2b315":true,"592b83c8130151c41fd16e93da6d5eb06af39b12":true,"5972e994cc8e68b04a5d5623ef7271acce6c29e8":true,"59b08bf5680e3d170a7926e39946ddab3222ff70":true,"5a4b28183b5b59c1870eebecda699cdbf1061b7a":true,"5b1e64944d3557969ac8c71c4c259a96ba8d21af":true,"5b694ca7e04620a1ca421fc2dea058cbd1b3ff08":true,"5bfd2de08a7a22d642bf5d22ff1176efbd27edd8":true,"5c949db9b62f9ba56528c993911cded78ac1db3a":true,"5d108a9667dbee733742f9593d4388961d005964":true,"5d5ee627fcf67e5e688635c20c551577742e080b":true,"5e14b51a9bdf2ddb7a4030bccf11af259631a008":true,"5edbcfe72c0c41f98c5ccbc828b085108898e596":true,"5f1f9c81ecef5a3c9eb6c0db67227fce5aa96de5":true,"5f4d15c7fe8bcf8d7200be9e88cad75b135d7880":true,"5fecb8adeb6cb4cce5864f351e4679c179fb32ad":true,"60baef098e1d30037c0fece2c310a9e1cf241164":true,"60d742068963363c81e478f0145988d70d08d923":true,"615d7aed7285d11f17e140f682a51e6e3fa6df2a":true,"627fe356b2b5fe4e0298cf08f6207939b8cf71bd":true,"62904394f3274720386d4a9d7b1947e14b2e1083":true,"639b51b1adbf7feb49e40659b9eb899a6c139db6":true,"63b6f305c341036aab610cd658614aa87436a0a4":true,"63fdc29dc28e54131a6039320cfc75b2985b5538":true,"64fd3520669b540be246146b6d63a4070c6424a3":true,"653f4a8b5fdc4f9fbe08394c3c9ed8eee1051b8b":true,"6548eb40185ebb322ee629f734b11789c0ce8e37":true,"6561f395d5ee8c5b68f07d2ac83f3e8cd09e52ab":true,"6577bd09938623ba139299603cdd6fa1b96c347e":true,"659962b94126e6a53088a5d5176dacb481fa5277":true,"65b228f51fc6c140115118c9612b096148053ac7":true,"66265d5bcc9252d3a402a9f1303f58f99fe06698":true,"673a1139cc6480edd679fe510d4d4e875258744a":true,"67989a3532553dbcec440caa0e8a7a9d4d1537a4":true,"69b5f3d9341bde6ed9b532d69e8aa215194b7ab0":true,"6a1b9daf6e1da701a281124af2a646b183d5deaa":true,"6ac4a6a3c8ce54b303a819edb89a56c768929df1":true,"6ac83ef796cd4361b52fe166ef8b29d36bbcfbad":true,"6b0a92c6ddf5e028f52ec98365ae0cf694f74501":true,"6b82568f008c42fef1b192d64f6ced3609525e4c":true,"6c76d77af910c080b981179cacf952350659e14b":true,"6cccb8133677160fb20a4355927fbd613687acfd":true,"6dec020c6f9e9b562620994aaf8acb485094fe91":true,"6e0753ad95a080b3e2a3d03be098db221047d455":true,"6e87a77632b701eb85cb6a2f370a1d2f3f5096e2":true,"6edbd4025e59e44cd42fdef3d5bdc2cf3c233b9c":true,"6ee604845c24a9f7cc1b4c2240420e9081a4cb44":true,"6f8b211d099913b5cb4ff509f243ccf950052798":true,"6f98d141b978c01a5941e8f3d06c6856624d6785":true,"6fe713891a6cd0f2c5e71c7f4ec032b6b95362c7":true,"6fe87e0b8c1a753f370e88827fbbdc82ec9e8ccb":true,"7059474f1013e8ba91ad84802075d30fd24e1b21":true,"7088af6c1b3d5b518cd4a534bbba661808b94401":true,"70b24ea023924ffa322d1ca508ac1286ea0c5133":true,"713277abe66839a167811476ff6f10592b4c0df8":true,"71a3a93b1ba8bfb5424d66f088656c037d3fcc73":true,"72f8e382f088550a6d029d7cac6c0fd775963658":true,"7373afc177bf26760530833ae6b75d243a223d99":true,"743a68e431e330bebee1cc293993b85e8cbb757b":true,"7492ae794b96b0fb1a2d3e2e46d51344674dfad5":true,"74b2fa883c6e7864a89d381f77c02fb9c79b2a61":true,"74c2d1721b44625aa3278d4e408bdb1d1cbb2c81":true,"74efe4f02b590c16e7e31cb467567dfcfe301669":true,"75756be2421f4719f144a2056a055c620bb30033":true,"75c49e45f727b097a47fa60cd7eec7269a1638a6":true,"761f1cf3787f955587d03f7cc5f955498c12266f":true,"769af594f907ce5d05282deb582166a2a3f1d952":true,"76b26fa3caae7a9f2494ada63c66b5dff6bee66e":true,"76bea0628d282f310a945d2f359ba4b73274dc11":true,"77208bd3099e4f1f6945b65da29a1bbc310ad20d":true,"774612c305f257c48fb78b1f96eb69c28c400b96":true,"77549dadba7394352235c7f2ae21be4b91986618":true,"776799542021c8d7b0c54fee2096b09d5bd2e1e8":true,"7796b17dcb89e933868356fa60795af3fa128e8e":true,"78514f104d9d7b34e59b5065e0ee82d1d27500bf":true,"788671b1812911c099d85b58304813b157e51984":true,"78f6ae8622958321913d2af1e6523c6eca5d92a5":true,"792b377aeafcaef7f257774cd552f59feb21a717":true,"7946df19607b69469370771dd482a0aa97ed26a3":true,"795c19c31ba2b7b938a66790dd2529f81b525adc":true,"797f7167a6d9fbbb7ca3fe16f01b49c713be4b76":true,"7aed9c2274170fc2966d7710026b52ecbff35695":true,"7b1e485a0a32239ebe047ebbd129494e5a720ba6":true,"7b22f31484e457ee4c65caf355a60e3c8ff94270":true,"7bbada6a4150e69f683834ad85071a7be33f8af7":true,"7bd457246095c2deb06484662db5c097259ba5fb":true,"7c381534ec1977fc9090ff8bbedc5a8deec87a5e":true,"7c893c11ef0df330fd5e2222a1c35b999bbf64a4":true,"7caed9716e348fbe10f6d1114329ddf9b642b113":true,"7d231dd620e4a2cc05b6117d5ee7bfcc267777b2":true,"7d975f96f99859a1df64a3355792d69e4d431fde":true,"7dae826d9a668bb182c51e1150344d0ad12d16c8":true,"7e97ff0ef4bfb97e9d62b4694875dabea387ba12":true,"7ec6168fe3076e6747b93f570ec81687338efddb":true,"7f5171ccc7e334d91831b286e3d31fda47249c74":true,"807d55598ea2c0e7bc7e47c3d1678447fe88cfdb":true,"816ace5971ed00837210070f9bffd12442463227":true,"829d021099599a373001dc6338b198daccbc6f5a":true,"829ff71529d98ab6e307f028a4188604db8e48c0":true,"82b67d106e9cc558ffd138ca38d0b42c2f060f51":true,"82f5f48c6c65fbbfa19d0bbc98c0f3fbaacd5727":true,"8311dc7081891acc40f34680b946d32cf2ede273":true,"832005b87e8c244365988d54f6b0c629815c6466":true,"843afb92b6ecde7ce99ca8c12779ed0227c52fb6":true,"8453cbd3cb68d6dd0f04e01a62f9b38aa7f4cc72":true,"84c82a4cf3fa75700f555f1a9ea03bdd09ecbb43":true,"84cc43d3fc847a9c8f39fe9defeba4fcb9eecc95":true,"853979434a8a4265aa91ac635cc4554a7591b76a":true,"865c877ea74bfd125340208e5bdc701bef8c7c69":true,"869be7774080291a8577e1181b432ff56983ad0f":true,"86a88f8de838c7825736b237e16b5622842aa9c1":true,"86e8500e56ed9e65cdb0041ad76a82b6f5142c70":true,"8721c62d6c0fc667d5a385e580e1a3302e73422b":true,"872d8efa543e376ebb6a8f1f248e04d5d20f687e":true,"88964407fde1f3b4ed504194f339a5feed1b5e4f":true,"88b58d1a8e8471661e7749990867a6625b6ac954":true,"89177a6a999fe332795fcfd1acbddb92d3da7b09":true,"8939689d40f4e719738f6cabc24fcbedd0a02092":true,"893b5dd008bac9061988c5784fe7f2227b052023":true,"8b17d7d6747d57ea540e4d86606ee091a48ffa5a":true,"8b8057184056fdc884d62f2b621f63863ba90e57":true,"8b91d1d31b9c92e222f6665b472794e6f81a6492":true,"8b94505704fd3c1d606560cdae2732ff0f0a6aad":true,"8c5b1fa1f5c268ac5df152784846d1ab6f8631cc":true,"8cfde2da8620787abe3a83056d003380326c0cd6":true,"8d83155f243d1affc4ec1baa478fcf35f61e122b":true,"8da43fa928cf407b09ffbe7c133b9677c5f564b4":true,"8dc8e30a2d419e0174f2a44f39956582ac43b7d4":true,"8dfd4bc29a1c1f53e2ce77e899e0107a4f6b6ea3":true,"8ee211b558c9ab3e20a15c37826b1742c19e95a6":true,"8fd7dcfe8e9615b9458c6abcd2bd03518b953e0b":true,"8feac914a1f151e2a7dbd6ac8eb5aee40e79916b":true,"915557a43e7d39a3f43eaeb9c634d899671fdb56":true,"9163c7120b8619724a40ce9591c2c501e1e97fac":true,"91da5e596c98149b2ebb2deb4cccaa82c118459f":true,"9313252f80249c824939245ff0ce6553d5eb8830":true,"93b3f6e61999b45357f33e950df8cb9189356ec4":true,"93bc3550492c38f525bdbddda8dc5b160ef894e9":true,"9469c1289d0e69fdc928755fdfcadcbed236e133":true,"959ca97a432b75ccf116087039e75fdc0adde5fb":true,"95c666fa1c13f01187db757a9328d3c75e97dbc8":true,"9606f327f0864e7f06ec7d2d173df5f173865696":true,"96245161aa51bfee6fe6ddd7378dcf7ebb815110":true,"9696d0880fe0d678920e619e15dc3e487c8fd7bb":true,"9767970d24bace458eef9b4ddb837dd55694d84a":true,"97d49d6259c75fea2f06dbaaa806ef42d29fe925":true,"984ed0d63520d663bfb39c6065c8d33ad6449969":true,"98b3499b475b6b3a56c8ed799eb57df5d86cc781":true,"98c58078c2ac303226d86dc7976ce7798df68a67":true,"991412a595e4151019ca29695d03aaed4687ad32":true,"99c8acbb932ce4f25ef6d9cbff06ea0d399be746":true,"9a99833d8367482c637c9be08a285fa4f5ea9200":true,"9b41960ee84e89b083d6494e4eecdeec5ddb6587":true,"9b6a96d346a2d4e33d9addd905c4b84046933ed3":true,"9c5ef9749052e42d2aa8d2105036f9be4d328c4c":true,"9c8204a46fa0a96dc1729530c42df23dcf0118cf":true,"9cca135f7298e9cc90681ed16c8fc52d29355722":true,"9d53b43675584f5f1bb26cbf13858e247bb6e489":true,"9d7e09b6d19edce1ec093dfadd7875d3143d047b":true,"9e449c29abb76c8ac0e66896b38af2a6354c256d":true,"9ed9b89371ee917264c4a90704edbc816b6d104e":true,"9f482e7fa7ce70cff94ebb927ecd37c892d1a237":true,"a07fbd4960fae5244e1bedf722efbd4cdc8241dd":true,"a0a4b62087cc4c2c2b146e22cf0b758def14dbcc":true,"a0e37ef178857aeab8fd2ea4099f2339d036c588":true,"a13be29054265f0746e8332902690b918318a32d":true,"a1fb91141407978d5d0ee72894ca0dfdd2fddddb":true,"a2602b8db4dec2b7b23a436823f1606e2df9ee1f":true,"a2b2ad8508f84705bd14ce0ccab644905d0b689a":true,"a347c39cf747528bc71487177a94deb9abcf37c8":true,"a3536ecfc6ce026561e5b596a9f44c31d0010148":true,"a4907dbf899ea7bd889bbd8d250c99dacc0c0193":true,"a4950cbb10c5faa020b378b052b113f1acf2a9ce":true,"a4f9be3be97ce846af16d6e89eb117e388413fdd":true,"a559d2aa6765666f4c131981ff0cf95c19932f14":true,"a5cc396850c4a13d047283020bcbc02062c61eb0":true,"a60f48bcf058b84c133c6f84010b5f03560a5866":true,"a64c76fbe284835a3c5d0d758d4e8329c7ac3cde":true,"a6ccee255d8db0e6dff2ad0028669d3f70a9176c":true,"a744898497e93557f2dff5c0988d51a2e1c71ad0":true,"a77327573e75bf002f56f2a9d382803a40dbf860":true,"a83aabb765405ea813dece42b96e084db59f75d1":true,"a8649cf666f4d0872c49d37ec52b97f23a175c2d":true,"a8691374014eb914a038855279da03692123cde9":true,"a91e52028076fe42b6ecfb46dafa20a6671033d9":true,"a9b043005a165bdd85dd2d593c59a5c263a2911b":true,"aa4f05924d1f1bfa43e354b6f99f9359ccd77576":true,"aa7a8b2b1b0303876df835d7595dcae18cc69c5a":true,"aaa3200c696feeb8ffcd9c4c3bccf7840f791b89":true,"aabe5196bf7a48d204955ffdf660f27bc357476c":true,"aac6946ed653d53422730c59142d935e7a952482":true,"ab0ae391af1b58edb4dea3ee2584d1d0d7719ff4":true,"ab24379f442d357cca239b254c6efc3eb89f204b":true,"abf24d4eea4e2d9dfea5cfd9f11f13cbf4777d90":true,"ac1dc35df32e926a34998581c7d0e3b5f41bef80":true,"ac5092494d5af1a06fcb42cee09e21b07ca96d57":true,"ad0c6030e430db1a45ee31581e173dce662babcd":true,"ad1440db03b4d5cc24a6de81cc27301708e8aed1":true,"ad9e0c3eff0c7c1cd3e90968ffa337a5242cd5c7":true,"adc6ba79352afb6ae0003895940e96494416bd3f":true,"ade02160e6c0176de003017857b83d9461e3f974":true,"ae6f06baa98bbe36df9a9c842f6639db116f4016":true,"aeab122608a6f7a23e1b1816fe3eef0a2d7cc5d7":true,"afa1351bc8f28c4c547972903db3cce8cb1bb6a1":true,"b0387810a90ec91a441495fe8741c5082b91b342":true,"b076d0d6e20e526b3c863a7a4bb235044f7e06b4":true,"b151d39886fd50c52c7b681f376329a2b42b82c6":true,"b2d3f1c00820ae599beeb0537ab4a6f6ad2bd245":true,"b3b827b37193385b2a00d15de2435059c5894376":true,"b42f74a471f984ef1dbc3f1b223c01a7352fcbbf":true,"b4c9c9d18e297d30f6ab96bf6ae4ddcb41c14103":true,"b4cdbc8042d2542fd0fc4043fe24d61e665fe8d6":true,"b5aeacc4284e52277944b474232c681dd00fa14a":true,"b5c4497241fa5da21dff3dfa9b230459665c7a24":true,"b66806f4d55c4a9e01de69f4f38e621817931b81":true,"b6c1da5c92abc2ca044bd54aa2ec8223c938909a":true,"b7498a731958fc01784c2b171fced5a5a97eda78":true,"b7a9219cdecf6b8347087957de93bf0490096c07":true,"b7c2bcf91216c97be7956673e11d990ff3131510":true,"b8d5bdf1fed73f454bd8a7174c8d23ec5ce27e68":true,"b8fd78b27950e4017e083d2511623951a4b9f28b":true,"b910c1db2b6fba5a5571d59fcc5774d39eccd084":true,"b973bbffd3fe04970f00114cd2fb97605a544652":true,"b9bade4e0b6d84879fdad5fc34d90e8f2ef5a158":true,"bb3bcbc732dcafc8bd8cc16945b13338723290fd":true,"bb6d112bd707750c6cdad421d55244d7ce633c89":true,"bc5513d9f0ea512336063b271cc8e06ec50d2266":true,"bcfb1591dc011255ecd9ff3f76814bbc32178dc5":true,"bd2eb73ba0af10a06f12e918f947ad6849eb594f":true,"bd3ab78db25960db55ccac63b0640c71bc5028f9":true,"be05c71acc3da3542ff4f22ac631ef9836f20c16":true,"be2fffda095485b3b25adb8efabe9f27015b488b":true,"be44617a7536b6ac8cb1510a07b58236c45d2720":true,"bece74b75bd73ca51f635386e75f74efb2447bd7":true,"bf217081323d252915a435499d384032b91c7134":true,"bf3d797e7ac88ab2259e27796ff030ed88cc2023":true,"bf478136a830ba27e5df789a3d71a7a9cbc67b12":true,"bf7af58c4116801cbcb478e4f7566e151d786a83":true,"bf8f2368e91f5f791fba7ac42175a9aa87a69930":true,"c0629ef14647dd4069bf2b5d4cf4533672c17ec2":true,"c142cfca9f9c75ccbb6081ee7e44cfda3582e5e5":true,"c1c5c7cb5555250f0ddbfcbcd97ed4fe1ac8e7c5":true,"c25f3976e5198bcabb87262334910ae678f8d3a3":true,"c287b43968ddec7390cffed4f1645cbfb8b07e01":true,"c28ba623183e46dbd17eee69d2aa58b9875a4575":true,"c2fd5a8a3dae2b9cfc52256843a55a81e3d14c6f":true,"c300481d8048e48d199c4b4d4b14f9bea24ebd2a":true,"c3059af713e436b1124c17d6957120bdd5b4b4d7":true,"c316820debe78bfa0ab3b06a2b705258452efe2f":true,"c34425b0581c2ae44228142e818db44c2e32ec9f":true,"c391ac77fe71e63da70bd82e4b52705577c3719e":true,"c3bef791a567f1feb17da1029a515b582cc03c55":true,"c3c63d2066188c56dc8169e77cad0d25c94e10b4":true,"c40ecda8fff4e1d3ff14bc7bf8070af6f1b4510a":true,"c476b3b38a4438e346c583c7d5db31befe42aeea":true,"c4b57a0c4caeed15539e6df6f649a0029190984e":true,"c4f57256f8c84d1fa3904e36371f20a6e9c4ec0c":true,"c588d925be45c2691ca6801ac816d5481628b785":true,"c5fc4c4589b6a6daad558806bc0bd3d7fb7dce1c":true,"c60c4f7035b537d508de0c60d15163423d285faf":true,"c62f5d3e9091f98fdaf3308bad3063fad068f50a":true,"c68373e31c04f75a6847d1de86ee843fb8b346e3":true,"c6948adba44c0080b20875d8c533bfa1d852af10":true,"c6bd8608d5e6b1798159e8fa289340d3b9859c03":true,"c75ee6a3d454a04ca319894007907482117549c1":true,"c7776c98b7edf254439e4c0f347f886c27735bec":true,"c7a99cdc138deea838bc35565f2b6513ace5e259":true,"c8463eb539eadc9b9ff02aca3ba3e6098ceb93cb":true,"c89361903274f7d77aa571bf63d762cbf4e59364":true,"c8a9c64544af3b610696d9d7618de9826968571d":true,"c8d8327a77c11c0c902fc9b1abb3fe6575faeeed":true,"c8ff1789696a2fab961db94611aedc4958e7778a":true,"c99b484dbeb14e3c22ea8c3cf4b3497b8d674f1b":true,"c9a394b97307194bedd1ea33bce912a60f801bea":true,"c9c3c272c917b87f351dcd6dc28ebe81eaa96c41":true,"ca90a5bae8bb90a3aa83f9c4c40d63852bf9a83a":true,"cb40d049d49b87d11c983a84cbc84c69df1b2e13":true,"cbdf988681194d24141a114c462baabcca1a9c1a":true,"cc446534383891b2dad59777dabad83a2322d3dd":true,"cd1532e383c897fe451681decabd7a88a5a66260":true,"cd3349936f9ec9cfaebf8f0ca6f690e63e00cb65":true,"ceec13a3e836f7453191bbff839412bbc8fa293b":true,"cf7350dea5722c5ef5683c9e69871776dc59554d":true,"cfb6b26941bd1fba4811df1736594c13a01fdc0f":true,"d08cf2e6310f2aa9e24b6362a8da4e4c5d605833":true,"d0dcf5ea89db35727e2958e2fb550dc7e7c3e54e":true,"d1434c224ea41e7f75b912bc07c55d5419de887f":true,"d15630d9dc645079d41ee99e9eb568002a7dedb8":true,"d27ec97049fa990f9c1c3b30235c9b1b487e57c1":true,"d2b6f558a6c71807c739f60f156aaf3f0516ad20":true,"d37fbf842ed85d43ea1003502f58d0bb86806147":true,"d40389bfc1f987304e438185abd3db743d6a10e3":true,"d494f79e68a2d3c6604d2e653bb7d124cdb18362":true,"d4ac3c0b5eb3f420bb602ad1ad5ad3afe4e64893":true,"d4d08ee8e487d340985b184fab99a3c7dc3ab72b":true,"d4ed294ceefcb0b5c8cc2474866c657fae369880":true,"d4edd6cab8629c0d03a7cc64d13eba51221f6a83":true,"d51ad87c92d0fb5c8ebe67eece1713d2a8962542":true,"d603e6d1615c8b5a93df84ab932cd20ef06ce291":true,"d628d0e5b07819963f5968b142da395feb4f1cd6":true,"d714e1ad0758ae65f90275ebcbbd3d9c88ade7cc":true,"d78f4e40f0afebfd2065d01cc30e25ea9814aa4e":true,"d7df28ec2fb835c8c6d2173a5cb8e13eccd2c5ed":true,"d82b2ce084fa2381378af3f842af0f0dddb50ba6":true,"d8d0c5973e94948da40e8d81ab8f575d24882390":true,"d924cdbdf50e8674b0e5dd2aa74e6cac2c7619d5":true,"d9a72d4c93b4b164af825ef9d762e1558f07ea36":true,"da2bd276db342098e10852bf1f02a785d20a95c3":true,"dabfb6d39a940a2605040e429eabb93d74fbed26":true,"db7272fc609bcd1461388780f69857ce16d1629d":true,"db7b775122ae24be4d549519a49e5f5aebf9bc5a":true,"dbca92e31b80558629a85bf749ede0cfdc3d1d7a":true,"dcc5d5c4da2d5e6282de60d324f8ae33aff5f8b6":true,"dd8bfa59eb5bb35dbbea63ee62eff6664df9047d":true,"def27f191b606082782a4406e782307e367e110a":true,"df89a849d0665d1ba8c67c20b23a23db909e27fa":true,"df95b3c48840992604ed1e791601b48d9f39a065":true,"dfc447a5d1a36ff33281abbb71ccd120104de431":true,"dfd8b1c8ea99f5e6e561757d1fa58432528d5a33":true,"e056f5ade3c4eeffff464dcc778b3b39c177970d":true,"e12acf25a5f3bd2a655eb8f897f4731a20fd97d0":true,"e18d1e1c007aa4cc285d3275e7a4b8e507ffd4e1":true,"e2c4286a1aefb8b480f30cee729be825fd3927fe":true,"e2c973d0fd59c6008c556ec3e1d010396d23d9e3":true,"e2dbd839905e3bbc9f3161d3f391de1e8dd5d778":true,"e33fcff29c6949f7438bfe484d9a7ee346b78d93":true,"e3674e6f4426f81d261527ab25c00a5f89ebf4c3":true,"e4034ff26eb3fbb8c2e2a532e1c05b4fcdd3af22":true,"e43919e34da0ce64f7c3291a4866dde85d1e6acc":true,"e447b2f70ea4549d32d523f15c4ebccb3175a0ca":true,"e4b090efea0c5892cf9ebd7c018440b2381351e9":true,"e4b12b76fe27965b02af488848bf2025aa26aa76":true,"e542ce3a14e4f3c646a0bbbf8b7ec9e0ceffea91":true,"e58a4e6a7008b3e2c7cd4d46dd293e69af5dae9a":true,"e5949ff22b90939e090f9ad181bab9155ee306c2":true,"e60142853038f2b7adca28245c8c8bb9f429d664":true,"e60f126a562dc5e7db4435421c466ca8347d746b":true,"e74ae2020f6aadc9ce632445160d42eb4d5222e5":true,"e74dafef738286a0e033e89524e3b48455559dd1":true,"e77cc7ea1b2648acdc923f841e4434428807a65f":true,"e7ce934189578649a1fcaa10445da0854f3aa1e8":true,"e84d0abcbb8ec6c94b26bef23a1796d107024e19":true,"e8bce90225d1e18beb19c2de5dc0df1ca13967da":true,"e8cab629d0398cb4f2a10d6ff40a8259517912a3":true,"e90325ea127573230ca37d05598f85cdffe42ef6":true,"e9220fa6a4aa8be56bc780cd67510572dc355784":true,"e9329c6a2172c5f532239ae7491038d204bac081":true,"e9361bc0b7a5185b995d3d5c212ac4a7624f9e0a":true,"e9777d26cc3058ca8ae025db1418a4115183856c":true,"e9c242d2403e2a0f50a226de77da8d995f58bb26":true,"ea7ee882a5051dd2eb79fcd1a4418fabaa87359d":true,"eabc8de0d6e37f4161bfe1a590663aa19ebe78b7":true,"eb14c6409a11b5a52034cc730ecbf06e78ea1540":true,"eb71856fe0b15ace493d08ceaf9f9c13a273cba2":true,"eb905b29dec25c36681b07b22875b8a3f414d59f":true,"ec3d6318b2563b0ef62020159eef7f455c879ef8":true,"ece0aef4bb3f0516c7ed1d0b2801eda32c04efa3":true,"ed82e79a617a1d49cd77b48ec8878c1c44491332":true,"ed86895c65b4e9cfd9cab726d3ab0e266045e428":true,"ed996cdcc31725ebd5f32df846e5fc845b70ddea":true,"efc00a1a36cae2f2878360cbeed4136d17a0ad64":true,"f01be553a960a5c4f9778306d4d60b9b1549cbc6":true,"f08970a4784ccf9785e692bb19cb08ac1f097d0b":true,"f0caed570addadc555cda4d213693ba00165edce":true,"f0df2a5ea73814b25d75b9497fc6117fe9254505":true,"f116c57780135247241fde6e47fbf9f4c83be168":true,"f1c2149d4a6910ccacdd6b4a47aff44979f4b5ba":true,"f22edac2ce510ff2dc803183db178f66949cf967":true,"f2fe9bb9023e72cef7be8253c1025952cc9fd7a9":true,"f4029bed02e3d034d5fe6926d899f3665afbec98":true,"f43c4e4e8056a6e11c6f5aa46072c1aa816dd376":true,"f4bdc702d67d47b49cd39d73088b01638377236d":true,"f51d48009ded8481d98e4d054ee596b888f1dcbe":true,"f5404b3e8ac621a2c61f27affa34f7e5b2a16009":true,"f55473d846f655e5855f61709ab6c07b745dba9a":true,"f58e14c7789a7af0f795bdcf9b3df1255bbdb19f":true,"f5bf879d2ce08f682d4001997511b014b24d48aa":true,"f664ac13f1ab8e915d190090364c7eb8dee3353f":true,"f73110004190eada5b5f39b5825cd7bab3b00d1a":true,"f7c0dd9ada66ea260968edbe05b02f5ffd4a66de":true,"f7f627000fc4450caac392a4459197485d3b344d":true,"f81aa15c8cd472fb8282f5777ac57001c8ab42cc":true,"f83af14a202b40a1612611bed4655d5b1c3e8332":true,"f85ad0a119f8566375d9055331f73139daaf33ba":true,"f88953e4275a68d32d674b880910d67982a2c9ef":true,"f8af00e80fecd6efab4226ad4e40ef8a78858c2a":true,"f8ddf371e793c606a30461f0bb4797bfc1b7548f":true,"f9c9efb8d821fd60f056316e64568ef0041d36aa":true,"f9e4c9d14dfdf389ee734f703150d8d1428def74":true,"f9ec4e54a5f23e62dca706d76c4193a10d4ed4b7":true,"fa05ee6b021ad9ac73ddf687aa723cdd458ef9b9":true,"fac297940cbb8bbb3b2a410e4b8f1f3c99d71ad8":true,"fae3bcb189f8d1f742b1de886b27ee62b6f83b41":true,"fca5e9af280d1195bb4bb01565b9aa823f3b9769":true,"fed7dc0fc646b8b6a010c754172de432f9292cb8":true,"ffa71cfc740f635ff2a239a0e1d3f02f1c70b1a9":true},"geoId":"nyc","opty":{"features":{"people_team_enable_closed_deals_editor":false,"people_team_inline_editing":false,"people_team_closed_deal_caching":true,"people_team_legacy_geo_list":true,"people_team_new_geos_list":true,"clientx_agent_branding_profiles_breadcrumbs":true,"clientx_connection_management":true},"variables":{"people_team_closed_deal_caching":{"ttl_seconds":345600},"people_team_legacy_geo_list":{"geos":"aspen,atlanta,austin,boston,chicago,dallas,dc,denver,greenwich_ct,hamptons,hawaii,houston,jacksonville_fl,la,lake_tahoe,miami,naples,nashville,nyc,orlando,philadelphia,san_diego,santa_barbara_montecito,seattle,sf,westchester_ny,telluride"},"people_team_new_geos_list":{"geos":"charlotte,pittsburgh"}}},"recaptchaSiteKey":"6Ld-u_UUAAAAAPU09eEm6LksWjxz9ySwgzgA1PAc","sentryConfig":{"name":"agent-profiles","release":"agent-profiles-v1.102.0","environment":"production"},"sentryDSN":"https://0cbea915e73a4852947842c14f2f8b1c@o9986.ingest.sentry.io/5678579","user":null};
  })(this);
</script>
    <script>!function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(n="undefined"!=typeof globalThis?globalThis:n||self).renderNav=e()}(this,function(){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function n(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}function e(n,e){return n(e={exports:{}},e.exports),e.exports}var t=e(function(n,e){var t;t=function(){function n(){for(var n=0,e={};n<arguments.length;n++){var t=arguments[n];for(var o in t)e[o]=t[o]}return e}function e(n){return n.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function t(o){function r(){}function a(e,t,a){if("undefined"!=typeof document){"number"==typeof(a=n({path:"/"},r.defaults,a)).expires&&(a.expires=new Date(1*new Date+864e5*a.expires)),a.expires=a.expires?a.expires.toUTCString():"";try{var i=JSON.stringify(t);/^[\{\[]/.test(i)&&(t=i)}catch(n){}t=o.write?o.write(t,e):encodeURIComponent(String(t)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var c="";for(var s in a)a[s]&&(c+="; "+s,!0!==a[s]&&(c+="="+a[s].split(";")[0]));return document.cookie=e+"="+t+c}}function i(n,t){if("undefined"!=typeof document){for(var r={},a=document.cookie?document.cookie.split("; "):[],i=0;i<a.length;i++){var c=a[i].split("="),s=c.slice(1).join("=");t||'"'!==s.charAt(0)||(s=s.slice(1,-1));try{var u=e(c[0]);if(s=(o.read||o)(s,u)||e(s),t)try{s=JSON.parse(s)}catch(n){}if(r[u]=s,n===u)break}catch(n){}}return n?r[n]:r}}return r.set=a,r.get=function(n){return i(n,!1)},r.getJSON=function(n){return i(n,!0)},r.remove=function(e,t){a(e,"",n(t,{expires:-1}))},r.defaults={},r.withConverter=t,r}(function(){})},n.exports=t()}),o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(n){return typeof n}:function(n){return n&&"function"==typeof Symbol&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},r=function(n,e,t){return e in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n},a=Object.assign||function(n){for(var e=1;e<arguments.length;e++){var t=arguments[e];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(n[o]=t[o])}return n},i=function(n){if(Array.isArray(n)){for(var e=0,t=Array(n.length);e<n.length;e++)t[e]=n[e];return t}return Array.from(n)},c=n(e(function(n,e){var t;"undefined"!=typeof self&&self,t=function(){return function(n){var e={};function t(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return n[o].call(r.exports,r,r.exports,t),r.l=!0,r.exports}return t.m=n,t.c=e,t.d=function(n,e,o){t.o(n,e)||Object.defineProperty(n,e,{configurable:!1,enumerable:!0,get:o})},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},t.p="",t(t.s=6)}([function(n,e){},function(n,e,t){var o=Array.prototype,r=Object.prototype,a={"&":"&amp;",'"':"&quot;","'":"&#39;","<":"&lt;",">":"&gt;"},i=/[&"'<>]/g;function c(n,e){return r.hasOwnProperty.call(n,e)}function s(n){return a[n]}function u(n,e,t){var o,r,a;if(n instanceof Error&&(n=(r=n).name+": "+r.message),Object.setPrototypeOf?(o=new Error(n),Object.setPrototypeOf(o,u.prototype)):(o=this,Object.defineProperty(o,"message",{enumerable:!1,writable:!0,value:n})),Object.defineProperty(o,"name",{value:"Template render error"}),Error.captureStackTrace&&Error.captureStackTrace(o,this.constructor),r){var i=Object.getOwnPropertyDescriptor(r,"stack");(a=i&&(i.get||function(){return i.value}))||(a=function(){return r.stack})}else{var c=new Error(n).stack;a=function(){return c}}return Object.defineProperty(o,"stack",{get:function(){return a.call(o)}}),Object.defineProperty(o,"cause",{value:r}),o.lineno=e,o.colno=t,o.firstUpdate=!0,o.Update=function(n){var e="("+(n||"unknown path")+")";return this.firstUpdate&&(this.lineno&&this.colno?e+=" [Line "+this.lineno+", Column "+this.colno+"]":this.lineno&&(e+=" [Line "+this.lineno+"]")),e+="\n ",this.firstUpdate&&(e+=" "),this.message=e+(this.message||""),this.firstUpdate=!1,this},o}function l(n){return"[object Function]"===r.toString.call(n)}function p(n){return"[object Array]"===r.toString.call(n)}function d(n){return"[object String]"===r.toString.call(n)}function v(n){return"[object Object]"===r.toString.call(n)}function f(n){var e,t=(e=n)?"string"==typeof e?e.split("."):[e]:[];return function(n){for(var e=n,o=0;o<t.length;o++){var r=t[o];if(!c(e,r))return;e=e[r]}return e}}function h(n){return Array.prototype.slice.call(n)}function g(n,e,t){return Array.prototype.indexOf.call(n||[],e,t)}function m(n){var e=[];for(var t in n)c(n,t)&&e.push(t);return e}(e=n.exports={}).hasOwnProp=c,e._prettifyError=function(n,t,o){if(o.Update||(o=new e.TemplateError(o)),o.Update(n),!t){var r=o;(o=new Error(r.message)).name=r.name}return o},Object.setPrototypeOf?Object.setPrototypeOf(u.prototype,Error.prototype):u.prototype=Object.create(Error.prototype,{constructor:{value:u}}),e.TemplateError=u,e.escape=function(n){return n.replace(i,s)},e.isFunction=l,e.isArray=p,e.isString=d,e.isObject=v,e.getAttrGetter=f,e.groupBy=function(n,e,t){for(var o={},r=l(e)?e:f(e),a=0;a<n.length;a++){var i=n[a],c=r(i,a);if(void 0===c&&!0===t)throw new TypeError('groupby: attribute "'+e+'" resolved to undefined');(o[c]||(o[c]=[])).push(i)}return o},e.toArray=h,e.without=function(n){var e=[];if(!n)return e;for(var t=n.length,o=h(arguments).slice(1),r=-1;++r<t;)-1===g(o,n[r])&&e.push(n[r]);return e},e.repeat=function(n,e){for(var t="",o=0;o<e;o++)t+=n;return t},e.each=function(n,e,t){if(null!=n)if(o.forEach&&n.forEach===o.forEach)n.forEach(e,t);else if(n.length===+n.length)for(var r=0,a=n.length;r<a;r++)e.call(t,n[r],r,n)},e.map=function(n,e){var t=[];if(null==n)return t;if(o.map&&n.map===o.map)return n.map(e);for(var r=0;r<n.length;r++)t[t.length]=e(n[r],r);return n.length===+n.length&&(t.length=n.length),t},e.asyncIter=function(n,e,t){var o=-1;!function r(){++o<n.length?e(n[o],o,r,t):t()}()},e.asyncFor=function(n,e,t){var o=m(n||{}),r=o.length,a=-1;!function i(){var c=o[++a];a<r?e(c,n[c],a,r,i):t()}()},e.indexOf=g,e.keys=m,e._entries=function(n){return m(n).map(function(e){return[e,n[e]]})},e._values=function(n){return m(n).map(function(e){return n[e]})},e._assign=e.extend=function(n,e){return n=n||{},m(e).forEach(function(t){n[t]=e[t]}),n},e.inOperator=function(n,e){if(p(e)||d(e))return-1!==e.indexOf(n);if(v(e))return n in e;throw new Error('Cannot use "in" operator to search for "'+n+'" in unexpected types.')}},function(n,e,t){var r=t(1),a=Array.from,i="function"==typeof Symbol&&Symbol.iterator&&"function"==typeof a,c=function(){function n(n,e){this.variables=Object.create(null),this.parent=n,this.topLevel=!1,this.isolateWrites=e}var e=n.prototype;return e.set=function(n,e,t){var o=n.split("."),r=this.variables,a=this;if(t&&(a=this.resolve(o[0],!0)))a.set(n,e);else{for(var i=0;i<o.length-1;i++){var c=o[i];r[c]||(r[c]={}),r=r[c]}r[o[o.length-1]]=e}},e.get=function(n){var e=this.variables[n];return void 0!==e?e:null},e.lookup=function(n){var e=this.parent,t=this.variables[n];return void 0!==t?t:e&&e.lookup(n)},e.resolve=function(n,e){var t=e&&this.isolateWrites?void 0:this.parent;return void 0!==this.variables[n]?this:t&&t.resolve(n)},e.push=function(e){return new n(this,e)},e.pop=function(){return this.parent},n}();function s(n){return n&&Object.prototype.hasOwnProperty.call(n,"__keywords")}function u(n){var e=n.length;return 0===e?0:s(n[e-1])?e-1:e}function l(n){if("string"!=typeof n)return n;this.val=n,this.length=n.length}l.prototype=Object.create(String.prototype,{length:{writable:!0,configurable:!0,value:0}}),l.prototype.valueOf=function(){return this.val},l.prototype.toString=function(){return this.val},n.exports={Frame:c,makeMacro:function(n,e,t){return function(){for(var o=arguments.length,r=new Array(o),a=0;a<o;a++)r[a]=arguments[a];var i,c=u(r),l=function(n){var e=n.length;if(e){var t=n[e-1];if(s(t))return t}return{}}(r);if(c>n.length)i=r.slice(0,n.length),r.slice(i.length,c).forEach(function(n,t){t<e.length&&(l[e[t]]=n)}),i.push(l);else if(c<n.length){i=r.slice(0,c);for(var p=c;p<n.length;p++){var d=n[p];i.push(l[d]),delete l[d]}i.push(l)}else i=r;return t.apply(this,i)}},makeKeywordArgs:function(n){return n.__keywords=!0,n},numArgs:u,suppressValue:function(n,e){return n=null!=n?n:"",!e||n instanceof l||(n=r.escape(n.toString())),n},ensureDefined:function(n,e,t){if(null==n)throw new r.TemplateError("attempted to output null or undefined value",e+1,t+1);return n},memberLookup:function(n,e){if(null!=n)return"function"==typeof n[e]?function(){for(var t=arguments.length,o=new Array(t),r=0;r<t;r++)o[r]=arguments[r];return n[e].apply(n,o)}:n[e]},contextOrFrameLookup:function(n,e,t){var o=e.lookup(t);return void 0!==o?o:n.lookup(t)},callWrap:function(n,e,t,o){if(!n)throw new Error("Unable to call `"+e+"`, which is undefined or falsey");if("function"!=typeof n)throw new Error("Unable to call `"+e+"`, which is not a function");return n.apply(t,o)},handleError:function(n,e,t){return n.lineno?n:new r.TemplateError(n,e,t)},isArray:r.isArray,keys:r.keys,SafeString:l,copySafeness:function(n,e){return n instanceof l?new l(e):e.toString()},markSafe:function(n){var e=void 0===n?"undefined":o(n);return"string"===e?new l(n):"function"!==e?n:function(e){var t=n.apply(this,arguments);return"string"==typeof t?new l(t):t}},asyncEach:function(n,e,t,o){if(r.isArray(n)){var a=n.length;r.asyncIter(n,function(n,o,r){switch(e){case 1:t(n,o,a,r);break;case 2:t(n[0],n[1],o,a,r);break;case 3:t(n[0],n[1],n[2],o,a,r);break;default:n.push(o,a,r),t.apply(this,n)}},o)}else r.asyncFor(n,function(n,e,o,r,a){t(n,e,o,r,a)},o)},asyncAll:function(n,e,t,o){var a,i,c=0;function s(n,e){c++,i[n]=e,c===a&&o(null,i.join(""))}if(r.isArray(n))if(a=n.length,i=new Array(a),0===a)o(null,"");else for(var u=0;u<n.length;u++){var l=n[u];switch(e){case 1:t(l,u,a,s);break;case 2:t(l[0],l[1],u,a,s);break;case 3:t(l[0],l[1],l[2],u,a,s);break;default:l.push(u,a,s),t.apply(this,l)}}else{var p=r.keys(n||{});if(a=p.length,i=new Array(a),0===a)o(null,"");else for(var d=0;d<p.length;d++){var v=p[d];t(v,n[v],d,a,s)}}},inOperator:r.inOperator,fromIterator:function(n){return"object"!==(void 0===n?"undefined":o(n))||null===n||r.isArray(n)?n:i&&Symbol.iterator in n?a(n):n}}},function(n,e,t){function o(n,e){return(o=Object.setPrototypeOf||function(n,e){return n.__proto__=e,n})(n,e)}var r=function(n){var e,t;function r(e){var t;return(t=n.call(this)||this).precompiled=e||{},t}return t=n,(e=r).prototype=Object.create(t.prototype),e.prototype.constructor=e,o(e,t),r.prototype.getSource=function(n){return this.precompiled[n]?{src:{type:"code",obj:this.precompiled[n]},path:n}:null},r}(t(4));n.exports={PrecompiledLoader:r}},function(n,e,t){function o(n,e){return(o=Object.setPrototypeOf||function(n,e){return n.__proto__=e,n})(n,e)}var r=t(0),a=t(5).EmitterObj;n.exports=function(n){var e,t;function a(){return n.apply(this,arguments)||this}t=n,(e=a).prototype=Object.create(t.prototype),e.prototype.constructor=e,o(e,t);var i=a.prototype;return i.resolve=function(n,e){return r.resolve(r.dirname(n),e)},i.isRelative=function(n){return 0===n.indexOf("./")||0===n.indexOf("../")},a}(a)},function(n,e,t){function r(n,e){for(var t=0;t<e.length;t++){var o=e[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(n,o.key,o)}}function a(n,e,t){return e&&r(n.prototype,e),t&&r(n,t),n}function i(n,e){n.prototype=Object.create(e.prototype),n.prototype.constructor=n,c(n,e)}function c(n,e){return(c=Object.setPrototypeOf||function(n,e){return n.__proto__=e,n})(n,e)}var s=t(13),u=t(1);function l(n,e,t){t=t||{},u.keys(t).forEach(function(e){var o,r;t[e]=(o=n.prototype[e],r=t[e],"function"!=typeof o||"function"!=typeof r?r:function(){var n=this.parent;this.parent=o;var e=r.apply(this,arguments);return this.parent=n,e})});var o=function(n){function t(){return n.apply(this,arguments)||this}return i(t,n),a(t,[{key:"typename",get:function(){return e}}]),t}(n);return u._assign(o.prototype,t),o}var p=function(){function n(){this.init.apply(this,arguments)}return n.prototype.init=function(){},n.extend=function(n,e){return"object"===(void 0===n?"undefined":o(n))&&(e=n,n="anonymous"),l(this,n,e)},a(n,[{key:"typename",get:function(){return this.constructor.name}}]),n}(),d=function(n){function e(){var e,t;return(e=t=n.call(this)||this).init.apply(e,arguments),t}return i(e,n),e.prototype.init=function(){},e.extend=function(n,e){return"object"===(void 0===n?"undefined":o(n))&&(e=n,n="anonymous"),l(this,n,e)},a(e,[{key:"typename",get:function(){return this.constructor.name}}]),e}(s);n.exports={Obj:p,EmitterObj:d}},function(n,e,t){var o,r=t(1),a=t(7),i=a.Environment,c=a.Template,s=t(4),u=t(3),l=t(0),p=t(0),d=t(0),v=t(0),f=t(2),h=t(0),g=t(17);function m(n,e){var t;return e=e||{},r.isObject(n)&&(e=n,n=null),u.FileSystemLoader?t=new u.FileSystemLoader(n,{watch:e.watch,noCache:e.noCache}):u.WebLoader&&(t=new u.WebLoader(n,{useCache:e.web&&e.web.useCache,async:e.web&&e.web.async})),o=new i(t,e),e&&e.express&&o.express(e.express),o}n.exports={Environment:i,Template:c,Loader:s,FileSystemLoader:u.FileSystemLoader,NodeResolveLoader:u.NodeResolveLoader,PrecompiledLoader:u.PrecompiledLoader,WebLoader:u.WebLoader,compiler:p,parser:d,lexer:v,runtime:f,lib:r,nodes:h,installJinjaCompat:g,configure:m,reset:function(){o=void 0},compile:function(n,e,t,r){return o||m(),new c(n,e,t,r)},render:function(n,e,t){return o||m(),o.render(n,e,t)},renderString:function(n,e,t){return o||m(),o.renderString(n,e,t)},precompile:l?l.precompile:void 0,precompileString:l?l.precompileString:void 0}},function(n,e,t){function o(n,e){n.prototype=Object.create(e.prototype),n.prototype.constructor=n,r(n,e)}function r(n,e){return(r=Object.setPrototypeOf||function(n,e){return n.__proto__=e,n})(n,e)}var a=t(8),i=t(11),c=t(1),s=t(0),u=t(12),l=t(3),p=l.FileSystemLoader,d=l.WebLoader,v=l.PrecompiledLoader,f=t(14),h=t(15),g=t(5),m=g.Obj,N=g.EmitterObj,b=t(2),E=b.handleError,x=b.Frame,y=t(16);function A(n,e,t){a(function(){n(e,t)})}var _={type:"code",obj:{root:function(n,e,t,o,r){try{r(null,"")}catch(n){r(E(n,null,null))}}}},O=function(n){function e(){return n.apply(this,arguments)||this}o(e,n);var t=e.prototype;return t.init=function(n,e){var t=this;e=this.opts=e||{},this.opts.dev=!!e.dev,this.opts.autoescape=null==e.autoescape||e.autoescape,this.opts.throwOnUndefined=!!e.throwOnUndefined,this.opts.trimBlocks=!!e.trimBlocks,this.opts.lstripBlocks=!!e.lstripBlocks,this.loaders=[],n?this.loaders=c.isArray(n)?n:[n]:p?this.loaders=[new p("views")]:d&&(this.loaders=[new d("/views")]),"undefined"!=typeof window&&window.nunjucksPrecompiled&&this.loaders.unshift(new v(window.nunjucksPrecompiled)),this._initLoaders(),this.globals=h(),this.filters={},this.tests={},this.asyncFilters=[],this.extensions={},this.extensionsList=[],c._entries(u).forEach(function(n){var e=n[0],o=n[1];return t.addFilter(e,o)}),c._entries(f).forEach(function(n){var e=n[0],o=n[1];return t.addTest(e,o)})},t._initLoaders=function(){var n=this;this.loaders.forEach(function(e){e.cache={},"function"==typeof e.on&&(e.on("update",function(t,o){e.cache[t]=null,n.emit("update",t,o,e)}),e.on("load",function(t,o){n.emit("load",t,o,e)}))})},t.invalidateCache=function(){this.loaders.forEach(function(n){n.cache={}})},t.addExtension=function(n,e){return e.__name=n,this.extensions[n]=e,this.extensionsList.push(e),this},t.removeExtension=function(n){var e=this.getExtension(n);e&&(this.extensionsList=c.without(this.extensionsList,e),delete this.extensions[n])},t.getExtension=function(n){return this.extensions[n]},t.hasExtension=function(n){return!!this.extensions[n]},t.addGlobal=function(n,e){return this.globals[n]=e,this},t.getGlobal=function(n){if(void 0===this.globals[n])throw new Error("global not found: "+n);return this.globals[n]},t.addFilter=function(n,e,t){var o=e;return t&&this.asyncFilters.push(n),this.filters[n]=o,this},t.getFilter=function(n){if(!this.filters[n])throw new Error("filter not found: "+n);return this.filters[n]},t.addTest=function(n,e){return this.tests[n]=e,this},t.getTest=function(n){if(!this.tests[n])throw new Error("test not found: "+n);return this.tests[n]},t.resolveTemplate=function(n,e,t){return!(!n.isRelative||!e)&&n.isRelative(t)&&n.resolve?n.resolve(e,t):t},t.getTemplate=function(n,e,t,o,r){var a,i=this,s=this,u=null;if(n&&n.raw&&(n=n.raw),c.isFunction(t)&&(r=t,t=null,e=e||!1),c.isFunction(e)&&(r=e,e=!1),n instanceof w)u=n;else{if("string"!=typeof n)throw new Error("template names must be a string: "+n);for(var l=0;l<this.loaders.length;l++){var p=this.loaders[l];if(u=p.cache[this.resolveTemplate(p,t,n)])break}}if(u)return e&&u.compile(),r?void r(null,u):u;return c.asyncIter(this.loaders,function(e,o,r,a){function i(n,t){n?a(n):t?(t.loader=e,a(null,t)):r()}n=s.resolveTemplate(e,t,n),e.async?e.getSource(n,i):i(null,e.getSource(n))},function(t,c){if(c||t||o||(t=new Error("template not found: "+n)),t){if(r)return void r(t);throw t}var s;c?(s=new w(c.src,i,c.path,e),c.noCache||(c.loader.cache[n]=s)):s=new w(_,i,"",e),r?r(null,s):a=s}),a},t.express=function(n){return y(this,n)},t.render=function(n,e,t){c.isFunction(e)&&(t=e,e=null);var o=null;return this.getTemplate(n,function(n,r){if(n&&t)A(t,n);else{if(n)throw n;o=r.render(e,t)}}),o},t.renderString=function(n,e,t,o){return c.isFunction(t)&&(o=t,t={}),new w(n,this,(t=t||{}).path).render(e,o)},t.waterfall=function(n,e,t){return i(n,e,t)},e}(N),L=function(n){function e(){return n.apply(this,arguments)||this}o(e,n);var t=e.prototype;return t.init=function(n,e,t){var o=this;this.env=t||new O,this.ctx=c.extend({},n),this.blocks={},this.exported=[],c.keys(e).forEach(function(n){o.addBlock(n,e[n])})},t.lookup=function(n){return n in this.env.globals&&!(n in this.ctx)?this.env.globals[n]:this.ctx[n]},t.setVariable=function(n,e){this.ctx[n]=e},t.getVariables=function(){return this.ctx},t.addBlock=function(n,e){return this.blocks[n]=this.blocks[n]||[],this.blocks[n].push(e),this},t.getBlock=function(n){if(!this.blocks[n])throw new Error('unknown block "'+n+'"');return this.blocks[n][0]},t.getSuper=function(n,e,t,o,r,a){var i=c.indexOf(this.blocks[e]||[],t),s=this.blocks[e][i+1];if(-1===i||!s)throw new Error('no super block available for "'+e+'"');s(n,this,o,r,a)},t.addExport=function(n){this.exported.push(n)},t.getExported=function(){var n=this,e={};return this.exported.forEach(function(t){e[t]=n.ctx[t]}),e},e}(m),w=function(n){function e(){return n.apply(this,arguments)||this}o(e,n);var t=e.prototype;return t.init=function(n,e,t,o){if(this.env=e||new O,c.isObject(n))switch(n.type){case"code":this.tmplProps=n.obj;break;case"string":this.tmplStr=n.obj;break;default:throw new Error("Unexpected template object type "+n.type+"; expected 'code', or 'string'")}else{if(!c.isString(n))throw new Error("src must be a string or an object describing the source");this.tmplStr=n}if(this.path=t,o)try{this._compile()}catch(n){throw c._prettifyError(this.path,this.env.opts.dev,n)}else this.compiled=!1},t.render=function(n,e,t){var o=this;"function"==typeof n?(t=n,n={}):"function"==typeof e&&(t=e,e=null);var r=!e;try{this.compile()}catch(n){var a=c._prettifyError(this.path,this.env.opts.dev,n);if(t)return A(t,a);throw a}var i=new L(n||{},this.blocks,this.env),s=e?e.push(!0):new x;s.topLevel=!0;var u=null,l=!1;return this.rootRenderFunc(this.env,i,s,b,function(n,e){if(!l||!t||void 0===e)if(n&&(n=c._prettifyError(o.path,o.env.opts.dev,n),l=!0),t)r?A(t,n,e):t(n,e);else{if(n)throw n;u=e}}),u},t.getExported=function(n,e,t){"function"==typeof n&&(t=n,n={}),"function"==typeof e&&(t=e,e=null);try{this.compile()}catch(n){if(t)return t(n);throw n}var o=e?e.push():new x;o.topLevel=!0;var r=new L(n||{},this.blocks,this.env);this.rootRenderFunc(this.env,r,o,b,function(n){n?t(n,null):t(null,r.getExported())})},t.compile=function(){this.compiled||this._compile()},t._compile=function(){var n;if(this.tmplProps)n=this.tmplProps;else{var e=s.compile(this.tmplStr,this.env.asyncFilters,this.env.extensionsList,this.path,this.env.opts);n=new Function(e)()}this.blocks=this._getBlocks(n),this.rootRenderFunc=n.root,this.compiled=!0},t._getBlocks=function(n){var e={};return c.keys(n).forEach(function(t){"b_"===t.slice(0,2)&&(e[t.slice(2)]=n[t])}),e},e}(m);n.exports={Environment:O,Template:w}},function(n,e,t){var o=t(9),r=[],a=[],i=o.makeRequestCallFromTimer(function(){if(a.length)throw a.shift()});function c(n){var e;(e=r.length?r.pop():new s).task=n,o(e)}function s(){this.task=null}n.exports=c,s.prototype.call=function(){try{this.task.call()}catch(n){c.onerror?c.onerror(n):(a.push(n),i())}finally{this.task=null,r[r.length]=this}}},function(n,e,t){(function(e){function t(n){r.length||o(),r[r.length]=n}n.exports=t;var o,r=[],a=0,i=1024;function c(){for(;a<r.length;){var n=a;if(a+=1,r[n].call(),a>i){for(var e=0,t=r.length-a;e<t;e++)r[e]=r[e+a];r.length-=a,a=0}}r.length=0,a=0}var s,u,l,p=void 0!==e?e:self,d=p.MutationObserver||p.WebKitMutationObserver;function v(n){return function(){var e=setTimeout(o,0),t=setInterval(o,50);function o(){clearTimeout(e),clearInterval(t),n()}}}"function"==typeof d?(s=1,u=new d(c),l=document.createTextNode(""),u.observe(l,{characterData:!0}),o=function(){s=-s,l.data=s}):o=v(c),t.requestFlush=o,t.makeRequestCallFromTimer=v}).call(e,t(10))},function(n,e){var t;t=function(){return this}();try{t=t||Function("return this")()||(0,eval)("this")}catch(n){"object"===("undefined"==typeof window?"undefined":o(window))&&(t=window)}n.exports=t},function(n,e,t){var o,r,a,i,c;r=function(){var n=Array.prototype.slice.call(arguments);"function"==typeof n[0]&&n[0].apply(null,n.splice(1))},a=function(n){"function"==typeof setImmediate?setImmediate(n):"undefined"!=typeof process&&process.nextTick?process.nextTick(n):setTimeout(n,0)},i=Array.isArray||function(n){return"[object Array]"===Object.prototype.toString.call(n)},c=function(n,e,t){var o=t?a:r;if(e=e||function(){},!i(n)){var c=new Error("First argument to waterfall must be an array of functions");return e(c)}if(!n.length)return e();!function n(t){return function(r){if(r)e.apply(null,arguments),e=function(){};else{var a=Array.prototype.slice.call(arguments,1),i=t.next();i?a.push(n(i)):a.push(e),o(function(){t.apply(null,a)})}}}(function(n){return function e(t){var o=function e(){return n.length&&n[t].apply(null,arguments),e.next()};return o.next=function(){return t<n.length-1?e(t+1):null},o}(0)}(n))()},void 0===(o=function(){return c}.apply(e,[]))||(n.exports=o)},function(n,e,t){var o=t(1),r=t(2);function a(n,e){return null==n||!1===n?e:n}function i(n){return n!=n}function c(n){var e=(n=a(n,"")).toLowerCase();return r.copySafeness(n,e.charAt(0).toUpperCase()+e.slice(1))}function s(n){if(o.isString(n))return n.split("");if(o.isObject(n))return o._entries(n||{}).map(function(n){return{key:n[0],value:n[1]}});if(o.isArray(n))return n;throw new o.TemplateError("list filter: type not iterable")}function u(n){return function(e,t,r){void 0===t&&(t="truthy");var a=this,i=a.env.getTest(t);return o.toArray(e).filter(function(e){return i.call(a,e,r)===n})}}function l(n){return r.copySafeness(n,n.replace(/^\s*|\s*$/g,""))}(e=n.exports={}).abs=Math.abs,e.batch=function(n,e,t){var o,r=[],a=[];for(o=0;o<n.length;o++)o%e==0&&a.length&&(r.push(a),a=[]),a.push(n[o]);if(a.length){if(t)for(o=a.length;o<e;o++)a.push(t);r.push(a)}return r},e.capitalize=c,e.center=function(n,e){if(e=e||80,(n=a(n,"")).length>=e)return n;var t=e-n.length,i=o.repeat(" ",t/2-t%2),c=o.repeat(" ",t/2);return r.copySafeness(n,i+n+c)},e.default=function(n,e,t){return t?n||e:void 0!==n?n:e},e.dictsort=function(n,e,t){if(!o.isObject(n))throw new o.TemplateError("dictsort filter: val must be an object");var r,a=[];for(var i in n)a.push([i,n[i]]);if(void 0===t||"key"===t)r=0;else{if("value"!==t)throw new o.TemplateError("dictsort filter: You can only sort by either key or value");r=1}return a.sort(function(n,t){var a=n[r],i=t[r];return e||(o.isString(a)&&(a=a.toUpperCase()),o.isString(i)&&(i=i.toUpperCase())),a>i?1:a===i?0:-1}),a},e.dump=function(n,e){return JSON.stringify(n,null,e)},e.escape=function(n){return n instanceof r.SafeString?n:(n=null==n?"":n,r.markSafe(o.escape(n.toString())))},e.safe=function(n){return n instanceof r.SafeString?n:(n=null==n?"":n,r.markSafe(n.toString()))},e.first=function(n){return n[0]},e.forceescape=function(n){return n=null==n?"":n,r.markSafe(o.escape(n.toString()))},e.groupby=function(n,e){return o.groupBy(n,e,this.env.opts.throwOnUndefined)},e.indent=function(n,e,t){if(""===(n=a(n,"")))return"";e=e||4;var i=n.split("\n"),c=o.repeat(" ",e),s=i.map(function(n,e){return 0!==e||t?""+c+n:n}).join("\n");return r.copySafeness(n,s)},e.join=function(n,e,t){return e=e||"",t&&(n=o.map(n,function(n){return n[t]})),n.join(e)},e.last=function(n){return n[n.length-1]},e.length=function(n){var e=a(n,"");return void 0!==e?"function"==typeof Map&&e instanceof Map||"function"==typeof Set&&e instanceof Set?e.size:!o.isObject(e)||e instanceof r.SafeString?e.length:o.keys(e).length:0},e.list=s,e.lower=function(n){return(n=a(n,"")).toLowerCase()},e.nl2br=function(n){return null==n?"":r.copySafeness(n,n.replace(/\r\n|\n/g,"<br />\n"))},e.random=function(n){return n[Math.floor(Math.random()*n.length)]},e.reject=u(!1),e.rejectattr=function(n,e){return n.filter(function(n){return!n[e]})},e.select=u(!0),e.selectattr=function(n,e){return n.filter(function(n){return!!n[e]})},e.replace=function(n,e,t,o){var a=n;if(e instanceof RegExp)return n.replace(e,t);void 0===o&&(o=-1);var i="";if("number"==typeof e)e=""+e;else if("string"!=typeof e)return n;if("number"==typeof n&&(n=""+n),"string"!=typeof n&&!(n instanceof r.SafeString))return n;if(""===e)return i=t+n.split("").join(t)+t,r.copySafeness(n,i);var c=n.indexOf(e);if(0===o||-1===c)return n;for(var s=0,u=0;c>-1&&(-1===o||u<o);)i+=n.substring(s,c)+t,s=c+e.length,u++,c=n.indexOf(e,s);return s<n.length&&(i+=n.substring(s)),r.copySafeness(a,i)},e.reverse=function(n){var e;return(e=o.isString(n)?s(n):o.map(n,function(n){return n})).reverse(),o.isString(n)?r.copySafeness(n,e.join("")):e},e.round=function(n,e,t){e=e||0;var o=Math.pow(10,e);return("ceil"===t?Math.ceil:"floor"===t?Math.floor:Math.round)(n*o)/o},e.slice=function(n,e,t){for(var o=Math.floor(n.length/e),r=n.length%e,a=[],i=0,c=0;c<e;c++){var s=i+c*o;c<r&&i++;var u=i+(c+1)*o,l=n.slice(s,u);t&&c>=r&&l.push(t),a.push(l)}return a},e.sum=function(n,e,t){return void 0===t&&(t=0),e&&(n=o.map(n,function(n){return n[e]})),t+n.reduce(function(n,e){return n+e},0)},e.sort=r.makeMacro(["value","reverse","case_sensitive","attribute"],[],function(n,e,t,r){var a=this,i=o.map(n,function(n){return n}),c=o.getAttrGetter(r);return i.sort(function(n,i){var s=r?c(n):n,u=r?c(i):i;if(a.env.opts.throwOnUndefined&&r&&(void 0===s||void 0===u))throw new TypeError('sort: attribute "'+r+'" resolved to undefined');return!t&&o.isString(s)&&o.isString(u)&&(s=s.toLowerCase(),u=u.toLowerCase()),s<u?e?1:-1:s>u?e?-1:1:0}),i}),e.string=function(n){return r.copySafeness(n,n)},e.striptags=function(n,e){var t=l((n=a(n,"")).replace(/<\/?([a-z][a-z0-9]*)\b[^>]*>|<!--[\s\S]*?-->/gi,"")),o="";return o=e?t.replace(/^ +| +$/gm,"").replace(/ +/g," ").replace(/(\r\n)/g,"\n").replace(/\n\n\n+/g,"\n\n"):t.replace(/\s+/gi," "),r.copySafeness(n,o)},e.title=function(n){var e=(n=a(n,"")).split(" ").map(function(n){return c(n)});return r.copySafeness(n,e.join(" "))},e.trim=l,e.truncate=function(n,e,t,o){var i=n;if(e=e||255,(n=a(n,"")).length<=e)return n;if(t)n=n.substring(0,e);else{var c=n.lastIndexOf(" ",e);-1===c&&(c=e),n=n.substring(0,c)}return n+=null!=o?o:"...",r.copySafeness(i,n)},e.upper=function(n){return(n=a(n,"")).toUpperCase()},e.urlencode=function(n){var e=encodeURIComponent;return o.isString(n)?e(n):(o.isArray(n)?n:o._entries(n)).map(function(n){var t=n[0],o=n[1];return e(t)+"="+e(o)}).join("&")};var p=/^(?:\(|<|&lt;)?(.*?)(?:\.|,|\)|\n|&gt;)?$/,d=/^[\w.!#$%&'*+\-\/=?\^`{|}~]+@[a-z\d\-]+(\.[a-z\d\-]+)+$/i,v=/^https?:\/\/.*$/,f=/^www\./,h=/\.(?:org|net|com)(?:\:|\/|$)/;e.urlize=function(n,e,t){i(e)&&(e=1/0);var o=!0===t?' rel="nofollow"':"";return n.split(/(\s+)/).filter(function(n){return n&&n.length}).map(function(n){var t=n.match(p),r=t?t[1]:n,a=r.substr(0,e);return v.test(r)?'<a href="'+r+'"'+o+">"+a+"</a>":f.test(r)?'<a href="http://'+r+'"'+o+">"+a+"</a>":d.test(r)?'<a href="mailto:'+r+'">'+r+"</a>":h.test(r)?'<a href="http://'+r+'"'+o+">"+a+"</a>":n}).join("")},e.wordcount=function(n){var e=(n=a(n,""))?n.match(/\w+/g):null;return e?e.length:null},e.float=function(n,e){var t=parseFloat(n);return i(t)?e:t};var g=r.makeMacro(["value","default","base"],[],function(n,e,t){void 0===t&&(t=10);var o=parseInt(n,t);return i(o)?e:o});e.int=g,e.d=e.default,e.e=e.escape},function(n,e,t){var r,a="object"===("undefined"==typeof Reflect?"undefined":o(Reflect))?Reflect:null,i=a&&"function"==typeof a.apply?a.apply:function(n,e,t){return Function.prototype.apply.call(n,e,t)};r=a&&"function"==typeof a.ownKeys?a.ownKeys:Object.getOwnPropertySymbols?function(n){return Object.getOwnPropertyNames(n).concat(Object.getOwnPropertySymbols(n))}:function(n){return Object.getOwnPropertyNames(n)};var c=Number.isNaN||function(n){return n!=n};function s(){s.init.call(this)}n.exports=s,n.exports.once=function(n,e){return new Promise(function(t,o){function r(){void 0!==a&&n.removeListener("error",a),t([].slice.call(arguments))}var a;"error"!==e&&(a=function(t){n.removeListener(e,r),o(t)},n.once("error",a)),n.once(e,r)})},s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var u=10;function l(n){if("function"!=typeof n)throw new TypeError('The "listener" argument must be of type Function. Received type '+(void 0===n?"undefined":o(n)))}function p(n){return void 0===n._maxListeners?s.defaultMaxListeners:n._maxListeners}function d(n,e,t,o){var r,a,i,c;if(l(t),void 0===(a=n._events)?(a=n._events=Object.create(null),n._eventsCount=0):(void 0!==a.newListener&&(n.emit("newListener",e,t.listener?t.listener:t),a=n._events),i=a[e]),void 0===i)i=a[e]=t,++n._eventsCount;else if("function"==typeof i?i=a[e]=o?[t,i]:[i,t]:o?i.unshift(t):i.push(t),(r=p(n))>0&&i.length>r&&!i.warned){i.warned=!0;var s=new Error("Possible EventEmitter memory leak detected. "+i.length+" "+String(e)+" listeners added. Use emitter.setMaxListeners() to increase limit");s.name="MaxListenersExceededWarning",s.emitter=n,s.type=e,s.count=i.length,c=s,console&&console.warn&&console.warn(c)}return n}function v(n,e,t){var o={fired:!1,wrapFn:void 0,target:n,type:e,listener:t},r=function(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}.bind(o);return r.listener=t,o.wrapFn=r,r}function f(n,e,t){var o=n._events;if(void 0===o)return[];var r=o[e];return void 0===r?[]:"function"==typeof r?t?[r.listener||r]:[r]:t?function(n){for(var e=new Array(n.length),t=0;t<e.length;++t)e[t]=n[t].listener||n[t];return e}(r):g(r,r.length)}function h(n){var e=this._events;if(void 0!==e){var t=e[n];if("function"==typeof t)return 1;if(void 0!==t)return t.length}return 0}function g(n,e){for(var t=new Array(e),o=0;o<e;++o)t[o]=n[o];return t}Object.defineProperty(s,"defaultMaxListeners",{enumerable:!0,get:function(){return u},set:function(n){if("number"!=typeof n||n<0||c(n))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+n+".");u=n}}),s.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},s.prototype.setMaxListeners=function(n){if("number"!=typeof n||n<0||c(n))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+n+".");return this._maxListeners=n,this},s.prototype.getMaxListeners=function(){return p(this)},s.prototype.emit=function(n){for(var e=[],t=1;t<arguments.length;t++)e.push(arguments[t]);var o="error"===n,r=this._events;if(void 0!==r)o=o&&void 0===r.error;else if(!o)return!1;if(o){var a;if(e.length>0&&(a=e[0]),a instanceof Error)throw a;var c=new Error("Unhandled error."+(a?" ("+a.message+")":""));throw c.context=a,c}var s=r[n];if(void 0===s)return!1;if("function"==typeof s)i(s,this,e);else{var u=s.length,l=g(s,u);for(t=0;t<u;++t)i(l[t],this,e)}return!0},s.prototype.addListener=function(n,e){return d(this,n,e,!1)},s.prototype.on=s.prototype.addListener,s.prototype.prependListener=function(n,e){return d(this,n,e,!0)},s.prototype.once=function(n,e){return l(e),this.on(n,v(this,n,e)),this},s.prototype.prependOnceListener=function(n,e){return l(e),this.prependListener(n,v(this,n,e)),this},s.prototype.removeListener=function(n,e){var t,o,r,a,i;if(l(e),void 0===(o=this._events))return this;if(void 0===(t=o[n]))return this;if(t===e||t.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete o[n],o.removeListener&&this.emit("removeListener",n,t.listener||e));else if("function"!=typeof t){for(r=-1,a=t.length-1;a>=0;a--)if(t[a]===e||t[a].listener===e){i=t[a].listener,r=a;break}if(r<0)return this;0===r?t.shift():function(n,e){for(;e+1<n.length;e++)n[e]=n[e+1];n.pop()}(t,r),1===t.length&&(o[n]=t[0]),void 0!==o.removeListener&&this.emit("removeListener",n,i||e)}return this},s.prototype.off=s.prototype.removeListener,s.prototype.removeAllListeners=function(n){var e,t,o;if(void 0===(t=this._events))return this;if(void 0===t.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==t[n]&&(0==--this._eventsCount?this._events=Object.create(null):delete t[n]),this;if(0===arguments.length){var r,a=Object.keys(t);for(o=0;o<a.length;++o)"removeListener"!==(r=a[o])&&this.removeAllListeners(r);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(e=t[n]))this.removeListener(n,e);else if(void 0!==e)for(o=e.length-1;o>=0;o--)this.removeListener(n,e[o]);return this},s.prototype.listeners=function(n){return f(this,n,!0)},s.prototype.rawListeners=function(n){return f(this,n,!1)},s.listenerCount=function(n,e){return"function"==typeof n.listenerCount?n.listenerCount(e):h.call(n,e)},s.prototype.listenerCount=h,s.prototype.eventNames=function(){return this._eventsCount>0?r(this._events):[]}},function(n,e,t){var r=t(2).SafeString;e.callable=function(n){return"function"==typeof n},e.defined=function(n){return void 0!==n},e.divisibleby=function(n,e){return n%e==0},e.escaped=function(n){return n instanceof r},e.equalto=function(n,e){return n===e},e.eq=e.equalto,e.sameas=e.equalto,e.even=function(n){return n%2==0},e.falsy=function(n){return!n},e.ge=function(n,e){return n>=e},e.greaterthan=function(n,e){return n>e},e.gt=e.greaterthan,e.le=function(n,e){return n<=e},e.lessthan=function(n,e){return n<e},e.lt=e.lessthan,e.lower=function(n){return n.toLowerCase()===n},e.ne=function(n,e){return n!==e},e.null=function(n){return null===n},e.number=function(n){return"number"==typeof n},e.odd=function(n){return n%2==1},e.string=function(n){return"string"==typeof n},e.truthy=function(n){return!!n},e.undefined=function(n){return void 0===n},e.upper=function(n){return n.toUpperCase()===n},e.iterable=function(n){return"undefined"!=typeof Symbol?!!n[Symbol.iterator]:Array.isArray(n)||"string"==typeof n},e.mapping=function(n){var e=null!=n&&"object"===(void 0===n?"undefined":o(n))&&!Array.isArray(n);return Set?e&&!(n instanceof Set):e}},function(n,e,t){n.exports=function(){return{range:function(n,e,t){void 0===e?(e=n,n=0,t=1):t||(t=1);var o=[];if(t>0)for(var r=n;r<e;r+=t)o.push(r);else for(var a=n;a>e;a+=t)o.push(a);return o},cycler:function(){return n=Array.prototype.slice.call(arguments),e=-1,{current:null,reset:function(){e=-1,this.current=null},next:function(){return++e>=n.length&&(e=0),this.current=n[e],this.current}};var n,e},joiner:function(n){return function(n){n=n||",";var e=!0;return function(){var t=e?"":n;return e=!1,t}}(n)}}}},function(n,e,t){var o=t(0);n.exports=function(n,e){function t(n,e){if(this.name=n,this.path=n,this.defaultEngine=e.defaultEngine,this.ext=o.extname(n),!this.ext&&!this.defaultEngine)throw new Error("No default engine was specified and no extension was provided.");this.ext||(this.name+=this.ext=("."!==this.defaultEngine[0]?".":"")+this.defaultEngine)}return t.prototype.render=function(e,t){n.render(this.name,e,t)},e.set("view",t),e.set("nunjucksEnv",n),n}},function(n,e,t){n.exports=function(){var n=this.runtime,e=this.lib,t=this.compiler.Compiler,o=this.parser.Parser;this.nodes,this.lexer;var r,a,i=n.contextOrFrameLookup,c=n.memberLookup;function s(n,e){return Object.prototype.hasOwnProperty.call(n,e)}t&&(r=t.prototype.assertType),o&&(a=o.prototype.parseAggregate),n.contextOrFrameLookup=function(n,e,t){var o=i.apply(this,arguments);if(void 0!==o)return o;switch(t){case"True":return!0;case"False":return!1;case"None":return null;default:return}};var u={pop:function(n){if(void 0===n)return this.pop();if(n>=this.length||n<0)throw new Error("KeyError");return this.splice(n,1)},append:function(n){return this.push(n)},remove:function(n){for(var e=0;e<this.length;e++)if(this[e]===n)return this.splice(e,1);throw new Error("ValueError")},count:function(n){for(var e=0,t=0;t<this.length;t++)this[t]===n&&e++;return e},index:function(n){var e;if(-1===(e=this.indexOf(n)))throw new Error("ValueError");return e},find:function(n){return this.indexOf(n)},insert:function(n,e){return this.splice(n,0,e)}},l={items:function(){return e._entries(this)},values:function(){return e._values(this)},keys:function(){return e.keys(this)},get:function(n,e){var t=this[n];return void 0===t&&(t=e),t},has_key:function(n){return s(this,n)},pop:function(n,e){var t=this[n];if(void 0===t&&void 0!==e)t=e;else{if(void 0===t)throw new Error("KeyError");delete this[n]}return t},popitem:function(){var n=e.keys(this);if(!n.length)throw new Error("KeyError");var t=n[0],o=this[t];return delete this[t],[t,o]},setdefault:function(n,e){return void 0===e&&(e=null),n in this||(this[n]=e),this[n]},update:function(n){return e._assign(this,n),null}};return l.iteritems=l.items,l.itervalues=l.values,l.iterkeys=l.keys,n.memberLookup=function(t,o,r){return 4===arguments.length?function(e,t,o,r){e=e||[],null===t&&(t=r<0?e.length-1:0),null===o?o=r<0?-1:e.length:o<0&&(o+=e.length),t<0&&(t+=e.length);for(var a=[],i=t;!(i<0||i>e.length||r>0&&i>=o||r<0&&i<=o);i+=r)a.push(n.memberLookup(e,i));return a}.apply(this,arguments):(t=t||{},e.isArray(t)&&s(u,o)?u[o].bind(t):e.isObject(t)&&s(l,o)?l[o].bind(t):c.apply(this,arguments))},function(){n.contextOrFrameLookup=i,n.memberLookup=c,t&&(t.prototype.assertType=r),o&&(o.prototype.parseAggregate=a)}}}])},n.exports=t()})),s=Object.hasOwnProperty;function u(n){return n&&"object"===(void 0===n?"undefined":o(n))&&!Array.isArray(n)&&null!==n}function l(n,e,t,o){for(var r in n)u(n[r])?l(n[r],e):e.push(n[r])}function p(n,e,t,o){for(var r in n)u(n[r])?p(n[r],e,t+o+r,o):e.push(t+o+r)}function d(n,e,t,o){for(var r in n)if(u(n[r])){var a=t+o+r;d(n[r],e,a,o)}else e[t+o+r]=n[r];return e}function v(n,e){var t=e||".";if(!u(n))return null;var o={};for(var r in n)u(n[r])?d(n[r],o,r,t):o[r]=n[r];return o}function f(n,e){var t=e||".";if(!u(n))return null;var o={};for(var r in n)-1===r.indexOf(t)?o[r]=n[r]:g(o,r,n[r],!0,t);return o}function h(n,e,t){for(var o=e.split(t||"."),r=0,a=n,i=o.length;r<i;){var c=o[r++];if(!a||!s.call(a,c))return;a=a[c]}return a}function g(n,e,t,o,r){if(!u(n))return!1;for(var a=e.split(r||"."),i=0,c=a.length-1;i<c;){var l=a[i++];o&&!s.call(n,l)&&(n[l]={}),n=n[l]}return!!(u(n)||Array.isArray(n)&&!Number.isNaN(a[i]))&&(n[a[i]]=t,!0)}function m(n,e,t,o,r){var a=n.split("="),i=a[0],c=a[1],u=-1!==i.indexOf("!");u&&(i=i.replace("!","")),c?u?s.call(o,i)&&o[i].toString()!==c?t[r]=e:delete t[r]:s.call(o,i)&&o[i].toString()===c?t[r]=e:delete t[r]:s.call(o,i)?t[r]=e:delete t[r]}function N(n,e,t,o,r,a){var i=n(r,o,e,a);i?t[a]=!0===i?e:i:delete t[a]}function b(n,e,t,r,a,i,c){if(e.condition)switch(o(e.condition)){case"string":m(e.condition,t,r,a,c);break;case"function":N(e.condition,t,r,a,i,c)}else r[c]=t;e.transformer&&"function"==typeof e.transformer&&(n[c]=e.transformer)}var E={get:h,set:g,diff:function n(e,t){if(!u(e)||!u(t))return null;var o=null;for(var r in t){var a=e[r],i=t[r];if(a===i||u(a)||u(i)){if(u(a)&&u(i)){var c=n(a,i);c&&(o||(o={}),o[r]=c)}}else o||(o={}),o[r]=i}return o},keys:function(n,e){if(!u(n))return null;var t=[],o=e||".";for(var r in n)u(n[r])?p(n[r],t,r,o):t.push(r);return t},merge:function n(e,t){if(u(e)&&u(t))for(var o in t)if(u(t[o]))e[o]||(e[o]={}),n(e[o],t[o]);else{var r={};r[o]=t[o],Object.assign(e,r)}return e},values:function(n,e){if(!u(n))return null;var t=[];for(var o in n)u(n[o])?l(n[o],t):t.push(n[o]);return t},flatten:v,expand:f,collapse:v,isObject:u,unflatten:f,mapToProps:function(n,e,t,r){if(!u(n))return n;for(var a,i="string"==typeof t?t:r,c="boolean"!=typeof t||t,s=v(n,i),l=v(e,i),p={},d=!0;d;){for(a in s){var g=s[a];if(g instanceof Array)switch(o(g[0])){case"string":m(g[0],g[1],s,l,a);break;case"function":N(g[0],g[1],s,l,e,a);break;case"object":b(p,g[0],g[1],s,l,e,a)}}s=v(s,i),d=!1}for(a in s){var E=s[a],x=l[E];void 0===x&&(x=h(e,E,i)),p[a]&&(x=p[a](x,a,l)),c&&void 0!==x?s[a]=x:c?delete s[a]:s[a]=x}return f(s,i)}},x=e(function(n){var e=Object.prototype.hasOwnProperty,t="~";function o(){}function r(n,e,t){this.fn=n,this.context=e,this.once=t||!1}function a(n,e,o,a,i){if("function"!=typeof o)throw new TypeError("The listener must be a function");var c=new r(o,a||n,i),s=t?t+e:e;return n._events[s]?n._events[s].fn?n._events[s]=[n._events[s],c]:n._events[s].push(c):(n._events[s]=c,n._eventsCount++),n}function i(n,e){0==--n._eventsCount?n._events=new o:delete n._events[e]}function c(){this._events=new o,this._eventsCount=0}Object.create&&(o.prototype=Object.create(null),(new o).__proto__||(t=!1)),c.prototype.eventNames=function(){var n,o,r=[];if(0===this._eventsCount)return r;for(o in n=this._events)e.call(n,o)&&r.push(t?o.slice(1):o);return Object.getOwnPropertySymbols?r.concat(Object.getOwnPropertySymbols(n)):r},c.prototype.listeners=function(n){var e=t?t+n:n,o=this._events[e];if(!o)return[];if(o.fn)return[o.fn];for(var r=0,a=o.length,i=new Array(a);r<a;r++)i[r]=o[r].fn;return i},c.prototype.listenerCount=function(n){var e=t?t+n:n,o=this._events[e];return o?o.fn?1:o.length:0},c.prototype.emit=function(n,e,o,r,a,i){var c=t?t+n:n;if(!this._events[c])return!1;var s,u,l=this._events[c],p=arguments.length;if(l.fn){switch(l.once&&this.removeListener(n,l.fn,void 0,!0),p){case 1:return l.fn.call(l.context),!0;case 2:return l.fn.call(l.context,e),!0;case 3:return l.fn.call(l.context,e,o),!0;case 4:return l.fn.call(l.context,e,o,r),!0;case 5:return l.fn.call(l.context,e,o,r,a),!0;case 6:return l.fn.call(l.context,e,o,r,a,i),!0}for(u=1,s=new Array(p-1);u<p;u++)s[u-1]=arguments[u];l.fn.apply(l.context,s)}else{var d,v=l.length;for(u=0;u<v;u++)switch(l[u].once&&this.removeListener(n,l[u].fn,void 0,!0),p){case 1:l[u].fn.call(l[u].context);break;case 2:l[u].fn.call(l[u].context,e);break;case 3:l[u].fn.call(l[u].context,e,o);break;case 4:l[u].fn.call(l[u].context,e,o,r);break;default:if(!s)for(d=1,s=new Array(p-1);d<p;d++)s[d-1]=arguments[d];l[u].fn.apply(l[u].context,s)}}return!0},c.prototype.on=function(n,e,t){return a(this,n,e,t,!1)},c.prototype.once=function(n,e,t){return a(this,n,e,t,!0)},c.prototype.removeListener=function(n,e,o,r){var a=t?t+n:n;if(!this._events[a])return this;if(!e)return i(this,a),this;var c=this._events[a];if(c.fn)c.fn!==e||r&&!c.once||o&&c.context!==o||i(this,a);else{for(var s=0,u=[],l=c.length;s<l;s++)(c[s].fn!==e||r&&!c[s].once||o&&c[s].context!==o)&&u.push(c[s]);u.length?this._events[a]=1===u.length?u[0]:u:i(this,a)}return this},c.prototype.removeAllListeners=function(n){var e;return n?(e=t?t+n:n,this._events[e]&&i(this,e)):(this._events=new o,this._eventsCount=0),this},c.prototype.off=c.prototype.removeListener,c.prototype.addListener=c.prototype.on,c.prefixed=t,c.EventEmitter=c,n.exports=c}),y=function(n,e){return function(){for(var t=new Array(arguments.length),o=0;o<t.length;o++)t[o]=arguments[o];return n.apply(e,t)}},A=Object.prototype.toString;function _(n){return"[object Array]"===A.call(n)}function O(n){return void 0===n}function L(n){return null!==n&&"object"===(void 0===n?"undefined":o(n))}function w(n){if("[object Object]"!==A.call(n))return!1;var e=Object.getPrototypeOf(n);return null===e||e===Object.prototype}function T(n){return"[object Function]"===A.call(n)}function I(n,e){if(null!=n)if("object"!==(void 0===n?"undefined":o(n))&&(n=[n]),_(n))for(var t=0,r=n.length;t<r;t++)e.call(null,n[t],t,n);else for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&e.call(null,n[a],a,n)}var S={isArray:_,isArrayBuffer:function(n){return"[object ArrayBuffer]"===A.call(n)},isBuffer:function(n){return null!==n&&!O(n)&&null!==n.constructor&&!O(n.constructor)&&"function"==typeof n.constructor.isBuffer&&n.constructor.isBuffer(n)},isFormData:function(n){return"undefined"!=typeof FormData&&n instanceof FormData},isArrayBufferView:function(n){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(n):n&&n.buffer&&n.buffer instanceof ArrayBuffer},isString:function(n){return"string"==typeof n},isNumber:function(n){return"number"==typeof n},isObject:L,isPlainObject:w,isUndefined:O,isDate:function(n){return"[object Date]"===A.call(n)},isFile:function(n){return"[object File]"===A.call(n)},isBlob:function(n){return"[object Blob]"===A.call(n)},isFunction:T,isStream:function(n){return L(n)&&T(n.pipe)},isURLSearchParams:function(n){return"undefined"!=typeof URLSearchParams&&n instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:I,merge:function n(){var e={};function t(t,o){w(e[o])&&w(t)?e[o]=n(e[o],t):w(t)?e[o]=n({},t):_(t)?e[o]=t.slice():e[o]=t}for(var o=0,r=arguments.length;o<r;o++)I(arguments[o],t);return e},extend:function(n,e,t){return I(e,function(e,o){n[o]=t&&"function"==typeof e?y(e,t):e}),n},trim:function(n){return n.replace(/^\s*/,"").replace(/\s*$/,"")},stripBOM:function(n){return 65279===n.charCodeAt(0)&&(n=n.slice(1)),n}};function C(n){return encodeURIComponent(n).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var k=function(n,e,t){if(!e)return n;var o;if(t)o=t(e);else if(S.isURLSearchParams(e))o=e.toString();else{var r=[];S.forEach(e,function(n,e){null!=n&&(S.isArray(n)?e+="[]":n=[n],S.forEach(n,function(n){S.isDate(n)?n=n.toISOString():S.isObject(n)&&(n=JSON.stringify(n)),r.push(C(e)+"="+C(n))}))}),o=r.join("&")}if(o){var a=n.indexOf("#");-1!==a&&(n=n.slice(0,a)),n+=(-1===n.indexOf("?")?"?":"&")+o}return n};function R(){this.handlers=[]}R.prototype.use=function(n,e){return this.handlers.push({fulfilled:n,rejected:e}),this.handlers.length-1},R.prototype.eject=function(n){this.handlers[n]&&(this.handlers[n]=null)},R.prototype.forEach=function(n){S.forEach(this.handlers,function(e){null!==e&&n(e)})};var M=R,F=function(n,e,t){return S.forEach(t,function(t){n=t(n,e)}),n},P=function(n){return!(!n||!n.__CANCEL__)},D=function(n,e){S.forEach(n,function(t,o){o!==e&&o.toUpperCase()===e.toUpperCase()&&(n[e]=t,delete n[o])})},U=function(n,e,t,o,r){return function(n,e,t,o,r){return n.config=e,t&&(n.code=t),n.request=o,n.response=r,n.isAxiosError=!0,n.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},n}(new Error(n),e,t,o,r)},B=S.isStandardBrowserEnv()?{write:function(n,e,t,o,r,a){var i=[];i.push(n+"="+encodeURIComponent(e)),S.isNumber(t)&&i.push("expires="+new Date(t).toGMTString()),S.isString(o)&&i.push("path="+o),S.isString(r)&&i.push("domain="+r),!0===a&&i.push("secure"),document.cookie=i.join("; ")},read:function(n){var e=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}},j=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"],G=S.isStandardBrowserEnv()?function(){var n,e=/(msie|trident)/i.test(navigator.userAgent),t=document.createElement("a");function o(n){var o=n;return e&&(t.setAttribute("href",o),o=t.href),t.setAttribute("href",o),{href:t.href,protocol:t.protocol?t.protocol.replace(/:$/,""):"",host:t.host,search:t.search?t.search.replace(/^\?/,""):"",hash:t.hash?t.hash.replace(/^#/,""):"",hostname:t.hostname,port:t.port,pathname:"/"===t.pathname.charAt(0)?t.pathname:"/"+t.pathname}}return n=o(window.location.href),function(e){var t=S.isString(e)?o(e):e;return t.protocol===n.protocol&&t.host===n.host}}():function(){return!0},V=function(n){return new Promise(function(e,t){var o=n.data,r=n.headers;S.isFormData(o)&&delete r["Content-Type"];var a=new XMLHttpRequest;if(n.auth){var i=n.auth.username||"",c=n.auth.password?unescape(encodeURIComponent(n.auth.password)):"";r.Authorization="Basic "+btoa(i+":"+c)}var s,u,l=(s=n.baseURL,u=n.url,s&&!/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(u)?function(n,e){return e?n.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):n}(s,u):u);if(a.open(n.method.toUpperCase(),k(l,n.params,n.paramsSerializer),!0),a.timeout=n.timeout,a.onreadystatechange=function(){if(a&&4===a.readyState&&(0!==a.status||a.responseURL&&0===a.responseURL.indexOf("file:"))){var o,r,i,c,s,u="getAllResponseHeaders"in a?(o=a.getAllResponseHeaders(),s={},o?(S.forEach(o.split("\n"),function(n){if(c=n.indexOf(":"),r=S.trim(n.substr(0,c)).toLowerCase(),i=S.trim(n.substr(c+1)),r){if(s[r]&&j.indexOf(r)>=0)return;s[r]="set-cookie"===r?(s[r]?s[r]:[]).concat([i]):s[r]?s[r]+", "+i:i}}),s):s):null,l={data:n.responseType&&"text"!==n.responseType?a.response:a.responseText,status:a.status,statusText:a.statusText,headers:u,config:n,request:a};!function(n,e,t){var o=t.config.validateStatus;t.status&&o&&!o(t.status)?e(U("Request failed with status code "+t.status,t.config,null,t.request,t)):n(t)}(e,t,l),a=null}},a.onabort=function(){a&&(t(U("Request aborted",n,"ECONNABORTED",a)),a=null)},a.onerror=function(){t(U("Network Error",n,null,a)),a=null},a.ontimeout=function(){var e="timeout of "+n.timeout+"ms exceeded";n.timeoutErrorMessage&&(e=n.timeoutErrorMessage),t(U(e,n,"ECONNABORTED",a)),a=null},S.isStandardBrowserEnv()){var p=(n.withCredentials||G(l))&&n.xsrfCookieName?B.read(n.xsrfCookieName):void 0;p&&(r[n.xsrfHeaderName]=p)}if("setRequestHeader"in a&&S.forEach(r,function(n,e){void 0===o&&"content-type"===e.toLowerCase()?delete r[e]:a.setRequestHeader(e,n)}),S.isUndefined(n.withCredentials)||(a.withCredentials=!!n.withCredentials),n.responseType)try{a.responseType=n.responseType}catch(e){if("json"!==n.responseType)throw e}"function"==typeof n.onDownloadProgress&&a.addEventListener("progress",n.onDownloadProgress),"function"==typeof n.onUploadProgress&&a.upload&&a.upload.addEventListener("progress",n.onUploadProgress),n.cancelToken&&n.cancelToken.promise.then(function(n){a&&(a.abort(),t(n),a=null)}),o||(o=null),a.send(o)})},H={"Content-Type":"application/x-www-form-urlencoded"};function Y(n,e){!S.isUndefined(n)&&S.isUndefined(n["Content-Type"])&&(n["Content-Type"]=e)}var K,z={adapter:("undefined"!=typeof XMLHttpRequest?K=V:"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process)&&(K=V),K),transformRequest:[function(n,e){return D(e,"Accept"),D(e,"Content-Type"),S.isFormData(n)||S.isArrayBuffer(n)||S.isBuffer(n)||S.isStream(n)||S.isFile(n)||S.isBlob(n)?n:S.isArrayBufferView(n)?n.buffer:S.isURLSearchParams(n)?(Y(e,"application/x-www-form-urlencoded;charset=utf-8"),n.toString()):S.isObject(n)?(Y(e,"application/json;charset=utf-8"),JSON.stringify(n)):n}],transformResponse:[function(n){if("string"==typeof n)try{n=JSON.parse(n)}catch(n){}return n}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(n){return n>=200&&n<300}};z.headers={common:{Accept:"application/json, text/plain, */*"}},S.forEach(["delete","get","head"],function(n){z.headers[n]={}}),S.forEach(["post","put","patch"],function(n){z.headers[n]=S.merge(H)});var W=z;function X(n){n.cancelToken&&n.cancelToken.throwIfRequested()}var Z=function(n){return X(n),n.headers=n.headers||{},n.data=F(n.data,n.headers,n.transformRequest),n.headers=S.merge(n.headers.common||{},n.headers[n.method]||{},n.headers),S.forEach(["delete","get","head","post","put","patch","common"],function(e){delete n.headers[e]}),(n.adapter||W.adapter)(n).then(function(e){return X(n),e.data=F(e.data,e.headers,n.transformResponse),e},function(e){return P(e)||(X(n),e&&e.response&&(e.response.data=F(e.response.data,e.response.headers,n.transformResponse))),Promise.reject(e)})},q=function(n,e){e=e||{};var t={},o=["url","method","data"],r=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],i=["validateStatus"];function c(n,e){return S.isPlainObject(n)&&S.isPlainObject(e)?S.merge(n,e):S.isPlainObject(e)?S.merge({},e):S.isArray(e)?e.slice():e}function s(o){S.isUndefined(e[o])?S.isUndefined(n[o])||(t[o]=c(void 0,n[o])):t[o]=c(n[o],e[o])}S.forEach(o,function(n){S.isUndefined(e[n])||(t[n]=c(void 0,e[n]))}),S.forEach(r,s),S.forEach(a,function(o){S.isUndefined(e[o])?S.isUndefined(n[o])||(t[o]=c(void 0,n[o])):t[o]=c(void 0,e[o])}),S.forEach(i,function(o){o in e?t[o]=c(n[o],e[o]):o in n&&(t[o]=c(void 0,n[o]))});var u=o.concat(r).concat(a).concat(i),l=Object.keys(n).concat(Object.keys(e)).filter(function(n){return-1===u.indexOf(n)});return S.forEach(l,s),t};function J(n){this.defaults=n,this.interceptors={request:new M,response:new M}}J.prototype.request=function(n){"string"==typeof n?(n=arguments[1]||{}).url=arguments[0]:n=n||{},(n=q(this.defaults,n)).method?n.method=n.method.toLowerCase():this.defaults.method?n.method=this.defaults.method.toLowerCase():n.method="get";var e=[Z,void 0],t=Promise.resolve(n);for(this.interceptors.request.forEach(function(n){e.unshift(n.fulfilled,n.rejected)}),this.interceptors.response.forEach(function(n){e.push(n.fulfilled,n.rejected)});e.length;)t=t.then(e.shift(),e.shift());return t},J.prototype.getUri=function(n){return n=q(this.defaults,n),k(n.url,n.params,n.paramsSerializer).replace(/^\?/,"")},S.forEach(["delete","get","head","options"],function(n){J.prototype[n]=function(e,t){return this.request(q(t||{},{method:n,url:e,data:(t||{}).data}))}}),S.forEach(["post","put","patch"],function(n){J.prototype[n]=function(e,t,o){return this.request(q(o||{},{method:n,url:e,data:t}))}});var $=J;function Q(n){this.message=n}Q.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},Q.prototype.__CANCEL__=!0;var nn=Q;function en(n){if("function"!=typeof n)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(n){e=n});var t=this;n(function(n){t.reason||(t.reason=new nn(n),e(t.reason))})}en.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},en.source=function(){var n;return{token:new en(function(e){n=e}),cancel:n}};var tn=en;function on(n){var e=new $(n),t=y($.prototype.request,e);return S.extend(t,$.prototype,e),S.extend(t,e),t}var rn=on(W);rn.Axios=$,rn.create=function(n){return on(q(rn.defaults,n))},rn.Cancel=nn,rn.CancelToken=tn,rn.isCancel=P,rn.all=function(n){return Promise.all(n)},rn.spread=function(n){return function(e){return n.apply(null,e)}},rn.isAxiosError=function(n){return"object"===(void 0===n?"undefined":o(n))&&!0===n.isAxiosError};var an=rn,cn=rn;an.default=cn;var sn=an,un=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.SameSite={UNSET:0,DEFAULT_MODE:1,LAX_MODE:2,STRICT_MODE:3,NONE_MODE:4};e.ServiceStatus={ERROR:0,STARTING:1,OK:2,STOPPING:3,STOPPED:4,UNREACHABLE:5};var t={APPLICATION_MAPBOX_VECTOR_TILE:0,IMAGE_GIF:1};e.BinaryContentType=t;e.TRACE_ID_METADATA_KEY="uc-trace-id";e.CLIENT_PROFILE_METADATA_KEY="uc-client-profile-bin";e.INTERNAL_TOKEN_KEY="x-compass-internal-token";e.SERVICE_AUTH_KEY="x-compass-auth-id";var o={};o[t.APPLICATION_MAPBOX_VECTOR_TILE]="application/vnd.mapbox-vector-tile",o[t.IMAGE_GIF]="image/gif",e.BINARY_CONTENT_TYPE_VALUES=o});n(un),un.SameSite,un.ServiceStatus,un.BinaryContentType,un.TRACE_ID_METADATA_KEY,un.CLIENT_PROFILE_METADATA_KEY,un.INTERNAL_TOKEN_KEY,un.SERVICE_AUTH_KEY,un.BINARY_CONTENT_TYPE_VALUES;var ln=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.PersonProfileType={CUSTOMER:0,AGENT:1};e.PersonSortField={EMAIL:0,FIRST_NAME:1,LAST_NAME:2,CREATED_AT:3,UPDATED_AT:4};e.TeamSortField={TEAM_NAME:0,CREATED_AT:1,UPDATED_AT:2};e.TeamRole={LEADER:0,ADVANCED:1,STANDARD:2,CUSTOM:3,PRINCIPAL:4,AGENT:5,UNLICENSED_MEMBER:6,REFERRAL_DIRECTOR:7,TEAM_ACCOUNT:8};e.EventType={FEATURE_RELEASE:0,NEW_AGENT:1,TEAM_OR_ROLE_CHANGE:2,USER_INFO_CHANGE:3,TEAM_INFO_CHANGE:4,AGENT_SEPARATION:5,ACCESS_POLICY_CHANGE:6,MIGRATION_RUN:7,USER_EMAIL_CHANGE:8,USER_MLS_CHANGE:9};e.PersonQueryField={FIRST_NAME:0,LAST_NAME:1,EMAIL:2,SALES_MANAGER:3,SAFE_URL_NAME:4,SALESFORCE_ID:5};e.PublicProfileType={INDIVIDUAL:0,TEAM:1};e.MLSMatchedSource={UNMATCHED:0,MANUAL:1,SHOWING_TIME:2,AGENT_PROFILE_EDITOR:3,AUTOMATED:4};e.MLSEnabledFor={SHOWING_TIME:0};e.LocationEntityType={LOCATION:0,MARKET:1,STATE:2};e.Operation={UPSERT:0,DELETE:1}});n(ln),ln.PersonProfileType,ln.PersonSortField,ln.TeamSortField,ln.TeamRole,ln.EventType,ln.PersonQueryField,ln.PublicProfileType,ln.MLSMatchedSource,ln.MLSEnabledFor,ln.LocationEntityType,ln.Operation;var pn=e(function(n,e){var t;Object.defineProperty(e,"__esModule",{value:!0}),!(t=un)||t.__esModule;e.ImageType={BUILDING:0,APARTMENT:1,FLOORPLAN:2};e.DEFAULT_THUMBNAIL_SIZE="165x165";e.IMAGE_THUMBNAIL_SIZES_NO_CROP="600x450,640x480";e.EXTRA_LARGE_IMAGE_THUMBNAIL_SIZES_NO_CROP="1500x1000";e.MAX_DEFAULT_THUMBNAIL_SIZE="640x480"});n(pn),pn.ImageType,pn.DEFAULT_THUMBNAIL_SIZE,pn.IMAGE_THUMBNAIL_SIZES_NO_CROP,pn.EXTRA_LARGE_IMAGE_THUMBNAIL_SIZES_NO_CROP,pn.MAX_DEFAULT_THUMBNAIL_SIZE;var dn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.SearchFeeType={NO_FEE:0,FREE_RENT:1,UC_OP:2,CYOF:3};e.RelativeTimeUnit={DAYS:0,MONTHS:1,YEARS:2};e.WeekDay={MONDAY:0,TUESDAY:1,WEDNESDAY:2,THURSDAY:3,FRIDAY:4,SATURDAY:5,SUNDAY:6};e.LogicType={OR:0,AND:1,NOT:2}});n(dn),dn.SearchFeeType,dn.RelativeTimeUnit,dn.WeekDay,dn.LogicType;var vn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});var t={NONE:0,CO_BROKER:1,MANAGEMENT_FIRM:2,LEASING_OFFICE:3,SALES_OFFICE:4,ACCESS_CONTACT:5,UC_AGENT:6,CLOSING_CONTACT:7,OWNER_OR_LANDLORD:8,TENANT:9,CO_EXCLUSIVE_BROKER:10,MANAGING_AGENT:11,ACCOUNT_EXECUTIVE:12,TRANSFER_AGENT:13,CLOSING_AGENT:14,DOORMAN:15};e.ContactInfoType=t;var o={};o[t.NONE]="",o[t.CO_BROKER]="cobrokerContacts",o[t.MANAGEMENT_FIRM]="managementCompaniesContacts",o[t.LEASING_OFFICE]="leasingOfficeContacts",o[t.SALES_OFFICE]="salesOfficeContacts",o[t.ACCESS_CONTACT]="accessContactContacts",o[t.UC_AGENT]="agentContacts",o[t.CLOSING_CONTACT]="closingContactContacts",o[t.OWNER_OR_LANDLORD]="landlordContacts",o[t.TENANT]="tenantContacts",o[t.CO_EXCLUSIVE_BROKER]="coexclusiveBrokerContacts",o[t.MANAGING_AGENT]="managingAgentContacts",o[t.ACCOUNT_EXECUTIVE]="accountExecutiveContacts",o[t.TRANSFER_AGENT]="transferAgentContacts",o[t.CLOSING_AGENT]="closingAgentContacts",o[t.DOORMAN]="doormanContacts",e.CONTACTINFO_TYPE_TO_FIELD_NAME_MAP=o;var r={CA:"DRE #",TX:"TREC #"};e.STATE_TO_LICENSE_PREFIX=r;e.LICENSE_PREFIX_DEFAULT="License #"});n(vn),vn.ContactInfoType,vn.CONTACTINFO_TYPE_TO_FIELD_NAME_MAP,vn.STATE_TO_LICENSE_PREFIX,vn.LICENSE_PREFIX_DEFAULT;var fn=e(function(n,e){var t;Object.defineProperty(e,"__esModule",{value:!0}),!(t=vn)||t.__esModule;e.OpenHouseStatus={ACTIVE:0,CANCELLED:1,EXPIRED:2};e.OpenHouseType={PUBLIC:0,PRIVATE:1,BROKER:2,OFFICE:3,ASSOCIATION:4}});n(fn),fn.OpenHouseStatus,fn.OpenHouseType;var hn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(vn),t(fn);e.MediaFileType={PDF:0,PNG:1,TEXT:2};e.MediaType={BRANDED:0,UNBRANDED:1,UNDEFINED:2};e.VirtualOpenHouseType={HANGOUTS:0,ZOOM:1,OTHERS:2};e.VirtualTourType={INTERACTIVE:0,PLAYABLE:1,EMBEDDED:2,OTHERS:3};e.CalendarType={GOOGLE:0,OTHERS:1};e.MATTERPORT_MIME_TYPE="virtualTour/matterport";e.YOUTUBE_MIME_TYPE="virtualTour/youtube";e.VIMEO_MIME_TYPE="virtualTour/vimeo";e.VIMEOPRO_MIME_TYPE="virtualTour/vimeopro";e.PARADYM_MIME_TYPE="virtualTour/paradym";e.VIRTUANCE_MIME_TYPE="virtualTour/virtuance";e.BRIGHTCOVE_MIME_TYPE="virtualTour/brightcove";e.VOH_MIME_TYPE="virtualOpenHouse";e.VOH_TOURS_URL_SOURCE="tour_url_generator_modal"});n(hn),hn.MediaFileType,hn.MediaType,hn.VirtualOpenHouseType,hn.VirtualTourType,hn.CalendarType,hn.MATTERPORT_MIME_TYPE,hn.YOUTUBE_MIME_TYPE,hn.VIMEO_MIME_TYPE,hn.VIMEOPRO_MIME_TYPE,hn.PARADYM_MIME_TYPE,hn.VIRTUANCE_MIME_TYPE,hn.BRIGHTCOVE_MIME_TYPE,hn.VOH_MIME_TYPE,hn.VOH_TOURS_URL_SOURCE;var gn=e(function(n,e){var t;Object.defineProperty(e,"__esModule",{value:!0}),!(t=un)||t.__esModule;e.VideoSource={VIDEO_SOURCE_UNSPECIFIED:0,YOUTUBE:1}});n(gn),gn.VideoSource;var mn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.ListingStatus={ACTIVE:0,APPLICATION_PENDING:1,CONTRACT_OUT:2,LEASES_OUT:3,EXCLUSIVE_EXPIRED:4,RENTED:5,BOARD_PACKAGE_OUT:6,BOARD_APPROVED:7,CONTRACT_SIGNED:8,CONTINGENCIES_DROPPED:9,SOLD:10,TEMPORARILY_OFF_MARKET:11,PERMANENTLY_OFF_MARKET:12,INCOMING:13,COMING_SOON:14}});n(mn),mn.ListingStatus;var Nn=e(function(n,e){var t;Object.defineProperty(e,"__esModule",{value:!0}),!(t=mn)||t.__esModule});n(Nn);var bn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(Nn),t(mn);e.PriceChangeType={PRICE_INCREASE:0,PRICE_DECREASE:1};e.StatusChangeType={TO_STATUS:0,NEW_LISTING:1,BACK_ON_MARKET:2,COMING_SOON:3}});n(bn),bn.PriceChangeType,bn.StatusChangeType;var En=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.ListingDetailTypes={TEXT_DETAILS:0,NUMERIC_DETAILS:1,BOOL_DETAILS:2,FREE_TEXT_DETAILS:3,DATETIME_DETAILS:4}});n(En),En.ListingDetailTypes;var xn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.CoedStatus={ALL_BOYS:0,ALL_GIRLS:1,COED:2,UNKNOWN:3};e.SchoolType={PUBLIC:0,PRIVATE:1};e.GreatSchoolsType={PUBLIC:0,PRIVATE:1,CHARTER:2,DISTRICT:3};e.ReligionEducation={ADVENTIST:0,ANABAPTIST:1,BAPTIST:2,CALVINIST_REFORMED:3,CATHOLIC:4,EASTERN_ORTHODOX:5,EPISCOPAL:6,EVANGELICAL:7,LUTHERAN:8,INTER_NON_DENOMINATIONAL:9,JEWISH:10,METHODIST:11,MORMON:12,MUSLIM:13,PENTECOSTAL:14,PRESBYTERIAN:15,QUAKER:16,RESTORATIONIST:17};e.EducationPractice={COMMON:0,MONTESSORI:1,SPECIAL_EDUCATION:2,ALTERNATIVE:3};e.RatingGrade={D_MINUS:0,D:1,D_PLUS:2,C_MINUS:3,C:4,C_PLUS:5,B_MINUS:6,B:7,B_PLUS:8,A_MINUS:9,A:10,A_PLUS:11};e.BoundaryType={SCHOOL_BOUNDARY:0,SCHOOL_DISTRICT_BOUNDARY:1,RADIUS_BOUNDARY:2,MANUAL_BOUNDARY:3}});n(xn),xn.CoedStatus,xn.SchoolType,xn.GreatSchoolsType,xn.ReligionEducation,xn.EducationPractice,xn.RatingGrade,xn.BoundaryType;var yn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0})});n(yn);var An=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0})});n(An);var _n=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(yn),t(An);e.BoundaryType={NEIGHBORHOOD:0,CITY:1};e.PropertySource={MESSIER:0,ASYNC_GEOCODER:1};e.BoundarySource={SOURCE_FEED:0,GIS_SERVICE:1};e.ZipCodeSource={SOURCE_FEED:0,GEOCODING_SERVICE:1,GIS_SERVICE:2}});n(_n),_n.BoundaryType,_n.PropertySource,_n.BoundarySource,_n.ZipCodeSource;var On=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(_n);e.GeolocationResult={UNDEFINED:0,TIGER_FILE:1,LATLONG:2,COMPASS_GEOCODING_FAILED:3,GOOGLE_GEOCODING_API:4,GOOGLE_GEOCODING_FAILED:5,GOOGLE_GEOCODING_INTERNAL_ERROR:6,GEOCODING_SERVICE_API:7,COMPASS_FAILED_LOCATE_GOOGLE_RES:8,GOOGLE_GEOCODING_FALLBACK:9,PARCEL_CENTROID_LATLON:10,PELIAS_LATLON:11};e.GeocodingFallBackLevel={UNDEFINED:0,STREET:1,ZIP:2,CITY:3};e.AddressProvenance={UNDEFINED:0,REALTYTRAC_ASSESSOR:1,REALTYTRAC_RECORDER:2,MLS_FUZZY:3,ADDRESS_OVERRIDE_RULE:4,DEDUPLICATION:5}});n(On),On.GeolocationResult,On.GeocodingFallBackLevel,On.AddressProvenance;var Ln=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0})});n(Ln);var wn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.UserType={ALL_USERS:0,LOGGED_IN_USER:1,LOGGED_OUT_USER:2,VERIFIED_USER:3,COMPASS_AGENT:4};e.AddressCompliance={DEFAULT:0,NUMBER_STREET_UNIT:1,NUMBER_STREET:2,STREET:3,NO_ADDRESS:4,RAW_ADDRESS:5,REPLACE_WITH_NEIGHBORHOOD:6};e.DescriptionCompliance={FULL_DESCRIPTION:0,NO_DESCRIPTION:1};e.BehaviorCompliance={REQUIRE_LOGIN:0,HIDE_SEARCH:1,REQUIRE_CONFIRMATION:2,HIDE_PHOTOS:3,DISPLAY_PRIMARY_PHOTO:4,DISPLAY_BATHROOMS:5,HIDE_SQUARE_FEET:6};e.HistoryComplianceTerm={YEARS:0,DAYS:1,NO_COMPLIANCE:2};e.PriceCompliance={DISPLAY_LISTED_PRICE:0,HIDE_PRICE_ON_SOLD_LISTINGS:1,DISPLAY_LAST_SOLD_PRICE_OFF_MARKET_LISTINGS:2,HIDE_PRICE:3};e.ListingTypeCompliance={PLAN:0,SPEC:1}});n(wn),wn.UserType,wn.AddressCompliance,wn.DescriptionCompliance,wn.BehaviorCompliance,wn.HistoryComplianceTerm,wn.PriceCompliance,wn.ListingTypeCompliance;var Tn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.LifecycleStatus={AVAILABLE:0,IN_CONTRACT:1,CLOSED:2,UNKNOWN:3,COMING_SOON:4}});n(Tn),Tn.LifecycleStatus;var In=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.FullSale={UNKNOWN:0,DOCUMENTARY_TRANSFER_TAX_CALCULATED:1,FULL_CONSIDERATION:2,DOCUMENTARY_TRANSFER_DUE_EQUALS_0:3,FULL_CONSIDERATION_LESS_LIENS_ENCUMBRANCES:4,DOC_NON_DISCLOSED:5};e.PartialInterest={FULL_INTEREST_SALE_OR_UNKNOWN_OR_NA:0,MULT_OWNERSHIP_INTEREST_SALE:1,PORTIONAL_INTEREST_SALE:2,PARTIAL_INTEREST_SALE:3};e.InterestRateType={UNAVAILABLE:0,FIXED:1,VARIABLE:2,GRADUATED:3,UNDETERMINED:4,UNKNOWN:5};e.LenderType={UNKNOWN:0,BANK:1,CREDIT_UNION:2,CONSTRUCTION_DEV_COMPANY:3,FUNDING_FINANCE_COMPANY:4,GOVERNMENT_AGENCY:5,HOLDING_COMPANY:6,INSURANCE_COMPANY:7,MORTGAGE_COMPANY:8,MORTGAGE_FUNDING_COMPANY:9,MERS:10,FSB:11,COMMERCIAL_CORPORATIONS:12,FNWMC:13};e.MortgageType={CONVENTIONAL_OR_UNKNOWN:0,CONSTRUCTION:1,FHA:2,VA:3,CREDIT_LINE:4};e.OwnerOccupancy={UNKNOWN:0,OWNER_OCCUPIED:1,OWNER_ABSENT_IN_STATE:2,OWNER_ABSENT_OUT_OF_STATE:3};e.ExtendedBool={UNKNOWN:0,YES:1,NO:2};e.ASSESSOR_PRIMARY_PARCEL_NUMBER="primaryParcelNumber";e.ACRIS_PARCEL_INFO_KEY_BBL="bbl";e.ACRIS_PARCEL_INFO_KEY_BOROUGH="borough";e.ACRIS_PARCEL_INFO_KEY_BOROUGH_CODE="boroughCode";e.ACRIS_PARCEL_INFO_KEY_BLOCK="block";e.ACRIS_PARCEL_INFO_KEY_LOT="lot";e.ACRIS_PARCEL_INFO_KEY_AIR_RIGHTS="airRights";e.ACRIS_PARCEL_INFO_KEY_EASEMENT="easement";e.ACRIS_PARCEL_INFO_KEY_PARTIAL_LOT="partialLot";e.ACRIS_PARCEL_INFO_KEY_SUBTERRANEAN_RIGHTS="subterraneanRights";e.ACRIS_DATA_SOURCE_NAME="ACRIS";e.ACRIS_DOCUMENT_SEARCH_PREFIX="http://a836-acris.nyc.gov/DS/DocumentSearch/DocumentDetail?doc_id=";var t=["bbl","borough","boroughCode","block","lot","airRights","easement","partialLot","subterraneanRights"];e.ACRIS_PARCEL_EXTRA_KEYS=t;e.ACRIS_SALE_INFO_KEY_DOCUMENT_TYPE="documentType";e.ACRIS_SALE_INFO_KEY_DOCUMENT_ID="documentId";e.ACRIS_SALE_INFO_KEY_RECORDED_BOROUGH="recordedBorough";var o=["documentType","documentId","recordedBorough"];e.ACRIS_SALE_INFO_EXTRA_KEYS=o;e.REALTYTRAC_SALE_INFO_KEY_DOCUMENT_TYPE="documentType";e.REALTYTRAC_SALE_INFO_KEY_DOCUMENT_ID="documentId";var r=["documentType","documentId"];e.REALTYTRAC_SALE_INFO_EXTRA_KEYS=r});n(In),In.FullSale,In.PartialInterest,In.InterestRateType,In.LenderType,In.MortgageType,In.OwnerOccupancy,In.ExtendedBool,In.ASSESSOR_PRIMARY_PARCEL_NUMBER,In.ACRIS_PARCEL_INFO_KEY_BBL,In.ACRIS_PARCEL_INFO_KEY_BOROUGH,In.ACRIS_PARCEL_INFO_KEY_BOROUGH_CODE,In.ACRIS_PARCEL_INFO_KEY_BLOCK,In.ACRIS_PARCEL_INFO_KEY_LOT,In.ACRIS_PARCEL_INFO_KEY_AIR_RIGHTS,In.ACRIS_PARCEL_INFO_KEY_EASEMENT,In.ACRIS_PARCEL_INFO_KEY_PARTIAL_LOT,In.ACRIS_PARCEL_INFO_KEY_SUBTERRANEAN_RIGHTS,In.ACRIS_DATA_SOURCE_NAME,In.ACRIS_DOCUMENT_SEARCH_PREFIX,In.ACRIS_PARCEL_EXTRA_KEYS,In.ACRIS_SALE_INFO_KEY_DOCUMENT_TYPE,In.ACRIS_SALE_INFO_KEY_DOCUMENT_ID,In.ACRIS_SALE_INFO_KEY_RECORDED_BOROUGH,In.ACRIS_SALE_INFO_EXTRA_KEYS,In.REALTYTRAC_SALE_INFO_KEY_DOCUMENT_TYPE,In.REALTYTRAC_SALE_INFO_KEY_DOCUMENT_ID,In.REALTYTRAC_SALE_INFO_EXTRA_KEYS;var Sn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.CO_OP="Co-op";e.CONDO="Condo";e.CONDOP="Condop";e.LAND="Land";e.MIXED_USE="Mixed Use";e.MOBILE_MANUFACTURED="Mobile/Manufactured";e.MULTI_FAMILY="Multi Family";e.NON_RESIDENTIAL="Non-Residential";e.OTHER="Other";e.RENTAL="Rental";e.SINGLE_FAMILY="Single Family";e.TOWNHOUSE="Townhouse"});n(Sn),Sn.CO_OP,Sn.CONDO,Sn.CONDOP,Sn.LAND,Sn.MIXED_USE,Sn.MOBILE_MANUFACTURED,Sn.MULTI_FAMILY,Sn.NON_RESIDENTIAL,Sn.OTHER,Sn.RENTAL,Sn.SINGLE_FAMILY,Sn.TOWNHOUSE;var Cn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(dn),t(vn),t(pn),t(hn),t(gn),t(bn),t(En),t(fn),t(xn),t(On),t(Ln),t(Nn),t(wn),t(Tn),t(In);var o=t(mn);t(Sn);e.AccessType={NONE:0,OPEN:1,ONSITE_KEYS:2,OFFSITE_KEYS:3,APPOINTMENT_ONLY:4};e.FeeType={NO_FEE:0,OPEN_LISTING:1,CO_BROKE:2,SALE:3};e.RentalTransactionType={EXCLUSIVE:0,CO_BROKE:1,OPEN:2,LIMITED:3,FSBO:4,NEW_CONSTRUCTION:5};e.RentalStatus={APPLICATION_PENDING:0,LEASES_OUT:1,TEMPORARILY_OFF_MARKET:2,EXCLUSIVE_EXPIRED:3,RENTED:4,AVAILABLE:5,PERMANENTLY_OFF_MARKET:6,COMING_SOON:7};e.SalesTransactionType={EXCLUSIVE:0,CO_BROKE:1,OPEN:2,LIMITED:3,FSBO:4,NEW_CONSTRUCTION:5};var r={OFFER_MADE:0,OFFER_ACCEPTED:1,CONTRACT_OUT:2,CONTRACT_SIGNED:3,BOARD_PACKAGE_OUT:4,BOARD_APPROVED:5,TEMPORARILY_OFF_MARKET:6,EXCLUSIVE_EXPIRED:7,SOLD:8,AVAILABLE:9,PERMANENTLY_OFF_MARKET:10,CONTINGENCIES_DROPPED:11,COMING_SOON:12};e.SaleStatus=r;e.SaleSpecialCondition={SHORT_SALE:0,REO:1,BANK_OWNED:2,DEED_RESTRICTIONS:3,FORECLOSURE:4,AUCTION:5,SELLER_WILL_TRADE:6};e.ShortTermRentalTransactionType={EXCLUSIVE:0,CO_BROKE:1,OPEN:2,LIMITED:3};e.ShortTermRentalStatus={AVAILABLE:0,OFF_MARKET:1,COMING_SOON:2};e.ShortTermRentalPeriods={JANUARY:0,FEBRUARY:1,MARCH:2,APRIL:3,MAY:4,JUNE:5,JULY:6,AUGUST:7,SEPTEMBER:8,OCTOBER:9,NOVEMBER:10,DECEMBER:11,MEMORIAL_DAY_TO_LABOR_DAY:12,JUNE_TO_JULY:13,JULY_TO_AUGUST:14,JULY_TO_LABOR_DAY:15,AUGUST_TO_LABOR_DAY:16,ANNUAL:17,OFF_SEASON:18,EXTENDED_SEASON:19,WINTER_SEASON:20,SHORT_TERM:21,CUSTOM:22,APRIL_TO_LABOR_DAY:23,APRIL_TO_MAY:24,TWO_WEEKS:25,WEEKLY:26,SEPTEMBER_TO_OCTOBER:27};e.AssessmentTerm={MONTHLY:0,YEARLY:1,ONE_TIME:2};e.FeePaymentFrequentType={MONTHLY:0,QUARTERLY:1,SEMI_ANNUALLY:2,ANNUALLY:3,ONE_TIME:4,SEMI_MONTHLY:5};e.ChargeType={RE_TAXES:0,MAINTENANCE_COMMON_CHARGES:1,HOA_FEE:2,FRONT_FOOT_FEE:3,MEMBERSHIP_PURCHASE_FEE:4,MASTER_ASSOCIATION_FEE:5,SPECIAL_SERVICE_AREA_FEE:6,DEPOSIT:7,ASSOCIATION_TRANSFER_FEE:8};e.ExternalKeyType={MLS_ID:0,MLS_KEY:1,FOLIO_NUMBER:2,HREO_ID:3,HREO_RENTAL_ID:4,MLS_SOURCE_ID:5,SOURCE_FEED:6,PARCEL_ID:7,MLS_ID_ALT:8,ACRIS_DOC_ID:9};e.BuildingAgreementType={NONE:0,EXCLUSIVE:1};e.VerificationStatus={notVerified:0,nsVerified:1,unitPhotosNotAllowed:2};e.ListingType={LISTING:0,BUILDING:1,SALES:2,SHORT_TERM_RENTAL:3};e.Availability={AVAILABLE:0,UNAVAILABLE:1};e.AddressFormat={DEFAULT:0,NUMBER_STREET_UNIT:1,NUMBER_STREET:2,STREET:3,RAW:4,REPLACE_WITH_NEIGHBORHOOD:5};e.CompassListingType={COMING_SOON:0,PRIVATE_EXCLUSIVE:1,STANDARD_EXCLUSIVE:2,MLS_LISTINGS:3,NEW_CONSTRUCTION:4,FOR_SALE_BY_OWNER:5,NOT_FOR_SALE:6};e.PropertyRecordType={PROPERTY:0,FEED_LISTING:1,TRANSACTION:2};e.ListingAccessibilityLevel={LISTING_ACCESSIBILITY_UNSPECIFIED:0,CONNECTED_CLIENT_SEARCHABLE:1};e.MlsNeighborhoods={MLS_NEIGHBORHOOD_1:0,MLS_NEIGHBORHOOD_2:1,MLS_NEIGHBORHOOD_3:2};e.ClosingVerification={REPORTED_SOLD:0,VERIFIED_SOLD_COMPASS:1,VERIFIED_SOLD_PUBLICRECORDS:2,REPORTED_RENTED:3,VERIFIED_RENTED_COMPASS:4,RECORDED_CLOSING:5,STANDALONE_ASSESSOR:6};var a={};a[o.ListingStatus.ACTIVE]=r.AVAILABLE,a[o.ListingStatus.CONTRACT_OUT]=r.CONTRACT_OUT,a[o.ListingStatus.EXCLUSIVE_EXPIRED]=r.EXCLUSIVE_EXPIRED,a[o.ListingStatus.BOARD_PACKAGE_OUT]=r.BOARD_PACKAGE_OUT,a[o.ListingStatus.BOARD_APPROVED]=r.BOARD_APPROVED,a[o.ListingStatus.CONTRACT_SIGNED]=r.CONTRACT_SIGNED,a[o.ListingStatus.CONTINGENCIES_DROPPED]=r.CONTINGENCIES_DROPPED,a[o.ListingStatus.SOLD]=r.SOLD,a[o.ListingStatus.TEMPORARILY_OFF_MARKET]=r.TEMPORARILY_OFF_MARKET,a[o.ListingStatus.PERMANENTLY_OFF_MARKET]=r.PERMANENTLY_OFF_MARKET,a[o.ListingStatus.COMING_SOON]=r.COMING_SOON,e.LISTING_TO_SALE_STATUSES=a;var i={};i[r.AVAILABLE]=o.ListingStatus.ACTIVE,i[r.CONTRACT_OUT]=o.ListingStatus.CONTRACT_OUT,i[r.EXCLUSIVE_EXPIRED]=o.ListingStatus.EXCLUSIVE_EXPIRED,i[r.BOARD_PACKAGE_OUT]=o.ListingStatus.BOARD_PACKAGE_OUT,i[r.BOARD_APPROVED]=o.ListingStatus.BOARD_APPROVED,i[r.CONTRACT_SIGNED]=o.ListingStatus.CONTRACT_SIGNED,i[r.CONTINGENCIES_DROPPED]=o.ListingStatus.CONTINGENCIES_DROPPED,i[r.SOLD]=o.ListingStatus.SOLD,i[r.TEMPORARILY_OFF_MARKET]=o.ListingStatus.TEMPORARILY_OFF_MARKET,i[r.PERMANENTLY_OFF_MARKET]=o.ListingStatus.PERMANENTLY_OFF_MARKET,i[r.COMING_SOON]=o.ListingStatus.COMING_SOON,e.SALE_TO_LISTING_STATUSES=i});n(Cn),Cn.AccessType,Cn.FeeType,Cn.RentalTransactionType,Cn.RentalStatus,Cn.SalesTransactionType,Cn.SaleStatus,Cn.SaleSpecialCondition,Cn.ShortTermRentalTransactionType,Cn.ShortTermRentalStatus,Cn.ShortTermRentalPeriods,Cn.AssessmentTerm,Cn.FeePaymentFrequentType,Cn.ChargeType,Cn.ExternalKeyType,Cn.BuildingAgreementType,Cn.VerificationStatus,Cn.ListingType,Cn.Availability,Cn.AddressFormat,Cn.CompassListingType,Cn.PropertyRecordType,Cn.ListingAccessibilityLevel,Cn.MlsNeighborhoods,Cn.ClosingVerification,Cn.LISTING_TO_SALE_STATUSES,Cn.SALE_TO_LISTING_STATUSES;var kn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(pn),t(Cn)});n(kn);var Rn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(kn);e.CustomerChannel={UC_SELF_REGISTER:0,REAL_ESTATE_WEBSITE:1,OPEN_HOUSE:2,REFERRAL:3,PERSONAL_NETWORK:4,CO_BROKER:5,CORPORATE_REFERRAL:6,COMPASS_COM_REFERRAL:7,LIVESTREAM_OPEN_HOUSE:8,COMPASS_COM_NCLL_REFERRAL:9};e.UserSortField={CURRENT_LOGIN_AT:0,LAST_ACTIVE_AT:1}});n(Rn),Rn.CustomerChannel,Rn.UserSortField;var Mn=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0})});n(Mn);var Fn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(dn),t(Rn);e.DocumentAccess={CLIENT:0,GUARANTOR:1,UC:2};e.CustomerStatus={NEW:0,UNASSIGNED:1,ACTIVE:2,PROSPECTIVE:3,APPLIED:4,SUBMITTED:5,CLOSED:6,LOST:7,NEVER_MET:8,FAKE:9};e.CustomerProfileEventType={CHANGE_STATUS:0,CHANGE_OWNERSHIP:1};e.ContactMethod={EMAIL:0,PHONE:1};e.CustomerInterestType={SELLER:0,BUYER:1,RENTER:2,BUYER_AND_SELLER:3};e.CustomerPhase={UNCATEGORIZED:0,ACTIVE:1,PASSIVE:2,INACTIVE:3,DEAL_CLOSED:4,OFFER_MADE:5,IN_CONTRACT:6,CONTINGENCY:7,LISTING_EXPIRED:8,OTHER:9};e.VISIT_DATE_REMINDER="Visit Date Reminder";e.ABANDONED_CART="Abandoned Cart"});n(Fn),Fn.DocumentAccess,Fn.CustomerStatus,Fn.CustomerProfileEventType,Fn.ContactMethod,Fn.CustomerInterestType,Fn.CustomerPhase,Fn.VISIT_DATE_REMINDER,Fn.ABANDONED_CART;var Pn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(Rn);e.SocialProfileType={FACEBOOK:0,INSTAGRAM:1,LINKEDIN:2,PINTEREST:3,TWITTER:4}});n(Pn),Pn.SocialProfileType;var Dn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(un),t(dn),t(Cn);e.LocationSubType={SUB_NEIGHBORHOOD:0,NEIGHBORHOOD:1,MACRO_NEIGHBORHOOD:3,CITY_LIMITS:5,AREA:8,ISLAND:9,MAJOR_AREA:10,SUBCOUNTY:11,BOROUGH:12,REGION:6,RESI_NEIGHBORHOOD:2,COUNTY:4,STATE:7};e.SchoolBoundarySource={SCHOOL_NO_AZ_NO_DIST_BOUNDARY:0,SCHOOL_ATTENDANCE_ZONE:1,SCHOOL_DIST_BOUNDARY:2};e.LocationType={ZIPCODE:0,CITY:1,NEIGHBORHOOD:2,SCHOOL:3,COUNTY:4,STATE:5,SCHOOL_DISTRICT:6,GEO:7};e.JobStatusType={PENDING:0,RUNNING:1,DONE_SUCCESS:2,DONE_FAIL:3}});n(Dn),Dn.LocationSubType,Dn.SchoolBoundarySource,Dn.LocationType,Dn.JobStatusType;var Un=e(function(n,e){Object.defineProperty(e,"__esModule",{value:!0});e.LicenseType={SALESPERSON:0,BROKER:1}});n(Un),Un.LicenseType;var Bn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(dn),t(Fn),t(Pn),t(Dn),t(Cn),t(wn),t(Un),t(Rn);e.AgentProfileType={INDIVIDUAL:0,TEAM:1};e.ProfileType={USER:0,AGENT:1,LEAD:2,STAFF:3};e.Operation={NEW:0,UPDATE:1,DELETE:2};e.KafkaEntityType={AGENT:0,LOCATION:1,MARKET:2,STATE:3};e.AgentLocationEventType={AGENT_LOCATION:0,AGENT_MARKET:1,MARKET_LOCATION:2};e.FABLEntityType={AGENT:0,LOCATION:1,MARKET:2,STATE:3,TEAM:4,NON_COMPASS_AGENT:5};e.ProfileChangeType={IMAGE_URL_UPDATE:0,BIO_UPDATE:1,ENTIRE_PROFILE_UPDATE:2}});n(Bn),Bn.AgentProfileType,Bn.ProfileType,Bn.Operation,Bn.KafkaEntityType,Bn.AgentLocationEventType,Bn.FABLEntityType,Bn.ProfileChangeType;var jn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(Mn),t(Fn),t(wn),t(Bn),t(ln),t(Un);e.AgentStatus={RECRUITING:0,DECLINED:1,PREBOARDING:2,ACTIVE:3,IN_TRANSITION:4,SEPARATED:5}});n(jn),jn.AgentStatus;var Gn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0}),t(jn),t(ln);e.ConnectionSource={UNKNOWN:0,CRM_INVITE:1,MOBILE_INVITE:2,COLLECTION_INVITE:3,AGENT_PROFILE_PAGE:4,TEMPORARY_BRANDING_CTA:5}});n(Gn),Gn.ConnectionSource;var Vn=e(function(n,e){function t(n){return n&&n.__esModule?n:{default:n}}Object.defineProperty(e,"__esModule",{value:!0});var o=t(sn);t(un),t(ln),t(Rn),t(Gn),e.acceptInvitation=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return o.default.put("/api/v3/acs/invitations/"+n+"/accept",e,t)},e.agentsForClientRuntime=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n?o.default.get("/api/v3/acs/koa_agents_for_client_runtime",Object.assign({params:{json:JSON.stringify(n)}},e)):o.default.get("/api/v3/acs/koa_agents_for_client_runtime",e)},e.deleteBrandingAgent=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n?o.default.delete("/api/v3/acs/self/branding_agent",Object.assign({params:{json:JSON.stringify(n)}},e)):o.default.delete("/api/v3/acs/self/branding_agent",e)},e.getBrandingAgent=function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n?o.default.get("/api/v3/acs/self/branding_agent",Object.assign({params:{json:JSON.stringify(n)}},e)):o.default.get("/api/v3/acs/self/branding_agent",e)},e.getClientInvitations=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return n?o.default.get("/api/v3/acs/self/invitations",Object.assign({params:{json:JSON.stringify(n)}},e)):o.default.get("/api/v3/acs/self/invitations",e)},e.getConnectabilityDetails=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return o.default.get("/api/v3/acs/connectability_details/"+n,e)},e.putBrandingAgent=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return o.default.put("/api/v3/acs/self/branding_agent",n,e)},e.rejectInvitation=function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return e?o.default.delete("/api/v3/acs/invitations/"+n+"/reject",Object.assign({params:{json:JSON.stringify(e)}},t)):o.default.delete("/api/v3/acs/invitations/"+n+"/reject",t)}});n(Vn),Vn.acceptInvitation,Vn.agentsForClientRuntime;var Hn,Yn=Vn.deleteBrandingAgent;Vn.getBrandingAgent,Vn.getClientInvitations,Vn.getConnectabilityDetails,Vn.putBrandingAgent,Vn.rejectInvitation;var Kn,zn=1;r(Hn={},0,"application/vnd.mapbox-vector-tile"),r(Hn,zn,"image/gif");var Wn=1,Xn=2,Zn=3,qn=4,Jn=5,$n=6,Qn=7,ne=8,ee=9,te=10,oe=11,re=12,ae=13,ie=14,ce=15;r(Kn={},0,""),r(Kn,Wn,"cobrokerContacts"),r(Kn,Xn,"managementCompaniesContacts"),r(Kn,Zn,"leasingOfficeContacts"),r(Kn,qn,"salesOfficeContacts"),r(Kn,Jn,"accessContactContacts"),r(Kn,$n,"agentContacts"),r(Kn,Qn,"closingContactContacts"),r(Kn,ne,"landlordContacts"),r(Kn,ee,"tenantContacts"),r(Kn,te,"coexclusiveBrokerContacts"),r(Kn,oe,"managingAgentContacts"),r(Kn,re,"accountExecutiveContacts"),r(Kn,ae,"transferAgentContacts"),r(Kn,ie,"closingAgentContacts"),r(Kn,ce,"doormanContacts");var se,ue,le=0,pe=2,de=4,ve=6,fe=7,he=8,ge=9,me=10,Ne=11,be=12,Ee=14,xe=2,ye=3,Ae=4,_e=5,Oe=6,Le=7,we=8,Te=9,Ie=10,Se=11,Ce=12;r(se={},le,Te),r(se,pe,xe),r(se,de,Le),r(se,ve,Ae),r(se,fe,_e),r(se,he,ye),r(se,ge,Se),r(se,me,we),r(se,Ne,Oe),r(se,be,Ie),r(se,Ee,Ce),r(ue={},Te,le),r(ue,xe,pe),r(ue,Le,de),r(ue,Ae,ve),r(ue,_e,fe),r(ue,ye,he),r(ue,Se,ge),r(ue,we,me),r(ue,Oe,Ne),r(ue,Ie,be),r(ue,Ce,Ee);var ke={UNKNOWN:0,CRM_INVITE:1,MOBILE_INVITE:2,COLLECTION_INVITE:3,AGENT_PROFILE_PAGE:4,TEMPORARY_BRANDING_CTA:5},Re=void 0;function Me(n){var e=void 0;if(-1===n.indexOf(".esm.js"))throw new Error('cannot @uc/dynamic-import "'+n+'" because it does not end in ".esm.js"');try{e=new Function("return import('"+n+"')")()}catch(o){var t=n.replace(".esm.",".system.");e=(window.SystemJS?Promise.resolve():(Re||(Re=new Promise(function(n,e){var t=document.createElement("script");t.src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.21.4/system-production.js",t.integrity="sha256-ac20ORUAr6chRdI9o5jPCaDkU/rKU6GAodGnksNDlCU=",t.crossOrigin="anonymous",t.onload=n,t.onerror=e,document.documentElement.appendChild(t)})),Re)).then(function(){return SystemJS.import(t)}).catch(function(n){if(0!==n.message.indexOf("Invalid System.register form"))return SystemJS.import(t);throw n})}return e}var Fe=function(){return function(n,e){if(Array.isArray(n))return n;if(Symbol.iterator in Object(n))return function(n,e){var t=[],o=!0,r=!1,a=void 0;try{for(var i,c=n[Symbol.iterator]();!(o=(i=c.next()).done)&&(t.push(i.value),!e||t.length!==e);o=!0);}catch(n){r=!0,a=n}finally{try{!o&&c.return&&c.return()}finally{if(r)throw a}}return t}(n,e);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}();var Pe='button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])';!function(n,e){void 0===e&&(e={});var t=e.insertAt;if(n&&"undefined"!=typeof document){var o=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css","top"===t&&o.firstChild?o.insertBefore(r,o.firstChild):o.appendChild(r),r.styleSheet?r.styleSheet.cssText=n:r.appendChild(document.createTextNode(n))}}(".uc-modalLoader-loadingIndicator {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-pack: center;\n      -ms-flex-pack: center;\n          justify-content: center;\n  -webkit-box-align: center;\n      -ms-flex-align: center;\n          align-items: center;\n  height: 200px;\n}\n");var De=function(){function n(n,e){for(var t=0;t<e.length;t++){var o=e[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(n,o.key,o)}}return function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}}();var Ue=function(){function n(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};!function(n,e){if(!(n instanceof e))throw new TypeError("Cannot call a class as a function")}(this,n),this.data=e,this.defaultPrevented=!1}return De(n,[{key:"value",value:function(){return this.data.result||this.data.reason}},{key:"preventDefault",value:function(){this.defaultPrevented=!0}}]),n}();function Be(n,e){var t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(!n||""===n.trim())throw new Error("cannot load modal with empty URI");var r,a=je("div","cx-modal","is-open"),i=je("div","cx-modal-backdrop"),c=je("div","cx-modal-dialog"),s=je("div","uc-modalLoader-loadingIndicator"),u=je("div","cx-animDotShift");c.setAttribute("role","dialog"),c.setAttribute("aria-modal","true"),Object.keys(t).forEach(function(n){c.setAttribute(n,t[n])}),void 0!==o.loadingIndicatorDelay&&"number"==typeof o.loadingIndicatorDelay||(o.loadingIndicatorDelay=300),o.loadingIndicatorDelay>=0?setTimeout(function(){c.firstChild||(s.appendChild(u),c.appendChild(s))},o.loadingIndicatorDelay):(s.appendChild(u),c.appendChild(s)),a.style["z-index"]=(r=Array.from(document.getElementsByClassName("cx-modal is-open")).map(function(n){return window.getComputedStyle(n).getPropertyValue("z-index")}),(Math.max.apply(Math,function(n){if(Array.isArray(n)){for(var e=0,t=Array(n.length);e<n.length;e++)t[e]=n[e];return t}return Array.from(n)}(r))||1040)+10),a.appendChild(i),a.appendChild(c),document.body.appendChild(a);var l={},p=new Promise(function(t,o){var r=new x,s=!1,u=void 0;function p(n,e){n.forEach(function(n){return r.emit(n,e)}),r.removeAllListeners(),window.removeEventListener("popstate",f),document.removeEventListener("keydown",v),document.removeEventListener("click",g),document.body.contains(a)&&document.body.removeChild(a),u&&u.focus()}function d(n){n.defaultPrevented||(o(n.value()),p(["afterReject","beforeClose"],n))}function v(n){if("Escape"===n.key||"Esc"===n.key){var e=new Ue;r.emit("escPressed",e),r.emit("beforeExternalReject",e),d(e)}}function f(n){if("popstate"===n.type){var e=new Ue;r.emit("popstate",e),r.emit("beforeExternalReject",e),d(e)}}function h(n){if("Tab"===n.key){var e=c.querySelectorAll(Pe);if(e){var t=e[0],o=e[e.length-1];n.shiftKey&&document.activeElement===t&&(o&&o.focus(),n.preventDefault()),n.shiftKey||document.activeElement!==o||(t&&t.focus(),n.preventDefault())}}}function g(){var n=new Ue;r.emit("clickOutside",n),r.emit("beforeExternalReject",n),d(n)}l.close=function(){s=!0;var n=new Ue({reason:"Modal force closed"});o(n.value()),p(["afterReject","beforeClose"],n)},s||Me(function(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:window.location.origin;if(n.startsWith("/")||n.startsWith("http")||n.endsWith(".js"))return n;var t=n.split("/"),o=Fe(t,2),r=o[0],a=o[1];switch(t.length){case 1:return e+"/ucfe-assets/modal--"+r+"/latest/modal.esm.js";case 2:return e+"/ucfe-assets/modal--"+r+"/"+a+"/modal.esm.js";default:return e+"/ucfe-assets/modal--"+n}}(n)).then(function(n){if(!s){c.firstChild&&c.removeChild(c.firstChild),n.modalClassName&&c.classList.add(n.modalClassName),window.addEventListener("popstate",f),document.addEventListener("keydown",v),c.addEventListener("keydown",h),i.addEventListener("click",g);var t=n.modal(c,e,r);if(!c.contains(document.activeElement)){u=document.activeElement;var o=c.querySelector(Pe);o&&o.focus()}return t}}).then(function(n){var e;e=new Ue({result:n}),t(e.value()),p(["afterResolve","beforeClose"],e)},function(n){d(new Ue({reason:n}))})});return l.then=p.then.bind(p),l.catch=p.catch.bind(p),l.finally=p.finally.bind(p),l}function je(n){for(var e,t=document.createElement(n),o=arguments.length,r=Array(o>1?o-1:0),a=1;a<o;a++)r[a-1]=arguments[a];return(e=t.classList).add.apply(e,r),t}var Ge=e(function(n,e){n.exports=function(){function n(){var t;document.removeEventListener("readystatechange",n),"complete"===document.readyState?(t=document.querySelector(".uc-impersonationBanner-button"))&&t.addEventListener("click",e):document.addEventListener("readystatechange",n)}function e(n){var e="teamAccount"===n.currentTarget.name;window.fetch("/unimpersonate/",{credentials:"same-origin",method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({impersonation_tool:"impersonation_banner"})}).then(function(){window.location.href=e?"/app/home/":"/"})}var t="/* Replicates cx.react critical Banner */\n.uc-impersonationBanner {\n  display: flex;\n  align-items: center;\n  /* TODO: Remove fallback hex codes once all consuming apps point to cx/3 */\n  /* stylelint-disable color-no-hex */\n  border-bottom: 1px solid #D96D76;\n  border-bottom: 1px solid #D96D76;\n  border-bottom: 1px solid var(--cx-color-red60, #D96D76);\n  padding: 12px 24px;\n  padding: 12px var(--cx-spacing-3x);\n  flex-shrink: 0;\n  background-color: #F8E3E4;\n  background-color: #F8E3E4;\n  background-color: var(--cx-color-red30, #F8E3E4);\n  /* stylelint-enable color-no-hex */\n  color: #171717;\n  color: var(--cx-color-text);\n}\n/* Replicates cx.react info Banner */\n.uc-teamAccountBanner {\n  display: flex;\n  align-items: center;\n  /* TODO: Remove fallback hex codes once all consuming apps point to cx/3 */\n  /* stylelint-disable color-no-hex */\n  border-bottom: 1px solid #ADADAD;\n  border-bottom: 1px solid #ADADAD;\n  border-bottom: 1px solid var(--cx-color-grey60, #ADADAD);\n  padding: 12px 24px;\n  padding: 12px var(--cx-spacing-3x);\n  flex-shrink: 0;\n  background-color: #E8E8E8;\n  background-color: #E8E8E8;\n  background-color: var(--cx-color-grey30, #E8E8E8);\n  /* stylelint-enable color-no-hex */\n  color: #171717;\n  color: var(--cx-color-text);\n}\n.uc-teamAccountBanner-mobileWeb {\n  display: none;\n}\n@media (max-width: 767px) {\n  .uc-teamAccountBanner-web {\n    display: none;\n  }\n\n  .uc-teamAccountBanner-mobileWeb {\n    display: inline;\n  }\n}\n.uc-impersonationBanner-message {\n  margin-right: 16px;\n  margin-right: var(--cx-spacing-2x);\n}\n@media print {\n  .uc-teamAccountBanner,\n  .uc-impersonationBanner,\n  .uc-teamAccountBanner-mobileWeb {\n    display: none;\n  }\n}\n";function o(n){return n&&n.isImpersonating?"Team Account"===n.impersonationStatus?(e=n.displayName,o='<style type="text/css">'+t+"</style>\n",r='<span class="uc-impersonationBanner-message uc-teamAccountBanner-web">Logged in as '+e+"</span>",a='<button class="'+["cx-enclosedBtn","cx-enclosedBtn--sm","uc-impersonationBanner-button"].join(" ")+'" name="teamAccount">Switch To Personal</button>',i='<header class="'+["textIntent-body","uc-teamAccountBanner"].join(" ")+'"><span class="uc-impersonationBanner-message uc-teamAccountBanner-mobileWeb">Logged in as Team</span>'+r+a+"</header>",o+i):function(n){var e='<style type="text/css">'+t+"</style>\n",o='<span class="uc-impersonationBanner-message">You\'re currently accessing '+n+"'s account</span>",r='<button class="'+["cx-enclosedBtn","cx-enclosedBtn--sm","uc-impersonationBanner-button"].join(" ")+'">Stop</button>',a='<header class="'+["textIntent-body","uc-impersonationBanner"].join(" ")+'">'+(o+r)+"</header>";return e+a}(n.displayName):"";var e,o,r,a,i}return function(e){var t=document.createElement("template");t.innerHTML=o(e),document.body.insertBefore(t.content,document.body.firstElementChild),n()}}()}),Ve="clientx_agent_branding_corp_nav",He="clientx_agent_branding_opt_out",Ye="clientx_branding_override_modal",Ke="clientx_connection_management",ze=[{featureKey:Ve},{featureKey:He},{featureKey:Ye},{featureKey:Ke}];var We=e(function(n,e){var t;"undefined"!=typeof self&&self,t=function(){return function(n){var e={};function t(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return n[o].call(r.exports,r,r.exports,t),r.l=!0,r.exports}return t.m=n,t.c=e,t.d=function(n,e,o){t.o(n,e)||Object.defineProperty(n,e,{configurable:!1,enumerable:!0,get:o})},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},t.p="",t(t.s=3)}([function(n,e,t){var o=t(5),r=t(1),a=r.toHex,i=r.ceilHeapSize,c=t(6),s=function(n){for(n+=9;n%64>0;n+=1);return n},u=function(n,e){var t=new Int32Array(n,e+320,5),o=new Int32Array(5),r=new DataView(o.buffer);return r.setInt32(0,t[0],!1),r.setInt32(4,t[1],!1),r.setInt32(8,t[2],!1),r.setInt32(12,t[3],!1),r.setInt32(16,t[4],!1),o},l=function(){function n(e){if(function(n,e){if(!(n instanceof e))throw new TypeError("Cannot call a class as a function")}(this,n),(e=e||65536)%64>0)throw new Error("Chunk size must be a multiple of 128 bit");this._offset=0,this._maxChunkLen=e,this._padMaxChunkLen=s(e),this._heap=new ArrayBuffer(i(this._padMaxChunkLen+320+20)),this._h32=new Int32Array(this._heap),this._h8=new Int8Array(this._heap),this._core=new o({Int32Array:Int32Array},{},this._heap)}return n.prototype._initState=function(n,e){this._offset=0;var t=new Int32Array(n,e+320,5);t[0]=1732584193,t[1]=-271733879,t[2]=-1732584194,t[3]=271733878,t[4]=-1009589776},n.prototype._padChunk=function(n,e){var t=s(n),o=new Int32Array(this._heap,0,t>>2);return function(n,e){var t=new Uint8Array(n.buffer),o=e%4,r=e-o;switch(o){case 0:t[r+3]=0;case 1:t[r+2]=0;case 2:t[r+1]=0;case 3:t[r+0]=0}for(var a=1+(e>>2);a<n.length;a++)n[a]=0}(o,n),function(n,e,t){n[e>>2]|=128<<24-(e%4<<3),n[14+(2+(e>>2)&-16)]=t/(1<<29)|0,n[15+(2+(e>>2)&-16)]=t<<3}(o,n,e),t},n.prototype._write=function(n,e,t,o){c(n,this._h8,this._h32,e,t,o||0)},n.prototype._coreCall=function(n,e,t,o,r){var a=t;this._write(n,e,t),r&&(a=this._padChunk(t,o)),this._core.hash(a,this._padMaxChunkLen)},n.prototype.rawDigest=function(n){var e=n.byteLength||n.length||n.size||0;this._initState(this._heap,this._padMaxChunkLen);var t=0,o=this._maxChunkLen;for(t=0;e>t+o;t+=o)this._coreCall(n,t,o,e,!1);return this._coreCall(n,t,e-t,e,!0),u(this._heap,this._padMaxChunkLen)},n.prototype.digest=function(n){return a(this.rawDigest(n).buffer)},n.prototype.digestFromString=function(n){return this.digest(n)},n.prototype.digestFromBuffer=function(n){return this.digest(n)},n.prototype.digestFromArrayBuffer=function(n){return this.digest(n)},n.prototype.resetState=function(){return this._initState(this._heap,this._padMaxChunkLen),this},n.prototype.append=function(n){var e=0,t=n.byteLength||n.length||n.size||0,o=this._offset%this._maxChunkLen,r=void 0;for(this._offset+=t;e<t;)r=Math.min(t-e,this._maxChunkLen-o),this._write(n,e,r,o),e+=r,(o+=r)===this._maxChunkLen&&(this._core.hash(this._maxChunkLen,this._padMaxChunkLen),o=0);return this},n.prototype.getState=function(){var n=void 0;if(this._offset%this._maxChunkLen)n=this._heap.slice(0);else{var e=new Int32Array(this._heap,this._padMaxChunkLen+320,5);n=e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength)}return{offset:this._offset,heap:n}},n.prototype.setState=function(n){(this._offset=n.offset,20===n.heap.byteLength)?new Int32Array(this._heap,this._padMaxChunkLen+320,5).set(new Int32Array(n.heap)):this._h32.set(new Int32Array(n.heap));return this},n.prototype.rawEnd=function(){var n=this._offset,e=n%this._maxChunkLen,t=this._padChunk(e,n);this._core.hash(t,this._padMaxChunkLen);var o=u(this._heap,this._padMaxChunkLen);return this._initState(this._heap,this._padMaxChunkLen),o},n.prototype.end=function(){return a(this.rawEnd().buffer)},n}();n.exports=l,n.exports._core=o},function(n,e){for(var t=new Array(256),o=0;o<256;o++)t[o]=(o<16?"0":"")+o.toString(16);n.exports.toHex=function(n){for(var e=new Uint8Array(n),o=new Array(n.byteLength),r=0;r<o.length;r++)o[r]=t[e[r]];return o.join("")},n.exports.ceilHeapSize=function(n){var e=0;if(n<=65536)return 65536;if(n<16777216)for(e=1;e<n;e<<=1);else for(e=16777216;e<n;e+=16777216);return e},n.exports.isDedicatedWorkerScope=function(n){var e="WorkerGlobalScope"in n&&n instanceof n.WorkerGlobalScope,t="SharedWorkerGlobalScope"in n&&n instanceof n.SharedWorkerGlobalScope,o="ServiceWorkerGlobalScope"in n&&n instanceof n.ServiceWorkerGlobalScope;return e&&!t&&!o}},function(n,e,t){n.exports=function(){var n=t(0),e=!0;return self.onmessage=function(t){if(e){var o=t.data.data,r=t.data.file,a=t.data.id;if(void 0!==a&&(r||o)){var i=t.data.blockSize||4194304,c=new n(i);c.resetState();var s=function(n,e){n?self.postMessage({id:a,error:n.name}):self.postMessage({id:a,hash:e})};o&&function(n,e,t){try{t(null,n.digest(e))}catch(n){return t(n)}}(c,o,s),r&&function n(e,t,o,r,a){var i=new self.FileReader;i.onloadend=function(){if(i.error)return a(i.error);var c=i.result;t+=i.result.byteLength;try{e.append(c)}catch(n){return void a(n)}t<r.size?n(e,t,o,r,a):a(null,e.end())},i.readAsArrayBuffer(r.slice(t,t+o))}(c,0,i,r,s)}}},function(){e=!1}}},function(n,e,t){var o=t(4),r=t(0),a=t(7),i=t(2),c=t(1).isDedicatedWorkerScope,s="undefined"!=typeof self&&c(self);r.disableWorkerBehaviour=s?i():function(){},r.createWorker=function(){var n=o(2),e=n.terminate;return n.terminate=function(){URL.revokeObjectURL(n.objectURL),e.call(n)},n},r.createHash=a,n.exports=r},function(n,e,t){function o(n){var e={};function t(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return n[o].call(r.exports,r,r.exports,t),r.l=!0,r.exports}t.m=n,t.c=e,t.i=function(n){return n},t.d=function(n,e,o){t.o(n,e)||Object.defineProperty(n,e,{configurable:!1,enumerable:!0,get:o})},t.r=function(n){Object.defineProperty(n,"__esModule",{value:!0})},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,e){return Object.prototype.hasOwnProperty.call(n,e)},t.p="/",t.oe=function(n){throw console.error(n),n};var o=t(t.s=ENTRY_MODULE);return o.default||o}var r="[\\.|\\-|\\+|\\w|/|@]+",a="\\((/\\*.*?\\*/)?s?.*?("+r+").*?\\)";function i(n){return(n+"").replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}function c(n,e,o){var c={};c[o]=[];var s=e.toString(),u=s.match(/^function\s?\(\w+,\s*\w+,\s*(\w+)\)/);if(!u)return c;for(var l,p=u[1],d=new RegExp("(\\\\n|\\W)"+i(p)+a,"g");l=d.exec(s);)"dll-reference"!==l[3]&&c[o].push(l[3]);for(d=new RegExp("\\("+i(p)+'\\("(dll-reference\\s('+r+'))"\\)\\)'+a,"g");l=d.exec(s);)n[l[2]]||(c[o].push(l[1]),n[l[2]]=t(l[1]).m),c[l[2]]=c[l[2]]||[],c[l[2]].push(l[4]);return c}function s(n){return Object.keys(n).reduce(function(e,t){return e||n[t].length>0},!1)}n.exports=function(n,e){e=e||{};var r={main:t.m},a=e.all?{main:Object.keys(r)}:function(n,e){for(var t={main:[e]},o={main:[]},r={main:{}};s(t);)for(var a=Object.keys(t),i=0;i<a.length;i++){var u=a[i],l=t[u].pop();if(r[u]=r[u]||{},!r[u][l]&&n[u][l]){r[u][l]=!0,o[u]=o[u]||[],o[u].push(l);for(var p=c(n,n[u][l],u),d=Object.keys(p),v=0;v<d.length;v++)t[d[v]]=t[d[v]]||[],t[d[v]]=t[d[v]].concat(p[d[v]])}}return o}(r,n),i="";Object.keys(a).filter(function(n){return"main"!==n}).forEach(function(n){for(var e=0;a[n][e];)e++;a[n].push(e),r[n][e]="(function(module, exports, __webpack_require__) { module.exports = __webpack_require__; })",i=i+"var "+n+" = ("+o.toString().replace("ENTRY_MODULE",JSON.stringify(e))+")({"+a[n].map(function(e){return JSON.stringify(e)+": "+r[n][e].toString()}).join(",")+"});\n"}),i=i+"("+o.toString().replace("ENTRY_MODULE",JSON.stringify(n))+")({"+a.main.map(function(n){return JSON.stringify(n)+": "+r.main[n].toString()}).join(",")+"})(self);";var u=new window.Blob([i],{type:"text/javascript"});if(e.bare)return u;var l=(window.URL||window.webkitURL||window.mozURL||window.msURL).createObjectURL(u),p=new window.Worker(l);return p.objectURL=l,p}},function(n,e){n.exports=function(n,e,t){"use asm";var o=new n.Int32Array(t);function r(n,e){n=n|0;e=e|0;var t=0,r=0,a=0,i=0,c=0,s=0,u=0,l=0,p=0,d=0,v=0,f=0,h=0,g=0;a=o[e+320>>2]|0;c=o[e+324>>2]|0;u=o[e+328>>2]|0;p=o[e+332>>2]|0;v=o[e+336>>2]|0;for(t=0;(t|0)<(n|0);t=t+64|0){i=a;s=c;l=u;d=p;f=v;for(r=0;(r|0)<64;r=r+4|0){g=o[t+r>>2]|0;h=((a<<5|a>>>27)+(c&u|~c&p)|0)+((g+v|0)+1518500249|0)|0;v=p;p=u;u=c<<30|c>>>2;c=a;a=h;o[n+r>>2]=g}for(r=n+64|0;(r|0)<(n+80|0);r=r+4|0){g=(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])<<1|(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])>>>31;h=((a<<5|a>>>27)+(c&u|~c&p)|0)+((g+v|0)+1518500249|0)|0;v=p;p=u;u=c<<30|c>>>2;c=a;a=h;o[r>>2]=g}for(r=n+80|0;(r|0)<(n+160|0);r=r+4|0){g=(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])<<1|(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])>>>31;h=((a<<5|a>>>27)+(c^u^p)|0)+((g+v|0)+1859775393|0)|0;v=p;p=u;u=c<<30|c>>>2;c=a;a=h;o[r>>2]=g}for(r=n+160|0;(r|0)<(n+240|0);r=r+4|0){g=(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])<<1|(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])>>>31;h=((a<<5|a>>>27)+(c&u|c&p|u&p)|0)+((g+v|0)-1894007588|0)|0;v=p;p=u;u=c<<30|c>>>2;c=a;a=h;o[r>>2]=g}for(r=n+240|0;(r|0)<(n+320|0);r=r+4|0){g=(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])<<1|(o[r-12>>2]^o[r-32>>2]^o[r-56>>2]^o[r-64>>2])>>>31;h=((a<<5|a>>>27)+(c^u^p)|0)+((g+v|0)-899497514|0)|0;v=p;p=u;u=c<<30|c>>>2;c=a;a=h;o[r>>2]=g}a=a+i|0;c=c+s|0;u=u+l|0;p=p+d|0;v=v+f|0}o[e+320>>2]=a;o[e+324>>2]=c;o[e+328>>2]=u;o[e+332>>2]=p;o[e+336>>2]=v}return{hash:r}}},function(n,e){var t=this,o=void 0;"undefined"!=typeof self&&void 0!==self.FileReaderSync&&(o=new self.FileReaderSync);var r=function(n,e,t,o,r,a){var i=void 0,c=a%4,s=(r+c)%4,u=r-s;switch(c){case 0:e[a]=n[o+3];case 1:e[a+1-(c<<1)|0]=n[o+2];case 2:e[a+2-(c<<1)|0]=n[o+1];case 3:e[a+3-(c<<1)|0]=n[o]}if(!(r<s+(4-c))){for(i=4-c;i<u;i=i+4|0)t[a+i>>2|0]=n[o+i]<<24|n[o+i+1]<<16|n[o+i+2]<<8|n[o+i+3];switch(s){case 3:e[a+u+1|0]=n[o+u+2];case 2:e[a+u+2|0]=n[o+u+1];case 1:e[a+u+3|0]=n[o+u]}}};n.exports=function(n,e,a,i,c,s){if("string"==typeof n)return function(n,e,t,o,r,a){var i=void 0,c=a%4,s=(r+c)%4,u=r-s;switch(c){case 0:e[a]=n.charCodeAt(o+3);case 1:e[a+1-(c<<1)|0]=n.charCodeAt(o+2);case 2:e[a+2-(c<<1)|0]=n.charCodeAt(o+1);case 3:e[a+3-(c<<1)|0]=n.charCodeAt(o)}if(!(r<s+(4-c))){for(i=4-c;i<u;i=i+4|0)t[a+i>>2]=n.charCodeAt(o+i)<<24|n.charCodeAt(o+i+1)<<16|n.charCodeAt(o+i+2)<<8|n.charCodeAt(o+i+3);switch(s){case 3:e[a+u+1|0]=n.charCodeAt(o+u+2);case 2:e[a+u+2|0]=n.charCodeAt(o+u+1);case 1:e[a+u+3|0]=n.charCodeAt(o+u)}}}(n,e,a,i,c,s);if(n instanceof Array)return r(n,e,a,i,c,s);if(t&&t.Buffer&&t.Buffer.isBuffer(n))return r(n,e,a,i,c,s);if(n instanceof ArrayBuffer)return r(new Uint8Array(n),e,a,i,c,s);if(n.buffer instanceof ArrayBuffer)return r(new Uint8Array(n.buffer,n.byteOffset,n.byteLength),e,a,i,c,s);if(n instanceof Blob)return function(n,e,t,r,a,i){var c=void 0,s=i%4,u=(a+s)%4,l=a-u,p=new Uint8Array(o.readAsArrayBuffer(n.slice(r,r+a)));switch(s){case 0:e[i]=p[3];case 1:e[i+1-(s<<1)|0]=p[2];case 2:e[i+2-(s<<1)|0]=p[1];case 3:e[i+3-(s<<1)|0]=p[0]}if(!(a<u+(4-s))){for(c=4-s;c<l;c=c+4|0)t[i+c>>2|0]=p[c]<<24|p[c+1]<<16|p[c+2]<<8|p[c+3];switch(u){case 3:e[i+l+1|0]=p[l+2];case 2:e[i+l+2|0]=p[l+1];case 1:e[i+l+3|0]=p[l]}}}(n,e,a,i,c,s);throw new Error("Unsupported data type.")}},function(n,e,t){var o=t(0),r=t(1).toHex,a=function(){function n(){!function(n,e){if(!(n instanceof e))throw new TypeError("Cannot call a class as a function")}(this,n),this._rusha=new o,this._rusha.resetState()}return n.prototype.update=function(n){return this._rusha.append(n),this},n.prototype.digest=function(n){var e=this._rusha.rawEnd().buffer;if(!n)return e;if("hex"===n)return r(e);throw new Error("unsupported digest encoding")},n}();n.exports=function(){return new a}}])},n.exports=t()});n(We);var Xe=new We,Ze="undefined"!=typeof window?window:self,qe=Ze.crypto||Ze.msCrypto||{},Je=qe.subtle||qe.webkitSubtle;try{Je.digest({name:"sha-1"},new Uint8Array).catch(function(){Je=!1})}catch(n){Je=!1}var $e=function(n){return Xe.digest(n)},Qe=["seattle"];function nt(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=t.isAgent,r=t.isBranded;return e.filter(function(e){return function(n,e){if(e&&n.hideIfBranded)return!1;return!0}(e,r)&&tt(n.experiments,e.experiment)&&function(n,e,t){var o=void 0!==e.children;if(o){Object.assign(e,{children:nt(n,e.children,t)});var r=n.geoId,a=e.children.filter(function(n){return!("Coming Soon"===n.label&&Qe.includes(r))});Object.assign(e,{children:a})}return!o||o&&e.children.length>0}(n,e,{isAgent:o,isBranded:r})}).map(function(n){return n.url=function(n,e){return e?n.agentUrl||n.globalUrl:n.nonAgentUrl||n.globalUrl}(n,o),n.active=function n(e){var t=window.location.pathname;if(Array.isArray(e))return e.some(function(e){return n(e)});if("string"==typeof e)return t.startsWith(e);if(e&&"function"==typeof e.test)return e.test(t);return!1}(n.isActive||n.url),n})}function et(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return Array.isArray(e)?e.filter(function(e){return tt(n,e.experiment)}):[]}function tt(n,e){if(!e)return!0;var t="!"===e.charAt(0);t&&(e=e.substr(1));var o=$e(e);return t?!n||!n[o]:!(!n||!n[o])}var ot='<svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 112 16"\n    width="112" height="16">\n  <title>Compass</title>\n  <path d="M53,.457,45,11.314,37,.457V15h2V6.543l6,8.143,6-8.143V15h2ZM60,15H58V1h6.5a4.5,4.5,0,0,1,0,9H60Zm0-7h4.5a2.5,2.5,0,0,0,0-5H60Zm22.863,7h2.275L77.5.9,69.863,15h2.275l1.625-3h7.475Zm-8.018-5L77.5,5.1,80.155,10ZM97,11.085c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375A4.494,4.494,0,0,0,91.94,13.29c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L91,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C95.516,7.487,97,8.96,97,11.085Zm14,0c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375a4.494,4.494,0,0,0,3.468,1.775c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L105,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C109.516,7.487,111,8.96,111,11.085Zm-98.611.8h0a5.5,5.5,0,1,1,0-7.778h0l.354.354L14.157,3.05,13.8,2.7h0a7.5,7.5,0,1,0,0,10.607l0,0h0l.354-.353-1.414-1.415ZM25.5.5A7.5,7.5,0,1,0,33,8,7.5,7.5,0,0,0,25.5.5Zm0,13A5.5,5.5,0,1,1,31,8,5.5,5.5,0,0,1,25.5,13.5Zm3.207-7.293L27.293,4.793l-5,5,1.414,1.414Z"/>\n</svg>\n',rt='<svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"\n    width="24" height="24">\n  <path d="M14.389,12.365a5,5,0,1,0-4.778,0A8.014,8.014,0,0,0,4,20a.5.5,0,0,0,1,0,7,7,0,0,1,14,0,.5.5,0,0,0,1,0A8.014,8.014,0,0,0,14.389,12.365ZM8,8a4,4,0,1,1,4,4A4,4,0,0,1,8,8Z"/>\n</svg>\n',at=":root {\n  --drawerWidth: 286px;\n  --flyoutItemHeight: 39px;\n  --navHeight: 48px;\n  --locationLookupHeight: 40px;\n  --iconSizeMedium: 24px;\n}\n\n.uc-corpNav {\n  display: flex;\n  justify-content: space-between;\n  position: relative;\n  width: 100%;\n  height: 48px;\n  height: var(--navHeight);\n  border-bottom: 1px solid rgba(0, 0, 0, 0.1);\n  border-bottom: 1px solid var(--cx-color-dropShadow);\n  color: #171717;\n  color: var(--cx-color-text);\n  background-color: #FFFFFF;\n  background-color: var(--cx-color-white);\n  -webkit-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n  z-index: 1000;\n  z-index: var(--cx-zIndex-10);\n}\n\n/* Ensure toast, when shown, is above the hamburger menu */\n\n#corp-nav-toast-container {\n  z-index: 2000;\n  z-index: calc(var(--cx-zIndex-10)*2);\n}\n\n.uc-corpNav,\n.uc-corpNav * {\n  box-sizing: border-box;\n}\n\n.uc-corpNav-a {\n  text-decoration: none;\n}\n\n.uc-corpNav-button {\n  background-color: transparent;\n}\n\n.uc-corpNav-svg {\n  display: block;\n  margin: auto;\n  color: inherit;\n  fill: currentColor;\n}\n\n.uc-corpNav-iconSizeMedium {\n  width: 24px;\n  width: var(--iconSizeMedium);\n  height: 24px;\n  height: var(--iconSizeMedium);\n}\n\n.uc-corpNav-header {\n  display: flex;\n  align-items: center;\n  flex-grow: 1;\n  height: 100%;\n}\n\n.uc-corpNav-hamburger {\n  display: flex;\n  align-items: center;\n  width: 48px;\n  height: 100%;\n  cursor: pointer;\n}\n\n.uc-corpNav-hamburger-close {\n  cursor: pointer;\n}\n\n.uc-corpNav-compassLogotype {\n  display: flex;\n  align-items: center;\n  width: 123px;\n  height: 100%;\n  padding-right: 24px;\n  color: inherit;\n}\n\n.uc-corpNav-compassLogotype-hamburger {\n  display: flex;\n  align-items: center;\n  width: 123px;\n  height: 100%;\n  padding-left: 16px;\n  padding-left: var(--cx-spacing-2x);\n  color: inherit;\n}\n\n.uc-corpNav-compassLogotype svg {\n  width: 98px;\n  height: 14px;\n}\n\n.uc-corpNav-menuWrapper {\n  display: flex;\n  height: 100%;\n}\n\n.uc-corpNav-menu {\n  display: none;\n  padding: 0 10px;\n  height: 100%;\n}\n\n.uc-corpNav-menu > .uc-corpNav-a,\n.uc-corpNav-menu > .uc-corpNav-button {\n  border-top: 3px solid transparent;\n  border-bottom: 3px solid transparent;\n}\n\n.uc-corpNav-userMenu {\n  display: flex;\n}\n\n.uc-corpNav-menuItem {\n  display: flex;\n  align-items: center;\n  border: none;\n  padding: 0 10px;\n  height: 100%;\n  -webkit-appearance: none;\n     -moz-appearance: none;\n          appearance: none;\n  color: inherit;\n  font-weight: 500;\n  font-weight: var(--cx-font-weightMedium);\n  cursor: pointer;\n  transition: all 0.1s ease;\n}\n\n.uc-corpNav-menuItem--disabled {\n  cursor: default;\n}\n\n.uc-corpNav-dropdown {\n  display: flex;\n  position: relative;\n}\n\n.uc-corpNav-dropdownIcon {\n  margin-left: 4px;\n}\n\n.uc-corpNav-dropdown-checkbox {\n  display: none;\n}\n\n.uc-corpNav-flyout {\n  display: none;\n  position: absolute;\n  top: 47px;\n  top: calc(var(--navHeight) - 1px);\n  margin: 0;\n  padding: 14px 0 18px;\n  min-width: 100%;\n  max-height: 307px;\n  max-height: calc(var(--flyoutItemHeight)*7 + 34px);\n  padding-top: 14px;\n  padding-bottom: 18px;\n  overflow-y: auto;\n  white-space: nowrap;\n  background-color: #FFFFFF;\n  background-color: var(--cx-color-white);\n  transform: translateX(-10px);\n  list-style-type: none;\n}\n\n.uc-corpNav-flyout--flipped {\n  right: -10px;\n}\n\n.uc-corpNav-badge {\n  width: 20px;\n  height: 20px;\n  margin-left: 16px;\n  margin-left: var(--cx-spacing-2x);\n  border-radius: 12px;\n  color: #FFFFFF;\n  color: var(--cx-color-onDarkText);\n  /* TODO: set to var(--cx-color-blue80) when new tokens get merged into global cx.css  */\n  background-color: rgb(0, 97, 223);\n  background-color: #0064E5;\n  background-color: var(--cx-color-blue80, rgb(0, 97, 223));\n  text-align: center;\n  font-size: 12px;\n  font-size: var(--cx-font-sizeXs);\n  font-weight: 500;\n  font-weight: var(--cx-font-weightMedium);\n}\n\n.uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown > .uc-corpNav-flyout,\n.uc-corpNav-dropdown.is-active > .uc-corpNav-flyout {\n  display: block;\n}\n\n.uc-corpNav-flyoutItem {\n  padding: 0 30px 0 16px;\n  height: 39px;\n  height: var(--flyoutItemHeight);\n  font-weight: 400;\n  font-weight: var(--cx-font-weightRegular);\n  color: #171717;\n  color: var(--cx-color-text);\n  cursor: pointer;\n}\n\n.uc-corpNav-avatar {\n  width: 44px;\n}\n\n.uc-corpNav-drawer {\n  display: flex;\n  flex-direction: column;\n  position: fixed;\n  top: 0;\n  left: -286px;\n  left: calc(var(--drawerWidth)*-1);\n  width: 286px;\n  width: var(--drawerWidth);\n  height: 100vh;\n  background-color: inherit;\n  overflow-y: auto;\n  transition: left 0.3s ease;\n  z-index: 1000;\n  z-index: var(--cx-zIndex-10);\n  -webkit-overflow-scrolling: touch;\n}\n\n.uc-corpNav-drawer.is-active > * {\n  visibility: unset;\n}\n\n.uc-corpNav-drawer > * {\n  visibility: hidden;\n}\n\n.uc-corpNav-drawerOpen {\n  overflow-y: hidden;\n}\n\n.uc-corpNav-backdrop {\n  position: fixed;\n  top: 0;\n  left: 0;\n  width: 100vw;\n  height: 100vh;\n  background-color: #000000;\n  background-color: var(--cx-color-black);\n  opacity: 0.5;\n  cursor: pointer;\n  visibility: hidden;\n  z-index: 900;\n  z-index: var(--cx-zIndex-9);\n}\n\n.uc-corpNav-drawer.is-active {\n  left: 0;\n  width: unset;\n  min-width: 286px;\n  min-width: var(--drawerWidth);\n}\n\n.uc-corpNav-drawer.is-active ~ .uc-corpNav-backdrop {\n  visibility: visible;\n}\n\n.uc-corpNav-drawerTop {\n  display: flex;\n  margin: 16px 16px 32px;\n  flex-shrink: 0;\n}\n\n.uc-corpNav-logo {\n  color: inherit;\n  fill: currentColor;\n}\n\n.uc-corpNav-close {\n  padding: 4px;\n  width: 24px;\n  height: 24px;\n  color: inherit;\n  fill: currentColor;\n  cursor: pointer;\n}\n\n.uc-corpNav-drawer .uc-corpNav-menuItem {\n  height: 40px;\n  min-height: 40px;\n  padding-left: 16px;\n  padding-left: var(--cx-spacing-2x);\n  font-weight: 400;\n  font-weight: var(--cx-font-weightRegular);\n}\n\n.uc-corpNav-menuItem.uc-corpNav-accordionItem {\n  padding-left: 32px;\n  padding-left: var(--cx-spacing-4x);\n  color: #0064E5;\n  color: var(--cx-color-interactive);\n}\n\n.uc-corpNav-label {\n  position: relative;\n  -webkit-tap-highlight-color: transparent;\n}\n\n.uc-corpNav-accordion {\n  display: none;\n}\n\n.uc-corpNav-accordionHeader {\n  position: relative;\n  cursor: pointer;\n}\n\n.uc-corpNav-accordionHeader:after {\n  content: '';\n  position: absolute;\n  top: 50%;\n  right: 16px;\n  width: 16px;\n  height: 16px;\n  margin-top: -8px;\n\n  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M8%2011.914L2.293%206.207l1.414-1.414L8%209.086l4.293-4.293%201.414%201.414L8%2011.914z%22%2F%3E%0A%3Cdefs%3E%3Cstyle%3Epath%20%7B%0A%20%20%20%20%20%20fill%3A%20%23000000%3B%0A%20%20%20%20%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3C%2Fsvg%3E%0A')\n}\n\n.uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader:after {\n  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M12.293%2011.207L8%206.914l-4.293%204.293-1.414-1.414L8%204.086l5.707%205.707-1.414%201.414z%22%2F%3E%0A%3Cdefs%3E%3Cstyle%3Epath%20%7B%0A%20%20%20%20%20%20fill%3A%20var%28--cx-color-blue100%2C%20%230038AC%29%3B%0A%20%20%20%20%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3C%2Fsvg%3E%0A')\n}\n\n.uc-corpNav-accordionMenu {\n  height: 0;\n  opacity: 0;\n  overflow-y: hidden;\n  transition: opacity 200ms ease-out;\n}\n\n.uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {\n  height: auto;\n  opacity: 1;\n}\n\n.uc-corpNav-auth {\n  display: flex;\n  margin: 16px;\n}\n\n.uc-corpNav-auth button {\n  flex: 1;\n}\n\n/* Start transparent styles block */\n\n.uc-corpNav--transparent {\n  position: absolute;\n  /* stylelint-disable color-no-hex */\n  border-color: #00000001;\n  color: #FFFFFF;\n  color: var(--cx-color-white);\n  background-color: #00000001;\n}\n\n.uc-corpNav--transparent::before {\n  content: '';\n  display: block;\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: -80%;\n  left: 0;\n  z-index: -1;\n  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);\n}\n\n.uc-corpNav--transparent .uc-corpNav-drawer {\n  color: #171717;\n  color: var(--cx-color-text);\n  background-color: #FFFFFF;\n  background-color: var(--cx-color-white);\n}\n\n/* End transparent styles block */\n\n/* Start location-lookup styles block */\n\n.uc-locationLookup {\n  margin: 4px 0 0;\n  /* needed so statically positioned results is placed properly */\n  align-self: flex-start;\n  /* Sizes the component to a static width */\n  /* Particularly so that flex wrapping tokens later still keeps consistent component width */\n  width: 100%;\n  min-width: 308px;\n  max-width: 420px;\n  /* needed so that inner clicks don't trigger on elements \"underneath\" the static location list */\n  z-index: 300;\n  z-index: var(--cx-zIndex-3);\n}\n\n.uc-locationLookup-contentWrapper {\n  display: flex;\n  align-items: center;\n  border: none;\n  height: 40px;\n  height: var(--locationLookupHeight);\n  box-shadow: none;\n}\n\n.uc-locationLookup-inputContainer {\n  display: flex;\n  padding: 0;\n  flex: 1;\n  height: 100%;\n  border-radius: 0px;\n  overflow: hidden;\n}\n\n/* Modify font-size on tablet + desktop, to fit large amount of placeholder content */\n\n/* The mobile view uses a different/shorter placeholder, so this is unneeded there */\n\n@media (min-width: 768px) {\n  .uc-locationLookup-tokenContainer + .uc-locationLookup-input::-moz-placeholder {\n    font-size: 14px;\n    font-size: var(--cx-font-sizeSm);\n  }\n  .uc-locationLookup-tokenContainer + .uc-locationLookup-input:-ms-input-placeholder {\n    font-size: 14px;\n    font-size: var(--cx-font-sizeSm);\n  }\n  .uc-locationLookup-tokenContainer + .uc-locationLookup-input::placeholder {\n    font-size: 14px;\n    font-size: var(--cx-font-sizeSm);\n  }\n}\n\n/* Start with hiding the inline magnifying glass that appears when the input is focused */\n\n.uc-locationLookup-expandedSearchIcon {\n  display: none;\n  margin: 8px 8px 8px 16px;\n  margin: var(--cx-spacing-1x) var(--cx-spacing-1x) var(--cx-spacing-1x) var(--cx-spacing-2x);\n}\n\n/* Start with hiding the 'x' button that appears when the input is non-zero length and focused */\n\n.uc-locationLookup-clearButton {\n  display: none;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n}\n\n/*\n * Target {containerClass} button to override .uc-corpNav button\n */\n\n.uc-locationLookup-searchButton {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  border: none;\n  padding: 0;\n  width: 40px;\n  height: 40px;\n  height: var(--locationLookupHeight);\n  border-radius: 0;\n}\n\n.uc-locationLookup-searchButton>.cx-icon {\n  width: 16px;\n  width: var(--cx-btn-iconWidth);\n  height: 16px;\n  height: var(--cx-btn-iconHeight);\n}\n\n.uc-locationLookup-inlineSearchIcon {\n  width: 16px;\n  width: var(--cx-btn-iconWidth);\n  height: 16px;\n  height: var(--cx-btn-iconHeight);\n}\n\n.uc-locationLookup-mobileInput {\n  display: flex;\n  justify-content: space-between;\n  position: relative;\n  border: none;\n  flex-grow: 1;\n  height: 40px;\n  border-radius: 0;\n}\n\n/* Branding styles */\n\n.uc-corpNav-flyoutItem-branded {\n  padding: 0 16px;\n  padding: 0 var(--cx-spacing-2x);\n}\n\n.uc-corpNav-brandingAgent-profile {\n  display: flex;\n}\n\n.uc-corpNav-brandingAgent-info,\n.uc-corpNav-brandingAgent-profile,\n.uc-corpNav-accordionMenu {\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n}\n\n.uc-corpNav-brandingAgent-profileLink {\n  text-decoration: none;\n  color: #171717;\n  color: var(--cx-color-text);\n}\n\n.uc-corpNav-brandingAgent-avatarContainer {\n  padding-right: 16px;\n  padding-right: var(--cx-spacing-2x);\n}\n\n.uc-corpNav-brandingAgent-avatarContainer-hamburger,\n.uc-corpNav-brandingAgent-nameContainer,\n.uc-corpNav-brandingAgent-hamburgerContactSection {\n  display: flex;\n  justify-content: center;\n}\n\n.uc-corpNav-brandingAgent-avatarContainer-hamburger {\n  padding-bottom: 8px;\n  padding-bottom: var(--cx-spacing-1x);\n}\n\n.uc-corpNav-brandingAgent-image {\n  vertical-align: text-top;\n}\n\n.uc-corpNav-brandingAgent-name {\n  font-size: 18px;\n  font-size: var(--cx-fontSize--lg);\n  font-weight: 500;\n  font-weight: var(--cx-font-weightMedium);\n}\n\n.uc-corpNav-brandingAgent-name-lowEmph,\n.uc-corpNav-brandingAgent-name-lowEmph:hover {\n  color: #000000;\n  color: var(--cx-color-black);\n}\n\n.uc-corpNav-brandingAgent-title {\n  font-size: 14px;\n  font-size: var(--cx-font-sizeSm);\n}\n\n.uc-corpNav-brandingAgent-details {\n  display: grid;\n}\n\n.uc-corpNav-brandingAgent-emailAndPhone {\n  -webkit-margin-after: 0;\n          margin-block-end: 0;\n  -webkit-padding-start: unset;\n          padding-inline-start: unset;\n  list-style: none;\n  font-size: 14px;\n  font-size: var(--cx-font-sizeSm);\n}\n\n.uc-corpNav-brandingAgent-phone,\n.uc-corpNav-brandingAgent-email,\n.uc-corpNav-brandingAgent-remove,\n.uc-corpNav-brandingAgent-manageLink {\n  color: #6C6C6C;\n  color: var(--cx-color-textSubtle);\n  text-align: left;\n}\n\n.uc-corpNav-brandingAgent-phone:hover, .uc-corpNav-brandingAgent-email:hover, .uc-corpNav-brandingAgent-remove:hover, .uc-corpNav-brandingAgent-manageLink:hover {\n    color: #171717;\n    color: var(--cx-color-text);\n  }\n\n.uc-corpNav-brandingAgent-addRemove {\n  padding-top: 8px;\n  padding-top: var(--cx-spacing-1x);\n  text-align: left;\n}\n\n.uc-corpNav-brandingAgent-dropdownEmailOrPhone {\n  margin-top: 8px;\n  margin-top: var(--cx-spacing-1x);\n}\n\n.uc-corpNav-brandingAgent-hamburgerContactSection {\n  margin: 0;\n  -webkit-margin-after: 0;\n          margin-block-end: 0;\n  padding-top: 8px;\n  padding-top: var(--cx-spacing-1x);\n  -webkit-padding-start: unset;\n          padding-inline-start: unset;\n  list-style: none;\n  font-size: 14px;\n  font-size: var(--cx-font-sizeSm);\n}\n\n.uc-corpNav-brandingAgent-hamburgerEmailOrPhone {\n  display: inline;\n  margin: 0 8px;\n  margin: 0 var(--cx-spacing-1x);\n}\n\n.uc-corpNav-agentBranding-hamburger {\n  margin: 0 auto;\n  padding: 0 16px 0 16px;\n  padding: 0 var(--cx-spacing-2x) 0 var(--cx-spacing-2x);\n  min-width: 264px;\n  max-width: 448px;\n  border-bottom: 1px solid #DADADA;\n  border-bottom: 1px solid var(--cx-color-border);\n  text-align: center;\n}\n\n.uc-corpNav-brandingAgent-hamburger-edit {\n  padding: 16px 0;\n  padding: var(--cx-spacing-2x) 0;\n}\n\n.uc-corpNav-agentBranding-hamburger-profile {\n  padding-bottom: 8px;\n  padding-bottom: var(--cx-spacing-1x);\n  text-decoration: none;\n}\n\n/* Mobile styles */\n\n@media (max-width: 767px) {\n  .uc-locationLookup {\n    position: fixed;\n    max-width: 100vw;\n    opacity: 0;\n    visibility: hidden;\n  }\n\n  .uc-locationLookup-mobileInput {\n    display: flex;\n    margin: auto;\n  }\n\n  .uc-locationLookup-searchButton {\n    position: absolute;\n    right: 0;\n  }\n\n  .uc-corpNav-menuItem {\n    font-size: 16px;\n    font-size: var(--cx-font-sizeMd);\n  }\n}\n\n/* Mobile styles with location lookup enabled */\n\n@media (max-width: 767px) {\n\n.uc-corpNav--lookupLocationLookupEnabled .uc-corpNav-menuWrapper,\n  .uc-corpNav--lookupLocationLookupEnabled .uc-corpNav-a.uc-corpNav-compassLogotype { /* stylelint-disable-line max-nesting-depth */\n      display: none\n  }\n    }\n\n@media (max-width: 767px) {\n\n.uc-corpNav--lookupLocationLookupEnabled .uc-corpNav-hamburger { /* stylelint-disable-line max-nesting-depth */\n      border-right: 1px solid rgba(0, 0, 0, 0.15)\n  }\n    }\n\n.uc-corpNav--transparent .uc-locationLookup-mobileInput .uc-locationLookup-mobileContent {\n    color: #ADADAD;\n    color: #ADADAD;\n    color: var(--cx-color-grey60, var(--cx-color-mediumLightNeutral));\n  }\n\n.uc-corpNav--transparent .uc-locationLookup-mobileInput .uc-locationLookup-searchButton .cx-icon {\n    fill: #000000;\n    fill: var(--cx-color-black);\n  }\n\n/* critical CSS for hiding mobile/non mobile DOM content as needed */\n\n/* Hide the element when window is above mobile breakpoint */\n\n@media not all and (max-width: 767px) {\n  .uc-typeahead-hideOnNonMobile {\n    display: none !important;\n  }\n}\n\n/* Hide the element when window is below mobile breakpoint */\n\n@media all and (max-width: 767px) {\n  .uc-typeahead-hideOnMobile {\n    display: none !important;\n  }\n}\n\n.uc-locationLookup-mobileContent {\n  position: absolute;\n  margin: 0;\n  border: none;\n  padding: 8px 8px;\n  padding: var(--cx-verticalPadding--md) var(--cx-horizontalPadding--md);\n  width: calc(100% - 40px);\n  height: 100%;\n  background: none;\n  color: #8D8D8D;\n  color: #8D8D8D;\n  color: var(--cx-color-grey70, var(--cx-color-mediumNeutral));\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  overflow: hidden;\n  text-align: left;\n}\n\n/* End location-lookup styles block */\n\n@media (min-width: 1280px) {\n  .uc-corpNav-compassLogotype {\n    width: 152px; /* 16px left padding + 112px svg + 24px right padding */\n    padding-left: 16px;\n  }\n\n  /* inherit size from svg width & height attrs */\n  .uc-corpNav-compassLogotype svg {\n    width: auto;\n    height: auto;\n  }\n\n  .uc-corpNav-menu {\n    display: flex;\n  }\n\n  .uc-corpNav-userMenu::before {\n    content: '';\n    position: relative;\n    top: 17px;\n    left: -10px;\n    height: 16px;\n    border-left: 1px solid;\n    opacity: 0.15;\n  }\n\n  .uc-corpNav-drawer,\n  .uc-corpNav-hamburger {\n    display: none;\n  }\n}\n\n@media (hover: hover) and (pointer: fine) {\n  .uc-corpNav-menuItem:hover {\n    color: #0064E5;\n    color: #0064E5;\n    color: var(--cx-color-blue80, var(--cx-color-actionableLowEmphHover));\n    background: #F4F4F4;\n    background: #F4F4F4;\n    background: var(--cx-color-grey20, var(--cx-color-faintNeutral));\n  }\n\n  .uc-corpNav-menuItem--disabled:hover {\n    color: inherit;\n    background-color: transparent;\n  }\n}\n\n/*\n * Fix clicks on the documentElement (used to close dropdowns) not being detected on iOS\n * See: https://gravitydept.com/blog/js-click-event-bubbling-on-ios &\n * https://stackoverflow.com/a/47818418\n */\n\n@supports (-webkit-overflow-scrolling: touch) {\n  body {\n    cursor: pointer;\n  }\n}\n\n.uc-corpNav-menuItem:active,\n.uc-corpNav-menuItem.is-active,\n.uc-corpNav-flyoutItem.is-selected {\n  color: #171717;\n  color: var(--cx-color-selectedText);\n  background-color: #F0F6FF;\n  background-color: var(--cx-color-selectedBackground);\n}\n\n.uc-corpNav-menu > .uc-corpNav-a:active,\n.uc-corpNav-menu > .uc-corpNav-a.is-active,\n.uc-corpNav-menu > .uc-corpNav-button:active,\n.uc-corpNav-menu > .uc-corpNav-button.is-active {\n  border-bottom-color: #003375;\n  border-bottom-color: #003375;\n  border-bottom-color: var(--cx-color-blue100, var(--cx-color-actionableActive));\n  color: #003375;\n  color: #003375;\n  color: var(--cx-color-blue100, var(--cx-color-actionableActive));\n  background-color: transparent;\n}\n\n@media (hover: hover) and (pointer: fine) {\n  .uc-corpNav-menu > .uc-corpNav-a:hover:active,\n  .uc-corpNav-menu > .uc-corpNav-a:hover.is-active,\n  .uc-corpNav-menu > .uc-corpNav-button:hover:active,\n  .uc-corpNav-menu > .uc-corpNav-button:hover.is-active {\n    background: #F4F4F4;\n    background: #F4F4F4;\n    background: var(--cx-color-grey20, var(--cx-color-faintNeutral));\n  }\n}\n\n.uc-corpNav-menuItem--disabled:active {\n  color: #171717;\n  color: var(--cx-color-text);\n  background-color: #FFFFFF;\n  background-color: var(--cx-color-white);\n}\n\n.uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown,\n.uc-corpNav-dropdown:active,\n.uc-corpNav-dropdown.is-active {\n  background-color: #FFFFFF;\n  background-color: var(--cx-color-white);\n  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));\n}\n";function it(n){return n&&n.trim?n.trim():n}var ct={agentRelations:null,experiments:{},geoId:"nyc",opty:{},showLocationLookup:!1,transparent:!1,userDisplayName:null,userId:null,userRoles:[]};function st(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},t=e.userMenu,o=void 0===t?{}:t;return{accountSettingsMenu:e.accountSettingsMenu,accountSettingsUrl:e.accountSettingsUrl,agentPlatformUrl:e.agentPlatformUrl,isAgent:ut(n.userRoles),isLoggedIn:Boolean(n.userId),userDisplayName:n.userDisplayName,userMenuLabel:o.label,userMenuChildren:et(n.experiments,o.children),userSvg:it(rt)}}function ut(n){return!!n&&n.includes("Specialist")}function lt(n){return n&&n.brandingAgentOrTeam&&1===n.brandingAgentOrTeam.profileType}function pt(n){var e=n.agentRelations,t=n.opty;return Boolean(e&&e.brandingAgentOrTeam&&t[Ve])}function dt(n){var e=n.agentRelations,t=n.opty;return Boolean(pt({agentRelations:e,opty:t})&&!vt({agentRelations:e,opty:t})&&!lt(e)&&t[Ke])}function vt(n){var e=n.agentRelations,t=n.opty;return Boolean(pt({agentRelations:e,opty:t})&&e&&e.brandingAgentDetails&&e.brandingAgentDetails.isPersistent)}function ft(n){if(n&&n.brandingAgentOrTeam&&!lt(n)&&"string"==typeof n.brandingAgentOrTeam.firstName&&"string"==typeof n.brandingAgentOrTeam.lastName&&n.brandingAgentOrTeam.firstName.length&&n.brandingAgentOrTeam.lastName.length){var e=n.brandingAgentOrTeam,t=e.firstName,o=e.lastName;return""+t[0]+o[0]}}function ht(n){if(n&&n.brandingAgentOrTeam){var e=n.brandingAgentOrTeam,t=e.profileUrl,o=e.urlName;return t?n.brandingAgentOrTeam.profileUrl:"/agents/"+o+"/"}}function gt(){(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["agentBrandingDropdown.njk"]={root:function(n,e,t,o,r){var a="";try{a+='<div class="uc-corpNav-label uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill"\n      data-tn="ucCorpNav-brandingAgent"\n      data-label="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"brandingDropdownTitle"),n.opts.autoescape),a+='"\n      tabindex="0"\n      role="button" aria-expanded="false" aria-haspopup="true">\n    ',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"brandingDropdownTitle"),n.opts.autoescape),a+='\n    <div class="uc-corpNav-dropdownIcon">\n      <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n        <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n      </svg>\n    </div>\n    <div class="uc-corpNav-flyout">\n      <div class="uc-corpNav-a uc-corpNav-flyoutItem-branded">\n        <ul href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"agentBrandingProfileUrl"),n.opts.autoescape),a+='"\n            class="uc-corpNav-brandingAgent-profile">\n          ',(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"avatarUrl")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"imagePath")||o.contextOrFrameLookup(e,t,"brandingMonogramPlaceholder"))&&(a+='\n            <li>\n              <a href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"agentBrandingProfileUrl"),n.opts.autoescape),a+='" aria-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"displayName"),n.opts.autoescape),a+=' agent profile">\n                <div class="uc-corpNav-brandingAgent-avatarContainer">\n                  ',o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"avatarUrl")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"imagePath")?(a+='\n                    <div class="cx-avatar cx-avatar--xl cx-avatar--image uc-corpNav-brandingAgent-image"\n                      data-tn="ucCorpNav-userMenu-brandingAgent-image"\n                      style="background-image:url(',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"avatarUrl")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"imagePath"),n.opts.autoescape),a+=');"></div>\n                  '):o.contextOrFrameLookup(e,t,"brandingMonogramPlaceholder")&&(a+='\n                    <div class="cx-avatar cx-avatar--lg cx-avatar--illustration">',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"brandingMonogramPlaceholder"),n.opts.autoescape),a+="</div>\n                  "),a+="\n                </div>\n              </a>\n            </li>\n          "),a+='\n          <li class="uc-corpNav-brandingAgent-details">\n            <ul class="uc-corpNav-brandingAgent-info">\n              <li>\n                <div class="uc-corpNav-brandingAgent-name">\n                  <a href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"agentBrandingProfileUrl"),n.opts.autoescape),a+='"\n                      class="uc-corpNav-brandingAgent-profileLink"\n                      data-tn="ucCorpNav-userMenu-brandingAgent-profileLink"\n                      data-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"displayName"),n.opts.autoescape),a+='">\n                    <div class="cx-textLink uc-corpNav-brandingAgent-name ',o.contextOrFrameLookup(e,t,"isAbleToConnect")&&(a+="uc-corpNav-brandingAgent-name-lowEmph"),a+='">\n                      ',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"displayName"),n.opts.autoescape),a+="\n                    </div>\n                  </a>\n                </div>\n              </li>\n              ",o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email")&&(a+='\n                <li>\n                  <a href="mailto:',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email"),n.opts.autoescape),a+='"\n                      class="cx-nakedBtn cx-nakedBtn--noSidePadding cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-email"\n                      data-tn="ucCorpNav-brandingAgent-email"\n                      target="_blank"\n                      rel="noopener">\n                    ',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email"),n.opts.autoescape),a+="\n                  </a>\n                </li>\n              "),a+="\n              ",o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone")&&(a+='\n                <li>\n                  <a href="tel:',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+='"\n                      class="cx-nakedBtn cx-nakedBtn--noSidePadding cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-phone"\n                      data-tn="ucCorpNav-brandingAgent-phone"\n                      aria-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+='">\n                    P: ',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+="\n                  </a>\n                </li>\n              "),a+="\n              ",o.contextOrFrameLookup(e,t,"brandingOptOut")&&(a+="\n                ",o.contextOrFrameLookup(e,t,"isPersistentConnection")?a+='\n                  <li>\n                    <a\n                        class="cx-nakedBtn cx-nakedBtn--noSidePadding cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-manageLink"\n                        href="/account/"\n                        data-tn="ucCorpNav-brandingAgent-manageLink">\n                      Manage\n                    </a>\n                  </li>\n                ':(a+="\n                  ",o.contextOrFrameLookup(e,t,"isAbleToConnect")?a+='\n                    <li>\n                      <button\n                          class="cx-nakedBtn cx-nakedBtn--noSidePadding cx-nakedBtn--xs uc-corpNav-brandingAgent-addRemove uc-corpNav-brandingAgent-addRemove-hamburger"\n                          data-tn="ucCorpNav-brandingAgent-addRemove">\n                        Add/Remove this agent\n                      </button>\n                    </li>\n                  ':a+='\n                    <li>\n                      <button\n                          class="cx-nakedBtn cx-nakedBtn--noSidePadding cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-remove"\n                          data-tn="ucCorpNav-brandingAgent-remove">\n                        Remove\n                      </button>\n                    </li>\n                  ',a+="\n                "),a+="\n              "),r(null,a+="\n            </ul>\n          </li>\n        </ul>\n      </div>\n    </div>\n</div>")}catch(n){r(o.handleError(n,0,0))}}},(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["agentBrandingHamburger.njk"]={root:function(n,e,t,o,r){var a="";try{a+='<div\n    class="uc-corpNav-menuItem uc-corpNav-menuItem--disabled textIntent-body">\n  My Agent\n</div>\n<div class="uc-corpNav-agentBranding-hamburger">\n  <a href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"agentBrandingProfileUrl"),n.opts.autoescape),a+='"\n      class="uc-corpNav-agentBranding-hamburger-profile"\n      data-tn="ucCorpNav-userMenu-brandingAgent-hamburger-profileLink"\n      data-label="ucCorpNav-userMenu-brandingAgent-profileLink">\n    ',(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"avatarUrl")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"imagePath")||o.contextOrFrameLookup(e,t,"brandingMonogramPlaceholder"))&&(a+='\n      <div class="uc-corpNav-brandingAgent-avatarContainer-hamburger">\n        ',o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"avatarUrl")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"imagePath")?(a+='\n          <div class="cx-avatar cx-avatar--xxl cx-avatar--image uc-corpNav-brandingAgent-image"\n            data-tn="ucCorpNav-userMenu-brandingAgent-image"\n            style="background-image:url(',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"avatarUrl")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"imagePath"),n.opts.autoescape),a+=');"></div>\n        '):o.contextOrFrameLookup(e,t,"brandingMonogramPlaceholder")&&(a+='\n          <div class="cx-avatar cx-avatar--xl cx-avatar--illustration">',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"brandingMonogramPlaceholder"),n.opts.autoescape),a+="</div>\n        "),a+="\n      </div>\n    "),a+='\n    <div class="cx-textLink uc-corpNav-brandingAgent-nameContainer">\n      <div class="cx-textLink uc-corpNav-brandingAgent-name">\n        ',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"displayName"),n.opts.autoescape),a+="\n      </div>\n    </div>\n  </a>\n  ",o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"title")&&(a+='\n    <div class="uc-corpNav-brandingAgent-title">',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"title"),n.opts.autoescape),a+="</div>\n  "),a+='\n  <ul class="uc-corpNav-brandingAgent-hamburgerContactSection">\n    ',(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email")||o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"))&&(a+="\n      ",o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone")&&(a+='\n        <li class="uc-corpNav-brandingAgent-hamburgerEmailOrPhone">\n          <a href="tel:',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+='"\n              class="cx-nakedBtn cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-phone"\n              data-tn="ucCorpNav-brandingAgent-hamburger-phone"\n              aria-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+='">\n            <span class="cx-enclosedBtn cx-enclosedBtn--md cx-enclosedBtn--highEmph cx-circleBtn">\n              <svg class="cx-icon cx-btn-icon" width="16" height="16" viewBox="0 0 16 16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-phone_16x16"></use>\n              </svg>\n            </span>\n          </a>\n        </li>\n      '),a+="\n      ",o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email")&&(a+='\n        <li class="uc-corpNav-brandingAgent-hamburgerEmailOrPhone">\n          <a href="mailto:',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email"),n.opts.autoescape),a+='"\n              class="cx-nakedBtn cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-email"\n              data-tn="ucCorpNav-brandingAgent-hamburger-email"\n              target="_blank"\n              rel="noopener"\n              aria-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"email"),n.opts.autoescape),a+='">\n            <span class="cx-enclosedBtn cx-enclosedBtn--md cx-enclosedBtn--highEmph cx-circleBtn">\n              <svg class="cx-icon cx-btn-icon" width="16" height="16" viewBox="0 0 16 16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-envelope_16x16"></use>\n              </svg>\n            </span>\n          </a>\n        </li>\n      '),a+="\n      ",o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone")&&(a+='\n        <li class="uc-corpNav-brandingAgent-hamburgerEmailOrPhone">\n          <a href="sms:',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+='"\n              class="cx-nakedBtn cx-nakedBtn--xs cx-nakedBtn--lowEmph uc-corpNav-brandingAgent-phone"\n              data-tn="ucCorpNav-brandingAgent-hamburger-phone"\n              aria-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"brandingAgentOrTeam"),"phone"),n.opts.autoescape),a+='">\n            <span class="cx-enclosedBtn cx-enclosedBtn--md cx-enclosedBtn--highEmph cx-circleBtn">\n              <svg class="cx-icon cx-btn-icon" width="16" height="16" viewBox="0 0 16 16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-talkBubble_16x16"></use>\n              </svg>\n            </span>\n          </a>\n        </li>\n      '),a+="\n    "),a+="\n  </ul>\n  ",o.contextOrFrameLookup(e,t,"brandingOptOut")&&(a+="\n    ",o.contextOrFrameLookup(e,t,"isPersistentConnection")?a+='\n      <a class="uc-corpNav-brandingAgent-manageLink uc-corpNav-brandingAgent-hamburger-edit cx-nakedBtn cx-nakedBtn--xs cx-nakedBtn--lowEmph"\n          data-tn="ucCorpNav-brandingAgent-hamburger-manageLink"\n          href="/account/">\n        Manage\n      </a>\n    ':(a+="\n      ",o.contextOrFrameLookup(e,t,"isAbleToConnect")?a+='\n        <button class="uc-corpNav-brandingAgent-addRemove uc-corpNav-brandingAgent-hamburger-edit cx-nakedBtn cx-nakedBtn--xs"\n            data-tn="ucCorpNav-brandingAgent-hamburger-addRemove">\n          Add/Remove this agent\n        </button>\n      ':a+='\n        <button class="uc-corpNav-brandingAgent-remove uc-corpNav-brandingAgent-hamburger-edit cx-nakedBtn cx-nakedBtn--xs cx-nakedBtn--lowEmph"\n            data-tn="ucCorpNav-brandingAgent-hamburger-remove">\n          Remove\n        </button>\n      ',a+="\n    "),a+="\n  "),r(null,a+="\n</div>")}catch(n){r(o.handleError(n,0,0))}}},(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["mobileUserMenu.njk"]={root:function(n,e,t,o,r){var a="";try{if(o.contextOrFrameLookup(e,t,"isLoggedIn")){if(a+="\n  ",!o.contextOrFrameLookup(e,t,"isAgent")){a+='\n    <div class="uc-corpNav-label">\n      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n        id="',a+=o.suppressValue(n.getFilter("replace").call(e,o.contextOrFrameLookup(e,t,"userMenuLabel")," ",""),n.opts.autoescape),a+='">\n      <label for="',a+=o.suppressValue(n.getFilter("replace").call(e,o.contextOrFrameLookup(e,t,"userMenuLabel")," ",""),n.opts.autoescape),a+='"\n        class="uc-corpNav-accordion">',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"userMenuLabel"),n.opts.autoescape),a+='</label>\n      <div\n          class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n              ',o.memberLookup(o.contextOrFrameLookup(e,t,"userMenu"),"active")&&(a+="is-active"),a+='"\n          data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.contextOrFrameLookup(e,t,"userMenuLabel")," ",""),n.opts.autoescape),a+='"\n          data-label="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"userMenuLabel"),n.opts.autoescape),a+='"\n          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n        ',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"userMenuLabel"),n.opts.autoescape),a+='\n      </div>\n      <ul class="uc-corpNav-accordionMenu" hidden>\n        ',t=t.push();var i=o.contextOrFrameLookup(e,t,"userMenuChildren");if(i)for(var c=(i=o.fromIterator(i)).length,s=0;s<i.length;s++){var u=i[s];t.set("childLink",u),t.set("loop.index",s+1),t.set("loop.index0",s),t.set("loop.revindex",c-s),t.set("loop.revindex0",c-s-1),t.set("loop.first",0===s),t.set("loop.last",s===c-1),t.set("loop.length",c),a+='\n          <li>\n            <a href="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(u,"url"),"{{geoId}}",o.contextOrFrameLookup(e,t,"geoId")),n.opts.autoescape),a+='"\n                class="cx-textLink uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                    ',o.memberLookup(u,"active")&&(a+="is-active"),a+='"\n                data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(u,"label")," ",""),n.opts.autoescape),a+='"\n                data-label="',a+=o.suppressValue(o.memberLookup(u,"label"),n.opts.autoescape),a+='">\n              ',a+=o.suppressValue(o.memberLookup(u,"label"),n.opts.autoescape),a+="\n            </a>\n          </li>\n        "}t=t.pop(),a+='\n      </ul>\n    </div>\n    <div class="uc-corpNav-label">\n      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n        id="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"label")," ",""),n.opts.autoescape),a+='">\n      <label for="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"label")," ",""),n.opts.autoescape),a+='"\n        class="uc-corpNav-accordion">',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"label"),n.opts.autoescape),a+='</label>\n      <div\n          class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n              ',o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"active")&&(a+="is-active"),a+='"\n          data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"label")," ",""),n.opts.autoescape),a+='"\n          data-label="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"label"),n.opts.autoescape),a+='"\n          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n        ',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"label"),n.opts.autoescape),a+='\n      </div>\n      <ul class="uc-corpNav-accordionMenu" hidden>\n        ',t=t.push();var l=o.memberLookup(o.contextOrFrameLookup(e,t,"accountSettingsMenu"),"children");if(l)for(var p=(l=o.fromIterator(l)).length,d=0;d<l.length;d++){var v=l[d];t.set("childLink",v),t.set("loop.index",d+1),t.set("loop.index0",d),t.set("loop.revindex",p-d),t.set("loop.revindex0",p-d-1),t.set("loop.first",0===d),t.set("loop.last",d===p-1),t.set("loop.length",p),a+='\n          <li>\n            <a href="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(v,"url"),"{{geoId}}",o.contextOrFrameLookup(e,t,"geoId")),n.opts.autoescape),a+='"\n                class="cx-textLink uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                    ',o.memberLookup(v,"active")&&(a+="is-active"),a+='"\n                data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(v,"label")," ",""),n.opts.autoescape),a+='"\n                data-label="',a+=o.suppressValue(o.memberLookup(v,"label"),n.opts.autoescape),a+='">\n              ',a+=o.suppressValue(o.memberLookup(v,"label"),n.opts.autoescape),a+="\n            </a>\n          </li>\n        "}t=t.pop(),a+="\n      </ul>\n    </div>\n  "}a+="\n"}else a+='\n<div class="uc-corpNav-auth">\n  <button class="cx-solidBtn cx-solidBtn--xl uc-corpNav-loginBtn"\n      data-tn="ucCorpNav-drawerBtn-logIn"\n      data-label="Log In">\n    <strong>Register/Sign In</strong>\n  </button>\n</div>\n';r(null,a)}catch(n){r(o.handleError(n,0,0))}}},(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["navigation.njk"]={root:function(n,e,t,o,r){var a="";try{a+='<nav class="uc-corpNav ',o.contextOrFrameLookup(e,t,"transparent")&&(a+="uc-corpNav--transparent"),a+="\n    ",o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"shouldRender")&&(a+="uc-corpNav--lookupLocationLookupEnabled"),a+='"\n    data-tn="uc-corpNav">\n  <style>',a+=o.suppressValue(n.getFilter("safe").call(e,o.contextOrFrameLookup(e,t,"style")),n.opts.autoescape),a+='</style>\n  <header class="uc-corpNav-header">\n    <div class="uc-corpNav-hamburger" data-tn="ucCorpNav-hamburger" tabindex="0" role="button" aria-label="Expand Navigation">\n      <svg class="uc-corpNav-svg cx-icon" width="24" height="24">\n        <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-Hamburger_24x24"></use>\n      </svg>\n    </div>\n    <a href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"homepageUrl"),n.opts.autoescape),a+='" class="uc-corpNav-a uc-corpNav-compassLogotype" data-tn="ucCorpNav-compassLogotype">\n      ',a+=o.suppressValue(n.getFilter("safe").call(e,o.contextOrFrameLookup(e,t,"compassLogotypeSvg")),n.opts.autoescape),a+="\n    </a>\n\n    ",o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"shouldRender")&&(a+='\n      <div class="uc-locationLookup-mobileInput uc-typeahead-hideOnNonMobile" id="location-lookup-mobile-search">\n        <button\n          class="uc-locationLookup-mobileContent font-sansRegular"\n          id="typeahead-mobile-content"\n          data-no-results-text="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"placeholderText"),n.opts.autoescape),a+='"\n          aria-label="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"placeholderText"),"ZIP","zip"),n.opts.autoescape),a+='">\n            ',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"placeholderText"),n.opts.autoescape),a+='\n          </button>\n        <span class="uc-locationLookup-searchButton" role="button">\n          <svg class="cx-icon cx-btn-icon" width="16" height="16">\n            <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-magnifyingGlass_16x16"></use>\n          </svg>\n        </span>\n      </div>\n      <div\n        class="uc-locationLookup"\n        id="location-lookup"\n        ',o.contextOrFrameLookup(e,t,"geoId")&&(a+='data-geography="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"geoId"),n.opts.autoescape),a+='"'),a+='>\n        <div class="uc-locationLookup-contentWrapper" id="location-lookup-content-wrapper">\n          <div class="cx-textField uc-locationLookup-inputContainer">\n            <button class="cx-nakedBtn uc-locationLookup-backButton uc-typeahead-hideOnNonMobile"\n                id="location-lookup-close-search">\n              <svg class="cx-icon cx-btn-icon" width="16" height="16">\n                  <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-arrowLeft_16x16"></use>\n              </svg>\n            </button>\n            <div class="uc-locationLookup-tokenContainer" id="location-lookup-tokens"></div>\n            <input\n              autocomplete="off"\n              id="location-lookup-input"\n              class="uc-locationLookup-input"\n              type="text"\n              placeholder="',a+=o.suppressValue(o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"placeholderText"),n.opts.autoescape),a+='"\n              aria-label="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(o.contextOrFrameLookup(e,t,"locationLookupOptions"),"placeholderText"),"ZIP","zip"),n.opts.autoescape),a+='">\n          </div>\n          <button class="cx-nakedBtn uc-locationLookup-clearButton is-hidden" id="location-lookup-clear">\n            <svg class="uc-locationLookup-inlineSearchIcon cx-icon" width="16" height="16">\n              <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-circleX_16x16"></use>\n            </svg>\n          </button>\n          <button class="cx-solidBtn uc-locationLookup-searchButton uc-typeahead-hideOnMobile"\n              id="location-lookup-search">\n            <svg class="cx-icon" width="16" height="16">\n              <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-magnifyingGlass_16x16"></use>\n            </svg>\n          </button>\n        </div>\n      </div>\n    '),a+='\n  </header>\n\n  <div class="uc-corpNav-menuWrapper">\n    <div class="uc-corpNav-menu">\n\n      ',o.contextOrFrameLookup(e,t,"isBranded")&&(a+="\n        ",(i=[]).push(function(e){n.getTemplate("agentBrandingDropdown.njk",!1,"navigation.njk",!1,function(n,t){n?r(n):e(null,t)})}),i.push(function(n,o){n.render(e.getVariables(),t,function(n,e){n?r(n):o(null,e)})}),i.push(function(n,e){a+=n,e(null)}),n.waterfall(i,function(){a+="\n      "})),a+="\n\n      ",t=t.push();var i,c=o.contextOrFrameLookup(e,t,"links");if(c)for(var s=(c=o.fromIterator(c)).length,u=0;u<c.length;u++){var l=c[u];if(t.set("link",l),t.set("loop.index",u+1),t.set("loop.index0",u),t.set("loop.revindex",s-u),t.set("loop.revindex0",s-u-1),t.set("loop.first",0===u),t.set("loop.last",u===s-1),t.set("loop.length",s),a+="\n        ",o.memberLookup(l,"children")){a+='\n          <div class="uc-corpNav-label u-absoluteFill" data-label="',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='">\n            <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill"\n                data-tn="ucCorpNav-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(l,"label")," ",""),n.opts.autoescape),a+='"\n                role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n              ',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='\n                <div class="uc-corpNav-dropdownIcon">\n                  <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n                    <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n                  </svg>\n                </div>\n                <ul class="uc-corpNav-flyout ',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='">\n                  ',t=t.push();var p=o.memberLookup(l,"children");if(p)for(var d=(p=o.fromIterator(p)).length,v=0;v<p.length;v++){var f=p[v];t.set("link",f),t.set("loop.index",v+1),t.set("loop.index0",v),t.set("loop.revindex",d-v),t.set("loop.revindex0",d-v-1),t.set("loop.first",0===v),t.set("loop.last",v===d-1),t.set("loop.length",d),a+="\n                    <li>\n                      <a href=",a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(f,"url"),"{{geoId}}",o.contextOrFrameLookup(e,t,"geoId")),n.opts.autoescape),a+='\n                          class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                              ',o.memberLookup(f,"active")&&(a+="is-active"),a+='"\n                          data-tn="ucCorpNav-userMenu-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(f,"label")," ",""),n.opts.autoescape),a+='"\n                          data-label="',a+=o.suppressValue(o.memberLookup(f,"label"),n.opts.autoescape),a+='">\n                        ',a+=o.suppressValue(o.memberLookup(f,"label"),n.opts.autoescape),a+="\n                      </a>\n                    </li>\n                  "}t=t.pop(),a+="\n                </ul>\n            </div>\n          </div>\n        "}else a+='\n          <a href="',a+=o.suppressValue(o.memberLookup(l,"url"),n.opts.autoescape),a+='"\n              class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n                  ',o.memberLookup(l,"active")&&(a+="is-active"),a+='"\n              data-tn="ucCorpNav-link-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(l,"label")," ",""),n.opts.autoescape),a+='"\n              data-label="',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='">\n            ',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+="\n          </a>\n        ";a+="\n      "}t=t.pop(),a+='\n    </div>\n\n    <div class="uc-corpNav-menu uc-corpNav-userMenu">\n      ',(i=[]).push(function(e){n.getTemplate("userMenu.njk",!1,"navigation.njk",!1,function(n,t){n?r(n):e(null,t)})}),i.push(function(n,o){n.render(e.getVariables(),t,function(n,e){n?r(n):o(null,e)})}),i.push(function(n,e){a+=n,e(null)}),n.waterfall(i,function(){a+='\n    </div>\n  </div>\n\n  <div class="uc-corpNav-drawer">\n\n    <div class="uc-corpNav-drawerTop">\n      <div class="uc-corpNav-hamburger-close" data-tn="ucCorpNav-drawerClose" tabindex="0" role="button" aria-label="close navigation">\n        <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n          <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-x_16x16"></use>\n        </svg>\n      </div>\n      <a href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"homepageUrl"),n.opts.autoescape),a+='" class="uc-corpNav-a uc-corpNav-compassLogotype-hamburger" data-tn="ucCorpNav-drawerLogo">\n        ',a+=o.suppressValue(n.getFilter("safe").call(e,o.contextOrFrameLookup(e,t,"compassLogotypeSvg")),n.opts.autoescape),a+="\n      </a>\n    </div>\n\n    ",o.contextOrFrameLookup(e,t,"isBranded")&&(a+="\n      ",(i=[]).push(function(e){n.getTemplate("agentBrandingHamburger.njk",!1,"navigation.njk",!1,function(n,t){n?r(n):e(null,t)})}),i.push(function(n,o){n.render(e.getVariables(),t,function(n,e){n?r(n):o(null,e)})}),i.push(function(n,e){a+=n,e(null)}),n.waterfall(i,function(){a+="\n    "})),a+="\n\n    ",t=t.push();var i,c=o.contextOrFrameLookup(e,t,"links");if(c)for(var s=(c=o.fromIterator(c)).length,u=0;u<c.length;u++){var l=c[u];if(t.set("link",l),t.set("loop.index",u+1),t.set("loop.index0",u),t.set("loop.revindex",s-u),t.set("loop.revindex0",s-u-1),t.set("loop.first",0===u),t.set("loop.last",u===s-1),t.set("loop.length",s),a+="\n      ",o.memberLookup(l,"children")){a+='\n        <div class="uc-corpNav-label">\n          <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n            id="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(l,"label")," ",""),n.opts.autoescape),a+='">\n          <label for="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(l,"label")," ",""),n.opts.autoescape),a+='"\n            class="uc-corpNav-accordion">',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='</label>\n          <div\n              class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n                  ',o.memberLookup(l,"active")&&(a+="is-active"),a+='"\n              data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(l,"label")," ",""),n.opts.autoescape),a+='"\n              data-label="',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='"\n              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n            ',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='\n          </div>\n          <ul class="uc-corpNav-accordionMenu" hidden>\n            ',t=t.push();var p=o.memberLookup(l,"children");if(p)for(var d=(p=o.fromIterator(p)).length,v=0;v<p.length;v++){var f=p[v];t.set("childLink",f),t.set("loop.index",v+1),t.set("loop.index0",v),t.set("loop.revindex",d-v),t.set("loop.revindex0",d-v-1),t.set("loop.first",0===v),t.set("loop.last",v===d-1),t.set("loop.length",d),a+='\n              <li>\n                <a href="',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(f,"url"),"{{geoId}}",o.contextOrFrameLookup(e,t,"geoId")),n.opts.autoescape),a+='"\n                    class="cx-textLink uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                        ',o.memberLookup(f,"active")&&(a+="is-active"),a+='"\n                    data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(f,"label")," ",""),n.opts.autoescape),a+='"\n                    data-label="',a+=o.suppressValue(o.memberLookup(f,"label"),n.opts.autoescape),a+='">\n                  ',a+=o.suppressValue(o.memberLookup(f,"label"),n.opts.autoescape),a+="\n                </a>\n              </li>\n            "}t=t.pop(),a+="\n          </ul>\n        </div>\n      "}else a+='\n        <a href="',a+=o.suppressValue(o.memberLookup(l,"url"),n.opts.autoescape),a+='"\n            class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n                ',o.memberLookup(l,"active")&&(a+="is-active"),a+='"\n            data-tn="ucCorpNav-drawerLink-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(l,"label")," ",""),n.opts.autoescape),a+='"\n            data-label="',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+='">\n          ',a+=o.suppressValue(o.memberLookup(l,"label"),n.opts.autoescape),a+="\n        </a>\n      ";a+="\n    "}t=t.pop(),a+='\n\n    <div class="uc-corpNav-userMenu--mobile">\n      ',(i=[]).push(function(e){n.getTemplate("mobileUserMenu.njk",!1,"navigation.njk",!1,function(n,t){n?r(n):e(null,t)})}),i.push(function(n,o){n.render(e.getVariables(),t,function(n,e){n?r(n):o(null,e)})}),i.push(function(n,e){a+=n,e(null)}),n.waterfall(i,function(){r(null,a+='\n    </div>\n  </div>\n\n  <div class="uc-corpNav-backdrop" data-tn="ucCorpNav-drawerBackdrop"></div>\n</nav>\n')})})}catch(n){r(o.handleError(n,0,0))}}},(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["placeholder--transparent.html"]={root:function(n,e,t,o,r){var a="";try{r(null,a+='<nav id="uc-corpNav-placeholder" class="uc-corpNav--transparent" data-tn="ucCorpNav-placeholder">\n  <style>\n    @custom-media --tablet-viewport (min-width: 1300px);\n\n    :root {\n      --drawerWidth: 286px;\n      --flyoutItemHeight: 39px;\n      --navHeight: 48px;\n      --locationLookupHeight: 40px;\n      --iconSizeMedium: 24px;\n    }\n\n    #uc-corpNav-placeholder {\n      display: flex;\n      justify-content: space-between;\n      position: absolute;\n      width: 100%;\n      height: var(--navHeight);\n      color: var(--cx-color-onDarkTextStrong);\n      background-color: transparent;\n      user-select: none;\n      z-index: var(--cx-zIndex-10);\n    }\n\n    #uc-corpNav-placeholder,\n    #uc-corpNav-placeholder * {\n      box-sizing: border-box;\n    }\n\n    .uc-corpNav-a {\n      text-decoration: none;\n    }\n\n    .uc-corpNav-button {\n      background-color: transparent;\n    }\n\n    .uc-corpNav-svg {\n      display: block;\n      margin: auto;\n      color: inherit;\n      fill: currentColor;\n    }\n\n    .uc-corpNav-iconSizeMedium {\n      width: var(--iconSizeMedium);\n      height: var(--iconSizeMedium);\n    }\n\n    .uc-corpNav-header {\n      display: flex;\n      align-items: center;\n      flex-grow: 1;\n      height: 100%;\n    }\n\n    .uc-corpNav-hamburger {\n      display: flex;\n      align-items: center;\n      width: 48px;\n      height: 100%;\n    }\n\n    .uc-corpNav-logotype {\n      display: flex;\n      align-items: center;\n      padding-right: var(--cx-spacing-3x);\n      width: 123px;\n      height: 100%;\n      color: inherit;\n    }\n\n    .uc-corpNav-logotype svg {\n      width: 98px;\n      height: 14px;\n    }\n\n    .uc-corpNav-menuWrapper {\n      display: flex;\n      height: 100%;\n    }\n\n    .uc-corpNav-menu {\n      display: none;\n      padding: 0 10px;\n      height: 100%;\n    }\n\n    .uc-corpNav-menu > .uc-corpNav-a,\n    .uc-corpNav-menu > .uc-corpNav-button {\n      border-top: 3px solid transparent;\n      border-bottom: 3px solid transparent;\n    }\n\n    .uc-corpNav-userMenu {\n      display: flex;\n    }\n\n    .uc-corpNav-menuItem {\n      display: flex;\n      align-items: center;\n      border: none;\n      padding: 0 10px;\n      height: 100%;\n      outline: none;\n      appearance: none;\n      color: inherit;\n      font-weight: var(--cx-font-weightMedium);\n      cursor: pointer;\n      transition: all 0.1s ease;\n    }\n\n    .uc-corpNav-dropdown {\n      display: flex;\n      position: relative;\n    }\n\n    .uc-corpNav-dropdownIcon {\n      margin-left: 4px;\n    }\n\n    .uc-corpNav-dropdown-checkbox {\n      display: none;\n    }\n\n    .uc-corpNav-flyout {\n      display: none;\n      position: absolute;\n      top: calc(var(--navHeight) - 1px);\n      padding-top: 14px;\n      padding-bottom: 18px;\n      min-width: 100%;\n      max-height: calc(7 * var(--flyoutItemHeight) + 34px);\n      overflow-y: auto;\n      white-space: nowrap;\n      background-color: var(--cx-color-background);\n      transform: translateX(-10px);\n    }\n\n    .uc-corpNav-flyout--flipped {\n      right: -10px;\n    }\n\n    .uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown > .uc-corpNav-flyout,\n    .uc-corpNav-dropdown.is-active > .uc-corpNav-flyout {\n      display: block;\n    }\n\n    .uc-corpNav-flyoutItem {\n      padding: 0 30px 0 var(--cx-spacing-2x);;\n      height: var(--flyoutItemHeight);\n      font-weight: var(--cx-font-weightRegular);\n      color: var(--cx-color-textStrong);\n      cursor: pointer;\n    }\n\n    .uc-corpNav-avatar {\n      width: 44px;\n    }\n\n    .uc-corpNav-drawer {\n      display: flex;\n      flex-direction: column;\n      position: fixed;\n      top: 0;\n      left: calc(var(--drawerWidth) * -1);\n      width: var(--drawerWidth);\n      height: 100vh;\n      background-color: inherit;\n      overflow-y: auto;\n      transition: left 0.3s ease;\n      z-index: var(--cx-zIndex-10);\n      -webkit-overflow-scrolling: touch;\n    }\n\n    .uc-corpNav-drawerOpen {\n      overflow-y: hidden;\n    }\n\n    .uc-corpNav-backdrop {\n      position: fixed;\n      top: 0;\n      left: 0;\n      width: 100vw;\n      height: 100vh;\n      background-color: var(--cx-color-backgroundDark);\n      opacity: 0.5;\n      cursor: pointer;\n      visibility: hidden;\n      z-index: var(--cx-zIndex-9);\n    }\n\n    .uc-corpNav-drawer.is-active {\n      left: 0;\n    }\n\n    .uc-corpNav-drawer.is-active ~ .uc-corpNav-backdrop {\n      visibility: visible;\n    }\n\n    .uc-corpNav-drawerTop {\n      display: flex;\n      justify-content: space-between;\n      margin: var(--cx-spacing-2x) var(--cx-spacing-2x) var(--cx-spacing-4x);\n      flex-shrink: 0;\n    }\n\n    .uc-corpNav-logo {\n      color: inherit;\n      fill: currentColor;\n    }\n\n    .uc-corpNav-close {\n      padding: 4px;\n      width: var(--cx-spacing-3x);\n      height: var(--cx-spacing-3x);\n      color: inherit;\n      fill: currentColor;\n      cursor: pointer;\n    }\n\n    .uc-corpNav-drawer .uc-corpNav-menuItem {\n      padding-left: var(--cx-spacing-2x);\n      height: 40px;\n      min-height: 40px;\n      font-weight: var(--cx-font-weightRegular);\n    }\n\n    .uc-corpNav-label {\n      position: relative;\n      -webkit-tap-highlight-color: transparent;\n    }\n\n    .uc-corpNav-accordion {\n      display: none;\n    }\n\n    .uc-corpNav-accordionHeader {\n      position: relative;\n      cursor: pointer;\n    }\n\n    .uc-corpNav-accordionHeader:after {\n      content: \'\';\n      position: absolute;\n      top: 50%;\n      right: var(--cx-spacing-2x);\n      margin-top: -(var(--cx-spacing-1x));\n      width: var(--cx-spacing-2x);\n      height: var(--cx-spacing-2x);\n\n      @mixin svgBgImg cx-icon-chevronDown_16x16 {\n        path {\n          fill: var(--cx-color-actionableLowEmph);\n        }\n      }\n    }\n\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader:after {\n      @mixin svgBgImg cx-icon-chevronUp_16x16 {\n        path {\n          fill: var(--cx-color-actionableActive);\n        }\n      }\n    }\n\n    .uc-corpNav-accordionMenu {\n      height: 0;\n      opacity: 0;\n      overflow-y: hidden;\n      -webkit-transition: opacity 200ms ease-out;\n      transition: opacity 200ms ease-out;\n    }\n\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {\n      height: auto;\n      opacity: 1;\n    }\n\n    .uc-corpNav-auth {\n      display: flex;\n      margin: var(--cx-spacing-2x);\n    }\n\n    .uc-corpNav-auth .uc-corpNav-authBtn:last-child {\n      margin-left: var(--cx-spacing-2x);\n    }\n\n    .uc-corpNav-auth button {\n      flex: 1;\n    }\n\n    .uc-corpNav-userMenu-loadingSpinner {\n      /* 137 pixels is the width of the current `Register/Sign In` field that replaces this one, when the user is logged out. */\n      padding: 0 57px 0 60px;\n    }\n\n    /* Start transparent styles block */\n    .uc-corpNav--transparent {\n      position: absolute;\n      border-color: transparent;\n      color: var(--cx-color-onDarkTextStrong);\n      background-color: transparent;\n    }\n\n    .uc-corpNav--transparent::before {\n      content: \'\';\n      display: block;\n      position: absolute;\n      top: 0;\n      right: 0;\n      bottom: -80%;\n      left: 0;\n      z-index: -1;\n      background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);\n    }\n\n    .uc-corpNav--transparent .uc-corpNav-drawer {\n      color: var(--cx-color-textStrong);\n      background-color: var(--cx-color-background);\n    }\n    /* End transparent styles block */\n\n    /* Mobile styles */\n    @media (--cx-mq-maxWidthMobileLandscape) {\n      .uc-corpNav-menuItem {\n        font-size: var(--cx-font-sizeMd);\n      }\n    }\n\n    @media (--cx-mq-minWidthLaptop) {\n      .uc-corpNav-logotype {\n        padding-left: var(--cx-spacing-2x);\n        width: 152px; /* 16px left padding + 112px svg + 24px right padding */\n      }\n\n      /* inherit size from svg width & height attrs */\n      .uc-corpNav-logotype svg {\n        width: auto;\n        height: auto;\n      }\n\n      .uc-corpNav-menu {\n        display: flex;\n      }\n\n      .uc-corpNav-userMenu::before {\n        content: \'\';\n        position: relative;\n        top: 17px;\n        left: -10px;\n        border-left: 1px solid;\n        height: var(--cx-spacing-2x);\n        opacity: 0.15;\n      }\n\n      .uc-corpNav-drawer,\n      .uc-corpNav-hamburger {\n        display: none;\n      }\n    }\n\n    @media (--cx-mq-hover) {\n      .uc-corpNav-menuItem:hover {\n        color: var(--cx-color-actionableLowEmphHover);\n        background: var(--cx-color-faintNeutral);\n      }\n    }\n\n    /*\n    * Fix clicks on the documentElement (used to close dropdowns) not being detected on iOS\n    * See: https://gravitydept.com/blog/js-click-event-bubbling-on-ios &\n    * https://stackoverflow.com/a/47818418\n    */\n    @supports (-webkit-overflow-scrolling: touch) {\n      body {\n        cursor: pointer;\n      }\n    }\n\n    .uc-corpNav-menuItem:active,\n    .uc-corpNav-menuItem.is-active,\n    .uc-corpNav-flyoutItem.is-selected {\n      color: var(--cx-color-selectedText);\n      background-color: var(--cx-color-selectedBackground);\n    }\n\n    .uc-corpNav-menu > .uc-corpNav-a:active,\n    .uc-corpNav-menu > .uc-corpNav-a.is-active,\n    .uc-corpNav-menu > .uc-corpNav-button:active,\n    .uc-corpNav-menu > .uc-corpNav-button.is-active {\n      border-bottom-color: var(--cx-color-actionableActive);\n      color: var(--cx-color-actionableActive);\n      background-color: transparent;\n    }\n\n    @media (--cx-mq-hover) {\n      .uc-corpNav-menu > .uc-corpNav-a:hover:active,\n      .uc-corpNav-menu > .uc-corpNav-a:hover.is-active,\n      .uc-corpNav-menu > .uc-corpNav-button:hover:active,\n      .uc-corpNav-menu > .uc-corpNav-button:hover.is-active {\n        background-color: var(--cx-color-faintNeutral);\n      }\n    }\n\n    .uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown,\n    .uc-corpNav-dropdown:active,\n    .uc-corpNav-dropdown.is-active {\n      background-color: var(--cx-color-white);\n      filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));\n    }\n\n    .uc-corpNav-menuItem.is-active,\n    .uc-corpNav-menuItem.is-selected,\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader {\n      font-weight: var(--cx-font-weightMedium);\n    }\n\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader,\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {\n      background-color: var(--cx-color-faintNeutral);\n    }\n  </style>\n  <header class="uc-corpNav-header">\n    <div class="uc-corpNav-hamburger" data-tn="ucCorpNav-hamburger" tabindex="0"\n      role="button" aria-label="Expand Navigation">\n      <svg class="uc-corpNav-svg cx-icon" width="24" height="24">\n        <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-Hamburger_24x24"></use>\n      </svg>\n    </div>\n    <a href="/" class="uc-corpNav-a uc-corpNav-logotype" data-tn="ucCorpNav-logotype">\n      <svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 112 16" width="112" height="16">\n        <title>Compass</title>\n        <path d="M53,.457,45,11.314,37,.457V15h2V6.543l6,8.143,6-8.143V15h2ZM60,15H58V1h6.5a4.5,4.5,0,0,1,0,9H60Zm0-7h4.5a2.5,2.5,0,0,0,0-5H60Zm22.863,7h2.275L77.5.9,69.863,15h2.275l1.625-3h7.475Zm-8.018-5L77.5,5.1,80.155,10ZM97,11.085c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375A4.494,4.494,0,0,0,91.94,13.29c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L91,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C95.516,7.487,97,8.96,97,11.085Zm14,0c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375a4.494,4.494,0,0,0,3.468,1.775c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L105,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C109.516,7.487,111,8.96,111,11.085Zm-98.611.8h0a5.5,5.5,0,1,1,0-7.778h0l.354.354L14.157,3.05,13.8,2.7h0a7.5,7.5,0,1,0,0,10.607l0,0h0l.354-.353-1.414-1.415ZM25.5.5A7.5,7.5,0,1,0,33,8,7.5,7.5,0,0,0,25.5.5Zm0,13A5.5,5.5,0,1,1,31,8,5.5,5.5,0,0,1,25.5,13.5Zm3.207-7.293L27.293,4.793l-5,5,1.414,1.414Z"/>\n      </svg>\n    </a>\n  </header>\n  <div class="uc-corpNav-menuWrapper">\n    <div class="uc-corpNav-menu">\n      <a href="/homes-for-sale/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-Buy" data-label="Buy">\n        Buy\n      </a>\n      <a href="/for-rent/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-Rent" data-label="Rent">\n        Rent\n      </a>\n      <a href="/sell/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-Sell" data-label="Sell">\n        Sell\n      </a>\n      <div class="uc-corpNav-label u-absoluteFill">\n        <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill" data-tn="ucCorpNav-CompassExclusives" data-label="Compass Exclusives"\n          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n          Compass Exclusives\n            <div class="uc-corpNav-dropdownIcon">\n              <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n              </svg>\n            </div>\n            <ul class="uc-corpNav-flyout Compass Exclusives">\n              <li>\n                <a href="/private-exclusives/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-PrivateExclusives" data-label="Private Exclusives">\n                  Private Exclusives\n                </a>\n              </li>\n              <li>\n                <a href="/coming-soon/listings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-ComingSoon" data-label="Coming Soon">\n                  Coming Soon\n                </a>\n              </li>\n              <li>\n                <a href="/compass-listings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-CompassListings" data-label="Compass Listings">\n                  Compass Listings\n                </a>\n              </li>\n            </ul>\n        </div>\n      </div>\n      <a href="/development/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-NewDevelopment" data-label="New Development">\n        New Development\n      </a>\n      <div class="uc-corpNav-label u-absoluteFill">\n        <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill" data-tn="ucCorpNav-Agents" data-label="Agents"\n          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n          Agents\n            <div class="uc-corpNav-dropdownIcon">\n              <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n              </svg>\n            </div>\n            <ul class="uc-corpNav-flyout Agents">\n              <li>\n                <a href="/agents/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-FindanAgent" data-label="Find an Agent">\n                  Find an Agent\n                </a>\n              </li>\n              <li>\n                <a href="//agents.compass.com/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-BecomeanAgent" data-label="Become an Agent">\n                  Become an Agent\n                </a>\n              </li>\n            </ul>\n        </div>\n      </div>\n    </div>\n  </div>\n  <div class="uc-corpNav-drawer">\n    <div class="uc-corpNav-drawerTop">\n      <a href="/" class="uc-corpNav-a uc-corpNav-logo" data-tn="ucCorpNav-drawerLogo">\n        <svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="48" height="48">\n          <path d="M12,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22ZM12,3a9,9,0,1,0,9,9A9.011,9.011,0,0,0,12,3ZM8.854,15.854l7-7a.5.5,0,0,0-.708-.708l-7,7a.5.5,0,0,0,.708.708Z"></path>\n        </svg>\n      </a>\n      <div class="uc-corpNav-close" data-tn="ucCorpNav-drawerClose">\n        <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n          <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-x_16x16"></use>\n        </svg>\n      </div>\n    </div>\n    <a href="/homes-for-sale/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-Buy" data-label="Buy">\n      Buy\n    </a>\n    <a href="/for-rent/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-Rent" data-label="Rent">\n      Rent\n    </a>\n    <a href="/sell/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-Sell" data-label="Sell">\n      Sell\n    </a>\n    <div class="uc-corpNav-label">\n      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n        id="CompassExclusives">\n      <label for="CompassExclusives"\n        class="uc-corpNav-accordion">Compass Exclusives</label>\n      <div class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n              " data-tn="ucCorpNav-drawerLink-CompassExclusives" data-label="Compass Exclusives"\n              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n        Compass Exclusives\n      </div>\n      <ul class="uc-corpNav-accordionMenu">\n        <li>\n          <a href="/private-exclusives/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                  " data-tn="ucCorpNav-drawerLink-PrivateExclusives" data-label="Private Exclusives">\n            Private Exclusives\n          </a>\n        </li>\n        <li>\n          <a href="/coming-soon/listings/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                  " data-tn="ucCorpNav-drawerLink-ComingSoon" data-label="Coming Soon">\n            Coming Soon\n          </a>\n        </li>\n        <li>\n          <a href="/compass-listings/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                " data-tn="ucCorpNav-drawerLink-CompassListings" data-label="Compass Listings">\n            Compass Listings\n          </a>\n        </li>\n      </ul>\n    </div>\n    <a href="/development/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-NewDevelopment" data-label="New Development">\n      New Development\n    </a>\n    <div class="uc-corpNav-label">\n      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n        id="Agents">\n      <label for="Agents" class="uc-corpNav-accordion">Agents</label>\n      <div class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n              " data-tn="ucCorpNav-drawerLink-Agents" data-label="Agents"\n              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n        Agents\n      </div>\n      <ul class="uc-corpNav-accordionMenu">\n        <li>\n          <a href="/agents/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                " data-tn="ucCorpNav-drawerLink-FindanAgent" data-label="Find an Agent">\n            Find an Agent\n          </a>\n        </li>\n        <li>\n          <a href="//agents.compass.com/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                " data-tn="ucCorpNav-drawerLink-BecomeanAgent" data-label="Become an Agent">\n            Become an Agent\n          </a>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <div class="uc-corpNav-menu uc-corpNav-userMenu">\n    <div class="cx-animDotShift cx-animDotShift--sm uc-corpNav-userMenu-loadingSpinner"></div>\n  </div>\n  <div class="uc-corpNav-backdrop" data-tn="ucCorpNav-drawerBackdrop"></div>\n</nav>')}catch(n){r(o.handleError(n,0,0))}}},(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["placeholder.html"]={root:function(n,e,t,o,r){var a="";try{r(null,a+='<nav id="uc-corpNav-placeholder" data-tn="ucCorpNav-placeholder">\n  <style>\n    @custom-media --tablet-viewport (min-width: 1300px);\n\n    :root {\n      --drawerWidth: 286px;\n      --flyoutItemHeight: 39px;\n      --navHeight: 48px;\n      --locationLookupHeight: 40px;\n      --iconSizeMedium: 24px;\n    }\n\n    #uc-corpNav-placeholder {\n      display: flex;\n      justify-content: space-between;\n      position: relative;\n      border-bottom: 1px solid var(--cx-color-dropShadow);\n      width: 100%;\n      height: var(--navHeight);\n      color: var(--cx-color-textStrong);\n      background-color: var(--cx-color-background);\n      user-select: none;\n      z-index: var(--cx-zIndex-10);\n    }\n\n    #uc-corpNav-placeholder,\n    #uc-corpNav-placeholder * {\n      box-sizing: border-box;\n    }\n\n    .uc-corpNav-a {\n      text-decoration: none;\n    }\n\n    .uc-corpNav-button {\n      background-color: transparent;\n    }\n\n    .uc-corpNav-svg {\n      display: block;\n      margin: auto;\n      color: inherit;\n      fill: currentColor;\n    }\n\n    .uc-corpNav-iconSizeMedium {\n      width: var(--iconSizeMedium);\n      height: var(--iconSizeMedium);\n    }\n\n    .uc-corpNav-header {\n      display: flex;\n      align-items: center;\n      flex-grow: 1;\n      height: 100%;\n    }\n\n    .uc-corpNav-hamburger {\n      display: flex;\n      align-items: center;\n      width: 48px;\n      height: 100%;\n    }\n\n    .uc-corpNav-logotype {\n      display: flex;\n      align-items: center;\n      padding-right: var(--cx-spacing-3x);\n      width: 123px;\n      height: 100%;\n      color: inherit;\n    }\n\n    .uc-corpNav-logotype svg {\n      width: 98px;\n      height: 14px;\n    }\n\n    .uc-corpNav-menuWrapper {\n      display: flex;\n      height: 100%;\n    }\n\n    .uc-corpNav-menu {\n      display: none;\n      padding: 0 10px;\n      height: 100%;\n    }\n\n    .uc-corpNav-menu > .uc-corpNav-a,\n    .uc-corpNav-menu > .uc-corpNav-button {\n      border-top: 3px solid transparent;\n      border-bottom: 3px solid transparent;\n    }\n\n    .uc-corpNav-userMenu {\n      display: flex;\n    }\n\n    .uc-corpNav-menuItem {\n      display: flex;\n      align-items: center;\n      border: none;\n      padding: 0 10px;\n      height: 100%;\n      outline: none;\n      appearance: none;\n      color: inherit;\n      font-weight: var(--cx-font-weightMedium);\n      cursor: pointer;\n      transition: all 0.1s ease;\n    }\n\n    .uc-corpNav-dropdown {\n      display: flex;\n      position: relative;\n    }\n\n    .uc-corpNav-dropdownIcon {\n      margin-left: 4px;\n    }\n\n    .uc-corpNav-dropdown-checkbox {\n      display: none;\n    }\n\n    .uc-corpNav-flyout {\n      display: none;\n      position: absolute;\n      top: calc(var(--navHeight) - 1px);\n      margin: 0;\n      padding: 14px 0 18px;\n      min-width: 100%;\n      max-height: calc(7 * var(--flyoutItemHeight) + 34px);\n      padding-top: 14px;\n      padding-bottom: 18px;\n      overflow-y: auto;\n      white-space: nowrap;\n      background-color: var(--cx-color-background);\n      transform: translateX(-10px);\n      list-style-type: none;\n    }\n\n    .uc-corpNav-flyout--flipped {\n      right: -10px;\n    }\n\n    .uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown > .uc-corpNav-flyout,\n    .uc-corpNav-dropdown.is-active > .uc-corpNav-flyout {\n      display: block;\n    }\n\n    .uc-corpNav-flyoutItem {\n      padding: 0 30px 0 var(--cx-spacing-2x);\n      height: var(--flyoutItemHeight);\n      font-weight: var(--cx-font-weightRegular);\n      color: var(--cx-color-textStrong);\n      cursor: pointer;\n    }\n\n    .uc-corpNav-avatar {\n      width: 44px;\n    }\n\n    .uc-corpNav-drawer {\n      display: flex;\n      flex-direction: column;\n      position: fixed;\n      top: 0;\n      left: calc(var(--drawerWidth) * -1);\n      width: var(--drawerWidth);\n      height: 100vh;\n      background-color: inherit;\n      overflow-y: auto;\n      transition: left 0.3s ease;\n      z-index: var(--cx-zIndex-10);\n      -webkit-overflow-scrolling: touch;\n    }\n\n    .uc-corpNav-drawerOpen {\n      overflow-y: hidden;\n    }\n\n    .uc-corpNav-backdrop {\n      position: fixed;\n      top: 0;\n      left: 0;\n      width: 100vw;\n      height: 100vh;\n      background-color: var(--cx-color-backgroundDark);\n      opacity: 0.5;\n      cursor: pointer;\n      visibility: hidden;\n      z-index: var(--cx-zIndex-9);\n    }\n\n    .uc-corpNav-drawer.is-active {\n      left: 0;\n    }\n\n    .uc-corpNav-drawer.is-active ~ .uc-corpNav-backdrop {\n      visibility: visible;\n    }\n\n    .uc-corpNav-drawerTop {\n      display: flex;\n      justify-content: space-between;\n      margin: var(--cx-spacing-2x) var(--cx-spacing-2x) var(--cx-spacing-4x);\n      flex-shrink: 0;\n    }\n\n    .uc-corpNav-logo {\n      color: inherit;\n      fill: currentColor;\n    }\n\n    .uc-corpNav-close {\n      padding: 4px;\n      width: var(--cx-spacing-3x);\n      height: var(--cx-spacing-3x);\n      color: inherit;\n      fill: currentColor;\n      cursor: pointer;\n    }\n\n    .uc-corpNav-drawer .uc-corpNav-menuItem {\n      padding-left: var(--cx-spacing-2x);\n      height: 40px;\n      min-height: 40px;\n      font-weight: var(--cx-font-weightRegular);\n    }\n\n    .uc-corpNav-label {\n      position: relative;\n      -webkit-tap-highlight-color: transparent;\n    }\n\n    .uc-corpNav-accordion {\n      display: none;\n    }\n\n    .uc-corpNav-accordionHeader {\n      position: relative;\n      cursor: pointer;\n    }\n\n    .uc-corpNav-accordionHeader:after {\n      content: \'\';\n      position: absolute;\n      top: 50%;\n      right: var(--cx-spacing-2x);\n      margin-top: -(var(--cx-spacing-1x));\n      width: var(--cx-spacing-2x);\n      height: var(--cx-spacing-2x);\n\n      @mixin svgBgImg cx-icon-chevronDown_16x16 {\n        path {\n          fill: var(--cx-color-actionableLowEmph);\n        }\n      }\n    }\n\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader:after {\n      @mixin svgBgImg cx-icon-chevronUp_16x16 {\n        path {\n          fill: var(--cx-color-actionableActive);\n        }\n      }\n    }\n\n    .uc-corpNav-accordionMenu {\n      height: 0;\n      opacity: 0;\n      overflow-y: hidden;\n      -webkit-transition: opacity 200ms ease-out;\n      transition: opacity 200ms ease-out;\n    }\n\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {\n      height: auto;\n      opacity: 1;\n    }\n\n    .uc-corpNav-auth {\n      display: flex;\n      margin: var(--cx-spacing-2x);\n    }\n\n    .uc-corpNav-auth .uc-corpNav-authBtn:last-child {\n      margin-left: var(--cx-spacing-2x);\n    }\n\n    .uc-corpNav-auth button {\n      flex: 1;\n    }\n\n    .uc-corpNav-userMenu-loadingSpinner {\n      /* 137 pixels is the width of the current `Register/Sign In` field that replaces this one, when the user is logged out. */\n      padding: 0 57px 0 60px;\n    }\n\n    /* Mobile styles */\n    @media (--cx-mq-maxWidthMobileLandscape) {\n      .uc-corpNav-menuItem {\n        font-size: var(--cx-font-sizeMd);\n      }\n    }\n\n    @media (--cx-mq-minWidthLaptop) {\n      .uc-corpNav-logotype {\n        padding-left: var(--cx-spacing-2x);\n        width: 152px; /* 16px left padding + 112px svg + 24px right padding */\n      }\n\n      /* inherit size from svg width & height attrs */\n      .uc-corpNav-logotype svg {\n        width: auto;\n        height: auto;\n      }\n\n      .uc-corpNav-menu {\n        display: flex;\n      }\n\n      .uc-corpNav-userMenu::before {\n        content: \'\';\n        position: relative;\n        top: 17px;\n        left: -10px;\n        border-left: 1px solid;\n        height: var(--cx-spacing-2x);\n        opacity: 0.15;\n      }\n\n      .uc-corpNav-drawer,\n      .uc-corpNav-hamburger {\n        display: none;\n      }\n    }\n\n    @media (--cx-mq-hover) {\n      .uc-corpNav-menuItem:hover {\n        color: var(--cx-color-actionableLowEmphHover);\n        background: var(--cx-color-faintNeutral);\n      }\n    }\n\n    /*\n    * Fix clicks on the documentElement (used to close dropdowns) not being detected on iOS\n    * See: https://gravitydept.com/blog/js-click-event-bubbling-on-ios &\n    * https://stackoverflow.com/a/47818418\n    */\n    @supports (-webkit-overflow-scrolling: touch) {\n      body {\n        cursor: pointer;\n      }\n    }\n\n    .uc-corpNav-menuItem:active,\n    .uc-corpNav-menuItem.is-active,\n    .uc-corpNav-flyoutItem.is-selected {\n      color: var(--cx-color-selectedText);\n      background-color: var(--cx-color-selectedBackground);\n    }\n\n    .uc-corpNav-menu > .uc-corpNav-a:active,\n    .uc-corpNav-menu > .uc-corpNav-a.is-active,\n    .uc-corpNav-menu > .uc-corpNav-button:active,\n    .uc-corpNav-menu > .uc-corpNav-button.is-active {\n      border-bottom-color: var(--cx-color-actionableActive);\n      color: var(--cx-color-actionableActive);\n      background-color: transparent;\n    }\n\n    @media (--cx-mq-hover) {\n      .uc-corpNav-menu > .uc-corpNav-a:hover:active,\n      .uc-corpNav-menu > .uc-corpNav-a:hover.is-active,\n      .uc-corpNav-menu > .uc-corpNav-button:hover:active,\n      .uc-corpNav-menu > .uc-corpNav-button:hover.is-active {\n        background-color: var(--cx-color-faintNeutral);\n      }\n    }\n\n    .uc-corpNav-dropdown-checkbox:checked ~ .uc-corpNav-dropdown,\n    .uc-corpNav-dropdown:active,\n    .uc-corpNav-dropdown.is-active {\n      background-color: var(--cx-color-white);\n      filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));\n    }\n\n    .uc-corpNav-menuItem.is-active,\n    .uc-corpNav-menuItem.is-selected,\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader {\n      font-weight: var(--cx-font-weightMedium);\n    }\n\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionHeader,\n    .uc-corpNav-accordion:checked ~ .uc-corpNav-accordionMenu {\n      background-color: var(--cx-color-faintNeutral);\n    }\n  </style>\n  <header class="uc-corpNav-header">\n    <div class="uc-corpNav-hamburger" data-tn="ucCorpNav-hamburger" tabindex="0"\n      role="button" aria-label="Expand Navigation">\n      <svg class="uc-corpNav-svg cx-icon" width="24" height="24">\n        <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-Hamburger_24x24"></use>\n      </svg>\n    </div>\n    <a href="/" class="uc-corpNav-a uc-corpNav-logotype" data-tn="ucCorpNav-logotype">\n      <svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 112 16" width="112" height="16">\n        <title>Compass</title>\n        <path d="M53,.457,45,11.314,37,.457V15h2V6.543l6,8.143,6-8.143V15h2ZM60,15H58V1h6.5a4.5,4.5,0,0,1,0,9H60Zm0-7h4.5a2.5,2.5,0,0,0,0-5H60Zm22.863,7h2.275L77.5.9,69.863,15h2.275l1.625-3h7.475Zm-8.018-5L77.5,5.1,80.155,10ZM97,11.085c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375A4.494,4.494,0,0,0,91.94,13.29c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L91,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C95.516,7.487,97,8.96,97,11.085Zm14,0c0,2.371-2.175,4.16-5.06,4.16a6.494,6.494,0,0,1-4.878-2.355l1.41-1.375a4.494,4.494,0,0,0,3.468,1.775c1.8,0,3.06-.906,3.06-2.2,0-1.11-.756-1.856-2.31-2.283L105,8.42c-3.6-.884-3.6-3.043-3.6-3.753,0-2.232,1.8-3.732,4.485-3.732a6.1,6.1,0,0,1,4.581,2.05l-1.41,1.378a4.629,4.629,0,0,0-3.171-1.472c-1.579,0-2.485.647-2.485,1.777,0,.337.128,1.462,1.773,1.816l1.533.345C109.516,7.487,111,8.96,111,11.085Zm-98.611.8h0a5.5,5.5,0,1,1,0-7.778h0l.354.354L14.157,3.05,13.8,2.7h0a7.5,7.5,0,1,0,0,10.607l0,0h0l.354-.353-1.414-1.415ZM25.5.5A7.5,7.5,0,1,0,33,8,7.5,7.5,0,0,0,25.5.5Zm0,13A5.5,5.5,0,1,1,31,8,5.5,5.5,0,0,1,25.5,13.5Zm3.207-7.293L27.293,4.793l-5,5,1.414,1.414Z"/>\n      </svg>\n    </a>\n  </header>\n  <div class="uc-corpNav-menuWrapper">\n    <div class="uc-corpNav-menu">\n      <a href="/homes-for-sale/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-Buy" data-label="Buy">\n        Buy\n      </a>\n      <a href="/for-rent/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-Rent" data-label="Rent">\n        Rent\n      </a>\n      <a href="/sell/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-Sell" data-label="Sell">\n        Sell\n      </a>\n      <div class="uc-corpNav-label u-absoluteFill">\n        <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill" data-tn="ucCorpNav-CompassExclusives" data-label="Compass Exclusives"\n          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n          Compass Exclusives\n            <div class="uc-corpNav-dropdownIcon">\n              <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n              </svg>\n            </div>\n            <ul class="uc-corpNav-flyout Compass Exclusives">\n              <li>\n                <a href="/private-exclusives/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-PrivateExclusives" data-label="Private Exclusives">\n                  Private Exclusives\n                </a>\n              </li>\n              <li>\n                <a href="/coming-soon/listings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-ComingSoon" data-label="Coming Soon">\n                  Coming Soon\n                </a>\n              </li>\n              <li>\n                <a href="/compass-listings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-CompassListings" data-label="Compass Listings">\n                  Compass Listings\n                </a>\n              </li>\n            </ul>\n        </div>\n      </div>\n      <a href="/development/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-caption1\n              " data-tn="ucCorpNav-link-NewDevelopment" data-label="New Development">\n        New Development\n      </a>\n      <div class="uc-corpNav-label u-absoluteFill">\n        <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1 u-absoluteFill" data-tn="ucCorpNav-Agents" data-label="Agents"\n          role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n          Agents\n            <div class="uc-corpNav-dropdownIcon">\n              <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n                <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n              </svg>\n            </div>\n            <ul class="uc-corpNav-flyout Agents">\n              <li>\n                <a href="/agents/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-FindanAgent" data-label="Find an Agent">\n                  Find an Agent\n                </a>\n              </li>\n              <li>\n                <a href="//agents.compass.com/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem\n                        " data-tn="ucCorpNav-userMenu-BecomeanAgent" data-label="Become an Agent">\n                  Become an Agent\n                </a>\n              </li>\n            </ul>\n        </div>\n      </div>\n    </div>\n  </div>\n  <div class="uc-corpNav-drawer">\n    <div class="uc-corpNav-drawerTop">\n      <a href="/" class="uc-corpNav-a uc-corpNav-logo" data-tn="ucCorpNav-drawerLogo">\n        <svg class="uc-corpNav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="48" height="48">\n          <path d="M12,22A10,10,0,1,1,22,12,10.011,10.011,0,0,1,12,22ZM12,3a9,9,0,1,0,9,9A9.011,9.011,0,0,0,12,3ZM8.854,15.854l7-7a.5.5,0,0,0-.708-.708l-7,7a.5.5,0,0,0,.708.708Z"></path>\n        </svg>\n      </a>\n      <div class="uc-corpNav-close" data-tn="ucCorpNav-drawerClose">\n        <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n          <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-x_16x16"></use>\n        </svg>\n      </div>\n    </div>\n    <a href="/homes-for-sale/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-Buy" data-label="Buy">\n      Buy\n    </a>\n    <a href="/for-rent/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-Rent" data-label="Rent">\n      Rent\n    </a>\n    <a href="/sell/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-Sell" data-label="Sell">\n      Sell\n    </a>\n    <div class="uc-corpNav-label">\n      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n        id="CompassExclusives">\n      <label for="CompassExclusives"\n        class="uc-corpNav-accordion">Compass Exclusives</label>\n      <div class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n              " data-tn="ucCorpNav-drawerLink-CompassExclusives" data-label="Compass Exclusives"\n              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n        Compass Exclusives\n      </div>\n      <ul class="uc-corpNav-accordionMenu">\n        <li>\n          <a href="/private-exclusives/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                " data-tn="ucCorpNav-drawerLink-PrivateExclusives" data-label="Private Exclusives">\n            Private Exclusives\n          </a>\n        </li>\n        <li>\n          <a href="/coming-soon/listings/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                " data-tn="ucCorpNav-drawerLink-ComingSoon" data-label="Coming Soon">\n            Coming Soon\n          </a>\n        </li>\n        <li>\n          <a href="/compass-listings/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                " data-tn="ucCorpNav-drawerLink-CompassListings" data-label="Compass Listings">\n            Compass Listings\n          </a>\n        </li>\n      </ul>\n    </div>\n    <a href="/development/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body\n            " data-tn="ucCorpNav-drawerLink-NewDevelopment" data-label="New Development">\n      New Development\n    </a>\n    <div class="uc-corpNav-label">\n      <input class="uc-corpNav-accordion u-absoluteFill" type="checkbox"\n        id="Agents">\n      <label for="Agents" class="uc-corpNav-accordion">Agents</label>\n      <div class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-accordionHeader textIntent-body\n              " data-tn="ucCorpNav-drawerLink-Agents" data-label="Agents"\n              role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n        Agents\n      </div>\n      <ul class="uc-corpNav-accordionMenu">\n        <li>\n          <a href="/agents/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                  " data-tn="ucCorpNav-drawerLink-FindanAgent" data-label="Find an Agent">\n            Find an Agent\n          </a>\n        </li>\n        <li>\n          <a href="//agents.compass.com/" class="uc-corpNav-a uc-corpNav-menuItem textIntent-body uc-corpNav-accordionItem\n                  " data-tn="ucCorpNav-drawerLink-BecomeanAgent" data-label="Become an Agent">\n            Become an Agent\n          </a>\n        </li>\n      </ul>\n    </div>\n  </div>\n  <div class="uc-corpNav-menu uc-corpNav-userMenu">\n    <div class="cx-animDotShift cx-animDotShift--sm uc-corpNav-userMenu-loadingSpinner"></div>\n  </div>\n  <div class="uc-corpNav-backdrop" data-tn="ucCorpNav-drawerBackdrop"></div>\n</nav>')}catch(n){r(o.handleError(n,0,0))}}},(window.nunjucksPrecompiled=window.nunjucksPrecompiled||{})["userMenu.njk"]={root:function(n,e,t,o,r){var a="";try{if(o.contextOrFrameLookup(e,t,"isLoggedIn")){if(a+="\n  ",o.contextOrFrameLookup(e,t,"isAgent"))a+='\n    <a href="',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"agentPlatformUrl"),n.opts.autoescape),a+='"\n        class="uc-corpNav-a uc-corpNav-menuItem uc-corpNav-agentPlatform textIntent-caption1"\n        data-tn="ucCorpNav-link-agentPlatform">\n      ',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"userDisplayName"),n.opts.autoescape),a+="\n    </a>\n  ";else{a+='\n    <div class="uc-corpNav-dropdown uc-corpNav-menuItem textIntent-caption1"\n        data-tn="ucCorpNav-userMenu"\n        role="button" aria-expanded="false" aria-haspopup="true" tabindex="0">\n      ',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"userMenuLabel"),n.opts.autoescape),a+='\n      <div class="uc-corpNav-dropdownIcon">\n        <svg class="uc-corpNav-svg cx-icon" width="16" height="16">\n          <use xlink:href="/ucfe-assets/cx-icons/4/cx-icons.cdn.svg#cx-icon-chevronDown_16x16"></use>\n        </svg>\n      </div>\n      <ul class="uc-corpNav-flyout">\n        ',t=t.push();var i=o.contextOrFrameLookup(e,t,"userMenuChildren");if(i)for(var c=(i=o.fromIterator(i)).length,s=0;s<i.length;s++){var u=i[s];t.set("link",u),t.set("loop.index",s+1),t.set("loop.index0",s),t.set("loop.revindex",c-s),t.set("loop.revindex0",c-s-1),t.set("loop.first",0===s),t.set("loop.last",s===c-1),t.set("loop.length",c),a+='\n        <li>\n          <a href="',a+=o.suppressValue(o.memberLookup(u,"url"),n.opts.autoescape),a+='" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem"\n              data-tn="ucCorpNav-userMenu-',a+=o.suppressValue(n.getFilter("replace").call(e,o.memberLookup(u,"label")," ",""),n.opts.autoescape),a+='"\n              data-label="',a+=o.suppressValue(o.memberLookup(u,"label"),n.opts.autoescape),a+='">\n            ',a+=o.suppressValue(o.memberLookup(u,"label"),n.opts.autoescape),a+="\n          </a>\n        </li>\n        "}t=t.pop(),a+='\n      </ul>\n    </div>\n    <div class="uc-corpNav-dropdown uc-corpNav-avatar uc-corpNav-menuItem textIntent-caption1"\n        data-tn="ucCorpNav-link-accountSettingsMenu"\n        role="button" aria-expanded="false" aria-haspopup="true" tabindex="0"\n        aria-label="Account settings',o.contextOrFrameLookup(e,t,"invitationCount")>0&&(a+=" - You have a pending invitation request"),a+='">\n        ',o.contextOrFrameLookup(e,t,"invitationCount")>0?(a+='\n        <div class="cx-indicator" aria-label="There is a pending invitation request">\n          ',a+=o.suppressValue(n.getFilter("safe").call(e,o.contextOrFrameLookup(e,t,"userSvg")),n.opts.autoescape),a+="\n        </div>\n        "):(a+="\n        ",a+=o.suppressValue(n.getFilter("safe").call(e,o.contextOrFrameLookup(e,t,"userSvg")),n.opts.autoescape),a+="\n        "),a+='\n      <ul class="uc-corpNav-flyout uc-corpNav-flyout--flipped">\n        <li>\n          <a href="/account/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem"\n              data-tn="ucCorpNav-accountSettingsMenu-AccountSettings"\n              data-label="Account Settings">\n            Account Settings\n            ',o.contextOrFrameLookup(e,t,"invitationCount")>0&&(a+='\n            <span class="uc-corpNav-badge">',a+=o.suppressValue(o.contextOrFrameLookup(e,t,"invitationCount"),n.opts.autoescape),a+="</span>\n            "),a+='\n          </a>\n        </li>\n        <li>\n          <a href="/email-settings/" class="uc-corpNav-a uc-corpNav-flyoutItem uc-corpNav-menuItem"\n              data-tn="ucCorpNav-accountSettingsMenu-EmailSettings"\n              data-label="Email Settings">\n            Email Settings\n          </a>\n        </li>\n      </ul>\n    </div>\n  '}a+="\n"}else a+='\n<button\n    class="uc-corpNav-button uc-corpNav-menuItem textIntent-caption1 uc-corpNav-loginBtn"\n    data-tn="ucCorpNav-btn-logIn"\n    data-label="Log In">\n  Register/Sign In\n</button>\n';r(null,a+="\n")}catch(n){r(o.handleError(n,0,0))}}}}var mt={items:[{label:"Buy",agentUrl:"/search/sales",nonAgentUrl:"/homes-for-sale/",isActive:["/search/sales","/search/buy","/homes-for-sale/"]},{label:"Rent",agentUrl:"/search/rentals",nonAgentUrl:"/for-rent/",isActive:["/search/rentals","/search/rent","/for-rent/"]},{label:"Sell",globalUrl:"/sell/"},{label:"Compass Exclusives",children:[{label:"Private Exclusives",globalUrl:"/private-exclusives/"},{label:"Coming Soon",agentUrl:"/search/sales/{{geoId}}/?exclusives=1&saleStatuses=12",nonAgentUrl:"/coming-soon/listings/"},{label:"Compass Listings",agentUrl:"/search/sales/{{geoId}}/?exclusives=y&saleStatuses=9,12",nonAgentUrl:"/compass-listings/"}]},{label:"New Development",hideIfBranded:!0,globalUrl:"/development/"},{label:"Agents",hideIfBranded:!0,children:[{label:"Find an Agent",globalUrl:"/agents/"},{label:"Join as an Agent",globalUrl:"//agents.compass.com/"}]}],brandingDropdownTitle:"My Agent",agentPlatformUrl:"/app/home/",homepageUrl:"/",accountSettingsMenu:{label:"Account",children:[{label:"Account Settings",url:"/account/"},{label:"Email Settings",url:"/email-settings/"}]},userMenu:{label:"Saved Items",children:[{label:"Collections",url:"/workspace/#/collections"},{label:"Saved Searches",url:"/workspace/#/saved-searches"},{label:"Saved Buildings",url:"/workspace/#/saved-buildings",experiment:"!disable_corpnav_saved_buildings_item"}]}};var Nt=4e3,bt="REFRESH_TOAST",Et={AGENT_CONNECTION_SUCCESS:"AGENT_CONNECTION_SUCCESS",DISCONNECT_AGENT_SUCCESS:"DISCONNECT_AGENT_SUCCESS"};function xt(n){var e=document.getElementById("toast-message");e&&(e.innerHTML="",e.append(n))}function yt(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=n.duration,t=void 0===e?Nt:e,o=n.message;o&&xt(o);var r=document.getElementById("corp-nav-toast-container");r&&r.classList.remove("is-hidden"),0!==t&&setTimeout(function(){var n;(n=document.getElementById("corp-nav-toast-container"))&&n.classList.add("is-hidden")},t)}function At(n){try{window.localStorage.setItem(bt,n)}catch(n){console.error(n)}}function _t(){document.body.appendChild(function(){var n=document.createElement("div");n.id="corp-nav-toast-container",n.classList.add("cx-toast","cx-toast--fixed","is-hidden");var e=document.createElement("div");e.classList.add("cx-toast-content");var t=document.createElement("div");return t.id="toast-message",t.classList.add("cx-toast-message"),n.appendChild(e),e.appendChild(t),n}()),window.uc||(window.uc={}),window.uc.showToast=yt,window.uc.queueToast=At;try{!function(){var n=window.localStorage.getItem(bt),e=window.uc&&window.uc.agentRelations&&window.uc.agentRelations.brandingAgentOrTeam&&window.uc.agentRelations.brandingAgentOrTeam.firstName;switch(n){case Et.AGENT_CONNECTION_SUCCESS:xt(e?e+" is connected as your agent":"You successfully connected to your agent");break;case Et.DISCONNECT_AGENT_SUCCESS:xt("Disconnected from your agent");break;default:return!1}yt(),window.localStorage.removeItem(bt)}()}catch(n){console.error(n)}}var Ot="/ucfe-assets/search-typeahead-components/19/location-lookup.esm.js",Lt="/ucfe-assets/agents-for-client-common-ui/1/afcCommonUi.esm.js",wt=!1,Tt=null;function It(n){"complete"===document.readyState?function(n){_t(),function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window,e=E.get(n,"uc.events.authentication");return e||(e=new x,E.set(n,"uc.events.authentication",e,!0)),e}().on("authenticated",function(n){!function(n){window.nunjucksPrecompiled||gt();var e=st(n,mt);document.querySelector(".uc-corpNav-userMenu").innerHTML=c.render("userMenu.njk",e),document.querySelector(".uc-corpNav-userMenu--mobile").innerHTML=c.render("mobileUserMenu.njk",e)}({userId:n.personId||n.id||n._id,userDisplayName:n.displayName,userRoles:n.roles||E.get(n,"userProfile.roles")}),Pt()}),t=Ut(".uc-corpNav-drawer"),Bt(".uc-corpNav-loginBtn").forEach(function(n){n.addEventListener("click",function(){t.classList.contains("is-active")&&t.classList.remove("is-active");var n=window.uc&&window.uc.agentRelations&&window.uc.agentRelations.brandingAgentOrTeam;Be("authentication/2",{authTriggerEvent:"Corp Nav Login Modal",authTriggerSource:window.location.href,brandingAgentOrTeam:n,formType:"LOGIN"}).catch(Rt)})}),function(){var n=Ut(".uc-corpNav-backdrop"),e=Ut(".uc-corpNav-hamburger-close"),t=Ut(".uc-corpNav-drawer"),o=Ut(".uc-corpNav-hamburger");n.addEventListener("click",function(){return St(t,!0)}),e.addEventListener("click",function(){return St(t,!0)}),o.addEventListener("click",function(){return St(t,!1)}),e.addEventListener("keypress",function(n){"Enter"===n.key&&(St(t,!0),o.focus())}),o.addEventListener("keypress",function(n){"Enter"===n.key&&(St(t,!1),e.focus())})}(),function(){var n=document.getElementsByClassName("uc-corpNav-dropdown");function e(e){var t=e.target.closest(".uc-corpNav-dropdown");Array.from(n).forEach(function(n){t===n?n.classList.toggle("is-active"):n.classList.remove("is-active"),function(n){n.classList.contains("is-active")?n.setAttribute("aria-expanded",!0):n.setAttribute("aria-expanded",!1)}(n)})}document.documentElement.addEventListener("click",e),document.documentElement.addEventListener("keypress",function(n){"Enter"===n.key&&e(n)});var t=Ut(".uc-corpNav-userMenu .uc-corpNav-dropdown");(t?Bt(".uc-corpNav-flyoutItem",t):[]).forEach(function(n){n.addEventListener("click",function(){t.classList.remove("is-active")})})}(),e=document.getElementsByClassName("uc-corpNav-accordionHeader"),Array.from(e).forEach(function(n){n.addEventListener("keypress",function(e){"Enter"===e.key&&kt(n)}),n.addEventListener("click",function(){kt(n)})}),function(){var n=document.getElementsByClassName("uc-corpNav-accordionHeader");Array.from(n).forEach(function(n){n.addEventListener("click",function(){return Ct(n)}),n.addEventListener("keypress",function(e){"Enter"===e.key&&Ct(n)})})}(),document.querySelector("#location-lookup")&&Me(Ot).then(function(n){n.componentInitializer()}).catch(function(n){return console.error(n)}),function(){var n=Ut(".uc-corpNav-compassLogotype"),e=Bt(".uc-corpNav-menu:not(.uc-corpNav-userMenu) > *"),t=Bt([".uc-corpNav-menuItem:not(.uc-corpNav-accordionItem)",".uc-corpNav-authBtn"],Ut(".uc-corpNav-drawer"));function o(n){var e=n.sectionTitle,t=n.links;t.forEach(function(n){n.addEventListener("click",function(n){n.stopPropagation(),Dt({SecondaryItem:e,TopLevelItem:"My Agent"})})})}n.addEventListener("click",function(){Dt({SecondaryItem:"",Section:"Header",TopLevelItem:"Compass Logotype"})}),e.forEach(function(n){if(Ut(".uc-corpNav-dropdown",n)){var t=Bt(".uc-corpNav-flyoutItem",n);t.forEach(function(e){e.addEventListener("click",function(o){o.stopPropagation(),Dt({Position:t.indexOf(e)+1,SecondaryItem:Gt(e),Section:"Main Menu",TopLevelItem:Gt(n)})})})}n.addEventListener("click",function(){Dt({Position:e.indexOf(n)+1,SecondaryItem:"",Section:"Main Menu",TopLevelItem:Gt(n)})})}),t.forEach(function(n){if(n.classList.contains("uc-corpNav-accordionHeader")){var e=Bt(".uc-corpNav-accordionItem",n.parentNode);e.forEach(function(t){t.addEventListener("click",function(){Dt({Position:e.indexOf(t)+1,SecondaryItem:Gt(t),Section:"Mobile Drawer",TopLevelItem:Gt(n)})})})}n.addEventListener("click",function(){Dt({Position:t.indexOf(n)+1,SecondaryItem:"",Section:"Mobile Drawer",TopLevelItem:Gt(n)})})}),jt()&&(o({links:Bt(".uc-corpNav-brandingAgent-profileLink"),sectionTitle:"Profile"}),o({links:Bt(".uc-corpNav-brandingAgent-email"),sectionTitle:"Email"}),o({links:Bt(".uc-corpNav-brandingAgent-phone"),sectionTitle:"Phone"}),o({links:Bt(".uc-corpNav-brandingAgent-remove"),sectionTitle:"Remove"}),o({links:Bt(".uc-corpNav-brandingAgent-addRemove"),sectionTitle:"Add/Remove"}),o({links:Bt(".uc-corpNav-brandingAgent-manageLink"),sectionTitle:"Manage"}))}(),Pt(),function(n){if(n.opty&&n.opty[Ye])try{Me(Lt).then(function(n){return n.init()}).catch(function(n){return console.error(n)})}catch(n){console.error(n)}}(n),function(n){var e=Bt(".uc-corpNav-brandingAgent-addRemove"),t=Bt(".uc-corpNav-brandingAgent-remove"),o=window.uc&&window.uc.agentRelations&&window.uc.agentRelations.brandingAgentOrTeam&&window.uc.agentRelations.brandingAgentOrTeam.displayName,r="No, Thanks",a=["/bridge-loan-services/","/concierge/","/sell/","/private-exclusives/buyers/","/private-exclusives/"];function c(){Be("confirm",{differentiateCloseBtn:!0,hdText:"",bdText:(o||"This agent")+" is set as your Compass agent. Would you like to continue working with them?",noText:r,yesText:"Yes, Please"}).then(function(){Dt({SecondaryItem:"Clicked Yes From Modal",TopLevelItem:"My Agent"});var e=Boolean(n.opty&&n.opty[Ke]),t=window.uc&&window.uc.agentRelations&&window.uc.agentRelations.brandingAgentOrTeam&&1===window.uc.agentRelations.brandingAgentOrTeam.profileType;if(e&&!t&&window.uc.connectWithAgent){var r=jt();window.uc.connectWithAgent({agentId:r,connectionSource:ke.TEMPORARY_BRANDING_CTA})}else window.uc.showToast({message:"Continuing to work with "+(o||"this agent")})}).catch(function(n){if(n==='user clicked "'+r+'"'){var e=window.uc&&window.uc.agentRelations&&window.uc.agentRelations.brandingAgentDetails&&window.uc.agentRelations.brandingAgentDetails.isPersistent,t=window.uc&&window.uc.user&&window.uc.user.personId,o=e?Yn({userId:t,agentId:jt()}):window.fetch("/account/temporary-branding/",{method:"DELETE"});o.then(function(){var n,e;Dt({SecondaryItem:"Clicked No From Modal",TopLevelItem:"My Agent"}),window.uc.queueToast(Et.DISCONNECT_AGENT_SUCCESS),n=new URL(document.location.href),(e=a.find(function(e){return n.pathname.startsWith(e)}))?document.location.replace(e):(n.searchParams.delete("agent_id"),n.href!==document.location.href?document.location.replace(n.href):document.location.reload())}).catch(function(n){console.error(n)})}else void 0===n||"user clicked close button"===n?Dt({SecondaryItem:"Closed Modal",TopLevelItem:"My Agent"}):console.error(n)})}[].concat(i(e),i(t)).forEach(function(n){n.addEventListener("click",c)})}(n),window.self!==window.top&&document.querySelectorAll("a").forEach(function(n){n.setAttribute("target","_blank")});var e;var t;window.uc&&window.uc.user&&window.uc.user.isImpersonating&&window.fetch("/api/v3/people/toggle_accounts",{credentials:"same-origin",method:"GET"}).then(function(n){return n.json&&n.json()}).then(function(n){1===n.impersonationStatus&&(window.uc.user.impersonationStatus="Team Account")}).finally(function(){Ge(window.uc.user)});document.removeEventListener("readystatechange",Tt)}(n):wt||(Tt=function(){return It(n)},document.addEventListener("readystatechange",Tt),wt=!0)}function St(n,e){n.classList.toggle("is-active"),document.body.classList.toggle("uc-corpNav-drawerOpen"),Dt({Position:"",SecondaryItem:"",Section:"Mobile Drawer",TopLevelItem:"Mobile Drawer "+(e?"Closed":"Opened")})}function Ct(n){n.nextElementSibling.hidden?(n.nextElementSibling.hidden=!1,n.setAttribute("aria-expanded",!0)):(n.nextElementSibling.hidden=!0,n.setAttribute("aria-expanded",!1))}function kt(n){var e=n.parentElement.querySelector("input.uc-corpNav-accordion");e.checked?e.checked=!1:e.checked=!0}function Rt(n){n&&"Modal closed"===n.message||void 0===n||console.error("Error from login modal:",n)}var Mt=!1,Ft=!1;function Pt(){var n=Bt(".uc-corpNav-userMenu > *"),e=Bt('[data-tn="ucCorpNav-userMenu"] .uc-corpNav-flyoutItem');!Mt&&n.forEach(function(e){var t={Position:n.indexOf(e)+1,SecondaryItem:"",Section:"User Menu",TopLevelItem:Gt(e)};e.classList.contains("uc-corpNav-avatar")?t.TopLevelItem="User Avatar":e.classList.contains("uc-corpNav-dropdown")?t.TopLevelItem="Saved Items":e.classList.contains("uc-corpNav-agentPlatform")&&(t.TopLevelItem="Agent Platform"),e.addEventListener("click",function(){Dt(t)})}),Mt=!!n.length,!Ft&&e.forEach(function(n){n.addEventListener("click",function(t){t.stopPropagation(),Dt({Position:e.indexOf(n)+1,SecondaryItem:Gt(n),Section:"User Menu",TopLevelItem:"Saved Items"})})}),Ft=!!e.length}function Dt(n){window.analytics&&window.analytics.track("Corp Nav Clicked",Object.assign({referring_agent_id:jt()},n))}function Ut(n){return(arguments.length>1&&void 0!==arguments[1]?arguments[1]:document).querySelector(n)}function Bt(n){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:document;return[].concat(i(e.querySelectorAll(n)))}function jt(){return window.uc&&window.uc.agentRelations&&window.uc.agentRelations.brandingAgentOrTeam&&window.uc.agentRelations.brandingAgentOrTeam.id}function Gt(n){return n.dataset.label?n.dataset.label.trim():n.textContent?n.textContent.trim():""}function Vt(n){var e=document.getElementById("uc-corpNav-placeholder"),t=document.createElement("template"),o=function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},t=Object.assign({},ct,n),o=t.agentRelations,r=t.geoId,a=t.opty,i=t.showLocationLookup,c=t.transparent,s=pt({agentRelations:o,opty:a}),u=s?"City, Neighborhood, Address, School, ZIP, ID":"City, Neighborhood, Address, School, ZIP, Agent, ID";return Object.assign(st(t,e),{brandingAgentOrTeam:o&&o.brandingAgentOrTeam,brandingDropdownTitle:e.brandingDropdownTitle,brandingMonogramPlaceholder:ft(o),brandingOptOut:a[He],agentBrandingProfileUrl:ht(o),compassLogotypeSvg:it(ot),geoId:r,homepageUrl:e.homepageUrl,invitationCount:o&&o.invitationCount||0,isAbleToConnect:dt({agentRelations:o,opty:a}),isBranded:s,isPersistentConnection:vt({agentRelations:o,opty:a}),links:nt(t,e.items,{isAgent:ut(t.userRoles),isBranded:s}),locationLookupOptions:{placeholderText:u,shouldRender:i},opty:a,style:it(at),transparent:c})}(n,mt);t.innerHTML=c.render("navigation.njk",o);var r=void 0;e?(r=e.parentNode).replaceChild(t.content,e):n.parentElement&&(r=n.parentElement).insertBefore(t.content,n.parentElement.firstElementChild),function(n){if(!n)return;for(var e=n.getElementsByTagName("svg"),t=0;t<e.length;t++){var o=e[t],r=o.firstElementChild;if(r&&"use"===r.tagName.toLowerCase()){for(var a=document.createElementNS("http://www.w3.org/2000/svg","svg"),i=0;i<o.attributes.length;i++){var c=o.attributes[i];a.setAttribute(c.name,c.value)}var s=document.createElementNS("http://www.w3.org/2000/svg","use");s.setAttributeNS("http://www.w3.org/1999/xlink","href",r.getAttribute("xlink:href")),a.append(s),o.parentNode.replaceChild(a,o)}}}(r),It(n)}return function(n){gt();var e=window&&window.uc&&{agentRelations:window.uc.agentRelations,connectWithAgent:window.uc.connectWithAgent,experiments:window.uc.experiments,geoId:window.uc.geoId||"nyc",userDisplayName:window.uc.user&&window.uc.user.displayName,userId:window.uc.user&&window.uc.user._id,userRoles:window.uc.user&&window.uc.user.roles}||{},o=Object.assign(e,n);return function(n){var e=n.attributes,t=n.id;return 0===ze.length?Promise.resolve({}):sn.post("/api/v3/opty/batch/get_features_and_variables/"+t,{features:ze,attributes:e}).then(function(n){var e=n&&n.data&&n.data.features;return function(n){var e={};return n.forEach(function(n){var t=n.featureKey,o=n.enabled;e[t]=o}),e}(Array.isArray(e)?e:[])})}({id:n&&n.optyUserParams&&n.optyUserParams.id||(t.get("ajs_anonymous_id")||"unknown").replace(/"/g,""),attributes:a({email:o.agentRelations&&o.agentRelations.brandingAgentOrTeam&&o.agentRelations.brandingAgentOrTeam.email,geoId:window&&window.uc&&window.uc.user&&window.uc.user.selectedGeoId,roles:window&&window.uc&&window.uc.user&&window.uc.user.roles,userId:window&&window.uc&&window.uc.user&&window.uc.user.userId},n&&n.optyUserParams&&n.optyUserParams.attributes)}).then(function(n){Vt(o=Object.assign(o,{opty:n}))}).catch(function(n){console.error(n),Vt(o)})}});
</script>
    
    <style>.grecaptcha-badge { visibility: hidden; }</style>
    <script src="https://www.google.com/recaptcha/api.js?render=6Ld-u_UUAAAAAPU09eEm6LksWjxz9ySwgzgA1PAc"></script>
  <script>
    // this variable is exposed to be used by all client side components
    window.__AGENT_GEOMAP__ = {"geoMap": {"nyc":{"displayName":"New York City","geoId":"nyc","id":22},"philadelphia":{"displayName":"Pennsylvania, Delaware, & South Jersey","geoId":"philadelphia","id":16},"rhode_island":{"displayName":"Rhode Island","geoId":"rhode_island","id":54},"la":{"displayName":"Los Angeles & Orange County","geoId":"la","id":14},"denver":{"displayName":"Denver & Boulder","geoId":"denver","id":17},"santa_barbara_montecito":{"displayName":"Santa Barbara, Montecito, & Central Coast","geoId":"santa_barbara_montecito","id":18},"hamptons":{"displayName":"The Hamptons","geoId":"hamptons","id":19},"tampa":{"displayName":"Tampa","geoId":"tampa","id":37},"san_antonio":{"displayName":"San Antonio","geoId":"san_antonio","id":13},"san_diego":{"displayName":"San Diego","geoId":"san_diego","id":20},"northern_nj":{"displayName":"North Jersey","geoId":"northern_nj","id":33},"naples":{"displayName":"Southwest Florida","geoId":"naples","id":23},"orlando":{"displayName":"Central Florida","geoId":"orlando","id":45},"boston":{"displayName":"Greater Boston","geoId":"boston","id":21},"nashville":{"displayName":"Nashville","geoId":"nashville","id":31},"hawaii":{"displayName":"Hawaii","geoId":"hawaii","id":35},"aspen":{"displayName":"Aspen & Vail","geoId":"aspen","id":27},"chicago":{"displayName":"Chicago","geoId":"chicago","id":44},"dc":{"displayName":"DC, Maryland, & Virginia","geoId":"dc","id":32},"atlanta":{"displayName":"Atlanta","geoId":"atlanta","id":36},"bakersfield":{"displayName":"Bakersfield, CA","geoId":"bakersfield","id":38},"telluride":{"displayName":"Telluride","geoId":"telluride","id":42},"miami":{"displayName":"South Florida","geoId":"miami","id":41},"long_island":{"displayName":"Long Island","geoId":"long_island","id":28},"charlotte":{"displayName":"Charlotte","geoId":"charlotte","id":2},"durham_raleigh":{"displayName":"Raleigh-Durham","geoId":"durham_raleigh","id":11},"houston":{"displayName":"Houston","geoId":"houston","id":5},"lake_tahoe":{"displayName":"Lake Tahoe","geoId":"lake_tahoe","id":8},"seattle":{"displayName":"Seattle, Eastside, & Greater Puget Sound","geoId":"seattle","id":10},"pittsburgh":{"displayName":"Greater Pittsburgh","geoId":"pittsburgh","id":30},"austin":{"displayName":"Austin & Central Texas","geoId":"austin","id":48},"sf":{"displayName":"San Francisco Bay Area","geoId":"sf","id":49},"westchester_ny":{"displayName":"Westchester & Hudson Valley","geoId":"westchester_ny","id":1},"greenwich_ct":{"displayName":"Connecticut","geoId":"greenwich_ct","id":46},"jacksonville_fl":{"displayName":"North Florida","geoId":"jacksonville_fl","id":4},"dallas":{"displayName":"Dallas-Fort Worth","geoId":"dallas","id":47}}}
  </script>
  </body>
</html>
