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
*/
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
*/
.left-alignment .cmp-list.cmp-list__carousel .cmp-list__items:has(li:nth-last-child(n+3)) {
  justify-content: left;
}

.cmp-list__product-list .cmp-list__items {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .cmp-list__product-list .cmp-list__items {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    margin-left: 0;
    margin-right: 0;
  }
}
.cmp-list__product-list .cmp-list__item-layout-product {
  position: relative;
  list-style: none;
  margin-bottom: 10px;
  padding: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .cmp-list__product-list .cmp-list__item-layout-product {
    padding-bottom: 15px;
    margin-bottom: 7px;
    margin-left: 7px;
    width: calc(33.3333333333% - 4.6666666667px);
  }
  .cmp-list__product-list .cmp-list__item-layout-product:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-list__product-list .cmp-list__item-layout-product {
    padding-bottom: 15px;
    margin-bottom: 7px;
    margin-left: 7px;
    width: calc(25% - 5.25px);
  }
  .cmp-list__product-list .cmp-list__item-layout-product:nth-child(4n+1) {
    margin-left: 0;
  }
}

.cmp-list .product-card {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .cmp-list .product-card {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  .cmp-list .product-card {
    flex-direction: column;
    height: 100%;
  }
}
.cmp-list .product-card__link:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .cmp-list .product-card__image {
    margin-right: 20px;
  }
}
.cmp-list .product-card__image .cmp-image__image {
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.batcom-dynamiclist__products .cmp-list .product-card__image .cmp-image__image {
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .cmp-list .product-card__image .cmp-image__image {
    width: 114px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .cmp-list .product-card__image .cmp-image__image {
    height: 212px;
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-list .product-card__image .cmp-image__image {
    height: 198px;
  }
}
@media only screen and (min-width: 1280px) {
  .cmp-list .product-card__image .cmp-image__image {
    height: 263px;
  }
}
.cmp-list .product-card__content {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .cmp-list .product-card__content {
    padding-bottom: 25px;
  }
}
.cmp-list .product-card__name, .cmp-list .product-card__shortName {
  color: #1D1D1B;
  margin-top: 15px;
  font-family: var(--batcom-font-face-1-name);
  font-weight: 325;
  font-size: 1rem;
  line-height: 1.5625rem;
  text-transform: capitalize;
}
.cmp-list .product-card__price {
  color: #1D1D1B;
  font-family: var(--batcom-font-face-3-name);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 15px;
}
.cmp-list .product-card__price-discount--price, .cmp-list .product-card__price-final--price {
  color: #E00830;
}
.cmp-list .product-card__price-discount--precentage, .cmp-list .product-card__price-discount-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.cmp-list .product-card__price-regular span {
  color: #6B6B6B;
  font-size: 0.875rem;
  font-family: var(--batcom-font-face-1-name);
  font-weight: 325;
  line-height: 1.25rem;
}
.cmp-list .product-card__button {
  border: none;
  background: none;
  padding: 0;
  --batcom-button-text: var(--batcom-color-button-link-text);
  --batcom-button-text-hover: var(--batcom-color-button-link-text-hover);
  --batcom-button-icon: var(--batcom-color-button-link-text);
  --batcom-button-icon-hover: var(--batcom-color-button-link-text-hover);
}
.cmp-list .product-card__button .cmp-button__svg {
  margin-left: 0;
}
.cmp-list .product-card__button:hover .cmp-button__icon {
  animation: bounce-arrow 2s infinite ease-in-out;
}
@keyframes bounce-arrow {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(10px);
  }
  100% {
    transform: translate(0);
  }
}
.batcom-container--primary-dark .cmp-list .product-card__button, .batcom-container--secondary-dark .cmp-list .product-card__button, .batcom-container--tertiary-dark .cmp-list .product-card__button {
  --batcom-button-text: var(--batcom-color-button-link-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-link-text-hover-inverted);
}
.batcom-container--primary-dark .cmp-list .product-card__button .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .cmp-list .product-card__button .cmp-button__svg :is(svg, g, path), .batcom-container--tertiary-dark .cmp-list .product-card__button .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-link-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-link-text-hover-inverted);
}
@media only screen and (max-width: 767px) {
  .cmp-list .product-card__button {
    width: 100%;
    margin-top: 15px;
  }
  .cmp-list .product-card__button .batcom-button--link {
    min-height: 67px;
  }
  .cmp-list .product-card__button.product-card__button--is-link .batcom-button--link {
    min-height: 26px;
  }
}
@media only screen and (min-width: 768px) {
  .cmp-list .product-card__button {
    position: absolute;
    bottom: 20px;
    left: 0;
  }
}
.cmp-list .product-card__button .batcom-button {
  margin-bottom: 0;
}
.cmp-list .product-card__button .batcom-button.batcom-button--link .cmp-button:hover::after {
  animation: bounce-arrow 2s infinite ease-in-out;
}
.cmp-list .product-card__button .cmp-button {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .cmp-list .product-card__button .cmp-button {
    display: flex;
    align-items: center;
  }
}
.cmp-list .product-card__button .cmp-button::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  right: -28px;
  -webkit-mask-image: url("../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-link-button.svg");
          mask-image: url("../../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right-link-button.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--batcom-color-body-text);
}
.cmp-list .product-card__button .cmp-button:hover::after {
  background-color: var(--batcom-color-anchor-hover);
}
.cmp-list .product-card__device-colors {
  margin-top: 12px;
}
.cmp-list .product-card__device-colors:not(.batcom-hide) {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.cmp-list .product-card__device-color-btn {
  overflow: visible;
  width: auto;
  padding: 0;
  border: none;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  line-height: normal;
  border-radius: 50%;
  cursor: pointer;
  height: 34px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-list .product-card__device-color-btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.cmp-list .product-card__device-color-btn-inside {
  border: 1px solid rgb(212, 208, 208);
  border-radius: 50%;
  display: inline-block;
  width: 26px;
  height: 26px;
  position: relative;
  overflow: hidden;
}
.cmp-list .product-card__device-color-btn.disabled .product-card__device-color-btn-inside::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(121, 120, 120); /* Change color as needed */
  transform: rotate(320deg);
}
.cmp-list .product-card__device-color-btn.active {
  border: 1px solid rgb(0, 0, 0);
}
.cmp-list.cmp-list__carousel .cmp-list__items {
  justify-content: center;
}
.cmp-list.cmp-list__carousel .cmp-list__items:has(li:nth-last-child(n+6)) {
  justify-content: left;
}
@media only screen and (min-width: 1024px) {
  .cmp-list.cmp-list__carousel .cmp-list__items:has(li:nth-last-child(n+5)) {
    justify-content: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .cmp-list.cmp-list__carousel .cmp-list__items:has(li:nth-last-child(n+4)) {
    justify-content: left;
  }
}
@media only screen and (max-width: 767px) {
  .cmp-list.cmp-list__carousel .cmp-list__items:has(li:nth-last-child(n+3)) {
    justify-content: left;
  }
}
@media only screen and (min-width: 1280px) {
  .cmp-list.cmp-list__carousel .cmp-list__item-layout-product {
    width: 19%;
    min-width: 19%;
    margin-right: 1%;
  }
}
.cmp-list.cmp-list__carousel .product-card {
  flex-direction: column;
  height: 100%;
}
.cmp-list.cmp-list__carousel .product-card__image .cmp-image__image {
  width: 100%;
}
.cmp-list.cmp-list__carousel.cmp-list__omni-carousel .product-card__button .batcom-button--link {
  min-height: 0;
}
.cmp-list.cmp-list__carousel.cmp-list__omni-carousel .product-card__button .cmp-button::after {
  background-color: #fff;
}
.cmp-list.cmp-list__carousel.cmp-list__omni-carousel .product-card__name,
.cmp-list.cmp-list__carousel.cmp-list__omni-carousel .product-card__shortName {
  text-transform: none;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
}
@media only screen and (min-width: 480px) {
  .cmp-list.cmp-list__carousel.cmp-list__omni-carousel .cmp-list__carousel-prev,
  .cmp-list.cmp-list__carousel.cmp-list__omni-carousel .cmp-list__carousel-next {
    background-color: #05265c;
    cursor: pointer;
  }
  .cmp-list.cmp-list__carousel.cmp-list__omni-carousel .cmp-list__carousel-prev::after,
  .cmp-list.cmp-list__carousel.cmp-list__omni-carousel .cmp-list__carousel-next::after {
    background: #fff;
  }
  .cmp-list.cmp-list__carousel.cmp-list__omni-carousel .cmp-list__carousel-prev:disabled::after,
  .cmp-list.cmp-list__carousel.cmp-list__omni-carousel .cmp-list__carousel-next:disabled::after {
    opacity: 0;
  }
}
.cmp-list.cmp-list__carousel.cmp-list__omni-carousel .product-card__content {
  padding-bottom: 30px;
}
.cmp-list.cmp-list__carousel.cmp-list__omni-carousel a {
  color: transparent;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlzdC9wcm9kdWN0LWxpc3QvcHJvZHVjdC1saXN0LmJ1bmRsZS5jc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX2xvYWRpbmcuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fb3ZlcmxheV9zaG9ydGhhbmQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Z1bmN0aW9ucy9fbm4tei1pbmRleC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19hcnJvdy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jbGVhcmZpeC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb21wb25lbnQtbm9ybWFsaXplLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2ZvbnQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9faGVhZGluZ3Muc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fdmlzaWJpbGl0eS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb2x1bW5jb250cm9sLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3JldmVyc2UtY29udGFpbmVyLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlzdC9wcm9kdWN0LWxpc3QvX3Byb2R1Y3QtbGlzdC1sZWZ0LWFsaWduLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlzdC9wcm9kdWN0LWxpc3QvcHJvZHVjdC1saXN0LmNsaWVudGxpYnMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fbWVkaWFxdWVyaWVzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2J1dHRvbnMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNQTtFQUNFLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFFBQUE7QUNMRjs7QUNFQTtFQUNFO0lBQ0UsdUNBQUE7RURDRjtFQ0VBO0lBQ0UsdUNBQUE7RURBRjtFQ0dBO0lBQ0UseUJBQUE7RURERjtBQUNGO0FDSUE7RUFDRSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLHNDQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtBREZGO0FDSUU7RUFFRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSx5QkFBQTtFQUNBLHNDQUFBO0FESEo7QUNNRTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtBREpKO0FDT0U7RUFDRSxxQkFBQTtFQUNBLFlBQUE7QURMSjs7QUUxQ0E7RUFDRSxrQkFBQTtFQUNBLFVBQUE7QUY2Q0Y7O0FHakRBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7O0NBQUE7QUNBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Q0FBQTtBQ0FBLHdDQUFBO0FBQ0EsMERBQUE7QUFFQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDSEE7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Q0FBQTtBQ0NBOztDQUFBO0FaS0E7RUFDRSxnQkFBQTtFQUNBLGVBQUE7RUFDQSxRQUFBO0FDbU5GOztBQ3ROQTtFQUNFO0lBQ0UsdUNBQUE7RUR5TkY7RUN0TkE7SUFDRSx1Q0FBQTtFRHdORjtFQ3JOQTtJQUNFLHlCQUFBO0VEdU5GO0FBQ0Y7QUNwTkE7RUFDRSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLHNDQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtBRHNORjtBQ3BORTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QURxTko7QUNsTkU7RUFDRSxxQkFBQTtFQUNBLFdBQUE7QURvTko7QUNqTkU7RUFDRSxxQkFBQTtFQUNBLFlBQUE7QURtTko7O0FFbFFBO0VBQ0Usa0JBQUE7RUFDQSxVQUFBO0FGcVFGOztBR3pRQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7O0NBQUE7QUNBQSx3Q0FBQTtBQUNBLDBEQUFBO0FBRUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0hBOzs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7O0NBQUE7QUNDQTs7Q0FBQTtBQ01nQjtFQUNJLHFCQUFBO0FaMGFwQjs7QWEzYUU7RUFDRSxrQkFBQTtFQUNBLG1CQUFBO0FiOGFKO0FjbllFO0VEN0NBO0lBS0ksYUFBQTtJQUNBLG1CQUFBO0lBQ0EscUJBQUE7SUFDQSxjQUFBO0lBQ0EsZUFBQTtFYithSjtBQUNGO0FhNWFFO0VBQ0Usa0JBQUE7RUFDQSxnQkFBQTtFQUNBLG1CQUFBO0VBQ0EsYUFBQTtBYjhhSjtBY3paRTtFRHpCQTtJQU9JLG9CQUFBO0lBQ0Esa0JBQUE7SUFDQSxnQkFBQTtJQUNBLDRDQUFBO0ViK2FKO0VhN2FJO0lBQ0UsY0FBQTtFYithTjtBQUNGO0FjeFlFO0VEckRBO0lBa0JJLG9CQUFBO0lBQ0Esa0JBQUE7SUFDQSxnQkFBQTtJQUNBLHlCQUFBO0ViK2FKO0VhN2FJO0lBQ0UsY0FBQTtFYithTjtBQUNGOztBYXphRTtFQUNFLGFBQUE7RUFDQSxtQkFBQTtBYjRhSjtBYzNiRTtFRGFBO0lBS0ksOEJBQUE7RWI2YUo7QUFDRjtBY2xiRTtFRERBO0lBU0ksc0JBQUE7SUFDQSxZQUFBO0ViOGFKO0FBQ0Y7QWEzYU07RUFDRSxxQkFBQTtBYjZhUjtBY3pjRTtFRGdDRTtJQUVJLGtCQUFBO0ViMmFOO0FBQ0Y7QWF6YU07RUFDRSxjQUFBO0VBQ0Esb0JBQUE7S0FBQSxpQkFBQTtBYjJhUjtBYXphUTtFQUNFLHNCQUFBO0tBQUEsbUJBQUE7QWIyYVY7QWNyZEU7RURxQ0k7SUFXSSxZQUFBO0VieWFSO0FBQ0Y7QWNuZEU7RUQ4Qkk7SUFlSSxhQUFBO0ViMGFSO0FBQ0Y7QWM1YkU7RURFSTtJQW1CSSxhQUFBO0ViMmFSO0FBQ0Y7QWMxYkU7RURMSTtJQXVCSSxhQUFBO0ViNGFSO0FBQ0Y7QWF4YUk7RUFDRSxXQUFBO0FiMGFOO0FjOWRFO0VEbURFO0lBSUksb0JBQUE7RWIyYU47QUFDRjtBYXhhSTtFQUVFLGNBQUE7RUFDQSxnQkFBQTtFQUNBLDJDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxlQUFBO0VBQ0Esc0JBQUE7RUFDQSwwQkFBQTtBYnlhTjtBYXRhSTtFQUNFLGNBQUE7RUFDQSwyQ0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLG1CQUFBO0VBQ0EsZ0JBQUE7QWJ3YU47QWF0YU07RUFFRSxjQUFBO0FidWFSO0FhcGFNO0VBRUUsbUJBQUE7RUFDQSxvQkFBQTtBYnFhUjtBYWxhTTtFQUNFLGNBQUE7RUFDQSxtQkFBQTtFQUNBLDJDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxvQkFBQTtBYm9hUjtBYWhhSTtFRStIRixZQUFBO0VBQ0EsZ0JBQUE7RUFDQSxVQUFBO0VBOENFLDBEQUFBO0VBQ0Esc0VBQUE7RUFDQSwwREFBQTtFQUNBLHNFQUFBO0FmdVBKO0FldFNFO0VBQ0UsY0FBQTtBZndTSjtBZXBTSTtFQUNFLCtDQUFBO0Fmc1NOO0FlbFNFO0VBQ0k7SUFDSSx1QkFBQTtFZm9TUjtFZWpTSTtJQUNJLDBCQUFBO0VmbVNSO0VlaFNJO0lBQ0ksdUJBQUE7RWZrU1I7QUFDRjtBZXRRSTtFQUdFLG1FQUFBO0VBQ0EsK0VBQUE7QWZzUU47QWVuUVE7RUFDRSxtRUFBQTtFQUNBLCtFQUFBO0FmcVFWO0FjbGpCRTtFRGdIRTtJQUlJLFdBQUE7SUFDQSxnQkFBQTtFYmtjTjtFYWhjTTtJQUNHLGdCQUFBO0Via2NUO0VhOWJRO0lBQ0UsZ0JBQUE7RWJnY1Y7QUFDRjtBY2hqQkU7RURrR0U7SUFtQkksa0JBQUE7SUFDQSxZQUFBO0lBQ0EsT0FBQTtFYitiTjtBQUNGO0FhN2JNO0VBQ0UsZ0JBQUE7QWIrYlI7QWE3YlE7RUFDRSwrQ0FBQTtBYitiVjtBYTNiTTtFQUNFLGtCQUFBO0FiNmJSO0FjaGtCRTtFRGtJSTtJQUlJLGFBQUE7SUFDQSxtQkFBQTtFYjhiUjtBQUNGO0FhNWJRO0VBQ0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxZQUFBO0VBQ0EscUhBQUE7VUFBQSw2R0FBQTtFQUNBLDBCQUFBO1VBQUEsa0JBQUE7RUFDQSw4QkFBQTtVQUFBLHNCQUFBO0VBQ0EsK0NBQUE7QWI4YlY7QWExYlU7RUFDRSxrREFBQTtBYjRiWjtBYXRiSTtFQUNFLGdCQUFBO0Fid2JOO0FhdGJNO0VBQ0UsYUFBQTtFQUNBLFFBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QWJ3YlI7QWFwYkk7RUU1TkYsaUJBQUE7RUFDQSxXQUFBO0VBQ0EsVUFBQTtFQUNBLFlBQUE7RUFDQSxTQUFBO0VBQ0Esd0JBQUE7S0FBQSxxQkFBQTtVQUFBLGdCQUFBO0VBQ0EsdUJBQUE7RUFDQSxjQUFBO0VBQ0EsYUFBQTtFQUNBLCtCQUFBO0VBQ0EsZ0NBQUE7RUFDQSxtQkFBQTtFRm9OSSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0FiZ2NOO0FleHBCRTtFQUNFLFVBQUE7RUFDQSxTQUFBO0FmMHBCSjtBYWpjTTtFQUNFLG9DQUFBO0VBQ0Esa0JBQUE7RUFDQSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQkFBQTtBYm1jUjtBYS9iUTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxPQUFBO0VBQ0EsV0FBQTtFQUNBLFdBQUE7RUFDQSxvQ0FBQSxFQUFBLDJCQUFBO0VBQ0EseUJBQUE7QWJpY1Y7QWE3Yk07RUFDRSw4QkFBQTtBYitiUjtBYXpiSTtFQUNFLHVCQUFBO0FiMmJOO0FhemJNO0VBQ0UscUJBQUE7QWIyYlI7QWM3bkJFO0VEc01NO0lBQ0UscUJBQUE7RWIwYlI7QUFDRjtBYzlwQkU7RUR3T007SUFDRSxxQkFBQTtFYnliUjtBQUNGO0FjMXFCRTtFRHFQTTtJQUNFLHFCQUFBO0Vid2JSO0FBQ0Y7QWNyb0JFO0VEaU5FO0lBRUksVUFBQTtJQUNBLGNBQUE7SUFDQSxnQkFBQTtFYnNiTjtBQUNGO0FhbmJJO0VBQ0Usc0JBQUE7RUFDQSxZQUFBO0FicWJOO0FhbGJRO0VBQ0UsV0FBQTtBYm9iVjtBYTVhTTtFQUNFLGFBQUE7QWI4YVI7QWEzYU07RUFDRSxzQkFBQTtBYjZhUjtBYXphSTs7RUFFRSxvQkFBQTtFQUNBLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLGlCQUFBO0FiMmFOO0FjanRCRTtFRHlTRTs7SUFHSSx5QkFBQTtJQUNBLGVBQUE7RWIwYU47RWF4YU07O0lBQ0UsZ0JBQUE7RWIyYVI7RWF4YU07O0lBQ0UsVUFBQTtFYjJhUjtBQUNGO0FhdmFJO0VBQ0Usb0JBQUE7QWJ5YU47QWF0YUk7RUFDRSxrQkFBQTtBYndhTiIsImZpbGUiOiIuLi9zcmMvbWFpbi9qY3Jfcm9vdC9hcHBzL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1saXN0L3Byb2R1Y3QtbGlzdC9wcm9kdWN0LWxpc3QuYnVuZGxlLmNzcyJ9 */