body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
.corp-hero-carousel {
  height: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel {
    overflow: hidden;
  }
}
.corp-hero-carousel__image-swiper, .corp-hero-carousel__image-image {
  height: 840px;
}
@media only screen and (min-width: 480px) {
  .corp-hero-carousel__image-swiper, .corp-hero-carousel__image-image {
    height: 740px;
  }
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__image-swiper, .corp-hero-carousel__image-image {
    height: 690px;
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__image-swiper, .corp-hero-carousel__image-image {
    height: 100%;
  }
}
.corp-hero-carousel__image-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.corp-hero-carousel__wrapper--full-height {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .corp-hero-carousel__wrapper--full-height {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__wrapper--full-height {
    min-height: 760px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .corp-hero-carousel__wrapper--full-height {
    margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin));
    margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin));
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__wrapper--full-height {
    height: 100vh;
  }
}
.corp-hero-carousel__wrapper--full-height::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: 100vw;
  height: 200px;
  display: block;
  background: linear-gradient(to bottom, rgba(14, 43, 99, 0.95), rgba(14, 43, 99, 0));
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .corp-hero-carousel__image-swiper::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100vw;
    height: 100px;
    display: block;
    background: linear-gradient(to top, rgba(14, 43, 99, 0.95), rgba(14, 43, 99, 0));
    z-index: 1;
  }
}
.corp-hero-carousel__teaser-and-xf-container {
  display: block;
  width: 100vw;
  position: static;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__teaser-and-xf-container {
    display: flex;
    justify-content: space-between;
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
  }
}
.corp-hero-carousel__teaser-content-wrapper {
  width: 82vw;
  padding-bottom: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 175px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__teaser-content-wrapper {
    top: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__teaser-content-wrapper {
    position: static;
    width: 40vw;
    margin-left: 5%;
    transform: none;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .corp-hero-carousel__teaser-content-wrapper {
    width: 38vw;
    max-width: 615px;
  }
}
.corp-hero-carousel__teaser__background {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__teaser__background {
    opacity: 0.66;
  }
}
.corp-hero-carousel__teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(14, 43, 99, 0.44);
  padding: 36px 30px;
  margin-bottom: 24px;
  position: relative;
}
.corp-hero-carousel__teaser__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
.corp-hero-carousel__teaser__content-swiper {
  width: 100%;
}
.corp-hero-carousel__teaser__content, .corp-hero-carousel__teaser__title {
  color: var(--batcom-color-teaser-offset-text);
}
.corp-hero-carousel__teaser__title {
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: 700;
  margin: 48px 0;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__teaser__title {
    font-size: var(--batcom-typography-h1-size-desktop);
    line-height: var(--batcom-typography-h1-line-height-desktop);
  }
}
.corp-hero-carousel__teaser__description {
  margin: 0 0 54px;
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__teaser__description {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-h6-line-height-mobile);
  }
}
.corp-hero-carousel__teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 8px 20px;
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
  font-size: var(--batcom-typography-x-small-line-height-mobile);
  margin: 0;
  padding: 9px 38px;
  border: 1px solid;
  transition: 0.3s;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__teaser__action-link {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.corp-hero-carousel__teaser__action-link span {
  color: var(--batcom-button-text);
}
.corp-hero-carousel__teaser__action-link:hover {
  color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg-hover);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
  text-decoration: none !important; /* stylelint-disable-line */
}
.corp-hero-carousel__teaser__action-link:hover span {
  color: var(--batcom-button-text-hover);
}
.corp-hero-carousel__teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon-hover);
}
.corp-hero-carousel__teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.corp-hero-carousel__teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.corp-hero-carousel__teaser__action-link__svg svg {
  height: 16px;
}
.batcom-container--primary-dark .corp-hero-carousel__teaser__action-link, .batcom-container--secondary-dark .corp-hero-carousel__teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark .corp-hero-carousel__teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .corp-hero-carousel__teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
.corp-hero-carousel__teaser__action-link:hover {
  border: 1px solid;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__teaser__action-link {
    font-size: var(--batcom-typography-small-size-mobile);
    font-weight: 700;
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__teaser__action-link {
    padding: 11px 38px;
  }
}
.corp-hero-carousel .custom-swiper-controller {
  display: flex;
  justify-content: space-around;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding: 16px 0;
}
.corp-hero-carousel .custom-swiper-controller-strip {
  width: 100%;
  cursor: pointer;
  display: block;
  padding: 7px 0;
}
.corp-hero-carousel .custom-swiper-controller-progress-wrapper {
  height: 3px;
  background-color: rgba(145, 145, 145, 0.6509803922);
  cursor: pointer;
  display: flex;
}
.corp-hero-carousel .custom-swiper-controller-progress {
  background-color: var(--batcom-color-teaser-offset-text);
  display: flex;
  width: 0;
  transition: none;
  height: 4px;
  margin-top: -1px;
}
.corp-hero-carousel .custom-swiper-controller-strip-active .custom-swiper-controller-progress-wrapper {
  background-color: transparent;
  border-bottom: 1px solid var(--batcom-color-teaser-offset-text);
}
.corp-hero-carousel .custom-swiper-controller-strip-active .custom-swiper-controller-progress {
  width: 100%;
  transition: width var(--swiper-progress-animation-speed) ease-in-out;
}
.corp-hero-carousel__experience-fragment {
  --batcom-layout-spacing-bottom-small-desktop: 24px;
  height: 100%;
  background-color: var(--batcom-color-container-primary-dark-bg);
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__experience-fragment {
    padding: 0 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__experience-fragment {
    width: 40vw;
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(14, 43, 99, 0), rgb(14, 43, 99));
  }
}
@media only screen and (min-width: 1280px) {
  .corp-hero-carousel__experience-fragment {
    width: 27.779vw;
  }
}
.corp-hero-carousel__experience-fragment .cmp-title__text,
.corp-hero-carousel__experience-fragment .batcom-shareprice,
.corp-hero-carousel__experience-fragment .batcom-text,
.corp-hero-carousel__experience-fragment .batcom-text a,
.corp-hero-carousel__experience-fragment .cmp-list__item-title,
.corp-hero-carousel__experience-fragment .cmp-list__item-meta-info,
.corp-hero-carousel__experience-fragment .cmp-list__item-description,
.corp-hero-carousel__experience-fragment .cmp-list__item-link--bottom {
  color: var(--batcom-color-teaser-offset-text);
}
.corp-hero-carousel__experience-fragment .cmp-text .small {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 12px;
  font-size: 10px;
  display: inline-block;
  background-color: rgba(14, 43, 99, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__experience-fragment .cmp-text .small {
    top: 32px;
    left: 4px;
    padding: 2px 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__experience-fragment .cmp-text .small {
    top: 0;
    left: 10px;
    padding: 4px 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .corp-hero-carousel__experience-fragment .cmp-text a {
    width: 50%;
    margin-left: 45%;
    font-size: 1rem;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list.batcom-layout--oneColumn .cmp-list__item {
  border: 0;
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-title {
  font-size: 1rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-title {
    font-size: 22px;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-date, .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-title, .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-description {
  margin: 0;
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-image .cmp-image {
  height: auto;
  width: 37.5vw;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-image .cmp-image {
    height: 240px;
    width: auto;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-meta-info {
  margin-top: 0;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-meta-info {
    margin-top: 32px;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item {
    display: flex;
    flex: 1;
    -moz-column-gap: 3vw;
         column-gap: 3vw;
    justify-content: space-between;
    margin: 0;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-content {
  padding: 0;
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-content {
    width: auto;
    display: block;
    margin-bottom: 29px;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-link--bottom {
  margin-top: 24px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  top: auto;
  left: 50%;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-link--bottom {
    position: relative;
    left: auto;
    margin-top: 0;
  }
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item-description {
  display: none;
}
.corp-hero-carousel__experience-fragment .batcom-list--news-and-stories .cmp-list__item--link {
  width: 50%;
}
.corp-hero-carousel__experience-fragment .cmp-separator {
  opacity: 1;
}
.corp-hero-carousel__experience-fragment .cmp-separator .cmp-separator__horizontal-rule {
  background-color: var(--batcom-color-teaser-offset-text);
}
.corp-hero-carousel__scroll-container {
  color: var(--batcom-color-teaser-offset-text);
  position: absolute;
  bottom: -50px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-transform: capitalize;
}
@media only screen and (min-width: 480px) {
  .corp-hero-carousel__scroll-container {
    bottom: -45px;
  }
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__scroll-container {
    left: 50%;
    bottom: 20px;
  }
}
.corp-hero-carousel__scroll-container svg {
  display: block;
  margin: 0 auto;
}
.corp-hero-carousel__scroll-hint-mobile {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__scroll-hint-mobile {
    display: none;
  }
}
.corp-hero-carousel__scroll-hint-desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .corp-hero-carousel__scroll-hint-desktop {
    display: block;
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYnJhbmRzL2NsaWVudGxpYnMvY29ycC9jb21wb25lbnRzL2NvcnAtaGVyby1jYXJvdXNlbC9jb3JwLWhlcm8tY2Fyb3VzZWwuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fbG9hZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19vdmVybGF5X3Nob3J0aGFuZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvZnVuY3Rpb25zL19ubi16LWluZGV4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2Fycm93LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NsZWFyZml4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbXBvbmVudC1ub3JtYWxpemUuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fZm9udC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19oZWFkaW5ncy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL192aXNpYmlsaXR5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbHVtbmNvbnRyb2wuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fcmV2ZXJzZS1jb250YWluZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9icmFuZHMvY2xpZW50bGlicy9jb3JwL2NvbXBvbmVudHMvY29ycC1oZXJvLWNhcm91c2VsL2NvcnAtaGVyby1jYXJvdXNlbC5jbGllbnRsaWJzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX21lZGlhcXVlcmllcy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19ib3JkZXJzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2J1dHRvbnMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNQTtFQUNFLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFFBQUE7QUNMRjs7QUNFQTtFQUNFO0lBQ0UsdUNBQUE7RURDRjtFQ0VBO0lBQ0UsdUNBQUE7RURBRjtFQ0dBO0lBQ0UseUJBQUE7RURERjtBQUNGO0FDSUE7RUFDRSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLHNDQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtBREZGO0FDSUU7RUFFRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSx5QkFBQTtFQUNBLHNDQUFBO0FESEo7QUNNRTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtBREpKO0FDT0U7RUFDRSxxQkFBQTtFQUNBLFlBQUE7QURMSjs7QUUxQ0E7RUFDRSxrQkFBQTtFQUNBLFVBQUE7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aUJFO0VEb1JRO0lBS0ksZUFBQTtFWmtSWjtBQUNGO0FZL1FVO0VBR0UsU0FBQTtBWitRWjtBWTNRWTtFQUNFLFlBQUE7RUFDQSxhQUFBO0FaNlFkO0FhOWhCRTtFRCtRVTtJQUtJLGFBQUE7SUFDQSxXQUFBO0VaOFFkO0FBQ0Y7QVkxUVU7RUFDRSxhQUFBO0FaNFFaO0FhdmlCRTtFRDBSUTtJQUlJLGdCQUFBO0VaNlFaO0FBQ0Y7QVkxUVU7RUFDRSxtQkFBQTtBWjRRWjtBYTdqQkU7RUQ0UU07SUF5Q0ksYUFBQTtJQUNBLE9BQUE7SUFDQSxvQkFBQTtTQUFBLGVBQUE7SUFDQSw4QkFBQTtJQUNBLFNBQUE7RVo0UVY7QUFDRjtBWTFRVTtFQUNFLFVBQUE7RUFDQSxVQUFBO0VBQ0EscUJBQUE7RUFDQSxnQkFBQTtBWjRRWjtBYTlqQkU7RUQ4U1E7SUFPSSxXQUFBO0lBQ0EsY0FBQTtJQUNBLG1CQUFBO0VaNlFaO0FBQ0Y7QVkxUVU7RUFDRSxnQkFBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxTQUFBO0VBQ0EsU0FBQTtFQUNBLFNBQUE7QVo0UVo7QWE3a0JFO0VEMlRRO0lBU0ksa0JBQUE7SUFDQSxVQUFBO0lBQ0EsYUFBQTtFWjZRWjtBQUNGO0FZMVFVO0VBQ0UsYUFBQTtBWjRRWjtBWXpRVTtFQUNFLFVBQUE7QVoyUVo7QVlyUUk7RUFDRSxVQUFBO0FadVFOO0FZclFNO0VBQ0Usd0RBQUE7QVp1UVI7QVlsUUU7RUFDRSw2Q0FBQTtFQUNBLGtCQUFBO0VBQ0EsYUFBQTtFQUNBLFVBQUE7RUFDQSxTQUFBO0VBQ0EsMkJBQUE7RUFDQSxrQkFBQTtFQUNBLDBCQUFBO0Fab1FKO0FhcHBCRTtFRHdZQTtJQVdJLGFBQUE7RVpxUUo7QUFDRjtBYS9tQkU7RUQ4VkE7SUFlSSxTQUFBO0lBQ0EsWUFBQTtFWnNRSjtBQUNGO0FZcFFJO0VBQ0UsY0FBQTtFQUNBLGNBQUE7QVpzUU47QVlsUUU7RUFDRSxjQUFBO0Fab1FKO0FhNW5CRTtFRHVYQTtJQUlJLGFBQUE7RVpxUUo7QUFDRjtBWWxRRTtFQUNFLGFBQUE7QVpvUUo7QWFwb0JFO0VEK1hBO0lBSUksY0FBQTtFWnFRSjtBQUNGIiwiZmlsZSI6Ii4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2JyYW5kcy9jbGllbnRsaWJzL2NvcnAvY29tcG9uZW50cy9jb3JwLWhlcm8tY2Fyb3VzZWwvY29ycC1oZXJvLWNhcm91c2VsLmJ1bmRsZS5jc3MifQ== */