/* =========================================================
   CarbonAI — Pricing page
   Built from Figma: PricingPage_Final (node 7741:8366).
   Loaded after index.css and reuses its tokens (--teal, --amber,
   --ink, --muted, --card, --radius-*, --container, --gutter...),
   its header/footer/FAQ components and its .feature-cards block.
   Page-scoped classes use the `pr-` prefix (mirrors the `sol-`
   convention already used by solution.css).
   ========================================================= */

.pricing-page { background: var(--card); }

/* ---------- Decorative dot-grid (Figma: scattered translucent squares) ----------
   A tiled, low-alpha pattern approximates the many individually-placed
   rounded squares in the Figma canvas without hand-authoring dozens of
   absolutely-positioned nodes.
   Figma only clusters these squares at the left/right edges of the hero
   (roughly the outer ~25% on each side) and leaves the centered headline
   completely clear — our first pass tiled the pattern across the full
   width instead, so it visibly cluttered the text. The mask below fades
   the pattern out across the middle to match. */
.pr-dotgrid { position: relative; overflow: hidden; }
.pr-dotgrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Crect x='10' y='14' width='64' height='64' rx='14' fill='%23ffffff' fill-opacity='0.08'/%3E%3Crect x='106' y='92' width='64' height='64' rx='14' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 22%, transparent 34%, transparent 66%, #000 78%, #000 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 22%, transparent 34%, transparent 66%, #000 78%, #000 100%);
  pointer-events: none;
  z-index: 0;
}
.pr-dotgrid > * { position: relative; z-index: 1; }

/* =========================================================
   Hero
   ========================================================= */
.pr-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Figma's own cover band shrank to match (node 7741:8594/8617/8415:
     header 76px + 68px top padding + a 2-line 48px headline (~106px) +
     82px bottom padding = 256px) — this used to deliberately undercut a
     taller Figma hero to reduce scroll to the pricing cards, but the
     design itself is now this compact, so it's a direct match.
     The pricing page overrides this to a shorter band — see
     ".pricing-page .pr-hero" below; the Figma-matching height stays the
     default here because Signup-page.html reuses .pr-hero as-is. */
  min-height: 256px;
  padding: 68px var(--gutter) 82px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(83, 83, 83, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/problem/pricing-hero-aerial.jpg") center / cover no-repeat;
}
.pr-hero-inner { max-width: 720px; }
.pr-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* A pricing page should lead with pricing, not hero photography: at the
   Figma-matched 256px the cards start around the middle of a 1080p
   screen, pushing the feature comparison almost entirely below the fold.
   NB the min-height is not what sizes this band — measured in Chrome at
   1920px, the h1 wraps to two lines inside .pr-hero-inner's 720px cap
   and renders 106px tall, so content + padding always exceeds it. The
   padding is therefore the real dial: 34+40 around 106px gives the 180px
   band this page is budgeted for (see the fold arithmetic on .pr-plans).
   The top/bottom split is deliberately uneven, as in the original 68/82,
   which seats the headline a touch above true centre. min-height is kept
   only as a floor for the day the headline shortens to one line. Scoped
   to body.pricing-page so Signup-page.html, which reuses .pr-hero for
   its own cover band, keeps the taller Figma proportions. */
.pricing-page .pr-hero {
  min-height: 180px;
  padding: 34px var(--gutter) 40px;
  /* The flat 70% dark wash from .pr-hero above is dropped here and rebuilt
     as two layers (::before / ::after) so the aerial photo can carry the
     band. Signup-page.html keeps the original single-layer treatment. */
  background: #0c2429;
  isolation: isolate;
}

/* The photograph, brightened. A flat overlay at 0.7 leaves the image
   contributing only 30% of the band, which flattens the aerial pattern
   into grey-brown mud — yet the overlay can't simply be dialled down,
   because the headline sits on the photo's busiest, lightest area (the
   pale rock down the middle). So the two jobs are split: this layer
   brightens and saturates the photo everywhere, and ::after below puts
   the darkening back only where the text needs it.
   saturate() past brightness() is the point rather than a flourish —
   lifting exposure alone desaturates, and the teal water / ochre silt
   are what tie the image to the brand palette, so they get pushed back
   up. contrast() is nudged only slightly: more would crush the silt
   detail that makes the pattern read. */
.pricing-page .pr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/problem/pricing-hero-aerial.jpg") center / cover
    no-repeat;
  filter: brightness(1.26) saturate(1.3) contrast(1.04);
}

/* Legibility scrim, shaped rather than flat. The radial ellipse tracks
   the centred .pr-hero-inner (max-width 720px), holding 0.72 alpha behind
   the headline and falling away to nothing by ~78% of the width, so the
   outer thirds — where the pattern is most interesting — stay bright. The
   linear layer underneath it is a light, even 0.18→0.30 graduation that
   keeps the band cohesive top-to-bottom and stops the ellipse reading as
   a visible vignette.
   The ellipse is deliberately strong because it is also cheap: simulating
   the full composite at 1920x210, taking the centre from 0.62 to 0.72
   lifts the headline's worst-case contrast from 4.03:1 to 4.88:1 while
   the outer-edge luminance drops only 0.349 → 0.344, because the scrim
   has already faded out by the time it reaches the interesting part of
   the photo. Worst case is the headline crossing a blown-out rock
   highlight; 4.88:1 clears the 3:1 that 48px text needs with room to
   spare, and the text-shadow on the h1 covers the rest. Tinted near-black
   (#031a1e) rather than pure black so the scrim sits in the image's own
   teal family. */
.pricing-page .pr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 52% 118% at 50% 50%,
      rgba(3, 26, 30, 0.72) 0%,
      rgba(3, 26, 30, 0.45) 45%,
      rgba(3, 26, 30, 0) 78%
    ),
    linear-gradient(180deg, rgba(3, 26, 30, 0.18), rgba(3, 26, 30, 0.3));
}

/* Both layers above are positioned, so the headline needs its own stacking
   context to stay on top of them. */
.pricing-page .pr-hero-inner {
  position: relative;
  z-index: 2;
}
.pricing-page .pr-hero h1 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

/* =========================================================
   Pricing cards
   ========================================================= */
/* Figma puts a 112px gap here (hero band node 7741:8367/8368 ends at
   y=332, pricing-grid node 7741:8415 starts at y=444), but that reads as
   dead white space on screen: hero → gap → toggle → gap → cards, with
   the cards not starting until roughly halfway down a 1080p viewport.
   58px keeps the hero and the toggle clearly separate while pulling the
   cards up 54px. Bottom padding (96px) + .pr-brands's own 64px top
   padding already reproduces Figma's pricing-grid-to-"Trusted by" gap
   (160px) exactly, so that side is untouched. */
.pr-plans { padding: 48px 0 96px; }

/* ---- Fold budget at 1920x1080 ----
   Target composition, all above the fold: nav, hero, toggle, every card's
   full header block, CTA, divider, and 2-3 feature bullets.
   A maximised Chrome window on a 1080p screen leaves roughly 940px of
   viewport once browser chrome and the Windows taskbar are subtracted, so
   940 — not 1080 — is the line to clear. Measured in headless Chrome
   before this pass, the third feature bullet of the Team card (the worst
   case: its bullets wrap to two lines where the other cards' don't)
   ended at y=998, i.e. ~58px below that fold.
   76px was taken back, all of it above the bullets and none of it from
   the bullets themselves:
     hero band      222 -> 180  (-42, padding above)
     .pr-plans top   58 ->  48  (-10)
     .pr-toggle-wrap 32 ->  28  (-4)
     .pr-card pad    40 ->  32  (-8)
     .pr-card gap    24 ->  20  (-12, three gaps sit above the first bullet)
   That lands the Team card's third bullet at ~922 with ~18px to spare.
   .pr-card-header's 224px min-height was examined and left alone: the
   natural header heights are 201/221/182px, so it is only 3px above the
   tallest and trimming it would buy nothing while re-staggering the CTAs
   it exists to align. */

/* Figma has 52px here (toggle-container node 7741:8549 bottom edge at
   y=499, the Team card's top edge at y=551), tightened to 32px as part
   of the same fold cleanup as .pr-plans above — the toggle controls the
   cards, so it should sit close enough to read as attached to them. The
   Recommended badge (node 7741:8556) needs no separate adjustment: it's
   positioned via .pr-recommended's top:-15px relative to the card itself,
   so it travels with the cards automatically. */
/* Back to 28px now the pill straddles the card edge instead of sitting
   fully above it: it needs only 14px of clearance rather than 34px, so
   this no longer has to be widened to make room. That also puts this gap
   back inside the 25-30px the page was originally briefed to. */
.pr-toggle-wrap { display: flex; justify-content: center; margin-bottom: 28px; }
.pr-toggle {
  --thumb-left: 4px;
  --thumb-width: 89px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 54px;
  background: #f3f4f6;
  border-radius: var(--radius-pill);
  padding: 4px;
}
.pr-toggle-thumb {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: var(--thumb-left);
  width: var(--thumb-width);
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03);
  transition: left 0.3s ease, width 0.3s ease;
}
.pr-toggle-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 8px 16px;
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.pr-toggle-btn.is-active { color: var(--ink); font-weight: 700; }
.pr-toggle-badge {
  padding: 6px;
  border-radius: var(--radius-pill);
  background: #fff9f1;
  color: var(--amber);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.pr-cards {
  display: grid;
  /* minmax(0, 364px) had no floor, so between the 3-column layout's
     "full size" point (~1324px viewport) and the old single-column
     switch (940px), cards continuously shrank all the way down to
     ~257px — meaning two common laptop widths (e.g. 1280px vs 1366px)
     could show visibly different card sizes (349px vs the full 364px)
     even though neither looked "broken." A 320px floor keeps that
     variance small and predictable; the single-column breakpoint below
     moves up to match so cards never actually need to shrink past it. */
  grid-template-columns: repeat(3, minmax(320px, 364px));
  justify-content: center;
  /* stretch (the grid default) so every card matches the tallest card's
     height, e.g. the shorter Enterprise card (6 features) stretches to
     match the taller Team card (7 features) — matches Figma, where every
     card instance is a fixed, equal 743px tall. */
  gap: 36px;
}
.pr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.03);
}
/* Deliberately carries no border or shadow of its own any more: it keeps
   .pr-card's neutral #e2e8f0 edge like every other card. Four separate
   signals (teal border + amber glow, the pill, the filled CTA, and an
   amber plan name) were all competing to point at this one card. The
   heavier border was also actively misleading — a card outlined in the
   accent colour reads as selected or hovered, i.e. as the result of a
   micro-interaction, and there isn't one here. The border, the glow and
   the amber plan name are all gone now; the pill and the filled CTA
   carry the emphasis between them, which is enough.
   The plan name in particular has to match: "Individual" / "Team" /
   "Enterprise" is one row the eye reads straight across when comparing
   tiers, and colouring one of the three broke that row for emphasis it
   was already getting twice over.
   The class is still needed: it anchors the pill and drives the CTA's
   hover behaviour below. */
.pr-card--featured {
  border-color: #e2e8f0;
}

/* Recommended ribbon (Figma: a gradient pill straddling the featured
   card's top border, centered). Renamed from .pr-best-value along with
   the label: "Best Value" is an objective claim the page can't stand
   behind — for an org with many seats Enterprise's unlimited users may
   genuinely be the better value, so the badge could be simply false to
   the reader it most wants to convert. "Recommended" says the same thing
   as guidance rather than as arithmetic. */
.pr-recommended {
  position: absolute;
  /* Straddles the card's top edge, border through its middle: the pill is
     28px tall (12px line + 8px padding either side), so -14px centres it
     on the border. The pill is opaque, so it simply covers the border
     segment it crosses rather than being ruled through by it.
     Offset to the right rather than centred. Centred, it sat directly
     under the (also centred) toggle, so toggle and pill stacked into one
     vertical column of chrome above the grid and the pill read as part of
     the toggle rather than as a label on the card. Anchoring it 24px in
     from the card's right edge moves it clear of that column and ties it
     to the card it belongs to. left/transform are reset because the rule
     previously centred it and both would otherwise still apply. */
  top: -14px;
  right: 24px;
  left: auto;
  transform: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  /* Flat teal, not the amber-to-teal gradient: the gradient made the pill
     a third distinct colour treatment on a card that is now meant to be
     signalled quietly. */
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* This used to carry a 224px min-height to stop the CTAs staggering, back
   when the three headers held genuinely different structures (only Team
   had a caption line). They don't any more — every tier now runs plan /
   price-block / description, the first two are fixed-height, and
   .pr-card-desc below pins the third — so the headers come out equal by
   construction and the magic number is gone rather than merely retuned. */
.pr-card-header { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 12px; text-align: center; }
.pr-card-plan { margin: 0; font-size: 18px; font-weight: 700; color: var(--ink); }
/* Every tier now uses this same three-level block (headline price / seat
   basis / billing basis) rather than only Team, which is what lets the
   cards be read across rather than one at a time. Because the three
   levels are structurally identical in all three cards, the block is a
   fixed height everywhere, so the description below it starts on the same
   line in each card — that plus .pr-card-desc's min-height is what keeps
   the CTAs, dividers and bullet lists aligned. */
.pr-card-price-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
/* The seat basis ("1 user" / "2-user minimum" / "Unlimited users"): the
   step between the headline number and the billing caption, so it sits
   between them in weight too — darker and larger than the caption, well
   below the 48px price. */
.pr-card-price-seats { margin: 0; font-size: 14px; font-weight: 600; color: #475569; }
.pr-card-price { display: flex; align-items: baseline; gap: 4px; margin: 0; min-height: 56px; }
.pr-card-price b { font-size: 48px; font-weight: 800; color: #0f172a; }
.pr-card-price span { font-size: 16px; font-weight: 500; color: #475569; }
.pr-card-price-caption { margin: 4px 0 0; font-size: 12px; font-weight: 600; color: var(--muted); }
/* 16px rather than 14px: at 14px this copy read small against how much
   air the card gives it — a spacious card that was still work to read.
   The size rise is paid for by shorter copy, so it costs no fold: all
   three descriptions now wrap to exactly three lines (70px each, measured
   at 1920px), where the old longer copy ran 4/4/3 lines at 78/78/59px.
   The min-height is the last thing keeping the cards aligned, and is the
   one number to revisit if this copy changes. It must stay >= the tallest
   description. Right now all three happen to be equal, so it is doing no
   work — but it is what stops a future edit to one card's copy silently
   dragging that card's CTA, divider and bullets out of line with the
   others. If copy grows, re-measure and raise it rather than letting it
   fall below the natural height, where it would be inert. */
.pr-card-desc { margin: 0; max-width: 100%; min-height: 70px; font-size: 16px; line-height: 1.45; color: #475569; }

.pr-card-cta {
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pr-card-cta--outline { border: 1px solid var(--teal); color: var(--teal); background: transparent; }
.pr-card-cta--outline:hover { background: var(--teal); color: #fff; }
.pr-card-cta--filled { border: 1px solid var(--teal); background: var(--teal); color: #fff; }
.pr-card-cta--filled:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
/* The outline CTAs fill with teal on hover, so hovering Individual or
   Enterprise used to leave two solid teal buttons on screen at once and
   the pointer stopped being the thing that told you which was which.
   While another card's CTA is hovered, the featured one steps back to the
   outline treatment, so exactly one button reads as active at any moment.
   :has() is doing the work; where it isn't supported this rule simply
   doesn't apply and the buttons behave as they did before. */
.pr-cards:has(.pr-card:not(.pr-card--featured) .pr-card-cta:hover)
  .pr-card--featured
  .pr-card-cta--filled {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

/* Scoped to the pricing page (Signup-page.html reuses .pr-card for its
   form panel, where the roomier 40px/24px is still right). These two
   values are worth 20px of fold on their own, because the card's gap
   applies three times before the first feature bullet — header->actions,
   actions->divider, divider->features. 32/20 is still comfortably above
   the 24/16 where the card would start to feel cramped. */
.pricing-page .pr-card { padding: 32px; gap: 20px; }

.pr-card-divider { width: 100%; height: 1px; background: #e2e8f0; }

/* The single currency line, replacing the per-card note. Deliberately
   quieter than .pr-trial below it: this qualifies the prices above, while
   the trial prompt is the closing call to action, so the fine print sits
   nearer the grid and the CTA gets the larger gap and the stronger type. */
.pr-fineprint {
  margin: 24px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* "Not ready to commit?" — the low-commitment path for visitors who
   aren't ready to pick a tier. Sits under the grid, inside .pr-plans, so
   it reads as a footnote to the cards rather than a fourth option
   competing with them. */
.pr-trial {
  margin: 32px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}
.pr-trial-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}
.pr-trial-link:hover { color: var(--teal-dark); }

.pr-card-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; width: 100%; }
.pr-card-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; line-height: 1.4; color: #475569; }
.pr-check {
  flex: none;
  width: 16px;
  height: 16px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23397f86' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================================================
   Trusted by leading organizations
   Figma (node 7741:8596) names this "div.logos-slider" / "div.logos-track"
   — the same left-to-right scrolling marquee pattern as the homepage's
   .brands--marquee, just on a white band instead of teal (so the logos
   keep their native teal-tinted artwork rather than the homepage's
   white-filtered ones). Reuses index.css's brand-scroll-ltr keyframe;
   the duplicated track + duration are set up the same way in JS.
   ========================================================= */
.pr-brands { padding: 64px 0 64px; text-align: center; }
.pr-brands .section-title { margin-bottom: 40px; font-size: 40px; font-weight: 500; line-height: 1.25; letter-spacing: -0.25px; }
.pr-brands-marquee {
  /* Full-bleed, edge-to-edge — matches index.html's .brands--marquee,
     which sits outside any .container rather than being boxed to it. */
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}
.pr-brands-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 60px;
  width: max-content;
  /* Duration is recomputed by JS from the rendered track width so the
     marquee moves at a constant px/sec on every machine; 40s is the
     no-JS fallback. */
  animation: brand-scroll-ltr var(--pr-brand-scroll-duration, 40s) linear infinite;
}
.pr-brands-marquee:hover .pr-brands-track { animation-play-state: paused; }
/* Every brand mark is the full "All Logos" Figma library (node 7149:1548,
   44 brands incl. Allianz) rendered as a flat teal silhouette via CSS
   mask rather than a plain <img> — the source SVGs are each brand's real
   multi-colour artwork (shared with index.html's own marquee), and a
   mask only reads their alpha channel, so every logo (regardless of its
   original colours) comes out as one consistent solid-teal mark instead
   of needing 44 hand-recoloured asset variants.

   The mask source is an inlined data: URI per brand (see the
   ".pr-brand-mark--*" block at the end of this file), NOT a url() to the
   external SVG file — masking against an external file fails under
   file:// (Chrome blocks it as cross-origin from the "null" origin when
   the page is opened by double-clicking it rather than served over
   http/https), which made every logo silently disappear. A data: URI is
   inline, so it isn't a cross-origin fetch and works under any protocol.
   Each brand's own aspect-ratio lives in its ".pr-brand-mark--*" rule
   too (native SVG proportions vary a lot, from ~0.87 to ~7). */
.pr-brand-mark {
  display: block;
  flex: none;
  height: 34px;
  background-color: var(--teal);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* =========================================================
   Designed for Trust (reuses .feature-cards / .feature-icon
   from index.css — identical content to the "Why us" section)
   ========================================================= */
/* No dot-grid overlay here — a full-resolution isolated render of Figma
   node 7741:8558 confirmed the scattered translucent squares belong only
   to the hero, not this section (an earlier assumption wrongly carried
   .pr-dotgrid over to this section too). Just the video + dark base. */
.pr-trust { position: relative; overflow: hidden; background: #2e2e2e; padding: 88px 0; }
.pr-trust > .container { position: relative; z-index: 1; }
/* index.css's shared .feature-cards uses plain 1fr columns (no floor), so
   between the 4-column layout's full size (305px, matching Figma node
   7741:8562 exactly, capped from 1440px+) and its own 1100px 2-column
   switch, cards scale continuously all the way down to ~233px — the same
   floorless-shrink issue the pricing cards had. Scoped here (not in
   index.css, which index.html also uses) with a 260px floor and the
   4-column zone extended up to 1260px (where four 260px cards + three
   20px gaps, 1100px, first fits the container) so cards never actually
   need to shrink past that floor. */
.pr-trust .feature-cards { grid-template-columns: repeat(4, minmax(260px, 305px)); }
@media (max-width: 1260px) and (min-width: 1101px) {
  .pr-trust .feature-cards { grid-template-columns: repeat(2, 1fr); }
}
/* Figma (node 7741:8561) sets this title at 40px/Medium/1.25 line-height/
   -0.25px tracking — the same treatment as "Trusted by leading
   organizations" below, not the base .section-title's
   36px/Bold/1.15/-0.01em (that mismatch was the reported font difference). */
.pr-trust .section-title { color: #fff; margin-bottom: 40px; font-size: 40px; font-weight: 500; line-height: 1.25; letter-spacing: -0.25px; }
/* Figma (node 7741:8558) layers a faint forest/fog background behind this
   section — the same clip already used for the homepage's "footprints"
   band (index.css .footprints .bg), reused here at the same 14% opacity
   and slow ken-burns drift instead of authoring a second background asset. */
.pr-trust .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  animation: ken-burns 20s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .pr-trust .bg { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
/* Three cards at their 320px floor + two 36px gaps need ~1032px of content
   width; at the default 80px gutter that's a viewport of ~1192px, so the
   3-column layout switches to a single stacked column at 1200px (a little
   headroom above that) instead of squeezing the columns past their floor,
   which would otherwise overflow the page horizontally. */
@media (max-width: 1320px) {
  /* Cards are still 3-across here but narrower than their 364px desktop
     size, so the header text (plan/price/description) wraps onto more
     lines than the 224px min-height accounts for — without a bigger
     reserved height here, the "Get started"/"Contact Sales" buttons drift
     out of alignment again as the cards shrink. 284px covers the worst
     case (Team's header, right down to the 1200px single-column cutoff). */
  .pr-card-header { min-height: 284px; }
}

@media (max-width: 1200px) {
  /* Stay at justify-items: stretch (the default) here too — centering items
     would let each card shrink-to-fit its own content width, so a shorter
     card renders narrower than the others instead of matching them.
     Widened slightly past the desktop 364px cap — with only one card per
     row on tablet/mobile there's no neighbor to match width against, and
     the extra room reads more comfortably for the longer feature lines. */
  .pr-cards { grid-template-columns: minmax(0, 420px); }
  /* Cards stack into a single column below this point, so there's no
     neighbor to align a button row against — let the header size to its
     own content again instead of carrying the 3-column reserved height. */
  .pr-card-header { min-height: 0; }
}

@media (max-width: 820px) {
  /* Listed with the .pricing-page prefix as well so this matches the
     specificity of the desktop ".pricing-page .pr-hero" override and
     still wins here — a bare .pr-hero would lose to it on the pricing
     page and leave phones with the desktop band. */
  .pr-hero,
  .pricing-page .pr-hero { min-height: 200px; padding: 36px 24px 32px; }
  .pr-plans { padding: 24px 0 72px; }
  .pr-toggle-wrap { margin-bottom: 20px; }
  .pr-brands { padding: 48px 0 0; }
  .pr-trust { padding: 64px 0; }
}

@media (max-width: 520px) {
  .pr-card { padding: 28px 20px; gap: 24px; }
  .pr-toggle-btn { padding: 8px 12px; font-size: 14px; }
  /* index.css's shared .email-field has a hardcoded min-width:320px —
     harmless on index.html, where this "Request a call-back" form is
     hidden (.footer-callback.is-hidden), but this page actually shows
     it, and that floor doesn't fit inside the container's padded width
     on a 320px-wide phone, overflowing the whole footer grid by ~28px.
     Scoped here (not in index.css) since the homepage never renders
     this form at all.

     Simply zeroing the min-width isn't enough: .footer-callback's own
     flex-wrap was only ever triggering (pushing the field onto its own
     line, below the "Request a call-back" heading) because that 320px
     floor didn't fit next to the heading — remove it with nothing else
     changed and the field just shrinks to near-nothing on the SAME row
     as the heading instead of wrapping, squeezing the input to a few
     px. flex-basis:100% fixes that at the root: the field always wants
     the whole row, so it reliably wraps onto its own line and fills it
     cleanly, independent of exactly how wide the heading text is. */
  .footer-callback .email-field { flex: 1 1 100%; min-width: 0; }
  .footer-callback .email-field input { min-width: 0; }
}

/* =========================================================
   Brand mark mask sources (data: URIs) — see the .pr-brand-mark
   comment above for why these are inlined instead of url()
   pointing at the external SVG files.
   ========================================================= */
.pr-brand-mark--alcantara { aspect-ratio:3.7917; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22910%22%20height%3D%22240%22%20viewBox%3D%220%200%20910%20240%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M201.571%20174H137.424V66.1895H160.399V155.913H201.571V174Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M576.173%2066.1895V84.7019H554.601V173.906H531.642V84.7019H510.07V66.1895H576.173Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M125.218%20173.905H111.531L107.526%20160.833H70.3903L65.975%20173.905H43L79.6465%2066.3623H90.3692L125.218%20173.905ZM100.351%20142.036L89.1235%20108.528L76.9658%20142.036H100.351Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M403.599%20173.905H389.896L385.891%20160.833H348.755L344.34%20173.905H321.381L358.027%2066.3623H368.687L403.599%20173.905ZM378.732%20142.036L367.504%20108.528L355.347%20142.036H378.732Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M673.781%20173.81H660.078L656.072%20160.738H618.937L614.522%20173.81H591.562L628.193%2066.2676H638.932L673.781%20173.81ZM648.913%20141.957L637.686%20108.433L625.528%20141.957H648.913Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M857.202%20173.81H843.499L839.494%20160.738H802.327L797.912%20173.81H774.984L811.631%2066.2676H822.354L857.202%20173.81ZM832.288%20141.957L821.061%20108.433L808.903%20141.957H832.288Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M476.136%2066.0625H494.853V173.779H479.053L441.996%20107.629V173.905H419.037V66.3463H446.033L476.025%20119.928L476.136%2066.0625Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M267.767%20153.532C242.015%20154.09%20225.315%20126.563%20237.707%20103.981C243.709%2093.0449%20255.296%2086.3543%20267.767%2086.6255C275.983%2086.6176%20283.924%2089.5805%20290.127%2094.9671L303.231%2081.8633C298.155%2076.7196%20292.081%2072.6686%20285.381%2069.9579C278.943%2067.3545%20272.064%2066.011%20265.118%2066C258.153%2066.0158%20251.254%2067.3593%20244.792%2069.9579C238.073%2072.6497%20231.98%2076.6959%20226.895%2081.8476C211.582%2097.3372%20206.99%20120.47%20215.226%20140.633C217.946%20147.177%20221.909%20153.132%20226.895%20158.168C231.952%20163.304%20238.028%20167.327%20244.729%20169.979C257.809%20175.172%20272.38%20175.172%20285.46%20169.979C292.128%20167.306%20298.173%20163.285%20303.215%20158.168L290.222%20145.08C284.011%20150.528%20276.03%20153.532%20267.767%20153.532Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M759.357%20173.795H734.127L716.781%20145.916C715.504%20146.105%20714.243%20146.263%20712.965%20146.358C711.359%20146.541%20709.738%20146.572%20708.124%20146.452V173.906H689.328V66.1895H708.03C714.299%2066.3739%20720.49%2067.6481%20726.322%2069.9582C731.519%2071.9971%20736.322%2074.9269%20740.513%2078.6152C744.497%2082.1474%20747.739%2086.4365%20750.053%2091.2302C752.346%2096.0349%20753.521%20101.297%20753.491%20106.62C753.535%20112.185%20752.277%20117.682%20749.817%20122.673C747.373%20127.609%20740.135%20134.91%20735.72%20138.442L759.357%20173.795ZM733.875%20107.314C733.891%20104.823%20733.195%20102.377%20731.872%20100.266C730.431%2097.8578%20728.521%2095.7605%20726.258%2094.1001C723.743%2092.2173%20720.943%2090.7492%20717.964%2089.7479C714.761%2088.6488%20711.414%2088.0323%20708.03%2087.9187V127.861C711.415%20127.755%20714.765%20127.139%20717.964%20126.032C720.943%20125.037%20723.742%20123.572%20726.258%20121.695C728.548%20120.005%20730.459%20117.857%20731.872%20115.388C733.197%20112.903%20733.886%20110.129%20733.875%20107.314Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22910%22%20height%3D%22240%22%20viewBox%3D%220%200%20910%20240%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M201.571%20174H137.424V66.1895H160.399V155.913H201.571V174Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M576.173%2066.1895V84.7019H554.601V173.906H531.642V84.7019H510.07V66.1895H576.173Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M125.218%20173.905H111.531L107.526%20160.833H70.3903L65.975%20173.905H43L79.6465%2066.3623H90.3692L125.218%20173.905ZM100.351%20142.036L89.1235%20108.528L76.9658%20142.036H100.351Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M403.599%20173.905H389.896L385.891%20160.833H348.755L344.34%20173.905H321.381L358.027%2066.3623H368.687L403.599%20173.905ZM378.732%20142.036L367.504%20108.528L355.347%20142.036H378.732Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M673.781%20173.81H660.078L656.072%20160.738H618.937L614.522%20173.81H591.562L628.193%2066.2676H638.932L673.781%20173.81ZM648.913%20141.957L637.686%20108.433L625.528%20141.957H648.913Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M857.202%20173.81H843.499L839.494%20160.738H802.327L797.912%20173.81H774.984L811.631%2066.2676H822.354L857.202%20173.81ZM832.288%20141.957L821.061%20108.433L808.903%20141.957H832.288Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M476.136%2066.0625H494.853V173.779H479.053L441.996%20107.629V173.905H419.037V66.3463H446.033L476.025%20119.928L476.136%2066.0625Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M267.767%20153.532C242.015%20154.09%20225.315%20126.563%20237.707%20103.981C243.709%2093.0449%20255.296%2086.3543%20267.767%2086.6255C275.983%2086.6176%20283.924%2089.5805%20290.127%2094.9671L303.231%2081.8633C298.155%2076.7196%20292.081%2072.6686%20285.381%2069.9579C278.943%2067.3545%20272.064%2066.011%20265.118%2066C258.153%2066.0158%20251.254%2067.3593%20244.792%2069.9579C238.073%2072.6497%20231.98%2076.6959%20226.895%2081.8476C211.582%2097.3372%20206.99%20120.47%20215.226%20140.633C217.946%20147.177%20221.909%20153.132%20226.895%20158.168C231.952%20163.304%20238.028%20167.327%20244.729%20169.979C257.809%20175.172%20272.38%20175.172%20285.46%20169.979C292.128%20167.306%20298.173%20163.285%20303.215%20158.168L290.222%20145.08C284.011%20150.528%20276.03%20153.532%20267.767%20153.532Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M759.357%20173.795H734.127L716.781%20145.916C715.504%20146.105%20714.243%20146.263%20712.965%20146.358C711.359%20146.541%20709.738%20146.572%20708.124%20146.452V173.906H689.328V66.1895H708.03C714.299%2066.3739%20720.49%2067.6481%20726.322%2069.9582C731.519%2071.9971%20736.322%2074.9269%20740.513%2078.6152C744.497%2082.1474%20747.739%2086.4365%20750.053%2091.2302C752.346%2096.0349%20753.521%20101.297%20753.491%20106.62C753.535%20112.185%20752.277%20117.682%20749.817%20122.673C747.373%20127.609%20740.135%20134.91%20735.72%20138.442L759.357%20173.795ZM733.875%20107.314C733.891%20104.823%20733.195%20102.377%20731.872%20100.266C730.431%2097.8578%20728.521%2095.7605%20726.258%2094.1001C723.743%2092.2173%20720.943%2090.7492%20717.964%2089.7479C714.761%2088.6488%20711.414%2088.0323%20708.03%2087.9187V127.861C711.415%20127.755%20714.765%20127.139%20717.964%20126.032C720.943%20125.037%20723.742%20123.572%20726.258%20121.695C728.548%20120.005%20730.459%20117.857%20731.872%20115.388C733.197%20112.903%20733.886%20110.129%20733.875%20107.314Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--blab { aspect-ratio:1.6658; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221246%22%20height%3D%22748%22%20viewBox%3D%220%200%201246%20748%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M603.209%2013.3703C662.543%207.76361%20724.147%2028.4314%20766.815%2070.3533C797.544%2099.1929%20818.787%20137.707%20827.064%20179.006C840.945%20244.417%20821.058%20316.058%20774.543%20364.21C717.591%20426.47%20621.376%20446.588%20543.657%20414.597C487.986%20392.536%20442.9%20345.118%20424.038%20288.171C404.26%20229.979%20411.512%20162.992%20444.365%20110.919C478.17%2055.8419%20538.785%2018.4273%20603.209%2013.3703ZM588.559%2043.1993C509.522%2057.1244%20444.695%20128.875%20441.215%20209.458C437.003%20262.996%20459.088%20317.341%20498.681%20353.363C539.774%20392.573%20600.243%20410.309%20655.913%20399.132C710.156%20389.238%20758.355%20352.593%20783.736%20303.819C802.855%20268.09%20806.957%20225.911%20800.401%20186.298C790.402%20134.042%20755.535%2087.7597%20709.057%2062.2914C672.725%2042.1366%20629.323%2035.3939%20588.559%2043.1993Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M534.684%20102.344L638.407%20102.161C657.599%20102.564%20679.244%20103.48%20693.931%20117.552C714.514%20135.435%20718.397%20168.452%20704.296%20191.392C698.619%20200.736%20689.426%20206.966%20681.149%20213.745C694.737%20220.341%20709.314%20227.963%20716.126%20242.328C729.274%20270.325%20721.73%20307.74%20696.348%20326.355C681.954%20337.312%20663.422%20340.28%20645.769%20340.024L534.684%20339.657V102.344ZM566.621%20129.278V204.804L634.781%20204.547C649.321%20203.631%20666.059%20200.663%20675.069%20187.874C683.236%20174.865%20682.943%20156.835%20674.959%20143.827C666.279%20130.818%20649.175%20129.572%20635.001%20128.765L566.621%20129.278ZM566.621%20231.481V313.053L631.155%20313.786C644.304%20313.456%20658.258%20314.079%20670.271%20307.74C694.114%20295.757%20698.765%20257.096%20677.01%20240.899C663.898%20231.188%20646.684%20231.335%20631.118%20230.858L566.621%20231.481Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M413.6%20462.089H452.935L453.045%20608.449L541.056%20608.706V642.712L413.636%20642.676L413.6%20462.089Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M699.865%20462.162H735.245V524.715C747.807%20516.03%20761.762%20507.529%20777.694%20508.665C803.332%20507.602%20824.171%20529.442%20829.153%20553.335C834.427%20579.499%20832.412%20609.988%20813.66%20630.619C792.747%20652.057%20754.766%20650.041%20734.293%20628.934L733.926%20642.456L699.828%20642.712L699.865%20462.162ZM753.814%20537.797C736.161%20546.519%20732.608%20569.129%20735.025%20586.828C736.307%20602.073%20746.928%20618.087%20763.337%20619.149C778.573%20620.688%20790.989%20607.166%20793.919%20593.168C796.849%20578.034%20796.702%20560.884%20787.876%20547.618C780.77%20536.808%20765.571%20532.081%20753.814%20537.797Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M572.847%20521.527C591.49%20507.382%20616.432%20507.565%20638.663%20509.654C654.632%20511.303%20673.787%20519.585%20676.241%20537.468C679.427%20572.574%20674.19%20608.083%20679.72%20643.079C665.583%20643.115%20650.603%20643.885%20638.077%20636.116C618.226%20644.984%20594.64%20649.821%20573.946%20640.917C549.48%20630.18%20546.404%20590.75%20569.002%20576.495C588.67%20564.402%20613.282%20568.726%20634.195%20560.517C642.546%20558.099%20641.96%20548.498%20639.872%20541.792C635.001%20532.154%20622.475%20532.264%20613.245%20532.924C602.001%20533.07%20596.984%20544.43%20590.867%20551.906C579.513%20552.052%20568.159%20551.832%20556.842%20551.246C560.395%20540.619%20563.325%20528.563%20572.847%20521.527ZM600.683%20589.614C588.779%20593.425%20585.776%20611.82%20596.691%20618.453C609.326%20625.196%20627.932%20623.4%20636.429%20610.941C641.52%20601.743%20640.788%20590.859%20641.996%20580.745C628.188%20583.494%20613.978%20584.813%20600.683%20589.614Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M413.49%20710.102L832.888%20710.248V735.35L413.49%20735.533V710.102Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221246%22%20height%3D%22748%22%20viewBox%3D%220%200%201246%20748%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M603.209%2013.3703C662.543%207.76361%20724.147%2028.4314%20766.815%2070.3533C797.544%2099.1929%20818.787%20137.707%20827.064%20179.006C840.945%20244.417%20821.058%20316.058%20774.543%20364.21C717.591%20426.47%20621.376%20446.588%20543.657%20414.597C487.986%20392.536%20442.9%20345.118%20424.038%20288.171C404.26%20229.979%20411.512%20162.992%20444.365%20110.919C478.17%2055.8419%20538.785%2018.4273%20603.209%2013.3703ZM588.559%2043.1993C509.522%2057.1244%20444.695%20128.875%20441.215%20209.458C437.003%20262.996%20459.088%20317.341%20498.681%20353.363C539.774%20392.573%20600.243%20410.309%20655.913%20399.132C710.156%20389.238%20758.355%20352.593%20783.736%20303.819C802.855%20268.09%20806.957%20225.911%20800.401%20186.298C790.402%20134.042%20755.535%2087.7597%20709.057%2062.2914C672.725%2042.1366%20629.323%2035.3939%20588.559%2043.1993Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M534.684%20102.344L638.407%20102.161C657.599%20102.564%20679.244%20103.48%20693.931%20117.552C714.514%20135.435%20718.397%20168.452%20704.296%20191.392C698.619%20200.736%20689.426%20206.966%20681.149%20213.745C694.737%20220.341%20709.314%20227.963%20716.126%20242.328C729.274%20270.325%20721.73%20307.74%20696.348%20326.355C681.954%20337.312%20663.422%20340.28%20645.769%20340.024L534.684%20339.657V102.344ZM566.621%20129.278V204.804L634.781%20204.547C649.321%20203.631%20666.059%20200.663%20675.069%20187.874C683.236%20174.865%20682.943%20156.835%20674.959%20143.827C666.279%20130.818%20649.175%20129.572%20635.001%20128.765L566.621%20129.278ZM566.621%20231.481V313.053L631.155%20313.786C644.304%20313.456%20658.258%20314.079%20670.271%20307.74C694.114%20295.757%20698.765%20257.096%20677.01%20240.899C663.898%20231.188%20646.684%20231.335%20631.118%20230.858L566.621%20231.481Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M413.6%20462.089H452.935L453.045%20608.449L541.056%20608.706V642.712L413.636%20642.676L413.6%20462.089Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M699.865%20462.162H735.245V524.715C747.807%20516.03%20761.762%20507.529%20777.694%20508.665C803.332%20507.602%20824.171%20529.442%20829.153%20553.335C834.427%20579.499%20832.412%20609.988%20813.66%20630.619C792.747%20652.057%20754.766%20650.041%20734.293%20628.934L733.926%20642.456L699.828%20642.712L699.865%20462.162ZM753.814%20537.797C736.161%20546.519%20732.608%20569.129%20735.025%20586.828C736.307%20602.073%20746.928%20618.087%20763.337%20619.149C778.573%20620.688%20790.989%20607.166%20793.919%20593.168C796.849%20578.034%20796.702%20560.884%20787.876%20547.618C780.77%20536.808%20765.571%20532.081%20753.814%20537.797Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M572.847%20521.527C591.49%20507.382%20616.432%20507.565%20638.663%20509.654C654.632%20511.303%20673.787%20519.585%20676.241%20537.468C679.427%20572.574%20674.19%20608.083%20679.72%20643.079C665.583%20643.115%20650.603%20643.885%20638.077%20636.116C618.226%20644.984%20594.64%20649.821%20573.946%20640.917C549.48%20630.18%20546.404%20590.75%20569.002%20576.495C588.67%20564.402%20613.282%20568.726%20634.195%20560.517C642.546%20558.099%20641.96%20548.498%20639.872%20541.792C635.001%20532.154%20622.475%20532.264%20613.245%20532.924C602.001%20533.07%20596.984%20544.43%20590.867%20551.906C579.513%20552.052%20568.159%20551.832%20556.842%20551.246C560.395%20540.619%20563.325%20528.563%20572.847%20521.527ZM600.683%20589.614C588.779%20593.425%20585.776%20611.82%20596.691%20618.453C609.326%20625.196%20627.932%20623.4%20636.429%20610.941C641.52%20601.743%20640.788%20590.859%20641.996%20580.745C628.188%20583.494%20613.978%20584.813%20600.683%20589.614Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M413.49%20710.102L832.888%20710.248V735.35L413.49%20735.533V710.102Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--banca { aspect-ratio:3.3303; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22726%22%20height%3D%22218%22%20viewBox%3D%220%200%20726%20218%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M165.956%2064.5495C165.956%2059.1431%20165.906%2056.5961%20163.528%2055.1428C163.052%2054.9066%20162.816%2054.7613%20162.816%2054.3834C162.816%2054.2126%20163.1%2053.9038%20164.123%2053.9038H176.708C189.958%2053.9038%20199.639%2055.4516%20199.639%2065.5486C199.639%2074.1887%20190.245%2076.95%20187.174%2076.95V77.1208C192.786%2077.8075%20203.255%2079.8095%20203.255%2089.9973C203.255%2098.572%20195.523%20103.117%20190.361%20103.43C187.461%20103.666%20184.582%20103.811%20182.226%20103.811C180.32%20103.811%20177.848%20103.571%20175.256%20103.571H166.929C163.909%20103.571%20162.624%20103.811%20162.029%20103.811C161.673%20103.811%20161.626%20103.666%20161.626%20103.499C161.626%20103.263%20162.029%20103.048%20162.933%20102.667C164.479%20101.976%20166.004%2098.8082%20166.004%2089.238V64.5495H165.956ZM171.046%2076.118H180.444C186.223%2076.118%20193.501%2075.3586%20193.501%2065.4033C193.501%2059.1649%20189.482%2055.8331%20180.371%2055.8331H171.046V76.118ZM171.046%2088.3115C171.046%2099.0952%20171.213%20101.642%20175.471%20101.642C177.231%20101.642%20179.014%20101.882%20180.796%20101.882C182.462%20101.882%20183.987%20101.809%20186.84%20101.57C192.811%20101.119%20196.949%2097.7145%20196.949%2090.3098C196.949%2078.0219%20185.769%2078.0473%20178.396%2078.0473H171.046V88.3115ZM219.575%2079.5006L215.789%2088.8347C214.602%2091.6905%20213.197%2095.6908%20213.197%2098.7137C213.197%20100.025%20213.793%20101.261%20214.671%20102.093C215.386%20102.787%20216.337%20102.954%20216.337%20103.404C216.337%20103.644%20215.981%20103.717%20215.433%20103.717C214.032%20103.717%20212.675%20103.546%20211.295%20103.546C209.869%20103.546%20208.395%20103.717%20206.99%20103.717C206.467%20103.717%20205.915%20103.717%20205.915%20103.335C205.915%20102.859%20206.798%20102.333%20207.153%20101.857C209.582%2098.8554%20211.818%2093.6888%20213.244%2090.4515L228.777%2053.0936C228.897%2052.7847%20229.017%2052.643%20229.18%2052.643H229.304C229.467%2052.643%20229.728%2052.9519%20229.728%2053.0936L247.167%2096.9297C247.998%2099.0007%20249.403%20101.166%20250.902%20102.474C251.425%20102.928%20251.78%20103.165%20251.78%20103.335C251.78%20103.499%20251.712%20103.717%20251.189%20103.717C249.472%20103.717%20247.454%20103.546%20245.62%20103.546C243.791%20103.546%20241.315%20103.717%20239.649%20103.717C239.362%20103.717%20239.174%20103.644%20239.174%20103.477C239.174%20103.023%20239.696%20102.928%20240.292%20102.547C240.814%20102.165%20241.362%20101.475%20241.362%2099.7601C241.362%2097.6673%20240.056%2093.667%20238.531%2089.6667L234.676%2079.4752L219.575%2079.5006ZM227.449%2060.9052L220.287%2077.5713H234.106L227.449%2060.9052ZM262.674%2089.6195C262.674%2096.4756%20262.035%2099.5712%20260.129%20101.737C259.251%20102.739%20257.777%20103.048%20257.777%20103.524C257.777%20103.764%20258.013%20103.833%20258.442%20103.833C259.157%20103.833%20262.391%20103.593%20263.625%20103.593C265.745%20103.593%20267.647%20103.833%20268.362%20103.833C268.645%20103.833%20268.838%20103.764%20268.838%20103.524C268.838%20103.143%20268.435%20103.143%20267.6%20102.452C266.315%20101.453%20264.576%2099.1424%20264.576%2091.2617V59.8334C273.782%2071.4746%20284.44%2087.0725%20291.649%2097.8817C295.311%20103.357%20296.027%20105.145%20296.618%20105.145H296.738C297.145%20105.145%20297.333%20101.904%20297.333%2097.809V66.5478C297.333%2058.2129%20299.047%2056.1201%20300.524%2055.3571C301.188%2054.9756%20301.475%2054.7395%20301.475%2054.5251C301.475%2054.2853%20301.305%2053.9038%20300.473%2053.9038C299.239%2053.9038%20297.642%2054.2126%20296.408%2054.2126C295.239%2054.2126%20292.672%2053.9038%20291.79%2053.9038C291.148%2053.9038%20290.792%2054.2126%20290.792%2054.5941C290.792%2054.9756%20291.387%2054.9756%20292.15%2055.5243C293.743%2056.7632%20295.457%2060.0005%20295.457%2066.5478V92.3081L275.782%2064.9273C273.19%2061.5483%20270.693%2057.9768%20268.576%2054.0455C267.335%2054.1182%20265.625%2054.1872%20264.152%2054.1872C262.721%2054.1872%20260.365%2053.882%20259.774%2053.882C259.131%2053.882%20259.011%2054.1182%20259.011%2054.4306C259.011%2054.5723%20259.251%2054.8121%20259.538%2054.9756C262.246%2056.2146%20262.674%2059.0704%20262.721%2063.1434V89.6195H262.674ZM354.092%2059.5246C348.622%2054.9756%20341.888%2052.643%20334.229%2052.6648C319.694%2052.6648%20306.659%2062.2387%20306.659%2079.5951C306.659%2096.2612%20320.834%20105.145%20334.443%20105.145C341.532%20105.145%20348.691%20103.048%20354.448%2098.4993L353.308%2093.7142C352.974%2092.3336%20352.807%2091.8576%20352.618%2091.8576C352.259%2091.8576%20352.117%2092.4026%20351.831%2093.0966C349.384%2098.4993%20343.413%20103.19%20334.087%20103.19C320.885%20103.19%20314.151%2091.8576%20314.151%2078.4288C314.151%2064.6912%20321.382%2054.5941%20334.156%2054.5941C341.318%2054.5941%20348.193%2057.2138%20350.999%2066.1663C351.068%2066.5478%20351.355%2066.8566%20351.475%2066.8566C351.831%2066.8566%20352.164%2065.7848%20352.738%2063.9972L354.092%2059.5246ZM373.24%2079.5006L369.458%2088.8347C368.293%2091.6905%20366.866%2095.6908%20366.866%2098.7137C366.866%20100.025%20367.461%20101.261%20368.34%20102.093C369.055%20102.787%20369.981%20102.954%20369.981%20103.404C369.981%20103.644%20369.625%20103.717%20369.102%20103.717C367.675%20103.717%20366.318%20103.571%20364.964%20103.571C363.559%20103.571%20362.085%20103.717%20360.659%20103.717C360.136%20103.717%20359.588%20103.717%20359.588%20103.335C359.588%20102.859%20360.466%20102.333%20360.822%20101.857C363.251%2098.8554%20365.508%2093.6888%20366.913%2090.4515L382.446%2053.0936C382.566%2052.7847%20382.682%2052.643%20382.853%2052.643H382.972C383.136%2052.643%20383.375%2052.9519%20383.375%2053.0936L400.81%2096.9297C401.645%2099.0007%20403.072%20101.166%20404.545%20102.474C405.068%20102.928%20405.424%20103.165%20405.424%20103.335C405.424%20103.477%20405.377%20103.717%20404.832%20103.717C403.141%20103.717%20401.122%20103.546%20399.289%20103.546C397.456%20103.546%20394.984%20103.717%20393.318%20103.717C393.006%20103.717%20392.842%20103.644%20392.842%20103.477C392.842%20103.023%20393.365%20102.928%20393.982%20102.547C394.508%20102.165%20395.031%20101.453%20395.031%2099.7601C395.031%2097.6673%20393.721%2093.667%20392.2%2089.6667L388.345%2079.4752H373.24V79.5006ZM381.092%2060.9052L373.955%2077.5713H387.775L381.092%2060.9052ZM431.807%2064.524C431.807%2057.5735%20430.95%2056.2618%20429.284%2055.3353C428.881%2055.0229%20428.547%2054.8812%20428.547%2054.4997C428.547%2054.1872%20428.761%2053.882%20430.543%2053.882H450.955C467.439%2053.882%20475.693%2065.4505%20475.693%2077.8802C475.693%2091.9993%20467.058%20102.333%20453.761%20103.571C452.095%20103.717%20450.385%20103.811%20448.646%20103.811C446.911%20103.811%20443.938%20103.571%20440.867%20103.571H433.28C430.427%20103.571%20428.62%20103.88%20427.832%20103.88C427.574%20103.88%20427.356%20103.811%20427.356%20103.644C427.356%20103.335%20427.621%20103.19%20428.097%20102.881C431.614%20100.57%20431.807%2098.7864%20431.807%2090.764V64.524ZM436.874%2089.3797C436.874%2098.9499%20438.134%20101.188%20440.965%20101.5C443.699%20101.809%20446.221%20101.882%20447.815%20101.882C449.481%20101.882%20451.122%20101.809%20452.788%20101.664C462.255%20100.737%20468.56%2094.9532%20468.56%2077.8329C468.56%2061.6174%20462.114%2055.8331%20448.672%2055.8331H436.874V89.3797ZM481.069%2060.7381C481.069%2063.474%20482.975%2064.2842%20484.83%2064.2842C484.83%2067.5942%20483.854%2069.6906%20482.354%2072.2594C482.282%2072.3321%20482.235%2072.5719%20482.235%2072.739C482.235%2072.9061%20482.427%2073.0478%20482.547%2073.0478C483.781%2073.0478%20487.469%2067.002%20487.469%2062.166C487.469%2058.7143%20486.304%2056.4508%20484.257%2056.4508C482.071%2056.4762%20481.069%2058.4019%20481.069%2060.7381ZM502.574%2088.8347C502.574%2093.7615%20502.385%20100.57%20499.793%20102.714C499.386%20103.096%20498.958%20103.335%20498.958%20103.477C498.958%20103.717%20499.198%20103.786%20499.673%20103.786C500.196%20103.786%20501.789%20103.546%20505.096%20103.546C507.95%20103.546%20509.757%20103.786%20510.305%20103.786C510.661%20103.786%20510.948%20103.717%20510.948%20103.546C510.948%20103.31%20510.781%20103.096%20510.305%20102.859C507.641%20101.308%20507.641%2095.8325%20507.641%2088.8092V61.6646C507.641%2058.6671%20507.808%2055.6405%20509.83%2054.8812C510.138%2054.8121%20510.258%2054.5723%20510.258%2054.2599C510.258%2053.882%20509.496%2053.882%20509.256%2053.882C507.902%2053.882%20506.476%2054.1872%20505.118%2054.1872C502.933%2054.1872%20501.648%2053.882%20500.933%2053.882C500.174%2053.882%20500.004%2053.882%20500.004%2054.3325C500.004%2054.6414%20500.174%2054.714%20500.41%2054.8812C502.479%2055.8803%20502.599%2059.1903%20502.599%2061.6646V88.8347H502.574ZM518.702%2054.1872L516.8%2062.7619C516.727%2063.0707%20516.68%2063.3105%20516.68%2063.5212C516.68%2063.6666%20516.68%2063.8337%20516.8%2063.8337C517.039%2063.8337%20517.275%2063.4522%20517.562%2062.9762C520.154%2057.8787%20526.245%2056.0947%20530.692%2056.0947C532.761%2056.0947%20534.238%2056.3345%20534.238%2059.2593V87.0471C534.238%2095.0695%20533.472%20101.929%20531.094%20102.714C530.263%20102.954%20529.621%20102.954%20529.621%20103.335C529.621%20103.571%20529.668%20103.786%20530.143%20103.786C530.739%20103.786%20532.311%20103.546%20536.997%20103.546C541.135%20103.546%20542.54%20103.786%20542.968%20103.786C543.371%20103.786%20543.607%20103.717%20543.607%20103.477C543.607%20103.335%20543.037%20103.001%20542.133%20102.641C540.064%20101.711%20539.302%2098.096%20539.302%2088.4532V59.2593C539.302%2056.3345%20540.779%2056.0947%20542.845%2056.0947C547.295%2056.0947%20553.361%2057.8787%20555.978%2062.9508C556.261%2063.4268%20556.501%2063.8083%20556.737%2063.8083C556.857%2063.8083%20556.857%2063.6448%20556.857%2063.4994C556.857%2063.2633%20556.809%2063.0235%20556.737%2062.7401L554.835%2054.1654H518.702V54.1872ZM564.708%2079.5006L560.926%2088.8347C559.761%2091.6905%20558.334%2095.6908%20558.334%2098.7137C558.334%20100.025%20558.929%20101.261%20559.808%20102.093C560.519%20102.787%20561.47%20102.954%20561.47%20103.404C561.47%20103.644%20561.118%20103.717%20560.592%20103.717C559.165%20103.717%20557.808%20103.571%20556.454%20103.571C555.027%20103.571%20553.55%20103.717%20552.148%20103.717C551.622%20103.717%20551.078%20103.717%20551.078%20103.335C551.078%20102.859%20551.956%20102.333%20552.315%20101.857C554.74%2098.8554%20556.976%2093.6888%20558.407%2090.4515L573.936%2053.0936C574.03%2052.7847%20574.175%2052.643%20574.342%2052.643H574.458C574.629%2052.643%20574.865%2052.9519%20574.865%2053.0936L592.304%2096.9297C593.135%2099.0007%20594.536%20101.166%20596.013%20102.474C596.536%20102.928%20596.892%20103.165%20596.892%20103.335C596.892%20103.477%20596.845%20103.717%20596.297%20103.717C594.609%20103.717%20592.587%20103.546%20590.754%20103.546C588.924%20103.546%20586.448%20103.717%20584.786%20103.717C584.477%20103.717%20584.307%20103.644%20584.307%20103.477C584.307%20103.023%20584.833%20102.928%20585.428%20102.547C585.973%20102.165%20586.496%20101.453%20586.496%2099.7601C586.496%2097.6673%20585.189%2093.667%20583.668%2089.6667L579.813%2079.4752H564.708V79.5006ZM572.556%2060.9052L565.398%2077.5713H579.217L572.556%2060.9052ZM645.443%20103.546L648.108%2094.6662C648.18%2094.3573%20648.249%2093.8814%20648.249%2093.736C648.249%2093.4272%20648.18%2093.191%20647.915%2093.191C647.487%2093.191%20647.156%2093.736%20646.801%2094.3573C642.016%20100.759%20630.241%20101.617%20623.583%20101.617C616.755%20101.617%20614.78%20100.759%20614.78%2083.4755V61.6428C614.853%2058.6417%20615.423%2055.6914%20618.204%2054.8594C618.49%2054.6886%20618.777%2054.6196%20618.777%2054.3107C618.777%2053.8348%20618.276%2053.8348%20617.993%2053.8348C616.519%2053.8348%20615.496%2054.14%20612.497%2054.14C609.88%2054.14%20608.359%2053.8348%20607.502%2053.8348C606.598%2053.8348%20606.243%2054.0709%20606.243%2054.3834C606.243%2054.5251%20606.384%2054.7613%20606.791%2054.9284C608.74%2055.5461%20609.666%2057.0939%20609.666%2062.3331V89.4269C609.666%2098.6192%20608.693%20101.548%20605.168%20102.689C604.598%20102.859%20604.195%20103.001%20604.195%20103.31C604.195%20103.691%20604.41%20103.786%20604.958%20103.786C605.455%20103.786%20606.838%20103.546%20609.786%20103.546H645.443ZM657.03%2088.8347C657.03%2093.7615%20656.838%20100.57%20654.246%20102.714C653.839%20103.096%20653.411%20103.335%20653.411%20103.477C653.411%20103.717%20653.651%20103.786%20654.126%20103.786C654.649%20103.786%20656.242%20103.546%20659.571%20103.546C662.402%20103.546%20664.236%20103.786%20664.758%20103.786C665.114%20103.786%20665.401%20103.717%20665.401%20103.546C665.401%20103.31%20665.234%20103.096%20664.758%20102.859C662.094%20101.333%20662.094%2095.8325%20662.094%2088.8092V61.6646C662.094%2058.6417%20662.261%2055.6405%20664.283%2054.8812C664.57%2054.7867%20664.686%2054.5723%20664.686%2054.2599C664.686%2053.882%20663.927%2053.882%20663.687%2053.882C662.333%2053.882%20660.907%2054.1872%20659.549%2054.1872C657.36%2054.1872%20656.054%2053.882%20655.338%2053.882C654.576%2053.882%20654.409%2053.882%20654.409%2054.358C654.409%2054.6668%20654.576%2054.7395%20654.816%2054.9066C656.885%2055.9058%20657.005%2059.2121%20657.005%2061.69V88.8347H657.03ZM685.834%2079.4752L682.052%2088.8092C680.865%2091.6687%20679.46%2095.6653%20679.46%2098.6919C679.46%2099.9999%20680.055%20101.235%20680.934%20102.071C681.649%20102.761%20682.578%20102.928%20682.578%20103.383C682.578%20103.619%20682.219%20103.691%20681.696%20103.691C680.269%20103.691%20678.912%20103.524%20677.558%20103.524C676.131%20103.524%20674.654%20103.691%20673.252%20103.691C672.726%20103.691%20672.178%20103.691%20672.178%20103.31C672.178%20102.859%20673.06%20102.311%20673.419%20101.835C675.844%2098.8336%20678.08%2093.667%20679.507%2090.4261L695.04%2053.0718C695.16%2052.7593%20695.279%2052.6176%20695.443%2052.6176H695.563C695.755%2052.6176%20695.991%2052.9301%20695.991%2053.0718L713.429%2096.9043C714.261%2098.9753%20715.665%20101.141%20717.165%20102.452C717.687%20102.907%20718.043%20103.143%20718.043%20103.31C718.043%20103.477%20717.974%20103.691%20717.448%20103.691C715.738%20103.691%20713.738%20103.546%20711.908%20103.546C710.075%20103.546%20707.6%20103.691%20705.937%20103.691C705.65%20103.691%20705.461%20103.619%20705.461%20103.452C705.461%20102.976%20705.984%20102.907%20706.576%20102.521C707.099%20102.14%20707.647%20101.428%20707.647%2099.7383C707.647%2097.6419%20706.365%2093.6416%20704.815%2089.6413L700.964%2079.4534L685.834%2079.4752ZM693.708%2060.9052L686.549%2077.5713H700.369L693.708%2060.9052ZM273.354%20155.928C273.354%20158.787%20273.354%20161.236%20273.212%20162.548C273.096%20163.452%20272.925%20164.117%20272.334%20164.263C272.047%20164.335%20271.691%20164.383%20271.215%20164.383C270.86%20164.383%20270.718%20164.477%20270.718%20164.619C270.718%20164.833%20270.929%20164.928%20271.335%20164.928C271.952%20164.928%20272.762%20164.859%20273.452%20164.859C274.188%20164.833%20274.878%20164.833%20275.212%20164.833C276.138%20164.833%20277.089%20164.859%20278.421%20164.928C279.731%20164.953%20281.445%20165.022%20283.754%20165.022C284.915%20165.022%20285.202%20165.022%20285.416%20164.215C285.558%20163.594%20285.819%20161.476%20285.819%20160.76C285.819%20160.451%20285.819%20160.215%20285.583%20160.215C285.369%20160.215%20285.296%20160.331%20285.249%20160.691C285.035%20161.952%20284.657%20162.617%20283.87%20162.998C283.086%20163.383%20281.775%20163.383%20280.969%20163.383C277.829%20163.383%20277.328%20162.929%20277.281%20160.76C277.259%20159.881%20277.281%20157%20277.281%20155.953V153.501C277.281%20153.308%20277.307%20153.192%20277.47%20153.192C278.211%20153.192%20281.252%20153.214%20281.848%20153.286C282.991%20153.403%20283.42%20153.879%20283.561%20154.5C283.656%20154.903%20283.656%20155.31%20283.681%20155.619C283.681%20155.786%20283.728%20155.906%20283.964%20155.906C284.251%20155.906%20284.251%20155.572%20284.251%20155.31C284.251%20155.096%20284.345%20153.857%20284.371%20153.239C284.487%20151.644%20284.607%20151.168%20284.607%20150.976C284.607%20150.787%20284.512%20150.739%20284.392%20150.739C284.229%20150.739%20284.106%20150.881%20283.895%20151.143C283.608%20151.452%20283.155%20151.546%20282.421%20151.593C281.706%20151.666%20278.185%20151.666%20277.495%20151.666C277.307%20151.666%20277.281%20151.546%20277.281%20151.335V143.476C277.281%20143.262%20277.354%20143.164%20277.495%20143.164C278.113%20143.164%20281.347%20143.237%20281.873%20143.287C283.42%20143.476%20283.728%20143.832%20283.942%20144.403C284.106%20144.784%20284.131%20145.311%20284.131%20145.522C284.131%20145.809%20284.204%20145.951%20284.418%20145.951C284.632%20145.951%20284.705%20145.762%20284.726%20145.62C284.799%20145.239%20284.846%20143.88%20284.868%20143.571C284.962%20142.143%20285.133%20141.761%20285.133%20141.547C285.133%20141.38%20285.108%20141.26%20284.941%20141.26C284.799%20141.26%20284.607%20141.358%20284.44%20141.38C284.204%20141.453%20283.703%20141.5%20283.107%20141.573C282.516%20141.594%20276.403%20141.594%20275.426%20141.594C274.998%20141.594%20274.283%20141.573%20273.499%20141.525C272.736%20141.525%20271.833%20141.5%20271.001%20141.5C270.548%20141.5%20270.337%20141.572%20270.337%20141.783C270.337%20142.001%20270.526%20142.07%20270.86%20142.07C271.288%20142.07%20271.811%20142.096%20272.047%20142.165C273.07%20142.383%20273.306%20142.881%20273.379%20143.927C273.452%20144.926%20273.452%20145.787%20273.452%20150.5V155.928H273.354ZM300.713%20155.001C300.713%20159.499%20301.878%20161.785%20303.446%20163.213C305.708%20165.262%20308.655%20165.356%20310.274%20165.356C312.274%20165.356%20314.485%20165.022%20316.674%20163.118C319.244%20160.88%20319.6%20157.214%20319.6%20153.762V150.452C319.6%20145.74%20319.6%20144.857%20319.672%20143.88C319.741%20142.786%20319.981%20142.259%20320.812%20142.118C321.193%20142.048%20321.382%20142.023%20321.716%20142.023C322.097%20142.023%20322.264%20141.954%20322.264%20141.736C322.264%20141.525%20322.05%20141.453%20321.622%20141.453C320.431%20141.453%20318.482%20141.547%20318.101%20141.547C318.075%20141.547%20316.126%20141.453%20314.558%20141.453C314.129%20141.453%20313.915%20141.525%20313.915%20141.736C313.915%20141.954%20314.104%20142.023%20314.438%20142.023C314.768%20142.023%20315.295%20142.048%20315.556%20142.118C316.58%20142.332%20316.819%20142.833%20316.888%20143.88C316.961%20144.879%20316.961%20145.74%20316.961%20150.452V154.333C316.961%20157.523%20316.866%20160.331%20315.175%20162.025C313.937%20163.26%20312.274%20163.714%20310.942%20163.714C309.893%20163.714%20308.492%20163.594%20307.087%20162.453C305.588%20161.214%20304.684%20159.31%20304.684%20154.809V150.452C304.684%20145.74%20304.684%20144.857%20304.757%20143.88C304.829%20142.786%20305.065%20142.259%20305.897%20142.118C306.278%20142.048%20306.445%20142.023%20306.8%20142.023C307.113%20142.023%20307.301%20141.954%20307.301%20141.736C307.301%20141.525%20307.087%20141.453%20306.637%20141.453C305.515%20141.453%20303.588%20141.547%20302.855%20141.547C301.925%20141.547%20299.976%20141.453%20298.357%20141.453C297.903%20141.453%20297.693%20141.525%20297.693%20141.736C297.693%20141.954%20297.881%20142.023%20298.215%20142.023C298.644%20142.023%20299.167%20142.048%20299.402%20142.118C300.426%20142.332%20300.666%20142.833%20300.735%20143.88C300.807%20144.879%20300.807%20145.74%20300.807%20150.452V155.001H300.713ZM337.488%20150.474C337.488%20145.762%20337.488%20144.879%20337.416%20143.905C337.347%20142.859%20337.107%20142.357%20336.084%20142.143C335.848%20142.07%20335.321%20142.048%20334.871%20142.048C334.541%20142.048%20334.345%20141.976%20334.345%20141.761C334.345%20141.547%20334.563%20141.478%20335.016%20141.478C336.654%20141.478%20338.581%20141.573%20339.224%20141.573C340.269%20141.573%20342.603%20141.478%20343.554%20141.478C345.503%20141.478%20347.551%20141.667%20349.213%20142.811C350.07%20143.404%20351.308%20144.973%20351.308%20147.073C351.308%20149.359%20350.357%20151.477%20347.242%20154.024C349.976%20157.501%20352.092%20160.262%20353.925%20162.188C355.66%20164.001%20356.923%20164.215%20357.374%20164.31C357.708%20164.383%20357.991%20164.404%20358.23%20164.404C358.466%20164.404%20358.611%20164.499%20358.611%20164.641C358.611%20164.88%20358.397%20164.953%20358.016%20164.953H355.09C353.377%20164.953%20352.593%20164.786%20351.809%20164.357C350.477%20163.641%20349.311%20162.188%20347.598%20159.786C346.36%20158.071%20344.955%20155.975%20344.552%20155.499C344.411%20155.31%20344.218%20155.285%20344.004%20155.285L341.318%20155.212C341.176%20155.212%20341.082%20155.285%20341.082%20155.452V155.881C341.082%20158.762%20341.082%20161.214%20341.224%20162.522C341.318%20163.431%20341.51%20164.096%20342.414%20164.237C342.89%20164.31%20343.554%20164.357%20343.91%20164.357C344.171%20164.357%20344.291%20164.452%20344.291%20164.593C344.291%20164.811%20344.077%20164.906%20343.67%20164.906C341.888%20164.906%20339.605%20164.811%20339.155%20164.811C338.581%20164.811%20336.632%20164.906%20335.394%20164.906C334.991%20164.906%20334.777%20164.811%20334.777%20164.593C334.777%20164.452%20334.897%20164.357%20335.274%20164.357C335.728%20164.357%20336.109%20164.288%20336.396%20164.237C337.013%20164.117%20337.154%20163.431%20337.274%20162.522C337.441%20161.214%20337.441%20158.762%20337.441%20155.906V150.474H337.488ZM341.104%20152.927C341.104%20153.261%20341.176%20153.381%20341.387%20153.475C342.033%20153.69%20342.959%20153.784%20343.721%20153.784C344.955%20153.784%20345.362%20153.668%20345.906%20153.261C346.836%20152.571%20347.718%20151.143%20347.718%20148.618C347.718%20144.214%20344.814%20142.928%20343.006%20142.928C342.244%20142.928%20341.674%20142.953%20341.365%20143.048C341.151%20143.117%20341.082%20143.237%20341.082%20143.476V152.927H341.104ZM366.438%20153.192C366.438%20147.88%20369.912%20141.024%20379.139%20141.024C386.798%20141.024%20391.579%20145.522%20391.579%20152.643C391.579%20159.761%20386.657%20165.382%20378.83%20165.382C370.006%20165.356%20366.438%20158.693%20366.438%20153.192ZM387.252%20153.784C387.252%20146.834%20383.277%20142.524%20378.239%20142.524C374.692%20142.524%20370.67%20144.523%20370.67%20152.24C370.67%20158.693%20374.217%20163.812%20380.115%20163.812C382.279%20163.812%20387.252%20162.762%20387.252%20153.784ZM410.35%20165.356C411.991%20165.356%20413.704%20165.069%20415.25%20164.096C417.461%20162.642%20418.151%20160.499%20418.151%20158.693C418.151%20155.735%20416.818%20153.595%20413.109%20150.787L412.252%20150.14C409.707%20148.189%20408.996%20147.095%20408.996%20145.667C408.996%20143.811%20410.375%20142.477%20412.658%20142.477C414.655%20142.477%20415.559%20143.404%20416.013%20144C416.651%20144.81%20416.797%20145.762%20416.797%20146.049C416.797%20146.405%20416.891%20146.619%20417.105%20146.619C417.345%20146.619%20417.439%20146.379%20417.439%20145.693C417.439%20143.262%20417.555%20142.357%20417.555%20141.976C417.555%20141.761%20417.392%20141.667%20417.127%20141.594C416.321%20141.38%20415.036%20141.071%20413.036%20141.071C408.756%20141.071%20405.925%20143.524%20405.925%20146.953C405.925%20149.475%20407.09%20151.644%20410.491%20154.307L411.918%20155.43C414.466%20157.454%20414.942%20158.882%20414.942%20160.404C414.942%20162.046%20413.584%20163.954%20410.825%20163.954C408.923%20163.954%20407.09%20163.118%20406.422%20160.807C406.281%20160.284%20406.139%20159.645%20406.139%20159.238C406.139%20158.998%20406.117%20158.715%20405.83%20158.715C405.591%20158.715%20405.496%20159.045%20405.471%20159.525C405.449%20160.023%20405.329%20161.879%20405.329%20163.594C405.329%20164.288%20405.424%20164.43%20405.899%20164.641C407.163%20165.142%20408.567%20165.356%20410.35%20165.356ZM434.685%20155.928C434.685%20158.929%20434.685%20161.381%20434.544%20162.689C434.446%20163.594%20434.257%20164.117%20433.64%20164.237C433.353%20164.31%20432.994%20164.357%20432.518%20164.357C432.162%20164.357%20432.021%20164.452%20432.021%20164.593C432.021%20164.811%20432.235%20164.906%20432.638%20164.906C433.876%20164.906%20435.8%20164.811%20436.515%20164.811C437.35%20164.811%20439.277%20164.906%20441.321%20164.906C441.655%20164.906%20441.916%20164.811%20441.916%20164.593C441.916%20164.452%20441.749%20164.357%20441.415%20164.357C440.965%20164.357%20440.275%20164.31%20439.847%20164.237C438.918%20164.117%20438.704%20163.547%20438.609%20162.711C438.49%20161.381%20438.49%20158.929%20438.49%20155.906V150.452C438.49%20145.74%20438.49%20144.857%20438.537%20143.88C438.609%20142.786%20438.849%20142.259%20439.68%20142.118C440.061%20142.048%20440.297%20142.023%20440.609%20142.023C440.914%20142.023%20441.107%20141.954%20441.107%20141.714C441.107%20141.525%20440.845%20141.478%20440.464%20141.478C439.299%20141.478%20437.47%20141.573%20436.704%20141.573C435.825%20141.573%20433.876%20141.478%20432.711%20141.478C432.21%20141.478%20431.974%20141.547%20431.974%20141.714C431.974%20141.954%20432.162%20142.023%20432.471%20142.023C432.83%20142.023%20433.233%20142.048%20433.567%20142.143C434.257%20142.31%20434.565%20142.833%20434.613%20143.88C434.685%20144.879%20434.685%20145.74%20434.685%20150.452V155.928ZM460.614%20165.356C462.255%20165.356%20463.969%20165.069%20465.511%20164.096C467.726%20162.642%20468.415%20160.499%20468.415%20158.693C468.415%20155.735%20467.083%20153.595%20463.373%20150.787L462.517%20150.14C459.968%20148.189%20459.257%20147.095%20459.257%20145.667C459.257%20143.811%20460.636%20142.477%20462.919%20142.477C464.92%20142.477%20465.823%20143.404%20466.274%20144C466.916%20144.81%20467.083%20145.762%20467.083%20146.049C467.083%20146.405%20467.177%20146.619%20467.392%20146.619C467.657%20146.619%20467.726%20146.379%20467.726%20145.693C467.726%20143.262%20467.845%20142.357%20467.845%20141.976C467.845%20141.761%20467.678%20141.667%20467.417%20141.594C466.633%20141.38%20465.322%20141.071%20463.326%20141.071C459.043%20141.071%20456.211%20143.524%20456.211%20146.953C456.211%20149.475%20457.38%20151.644%20460.756%20154.307L462.183%20155.43C464.727%20157.454%20465.203%20158.882%20465.203%20160.404C465.203%20162.046%20463.849%20163.954%20461.09%20163.954C459.188%20163.954%20457.355%20163.118%20456.687%20160.807C456.545%20160.284%20456.404%20159.645%20456.404%20159.238C456.404%20158.998%20456.378%20158.715%20456.095%20158.715C455.855%20158.715%20455.761%20159.045%20455.736%20159.525C455.714%20160.023%20455.594%20161.879%20455.594%20163.594C455.594%20164.288%20455.688%20164.43%20456.189%20164.641C457.449%20165.142%20458.828%20165.356%20460.614%20165.356ZM489.063%20155.928C489.063%20158.787%20489.063%20161.236%20488.921%20162.548C488.823%20163.452%20488.634%20164.117%20488.017%20164.263C487.756%20164.335%20487.375%20164.383%20486.921%20164.383C486.565%20164.383%20486.424%20164.477%20486.424%20164.619C486.424%20164.833%20486.638%20164.928%20487.041%20164.928C488.279%20164.928%20490.203%20164.833%20490.918%20164.833C491.774%20164.833%20493.727%20164.928%20495.746%20164.928C496.079%20164.928%20496.315%20164.833%20496.315%20164.619C496.315%20164.477%20496.174%20164.383%20495.818%20164.383C495.343%20164.383%20494.678%20164.31%20494.25%20164.263C493.321%20164.143%20493.132%20163.452%20493.059%20162.595C492.892%20161.262%20492.892%20158.809%20492.892%20155.953V143.215L496.769%20143.309C499.506%20143.356%20500.337%20144.239%20500.41%20145.046L500.432%20145.38C500.457%20145.834%20500.526%20145.998%20500.766%20145.998C500.955%20145.998%20501.005%20145.809%20501.053%20145.5C501.053%20144.69%20501.147%20142.546%20501.147%20141.907C501.147%20141.431%20501.125%20141.26%20500.907%20141.26C500.791%20141.26%20500.526%20141.307%20500.076%20141.405C499.626%20141.478%20498.936%20141.573%20497.96%20141.573H485.781C484.758%20141.573%20483.592%20141.5%20482.71%20141.405C481.952%20141.333%20481.643%20141.049%20481.378%20141.049C481.189%20141.049%20481.095%20141.238%20480.997%20141.642C480.928%20141.881%20480.358%20144.715%20480.358%20145.217C480.358%20145.547%20480.427%20145.715%20480.645%20145.715C480.833%20145.715%20480.928%20145.595%20480.975%20145.358C481.048%20145.119%20481.189%20144.737%20481.498%20144.261C481.973%20143.571%20482.71%20143.429%20484.496%20143.356L489.088%20143.237V155.928H489.063ZM516.041%20155.928C516.041%20158.787%20516.041%20161.236%20515.896%20162.548C515.776%20163.452%20515.609%20164.117%20514.992%20164.263C514.705%20164.335%20514.349%20164.383%20513.874%20164.383C513.493%20164.383%20513.373%20164.477%20513.373%20164.619C513.373%20164.833%20513.587%20164.928%20513.99%20164.928C514.611%20164.928%20515.42%20164.859%20516.11%20164.859C516.847%20164.833%20517.536%20164.833%20517.87%20164.833C518.8%20164.833%20519.751%20164.859%20521.058%20164.928C522.39%20164.953%20524.078%20165.022%20526.386%20165.022C527.552%20165.022%20527.838%20165.022%20528.052%20164.215C528.219%20163.594%20528.455%20161.476%20528.455%20160.76C528.455%20160.451%20528.455%20160.215%20528.219%20160.215C528.002%20160.215%20527.933%20160.331%20527.886%20160.691C527.671%20161.952%20527.29%20162.617%20526.503%20162.998C525.718%20163.383%20524.412%20163.383%20523.602%20163.383C520.462%20163.383%20519.961%20162.929%20519.914%20160.76C519.892%20159.881%20519.914%20157%20519.914%20155.953V153.501C519.914%20153.308%20519.939%20153.192%20520.106%20153.192C520.843%20153.192%20523.889%20153.214%20524.484%20153.286C525.624%20153.403%20526.052%20153.879%20526.198%20154.5C526.292%20154.903%20526.292%20155.31%20526.314%20155.619C526.314%20155.786%20526.386%20155.906%20526.601%20155.906C526.884%20155.906%20526.884%20155.572%20526.884%20155.31C526.884%20155.096%20526.978%20153.857%20527.003%20153.239C527.123%20151.644%20527.265%20151.168%20527.265%20150.976C527.265%20150.787%20527.17%20150.739%20527.051%20150.739C526.909%20150.739%20526.767%20150.881%20526.55%20151.143C526.267%20151.452%20525.816%20151.546%20525.076%20151.593C524.364%20151.666%20520.818%20151.666%20520.154%20151.666C519.961%20151.666%20519.939%20151.546%20519.939%20151.335V143.476C519.939%20143.262%20520.008%20143.164%20520.154%20143.164C520.771%20143.164%20524.009%20143.237%20524.531%20143.287C526.074%20143.476%20526.386%20143.832%20526.601%20144.403C526.742%20144.784%20526.789%20145.311%20526.789%20145.522C526.789%20145.809%20526.862%20145.951%20527.076%20145.951C527.29%20145.951%20527.359%20145.762%20527.385%20145.62C527.454%20145.239%20527.504%20143.88%20527.552%20143.571C527.646%20142.143%20527.788%20141.761%20527.788%20141.547C527.788%20141.38%20527.766%20141.26%20527.599%20141.26C527.454%20141.26%20527.265%20141.358%20527.098%20141.38C526.862%20141.453%20526.361%20141.5%20525.769%20141.573C525.196%20141.594%20519.057%20141.594%20518.085%20141.594C517.656%20141.594%20516.945%20141.573%20516.157%20141.525C515.395%20141.525%20514.491%20141.5%20513.66%20141.5C513.184%20141.5%20512.97%20141.572%20512.97%20141.783C512.97%20142.001%20513.159%20142.07%20513.493%20142.07C513.921%20142.07%20514.444%20142.096%20514.683%20142.165C515.703%20142.383%20515.943%20142.881%20515.99%20143.927C516.063%20144.926%20516.063%20145.787%20516.063%20150.5V155.928H516.041ZM542.823%20161.832C542.681%20162.882%20542.416%20164.096%20541.563%20164.288C541.11%20164.383%20540.895%20164.383%20540.634%20164.383C540.326%20164.383%20540.137%20164.452%20540.137%20164.593C540.137%20164.88%20540.373%20164.928%20540.685%20164.928C541.658%20164.928%20543.157%20164.833%20543.727%20164.833C544.275%20164.833%20545.654%20164.928%20546.961%20164.928C547.437%20164.928%20547.702%20164.859%20547.702%20164.593C547.702%20164.452%20547.484%20164.383%20547.226%20164.383C546.914%20164.383%20546.486%20164.357%20545.938%20164.237C545.415%20164.117%20545.012%20163.834%20545.012%20163.238C545.012%20162.737%20545.034%20162.333%20545.106%20161.785L546.7%20149.428H546.82C547.89%20151.764%20549.745%20155.666%20550.007%20156.309C550.388%20157.167%20552.816%20161.93%20553.55%20163.358C554.051%20164.288%20554.359%20164.906%20554.624%20164.906C554.907%20164.906%20555.049%20164.619%20555.764%20163.165L562.472%20149.072H562.592L564.425%20162.737C564.541%20163.62%20564.447%20164.001%20564.28%20164.07C564.066%20164.165%20563.946%20164.263%20563.946%20164.43C563.946%20164.619%20564.138%20164.713%20564.828%20164.764C566.062%20164.859%20570.298%20164.953%20571.083%20164.953C571.511%20164.953%20571.892%20164.859%20571.892%20164.619C571.892%20164.43%20571.678%20164.404%20571.395%20164.404C570.988%20164.404%20570.367%20164.383%20569.489%20164.096C568.563%20163.812%20568.251%20162.929%20567.99%20160.978L565.184%20141.783C565.089%20141.118%20564.901%20140.831%20564.636%20140.831C564.353%20140.831%20564.207%20141.071%20563.971%20141.573L555.597%20159.285L547.201%20141.783C546.798%20140.977%20546.627%20140.831%20546.369%20140.831C546.13%20140.831%20545.938%20141.118%20545.843%20141.642L542.823%20161.832ZM587.592%20156.833C587.447%20156.833%20587.378%20156.905%20587.305%20157.094L585.639%20161.549C585.334%20162.333%20585.163%20163.071%20585.163%20163.452C585.163%20164.001%20585.45%20164.404%20586.401%20164.404H586.855C587.236%20164.404%20587.33%20164.477%20587.33%20164.641C587.33%20164.88%20587.138%20164.953%20586.808%20164.953C585.831%20164.953%20584.499%20164.859%20583.548%20164.859C583.214%20164.859%20581.501%20164.953%20579.907%20164.953C579.504%20164.953%20579.337%20164.88%20579.337%20164.641C579.337%20164.452%20579.457%20164.404%20579.718%20164.404C579.98%20164.404%20580.43%20164.383%20580.669%20164.335C582.096%20164.143%20582.669%20163.093%20583.287%20161.549L591.019%20142.048C591.374%20141.144%20591.563%20140.81%20591.875%20140.81C592.158%20140.81%20592.325%20141.097%20592.634%20141.809C593.371%20143.498%20598.297%20156.164%20600.271%20160.905C601.437%20163.689%20602.34%20164.143%20602.983%20164.288C603.458%20164.383%20603.909%20164.404%20604.264%20164.404C604.504%20164.404%20604.671%20164.43%20604.671%20164.641C604.671%20164.88%20604.388%20164.953%20603.244%20164.953C602.152%20164.953%20599.89%20164.953%20597.44%20164.88C596.892%20164.859%20596.514%20164.859%20596.514%20164.641C596.514%20164.452%20596.63%20164.404%20596.939%20164.357C597.153%20164.288%20597.367%20164.023%20597.226%20163.641L594.754%20157.069C594.681%20156.905%20594.609%20156.833%20594.442%20156.833H587.592ZM593.872%20155.285C594.013%20155.285%20594.06%20155.19%20594.013%20155.096L591.254%20147.429C591.229%20147.31%20591.182%20147.142%20591.113%20147.142C591.019%20147.142%20590.971%20147.31%20590.924%20147.429L588.093%20155.07C588.067%20155.19%20588.093%20155.285%20588.209%20155.285H593.872ZM35.6213%2069.3091L35.2909%2069.0003C32.6265%2066.4533%2029.6027%2063.5467%2023.3228%2063.5467C17.4459%2063.5467%209.57601%2067.5942%209.57601%2078.4506C9.57601%2087.712%2016.7816%2093.6888%2023.635%2093.6888C29.3886%2093.6888%2033.5304%2091.4507%2037.9771%2085.9534L38.0025%2085.9026L38.0243%2085.8553L60.8861%2054.9066L60.8389%2054.9538C68.0444%2045.7615%2074.3969%2038.1206%2081.9364%2038.1206C89.5231%2038.1206%2092.7611%2045.856%2092.7611%2052.2143C92.7611%2053.9038%2092.5469%2055.2881%2091.4978%2056.8323L95.1387%2059.7825C97.1135%2056.974%2097.3748%2054.3834%2097.3748%2052.2143C97.3748%2042.6441%2090.761%2036.333%2081.9618%2036.333C72.611%2036.333%2065.3546%2041.6413%2057.3178%2051.9055L57.2924%2051.9273L57.2706%2051.9527L34.4088%2082.9051L34.4814%2082.8324C30.4122%2087.8573%2027.3195%2088.8819%2023.6568%2088.8819C19.3044%2088.8819%2011.3112%2085.3103%2011.3112%2078.4506C11.3112%2071.0459%2018.5421%2068.3572%2023.3482%2068.3572C27.8204%2068.3572%2029.6535%2070.1194%2032.1982%2072.5501L32.5067%2072.8553L35.6213%2069.3091ZM102.254%2066.2353C104.773%2063.1906%20104.773%2059.4519%20104.773%2058.1911C104.773%2047.5455%2097.2333%2042.9529%2089.4759%2042.9529C80.1033%2042.9529%2073.5148%2048.9298%2065.2384%2059.4773L65.213%2059.4991L65.1912%2059.5246L42.3295%2090.4733L42.4021%2090.3788C36.7393%2097.3585%2031.8642%20100.214%2025.5371%20100.214C13.5218%20100.214%209.71758%2091.6687%209.71758%2087.1197C9.71758%2084.3548%2012.1424%2077.0227%2021.7547%2077.0227C24.8692%2077.0227%2026.5826%2077.9274%2027.7006%2078.7158L30.6736%2074.9771C27.9874%2073.1205%2025.4645%2072.2122%2021.7293%2072.2122C15.8559%2072.2122%207.95703%2076.7393%207.95703%2087.1197C7.95703%2094.5463%2012.2622%20105.025%2025.5117%20105.025C35.2437%20105.025%2041.2841%2099.1897%2045.8978%2093.4781L45.9232%2093.4272L45.9486%2093.38L68.8067%2062.4276L68.7595%2062.4748C76.2301%2052.9519%2082.1034%2044.6679%2089.4287%2044.6679C97.1389%2044.6679%20100.112%2051.3568%20100.112%2058.1185C100.112%2059.5936%2099.9449%2061.4539%2098.7796%2062.929L102.254%2066.2353ZM49.3935%2056.8577C48.348%2055.3099%2048.1339%2053.9292%2048.1339%2052.2361C48.1339%2045.8814%2051.3682%2038.1424%2058.9585%2038.1424C66.498%2038.1424%2072.8251%2045.7615%2080.0343%2054.9756L79.9871%2054.9284L102.871%2085.8808L102.892%2085.928L102.94%2085.9752C107.368%2091.4761%20111.528%2093.736%20117.285%2093.736C124.139%2093.736%20131.344%2087.7592%20131.344%2078.5015C131.344%2067.6414%20123.471%2063.5939%20117.594%2063.5939C111.314%2063.5939%20108.319%2066.5006%20105.629%2069.0475L105.274%2069.3818L108.414%2072.9061L108.748%2072.5719C111.292%2070.1448%20113.1%2068.3826%20117.594%2068.3826C122.4%2068.3826%20129.631%2071.0713%20129.631%2078.476C129.631%2085.3321%20121.638%2088.9037%20117.285%2088.9037C113.597%2088.9037%20110.505%2087.8827%20106.464%2082.8578L106.512%2082.9269L83.6498%2051.9781L83.628%2051.9527L83.6026%2051.9273C75.5622%2041.6885%2068.284%2036.3584%2058.9585%2036.3584C50.1558%2036.3584%2043.5419%2042.6659%2043.5419%2052.2361C43.5419%2054.4052%2043.8033%2056.9994%2045.778%2059.808L49.3935%2056.8577ZM42.0681%2062.998C40.9029%2061.5229%2040.7359%2059.6663%2040.7359%2058.1911C40.7359%2051.4259%2043.7089%2044.7369%2051.4408%2044.7369C58.7916%2044.7369%2064.6431%2052.9991%2072.1136%2062.5475L72.0665%2062.5003L94.9246%2093.4526L94.95%2093.4999L94.9718%2093.5471C99.5891%2099.2623%20105.608%20105.097%20115.358%20105.097C128.607%20105.097%20132.913%2094.6189%20132.913%2087.1888C132.913%2076.8083%20125.017%2072.2848%20119.14%2072.2848C115.499%2072.2848%20112.908%2073.1677%20110.196%2075.0462L113.147%2078.8103C114.287%2078.0219%20116.022%2077.0699%20119.14%2077.0699C128.753%2077.0699%20131.177%2084.4274%20131.177%2087.167C131.177%2091.7159%20127.373%20100.262%20115.358%20100.262C109.031%20100.262%20104.156%2097.4057%2098.4929%2090.4261L98.5655%2090.5205L75.7037%2059.5718L75.6819%2059.5464L75.6565%2059.5246C67.3801%2048.9516%2060.788%2042.9747%2051.4154%2042.9747C43.6617%2042.9747%2036.1222%2047.5455%2036.1222%2058.2129C36.1222%2059.4773%2036.1222%2063.1906%2038.6451%2066.2353L42.0681%2062.998ZM32.5067%20145.166L32.1982%20145.475C29.6535%20147.905%2027.8204%20149.664%2023.3482%20149.664C18.5421%20149.664%2011.3112%20146.975%2011.3112%20139.571C11.3112%20132.714%2019.3044%20129.143%2023.6568%20129.143C27.3449%20129.143%2030.434%20130.142%2034.4814%20135.189L34.4088%20135.12L57.2706%20166.047L57.2924%20166.072L57.3178%20166.094C65.3546%20176.333%2072.6364%20181.666%2081.9618%20181.666C90.761%20181.666%2097.3748%20175.355%2097.3748%20165.785C97.3748%20163.62%2097.1135%20161.025%2095.1387%20158.191L91.4978%20161.142C92.5469%20162.689%2092.7611%20164.07%2092.7611%20165.763C92.7611%20172.118%2089.5231%20179.857%2081.9364%20179.857C74.3969%20179.857%2068.0662%20172.216%2060.8389%20163.024L60.8861%20163.071L38.0243%20132.119L38.0025%20132.071L37.9771%20132.046C33.5304%20126.549%2029.3886%20124.311%2023.635%20124.311C16.7816%20124.311%209.57601%20130.287%209.57601%20139.523C9.57601%20150.38%2017.4459%20154.427%2023.3228%20154.427C29.6027%20154.427%2032.6265%20151.524%2035.2909%20148.977L35.6213%20148.665L32.5067%20145.166ZM98.8486%20154.976C100.039%20156.451%20100.181%20158.311%20100.181%20159.786C100.181%20166.548%2097.2078%20173.215%2089.5014%20173.215C82.1506%20173.215%2076.299%20164.953%2068.8321%20155.405L68.8793%20155.477L46.0176%20124.521L45.9958%20124.474H45.9232C41.3095%20118.762%2035.2655%20112.927%2025.5371%20112.927C12.284%20112.927%207.98244%20123.406%207.98244%20130.832C7.98244%20141.213%2015.8777%20145.74%2021.7547%20145.74C25.4899%20145.74%2028.0092%20144.832%2030.699%20142.975L27.7006%20139.24C26.5608%20140.025%2024.8438%20140.929%2021.7547%20140.929C12.1424%20140.929%209.71758%20133.572%209.71758%20130.832C9.71758%20126.283%2013.5218%20117.738%2025.5371%20117.738C31.8642%20117.738%2036.7393%20120.594%2042.4021%20127.573L42.3295%20127.501L65.1912%20158.428L65.213%20158.453L65.2384%20158.475C73.5148%20169.048%2080.1287%20174.999%2089.4759%20174.999C97.2333%20174.999%20104.773%20170.428%20104.773%20159.786C104.773%20158.522%20104.773%20154.783%20102.254%20151.739L98.8486%20154.976ZM45.7562%20158.191C43.8033%20161%2043.5201%20163.594%2043.5201%20165.763C43.5201%20175.333%2050.134%20181.645%2058.9331%20181.645C68.2586%20181.645%2075.5367%20176.333%2083.5772%20166.072L83.6026%20166.047L83.628%20166.021L106.486%20135.094L106.439%20135.167C110.479%20130.142%20113.576%20129.117%20117.264%20129.117C121.612%20129.117%20129.606%20132.689%20129.606%20139.549C129.606%20146.953%20122.375%20149.642%20117.572%20149.642C113.1%20149.642%20111.267%20147.88%20108.722%20145.453L108.388%20145.119L105.248%20148.643L105.608%20148.977C108.268%20151.524%20111.292%20154.427%20117.572%20154.427C123.445%20154.427%20131.319%20150.38%20131.319%20139.523C131.319%20130.262%20124.113%20124.311%20117.264%20124.311C111.506%20124.311%20107.343%20126.549%20102.918%20132.046L102.871%20132.097L102.845%20132.144L79.9617%20163.093L80.0089%20163.024C72.7997%20172.216%2066.4509%20179.857%2058.9331%20179.857C51.3464%20179.857%2048.1085%20172.118%2048.1085%20165.763C48.1085%20164.07%2048.3263%20162.711%2049.3717%20161.142L45.7562%20158.191ZM38.6451%20151.786C36.1222%20154.831%2036.1222%20158.547%2036.1222%20159.808C36.1222%20170.454%2043.6617%20175.025%2051.4154%20175.025C60.788%20175.025%2067.3801%20169.048%2075.6565%20158.5L75.6819%20158.475L75.7037%20158.453L98.5655%20127.526L98.4929%20127.595C104.156%20120.619%20109.031%20117.763%20115.358%20117.763C127.373%20117.763%20131.177%20126.309%20131.177%20130.858C131.177%20133.619%20128.753%20140.951%20119.14%20140.951C116.022%20140.951%20114.287%20140.025%20113.147%20139.24L110.196%20143C112.908%20144.879%20115.499%20145.762%20119.14%20145.762C125.017%20145.762%20132.913%20141.238%20132.913%20130.858C132.913%20123.428%20128.607%20112.953%20115.358%20112.953C105.629%20112.953%2099.5891%20118.784%2094.9718%20124.499L94.95%20124.521L94.9246%20124.572L72.0665%20155.525L72.1136%20155.452C64.6431%20164.975%2058.7661%20173.262%2051.4408%20173.262C43.7343%20173.262%2040.7359%20166.573%2040.7359%20159.834C40.7359%20158.359%2040.9029%20156.498%2042.0681%20155.023L38.6451%20151.786ZM71.1626%20119.976C71.1626%20125.807%2070.9448%20133.855%2067.8774%20136.406C67.3801%20136.856%2066.9046%20137.143%2066.9046%20137.311C66.9046%20137.594%2067.1877%20137.667%2067.7359%20137.667C68.3784%20137.667%2070.2587%20137.38%2074.1573%20137.38C77.5115%20137.38%2079.6749%20137.667%2080.3174%20137.667C80.7458%20137.667%2081.0798%20137.569%2081.0798%20137.38C81.0798%20137.118%2080.8692%20136.835%2080.3174%20136.548C77.1811%20134.713%2077.1811%20128.238%2077.1811%20119.951V87.8319C77.1811%2084.2857%2077.3917%2080.7142%2079.7693%2079.8095C80.1287%2079.715%2080.2703%2079.4534%2080.2703%2079.0719C80.2703%2078.6214%2079.3664%2078.6214%2079.0832%2078.6214C77.486%2078.6214%2075.8017%2078.9774%2074.1791%2078.9774C71.5909%2078.9774%2070.0663%2078.6214%2069.2097%2078.6214C68.3058%2078.6214%2068.0916%2078.6214%2068.0916%2079.1664C68.0916%2079.5261%2068.3058%2079.6205%2068.5926%2079.8095C71.0428%2081.0012%2071.1844%2084.9288%2071.1844%2087.8319V119.976H71.1626ZM77.9144%20106.453V106.307C80.9164%20106.307%2090.0967%20103.593%2090.0967%2095.1421C90.0967%2088.286%2085.5301%2085.452%2078.3899%2084.3802C78.3209%2085.096%2078.2738%2085.8553%2078.2484%2086.6183C82.2486%2087.999%2084.0781%2090.833%2084.0781%2095.0004C84.0781%20104.716%2076.9633%20105.475%2071.3259%20105.475H62.1457V85.6446H70.0409C69.9937%2085.0233%2069.9248%2084.3802%2069.805%2083.7625C69.1153%2083.7625%2068.4038%2083.7371%2067.6851%2083.7371H55.3648C54.392%2083.7371%2054.1052%2084.0459%2054.1052%2084.1913C54.1052%2084.5728%2054.3448%2084.7145%2054.7949%2084.9506C57.1036%2086.3785%2057.1762%2088.8819%2057.1762%2094.143V118.286C57.1762%20127.642%2055.677%20130.738%2054.1742%20131.403C53.3211%20131.784%2052.8928%20131.999%2052.8928%20132.238C52.8928%20132.38%2052.94%20132.547%2053.2957%20132.547C53.8693%20132.547%2055.1507%20132.308%2058.1019%20132.308H66.2367C67.1623%20132.308%2068.0662%20132.333%2068.9265%20132.38C69.0899%20131.81%2069.2351%20131.192%2069.3766%20130.545C68.4256%20130.498%2067.4491%20130.429%2066.4763%20130.429C62.3127%20130.429%2062.1457%20127.955%2062.1457%20117.382V107.357H69.3077C76.535%20107.357%2087.4577%20107.357%2087.4577%20119.355C87.4577%20126.167%2083.8857%20129.499%2078.6077%20130.262C78.7021%20131.021%2078.8183%20131.715%2078.9635%20132.333C79.6532%20132.286%2080.3429%20132.238%2081.0326%20132.191C86.0529%20131.879%2093.6178%20127.428%2093.6178%20119.071C93.6178%20109.094%2083.4102%20107.118%2077.9144%20106.453Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22726%22%20height%3D%22218%22%20viewBox%3D%220%200%20726%20218%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M165.956%2064.5495C165.956%2059.1431%20165.906%2056.5961%20163.528%2055.1428C163.052%2054.9066%20162.816%2054.7613%20162.816%2054.3834C162.816%2054.2126%20163.1%2053.9038%20164.123%2053.9038H176.708C189.958%2053.9038%20199.639%2055.4516%20199.639%2065.5486C199.639%2074.1887%20190.245%2076.95%20187.174%2076.95V77.1208C192.786%2077.8075%20203.255%2079.8095%20203.255%2089.9973C203.255%2098.572%20195.523%20103.117%20190.361%20103.43C187.461%20103.666%20184.582%20103.811%20182.226%20103.811C180.32%20103.811%20177.848%20103.571%20175.256%20103.571H166.929C163.909%20103.571%20162.624%20103.811%20162.029%20103.811C161.673%20103.811%20161.626%20103.666%20161.626%20103.499C161.626%20103.263%20162.029%20103.048%20162.933%20102.667C164.479%20101.976%20166.004%2098.8082%20166.004%2089.238V64.5495H165.956ZM171.046%2076.118H180.444C186.223%2076.118%20193.501%2075.3586%20193.501%2065.4033C193.501%2059.1649%20189.482%2055.8331%20180.371%2055.8331H171.046V76.118ZM171.046%2088.3115C171.046%2099.0952%20171.213%20101.642%20175.471%20101.642C177.231%20101.642%20179.014%20101.882%20180.796%20101.882C182.462%20101.882%20183.987%20101.809%20186.84%20101.57C192.811%20101.119%20196.949%2097.7145%20196.949%2090.3098C196.949%2078.0219%20185.769%2078.0473%20178.396%2078.0473H171.046V88.3115ZM219.575%2079.5006L215.789%2088.8347C214.602%2091.6905%20213.197%2095.6908%20213.197%2098.7137C213.197%20100.025%20213.793%20101.261%20214.671%20102.093C215.386%20102.787%20216.337%20102.954%20216.337%20103.404C216.337%20103.644%20215.981%20103.717%20215.433%20103.717C214.032%20103.717%20212.675%20103.546%20211.295%20103.546C209.869%20103.546%20208.395%20103.717%20206.99%20103.717C206.467%20103.717%20205.915%20103.717%20205.915%20103.335C205.915%20102.859%20206.798%20102.333%20207.153%20101.857C209.582%2098.8554%20211.818%2093.6888%20213.244%2090.4515L228.777%2053.0936C228.897%2052.7847%20229.017%2052.643%20229.18%2052.643H229.304C229.467%2052.643%20229.728%2052.9519%20229.728%2053.0936L247.167%2096.9297C247.998%2099.0007%20249.403%20101.166%20250.902%20102.474C251.425%20102.928%20251.78%20103.165%20251.78%20103.335C251.78%20103.499%20251.712%20103.717%20251.189%20103.717C249.472%20103.717%20247.454%20103.546%20245.62%20103.546C243.791%20103.546%20241.315%20103.717%20239.649%20103.717C239.362%20103.717%20239.174%20103.644%20239.174%20103.477C239.174%20103.023%20239.696%20102.928%20240.292%20102.547C240.814%20102.165%20241.362%20101.475%20241.362%2099.7601C241.362%2097.6673%20240.056%2093.667%20238.531%2089.6667L234.676%2079.4752L219.575%2079.5006ZM227.449%2060.9052L220.287%2077.5713H234.106L227.449%2060.9052ZM262.674%2089.6195C262.674%2096.4756%20262.035%2099.5712%20260.129%20101.737C259.251%20102.739%20257.777%20103.048%20257.777%20103.524C257.777%20103.764%20258.013%20103.833%20258.442%20103.833C259.157%20103.833%20262.391%20103.593%20263.625%20103.593C265.745%20103.593%20267.647%20103.833%20268.362%20103.833C268.645%20103.833%20268.838%20103.764%20268.838%20103.524C268.838%20103.143%20268.435%20103.143%20267.6%20102.452C266.315%20101.453%20264.576%2099.1424%20264.576%2091.2617V59.8334C273.782%2071.4746%20284.44%2087.0725%20291.649%2097.8817C295.311%20103.357%20296.027%20105.145%20296.618%20105.145H296.738C297.145%20105.145%20297.333%20101.904%20297.333%2097.809V66.5478C297.333%2058.2129%20299.047%2056.1201%20300.524%2055.3571C301.188%2054.9756%20301.475%2054.7395%20301.475%2054.5251C301.475%2054.2853%20301.305%2053.9038%20300.473%2053.9038C299.239%2053.9038%20297.642%2054.2126%20296.408%2054.2126C295.239%2054.2126%20292.672%2053.9038%20291.79%2053.9038C291.148%2053.9038%20290.792%2054.2126%20290.792%2054.5941C290.792%2054.9756%20291.387%2054.9756%20292.15%2055.5243C293.743%2056.7632%20295.457%2060.0005%20295.457%2066.5478V92.3081L275.782%2064.9273C273.19%2061.5483%20270.693%2057.9768%20268.576%2054.0455C267.335%2054.1182%20265.625%2054.1872%20264.152%2054.1872C262.721%2054.1872%20260.365%2053.882%20259.774%2053.882C259.131%2053.882%20259.011%2054.1182%20259.011%2054.4306C259.011%2054.5723%20259.251%2054.8121%20259.538%2054.9756C262.246%2056.2146%20262.674%2059.0704%20262.721%2063.1434V89.6195H262.674ZM354.092%2059.5246C348.622%2054.9756%20341.888%2052.643%20334.229%2052.6648C319.694%2052.6648%20306.659%2062.2387%20306.659%2079.5951C306.659%2096.2612%20320.834%20105.145%20334.443%20105.145C341.532%20105.145%20348.691%20103.048%20354.448%2098.4993L353.308%2093.7142C352.974%2092.3336%20352.807%2091.8576%20352.618%2091.8576C352.259%2091.8576%20352.117%2092.4026%20351.831%2093.0966C349.384%2098.4993%20343.413%20103.19%20334.087%20103.19C320.885%20103.19%20314.151%2091.8576%20314.151%2078.4288C314.151%2064.6912%20321.382%2054.5941%20334.156%2054.5941C341.318%2054.5941%20348.193%2057.2138%20350.999%2066.1663C351.068%2066.5478%20351.355%2066.8566%20351.475%2066.8566C351.831%2066.8566%20352.164%2065.7848%20352.738%2063.9972L354.092%2059.5246ZM373.24%2079.5006L369.458%2088.8347C368.293%2091.6905%20366.866%2095.6908%20366.866%2098.7137C366.866%20100.025%20367.461%20101.261%20368.34%20102.093C369.055%20102.787%20369.981%20102.954%20369.981%20103.404C369.981%20103.644%20369.625%20103.717%20369.102%20103.717C367.675%20103.717%20366.318%20103.571%20364.964%20103.571C363.559%20103.571%20362.085%20103.717%20360.659%20103.717C360.136%20103.717%20359.588%20103.717%20359.588%20103.335C359.588%20102.859%20360.466%20102.333%20360.822%20101.857C363.251%2098.8554%20365.508%2093.6888%20366.913%2090.4515L382.446%2053.0936C382.566%2052.7847%20382.682%2052.643%20382.853%2052.643H382.972C383.136%2052.643%20383.375%2052.9519%20383.375%2053.0936L400.81%2096.9297C401.645%2099.0007%20403.072%20101.166%20404.545%20102.474C405.068%20102.928%20405.424%20103.165%20405.424%20103.335C405.424%20103.477%20405.377%20103.717%20404.832%20103.717C403.141%20103.717%20401.122%20103.546%20399.289%20103.546C397.456%20103.546%20394.984%20103.717%20393.318%20103.717C393.006%20103.717%20392.842%20103.644%20392.842%20103.477C392.842%20103.023%20393.365%20102.928%20393.982%20102.547C394.508%20102.165%20395.031%20101.453%20395.031%2099.7601C395.031%2097.6673%20393.721%2093.667%20392.2%2089.6667L388.345%2079.4752H373.24V79.5006ZM381.092%2060.9052L373.955%2077.5713H387.775L381.092%2060.9052ZM431.807%2064.524C431.807%2057.5735%20430.95%2056.2618%20429.284%2055.3353C428.881%2055.0229%20428.547%2054.8812%20428.547%2054.4997C428.547%2054.1872%20428.761%2053.882%20430.543%2053.882H450.955C467.439%2053.882%20475.693%2065.4505%20475.693%2077.8802C475.693%2091.9993%20467.058%20102.333%20453.761%20103.571C452.095%20103.717%20450.385%20103.811%20448.646%20103.811C446.911%20103.811%20443.938%20103.571%20440.867%20103.571H433.28C430.427%20103.571%20428.62%20103.88%20427.832%20103.88C427.574%20103.88%20427.356%20103.811%20427.356%20103.644C427.356%20103.335%20427.621%20103.19%20428.097%20102.881C431.614%20100.57%20431.807%2098.7864%20431.807%2090.764V64.524ZM436.874%2089.3797C436.874%2098.9499%20438.134%20101.188%20440.965%20101.5C443.699%20101.809%20446.221%20101.882%20447.815%20101.882C449.481%20101.882%20451.122%20101.809%20452.788%20101.664C462.255%20100.737%20468.56%2094.9532%20468.56%2077.8329C468.56%2061.6174%20462.114%2055.8331%20448.672%2055.8331H436.874V89.3797ZM481.069%2060.7381C481.069%2063.474%20482.975%2064.2842%20484.83%2064.2842C484.83%2067.5942%20483.854%2069.6906%20482.354%2072.2594C482.282%2072.3321%20482.235%2072.5719%20482.235%2072.739C482.235%2072.9061%20482.427%2073.0478%20482.547%2073.0478C483.781%2073.0478%20487.469%2067.002%20487.469%2062.166C487.469%2058.7143%20486.304%2056.4508%20484.257%2056.4508C482.071%2056.4762%20481.069%2058.4019%20481.069%2060.7381ZM502.574%2088.8347C502.574%2093.7615%20502.385%20100.57%20499.793%20102.714C499.386%20103.096%20498.958%20103.335%20498.958%20103.477C498.958%20103.717%20499.198%20103.786%20499.673%20103.786C500.196%20103.786%20501.789%20103.546%20505.096%20103.546C507.95%20103.546%20509.757%20103.786%20510.305%20103.786C510.661%20103.786%20510.948%20103.717%20510.948%20103.546C510.948%20103.31%20510.781%20103.096%20510.305%20102.859C507.641%20101.308%20507.641%2095.8325%20507.641%2088.8092V61.6646C507.641%2058.6671%20507.808%2055.6405%20509.83%2054.8812C510.138%2054.8121%20510.258%2054.5723%20510.258%2054.2599C510.258%2053.882%20509.496%2053.882%20509.256%2053.882C507.902%2053.882%20506.476%2054.1872%20505.118%2054.1872C502.933%2054.1872%20501.648%2053.882%20500.933%2053.882C500.174%2053.882%20500.004%2053.882%20500.004%2054.3325C500.004%2054.6414%20500.174%2054.714%20500.41%2054.8812C502.479%2055.8803%20502.599%2059.1903%20502.599%2061.6646V88.8347H502.574ZM518.702%2054.1872L516.8%2062.7619C516.727%2063.0707%20516.68%2063.3105%20516.68%2063.5212C516.68%2063.6666%20516.68%2063.8337%20516.8%2063.8337C517.039%2063.8337%20517.275%2063.4522%20517.562%2062.9762C520.154%2057.8787%20526.245%2056.0947%20530.692%2056.0947C532.761%2056.0947%20534.238%2056.3345%20534.238%2059.2593V87.0471C534.238%2095.0695%20533.472%20101.929%20531.094%20102.714C530.263%20102.954%20529.621%20102.954%20529.621%20103.335C529.621%20103.571%20529.668%20103.786%20530.143%20103.786C530.739%20103.786%20532.311%20103.546%20536.997%20103.546C541.135%20103.546%20542.54%20103.786%20542.968%20103.786C543.371%20103.786%20543.607%20103.717%20543.607%20103.477C543.607%20103.335%20543.037%20103.001%20542.133%20102.641C540.064%20101.711%20539.302%2098.096%20539.302%2088.4532V59.2593C539.302%2056.3345%20540.779%2056.0947%20542.845%2056.0947C547.295%2056.0947%20553.361%2057.8787%20555.978%2062.9508C556.261%2063.4268%20556.501%2063.8083%20556.737%2063.8083C556.857%2063.8083%20556.857%2063.6448%20556.857%2063.4994C556.857%2063.2633%20556.809%2063.0235%20556.737%2062.7401L554.835%2054.1654H518.702V54.1872ZM564.708%2079.5006L560.926%2088.8347C559.761%2091.6905%20558.334%2095.6908%20558.334%2098.7137C558.334%20100.025%20558.929%20101.261%20559.808%20102.093C560.519%20102.787%20561.47%20102.954%20561.47%20103.404C561.47%20103.644%20561.118%20103.717%20560.592%20103.717C559.165%20103.717%20557.808%20103.571%20556.454%20103.571C555.027%20103.571%20553.55%20103.717%20552.148%20103.717C551.622%20103.717%20551.078%20103.717%20551.078%20103.335C551.078%20102.859%20551.956%20102.333%20552.315%20101.857C554.74%2098.8554%20556.976%2093.6888%20558.407%2090.4515L573.936%2053.0936C574.03%2052.7847%20574.175%2052.643%20574.342%2052.643H574.458C574.629%2052.643%20574.865%2052.9519%20574.865%2053.0936L592.304%2096.9297C593.135%2099.0007%20594.536%20101.166%20596.013%20102.474C596.536%20102.928%20596.892%20103.165%20596.892%20103.335C596.892%20103.477%20596.845%20103.717%20596.297%20103.717C594.609%20103.717%20592.587%20103.546%20590.754%20103.546C588.924%20103.546%20586.448%20103.717%20584.786%20103.717C584.477%20103.717%20584.307%20103.644%20584.307%20103.477C584.307%20103.023%20584.833%20102.928%20585.428%20102.547C585.973%20102.165%20586.496%20101.453%20586.496%2099.7601C586.496%2097.6673%20585.189%2093.667%20583.668%2089.6667L579.813%2079.4752H564.708V79.5006ZM572.556%2060.9052L565.398%2077.5713H579.217L572.556%2060.9052ZM645.443%20103.546L648.108%2094.6662C648.18%2094.3573%20648.249%2093.8814%20648.249%2093.736C648.249%2093.4272%20648.18%2093.191%20647.915%2093.191C647.487%2093.191%20647.156%2093.736%20646.801%2094.3573C642.016%20100.759%20630.241%20101.617%20623.583%20101.617C616.755%20101.617%20614.78%20100.759%20614.78%2083.4755V61.6428C614.853%2058.6417%20615.423%2055.6914%20618.204%2054.8594C618.49%2054.6886%20618.777%2054.6196%20618.777%2054.3107C618.777%2053.8348%20618.276%2053.8348%20617.993%2053.8348C616.519%2053.8348%20615.496%2054.14%20612.497%2054.14C609.88%2054.14%20608.359%2053.8348%20607.502%2053.8348C606.598%2053.8348%20606.243%2054.0709%20606.243%2054.3834C606.243%2054.5251%20606.384%2054.7613%20606.791%2054.9284C608.74%2055.5461%20609.666%2057.0939%20609.666%2062.3331V89.4269C609.666%2098.6192%20608.693%20101.548%20605.168%20102.689C604.598%20102.859%20604.195%20103.001%20604.195%20103.31C604.195%20103.691%20604.41%20103.786%20604.958%20103.786C605.455%20103.786%20606.838%20103.546%20609.786%20103.546H645.443ZM657.03%2088.8347C657.03%2093.7615%20656.838%20100.57%20654.246%20102.714C653.839%20103.096%20653.411%20103.335%20653.411%20103.477C653.411%20103.717%20653.651%20103.786%20654.126%20103.786C654.649%20103.786%20656.242%20103.546%20659.571%20103.546C662.402%20103.546%20664.236%20103.786%20664.758%20103.786C665.114%20103.786%20665.401%20103.717%20665.401%20103.546C665.401%20103.31%20665.234%20103.096%20664.758%20102.859C662.094%20101.333%20662.094%2095.8325%20662.094%2088.8092V61.6646C662.094%2058.6417%20662.261%2055.6405%20664.283%2054.8812C664.57%2054.7867%20664.686%2054.5723%20664.686%2054.2599C664.686%2053.882%20663.927%2053.882%20663.687%2053.882C662.333%2053.882%20660.907%2054.1872%20659.549%2054.1872C657.36%2054.1872%20656.054%2053.882%20655.338%2053.882C654.576%2053.882%20654.409%2053.882%20654.409%2054.358C654.409%2054.6668%20654.576%2054.7395%20654.816%2054.9066C656.885%2055.9058%20657.005%2059.2121%20657.005%2061.69V88.8347H657.03ZM685.834%2079.4752L682.052%2088.8092C680.865%2091.6687%20679.46%2095.6653%20679.46%2098.6919C679.46%2099.9999%20680.055%20101.235%20680.934%20102.071C681.649%20102.761%20682.578%20102.928%20682.578%20103.383C682.578%20103.619%20682.219%20103.691%20681.696%20103.691C680.269%20103.691%20678.912%20103.524%20677.558%20103.524C676.131%20103.524%20674.654%20103.691%20673.252%20103.691C672.726%20103.691%20672.178%20103.691%20672.178%20103.31C672.178%20102.859%20673.06%20102.311%20673.419%20101.835C675.844%2098.8336%20678.08%2093.667%20679.507%2090.4261L695.04%2053.0718C695.16%2052.7593%20695.279%2052.6176%20695.443%2052.6176H695.563C695.755%2052.6176%20695.991%2052.9301%20695.991%2053.0718L713.429%2096.9043C714.261%2098.9753%20715.665%20101.141%20717.165%20102.452C717.687%20102.907%20718.043%20103.143%20718.043%20103.31C718.043%20103.477%20717.974%20103.691%20717.448%20103.691C715.738%20103.691%20713.738%20103.546%20711.908%20103.546C710.075%20103.546%20707.6%20103.691%20705.937%20103.691C705.65%20103.691%20705.461%20103.619%20705.461%20103.452C705.461%20102.976%20705.984%20102.907%20706.576%20102.521C707.099%20102.14%20707.647%20101.428%20707.647%2099.7383C707.647%2097.6419%20706.365%2093.6416%20704.815%2089.6413L700.964%2079.4534L685.834%2079.4752ZM693.708%2060.9052L686.549%2077.5713H700.369L693.708%2060.9052ZM273.354%20155.928C273.354%20158.787%20273.354%20161.236%20273.212%20162.548C273.096%20163.452%20272.925%20164.117%20272.334%20164.263C272.047%20164.335%20271.691%20164.383%20271.215%20164.383C270.86%20164.383%20270.718%20164.477%20270.718%20164.619C270.718%20164.833%20270.929%20164.928%20271.335%20164.928C271.952%20164.928%20272.762%20164.859%20273.452%20164.859C274.188%20164.833%20274.878%20164.833%20275.212%20164.833C276.138%20164.833%20277.089%20164.859%20278.421%20164.928C279.731%20164.953%20281.445%20165.022%20283.754%20165.022C284.915%20165.022%20285.202%20165.022%20285.416%20164.215C285.558%20163.594%20285.819%20161.476%20285.819%20160.76C285.819%20160.451%20285.819%20160.215%20285.583%20160.215C285.369%20160.215%20285.296%20160.331%20285.249%20160.691C285.035%20161.952%20284.657%20162.617%20283.87%20162.998C283.086%20163.383%20281.775%20163.383%20280.969%20163.383C277.829%20163.383%20277.328%20162.929%20277.281%20160.76C277.259%20159.881%20277.281%20157%20277.281%20155.953V153.501C277.281%20153.308%20277.307%20153.192%20277.47%20153.192C278.211%20153.192%20281.252%20153.214%20281.848%20153.286C282.991%20153.403%20283.42%20153.879%20283.561%20154.5C283.656%20154.903%20283.656%20155.31%20283.681%20155.619C283.681%20155.786%20283.728%20155.906%20283.964%20155.906C284.251%20155.906%20284.251%20155.572%20284.251%20155.31C284.251%20155.096%20284.345%20153.857%20284.371%20153.239C284.487%20151.644%20284.607%20151.168%20284.607%20150.976C284.607%20150.787%20284.512%20150.739%20284.392%20150.739C284.229%20150.739%20284.106%20150.881%20283.895%20151.143C283.608%20151.452%20283.155%20151.546%20282.421%20151.593C281.706%20151.666%20278.185%20151.666%20277.495%20151.666C277.307%20151.666%20277.281%20151.546%20277.281%20151.335V143.476C277.281%20143.262%20277.354%20143.164%20277.495%20143.164C278.113%20143.164%20281.347%20143.237%20281.873%20143.287C283.42%20143.476%20283.728%20143.832%20283.942%20144.403C284.106%20144.784%20284.131%20145.311%20284.131%20145.522C284.131%20145.809%20284.204%20145.951%20284.418%20145.951C284.632%20145.951%20284.705%20145.762%20284.726%20145.62C284.799%20145.239%20284.846%20143.88%20284.868%20143.571C284.962%20142.143%20285.133%20141.761%20285.133%20141.547C285.133%20141.38%20285.108%20141.26%20284.941%20141.26C284.799%20141.26%20284.607%20141.358%20284.44%20141.38C284.204%20141.453%20283.703%20141.5%20283.107%20141.573C282.516%20141.594%20276.403%20141.594%20275.426%20141.594C274.998%20141.594%20274.283%20141.573%20273.499%20141.525C272.736%20141.525%20271.833%20141.5%20271.001%20141.5C270.548%20141.5%20270.337%20141.572%20270.337%20141.783C270.337%20142.001%20270.526%20142.07%20270.86%20142.07C271.288%20142.07%20271.811%20142.096%20272.047%20142.165C273.07%20142.383%20273.306%20142.881%20273.379%20143.927C273.452%20144.926%20273.452%20145.787%20273.452%20150.5V155.928H273.354ZM300.713%20155.001C300.713%20159.499%20301.878%20161.785%20303.446%20163.213C305.708%20165.262%20308.655%20165.356%20310.274%20165.356C312.274%20165.356%20314.485%20165.022%20316.674%20163.118C319.244%20160.88%20319.6%20157.214%20319.6%20153.762V150.452C319.6%20145.74%20319.6%20144.857%20319.672%20143.88C319.741%20142.786%20319.981%20142.259%20320.812%20142.118C321.193%20142.048%20321.382%20142.023%20321.716%20142.023C322.097%20142.023%20322.264%20141.954%20322.264%20141.736C322.264%20141.525%20322.05%20141.453%20321.622%20141.453C320.431%20141.453%20318.482%20141.547%20318.101%20141.547C318.075%20141.547%20316.126%20141.453%20314.558%20141.453C314.129%20141.453%20313.915%20141.525%20313.915%20141.736C313.915%20141.954%20314.104%20142.023%20314.438%20142.023C314.768%20142.023%20315.295%20142.048%20315.556%20142.118C316.58%20142.332%20316.819%20142.833%20316.888%20143.88C316.961%20144.879%20316.961%20145.74%20316.961%20150.452V154.333C316.961%20157.523%20316.866%20160.331%20315.175%20162.025C313.937%20163.26%20312.274%20163.714%20310.942%20163.714C309.893%20163.714%20308.492%20163.594%20307.087%20162.453C305.588%20161.214%20304.684%20159.31%20304.684%20154.809V150.452C304.684%20145.74%20304.684%20144.857%20304.757%20143.88C304.829%20142.786%20305.065%20142.259%20305.897%20142.118C306.278%20142.048%20306.445%20142.023%20306.8%20142.023C307.113%20142.023%20307.301%20141.954%20307.301%20141.736C307.301%20141.525%20307.087%20141.453%20306.637%20141.453C305.515%20141.453%20303.588%20141.547%20302.855%20141.547C301.925%20141.547%20299.976%20141.453%20298.357%20141.453C297.903%20141.453%20297.693%20141.525%20297.693%20141.736C297.693%20141.954%20297.881%20142.023%20298.215%20142.023C298.644%20142.023%20299.167%20142.048%20299.402%20142.118C300.426%20142.332%20300.666%20142.833%20300.735%20143.88C300.807%20144.879%20300.807%20145.74%20300.807%20150.452V155.001H300.713ZM337.488%20150.474C337.488%20145.762%20337.488%20144.879%20337.416%20143.905C337.347%20142.859%20337.107%20142.357%20336.084%20142.143C335.848%20142.07%20335.321%20142.048%20334.871%20142.048C334.541%20142.048%20334.345%20141.976%20334.345%20141.761C334.345%20141.547%20334.563%20141.478%20335.016%20141.478C336.654%20141.478%20338.581%20141.573%20339.224%20141.573C340.269%20141.573%20342.603%20141.478%20343.554%20141.478C345.503%20141.478%20347.551%20141.667%20349.213%20142.811C350.07%20143.404%20351.308%20144.973%20351.308%20147.073C351.308%20149.359%20350.357%20151.477%20347.242%20154.024C349.976%20157.501%20352.092%20160.262%20353.925%20162.188C355.66%20164.001%20356.923%20164.215%20357.374%20164.31C357.708%20164.383%20357.991%20164.404%20358.23%20164.404C358.466%20164.404%20358.611%20164.499%20358.611%20164.641C358.611%20164.88%20358.397%20164.953%20358.016%20164.953H355.09C353.377%20164.953%20352.593%20164.786%20351.809%20164.357C350.477%20163.641%20349.311%20162.188%20347.598%20159.786C346.36%20158.071%20344.955%20155.975%20344.552%20155.499C344.411%20155.31%20344.218%20155.285%20344.004%20155.285L341.318%20155.212C341.176%20155.212%20341.082%20155.285%20341.082%20155.452V155.881C341.082%20158.762%20341.082%20161.214%20341.224%20162.522C341.318%20163.431%20341.51%20164.096%20342.414%20164.237C342.89%20164.31%20343.554%20164.357%20343.91%20164.357C344.171%20164.357%20344.291%20164.452%20344.291%20164.593C344.291%20164.811%20344.077%20164.906%20343.67%20164.906C341.888%20164.906%20339.605%20164.811%20339.155%20164.811C338.581%20164.811%20336.632%20164.906%20335.394%20164.906C334.991%20164.906%20334.777%20164.811%20334.777%20164.593C334.777%20164.452%20334.897%20164.357%20335.274%20164.357C335.728%20164.357%20336.109%20164.288%20336.396%20164.237C337.013%20164.117%20337.154%20163.431%20337.274%20162.522C337.441%20161.214%20337.441%20158.762%20337.441%20155.906V150.474H337.488ZM341.104%20152.927C341.104%20153.261%20341.176%20153.381%20341.387%20153.475C342.033%20153.69%20342.959%20153.784%20343.721%20153.784C344.955%20153.784%20345.362%20153.668%20345.906%20153.261C346.836%20152.571%20347.718%20151.143%20347.718%20148.618C347.718%20144.214%20344.814%20142.928%20343.006%20142.928C342.244%20142.928%20341.674%20142.953%20341.365%20143.048C341.151%20143.117%20341.082%20143.237%20341.082%20143.476V152.927H341.104ZM366.438%20153.192C366.438%20147.88%20369.912%20141.024%20379.139%20141.024C386.798%20141.024%20391.579%20145.522%20391.579%20152.643C391.579%20159.761%20386.657%20165.382%20378.83%20165.382C370.006%20165.356%20366.438%20158.693%20366.438%20153.192ZM387.252%20153.784C387.252%20146.834%20383.277%20142.524%20378.239%20142.524C374.692%20142.524%20370.67%20144.523%20370.67%20152.24C370.67%20158.693%20374.217%20163.812%20380.115%20163.812C382.279%20163.812%20387.252%20162.762%20387.252%20153.784ZM410.35%20165.356C411.991%20165.356%20413.704%20165.069%20415.25%20164.096C417.461%20162.642%20418.151%20160.499%20418.151%20158.693C418.151%20155.735%20416.818%20153.595%20413.109%20150.787L412.252%20150.14C409.707%20148.189%20408.996%20147.095%20408.996%20145.667C408.996%20143.811%20410.375%20142.477%20412.658%20142.477C414.655%20142.477%20415.559%20143.404%20416.013%20144C416.651%20144.81%20416.797%20145.762%20416.797%20146.049C416.797%20146.405%20416.891%20146.619%20417.105%20146.619C417.345%20146.619%20417.439%20146.379%20417.439%20145.693C417.439%20143.262%20417.555%20142.357%20417.555%20141.976C417.555%20141.761%20417.392%20141.667%20417.127%20141.594C416.321%20141.38%20415.036%20141.071%20413.036%20141.071C408.756%20141.071%20405.925%20143.524%20405.925%20146.953C405.925%20149.475%20407.09%20151.644%20410.491%20154.307L411.918%20155.43C414.466%20157.454%20414.942%20158.882%20414.942%20160.404C414.942%20162.046%20413.584%20163.954%20410.825%20163.954C408.923%20163.954%20407.09%20163.118%20406.422%20160.807C406.281%20160.284%20406.139%20159.645%20406.139%20159.238C406.139%20158.998%20406.117%20158.715%20405.83%20158.715C405.591%20158.715%20405.496%20159.045%20405.471%20159.525C405.449%20160.023%20405.329%20161.879%20405.329%20163.594C405.329%20164.288%20405.424%20164.43%20405.899%20164.641C407.163%20165.142%20408.567%20165.356%20410.35%20165.356ZM434.685%20155.928C434.685%20158.929%20434.685%20161.381%20434.544%20162.689C434.446%20163.594%20434.257%20164.117%20433.64%20164.237C433.353%20164.31%20432.994%20164.357%20432.518%20164.357C432.162%20164.357%20432.021%20164.452%20432.021%20164.593C432.021%20164.811%20432.235%20164.906%20432.638%20164.906C433.876%20164.906%20435.8%20164.811%20436.515%20164.811C437.35%20164.811%20439.277%20164.906%20441.321%20164.906C441.655%20164.906%20441.916%20164.811%20441.916%20164.593C441.916%20164.452%20441.749%20164.357%20441.415%20164.357C440.965%20164.357%20440.275%20164.31%20439.847%20164.237C438.918%20164.117%20438.704%20163.547%20438.609%20162.711C438.49%20161.381%20438.49%20158.929%20438.49%20155.906V150.452C438.49%20145.74%20438.49%20144.857%20438.537%20143.88C438.609%20142.786%20438.849%20142.259%20439.68%20142.118C440.061%20142.048%20440.297%20142.023%20440.609%20142.023C440.914%20142.023%20441.107%20141.954%20441.107%20141.714C441.107%20141.525%20440.845%20141.478%20440.464%20141.478C439.299%20141.478%20437.47%20141.573%20436.704%20141.573C435.825%20141.573%20433.876%20141.478%20432.711%20141.478C432.21%20141.478%20431.974%20141.547%20431.974%20141.714C431.974%20141.954%20432.162%20142.023%20432.471%20142.023C432.83%20142.023%20433.233%20142.048%20433.567%20142.143C434.257%20142.31%20434.565%20142.833%20434.613%20143.88C434.685%20144.879%20434.685%20145.74%20434.685%20150.452V155.928ZM460.614%20165.356C462.255%20165.356%20463.969%20165.069%20465.511%20164.096C467.726%20162.642%20468.415%20160.499%20468.415%20158.693C468.415%20155.735%20467.083%20153.595%20463.373%20150.787L462.517%20150.14C459.968%20148.189%20459.257%20147.095%20459.257%20145.667C459.257%20143.811%20460.636%20142.477%20462.919%20142.477C464.92%20142.477%20465.823%20143.404%20466.274%20144C466.916%20144.81%20467.083%20145.762%20467.083%20146.049C467.083%20146.405%20467.177%20146.619%20467.392%20146.619C467.657%20146.619%20467.726%20146.379%20467.726%20145.693C467.726%20143.262%20467.845%20142.357%20467.845%20141.976C467.845%20141.761%20467.678%20141.667%20467.417%20141.594C466.633%20141.38%20465.322%20141.071%20463.326%20141.071C459.043%20141.071%20456.211%20143.524%20456.211%20146.953C456.211%20149.475%20457.38%20151.644%20460.756%20154.307L462.183%20155.43C464.727%20157.454%20465.203%20158.882%20465.203%20160.404C465.203%20162.046%20463.849%20163.954%20461.09%20163.954C459.188%20163.954%20457.355%20163.118%20456.687%20160.807C456.545%20160.284%20456.404%20159.645%20456.404%20159.238C456.404%20158.998%20456.378%20158.715%20456.095%20158.715C455.855%20158.715%20455.761%20159.045%20455.736%20159.525C455.714%20160.023%20455.594%20161.879%20455.594%20163.594C455.594%20164.288%20455.688%20164.43%20456.189%20164.641C457.449%20165.142%20458.828%20165.356%20460.614%20165.356ZM489.063%20155.928C489.063%20158.787%20489.063%20161.236%20488.921%20162.548C488.823%20163.452%20488.634%20164.117%20488.017%20164.263C487.756%20164.335%20487.375%20164.383%20486.921%20164.383C486.565%20164.383%20486.424%20164.477%20486.424%20164.619C486.424%20164.833%20486.638%20164.928%20487.041%20164.928C488.279%20164.928%20490.203%20164.833%20490.918%20164.833C491.774%20164.833%20493.727%20164.928%20495.746%20164.928C496.079%20164.928%20496.315%20164.833%20496.315%20164.619C496.315%20164.477%20496.174%20164.383%20495.818%20164.383C495.343%20164.383%20494.678%20164.31%20494.25%20164.263C493.321%20164.143%20493.132%20163.452%20493.059%20162.595C492.892%20161.262%20492.892%20158.809%20492.892%20155.953V143.215L496.769%20143.309C499.506%20143.356%20500.337%20144.239%20500.41%20145.046L500.432%20145.38C500.457%20145.834%20500.526%20145.998%20500.766%20145.998C500.955%20145.998%20501.005%20145.809%20501.053%20145.5C501.053%20144.69%20501.147%20142.546%20501.147%20141.907C501.147%20141.431%20501.125%20141.26%20500.907%20141.26C500.791%20141.26%20500.526%20141.307%20500.076%20141.405C499.626%20141.478%20498.936%20141.573%20497.96%20141.573H485.781C484.758%20141.573%20483.592%20141.5%20482.71%20141.405C481.952%20141.333%20481.643%20141.049%20481.378%20141.049C481.189%20141.049%20481.095%20141.238%20480.997%20141.642C480.928%20141.881%20480.358%20144.715%20480.358%20145.217C480.358%20145.547%20480.427%20145.715%20480.645%20145.715C480.833%20145.715%20480.928%20145.595%20480.975%20145.358C481.048%20145.119%20481.189%20144.737%20481.498%20144.261C481.973%20143.571%20482.71%20143.429%20484.496%20143.356L489.088%20143.237V155.928H489.063ZM516.041%20155.928C516.041%20158.787%20516.041%20161.236%20515.896%20162.548C515.776%20163.452%20515.609%20164.117%20514.992%20164.263C514.705%20164.335%20514.349%20164.383%20513.874%20164.383C513.493%20164.383%20513.373%20164.477%20513.373%20164.619C513.373%20164.833%20513.587%20164.928%20513.99%20164.928C514.611%20164.928%20515.42%20164.859%20516.11%20164.859C516.847%20164.833%20517.536%20164.833%20517.87%20164.833C518.8%20164.833%20519.751%20164.859%20521.058%20164.928C522.39%20164.953%20524.078%20165.022%20526.386%20165.022C527.552%20165.022%20527.838%20165.022%20528.052%20164.215C528.219%20163.594%20528.455%20161.476%20528.455%20160.76C528.455%20160.451%20528.455%20160.215%20528.219%20160.215C528.002%20160.215%20527.933%20160.331%20527.886%20160.691C527.671%20161.952%20527.29%20162.617%20526.503%20162.998C525.718%20163.383%20524.412%20163.383%20523.602%20163.383C520.462%20163.383%20519.961%20162.929%20519.914%20160.76C519.892%20159.881%20519.914%20157%20519.914%20155.953V153.501C519.914%20153.308%20519.939%20153.192%20520.106%20153.192C520.843%20153.192%20523.889%20153.214%20524.484%20153.286C525.624%20153.403%20526.052%20153.879%20526.198%20154.5C526.292%20154.903%20526.292%20155.31%20526.314%20155.619C526.314%20155.786%20526.386%20155.906%20526.601%20155.906C526.884%20155.906%20526.884%20155.572%20526.884%20155.31C526.884%20155.096%20526.978%20153.857%20527.003%20153.239C527.123%20151.644%20527.265%20151.168%20527.265%20150.976C527.265%20150.787%20527.17%20150.739%20527.051%20150.739C526.909%20150.739%20526.767%20150.881%20526.55%20151.143C526.267%20151.452%20525.816%20151.546%20525.076%20151.593C524.364%20151.666%20520.818%20151.666%20520.154%20151.666C519.961%20151.666%20519.939%20151.546%20519.939%20151.335V143.476C519.939%20143.262%20520.008%20143.164%20520.154%20143.164C520.771%20143.164%20524.009%20143.237%20524.531%20143.287C526.074%20143.476%20526.386%20143.832%20526.601%20144.403C526.742%20144.784%20526.789%20145.311%20526.789%20145.522C526.789%20145.809%20526.862%20145.951%20527.076%20145.951C527.29%20145.951%20527.359%20145.762%20527.385%20145.62C527.454%20145.239%20527.504%20143.88%20527.552%20143.571C527.646%20142.143%20527.788%20141.761%20527.788%20141.547C527.788%20141.38%20527.766%20141.26%20527.599%20141.26C527.454%20141.26%20527.265%20141.358%20527.098%20141.38C526.862%20141.453%20526.361%20141.5%20525.769%20141.573C525.196%20141.594%20519.057%20141.594%20518.085%20141.594C517.656%20141.594%20516.945%20141.573%20516.157%20141.525C515.395%20141.525%20514.491%20141.5%20513.66%20141.5C513.184%20141.5%20512.97%20141.572%20512.97%20141.783C512.97%20142.001%20513.159%20142.07%20513.493%20142.07C513.921%20142.07%20514.444%20142.096%20514.683%20142.165C515.703%20142.383%20515.943%20142.881%20515.99%20143.927C516.063%20144.926%20516.063%20145.787%20516.063%20150.5V155.928H516.041ZM542.823%20161.832C542.681%20162.882%20542.416%20164.096%20541.563%20164.288C541.11%20164.383%20540.895%20164.383%20540.634%20164.383C540.326%20164.383%20540.137%20164.452%20540.137%20164.593C540.137%20164.88%20540.373%20164.928%20540.685%20164.928C541.658%20164.928%20543.157%20164.833%20543.727%20164.833C544.275%20164.833%20545.654%20164.928%20546.961%20164.928C547.437%20164.928%20547.702%20164.859%20547.702%20164.593C547.702%20164.452%20547.484%20164.383%20547.226%20164.383C546.914%20164.383%20546.486%20164.357%20545.938%20164.237C545.415%20164.117%20545.012%20163.834%20545.012%20163.238C545.012%20162.737%20545.034%20162.333%20545.106%20161.785L546.7%20149.428H546.82C547.89%20151.764%20549.745%20155.666%20550.007%20156.309C550.388%20157.167%20552.816%20161.93%20553.55%20163.358C554.051%20164.288%20554.359%20164.906%20554.624%20164.906C554.907%20164.906%20555.049%20164.619%20555.764%20163.165L562.472%20149.072H562.592L564.425%20162.737C564.541%20163.62%20564.447%20164.001%20564.28%20164.07C564.066%20164.165%20563.946%20164.263%20563.946%20164.43C563.946%20164.619%20564.138%20164.713%20564.828%20164.764C566.062%20164.859%20570.298%20164.953%20571.083%20164.953C571.511%20164.953%20571.892%20164.859%20571.892%20164.619C571.892%20164.43%20571.678%20164.404%20571.395%20164.404C570.988%20164.404%20570.367%20164.383%20569.489%20164.096C568.563%20163.812%20568.251%20162.929%20567.99%20160.978L565.184%20141.783C565.089%20141.118%20564.901%20140.831%20564.636%20140.831C564.353%20140.831%20564.207%20141.071%20563.971%20141.573L555.597%20159.285L547.201%20141.783C546.798%20140.977%20546.627%20140.831%20546.369%20140.831C546.13%20140.831%20545.938%20141.118%20545.843%20141.642L542.823%20161.832ZM587.592%20156.833C587.447%20156.833%20587.378%20156.905%20587.305%20157.094L585.639%20161.549C585.334%20162.333%20585.163%20163.071%20585.163%20163.452C585.163%20164.001%20585.45%20164.404%20586.401%20164.404H586.855C587.236%20164.404%20587.33%20164.477%20587.33%20164.641C587.33%20164.88%20587.138%20164.953%20586.808%20164.953C585.831%20164.953%20584.499%20164.859%20583.548%20164.859C583.214%20164.859%20581.501%20164.953%20579.907%20164.953C579.504%20164.953%20579.337%20164.88%20579.337%20164.641C579.337%20164.452%20579.457%20164.404%20579.718%20164.404C579.98%20164.404%20580.43%20164.383%20580.669%20164.335C582.096%20164.143%20582.669%20163.093%20583.287%20161.549L591.019%20142.048C591.374%20141.144%20591.563%20140.81%20591.875%20140.81C592.158%20140.81%20592.325%20141.097%20592.634%20141.809C593.371%20143.498%20598.297%20156.164%20600.271%20160.905C601.437%20163.689%20602.34%20164.143%20602.983%20164.288C603.458%20164.383%20603.909%20164.404%20604.264%20164.404C604.504%20164.404%20604.671%20164.43%20604.671%20164.641C604.671%20164.88%20604.388%20164.953%20603.244%20164.953C602.152%20164.953%20599.89%20164.953%20597.44%20164.88C596.892%20164.859%20596.514%20164.859%20596.514%20164.641C596.514%20164.452%20596.63%20164.404%20596.939%20164.357C597.153%20164.288%20597.367%20164.023%20597.226%20163.641L594.754%20157.069C594.681%20156.905%20594.609%20156.833%20594.442%20156.833H587.592ZM593.872%20155.285C594.013%20155.285%20594.06%20155.19%20594.013%20155.096L591.254%20147.429C591.229%20147.31%20591.182%20147.142%20591.113%20147.142C591.019%20147.142%20590.971%20147.31%20590.924%20147.429L588.093%20155.07C588.067%20155.19%20588.093%20155.285%20588.209%20155.285H593.872ZM35.6213%2069.3091L35.2909%2069.0003C32.6265%2066.4533%2029.6027%2063.5467%2023.3228%2063.5467C17.4459%2063.5467%209.57601%2067.5942%209.57601%2078.4506C9.57601%2087.712%2016.7816%2093.6888%2023.635%2093.6888C29.3886%2093.6888%2033.5304%2091.4507%2037.9771%2085.9534L38.0025%2085.9026L38.0243%2085.8553L60.8861%2054.9066L60.8389%2054.9538C68.0444%2045.7615%2074.3969%2038.1206%2081.9364%2038.1206C89.5231%2038.1206%2092.7611%2045.856%2092.7611%2052.2143C92.7611%2053.9038%2092.5469%2055.2881%2091.4978%2056.8323L95.1387%2059.7825C97.1135%2056.974%2097.3748%2054.3834%2097.3748%2052.2143C97.3748%2042.6441%2090.761%2036.333%2081.9618%2036.333C72.611%2036.333%2065.3546%2041.6413%2057.3178%2051.9055L57.2924%2051.9273L57.2706%2051.9527L34.4088%2082.9051L34.4814%2082.8324C30.4122%2087.8573%2027.3195%2088.8819%2023.6568%2088.8819C19.3044%2088.8819%2011.3112%2085.3103%2011.3112%2078.4506C11.3112%2071.0459%2018.5421%2068.3572%2023.3482%2068.3572C27.8204%2068.3572%2029.6535%2070.1194%2032.1982%2072.5501L32.5067%2072.8553L35.6213%2069.3091ZM102.254%2066.2353C104.773%2063.1906%20104.773%2059.4519%20104.773%2058.1911C104.773%2047.5455%2097.2333%2042.9529%2089.4759%2042.9529C80.1033%2042.9529%2073.5148%2048.9298%2065.2384%2059.4773L65.213%2059.4991L65.1912%2059.5246L42.3295%2090.4733L42.4021%2090.3788C36.7393%2097.3585%2031.8642%20100.214%2025.5371%20100.214C13.5218%20100.214%209.71758%2091.6687%209.71758%2087.1197C9.71758%2084.3548%2012.1424%2077.0227%2021.7547%2077.0227C24.8692%2077.0227%2026.5826%2077.9274%2027.7006%2078.7158L30.6736%2074.9771C27.9874%2073.1205%2025.4645%2072.2122%2021.7293%2072.2122C15.8559%2072.2122%207.95703%2076.7393%207.95703%2087.1197C7.95703%2094.5463%2012.2622%20105.025%2025.5117%20105.025C35.2437%20105.025%2041.2841%2099.1897%2045.8978%2093.4781L45.9232%2093.4272L45.9486%2093.38L68.8067%2062.4276L68.7595%2062.4748C76.2301%2052.9519%2082.1034%2044.6679%2089.4287%2044.6679C97.1389%2044.6679%20100.112%2051.3568%20100.112%2058.1185C100.112%2059.5936%2099.9449%2061.4539%2098.7796%2062.929L102.254%2066.2353ZM49.3935%2056.8577C48.348%2055.3099%2048.1339%2053.9292%2048.1339%2052.2361C48.1339%2045.8814%2051.3682%2038.1424%2058.9585%2038.1424C66.498%2038.1424%2072.8251%2045.7615%2080.0343%2054.9756L79.9871%2054.9284L102.871%2085.8808L102.892%2085.928L102.94%2085.9752C107.368%2091.4761%20111.528%2093.736%20117.285%2093.736C124.139%2093.736%20131.344%2087.7592%20131.344%2078.5015C131.344%2067.6414%20123.471%2063.5939%20117.594%2063.5939C111.314%2063.5939%20108.319%2066.5006%20105.629%2069.0475L105.274%2069.3818L108.414%2072.9061L108.748%2072.5719C111.292%2070.1448%20113.1%2068.3826%20117.594%2068.3826C122.4%2068.3826%20129.631%2071.0713%20129.631%2078.476C129.631%2085.3321%20121.638%2088.9037%20117.285%2088.9037C113.597%2088.9037%20110.505%2087.8827%20106.464%2082.8578L106.512%2082.9269L83.6498%2051.9781L83.628%2051.9527L83.6026%2051.9273C75.5622%2041.6885%2068.284%2036.3584%2058.9585%2036.3584C50.1558%2036.3584%2043.5419%2042.6659%2043.5419%2052.2361C43.5419%2054.4052%2043.8033%2056.9994%2045.778%2059.808L49.3935%2056.8577ZM42.0681%2062.998C40.9029%2061.5229%2040.7359%2059.6663%2040.7359%2058.1911C40.7359%2051.4259%2043.7089%2044.7369%2051.4408%2044.7369C58.7916%2044.7369%2064.6431%2052.9991%2072.1136%2062.5475L72.0665%2062.5003L94.9246%2093.4526L94.95%2093.4999L94.9718%2093.5471C99.5891%2099.2623%20105.608%20105.097%20115.358%20105.097C128.607%20105.097%20132.913%2094.6189%20132.913%2087.1888C132.913%2076.8083%20125.017%2072.2848%20119.14%2072.2848C115.499%2072.2848%20112.908%2073.1677%20110.196%2075.0462L113.147%2078.8103C114.287%2078.0219%20116.022%2077.0699%20119.14%2077.0699C128.753%2077.0699%20131.177%2084.4274%20131.177%2087.167C131.177%2091.7159%20127.373%20100.262%20115.358%20100.262C109.031%20100.262%20104.156%2097.4057%2098.4929%2090.4261L98.5655%2090.5205L75.7037%2059.5718L75.6819%2059.5464L75.6565%2059.5246C67.3801%2048.9516%2060.788%2042.9747%2051.4154%2042.9747C43.6617%2042.9747%2036.1222%2047.5455%2036.1222%2058.2129C36.1222%2059.4773%2036.1222%2063.1906%2038.6451%2066.2353L42.0681%2062.998ZM32.5067%20145.166L32.1982%20145.475C29.6535%20147.905%2027.8204%20149.664%2023.3482%20149.664C18.5421%20149.664%2011.3112%20146.975%2011.3112%20139.571C11.3112%20132.714%2019.3044%20129.143%2023.6568%20129.143C27.3449%20129.143%2030.434%20130.142%2034.4814%20135.189L34.4088%20135.12L57.2706%20166.047L57.2924%20166.072L57.3178%20166.094C65.3546%20176.333%2072.6364%20181.666%2081.9618%20181.666C90.761%20181.666%2097.3748%20175.355%2097.3748%20165.785C97.3748%20163.62%2097.1135%20161.025%2095.1387%20158.191L91.4978%20161.142C92.5469%20162.689%2092.7611%20164.07%2092.7611%20165.763C92.7611%20172.118%2089.5231%20179.857%2081.9364%20179.857C74.3969%20179.857%2068.0662%20172.216%2060.8389%20163.024L60.8861%20163.071L38.0243%20132.119L38.0025%20132.071L37.9771%20132.046C33.5304%20126.549%2029.3886%20124.311%2023.635%20124.311C16.7816%20124.311%209.57601%20130.287%209.57601%20139.523C9.57601%20150.38%2017.4459%20154.427%2023.3228%20154.427C29.6027%20154.427%2032.6265%20151.524%2035.2909%20148.977L35.6213%20148.665L32.5067%20145.166ZM98.8486%20154.976C100.039%20156.451%20100.181%20158.311%20100.181%20159.786C100.181%20166.548%2097.2078%20173.215%2089.5014%20173.215C82.1506%20173.215%2076.299%20164.953%2068.8321%20155.405L68.8793%20155.477L46.0176%20124.521L45.9958%20124.474H45.9232C41.3095%20118.762%2035.2655%20112.927%2025.5371%20112.927C12.284%20112.927%207.98244%20123.406%207.98244%20130.832C7.98244%20141.213%2015.8777%20145.74%2021.7547%20145.74C25.4899%20145.74%2028.0092%20144.832%2030.699%20142.975L27.7006%20139.24C26.5608%20140.025%2024.8438%20140.929%2021.7547%20140.929C12.1424%20140.929%209.71758%20133.572%209.71758%20130.832C9.71758%20126.283%2013.5218%20117.738%2025.5371%20117.738C31.8642%20117.738%2036.7393%20120.594%2042.4021%20127.573L42.3295%20127.501L65.1912%20158.428L65.213%20158.453L65.2384%20158.475C73.5148%20169.048%2080.1287%20174.999%2089.4759%20174.999C97.2333%20174.999%20104.773%20170.428%20104.773%20159.786C104.773%20158.522%20104.773%20154.783%20102.254%20151.739L98.8486%20154.976ZM45.7562%20158.191C43.8033%20161%2043.5201%20163.594%2043.5201%20165.763C43.5201%20175.333%2050.134%20181.645%2058.9331%20181.645C68.2586%20181.645%2075.5367%20176.333%2083.5772%20166.072L83.6026%20166.047L83.628%20166.021L106.486%20135.094L106.439%20135.167C110.479%20130.142%20113.576%20129.117%20117.264%20129.117C121.612%20129.117%20129.606%20132.689%20129.606%20139.549C129.606%20146.953%20122.375%20149.642%20117.572%20149.642C113.1%20149.642%20111.267%20147.88%20108.722%20145.453L108.388%20145.119L105.248%20148.643L105.608%20148.977C108.268%20151.524%20111.292%20154.427%20117.572%20154.427C123.445%20154.427%20131.319%20150.38%20131.319%20139.523C131.319%20130.262%20124.113%20124.311%20117.264%20124.311C111.506%20124.311%20107.343%20126.549%20102.918%20132.046L102.871%20132.097L102.845%20132.144L79.9617%20163.093L80.0089%20163.024C72.7997%20172.216%2066.4509%20179.857%2058.9331%20179.857C51.3464%20179.857%2048.1085%20172.118%2048.1085%20165.763C48.1085%20164.07%2048.3263%20162.711%2049.3717%20161.142L45.7562%20158.191ZM38.6451%20151.786C36.1222%20154.831%2036.1222%20158.547%2036.1222%20159.808C36.1222%20170.454%2043.6617%20175.025%2051.4154%20175.025C60.788%20175.025%2067.3801%20169.048%2075.6565%20158.5L75.6819%20158.475L75.7037%20158.453L98.5655%20127.526L98.4929%20127.595C104.156%20120.619%20109.031%20117.763%20115.358%20117.763C127.373%20117.763%20131.177%20126.309%20131.177%20130.858C131.177%20133.619%20128.753%20140.951%20119.14%20140.951C116.022%20140.951%20114.287%20140.025%20113.147%20139.24L110.196%20143C112.908%20144.879%20115.499%20145.762%20119.14%20145.762C125.017%20145.762%20132.913%20141.238%20132.913%20130.858C132.913%20123.428%20128.607%20112.953%20115.358%20112.953C105.629%20112.953%2099.5891%20118.784%2094.9718%20124.499L94.95%20124.521L94.9246%20124.572L72.0665%20155.525L72.1136%20155.452C64.6431%20164.975%2058.7661%20173.262%2051.4408%20173.262C43.7343%20173.262%2040.7359%20166.573%2040.7359%20159.834C40.7359%20158.359%2040.9029%20156.498%2042.0681%20155.023L38.6451%20151.786ZM71.1626%20119.976C71.1626%20125.807%2070.9448%20133.855%2067.8774%20136.406C67.3801%20136.856%2066.9046%20137.143%2066.9046%20137.311C66.9046%20137.594%2067.1877%20137.667%2067.7359%20137.667C68.3784%20137.667%2070.2587%20137.38%2074.1573%20137.38C77.5115%20137.38%2079.6749%20137.667%2080.3174%20137.667C80.7458%20137.667%2081.0798%20137.569%2081.0798%20137.38C81.0798%20137.118%2080.8692%20136.835%2080.3174%20136.548C77.1811%20134.713%2077.1811%20128.238%2077.1811%20119.951V87.8319C77.1811%2084.2857%2077.3917%2080.7142%2079.7693%2079.8095C80.1287%2079.715%2080.2703%2079.4534%2080.2703%2079.0719C80.2703%2078.6214%2079.3664%2078.6214%2079.0832%2078.6214C77.486%2078.6214%2075.8017%2078.9774%2074.1791%2078.9774C71.5909%2078.9774%2070.0663%2078.6214%2069.2097%2078.6214C68.3058%2078.6214%2068.0916%2078.6214%2068.0916%2079.1664C68.0916%2079.5261%2068.3058%2079.6205%2068.5926%2079.8095C71.0428%2081.0012%2071.1844%2084.9288%2071.1844%2087.8319V119.976H71.1626ZM77.9144%20106.453V106.307C80.9164%20106.307%2090.0967%20103.593%2090.0967%2095.1421C90.0967%2088.286%2085.5301%2085.452%2078.3899%2084.3802C78.3209%2085.096%2078.2738%2085.8553%2078.2484%2086.6183C82.2486%2087.999%2084.0781%2090.833%2084.0781%2095.0004C84.0781%20104.716%2076.9633%20105.475%2071.3259%20105.475H62.1457V85.6446H70.0409C69.9937%2085.0233%2069.9248%2084.3802%2069.805%2083.7625C69.1153%2083.7625%2068.4038%2083.7371%2067.6851%2083.7371H55.3648C54.392%2083.7371%2054.1052%2084.0459%2054.1052%2084.1913C54.1052%2084.5728%2054.3448%2084.7145%2054.7949%2084.9506C57.1036%2086.3785%2057.1762%2088.8819%2057.1762%2094.143V118.286C57.1762%20127.642%2055.677%20130.738%2054.1742%20131.403C53.3211%20131.784%2052.8928%20131.999%2052.8928%20132.238C52.8928%20132.38%2052.94%20132.547%2053.2957%20132.547C53.8693%20132.547%2055.1507%20132.308%2058.1019%20132.308H66.2367C67.1623%20132.308%2068.0662%20132.333%2068.9265%20132.38C69.0899%20131.81%2069.2351%20131.192%2069.3766%20130.545C68.4256%20130.498%2067.4491%20130.429%2066.4763%20130.429C62.3127%20130.429%2062.1457%20127.955%2062.1457%20117.382V107.357H69.3077C76.535%20107.357%2087.4577%20107.357%2087.4577%20119.355C87.4577%20126.167%2083.8857%20129.499%2078.6077%20130.262C78.7021%20131.021%2078.8183%20131.715%2078.9635%20132.333C79.6532%20132.286%2080.3429%20132.238%2081.0326%20132.191C86.0529%20131.879%2093.6178%20127.428%2093.6178%20119.071C93.6178%20109.094%2083.4102%20107.118%2077.9144%20106.453Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--capgemini { aspect-ratio:3.7360; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22934%22%20height%3D%22250%22%20viewBox%3D%220%200%20934%20250%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M811.741%20149.739C828.14%20149.739%20840.805%20136.399%20840.969%20120.56C839.82%20113.646%20837.395%20100.858%20819.462%20100.858C799.808%20100.858%20793.306%20128.271%20777.315%20145.966C776.035%20156.016%20766.503%20165.011%20754.621%20166.52C757.529%20169.562%20764.012%20171.217%20771.752%20171.217C785.909%20171.217%20803.039%20166.956%20812.018%20158.097C800.037%20158.261%20792.344%20150.569%20791.589%20139.928C797.429%20146.997%20804.025%20149.739%20811.741%20149.739Z%22%20fill%3D%22%23ADC9CC%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M685.816%20106.118C685.816%2097.3994%20685.29%2091.587%20679.582%2091.587C676.974%2091.587%20675.712%2092.1167%20673.446%2092.8667C675.463%20122.304%20668.793%20148.235%20660.668%20148.235C650.016%20148.235%20655.326%2085.1324%20632.768%2085.1324C611.95%2085.1324%20608.948%20135.508%20606.588%20135.508C604.984%20135.508%20604.735%20122.28%20604.825%20112.184C605.697%20107.356%20606.18%20103.006%20606.18%2099.7104C606.18%2095.0229%20604.257%2086.9183%20593.6%2090.9683C593.97%20126.996%20586.751%20148.755%20578.622%20148.755C566.712%20148.755%20566.576%20116.098%20566.576%20107.102C566.576%2098.3135%20567.214%2086.5715%20554.141%2090.7386C552.194%20122.163%20543.943%20145.872%20538.75%20145.872C531.001%20145.872%20532.563%2091.587%20515.817%2091.587C500.745%2091.587%20496.097%20143.013%20492.959%20143.013C487.348%20143.013%20494.727%2085.1324%20472.967%2085.1324C461.563%2085.1324%20457.022%20104.449%20452.557%20126.077C451.689%20130.263%20450.798%20130.404%20450.634%20125.669C450.521%20121.643%20450.498%20117.588%20450.545%20113.562C456.014%2091.8167%20449.33%2083.7871%20439.249%2089.5761C442.504%20129.701%20424.065%20149.308%20409.932%20149.308C404.828%20149.308%20400.794%20147.138%20397.797%20143.702C414.74%20133.315%20422.278%20121.39%20422.278%20109.737C422.278%2097.1276%20415.016%2089.848%20402.966%2089.848C386.159%2089.848%20376.744%20107.154%20376.744%20121.873C376.744%20129.785%20378.236%20136.521%20380.661%20142.057C374.887%20144.804%20369.441%20147.185%20364.375%20149.491C363.915%20134.365%20362.222%20118.484%20360.922%20103.812C351.963%20101.342%20349.35%20105.64%20348.665%20113.604C347.061%20131.777%20340.33%20143.064%20334.372%20143.064C329.902%20143.064%20327.158%20137.613%20326.834%20131.824C325.164%20102.687%20348.825%2094.5823%20361.213%2098.8197C363.784%2092.3886%20360.96%2087.762%20349.786%2087.762C336.249%2087.762%20326.126%2095.9838%20318.705%20106.531C313.761%20113.562%20308.034%20118.549%20300.425%20124.572C300.632%20122.857%20300.725%20121.113%20300.725%20119.398C300.725%2098.8666%20289.589%2089.848%20278.965%2089.848C270.17%2089.848%20264.63%2095.1119%20261.421%20103.217C260.643%2095.0885%20259.02%2091.5917%20254.301%2091.5917C252.284%2091.5917%20249.469%2092.1589%20246.467%2093.6213C247.837%2098.1588%20248.367%20108.209%20248.367%20114.799C248.367%20139.488%20241.288%20150.569%20234.487%20150.569C226.7%20150.569%20225.462%20121.273%20224.8%20109.877C223.585%20109.418%20222.3%20109.17%20220.996%20109.17C213.941%20109.17%20213.026%20118.619%20211.286%20127.315C209.363%20136.952%20203.818%20149.06%20195.595%20149.06C190.628%20149.06%20187.508%20144.279%20187.119%20135.668C186.317%20118.207%20200.863%2097.5119%20223.609%20103.948C226.583%2096.9916%20221.911%2091.6995%20212.473%2091.6995C195.844%2091.6995%20182.1%20104.131%20176.105%20118.849C170.012%20132.354%20159.359%20152.177%20137.692%20152.177C122.396%20152.177%20110.669%20138.827%20110.669%20110.838C110.669%2086.7168%20125.895%2063.7998%20142.134%2063.7998C153.496%2063.7998%20156.132%2074.9747%20155.123%2085.4559C161.01%2090.1667%20170.65%2085.7699%20170.65%2073.9903C170.65%2065.8623%20164.055%2052.0812%20142.735%2052.0812C116.349%2052.0812%2093.0312%2078.3825%2093.0312%20112.92C93.0312%20146.379%20110.021%20166.155%20134.076%20166.155C149.26%20166.155%20163.571%20157.506%20173.445%20141.527C175.946%20155.514%20185.473%20161.397%20192.617%20161.397C204.184%20161.397%20211.741%20153.911%20215.864%20143.796C218.43%20153.935%20223.857%20161.444%20232.887%20161.444C239.229%20161.444%20244.197%20158.214%20247.931%20153.068C246.444%20188.308%20244.591%20210.784%20265.427%20206.373C262.205%20196.347%20261.173%20178.103%20261.173%20161.716C261.173%20116.88%20268.57%20102.12%20277.848%20102.12C284.58%20102.12%20286.751%20110.674%20286.751%20119.81C286.751%20124.708%20286.273%20130.338%20285.035%20135.396C273.631%20142.582%20264.536%20148.263%20264.536%20155.467C264.536%20161.167%20268.776%20161.692%20272.44%20161.692C281.188%20161.692%20291.724%20153.114%20297.54%20136.929C302.625%20133.84%20307.733%20130.315%20312.612%20125.51C312.452%20127.155%20312.359%20128.801%20312.359%20130.497C312.359%20146.561%20319.39%20156.292%20330.634%20156.292C339.453%20156.292%20346.048%20150.044%20350.724%20140.683C351.025%20146.083%20351.203%20151.052%20351.273%20155.603C333.406%20163.872%20313.644%20172.244%20313.644%20195.545C313.644%20207.606%20322.345%20216.667%20333.683%20216.667C358.582%20216.667%20364.262%20190.417%20364.492%20159.911C372.598%20156.405%20378.621%20153.705%20385.586%20150.246C391.539%20157.713%20399.649%20161.444%20407.07%20161.444C421.11%20161.444%20431.669%20154.005%20440.14%20138.921C441.632%20150.386%20444.611%20161.444%20450.723%20161.444C461.854%20161.444%20464.124%20103.263%20472.39%20103.263C478.736%20103.263%20473.539%20166.202%20490.28%20166.202C504.615%20166.202%20507.294%20110.815%20514.283%20110.815C519.232%20110.815%20519.598%20161.444%20535.218%20161.444C542.892%20161.444%20551.232%20152.214%20555.393%20132.897C557.363%20145.764%20563.851%20161.444%20576.539%20161.444C583.937%20161.444%20590.307%20153.958%20595.223%20144.025C596.578%20154.253%20599.463%20161.444%20605.073%20161.444C619.662%20161.444%20619.183%20103.395%20630.727%20103.395C639.729%20103.395%20636.961%20161.444%20658.398%20161.444C668.586%20161.444%20673.418%20152.767%20676.312%20141.85C680.243%20157.896%20686.637%20161.444%20691.862%20161.444C695.179%20161.444%20697.702%20160.272%20701%20156.358C684.413%20149.177%20685.816%20123.012%20685.816%20106.123M334.738%20205.825C329.583%20205.825%20326.858%20200.926%20326.858%20195.404C326.858%20180.503%20337.806%20172.614%20351.273%20165.817C350.678%20198.358%20343.093%20205.825%20334.738%20205.825ZM401.713%20100.31C406.723%20100.31%20409.585%20104.909%20409.083%20111.523C408.515%20119.28%20402.853%20128.187%20393.003%20135.166C387.876%20120.565%20391.703%20100.31%20401.713%20100.31ZM560.572%2078.2887C565.338%2078.1294%20568.682%2074.0372%20568.706%2069.1623C568.752%2064.2873%20565.427%2060.4342%20560.642%2060.6171C555.857%2060.7811%20551.964%2064.878%20551.941%2069.7529C551.894%2074.6278%20555.787%2078.4481%20560.572%2078.2887ZM679.399%2080.7637C683.752%2080.6043%20687.303%2076.7138%20687.303%2072.0685C687.303%2067.4186%20683.822%2063.7811%20679.469%2063.9171C675.116%2064.0764%20671.565%2067.9904%20671.542%2072.6357C671.495%2077.281%20675.05%2080.9184%20679.399%2080.7637ZM840.945%20119.398C840.574%20100.995%20831.826%2085.4793%20818.312%2073.0904C808.053%2063.7343%20795.866%2056.614%20783.089%2051.2609C782.08%2050.8297%20781.025%2050.4125%20779.993%2050C764.265%2068.8388%20709.795%2082.8871%20709.795%20122.374C709.795%20137.796%20719.552%20152.238%20733.868%20158.036C742.18%20161.167%20750.474%20161.327%20758.786%20158.533C766.188%20156.105%20772.253%20151.53%20777.314%20145.971C793.305%20128.276%20799.807%20100.882%20819.438%20100.882C837.394%20100.882%20839.819%20113.651%20840.968%20120.565C840.968%20120.518%20840.968%20120.059%20840.921%20119.398%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22934%22%20height%3D%22250%22%20viewBox%3D%220%200%20934%20250%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M811.741%20149.739C828.14%20149.739%20840.805%20136.399%20840.969%20120.56C839.82%20113.646%20837.395%20100.858%20819.462%20100.858C799.808%20100.858%20793.306%20128.271%20777.315%20145.966C776.035%20156.016%20766.503%20165.011%20754.621%20166.52C757.529%20169.562%20764.012%20171.217%20771.752%20171.217C785.909%20171.217%20803.039%20166.956%20812.018%20158.097C800.037%20158.261%20792.344%20150.569%20791.589%20139.928C797.429%20146.997%20804.025%20149.739%20811.741%20149.739Z%22%20fill%3D%22%23ADC9CC%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M685.816%20106.118C685.816%2097.3994%20685.29%2091.587%20679.582%2091.587C676.974%2091.587%20675.712%2092.1167%20673.446%2092.8667C675.463%20122.304%20668.793%20148.235%20660.668%20148.235C650.016%20148.235%20655.326%2085.1324%20632.768%2085.1324C611.95%2085.1324%20608.948%20135.508%20606.588%20135.508C604.984%20135.508%20604.735%20122.28%20604.825%20112.184C605.697%20107.356%20606.18%20103.006%20606.18%2099.7104C606.18%2095.0229%20604.257%2086.9183%20593.6%2090.9683C593.97%20126.996%20586.751%20148.755%20578.622%20148.755C566.712%20148.755%20566.576%20116.098%20566.576%20107.102C566.576%2098.3135%20567.214%2086.5715%20554.141%2090.7386C552.194%20122.163%20543.943%20145.872%20538.75%20145.872C531.001%20145.872%20532.563%2091.587%20515.817%2091.587C500.745%2091.587%20496.097%20143.013%20492.959%20143.013C487.348%20143.013%20494.727%2085.1324%20472.967%2085.1324C461.563%2085.1324%20457.022%20104.449%20452.557%20126.077C451.689%20130.263%20450.798%20130.404%20450.634%20125.669C450.521%20121.643%20450.498%20117.588%20450.545%20113.562C456.014%2091.8167%20449.33%2083.7871%20439.249%2089.5761C442.504%20129.701%20424.065%20149.308%20409.932%20149.308C404.828%20149.308%20400.794%20147.138%20397.797%20143.702C414.74%20133.315%20422.278%20121.39%20422.278%20109.737C422.278%2097.1276%20415.016%2089.848%20402.966%2089.848C386.159%2089.848%20376.744%20107.154%20376.744%20121.873C376.744%20129.785%20378.236%20136.521%20380.661%20142.057C374.887%20144.804%20369.441%20147.185%20364.375%20149.491C363.915%20134.365%20362.222%20118.484%20360.922%20103.812C351.963%20101.342%20349.35%20105.64%20348.665%20113.604C347.061%20131.777%20340.33%20143.064%20334.372%20143.064C329.902%20143.064%20327.158%20137.613%20326.834%20131.824C325.164%20102.687%20348.825%2094.5823%20361.213%2098.8197C363.784%2092.3886%20360.96%2087.762%20349.786%2087.762C336.249%2087.762%20326.126%2095.9838%20318.705%20106.531C313.761%20113.562%20308.034%20118.549%20300.425%20124.572C300.632%20122.857%20300.725%20121.113%20300.725%20119.398C300.725%2098.8666%20289.589%2089.848%20278.965%2089.848C270.17%2089.848%20264.63%2095.1119%20261.421%20103.217C260.643%2095.0885%20259.02%2091.5917%20254.301%2091.5917C252.284%2091.5917%20249.469%2092.1589%20246.467%2093.6213C247.837%2098.1588%20248.367%20108.209%20248.367%20114.799C248.367%20139.488%20241.288%20150.569%20234.487%20150.569C226.7%20150.569%20225.462%20121.273%20224.8%20109.877C223.585%20109.418%20222.3%20109.17%20220.996%20109.17C213.941%20109.17%20213.026%20118.619%20211.286%20127.315C209.363%20136.952%20203.818%20149.06%20195.595%20149.06C190.628%20149.06%20187.508%20144.279%20187.119%20135.668C186.317%20118.207%20200.863%2097.5119%20223.609%20103.948C226.583%2096.9916%20221.911%2091.6995%20212.473%2091.6995C195.844%2091.6995%20182.1%20104.131%20176.105%20118.849C170.012%20132.354%20159.359%20152.177%20137.692%20152.177C122.396%20152.177%20110.669%20138.827%20110.669%20110.838C110.669%2086.7168%20125.895%2063.7998%20142.134%2063.7998C153.496%2063.7998%20156.132%2074.9747%20155.123%2085.4559C161.01%2090.1667%20170.65%2085.7699%20170.65%2073.9903C170.65%2065.8623%20164.055%2052.0812%20142.735%2052.0812C116.349%2052.0812%2093.0312%2078.3825%2093.0312%20112.92C93.0312%20146.379%20110.021%20166.155%20134.076%20166.155C149.26%20166.155%20163.571%20157.506%20173.445%20141.527C175.946%20155.514%20185.473%20161.397%20192.617%20161.397C204.184%20161.397%20211.741%20153.911%20215.864%20143.796C218.43%20153.935%20223.857%20161.444%20232.887%20161.444C239.229%20161.444%20244.197%20158.214%20247.931%20153.068C246.444%20188.308%20244.591%20210.784%20265.427%20206.373C262.205%20196.347%20261.173%20178.103%20261.173%20161.716C261.173%20116.88%20268.57%20102.12%20277.848%20102.12C284.58%20102.12%20286.751%20110.674%20286.751%20119.81C286.751%20124.708%20286.273%20130.338%20285.035%20135.396C273.631%20142.582%20264.536%20148.263%20264.536%20155.467C264.536%20161.167%20268.776%20161.692%20272.44%20161.692C281.188%20161.692%20291.724%20153.114%20297.54%20136.929C302.625%20133.84%20307.733%20130.315%20312.612%20125.51C312.452%20127.155%20312.359%20128.801%20312.359%20130.497C312.359%20146.561%20319.39%20156.292%20330.634%20156.292C339.453%20156.292%20346.048%20150.044%20350.724%20140.683C351.025%20146.083%20351.203%20151.052%20351.273%20155.603C333.406%20163.872%20313.644%20172.244%20313.644%20195.545C313.644%20207.606%20322.345%20216.667%20333.683%20216.667C358.582%20216.667%20364.262%20190.417%20364.492%20159.911C372.598%20156.405%20378.621%20153.705%20385.586%20150.246C391.539%20157.713%20399.649%20161.444%20407.07%20161.444C421.11%20161.444%20431.669%20154.005%20440.14%20138.921C441.632%20150.386%20444.611%20161.444%20450.723%20161.444C461.854%20161.444%20464.124%20103.263%20472.39%20103.263C478.736%20103.263%20473.539%20166.202%20490.28%20166.202C504.615%20166.202%20507.294%20110.815%20514.283%20110.815C519.232%20110.815%20519.598%20161.444%20535.218%20161.444C542.892%20161.444%20551.232%20152.214%20555.393%20132.897C557.363%20145.764%20563.851%20161.444%20576.539%20161.444C583.937%20161.444%20590.307%20153.958%20595.223%20144.025C596.578%20154.253%20599.463%20161.444%20605.073%20161.444C619.662%20161.444%20619.183%20103.395%20630.727%20103.395C639.729%20103.395%20636.961%20161.444%20658.398%20161.444C668.586%20161.444%20673.418%20152.767%20676.312%20141.85C680.243%20157.896%20686.637%20161.444%20691.862%20161.444C695.179%20161.444%20697.702%20160.272%20701%20156.358C684.413%20149.177%20685.816%20123.012%20685.816%20106.123M334.738%20205.825C329.583%20205.825%20326.858%20200.926%20326.858%20195.404C326.858%20180.503%20337.806%20172.614%20351.273%20165.817C350.678%20198.358%20343.093%20205.825%20334.738%20205.825ZM401.713%20100.31C406.723%20100.31%20409.585%20104.909%20409.083%20111.523C408.515%20119.28%20402.853%20128.187%20393.003%20135.166C387.876%20120.565%20391.703%20100.31%20401.713%20100.31ZM560.572%2078.2887C565.338%2078.1294%20568.682%2074.0372%20568.706%2069.1623C568.752%2064.2873%20565.427%2060.4342%20560.642%2060.6171C555.857%2060.7811%20551.964%2064.878%20551.941%2069.7529C551.894%2074.6278%20555.787%2078.4481%20560.572%2078.2887ZM679.399%2080.7637C683.752%2080.6043%20687.303%2076.7138%20687.303%2072.0685C687.303%2067.4186%20683.822%2063.7811%20679.469%2063.9171C675.116%2064.0764%20671.565%2067.9904%20671.542%2072.6357C671.495%2077.281%20675.05%2080.9184%20679.399%2080.7637ZM840.945%20119.398C840.574%20100.995%20831.826%2085.4793%20818.312%2073.0904C808.053%2063.7343%20795.866%2056.614%20783.089%2051.2609C782.08%2050.8297%20781.025%2050.4125%20779.993%2050C764.265%2068.8388%20709.795%2082.8871%20709.795%20122.374C709.795%20137.796%20719.552%20152.238%20733.868%20158.036C742.18%20161.167%20750.474%20161.327%20758.786%20158.533C766.188%20156.105%20772.253%20151.53%20777.314%20145.971C793.305%20128.276%20799.807%20100.882%20819.438%20100.882C837.394%20100.882%20839.819%20113.651%20840.968%20120.565C840.968%20120.518%20840.968%20120.059%20840.921%20119.398%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--emirates { aspect-ratio:1.6667; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221030%22%20height%3D%22618%22%20viewBox%3D%220%200%201030%20618%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M568.391%2034.863C563.699%2039.3358%20557.272%2050.9014%20557.272%2067.1107C557.272%2071.0009%20557.272%20163.924%20557.272%20167.249C557.272%20175.56%20554.201%20183.476%20549.255%20187.962C546.653%20190.349%20530.334%20205.157%20529.326%20205.941H538.745C541.593%20203.225%20571.282%20177.062%20574.37%20173.509C578.397%20168.905%20588.021%20157.278%20588.021%20139.005C588.021%20134.717%20588.091%2046.6563%20588.091%2042.7792C588.091%2028.3442%20594.772%2020.3403%20598.268%2016.4676C601.821%2012.5116%20613.084%202.77732%20615.967%200.201357L606.666%200.109375C603.985%202.59334%20571.615%2031.8182%20568.391%2034.863Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M494.898%20399.415L531.242%20431.172H555.604C580.343%20431.172%20602.94%20420.566%20617.888%20405.631C632.822%20390.692%20638.337%20370.65%20638.337%20351.878C638.337%20338.227%20638.337%20302.312%20638.337%20299.82C638.337%20282.322%20627.363%20272.137%20624.292%20269.088C622.632%20267.441%20612.03%20257.443%20612.03%20257.443V297.406C612.03%20297.406%20623.697%20309.431%20625.988%20311.863C636.804%20323.341%20636.682%20344.198%20602.541%20377.475C596.544%20383.302%20579.485%20399.415%20556.012%20399.415C552.669%20399.415%20494.898%20399.415%20494.898%20399.415Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M642.787%20214.878C642.787%20214.878%20653.214%20226.855%20657.323%20230.066C671.075%20240.891%20677.107%20228.515%20668.258%20214.374C666.164%20210.983%20657.612%20205.301%20642.787%20214.878ZM595.999%20185.784C591.934%20190.06%20588.083%20200.539%20588.083%20209.774C588.083%20214.904%20588.083%20229.497%20588.083%20229.497C588.083%20229.497%20604.113%20229.497%20608.038%20229.497C615.827%20229.497%20622.859%20223.714%20628.317%20218.667C628.457%20218.413%20628.317%20199.098%20628.317%20199.098C628.317%20199.098%20633.438%20204.981%20637.99%20209.717C644.693%20203.597%20661.962%20185.535%20674.522%20185.535C699.975%20185.535%20694.206%20217.427%20683.788%20227.679C680.432%20230.995%20665.414%20244.764%20660.766%20249.18C648.771%20260.632%20628.19%20255.16%20628.19%20225.611C628.19%20225.611%20606.132%20246.56%20602.79%20249.325C599.425%20252.111%20588.083%20264.158%20588.083%20264.158C588.083%20264.158%20588.083%20311.1%20588.083%20316.098C588.083%20341.017%20580.526%20349.993%20573.074%20356.876C569.771%20359.925%20542.986%20384.23%20538.158%20388.479H528.661C528.661%20388.479%20545.913%20373.422%20549.172%20370.009C552.922%20366.159%20557.268%20358.242%20557.268%20345.091C557.268%20341.766%20556.86%20263.475%20556.86%20263.475C556.86%20263.475%20434.84%20263.475%20429.28%20263.475C384.897%20263.475%20375.422%20214.238%20375.141%20201.069C375.067%20197.179%20375.141%20157.86%20375.141%20151.74C375.141%20143.627%20369.967%20129.994%20361.688%20125.771H374.191C375.641%20126.393%20383.504%20129.577%20383.504%20159.757C383.504%20159.757%20382.979%20194.892%20382.979%20196.767C382.979%20212.074%20395.144%20229.637%20412.742%20229.637C416.335%20229.637%20557.132%20229.497%20557.132%20229.497C557.268%20225.611%20561.18%20210.865%20568.115%20203.106C572.018%20198.699%20603.013%20170.364%20606.54%20167.634L615.705%20167.538C614.373%20168.804%20599.329%20182.24%20595.999%20185.784Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M488.577%20308.384C488.577%20315.332%20466.326%20333.872%20465.021%20335.169C463.413%20327.66%20457.792%20319.376%20441.197%20302.763L465.559%20278.384C481.887%20294.711%20488.577%20298.199%20488.577%20308.384Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M445.924%20164.993C439.265%20171.985%20438.086%20173.742%20431.839%20177.483C432.413%20177.483%20505.705%20177.483%20508.097%20177.483C528.779%20177.483%20524.648%20164.669%20520.92%20158.189C513.359%20144.915%20489.36%20120.273%20489.36%20120.273C489.36%20120.273%20447.33%20163.525%20445.924%20164.993ZM530.834%2028.9839C535.741%2033.8949%20546.263%2047.1296%20539.946%2053.4512C534.361%2059.0325%20525.726%2067.9081%20525.726%2067.9081C525.314%2064.7013%20517.201%2057.0216%20517.201%2057.0216C517.201%2057.0216%20517.275%2080.5602%20517.201%2083.4778C516.947%2094.0971%20512.912%2097.133%20512.912%2097.133C512.912%2097.133%20532.556%20116.606%20532.556%20141.647C532.556%20153.8%20532.591%20164.945%20532.591%20167.35C532.591%20172.497%20531.298%20176.458%20527.719%20180.396C525.949%20182.354%20507.764%20200.658%20504.991%20203.159C499.725%20207.899%20494.197%20208.697%20490.026%20208.697C487.104%20208.697%20424.264%20208.697%20422.332%20208.697C411.674%20208.697%20400.678%20200.382%20400.678%20192.032C400.678%20189.968%20400.827%20166.951%20400.827%20166.951C404.283%20170.951%20407.823%20175.66%20416.348%20175.542C423.016%20175.415%20430.003%20170.202%20431.905%20168.322C433.819%20166.386%20483.109%20114.876%20483.109%20114.876C483.109%20114.876%20460.043%2093.4882%20444.815%2083.3026C437.385%2078.3609%20427.563%2084.6212%20426.091%2091.175C421.404%20111.634%20426.091%20142.396%20426.091%20142.396C426.091%20142.396%20411.025%20127.339%20407.398%20123.738C399.845%20116.186%20400.143%2099.1176%20409.107%2090.1587C410.504%2088.7218%20424.172%2073.3142%20441.538%2073.3142C444.303%2073.3142%20465.506%2073.3142%20468.564%2073.3142C486.683%2073.3142%20506.24%2091.0699%20506.24%2091.0699C506.24%2091.0699%20509.135%2087.8631%20509.135%2084.8052C509.135%2075.5134%20509.07%2050.7395%20509.07%2050.7395C495.436%2037.0842%20493.601%2023.026%20500.141%2016.4765C512.312%204.27137%20516.789%200%20516.789%200C516.789%200%20516.64%2014.7723%20530.834%2028.9839Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M358.985%20234.382H346.469C346.469%20234.382%20359.936%20241.786%20359.936%20260.834C359.936%20265.859%20359.936%20317.531%20359.936%20321.684C359.936%20361.261%20392.6%20397.89%20432.286%20397.89C438.958%20397.89%20460.981%20397.89%20465.419%20397.89C485.312%20397.89%20492.295%20393.071%20504.343%20382.386C508.732%20378.465%20514.458%20372.043%20516.587%20369.69C523.505%20361.936%20530.874%20355.68%20530.874%20335.269C530.874%20330.284%20530.874%20318.118%20530.874%20315.332C530.874%20298.128%20520.889%20290.97%20516.114%20286.164C513.03%20283.067%20504.531%20274.971%20504.531%20274.971V315.761C504.531%20315.761%20512.872%20324.65%20516.583%20327.568C533.774%20341.144%20520.123%20364.84%20504.093%20364.84C500.908%20364.84%20435.764%20364.871%20431.318%20364.871C403.311%20364.871%20368.294%20341.639%20368.294%20301.427C368.294%20296.03%20368.294%20271.878%20368.294%20268.351C368.307%20234.382%20358.985%20234.382%20358.985%20234.382Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M438.77%20308.498C438.77%20315.451%20416.497%20333.973%20415.196%20335.27C413.602%20327.765%20407.968%20319.464%20391.355%20302.851L415.739%20278.472C432.067%20294.821%20438.77%20298.313%20438.77%20308.498Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M183.819%20579.281C179.828%20579.281%20149.07%20579.241%20144.83%20579.241C132.629%20579.241%20133.579%20568.986%20132.515%20560.43V504.355C132.515%20504.355%20141.066%20504.144%20150.455%20504.144C161.293%20504.144%20174.821%20502.55%20187.946%20509.988C187.946%20509.988%20178.488%20487.344%20150.38%20487.344H132.515C132.515%20487.344%20132.515%20484.124%20132.515%20476.317V469.364C132.515%20469.364%20132.515%20453.663%20128.655%20449.195C128.655%20449.195%20152.549%20449.274%20154.24%20449.287C176.591%20449.313%20193.913%20448.958%20211.918%20460.765C211.918%20460.765%20208.466%20431.308%20165.17%20431.308C140.593%20431.308%2084.5179%20431.308%2081%20431.308C81%20431.308%2096.0308%20443.85%2095.1371%20469.29L96.0308%20571.168C96.0308%20596.949%20106.054%20597.374%20106.054%20597.374C107.066%20597.374%20112.188%20597.374%20134.881%20597.374C138.661%20597.374%20143.174%20597.374%20147.971%20597.374C160.097%20597.374%20176.03%20597.374%20188.958%20597.374C207.818%20597.374%20214.372%20584.152%20214.372%20576.749L214.648%20566.922C214.648%20566.922%20208.663%20579.281%20183.819%20579.281Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M404.468%20570.602V499.343C404.468%20471.713%20381.735%20464.34%20364.965%20464.34C342.785%20464.34%20336.06%20483.024%20333.243%20489.298C328.218%20472.011%20310.782%20464.107%20296.479%20464.107C269.76%20464.107%20262.899%20489.718%20262.899%20489.718C262.899%20489.718%20262.251%20465.032%20240.561%20465.032L219.41%20465.076C219.41%20465.076%20231.572%20470.127%20231.572%20491.475L231.55%20570.594C231.55%20596.967%20242.151%20597.216%20242.151%20597.216H277.251C276.322%20596.967%20263.754%20587.443%20263.754%20570.392V500.228C264.192%20497.074%20269.488%20486.608%20284.624%20486.608C292.926%20486.608%20302.235%20495.369%20302.086%20505.397L302.034%20570.567C302.034%20597.142%20312.491%20597.203%20312.491%20597.203H347.713C347.713%20597.203%20334.229%20587.78%20334.229%20570.326L334.119%20500.145C335.425%20496.215%20340.086%20486.792%20353.4%20486.792C363.787%20486.792%20372.5%20495.567%20372.251%20505.603C372.251%20505.603%20372.176%20565.122%20372.207%20570.651C372.382%20597.339%20382.677%20597.129%20382.677%20597.129C401.029%20597.129%20417.908%20597.199%20417.908%20597.199C417.908%20597.199%20404.468%20587.955%20404.468%20570.602Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M465.66%20570.562C465.66%20588.125%20479.171%20597.211%20479.171%20597.211C479.171%20597.211%20462.444%20597.141%20444.08%20597.141C444.08%20597.141%20433.631%20597.264%20433.631%20570.786V570.663L433.675%20491.264C433.675%20470.376%20421.531%20465.005%20421.531%20465.005H442.463C449.937%20465.005%20465.559%20465.005%20465.559%20494.558L465.507%20570.431L465.66%20570.562Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M573.337%20475.033C573.337%20475.033%20569.95%20465.492%20555.41%20465.492C533.392%20465.492%20528.03%20491.514%20528.03%20491.514C526.198%20470.985%20520.696%20464.865%20505.455%20464.865L484.203%20464.892C484.203%20464.892%20496.553%20469.986%20496.553%20491.278L496.492%20570.541C496.492%20596.927%20507.049%20597.177%20507.049%20597.177H541.812C540.918%20596.927%20528.389%20587.39%20528.389%20570.3L528.441%20505.502C529.287%20499.566%20532.34%20495.067%20537.037%20492.022C548.541%20484.711%20564.334%20486.507%20573.345%20497.336C573.337%20497.345%20573.337%20483.462%20573.337%20475.033Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M736.009%20479.848C747.903%20479.848%20756.779%20485.022%20756.779%20485.022L756.862%20465.005H727.541V434.751C727.541%20434.751%20719.949%20448.192%20704.077%20461.036C694.141%20469.242%20673.244%20479.322%20673.244%20479.322L695.512%20479.734L695.464%20571.663C695.464%20597.151%20706.158%20597.151%20706.158%20597.151C725.355%20597.151%20740.863%20597.216%20740.863%20597.216C740.863%20597.216%20727.497%20588.126%20727.497%20571.426L727.541%20479.808C736.596%20479.835%20730.266%20479.848%20736.009%20479.848Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M820.783%20511.337C826.6%20500.599%20831.165%20473.464%20811.307%20474.949C788.548%20476.654%20792.916%20537.618%20792.916%20537.618C800.464%20529.268%20811.907%20527.577%20820.783%20511.337ZM842.323%20519.81C822.64%20540.198%20807.193%20537%20795.194%20552.053C795.194%20552.053%20797.126%20572.385%20812.446%20579.574C817.777%20582.023%20839.419%20588.953%20853.403%20564.508L853.368%20587.731C853.368%20587.731%20844.356%20597.365%20815.758%20597.365C781.644%20597.365%20758.035%20570.413%20758.035%20533.868C758.035%20497.918%20777.294%20464.505%20813.278%20464.352C848.877%20464.12%20868.171%20492.736%20842.323%20519.81Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M449.34%20454.281C458.391%20454.281%20465.747%20447.276%20465.747%20438.418C465.747%20429.564%20458.391%20422.375%20449.34%20422.375C440.289%20422.375%20433.311%20429.564%20433.311%20438.418C433.311%20447.276%20440.289%20454.281%20449.34%20454.281Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M919.327%20561.257C919.59%20570.628%20911.266%20582.991%20893.475%20582.991C876.018%20582.991%20868.347%20564.245%20868.347%20564.245L868.202%20587.902C868.202%20587.902%20881.134%20597.255%20901.343%20597.255H901.326C925.39%20597.255%20949.121%20579.193%20948.399%20553.946C948.149%20544.987%20945.091%20537.373%20940.329%20530.814C932.167%20520.112%20917.456%20512.196%20905.79%20505.453C889.953%20496.289%20892.091%20476.592%20915.319%20478.463C932.719%20479.86%20940.092%20496.626%20940.092%20496.626V474.59C940.092%20474.59%20926.683%20464.015%20906.452%20464.015C885.436%20464.015%20866.743%20477.92%20867.265%20495.601C867.725%20511.245%20874.099%20521.444%20886.935%20530.775C892.03%20534.582%20898.093%20538.236%20905.107%20542.161C915.38%20547.804%20919.152%20554.76%20919.327%20561.257Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M633.215%20494.107C633.215%20507.049%20622.236%20512.84%20615.069%20515.981C594.203%20525.098%20567.506%20535.152%20567.506%20565.468C567.506%20585.76%20582.212%20597.4%20602.868%20597.4C618.705%20597.4%20626.657%20589.221%20630.595%20581.51C632.983%20596.462%20640.434%20597.142%20640.434%20597.142C658.681%20597.142%20675.398%20597.251%20675.398%20597.251C675.398%20597.251%20661.761%20587.99%20661.761%20570.65V496.403C661.761%20478.577%20642.042%20464.777%20621.124%20464.777C600.998%20464.777%20588.298%20474.49%20588.298%20474.49C588.298%20480.443%20588.298%20497.498%20588.298%20497.498C588.298%20497.498%20595.478%20479.239%20613.672%20479.239C628.768%20479.239%20633.215%20486.642%20633.215%20494.107ZM614.272%20582.159C603.25%20582.159%20595.745%20576.249%20595.745%20563.724C595.745%20533.934%20622.797%20527.801%20630.052%20518.986L630.004%20574.58C629.767%20574.795%20625.136%20582.159%20614.272%20582.159Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221030%22%20height%3D%22618%22%20viewBox%3D%220%200%201030%20618%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M568.391%2034.863C563.699%2039.3358%20557.272%2050.9014%20557.272%2067.1107C557.272%2071.0009%20557.272%20163.924%20557.272%20167.249C557.272%20175.56%20554.201%20183.476%20549.255%20187.962C546.653%20190.349%20530.334%20205.157%20529.326%20205.941H538.745C541.593%20203.225%20571.282%20177.062%20574.37%20173.509C578.397%20168.905%20588.021%20157.278%20588.021%20139.005C588.021%20134.717%20588.091%2046.6563%20588.091%2042.7792C588.091%2028.3442%20594.772%2020.3403%20598.268%2016.4676C601.821%2012.5116%20613.084%202.77732%20615.967%200.201357L606.666%200.109375C603.985%202.59334%20571.615%2031.8182%20568.391%2034.863Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M494.898%20399.415L531.242%20431.172H555.604C580.343%20431.172%20602.94%20420.566%20617.888%20405.631C632.822%20390.692%20638.337%20370.65%20638.337%20351.878C638.337%20338.227%20638.337%20302.312%20638.337%20299.82C638.337%20282.322%20627.363%20272.137%20624.292%20269.088C622.632%20267.441%20612.03%20257.443%20612.03%20257.443V297.406C612.03%20297.406%20623.697%20309.431%20625.988%20311.863C636.804%20323.341%20636.682%20344.198%20602.541%20377.475C596.544%20383.302%20579.485%20399.415%20556.012%20399.415C552.669%20399.415%20494.898%20399.415%20494.898%20399.415Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M642.787%20214.878C642.787%20214.878%20653.214%20226.855%20657.323%20230.066C671.075%20240.891%20677.107%20228.515%20668.258%20214.374C666.164%20210.983%20657.612%20205.301%20642.787%20214.878ZM595.999%20185.784C591.934%20190.06%20588.083%20200.539%20588.083%20209.774C588.083%20214.904%20588.083%20229.497%20588.083%20229.497C588.083%20229.497%20604.113%20229.497%20608.038%20229.497C615.827%20229.497%20622.859%20223.714%20628.317%20218.667C628.457%20218.413%20628.317%20199.098%20628.317%20199.098C628.317%20199.098%20633.438%20204.981%20637.99%20209.717C644.693%20203.597%20661.962%20185.535%20674.522%20185.535C699.975%20185.535%20694.206%20217.427%20683.788%20227.679C680.432%20230.995%20665.414%20244.764%20660.766%20249.18C648.771%20260.632%20628.19%20255.16%20628.19%20225.611C628.19%20225.611%20606.132%20246.56%20602.79%20249.325C599.425%20252.111%20588.083%20264.158%20588.083%20264.158C588.083%20264.158%20588.083%20311.1%20588.083%20316.098C588.083%20341.017%20580.526%20349.993%20573.074%20356.876C569.771%20359.925%20542.986%20384.23%20538.158%20388.479H528.661C528.661%20388.479%20545.913%20373.422%20549.172%20370.009C552.922%20366.159%20557.268%20358.242%20557.268%20345.091C557.268%20341.766%20556.86%20263.475%20556.86%20263.475C556.86%20263.475%20434.84%20263.475%20429.28%20263.475C384.897%20263.475%20375.422%20214.238%20375.141%20201.069C375.067%20197.179%20375.141%20157.86%20375.141%20151.74C375.141%20143.627%20369.967%20129.994%20361.688%20125.771H374.191C375.641%20126.393%20383.504%20129.577%20383.504%20159.757C383.504%20159.757%20382.979%20194.892%20382.979%20196.767C382.979%20212.074%20395.144%20229.637%20412.742%20229.637C416.335%20229.637%20557.132%20229.497%20557.132%20229.497C557.268%20225.611%20561.18%20210.865%20568.115%20203.106C572.018%20198.699%20603.013%20170.364%20606.54%20167.634L615.705%20167.538C614.373%20168.804%20599.329%20182.24%20595.999%20185.784Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M488.577%20308.384C488.577%20315.332%20466.326%20333.872%20465.021%20335.169C463.413%20327.66%20457.792%20319.376%20441.197%20302.763L465.559%20278.384C481.887%20294.711%20488.577%20298.199%20488.577%20308.384Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M445.924%20164.993C439.265%20171.985%20438.086%20173.742%20431.839%20177.483C432.413%20177.483%20505.705%20177.483%20508.097%20177.483C528.779%20177.483%20524.648%20164.669%20520.92%20158.189C513.359%20144.915%20489.36%20120.273%20489.36%20120.273C489.36%20120.273%20447.33%20163.525%20445.924%20164.993ZM530.834%2028.9839C535.741%2033.8949%20546.263%2047.1296%20539.946%2053.4512C534.361%2059.0325%20525.726%2067.9081%20525.726%2067.9081C525.314%2064.7013%20517.201%2057.0216%20517.201%2057.0216C517.201%2057.0216%20517.275%2080.5602%20517.201%2083.4778C516.947%2094.0971%20512.912%2097.133%20512.912%2097.133C512.912%2097.133%20532.556%20116.606%20532.556%20141.647C532.556%20153.8%20532.591%20164.945%20532.591%20167.35C532.591%20172.497%20531.298%20176.458%20527.719%20180.396C525.949%20182.354%20507.764%20200.658%20504.991%20203.159C499.725%20207.899%20494.197%20208.697%20490.026%20208.697C487.104%20208.697%20424.264%20208.697%20422.332%20208.697C411.674%20208.697%20400.678%20200.382%20400.678%20192.032C400.678%20189.968%20400.827%20166.951%20400.827%20166.951C404.283%20170.951%20407.823%20175.66%20416.348%20175.542C423.016%20175.415%20430.003%20170.202%20431.905%20168.322C433.819%20166.386%20483.109%20114.876%20483.109%20114.876C483.109%20114.876%20460.043%2093.4882%20444.815%2083.3026C437.385%2078.3609%20427.563%2084.6212%20426.091%2091.175C421.404%20111.634%20426.091%20142.396%20426.091%20142.396C426.091%20142.396%20411.025%20127.339%20407.398%20123.738C399.845%20116.186%20400.143%2099.1176%20409.107%2090.1587C410.504%2088.7218%20424.172%2073.3142%20441.538%2073.3142C444.303%2073.3142%20465.506%2073.3142%20468.564%2073.3142C486.683%2073.3142%20506.24%2091.0699%20506.24%2091.0699C506.24%2091.0699%20509.135%2087.8631%20509.135%2084.8052C509.135%2075.5134%20509.07%2050.7395%20509.07%2050.7395C495.436%2037.0842%20493.601%2023.026%20500.141%2016.4765C512.312%204.27137%20516.789%200%20516.789%200C516.789%200%20516.64%2014.7723%20530.834%2028.9839Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M358.985%20234.382H346.469C346.469%20234.382%20359.936%20241.786%20359.936%20260.834C359.936%20265.859%20359.936%20317.531%20359.936%20321.684C359.936%20361.261%20392.6%20397.89%20432.286%20397.89C438.958%20397.89%20460.981%20397.89%20465.419%20397.89C485.312%20397.89%20492.295%20393.071%20504.343%20382.386C508.732%20378.465%20514.458%20372.043%20516.587%20369.69C523.505%20361.936%20530.874%20355.68%20530.874%20335.269C530.874%20330.284%20530.874%20318.118%20530.874%20315.332C530.874%20298.128%20520.889%20290.97%20516.114%20286.164C513.03%20283.067%20504.531%20274.971%20504.531%20274.971V315.761C504.531%20315.761%20512.872%20324.65%20516.583%20327.568C533.774%20341.144%20520.123%20364.84%20504.093%20364.84C500.908%20364.84%20435.764%20364.871%20431.318%20364.871C403.311%20364.871%20368.294%20341.639%20368.294%20301.427C368.294%20296.03%20368.294%20271.878%20368.294%20268.351C368.307%20234.382%20358.985%20234.382%20358.985%20234.382Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M438.77%20308.498C438.77%20315.451%20416.497%20333.973%20415.196%20335.27C413.602%20327.765%20407.968%20319.464%20391.355%20302.851L415.739%20278.472C432.067%20294.821%20438.77%20298.313%20438.77%20308.498Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M183.819%20579.281C179.828%20579.281%20149.07%20579.241%20144.83%20579.241C132.629%20579.241%20133.579%20568.986%20132.515%20560.43V504.355C132.515%20504.355%20141.066%20504.144%20150.455%20504.144C161.293%20504.144%20174.821%20502.55%20187.946%20509.988C187.946%20509.988%20178.488%20487.344%20150.38%20487.344H132.515C132.515%20487.344%20132.515%20484.124%20132.515%20476.317V469.364C132.515%20469.364%20132.515%20453.663%20128.655%20449.195C128.655%20449.195%20152.549%20449.274%20154.24%20449.287C176.591%20449.313%20193.913%20448.958%20211.918%20460.765C211.918%20460.765%20208.466%20431.308%20165.17%20431.308C140.593%20431.308%2084.5179%20431.308%2081%20431.308C81%20431.308%2096.0308%20443.85%2095.1371%20469.29L96.0308%20571.168C96.0308%20596.949%20106.054%20597.374%20106.054%20597.374C107.066%20597.374%20112.188%20597.374%20134.881%20597.374C138.661%20597.374%20143.174%20597.374%20147.971%20597.374C160.097%20597.374%20176.03%20597.374%20188.958%20597.374C207.818%20597.374%20214.372%20584.152%20214.372%20576.749L214.648%20566.922C214.648%20566.922%20208.663%20579.281%20183.819%20579.281Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M404.468%20570.602V499.343C404.468%20471.713%20381.735%20464.34%20364.965%20464.34C342.785%20464.34%20336.06%20483.024%20333.243%20489.298C328.218%20472.011%20310.782%20464.107%20296.479%20464.107C269.76%20464.107%20262.899%20489.718%20262.899%20489.718C262.899%20489.718%20262.251%20465.032%20240.561%20465.032L219.41%20465.076C219.41%20465.076%20231.572%20470.127%20231.572%20491.475L231.55%20570.594C231.55%20596.967%20242.151%20597.216%20242.151%20597.216H277.251C276.322%20596.967%20263.754%20587.443%20263.754%20570.392V500.228C264.192%20497.074%20269.488%20486.608%20284.624%20486.608C292.926%20486.608%20302.235%20495.369%20302.086%20505.397L302.034%20570.567C302.034%20597.142%20312.491%20597.203%20312.491%20597.203H347.713C347.713%20597.203%20334.229%20587.78%20334.229%20570.326L334.119%20500.145C335.425%20496.215%20340.086%20486.792%20353.4%20486.792C363.787%20486.792%20372.5%20495.567%20372.251%20505.603C372.251%20505.603%20372.176%20565.122%20372.207%20570.651C372.382%20597.339%20382.677%20597.129%20382.677%20597.129C401.029%20597.129%20417.908%20597.199%20417.908%20597.199C417.908%20597.199%20404.468%20587.955%20404.468%20570.602Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M465.66%20570.562C465.66%20588.125%20479.171%20597.211%20479.171%20597.211C479.171%20597.211%20462.444%20597.141%20444.08%20597.141C444.08%20597.141%20433.631%20597.264%20433.631%20570.786V570.663L433.675%20491.264C433.675%20470.376%20421.531%20465.005%20421.531%20465.005H442.463C449.937%20465.005%20465.559%20465.005%20465.559%20494.558L465.507%20570.431L465.66%20570.562Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M573.337%20475.033C573.337%20475.033%20569.95%20465.492%20555.41%20465.492C533.392%20465.492%20528.03%20491.514%20528.03%20491.514C526.198%20470.985%20520.696%20464.865%20505.455%20464.865L484.203%20464.892C484.203%20464.892%20496.553%20469.986%20496.553%20491.278L496.492%20570.541C496.492%20596.927%20507.049%20597.177%20507.049%20597.177H541.812C540.918%20596.927%20528.389%20587.39%20528.389%20570.3L528.441%20505.502C529.287%20499.566%20532.34%20495.067%20537.037%20492.022C548.541%20484.711%20564.334%20486.507%20573.345%20497.336C573.337%20497.345%20573.337%20483.462%20573.337%20475.033Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M736.009%20479.848C747.903%20479.848%20756.779%20485.022%20756.779%20485.022L756.862%20465.005H727.541V434.751C727.541%20434.751%20719.949%20448.192%20704.077%20461.036C694.141%20469.242%20673.244%20479.322%20673.244%20479.322L695.512%20479.734L695.464%20571.663C695.464%20597.151%20706.158%20597.151%20706.158%20597.151C725.355%20597.151%20740.863%20597.216%20740.863%20597.216C740.863%20597.216%20727.497%20588.126%20727.497%20571.426L727.541%20479.808C736.596%20479.835%20730.266%20479.848%20736.009%20479.848Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M820.783%20511.337C826.6%20500.599%20831.165%20473.464%20811.307%20474.949C788.548%20476.654%20792.916%20537.618%20792.916%20537.618C800.464%20529.268%20811.907%20527.577%20820.783%20511.337ZM842.323%20519.81C822.64%20540.198%20807.193%20537%20795.194%20552.053C795.194%20552.053%20797.126%20572.385%20812.446%20579.574C817.777%20582.023%20839.419%20588.953%20853.403%20564.508L853.368%20587.731C853.368%20587.731%20844.356%20597.365%20815.758%20597.365C781.644%20597.365%20758.035%20570.413%20758.035%20533.868C758.035%20497.918%20777.294%20464.505%20813.278%20464.352C848.877%20464.12%20868.171%20492.736%20842.323%20519.81Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M449.34%20454.281C458.391%20454.281%20465.747%20447.276%20465.747%20438.418C465.747%20429.564%20458.391%20422.375%20449.34%20422.375C440.289%20422.375%20433.311%20429.564%20433.311%20438.418C433.311%20447.276%20440.289%20454.281%20449.34%20454.281Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M919.327%20561.257C919.59%20570.628%20911.266%20582.991%20893.475%20582.991C876.018%20582.991%20868.347%20564.245%20868.347%20564.245L868.202%20587.902C868.202%20587.902%20881.134%20597.255%20901.343%20597.255H901.326C925.39%20597.255%20949.121%20579.193%20948.399%20553.946C948.149%20544.987%20945.091%20537.373%20940.329%20530.814C932.167%20520.112%20917.456%20512.196%20905.79%20505.453C889.953%20496.289%20892.091%20476.592%20915.319%20478.463C932.719%20479.86%20940.092%20496.626%20940.092%20496.626V474.59C940.092%20474.59%20926.683%20464.015%20906.452%20464.015C885.436%20464.015%20866.743%20477.92%20867.265%20495.601C867.725%20511.245%20874.099%20521.444%20886.935%20530.775C892.03%20534.582%20898.093%20538.236%20905.107%20542.161C915.38%20547.804%20919.152%20554.76%20919.327%20561.257Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M633.215%20494.107C633.215%20507.049%20622.236%20512.84%20615.069%20515.981C594.203%20525.098%20567.506%20535.152%20567.506%20565.468C567.506%20585.76%20582.212%20597.4%20602.868%20597.4C618.705%20597.4%20626.657%20589.221%20630.595%20581.51C632.983%20596.462%20640.434%20597.142%20640.434%20597.142C658.681%20597.142%20675.398%20597.251%20675.398%20597.251C675.398%20597.251%20661.761%20587.99%20661.761%20570.65V496.403C661.761%20478.577%20642.042%20464.777%20621.124%20464.777C600.998%20464.777%20588.298%20474.49%20588.298%20474.49C588.298%20480.443%20588.298%20497.498%20588.298%20497.498C588.298%20497.498%20595.478%20479.239%20613.672%20479.239C628.768%20479.239%20633.215%20486.642%20633.215%20494.107ZM614.272%20582.159C603.25%20582.159%20595.745%20576.249%20595.745%20563.724C595.745%20533.934%20622.797%20527.801%20630.052%20518.986L630.004%20574.58C629.767%20574.795%20625.136%20582.159%20614.272%20582.159Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--jcdecaux { aspect-ratio:2.6000; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221040%22%20height%3D%22400%22%20viewBox%3D%220%200%201040%20400%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M837.905%206.66699L11.0781%207.20066L11.1256%2024.1571L854.866%2023.6113L837.905%206.66699Z%22%20fill%3D%22url(%23paint0_linear_6822_22687)%22%2F%3E%20%3Cpath%20d%3D%22M28.0394%2024.1572L28.3036%20393.32L11.3307%20393.333L11.0781%207.21289L28.0394%2024.1572Z%22%20fill%3D%22url(%23paint1_linear_6822_22687)%22%2F%3E%20%3Cpath%20d%3D%22M238.454%20252.775C238.469%20270.28%20233.751%20298.861%20193.186%20298.88C170.507%20298.906%20148.421%20286.526%20148.381%20256.831L148.393%20245.014L175.436%20245.006L175.425%20251.098C175.451%20264.253%20178.693%20273.768%20192.788%20273.746C208.59%20273.734%20208.571%20261%20208.566%20251.456L208.529%20159.672L238.398%20159.668L238.454%20252.775Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M346.606%20205.282C344.702%20191.758%20331.777%20181.486%20316.914%20181.501C290.034%20181.525%20279.955%20204.367%20279.986%20228.178C279.982%20250.828%20290.108%20273.686%20316.953%20273.673C335.234%20273.665%20345.52%20261.077%20347.776%20243.187L376.758%20243.172C373.721%20277.052%20350.292%20298.784%20316.978%20298.798C274.887%20298.843%20250.097%20267.428%20250.09%20228.199C250.058%20187.837%20274.787%20156.382%20316.872%20156.349C346.767%20156.34%20371.919%20173.829%20375.576%20205.252L346.606%20205.282Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M417.269%20184.66L438.571%20184.675C468.305%20184.638%20477.832%20202.136%20477.849%20229.58C477.865%20259.666%20461.317%20270.348%20443.984%20270.347L417.333%20270.379L417.269%20184.66ZM387.426%20295.496L446.106%20295.473C487.617%20295.451%20507.761%20266.12%20507.738%20226.712C507.712%20181.565%20481.231%20159.489%20446.015%20159.526L387.348%20159.557L387.426%20295.496Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M542.036%20235.632C542.428%20228.004%20547.362%20214.68%20564.52%20214.658C577.627%20214.648%20583.536%20221.884%20586.039%20235.602L542.036%20235.632ZM613.081%20252.71C614.969%20222.442%20598.774%20194.252%20565.244%20194.265C535.344%20194.325%20515%20216.795%20515.012%20246.303C515.031%20276.778%20534.274%20298.098%20565.314%20298.08C587.604%20298.063%20603.79%20288.162%20611.377%20264.907L587.575%20264.919C585.854%20271.021%20577.111%20277.707%20566.273%20277.696C551.212%20277.719%20542.827%20269.906%20542.048%20252.762L613.081%20252.71Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M690.203%20231.549C688.489%20220.476%20681.442%20214.571%20670.214%20214.582C652.858%20214.618%20647.161%20232.129%20647.178%20246.625C647.189%20260.699%20652.732%20277.649%20669.673%20277.626C682.23%20277.609%20689.478%20269.631%20691.18%20257.599L717.262%20257.598C713.843%20283.692%20695.779%20297.971%20669.865%20298.001C640.158%20298.027%20620.151%20277.081%20620.139%20247.573C620.124%20216.908%20638.384%20194.234%20670.384%20194.208C693.61%20194.181%20714.944%20206.378%20716.671%20231.5L690.203%20231.549Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M788.345%20257.177C788.338%20263.092%20787.59%20279.842%20766.463%20279.857C757.693%20279.863%20749.889%20277.384%20749.888%20267.301C749.883%20257.414%20757.504%20254.526%20765.871%20252.799C774.243%20251.283%20783.761%20251.078%20788.338%20247.093L788.345%20257.177ZM752.909%20227.122C753.845%20216.451%20760.513%20212.249%20770.788%20212.241C780.317%20212.254%20788.314%20213.95%20788.316%20225.551C788.316%20236.614%20772.883%20236.049%20756.333%20238.541C739.572%20240.836%20722.813%20246.167%20722.836%20268.458C722.841%20288.645%20737.705%20297.95%20756.373%20297.946C768.343%20297.94%20780.933%20294.706%20789.505%20285.735C789.69%20288.987%20790.444%20292.213%20791.406%20295.248L818.83%20295.23C816.359%20291.263%20815.412%20282.293%20815.396%20273.346L815.373%20222.113C815.343%20198.506%20791.73%20194.146%20772.108%20194.158C750.029%20194.162%20727.362%20201.781%20725.861%20227.124L752.909%20227.122Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M922.553%20295.171L896.835%20295.206L896.843%20281.489L896.239%20281.478C889.409%20292.546%20877.602%20297.859%20866.182%20297.884C837.438%20297.883%20830.169%20281.736%20830.16%20257.342L830.125%20196.774L857.163%20196.739L857.224%20252.38C857.22%20268.556%20861.952%20276.562%20874.549%20276.536C889.207%20276.534%20895.495%20268.347%20895.466%20248.349L895.452%20196.729L922.495%20196.721L922.553%20295.171Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M962.043%20243.34L929.654%20196.7L960.502%20196.69L977.852%20222.394L994.972%20196.687L1024.85%20196.657L992.537%20242.764L1028.92%20295.113L998.086%20295.137L977.506%20264.106L956.949%20295.161L926.682%20295.147L962.043%20243.34Z%22%20fill%3D%22white%22%2F%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22paint0_linear_6822_22687%22%20x1%3D%22854.866%22%20y1%3D%2215.4111%22%20x2%3D%22811.467%22%20y2%3D%22201.787%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-opacity%3D%220%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22white%22%2F%3E%20%3C%2FlinearGradient%3E%20%3ClinearGradient%20id%3D%22paint1_linear_6822_22687%22%20x1%3D%2215.7614%22%20y1%3D%2286.5792%22%20x2%3D%2219.6906%22%20y2%3D%22393.334%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22white%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-opacity%3D%220%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221040%22%20height%3D%22400%22%20viewBox%3D%220%200%201040%20400%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M837.905%206.66699L11.0781%207.20066L11.1256%2024.1571L854.866%2023.6113L837.905%206.66699Z%22%20fill%3D%22url(%23paint0_linear_6822_22687)%22%2F%3E%20%3Cpath%20d%3D%22M28.0394%2024.1572L28.3036%20393.32L11.3307%20393.333L11.0781%207.21289L28.0394%2024.1572Z%22%20fill%3D%22url(%23paint1_linear_6822_22687)%22%2F%3E%20%3Cpath%20d%3D%22M238.454%20252.775C238.469%20270.28%20233.751%20298.861%20193.186%20298.88C170.507%20298.906%20148.421%20286.526%20148.381%20256.831L148.393%20245.014L175.436%20245.006L175.425%20251.098C175.451%20264.253%20178.693%20273.768%20192.788%20273.746C208.59%20273.734%20208.571%20261%20208.566%20251.456L208.529%20159.672L238.398%20159.668L238.454%20252.775Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M346.606%20205.282C344.702%20191.758%20331.777%20181.486%20316.914%20181.501C290.034%20181.525%20279.955%20204.367%20279.986%20228.178C279.982%20250.828%20290.108%20273.686%20316.953%20273.673C335.234%20273.665%20345.52%20261.077%20347.776%20243.187L376.758%20243.172C373.721%20277.052%20350.292%20298.784%20316.978%20298.798C274.887%20298.843%20250.097%20267.428%20250.09%20228.199C250.058%20187.837%20274.787%20156.382%20316.872%20156.349C346.767%20156.34%20371.919%20173.829%20375.576%20205.252L346.606%20205.282Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M417.269%20184.66L438.571%20184.675C468.305%20184.638%20477.832%20202.136%20477.849%20229.58C477.865%20259.666%20461.317%20270.348%20443.984%20270.347L417.333%20270.379L417.269%20184.66ZM387.426%20295.496L446.106%20295.473C487.617%20295.451%20507.761%20266.12%20507.738%20226.712C507.712%20181.565%20481.231%20159.489%20446.015%20159.526L387.348%20159.557L387.426%20295.496Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M542.036%20235.632C542.428%20228.004%20547.362%20214.68%20564.52%20214.658C577.627%20214.648%20583.536%20221.884%20586.039%20235.602L542.036%20235.632ZM613.081%20252.71C614.969%20222.442%20598.774%20194.252%20565.244%20194.265C535.344%20194.325%20515%20216.795%20515.012%20246.303C515.031%20276.778%20534.274%20298.098%20565.314%20298.08C587.604%20298.063%20603.79%20288.162%20611.377%20264.907L587.575%20264.919C585.854%20271.021%20577.111%20277.707%20566.273%20277.696C551.212%20277.719%20542.827%20269.906%20542.048%20252.762L613.081%20252.71Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M690.203%20231.549C688.489%20220.476%20681.442%20214.571%20670.214%20214.582C652.858%20214.618%20647.161%20232.129%20647.178%20246.625C647.189%20260.699%20652.732%20277.649%20669.673%20277.626C682.23%20277.609%20689.478%20269.631%20691.18%20257.599L717.262%20257.598C713.843%20283.692%20695.779%20297.971%20669.865%20298.001C640.158%20298.027%20620.151%20277.081%20620.139%20247.573C620.124%20216.908%20638.384%20194.234%20670.384%20194.208C693.61%20194.181%20714.944%20206.378%20716.671%20231.5L690.203%20231.549Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M788.345%20257.177C788.338%20263.092%20787.59%20279.842%20766.463%20279.857C757.693%20279.863%20749.889%20277.384%20749.888%20267.301C749.883%20257.414%20757.504%20254.526%20765.871%20252.799C774.243%20251.283%20783.761%20251.078%20788.338%20247.093L788.345%20257.177ZM752.909%20227.122C753.845%20216.451%20760.513%20212.249%20770.788%20212.241C780.317%20212.254%20788.314%20213.95%20788.316%20225.551C788.316%20236.614%20772.883%20236.049%20756.333%20238.541C739.572%20240.836%20722.813%20246.167%20722.836%20268.458C722.841%20288.645%20737.705%20297.95%20756.373%20297.946C768.343%20297.94%20780.933%20294.706%20789.505%20285.735C789.69%20288.987%20790.444%20292.213%20791.406%20295.248L818.83%20295.23C816.359%20291.263%20815.412%20282.293%20815.396%20273.346L815.373%20222.113C815.343%20198.506%20791.73%20194.146%20772.108%20194.158C750.029%20194.162%20727.362%20201.781%20725.861%20227.124L752.909%20227.122Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M922.553%20295.171L896.835%20295.206L896.843%20281.489L896.239%20281.478C889.409%20292.546%20877.602%20297.859%20866.182%20297.884C837.438%20297.883%20830.169%20281.736%20830.16%20257.342L830.125%20196.774L857.163%20196.739L857.224%20252.38C857.22%20268.556%20861.952%20276.562%20874.549%20276.536C889.207%20276.534%20895.495%20268.347%20895.466%20248.349L895.452%20196.729L922.495%20196.721L922.553%20295.171Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M962.043%20243.34L929.654%20196.7L960.502%20196.69L977.852%20222.394L994.972%20196.687L1024.85%20196.657L992.537%20242.764L1028.92%20295.113L998.086%20295.137L977.506%20264.106L956.949%20295.161L926.682%20295.147L962.043%20243.34Z%22%20fill%3D%22white%22%2F%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22paint0_linear_6822_22687%22%20x1%3D%22854.866%22%20y1%3D%2215.4111%22%20x2%3D%22811.467%22%20y2%3D%22201.787%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-opacity%3D%220%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22white%22%2F%3E%20%3C%2FlinearGradient%3E%20%3ClinearGradient%20id%3D%22paint1_linear_6822_22687%22%20x1%3D%2215.7614%22%20y1%3D%2286.5792%22%20x2%3D%2219.6906%22%20y2%3D%22393.334%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22white%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-opacity%3D%220%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--jet2 { aspect-ratio:3.0337; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221080%22%20height%3D%22356%22%20viewBox%3D%220%200%201080%20356%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M278.981%20132.735L273.076%20155.696H295.165C295.165%20155.696%20290.572%20177.126%20287.292%20192.433C284.886%20204.023%20277.669%20233.981%20282.699%20245.133C286.417%20253.224%20296.258%20258.035%20304.132%20258.472C320.315%20259.347%20339.998%20258.91%20339.998%20258.91L345.685%20228.952L333.656%20229.17C333.656%20229.17%20322.94%20229.608%20321.628%20224.141C318.347%20212.114%20333.437%20155.04%20333.437%20155.04H360.994L365.149%20132.517L338.686%20132.735L346.997%2095.3423C346.997%2095.3423%20325.783%2094.6863%20320.753%2095.3423C313.754%2096.217%20308.287%20104.308%20305.881%20111.743C302.819%20120.927%20300.851%20132.517%20300.851%20132.517L278.981%20132.735Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M350.059%20259.346C350.059%20259.346%20353.12%20236.385%20364.711%20221.516C380.02%20201.616%20416.325%20185.653%20427.697%20180.186C448.692%20170.346%20461.158%20157.444%20461.158%20145.855C461.158%20137.764%20454.597%20125.299%20439.069%20125.299C423.542%20125.299%20410.201%20138.42%20408.67%20155.695C404.296%20155.695%20397.954%20155.695%20387.894%20155.695C383.52%20155.695%20368.867%20155.695%20368.867%20155.695C368.867%20155.695%20374.553%20124.643%20392.924%20110.867C407.577%2099.9333%20418.73%2095.1225%20439.069%2094.4665C462.033%2093.5918%20483.903%20101.683%20493.744%20117.427C503.367%20132.734%20505.992%20157.663%20491.776%20173.626C479.092%20187.621%20466.188%20195.275%20454.816%20201.835C439.507%20210.801%20418.73%20221.297%20412.825%20224.14C407.795%20226.545%20408.451%20229.169%20408.451%20229.169H474.936C484.997%20229.169%20490.245%20225.233%20490.245%20225.233C490.245%20225.233%20494.619%20239.228%20487.621%20248.412C485.215%20251.692%20478.217%20259.346%20465.97%20259.346H350.059Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M509.053%20259.347L516.051%20218.018L562.197%20217.799L554.98%20259.347H509.053Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M708.727%20212.988C708.727%20252.568%20669.361%20262.408%20666.299%20263.502C658.207%20265.907%20646.616%20267%20635.025%20267C610.53%20267%20580.568%20246.008%20580.568%20211.239C580.568%20163.568%20609.874%20127.268%20660.831%20129.018C713.757%20130.986%20714.85%20171.878%20714.413%20179.531H673.953C673.953%20176.47%20674.828%20160.069%20653.833%20160.069C628.901%20160.069%20619.716%20182.593%20619.716%20207.959C619.716%20226.546%20631.525%20235.949%20645.96%20235.949C651.427%20235.949%20654.926%20234.418%20658.426%20232.231C668.486%20225.671%20668.267%20216.706%20668.048%20212.988H708.727Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M775.212%20266.345C741.97%20266.345%20719.881%20244.696%20719.881%20212.551C719.881%20167.504%20751.374%20130.33%20797.519%20130.33C832.73%20130.33%20852.85%20154.384%20852.85%20184.124C852.85%20231.576%20820.045%20266.345%20775.431%20266.345H775.212ZM780.461%20237.043C801.237%20237.043%20813.266%20206.428%20813.266%20184.342C813.266%20172.097%20808.017%20159.632%20792.708%20159.632C770.619%20159.632%20759.466%20191.559%20759.466%20211.895C759.466%20226.984%20767.12%20237.261%20780.242%20237.261H780.461V237.043Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M855.912%20262.189L872.971%20176.469C876.251%20160.287%20878.22%20146.729%20879.969%20135.14H914.305L911.899%20155.914H912.555C925.021%20139.513%20941.424%20132.297%20958.92%20132.297C980.571%20132.297%20989.975%20145.199%20991.069%20156.351C1003.32%20139.95%201020.16%20132.297%201037.87%20132.297C1058.65%20132.297%201070.89%20144.98%201070.89%20166.629C1070.89%20171.877%201069.8%20181.936%201068.71%20188.496L1054.05%20262.189H1015.13L1028.69%20192.869C1029.78%20187.84%201030.65%20182.373%201030.65%20177.562C1030.65%20168.815%201026.5%20162.474%201017.31%20162.474C1003.97%20162.474%20990.631%20179.093%20985.383%20204.678L974.01%20261.97H935.519L949.734%20192.213C950.609%20187.184%20951.484%20182.373%20951.484%20178C951.484%20169.253%20948.422%20162.474%20938.799%20162.474C925.24%20162.474%20911.025%20180.186%20906.432%20205.115L895.059%20262.189H855.912Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M213.153%20132.078C193.908%20132.734%20178.38%20136.014%20161.759%20153.726C144.044%20172.532%20140.764%20222.608%20145.575%20232.886C150.386%20243.164%20159.353%20262.407%20203.53%20263.719C254.706%20265.468%20266.953%20222.39%20266.953%20222.39H226.275C226.275%20222.39%20225.838%20235.947%20205.061%20236.385C175.537%20237.041%20182.098%20206.864%20182.098%20206.864H272.202C272.202%20206.864%20272.202%20205.114%20273.733%20181.498C275.92%20155.913%20252.301%20130.547%20213.153%20132.078ZM235.461%20182.154L184.941%20182.372C184.941%20182.372%20188.878%20156.788%20213.591%20156.788C236.336%20156.788%20235.461%20182.154%20235.461%20182.154Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M133.546%2095.5601C125.673%2095.7788%20116.487%2097.3095%20111.238%20103.432C105.99%20109.774%20103.146%20121.801%20101.834%20129.454C101.397%20131.422%20101.178%20133.828%20100.741%20136.452C101.616%20136.452%20102.272%20136.452%20102.709%20136.233C104.677%20136.233%20109.27%20136.015%20109.27%20136.015L126.985%20111.523H131.577L121.299%20136.233L142.731%20137.545L146.668%20132.953C151.26%20111.742%20154.978%2095.5601%20154.978%2095.5601C154.978%2095.5601%20141.419%2095.3414%20133.546%2095.5601ZM121.517%20143.449L131.796%20167.941H127.203L109.489%20143.449C109.489%20143.449%20104.677%20143.449%20102.928%20143.231C102.053%20143.231%20100.959%20143.231%2099.866%20143.012C98.3351%20152.852%2096.1481%20165.754%2093.305%20179.968C87.8375%20207.521%2088.2749%20226.983%2064.6553%20226.983C57.0008%20226.983%2050.0024%20223.484%2050.0024%20218.017C50.0024%20207.958%2051.5333%20190.464%2051.5333%20190.464L10.8551%20190.245C10.8551%20190.245%209.10547%20207.083%209.10547%20225.014C9.10547%20241.196%2026.8202%20262.189%2061.8122%20262.189C88.4936%20262.189%20106.208%20255.847%20121.517%20233.98C129.172%20223.046%20133.108%20197.024%20139.013%20168.816C140.763%20160.506%20142.512%20152.196%20144.262%20144.324L142.731%20142.575L121.517%20143.449Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M510.584%2089C515.833%2089%20519.769%2093.1548%20519.769%2098.4029C519.769%20103.651%20515.614%20107.806%20510.584%20107.806C505.335%20107.806%20501.18%20103.651%20501.18%2098.4029C501.18%2093.1548%20505.335%2089%20510.584%2089ZM510.584%2090.5307C506.428%2090.5307%20503.148%2094.0295%20503.148%2098.4029C503.148%20102.776%20506.428%20106.494%20510.802%20106.494C514.958%20106.494%20518.238%20102.995%20518.238%2098.6216C518.02%2094.0295%20514.739%2090.5307%20510.584%2090.5307ZM508.615%20103.87H506.866V93.3735C507.741%2093.1548%20508.615%2093.1548%20509.928%2093.1548C511.459%2093.1548%20512.552%2093.5921%20513.208%2094.0295C513.864%2094.4668%20514.083%2095.1229%20514.083%2096.2162C514.083%2097.5283%20513.208%2098.4029%20512.115%2098.8403C512.989%2099.059%20513.646%2099.9336%20513.864%20101.464C514.083%20102.995%20514.302%20103.651%20514.52%20104.088H512.771C512.552%20103.651%20512.333%20102.776%20512.115%20101.464C511.896%20100.152%20511.24%2099.715%20509.928%2099.715H508.834V103.87H508.615ZM508.615%2097.9656H509.928C511.24%2097.9656%20512.552%2097.5283%20512.552%2096.2162C512.552%2095.3415%20511.896%2094.4668%20509.928%2094.4668C509.49%2094.4668%20509.053%2094.4668%20508.615%2094.4668V97.9656Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221080%22%20height%3D%22356%22%20viewBox%3D%220%200%201080%20356%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M278.981%20132.735L273.076%20155.696H295.165C295.165%20155.696%20290.572%20177.126%20287.292%20192.433C284.886%20204.023%20277.669%20233.981%20282.699%20245.133C286.417%20253.224%20296.258%20258.035%20304.132%20258.472C320.315%20259.347%20339.998%20258.91%20339.998%20258.91L345.685%20228.952L333.656%20229.17C333.656%20229.17%20322.94%20229.608%20321.628%20224.141C318.347%20212.114%20333.437%20155.04%20333.437%20155.04H360.994L365.149%20132.517L338.686%20132.735L346.997%2095.3423C346.997%2095.3423%20325.783%2094.6863%20320.753%2095.3423C313.754%2096.217%20308.287%20104.308%20305.881%20111.743C302.819%20120.927%20300.851%20132.517%20300.851%20132.517L278.981%20132.735Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M350.059%20259.346C350.059%20259.346%20353.12%20236.385%20364.711%20221.516C380.02%20201.616%20416.325%20185.653%20427.697%20180.186C448.692%20170.346%20461.158%20157.444%20461.158%20145.855C461.158%20137.764%20454.597%20125.299%20439.069%20125.299C423.542%20125.299%20410.201%20138.42%20408.67%20155.695C404.296%20155.695%20397.954%20155.695%20387.894%20155.695C383.52%20155.695%20368.867%20155.695%20368.867%20155.695C368.867%20155.695%20374.553%20124.643%20392.924%20110.867C407.577%2099.9333%20418.73%2095.1225%20439.069%2094.4665C462.033%2093.5918%20483.903%20101.683%20493.744%20117.427C503.367%20132.734%20505.992%20157.663%20491.776%20173.626C479.092%20187.621%20466.188%20195.275%20454.816%20201.835C439.507%20210.801%20418.73%20221.297%20412.825%20224.14C407.795%20226.545%20408.451%20229.169%20408.451%20229.169H474.936C484.997%20229.169%20490.245%20225.233%20490.245%20225.233C490.245%20225.233%20494.619%20239.228%20487.621%20248.412C485.215%20251.692%20478.217%20259.346%20465.97%20259.346H350.059Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M509.053%20259.347L516.051%20218.018L562.197%20217.799L554.98%20259.347H509.053Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M708.727%20212.988C708.727%20252.568%20669.361%20262.408%20666.299%20263.502C658.207%20265.907%20646.616%20267%20635.025%20267C610.53%20267%20580.568%20246.008%20580.568%20211.239C580.568%20163.568%20609.874%20127.268%20660.831%20129.018C713.757%20130.986%20714.85%20171.878%20714.413%20179.531H673.953C673.953%20176.47%20674.828%20160.069%20653.833%20160.069C628.901%20160.069%20619.716%20182.593%20619.716%20207.959C619.716%20226.546%20631.525%20235.949%20645.96%20235.949C651.427%20235.949%20654.926%20234.418%20658.426%20232.231C668.486%20225.671%20668.267%20216.706%20668.048%20212.988H708.727Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M775.212%20266.345C741.97%20266.345%20719.881%20244.696%20719.881%20212.551C719.881%20167.504%20751.374%20130.33%20797.519%20130.33C832.73%20130.33%20852.85%20154.384%20852.85%20184.124C852.85%20231.576%20820.045%20266.345%20775.431%20266.345H775.212ZM780.461%20237.043C801.237%20237.043%20813.266%20206.428%20813.266%20184.342C813.266%20172.097%20808.017%20159.632%20792.708%20159.632C770.619%20159.632%20759.466%20191.559%20759.466%20211.895C759.466%20226.984%20767.12%20237.261%20780.242%20237.261H780.461V237.043Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M855.912%20262.189L872.971%20176.469C876.251%20160.287%20878.22%20146.729%20879.969%20135.14H914.305L911.899%20155.914H912.555C925.021%20139.513%20941.424%20132.297%20958.92%20132.297C980.571%20132.297%20989.975%20145.199%20991.069%20156.351C1003.32%20139.95%201020.16%20132.297%201037.87%20132.297C1058.65%20132.297%201070.89%20144.98%201070.89%20166.629C1070.89%20171.877%201069.8%20181.936%201068.71%20188.496L1054.05%20262.189H1015.13L1028.69%20192.869C1029.78%20187.84%201030.65%20182.373%201030.65%20177.562C1030.65%20168.815%201026.5%20162.474%201017.31%20162.474C1003.97%20162.474%20990.631%20179.093%20985.383%20204.678L974.01%20261.97H935.519L949.734%20192.213C950.609%20187.184%20951.484%20182.373%20951.484%20178C951.484%20169.253%20948.422%20162.474%20938.799%20162.474C925.24%20162.474%20911.025%20180.186%20906.432%20205.115L895.059%20262.189H855.912Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M213.153%20132.078C193.908%20132.734%20178.38%20136.014%20161.759%20153.726C144.044%20172.532%20140.764%20222.608%20145.575%20232.886C150.386%20243.164%20159.353%20262.407%20203.53%20263.719C254.706%20265.468%20266.953%20222.39%20266.953%20222.39H226.275C226.275%20222.39%20225.838%20235.947%20205.061%20236.385C175.537%20237.041%20182.098%20206.864%20182.098%20206.864H272.202C272.202%20206.864%20272.202%20205.114%20273.733%20181.498C275.92%20155.913%20252.301%20130.547%20213.153%20132.078ZM235.461%20182.154L184.941%20182.372C184.941%20182.372%20188.878%20156.788%20213.591%20156.788C236.336%20156.788%20235.461%20182.154%20235.461%20182.154Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M133.546%2095.5601C125.673%2095.7788%20116.487%2097.3095%20111.238%20103.432C105.99%20109.774%20103.146%20121.801%20101.834%20129.454C101.397%20131.422%20101.178%20133.828%20100.741%20136.452C101.616%20136.452%20102.272%20136.452%20102.709%20136.233C104.677%20136.233%20109.27%20136.015%20109.27%20136.015L126.985%20111.523H131.577L121.299%20136.233L142.731%20137.545L146.668%20132.953C151.26%20111.742%20154.978%2095.5601%20154.978%2095.5601C154.978%2095.5601%20141.419%2095.3414%20133.546%2095.5601ZM121.517%20143.449L131.796%20167.941H127.203L109.489%20143.449C109.489%20143.449%20104.677%20143.449%20102.928%20143.231C102.053%20143.231%20100.959%20143.231%2099.866%20143.012C98.3351%20152.852%2096.1481%20165.754%2093.305%20179.968C87.8375%20207.521%2088.2749%20226.983%2064.6553%20226.983C57.0008%20226.983%2050.0024%20223.484%2050.0024%20218.017C50.0024%20207.958%2051.5333%20190.464%2051.5333%20190.464L10.8551%20190.245C10.8551%20190.245%209.10547%20207.083%209.10547%20225.014C9.10547%20241.196%2026.8202%20262.189%2061.8122%20262.189C88.4936%20262.189%20106.208%20255.847%20121.517%20233.98C129.172%20223.046%20133.108%20197.024%20139.013%20168.816C140.763%20160.506%20142.512%20152.196%20144.262%20144.324L142.731%20142.575L121.517%20143.449Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M510.584%2089C515.833%2089%20519.769%2093.1548%20519.769%2098.4029C519.769%20103.651%20515.614%20107.806%20510.584%20107.806C505.335%20107.806%20501.18%20103.651%20501.18%2098.4029C501.18%2093.1548%20505.335%2089%20510.584%2089ZM510.584%2090.5307C506.428%2090.5307%20503.148%2094.0295%20503.148%2098.4029C503.148%20102.776%20506.428%20106.494%20510.802%20106.494C514.958%20106.494%20518.238%20102.995%20518.238%2098.6216C518.02%2094.0295%20514.739%2090.5307%20510.584%2090.5307ZM508.615%20103.87H506.866V93.3735C507.741%2093.1548%20508.615%2093.1548%20509.928%2093.1548C511.459%2093.1548%20512.552%2093.5921%20513.208%2094.0295C513.864%2094.4668%20514.083%2095.1229%20514.083%2096.2162C514.083%2097.5283%20513.208%2098.4029%20512.115%2098.8403C512.989%2099.059%20513.646%2099.9336%20513.864%20101.464C514.083%20102.995%20514.302%20103.651%20514.52%20104.088H512.771C512.552%20103.651%20512.333%20102.776%20512.115%20101.464C511.896%20100.152%20511.24%2099.715%20509.928%2099.715H508.834V103.87H508.615ZM508.615%2097.9656H509.928C511.24%2097.9656%20512.552%2097.5283%20512.552%2096.2162C512.552%2095.3415%20511.896%2094.4668%20509.928%2094.4668C509.49%2094.4668%20509.053%2094.4668%20508.615%2094.4668V97.9656Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--maersk { aspect-ratio:3.0305; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22994%22%20height%3D%22328%22%20viewBox%3D%220%200%20994%20328%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M304.611%20212.172V115.844H330.22L362.669%20187.829L394.635%20115.844H419.169V212.172H398.051V156.133L373.687%20212.172H351.177L326.499%20156.438V212.172H304.611Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M504.152%20174.876L486.483%20134.044L469.219%20174.876H504.152ZM453.424%20212.172H428.59L471.278%20115.844H501.852L544.845%20212.172H520.332L511.871%20192.983H461.624L453.424%20212.172Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M554.748%20212.172V115.844H646.635V135.105H576.941V154.237H636.696V173.036H576.941V192.903H646.803V212.172H554.748Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M687.182%20160.074H735.461V135.105H687.182V160.074ZM664.676%20212.172V115.844H741.566C751.838%20115.844%20757.803%20121.794%20757.803%20131.999V164.361C757.803%20171.806%20751.216%20178.536%20738.448%20178.536C737.725%20178.572%20736.987%20178.536%20736.228%20178.536L758.609%20212.172H733.908L712.686%20179.235H687.182V212.172H664.676Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M798.291%20212.228H790.673C780.726%20212.228%20775.938%20206.475%20775.938%20198.098V185.515H798.291V192.968H845.788V173.249C845.788%20173.249%20800.001%20173.249%20791.307%20173.249C782.609%20173.249%20776.343%20167.395%20776.343%20159.271V130.673C776.343%20122.019%20783.163%20115.904%20791.459%20115.904C799.752%20115.904%20853.739%20115.904%20853.739%20115.904C862.156%20115.904%20867.981%20122.192%20867.981%20131.284C867.981%20140.364%20867.981%20142.779%20867.981%20142.779H845.788V135.165H798.291V154.137H852.615C860.635%20154.137%20867.981%20159.448%20867.981%20169.673V197.166C867.981%20206.531%20862.791%20212.228%20853.085%20212.228C843.379%20212.228%20798.291%20212.228%20798.291%20212.228Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M889.432%20212.227V115.891H912.247V154.42L955.705%20115.891H986.597L934.753%20160.64L988.463%20212.227H956.48L912.247%20168.41V212.227H889.432Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M212.549%20248.403C212.549%20262.172%20201.402%20273.333%20187.647%20273.333H30.4455C16.6858%20273.333%205.53516%20262.172%205.53516%20248.403V79.5998C5.53516%2065.8312%2016.6858%2054.666%2030.4455%2054.666H187.647C201.402%2054.666%20212.549%2065.8312%20212.549%2079.5998V248.403Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M142.045%20158.327L182.895%20107.049L182.767%20106.885L123.73%20135.342L109.147%2071.3965H108.943L94.36%20135.342L35.3233%20106.885L35.1949%20107.049L76.0485%20158.327L17.0078%20186.784L17.06%20186.985H82.5832L68.0006%20250.935L68.1853%20251.019L109.047%20199.742L149.901%20251.019L150.085%20250.927L135.511%20186.985H201.034L201.082%20186.784L142.045%20158.327Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22994%22%20height%3D%22328%22%20viewBox%3D%220%200%20994%20328%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M304.611%20212.172V115.844H330.22L362.669%20187.829L394.635%20115.844H419.169V212.172H398.051V156.133L373.687%20212.172H351.177L326.499%20156.438V212.172H304.611Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M504.152%20174.876L486.483%20134.044L469.219%20174.876H504.152ZM453.424%20212.172H428.59L471.278%20115.844H501.852L544.845%20212.172H520.332L511.871%20192.983H461.624L453.424%20212.172Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M554.748%20212.172V115.844H646.635V135.105H576.941V154.237H636.696V173.036H576.941V192.903H646.803V212.172H554.748Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M687.182%20160.074H735.461V135.105H687.182V160.074ZM664.676%20212.172V115.844H741.566C751.838%20115.844%20757.803%20121.794%20757.803%20131.999V164.361C757.803%20171.806%20751.216%20178.536%20738.448%20178.536C737.725%20178.572%20736.987%20178.536%20736.228%20178.536L758.609%20212.172H733.908L712.686%20179.235H687.182V212.172H664.676Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M798.291%20212.228H790.673C780.726%20212.228%20775.938%20206.475%20775.938%20198.098V185.515H798.291V192.968H845.788V173.249C845.788%20173.249%20800.001%20173.249%20791.307%20173.249C782.609%20173.249%20776.343%20167.395%20776.343%20159.271V130.673C776.343%20122.019%20783.163%20115.904%20791.459%20115.904C799.752%20115.904%20853.739%20115.904%20853.739%20115.904C862.156%20115.904%20867.981%20122.192%20867.981%20131.284C867.981%20140.364%20867.981%20142.779%20867.981%20142.779H845.788V135.165H798.291V154.137H852.615C860.635%20154.137%20867.981%20159.448%20867.981%20169.673V197.166C867.981%20206.531%20862.791%20212.228%20853.085%20212.228C843.379%20212.228%20798.291%20212.228%20798.291%20212.228Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M889.432%20212.227V115.891H912.247V154.42L955.705%20115.891H986.597L934.753%20160.64L988.463%20212.227H956.48L912.247%20168.41V212.227H889.432Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M212.549%20248.403C212.549%20262.172%20201.402%20273.333%20187.647%20273.333H30.4455C16.6858%20273.333%205.53516%20262.172%205.53516%20248.403V79.5998C5.53516%2065.8312%2016.6858%2054.666%2030.4455%2054.666H187.647C201.402%2054.666%20212.549%2065.8312%20212.549%2079.5998V248.403Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M142.045%20158.327L182.895%20107.049L182.767%20106.885L123.73%20135.342L109.147%2071.3965H108.943L94.36%20135.342L35.3233%20106.885L35.1949%20107.049L76.0485%20158.327L17.0078%20186.784L17.06%20186.985H82.5832L68.0006%20250.935L68.1853%20251.019L109.047%20199.742L149.901%20251.019L150.085%20250.927L135.511%20186.985H201.034L201.082%20186.784L142.045%20158.327Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--nespresso { aspect-ratio:1.6651; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22726%22%20height%3D%22436%22%20viewBox%3D%220%200%20726%20436%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M668.716%20384.23C670.907%20384.23%20686.787%20384.903%20686.659%20353.209C686.547%20323.788%20671.098%20324.668%20668.572%20324.668H668.62C666.093%20324.668%20650.644%20323.788%20650.516%20353.209C650.372%20384.903%20666.253%20384.23%20668.428%20384.23H668.716ZM668.78%20395.019C663.518%20395.099%20629.135%20393.914%20629.135%20354.697C629.279%20315.609%20663.31%20315.08%20668.572%20315.112C673.865%20315.08%20707.881%20315.609%20707.945%20354.697C708.041%20393.914%20673.625%20395.099%20668.364%20395.019%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M619.299%20319.531V329.263C615.301%20327.551%20613.014%20326.302%20608.76%20325.15C605.417%20324.413%20591.104%20321.02%20584.228%20328.223C581.349%20331.136%20580.485%20336.483%20586.243%20340.644C594.351%20345.895%20605.945%20348.328%20615.46%20356.107C621.713%20361.037%20623.728%20366.848%20622.145%20375.732C620.514%20384.76%20610.663%20392.043%20601.819%20393.899C588.945%20396.493%20574.472%20395.276%20562.99%20390.426L563.07%20380.838C573.609%20385.256%20590.001%20390.874%20600.172%20381.942C602.987%20379.365%20604.682%20375.732%20603.21%20371.954C600.924%20365.023%20582.021%20360.893%20570.49%20352.297C559.04%20345.27%20560.079%20333.201%20564.077%20326.558C574.856%20310.391%20602.187%20314.857%20619.299%20319.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M553.268%20319.531V329.263C549.238%20327.551%20546.967%20326.302%20542.729%20325.15C539.419%20324.413%20525.042%20321.02%20518.213%20328.223C515.303%20331.136%20514.423%20336.483%20520.132%20340.644C528.304%20345.895%20539.883%20348.328%20549.43%20356.107C555.667%20361.037%20557.666%20366.848%20556.067%20375.732C554.468%20384.76%20544.569%20392.043%20535.773%20393.899C522.899%20396.493%20508.426%20395.276%20496.976%20390.426L497.024%20380.838C507.578%20385.256%20523.955%20390.874%20534.174%20381.942C536.892%20379.365%20538.619%20375.732%20537.18%20371.954C534.829%20365.023%20515.958%20360.893%20504.444%20352.297C493.01%20345.27%20494.033%20333.201%20498.015%20326.558C508.794%20310.391%20536.141%20314.857%20553.268%20319.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M282.711%20319.531V329.263C278.649%20327.551%20276.41%20326.302%20272.125%20325.15C268.798%20324.413%20254.485%20321.02%20247.656%20328.223C244.73%20331.136%20243.866%20336.483%20249.623%20340.644C257.716%20345.895%20269.342%20348.328%20278.857%20356.107C285.11%20361.037%20287.109%20366.848%20285.526%20375.732C283.927%20384.76%20274.012%20392.043%20265.216%20393.899C252.358%20396.493%20237.853%20395.276%20226.387%20390.426L226.435%20380.838C237.022%20385.256%20253.398%20390.874%20263.601%20381.942C266.367%20379.365%20268.063%20375.732%20266.575%20371.954C264.288%20365.023%20245.417%20360.893%20233.871%20352.297C222.437%20345.27%20223.492%20333.201%20227.426%20326.558C238.237%20310.391%20265.6%20314.857%20282.711%20319.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M185.27%20385.896C195.697%20386.936%20208.443%20385.336%20218.614%20385.063L218.662%20393.723H163.457C163.457%20393.723%20165.184%20391.93%20165.184%20388.921V321.116C165.184%20318.122%20163.457%20316.266%20163.457%20316.266H218.662L218.614%20324.925C208.443%20324.749%20195.697%20323.085%20185.27%20324.157C185.27%20324.157%20185.254%20348.103%20185.254%20349.736C193.81%20350.264%20203.869%20350.344%20211.866%20349.336V358.524C204.013%20357.788%20193.73%20357.644%20185.254%20358.092L185.27%20361.037%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M456.146%20385.896C466.573%20386.936%20479.287%20385.336%20489.506%20385.063L489.522%20393.723H434.396C434.396%20393.723%20436.092%20391.93%20436.092%20388.921V321.116C436.092%20318.122%20434.396%20316.266%20434.396%20316.266H489.522L489.506%20324.925C479.287%20324.749%20466.573%20323.085%20456.146%20324.157C456.146%20324.157%20456.114%20348.103%20456.114%20349.736C464.686%20350.264%20474.745%20350.344%20482.789%20349.336V358.524C474.921%20357.788%20464.606%20357.644%20456.146%20358.092V361.037%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M381.063%20326.03V352.169C387.716%20352.169%20395.776%20353.05%20400.398%20347.703C404.332%20342.469%20403.66%20335.73%20401.054%20330.944C396.432%20323.149%20381.063%20326.03%20381.063%20326.03ZM381.191%20361.741V388.921C381.207%20391.914%20382.918%20393.771%20382.918%20393.771L359.346%20393.723C359.346%20393.723%20361.041%20391.93%20361.057%20388.921L361.041%20321.116C361.041%20318.122%20359.346%20316.266%20359.346%20316.266H399.55C410.473%20316.73%20422.035%20322.764%20422.371%20335.906C422.499%20346.631%20417.749%20352.825%20410.601%20356.251C409.242%20356.891%20409.338%20356.731%20408.874%20357.051C413.943%20368.848%20418.533%20377.54%20424.642%20388.921C425.889%20391.914%20428.352%20393.723%20428.352%20393.723H403.996C403.996%20393.723%20405.467%20391.914%20403.964%20388.921C403.964%20388.921%20395.312%20368.512%20391.25%20361.741%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M314.967%20326.126L314.887%20355.227C321.619%20355.675%20329.616%20356.427%20334.221%20351.049C338.155%20345.83%20337.516%20335.73%20334.877%20331.024C330.255%20323.181%20314.967%20326.126%20314.967%20326.126ZM315.047%20388.921C315.047%20391.914%20316.758%20393.755%20316.758%20393.755L293.201%20393.723C293.201%20393.723%20294.944%20391.93%20294.944%20388.921V321.116C294.944%20318.122%20293.201%20316.266%20293.201%20316.266H332.142C341.914%20316.618%20349.51%20321.116%20352.724%20330.592C355.155%20338.899%20354.835%20349.672%20348.918%20356.427C341.034%20366.896%20314.999%20365.359%20314.999%20365.359%22%20fill%3D%22white%22%2F%3E%20%3Cmask%20id%3D%22mask0_6822_35397%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%2218%22%20y%3D%227%22%20width%3D%22691%22%20height%3D%22428%22%3E%20%3Cpath%20d%3D%22M18.0547%207.28352H708.04V434.461H18.0547V7.28352Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_35397)%22%3E%20%3Cpath%20d%3D%22M137.629%20316.266C137.629%20316.266%20139.388%20318.235%20139.388%20321.068V355.371C129.152%20343.238%20120.085%20329.535%20109.53%20317.194C105.612%20312.456%2098.1598%20304.517%2095.3132%20302.1C76.8101%20283.964%2046.377%20275.64%2018.0547%20285.644V286.797C27.762%20284.684%2040.3478%20285.436%2052.7098%20290.431C61.9853%20293.84%2075.1944%20304.164%2082.8387%20313.624C92.722%20324.893%20113.768%20353.882%20113.768%20353.882C125.858%20369.601%20136.525%20383.895%20148.871%20398.781V321.068C148.903%20318.235%20150.63%20316.266%20150.63%20316.266%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M82.6138%20393.819C82.6138%20393.819%2080.8549%20391.866%2080.8549%20389.017V354.698C91.0739%20366.832%20100.173%20380.549%20110.728%20392.891C114.646%20397.613%20122.051%20405.568%20124.929%20408.001C143.448%20426.137%20173.833%20434.46%20202.188%20424.424V423.288C192.48%20425.369%20179.879%20424.664%20167.533%20419.622C158.273%20416.213%20145.048%20405.92%20137.419%20396.46C127.52%20385.175%20106.474%20356.203%20106.474%20356.203C94.3682%20340.484%2083.701%20326.158%2071.339%20311.319V389.017C71.339%20391.866%2069.5801%20393.819%2069.5801%20393.819%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20d%3D%22M481.67%20191.235C453.316%20201.256%20422.915%20192.932%20404.412%20174.796C401.533%20172.379%20394.113%20164.408%20390.195%20159.686C379.656%20147.344%20370.556%20133.626%20360.337%20121.493V155.812C360.337%20158.677%20362.096%20160.63%20362.096%20160.63H349.063C349.063%20160.63%20350.806%20158.677%20350.822%20155.812V78.1143C363.184%2092.9688%20373.835%20107.295%20385.941%20122.998C385.941%20122.998%20406.987%20151.97%20416.886%20163.271C424.53%20172.715%20437.74%20183.008%20447.015%20186.417C459.361%20191.459%20471.963%20192.164%20481.67%20190.083V191.235ZM297.536%2053.5917V52.4392C325.858%2042.4348%20356.275%2050.7584%20374.778%2068.9103C377.641%2071.3114%20385.077%2079.2508%20388.995%2083.9889C399.55%2096.3462%20408.618%20110.032%20418.869%20122.181V87.8625C418.869%2085.0293%20417.094%2083.0605%20417.094%2083.0605H430.095C430.095%2083.0605%20428.384%2085.0293%20428.336%2087.8625V165.576C415.99%20150.706%20405.339%20136.396%20393.249%20120.693C393.249%20120.693%20372.187%2091.6882%20362.304%2080.4193C354.676%2070.9592%20341.45%2060.6507%20332.191%2057.2413C319.813%2052.2311%20307.243%2051.4948%20297.536%2053.5917ZM274.555%20237.575H504.651V7.26758H274.555V237.575Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22726%22%20height%3D%22436%22%20viewBox%3D%220%200%20726%20436%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M668.716%20384.23C670.907%20384.23%20686.787%20384.903%20686.659%20353.209C686.547%20323.788%20671.098%20324.668%20668.572%20324.668H668.62C666.093%20324.668%20650.644%20323.788%20650.516%20353.209C650.372%20384.903%20666.253%20384.23%20668.428%20384.23H668.716ZM668.78%20395.019C663.518%20395.099%20629.135%20393.914%20629.135%20354.697C629.279%20315.609%20663.31%20315.08%20668.572%20315.112C673.865%20315.08%20707.881%20315.609%20707.945%20354.697C708.041%20393.914%20673.625%20395.099%20668.364%20395.019%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M619.299%20319.531V329.263C615.301%20327.551%20613.014%20326.302%20608.76%20325.15C605.417%20324.413%20591.104%20321.02%20584.228%20328.223C581.349%20331.136%20580.485%20336.483%20586.243%20340.644C594.351%20345.895%20605.945%20348.328%20615.46%20356.107C621.713%20361.037%20623.728%20366.848%20622.145%20375.732C620.514%20384.76%20610.663%20392.043%20601.819%20393.899C588.945%20396.493%20574.472%20395.276%20562.99%20390.426L563.07%20380.838C573.609%20385.256%20590.001%20390.874%20600.172%20381.942C602.987%20379.365%20604.682%20375.732%20603.21%20371.954C600.924%20365.023%20582.021%20360.893%20570.49%20352.297C559.04%20345.27%20560.079%20333.201%20564.077%20326.558C574.856%20310.391%20602.187%20314.857%20619.299%20319.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M553.268%20319.531V329.263C549.238%20327.551%20546.967%20326.302%20542.729%20325.15C539.419%20324.413%20525.042%20321.02%20518.213%20328.223C515.303%20331.136%20514.423%20336.483%20520.132%20340.644C528.304%20345.895%20539.883%20348.328%20549.43%20356.107C555.667%20361.037%20557.666%20366.848%20556.067%20375.732C554.468%20384.76%20544.569%20392.043%20535.773%20393.899C522.899%20396.493%20508.426%20395.276%20496.976%20390.426L497.024%20380.838C507.578%20385.256%20523.955%20390.874%20534.174%20381.942C536.892%20379.365%20538.619%20375.732%20537.18%20371.954C534.829%20365.023%20515.958%20360.893%20504.444%20352.297C493.01%20345.27%20494.033%20333.201%20498.015%20326.558C508.794%20310.391%20536.141%20314.857%20553.268%20319.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M282.711%20319.531V329.263C278.649%20327.551%20276.41%20326.302%20272.125%20325.15C268.798%20324.413%20254.485%20321.02%20247.656%20328.223C244.73%20331.136%20243.866%20336.483%20249.623%20340.644C257.716%20345.895%20269.342%20348.328%20278.857%20356.107C285.11%20361.037%20287.109%20366.848%20285.526%20375.732C283.927%20384.76%20274.012%20392.043%20265.216%20393.899C252.358%20396.493%20237.853%20395.276%20226.387%20390.426L226.435%20380.838C237.022%20385.256%20253.398%20390.874%20263.601%20381.942C266.367%20379.365%20268.063%20375.732%20266.575%20371.954C264.288%20365.023%20245.417%20360.893%20233.871%20352.297C222.437%20345.27%20223.492%20333.201%20227.426%20326.558C238.237%20310.391%20265.6%20314.857%20282.711%20319.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M185.27%20385.896C195.697%20386.936%20208.443%20385.336%20218.614%20385.063L218.662%20393.723H163.457C163.457%20393.723%20165.184%20391.93%20165.184%20388.921V321.116C165.184%20318.122%20163.457%20316.266%20163.457%20316.266H218.662L218.614%20324.925C208.443%20324.749%20195.697%20323.085%20185.27%20324.157C185.27%20324.157%20185.254%20348.103%20185.254%20349.736C193.81%20350.264%20203.869%20350.344%20211.866%20349.336V358.524C204.013%20357.788%20193.73%20357.644%20185.254%20358.092L185.27%20361.037%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M456.146%20385.896C466.573%20386.936%20479.287%20385.336%20489.506%20385.063L489.522%20393.723H434.396C434.396%20393.723%20436.092%20391.93%20436.092%20388.921V321.116C436.092%20318.122%20434.396%20316.266%20434.396%20316.266H489.522L489.506%20324.925C479.287%20324.749%20466.573%20323.085%20456.146%20324.157C456.146%20324.157%20456.114%20348.103%20456.114%20349.736C464.686%20350.264%20474.745%20350.344%20482.789%20349.336V358.524C474.921%20357.788%20464.606%20357.644%20456.146%20358.092V361.037%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M381.063%20326.03V352.169C387.716%20352.169%20395.776%20353.05%20400.398%20347.703C404.332%20342.469%20403.66%20335.73%20401.054%20330.944C396.432%20323.149%20381.063%20326.03%20381.063%20326.03ZM381.191%20361.741V388.921C381.207%20391.914%20382.918%20393.771%20382.918%20393.771L359.346%20393.723C359.346%20393.723%20361.041%20391.93%20361.057%20388.921L361.041%20321.116C361.041%20318.122%20359.346%20316.266%20359.346%20316.266H399.55C410.473%20316.73%20422.035%20322.764%20422.371%20335.906C422.499%20346.631%20417.749%20352.825%20410.601%20356.251C409.242%20356.891%20409.338%20356.731%20408.874%20357.051C413.943%20368.848%20418.533%20377.54%20424.642%20388.921C425.889%20391.914%20428.352%20393.723%20428.352%20393.723H403.996C403.996%20393.723%20405.467%20391.914%20403.964%20388.921C403.964%20388.921%20395.312%20368.512%20391.25%20361.741%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M314.967%20326.126L314.887%20355.227C321.619%20355.675%20329.616%20356.427%20334.221%20351.049C338.155%20345.83%20337.516%20335.73%20334.877%20331.024C330.255%20323.181%20314.967%20326.126%20314.967%20326.126ZM315.047%20388.921C315.047%20391.914%20316.758%20393.755%20316.758%20393.755L293.201%20393.723C293.201%20393.723%20294.944%20391.93%20294.944%20388.921V321.116C294.944%20318.122%20293.201%20316.266%20293.201%20316.266H332.142C341.914%20316.618%20349.51%20321.116%20352.724%20330.592C355.155%20338.899%20354.835%20349.672%20348.918%20356.427C341.034%20366.896%20314.999%20365.359%20314.999%20365.359%22%20fill%3D%22white%22%2F%3E%20%3Cmask%20id%3D%22mask0_6822_35397%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%2218%22%20y%3D%227%22%20width%3D%22691%22%20height%3D%22428%22%3E%20%3Cpath%20d%3D%22M18.0547%207.28352H708.04V434.461H18.0547V7.28352Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_35397)%22%3E%20%3Cpath%20d%3D%22M137.629%20316.266C137.629%20316.266%20139.388%20318.235%20139.388%20321.068V355.371C129.152%20343.238%20120.085%20329.535%20109.53%20317.194C105.612%20312.456%2098.1598%20304.517%2095.3132%20302.1C76.8101%20283.964%2046.377%20275.64%2018.0547%20285.644V286.797C27.762%20284.684%2040.3478%20285.436%2052.7098%20290.431C61.9853%20293.84%2075.1944%20304.164%2082.8387%20313.624C92.722%20324.893%20113.768%20353.882%20113.768%20353.882C125.858%20369.601%20136.525%20383.895%20148.871%20398.781V321.068C148.903%20318.235%20150.63%20316.266%20150.63%20316.266%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M82.6138%20393.819C82.6138%20393.819%2080.8549%20391.866%2080.8549%20389.017V354.698C91.0739%20366.832%20100.173%20380.549%20110.728%20392.891C114.646%20397.613%20122.051%20405.568%20124.929%20408.001C143.448%20426.137%20173.833%20434.46%20202.188%20424.424V423.288C192.48%20425.369%20179.879%20424.664%20167.533%20419.622C158.273%20416.213%20145.048%20405.92%20137.419%20396.46C127.52%20385.175%20106.474%20356.203%20106.474%20356.203C94.3682%20340.484%2083.701%20326.158%2071.339%20311.319V389.017C71.339%20391.866%2069.5801%20393.819%2069.5801%20393.819%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20d%3D%22M481.67%20191.235C453.316%20201.256%20422.915%20192.932%20404.412%20174.796C401.533%20172.379%20394.113%20164.408%20390.195%20159.686C379.656%20147.344%20370.556%20133.626%20360.337%20121.493V155.812C360.337%20158.677%20362.096%20160.63%20362.096%20160.63H349.063C349.063%20160.63%20350.806%20158.677%20350.822%20155.812V78.1143C363.184%2092.9688%20373.835%20107.295%20385.941%20122.998C385.941%20122.998%20406.987%20151.97%20416.886%20163.271C424.53%20172.715%20437.74%20183.008%20447.015%20186.417C459.361%20191.459%20471.963%20192.164%20481.67%20190.083V191.235ZM297.536%2053.5917V52.4392C325.858%2042.4348%20356.275%2050.7584%20374.778%2068.9103C377.641%2071.3114%20385.077%2079.2508%20388.995%2083.9889C399.55%2096.3462%20408.618%20110.032%20418.869%20122.181V87.8625C418.869%2085.0293%20417.094%2083.0605%20417.094%2083.0605H430.095C430.095%2083.0605%20428.384%2085.0293%20428.336%2087.8625V165.576C415.99%20150.706%20405.339%20136.396%20393.249%20120.693C393.249%20120.693%20372.187%2091.6882%20362.304%2080.4193C354.676%2070.9592%20341.45%2060.6507%20332.191%2057.2413C319.813%2052.2311%20307.243%2051.4948%20297.536%2053.5917ZM274.555%20237.575H504.651V7.26758H274.555V237.575Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--netflix { aspect-ratio:2.2470; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22755%22%20height%3D%22336%22%20viewBox%3D%220%200%20755%20336%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M632.655%20253.542C642.703%20254.518%20652.746%20255.565%20662.766%20256.649L684.887%20201.954L705.915%20261.694C716.704%20263.048%20727.488%20264.468%20738.238%20265.952L701.374%20161.192L738.25%2070.0072H707.019L706.694%2070.4552L686.773%20119.715L669.284%2070.0144H638.446L670.282%20160.479L632.657%20253.542H632.655ZM609.333%20251.399V70.0072H578.508V248.854C588.789%20249.648%20599.076%20250.503%20609.333%20251.399ZM377.777%20241.256C386.098%20241.256%20394.41%20241.318%20402.707%20241.386V174.745H439.738V146.367H402.71V98.4194H445.358V70.0072H371.764V241.28C373.763%20241.28%20375.771%20241.248%20377.777%20241.256ZM282.071%20242.99C292.34%20242.624%20302.619%20242.315%20312.913%20242.065V98.4242H341.725V70.0144H253.259V98.4242H282.076V242.99H282.071ZM46.3199%20262.116V154.047L82.8187%20257.752C94.0429%20256.49%20105.284%20255.303%20116.556%20254.181V70.0096H86.9794V181.951L47.5945%2070.0096H16.75V266H16.9352C26.7068%20264.647%2036.5122%20263.361%2046.3199%20262.116ZM223.535%2098.417V70.0096H149.934V251.11C174.421%20248.993%20198.937%20247.218%20223.475%20245.785V217.352C209.246%20218.18%20195.047%20219.134%20180.881%20220.196V174.758H217.912V146.362H180.881V98.417H223.535ZM506.448%20215.993V70H475.488V243.093C500.116%20243.999%20524.647%20245.261%20549.097%20246.85V218.399C534.907%20217.482%20520.693%20216.687%20506.448%20215.993Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22755%22%20height%3D%22336%22%20viewBox%3D%220%200%20755%20336%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M632.655%20253.542C642.703%20254.518%20652.746%20255.565%20662.766%20256.649L684.887%20201.954L705.915%20261.694C716.704%20263.048%20727.488%20264.468%20738.238%20265.952L701.374%20161.192L738.25%2070.0072H707.019L706.694%2070.4552L686.773%20119.715L669.284%2070.0144H638.446L670.282%20160.479L632.657%20253.542H632.655ZM609.333%20251.399V70.0072H578.508V248.854C588.789%20249.648%20599.076%20250.503%20609.333%20251.399ZM377.777%20241.256C386.098%20241.256%20394.41%20241.318%20402.707%20241.386V174.745H439.738V146.367H402.71V98.4194H445.358V70.0072H371.764V241.28C373.763%20241.28%20375.771%20241.248%20377.777%20241.256ZM282.071%20242.99C292.34%20242.624%20302.619%20242.315%20312.913%20242.065V98.4242H341.725V70.0144H253.259V98.4242H282.076V242.99H282.071ZM46.3199%20262.116V154.047L82.8187%20257.752C94.0429%20256.49%20105.284%20255.303%20116.556%20254.181V70.0096H86.9794V181.951L47.5945%2070.0096H16.75V266H16.9352C26.7068%20264.647%2036.5122%20263.361%2046.3199%20262.116ZM223.535%2098.417V70.0096H149.934V251.11C174.421%20248.993%20198.937%20247.218%20223.475%20245.785V217.352C209.246%20218.18%20195.047%20219.134%20180.881%20220.196V174.758H217.912V146.362H180.881V98.417H223.535ZM506.448%20215.993V70H475.488V243.093C500.116%20243.999%20524.647%20245.261%20549.097%20246.85V218.399C534.907%20217.482%20520.693%20216.687%20506.448%20215.993Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--pepsico { aspect-ratio:2.9394; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22776%22%20height%3D%22264%22%20viewBox%3D%220%200%20776%20264%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M202.175%20158.477H219.849C226.745%20158.477%20229.367%20160.852%20229.367%20166.668C229.367%20172.269%20226.743%20174.641%20219.849%20174.641H202.175V158.477ZM174.794%20217.305H202.176V193.384H231.505C250.924%20193.384%20257.915%20181.968%20257.915%20167.21C257.915%20150.078%20250.726%20140.383%20231.308%20140.383H174.794V217.305ZM266.945%20140.383H340.641V159.125H294.327V169.468H337.345V188.217H294.327V198.559H340.641V217.305H266.945V140.383ZM379.484%20158.477H397.157C404.051%20158.477%20406.675%20160.852%20406.675%20166.668C406.675%20172.269%20404.051%20174.641%20397.157%20174.641H379.484V158.477ZM352.102%20217.305H379.484V193.384H408.808C428.232%20193.384%20435.224%20181.968%20435.224%20167.21C435.224%20150.078%20428.035%20140.383%20408.613%20140.383H352.102V217.305ZM461.728%20184.661C448.33%20182.395%20442.799%20173.776%20442.799%20163.006C442.799%20143.071%20460.375%20137.689%20482.897%20137.689C513.772%20137.689%20526.495%20146.628%20527.467%20162.898H495.616C495.616%20159.773%20493.965%20157.83%20491.445%20156.754C489.016%20155.572%20485.911%20155.142%20482.897%20155.142C474.741%20155.142%20471.928%20157.401%20471.928%20160.636C471.928%20162.787%20472.798%20164.193%20475.517%20164.622L508.24%20170.007C522.03%20172.269%20530.576%20179.379%20530.576%20192.412C530.576%20211.164%20516.787%20219.998%20486.004%20219.998C464.934%20219.998%20441.92%20216.767%20441.824%20194.142H474.838C474.931%20196.725%20475.809%20198.448%20477.754%20199.634C479.787%20200.713%20482.799%20201.253%20487.07%20201.253C495.614%20201.253%20497.948%20198.665%20497.948%20195.001C497.948%20192.739%20496.683%20190.478%20493.001%20189.835L461.728%20184.661ZM539.505%20140.383H566.886V217.305H539.505V140.383ZM668.364%20187.354C666.616%20197.482%20663.504%20205.67%20656.706%20211.27C650.011%20216.873%20639.52%20219.998%20622.822%20219.998C606.219%20219.998%20575.437%20218.703%20575.437%20178.846C575.437%20138.981%20606.219%20137.688%20622.822%20137.688C639.325%20137.688%20664.768%20140.056%20668.364%20170.549H637.486C636.708%20165.049%20633.402%20157.078%20622.822%20157.078C611.65%20157.078%20604.563%20163.219%20604.563%20178.845C604.563%20194.466%20611.459%20200.603%20621.46%20200.603C630.104%20200.603%20635.251%20196.617%20637.484%20187.353H668.364V187.354ZM704.191%20178.847C704.191%20163.22%20711.282%20157.081%20722.45%20157.081C733.615%20157.081%20740.707%20163.221%20740.707%20178.847C740.707%20194.469%20733.615%20200.605%20722.45%20200.605C711.282%20200.604%20704.191%20194.468%20704.191%20178.847ZM675.058%20178.847C675.058%20218.703%20705.84%20220%20722.449%20220C739.054%20220%20769.836%20218.704%20769.836%20178.847C769.836%20138.983%20739.054%20137.689%20722.449%20137.689C705.84%20137.689%20675.058%20138.981%20675.058%20178.847ZM133.419%20141.146C135.187%20104.241%20103.295%2062.6805%2059.8172%2057.5434L59.8914%2057.0391C102.754%2057.0391%20135.612%2096.6376%20135.612%20127.877C135.571%20134.38%20135.057%20138.41%20134.139%20141.335L133.419%20141.146ZM130.822%20145.837C127.97%20149.314%20124.383%20152.815%20120.181%20156.139C112.451%20111.771%2079.7807%2072.9746%2056.6829%2061.6507L56.1881%2061.9948C79.4172%2081.0197%20107.123%20117.97%20117.897%20157.879C112.401%20161.908%20106.465%20165.301%20100.202%20167.992C78.2818%20143.046%2057.8461%2094.9367%2051.2606%2064.4079L50.5908%2064.6091C50.7393%2094.2431%2071.8223%20144.55%2097.5331%20169.097C91.6362%20171.426%2085.5059%20173.116%2079.2475%20174.139C54.6018%20164.396%2037.0589%20133.189%2037.0589%20101.221C37.0589%2080.3526%2043.4349%2067.443%2044.6684%2064.801L44.1432%2064.5932C42.651%2066.846%2033.3105%2079.749%2033.3105%20102.279C33.3105%20138.413%2051.1677%20166.033%2074.8757%20174.731C66.3977%20175.661%2057.826%20175.26%2049.4726%20173.541L49.2962%20174.091C51.8323%20175.023%2060.4366%20178.627%2073.5625%20178.627C103.251%20178.627%20123.321%20160.219%20131.4%20146.227L130.822%20145.837Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M70.5934%2044C48.0871%2044%2021.6973%2060.2095%2021.6973%2075.0265C21.6973%2080.7579%2026.9511%2085.5999%2037.8249%2085.5999C63.0674%2085.5999%2086.5193%2068.2931%2086.5193%2054.8355C86.5193%2047.7539%2079.7043%2044%2070.5934%2044ZM79.5783%2054.4172C79.5783%2065.7609%2057.7499%2079.6275%2039.5027%2079.6275C31.4409%2079.6275%2027.0851%2076.4614%2027.0851%2071.2369C27.0851%2059.7303%2049.1615%2046.0993%2066.2773%2046.0993C77.4362%2046.0993%2079.5783%2051.7659%2079.5783%2054.4172Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.7325%2081.8863C12.0998%2082.9783%209.56641%2087.9288%209.56641%2093.001C9.56641%20102.408%2019.0912%20111.142%2036.6102%20111.142C70.3125%20111.142%20109.25%2086.3854%20109.25%2063.4054C109.25%2053.0901%2099.4652%2047.4818%2092.6715%2046.3223L92.5441%2046.7247C94.6571%2047.3918%20102.398%2050.9829%20102.398%2060.1717C102.398%2078.4818%2068.0191%20103.43%2033.7744%20103.43C20.6643%20103.43%2012.4049%2096.972%2012.4049%2087.5647C12.4049%2084.5892%2013.0256%2082.6288%2013.1901%2082.061L12.7325%2081.8863Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M123.144%2065.125C124.069%2065.8252%20129.62%2070.4421%20129.62%2079.173C129.62%20108.942%2082.8804%20138.215%2041.5593%20138.215C16.9176%20138.215%205.68442%20126.073%206.18182%20115.292H6.62351C7.58912%20120.891%2015.5899%20130.909%2037.157%20130.909C78.5298%20130.909%20124.724%20100.62%20124.724%2074.0822C124.724%2069.5301%20123.485%2066.6935%20122.785%2065.4321L123.144%2065.125Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M138.767%2092.916C138.961%2093.55%20139.968%2096.3999%20139.968%20100.863C139.968%20133.978%2092.6673%20162.329%2051.5293%20162.329C30.3561%20162.329%2019.2993%20152.065%2016.9648%20147.897L17.3415%20147.619C23.2002%20152.732%2034.7398%20156.617%2048.2067%20156.617C84.5392%20156.617%20138.753%20129.032%20138.269%2093.0365L138.767%2092.916Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22776%22%20height%3D%22264%22%20viewBox%3D%220%200%20776%20264%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M202.175%20158.477H219.849C226.745%20158.477%20229.367%20160.852%20229.367%20166.668C229.367%20172.269%20226.743%20174.641%20219.849%20174.641H202.175V158.477ZM174.794%20217.305H202.176V193.384H231.505C250.924%20193.384%20257.915%20181.968%20257.915%20167.21C257.915%20150.078%20250.726%20140.383%20231.308%20140.383H174.794V217.305ZM266.945%20140.383H340.641V159.125H294.327V169.468H337.345V188.217H294.327V198.559H340.641V217.305H266.945V140.383ZM379.484%20158.477H397.157C404.051%20158.477%20406.675%20160.852%20406.675%20166.668C406.675%20172.269%20404.051%20174.641%20397.157%20174.641H379.484V158.477ZM352.102%20217.305H379.484V193.384H408.808C428.232%20193.384%20435.224%20181.968%20435.224%20167.21C435.224%20150.078%20428.035%20140.383%20408.613%20140.383H352.102V217.305ZM461.728%20184.661C448.33%20182.395%20442.799%20173.776%20442.799%20163.006C442.799%20143.071%20460.375%20137.689%20482.897%20137.689C513.772%20137.689%20526.495%20146.628%20527.467%20162.898H495.616C495.616%20159.773%20493.965%20157.83%20491.445%20156.754C489.016%20155.572%20485.911%20155.142%20482.897%20155.142C474.741%20155.142%20471.928%20157.401%20471.928%20160.636C471.928%20162.787%20472.798%20164.193%20475.517%20164.622L508.24%20170.007C522.03%20172.269%20530.576%20179.379%20530.576%20192.412C530.576%20211.164%20516.787%20219.998%20486.004%20219.998C464.934%20219.998%20441.92%20216.767%20441.824%20194.142H474.838C474.931%20196.725%20475.809%20198.448%20477.754%20199.634C479.787%20200.713%20482.799%20201.253%20487.07%20201.253C495.614%20201.253%20497.948%20198.665%20497.948%20195.001C497.948%20192.739%20496.683%20190.478%20493.001%20189.835L461.728%20184.661ZM539.505%20140.383H566.886V217.305H539.505V140.383ZM668.364%20187.354C666.616%20197.482%20663.504%20205.67%20656.706%20211.27C650.011%20216.873%20639.52%20219.998%20622.822%20219.998C606.219%20219.998%20575.437%20218.703%20575.437%20178.846C575.437%20138.981%20606.219%20137.688%20622.822%20137.688C639.325%20137.688%20664.768%20140.056%20668.364%20170.549H637.486C636.708%20165.049%20633.402%20157.078%20622.822%20157.078C611.65%20157.078%20604.563%20163.219%20604.563%20178.845C604.563%20194.466%20611.459%20200.603%20621.46%20200.603C630.104%20200.603%20635.251%20196.617%20637.484%20187.353H668.364V187.354ZM704.191%20178.847C704.191%20163.22%20711.282%20157.081%20722.45%20157.081C733.615%20157.081%20740.707%20163.221%20740.707%20178.847C740.707%20194.469%20733.615%20200.605%20722.45%20200.605C711.282%20200.604%20704.191%20194.468%20704.191%20178.847ZM675.058%20178.847C675.058%20218.703%20705.84%20220%20722.449%20220C739.054%20220%20769.836%20218.704%20769.836%20178.847C769.836%20138.983%20739.054%20137.689%20722.449%20137.689C705.84%20137.689%20675.058%20138.981%20675.058%20178.847ZM133.419%20141.146C135.187%20104.241%20103.295%2062.6805%2059.8172%2057.5434L59.8914%2057.0391C102.754%2057.0391%20135.612%2096.6376%20135.612%20127.877C135.571%20134.38%20135.057%20138.41%20134.139%20141.335L133.419%20141.146ZM130.822%20145.837C127.97%20149.314%20124.383%20152.815%20120.181%20156.139C112.451%20111.771%2079.7807%2072.9746%2056.6829%2061.6507L56.1881%2061.9948C79.4172%2081.0197%20107.123%20117.97%20117.897%20157.879C112.401%20161.908%20106.465%20165.301%20100.202%20167.992C78.2818%20143.046%2057.8461%2094.9367%2051.2606%2064.4079L50.5908%2064.6091C50.7393%2094.2431%2071.8223%20144.55%2097.5331%20169.097C91.6362%20171.426%2085.5059%20173.116%2079.2475%20174.139C54.6018%20164.396%2037.0589%20133.189%2037.0589%20101.221C37.0589%2080.3526%2043.4349%2067.443%2044.6684%2064.801L44.1432%2064.5932C42.651%2066.846%2033.3105%2079.749%2033.3105%20102.279C33.3105%20138.413%2051.1677%20166.033%2074.8757%20174.731C66.3977%20175.661%2057.826%20175.26%2049.4726%20173.541L49.2962%20174.091C51.8323%20175.023%2060.4366%20178.627%2073.5625%20178.627C103.251%20178.627%20123.321%20160.219%20131.4%20146.227L130.822%20145.837Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M70.5934%2044C48.0871%2044%2021.6973%2060.2095%2021.6973%2075.0265C21.6973%2080.7579%2026.9511%2085.5999%2037.8249%2085.5999C63.0674%2085.5999%2086.5193%2068.2931%2086.5193%2054.8355C86.5193%2047.7539%2079.7043%2044%2070.5934%2044ZM79.5783%2054.4172C79.5783%2065.7609%2057.7499%2079.6275%2039.5027%2079.6275C31.4409%2079.6275%2027.0851%2076.4614%2027.0851%2071.2369C27.0851%2059.7303%2049.1615%2046.0993%2066.2773%2046.0993C77.4362%2046.0993%2079.5783%2051.7659%2079.5783%2054.4172Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.7325%2081.8863C12.0998%2082.9783%209.56641%2087.9288%209.56641%2093.001C9.56641%20102.408%2019.0912%20111.142%2036.6102%20111.142C70.3125%20111.142%20109.25%2086.3854%20109.25%2063.4054C109.25%2053.0901%2099.4652%2047.4818%2092.6715%2046.3223L92.5441%2046.7247C94.6571%2047.3918%20102.398%2050.9829%20102.398%2060.1717C102.398%2078.4818%2068.0191%20103.43%2033.7744%20103.43C20.6643%20103.43%2012.4049%2096.972%2012.4049%2087.5647C12.4049%2084.5892%2013.0256%2082.6288%2013.1901%2082.061L12.7325%2081.8863Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M123.144%2065.125C124.069%2065.8252%20129.62%2070.4421%20129.62%2079.173C129.62%20108.942%2082.8804%20138.215%2041.5593%20138.215C16.9176%20138.215%205.68442%20126.073%206.18182%20115.292H6.62351C7.58912%20120.891%2015.5899%20130.909%2037.157%20130.909C78.5298%20130.909%20124.724%20100.62%20124.724%2074.0822C124.724%2069.5301%20123.485%2066.6935%20122.785%2065.4321L123.144%2065.125Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M138.767%2092.916C138.961%2093.55%20139.968%2096.3999%20139.968%20100.863C139.968%20133.978%2092.6673%20162.329%2051.5293%20162.329C30.3561%20162.329%2019.2993%20152.065%2016.9648%20147.897L17.3415%20147.619C23.2002%20152.732%2034.7398%20156.617%2048.2067%20156.617C84.5392%20156.617%20138.753%20129.032%20138.269%2093.0365L138.767%2092.916Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--philips { aspect-ratio:2.9634; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22972%22%20height%3D%22328%22%20viewBox%3D%220%200%20972%20328%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M675.031%20112.207V71.666C727.797%2070.87%20729.933%2070.1697%20747.378%2070.6198C774.192%2071.2973%20790.363%2078.9655%20801.991%2090.7526C813.2%20102.114%20822.089%20119.439%20821.677%20144.587C821.434%20159.066%20812.501%20212.331%20747.813%20215.656C740.228%20216.333%20722.812%20215.736%20711.751%20215.994L722.687%20174.4C748.314%20176.538%20768.648%20168.442%20769.73%20144.158C770.915%20116.896%20746.776%20108.24%20722.694%20112.509L675.031%20112.207Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M722.664%20255.2L675.031%20255.193V103.566L722.664%20103.875V255.2Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M893.876%20136.307L932.973%20150.248C958.999%20160.533%20964.529%20181.403%20964.279%20199.377C963.705%20241.068%20930.476%20256.697%20903.987%20258.954C873.868%20261.513%20850.553%20256.463%20842.716%20255.188V209.818C866.555%20217.066%20894.296%20216.777%20903.663%20213.122C910.749%20210.357%20916.132%20206.132%20915.704%20200.588C915.469%20197.579%20915.167%20193.754%20906.211%20189.921L870.157%20176.828C847.004%20168.482%20838.071%20146.476%20839.036%20126.873C840.996%2087.2683%20872.602%2067.2228%20904.158%2068.3815C913.894%2068.7346%20927.01%2068.506%20946.084%2071.1466V116.095C924.713%20111.119%20914.69%20111.2%20903.664%20112.572C891.331%20114.097%20885.792%20120.482%20886.05%20127.303C886.175%20130.76%20889.622%20134.55%20893.879%20136.246%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M225.244%20140.06H276.537L276.522%2071.8359H324.162V255.231H276.537V181.604H225.244L225.237%20255.231H177.547V71.8359H225.237L225.244%20140.06Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M416.7%2071.8359H369.031V255.231H416.7V71.8359Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M629.705%2071.8359H582.028V255.231H629.705V71.8359Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M509.241%20213.592H558.391V255.216L461.557%20255.231V71.8359H509.241V213.592Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M7.71484%20112.207V71.666C60.4819%2070.87%2062.6103%2070.1697%2080.0678%2070.6198C106.871%2071.2973%20123.043%2078.9655%20134.679%2090.7526C145.879%20102.114%20154.776%20119.439%20154.364%20144.587C154.113%20159.066%20145.179%20212.331%2080.4863%20215.656C72.9174%20216.333%2056.0458%20215.736%2044.9854%20215.994L55.3881%20174.4C81.0244%20176.538%20101.352%20168.442%20102.407%20144.158C103.592%20116.896%2079.446%20108.24%2055.3762%20112.509L7.71484%20112.207Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M55.4121%20255.202L7.71484%20255.195V106.715L55.3762%20107.018L55.4121%20255.202Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22972%22%20height%3D%22328%22%20viewBox%3D%220%200%20972%20328%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M675.031%20112.207V71.666C727.797%2070.87%20729.933%2070.1697%20747.378%2070.6198C774.192%2071.2973%20790.363%2078.9655%20801.991%2090.7526C813.2%20102.114%20822.089%20119.439%20821.677%20144.587C821.434%20159.066%20812.501%20212.331%20747.813%20215.656C740.228%20216.333%20722.812%20215.736%20711.751%20215.994L722.687%20174.4C748.314%20176.538%20768.648%20168.442%20769.73%20144.158C770.915%20116.896%20746.776%20108.24%20722.694%20112.509L675.031%20112.207Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M722.664%20255.2L675.031%20255.193V103.566L722.664%20103.875V255.2Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M893.876%20136.307L932.973%20150.248C958.999%20160.533%20964.529%20181.403%20964.279%20199.377C963.705%20241.068%20930.476%20256.697%20903.987%20258.954C873.868%20261.513%20850.553%20256.463%20842.716%20255.188V209.818C866.555%20217.066%20894.296%20216.777%20903.663%20213.122C910.749%20210.357%20916.132%20206.132%20915.704%20200.588C915.469%20197.579%20915.167%20193.754%20906.211%20189.921L870.157%20176.828C847.004%20168.482%20838.071%20146.476%20839.036%20126.873C840.996%2087.2683%20872.602%2067.2228%20904.158%2068.3815C913.894%2068.7346%20927.01%2068.506%20946.084%2071.1466V116.095C924.713%20111.119%20914.69%20111.2%20903.664%20112.572C891.331%20114.097%20885.792%20120.482%20886.05%20127.303C886.175%20130.76%20889.622%20134.55%20893.879%20136.246%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M225.244%20140.06H276.537L276.522%2071.8359H324.162V255.231H276.537V181.604H225.244L225.237%20255.231H177.547V71.8359H225.237L225.244%20140.06Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M416.7%2071.8359H369.031V255.231H416.7V71.8359Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M629.705%2071.8359H582.028V255.231H629.705V71.8359Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M509.241%20213.592H558.391V255.216L461.557%20255.231V71.8359H509.241V213.592Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M7.71484%20112.207V71.666C60.4819%2070.87%2062.6103%2070.1697%2080.0678%2070.6198C106.871%2071.2973%20123.043%2078.9655%20134.679%2090.7526C145.879%20102.114%20154.776%20119.439%20154.364%20144.587C154.113%20159.066%20145.179%20212.331%2080.4863%20215.656C72.9174%20216.333%2056.0458%20215.736%2044.9854%20215.994L55.3881%20174.4C81.0244%20176.538%20101.352%20168.442%20102.407%20144.158C103.592%20116.896%2079.446%20108.24%2055.3762%20112.509L7.71484%20112.207Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M55.4121%20255.202L7.71484%20255.195V106.715L55.3762%20107.018L55.4121%20255.202Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--vitol { aspect-ratio:2.2025; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221066%22%20height%3D%22484%22%20viewBox%3D%220%200%201066%20484%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M585.641%20397.937H641.983V170.277H585.641V397.937Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M585.641%2083.5254H641.983V135.042H585.641V83.5254Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M783.913%20170.2V211.982H742.702V324.59C742.702%20335.153%20744.277%20342.19%20747.453%20345.709C750.628%20349.219%20756.961%20350.986%20766.47%20350.986C769.646%20350.986%20772.685%20350.843%20775.59%20350.547C778.494%20350.259%20781.271%20349.811%20783.913%20349.219V397.615C779.163%20398.486%20773.871%20399.078%20768.062%20399.365C762.254%20399.661%20756.563%20399.814%20751.017%20399.814C742.296%20399.814%20734.04%20399.154%20726.25%20397.834C718.452%20396.515%20711.585%20393.952%20705.649%20390.138C699.697%20386.332%20694.997%20380.894%20691.568%20373.857C688.138%20366.828%20686.411%20357.584%20686.411%20346.149V211.982H652.33V170.2H686.411V102.021H742.702V170.2H783.913Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M840.323%20310.746C841.907%20319.389%20844.616%20327.171%20848.452%20334.055C852.271%20340.948%20857.36%20346.454%20863.702%20350.548C870.044%20354.659%20877.969%20356.714%20887.486%20356.714C896.995%20356.714%20904.989%20354.659%20911.458%20350.548C917.935%20346.454%20923.092%20340.948%20926.919%20334.055C930.755%20327.171%20933.464%20319.389%20935.039%20310.746C936.623%20302.093%20937.419%20293.221%20937.419%20284.129C937.419%20275.036%20936.623%20266.097%20935.039%20257.3C933.464%20248.504%20930.755%20240.732%20926.919%20233.991C923.092%20227.241%20917.935%20221.744%20911.458%20217.498C904.989%20213.244%20896.995%20211.112%20887.486%20211.112C877.969%20211.112%20870.044%20213.244%20863.702%20217.498C857.36%20221.744%20852.271%20227.241%20848.452%20233.991C844.616%20240.732%20841.907%20248.504%20840.323%20257.3C838.731%20266.097%20837.935%20275.036%20837.935%20284.129C837.935%20293.221%20838.731%20302.093%20840.323%20310.746ZM789.197%20234.642C794.218%20219.841%20801.348%20207.23%20810.603%20196.818C819.841%20186.415%20830.941%20178.346%20843.888%20172.629C856.835%20166.903%20871.365%20164.053%20887.486%20164.053C903.591%20164.053%20918.198%20166.903%20931.28%20172.629C944.353%20178.346%20955.522%20186.415%20964.768%20196.818C974.023%20207.23%20981.144%20219.841%20986.174%20234.642C991.186%20249.452%20993.693%20265.944%20993.693%20284.129C993.693%20302.313%20991.186%20318.738%20986.174%20333.396C981.144%20348.061%20974.023%20360.605%20964.768%20371.008C955.522%20381.419%20944.353%20389.412%20931.28%20394.986C918.198%20400.542%20903.591%20403.334%20887.486%20403.334C871.365%20403.334%20856.835%20400.542%20843.888%20394.986C830.941%20389.412%20819.841%20381.419%20810.603%20371.008C801.348%20360.605%20794.218%20348.061%20789.197%20333.396C784.168%20318.738%20781.661%20302.313%20781.661%20284.129C781.661%20265.944%20784.168%20249.452%20789.197%20234.642Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1060.74%20397.352H1004.46V83.2871H1060.74V397.352Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M522.923%2083.5254H588.401L494.176%20397.946H423.948L332.195%2083.5254H395.15L460.628%20311.38L522.923%2083.5254Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M145.465%20336.017C171.722%20336.017%20190.63%20322.873%20202.501%20307.531C208.64%20299.606%20213.543%20289.693%20216.032%20278.004C221.604%20251.844%20210.291%20227.858%20198.759%20212.71C192.62%20204.633%20185.727%20197.714%20178.776%20189.831C172.366%20182.591%20164.737%20175.064%20158.987%20166.547C154.915%20160.491%20150.808%20153.378%20147.548%20145.758C146.532%20143.389%20145.186%20139.592%20144.373%20137.951V137.646C144.356%20137.689%20144.322%20137.748%20144.297%20137.79C144.271%20137.748%20144.237%20137.689%20144.212%20137.646V137.951C143.399%20139.592%20142.053%20143.389%20141.054%20145.758C137.794%20153.378%20133.67%20160.491%20129.597%20166.547C123.865%20175.064%20116.219%20182.591%20109.817%20189.831C102.866%20197.714%2095.9817%20204.633%2089.8344%20212.71C78.3103%20227.858%2066.9809%20251.844%2072.5609%20278.004C75.0503%20289.693%2079.9614%20299.606%2086.0833%20307.531C97.9715%20322.873%20116.862%20336.017%20143.128%20336.017%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M142.569%20381.046C122.018%20381.046%20105.185%20375.972%2090.5028%20368.985C75.9728%20362.059%2063.7289%20352.543%2053.6443%20341.1C34.635%20319.549%2018.5725%20285.633%2024.4912%20243.75C27.0991%20225.27%2033.7544%20210.173%2042.1879%20196.953C50.5368%20183.843%2060.4351%20171.469%2070.9262%20160.965C81.4003%20150.452%2094.3385%20141.351%20103.627%20128.918C112.848%20116.586%20119.326%20102.022%20120.045%2080.666H26.2608C14.669%2080.666%205.26172%2090.0543%205.26172%20101.633V378.602C5.26172%20390.181%2014.669%20399.569%2026.2608%20399.569H261.239C272.839%20399.569%20282.238%20390.181%20282.238%20378.602V101.633C282.238%2090.0543%20272.839%2080.666%20261.239%2080.666H167.454C168.174%20102.022%20174.66%20116.586%20183.881%20128.918C193.161%20141.351%20206.099%20150.452%20216.573%20160.965C227.065%20171.469%20236.963%20183.843%20245.312%20196.953C253.745%20210.173%20260.401%20225.27%20263.017%20243.75C268.936%20285.633%20252.865%20319.549%20233.855%20341.1C223.779%20352.543%20211.527%20362.059%20196.997%20368.985C182.323%20375.972%20165.481%20381.046%20144.931%20381.046%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221066%22%20height%3D%22484%22%20viewBox%3D%220%200%201066%20484%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M585.641%20397.937H641.983V170.277H585.641V397.937Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M585.641%2083.5254H641.983V135.042H585.641V83.5254Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M783.913%20170.2V211.982H742.702V324.59C742.702%20335.153%20744.277%20342.19%20747.453%20345.709C750.628%20349.219%20756.961%20350.986%20766.47%20350.986C769.646%20350.986%20772.685%20350.843%20775.59%20350.547C778.494%20350.259%20781.271%20349.811%20783.913%20349.219V397.615C779.163%20398.486%20773.871%20399.078%20768.062%20399.365C762.254%20399.661%20756.563%20399.814%20751.017%20399.814C742.296%20399.814%20734.04%20399.154%20726.25%20397.834C718.452%20396.515%20711.585%20393.952%20705.649%20390.138C699.697%20386.332%20694.997%20380.894%20691.568%20373.857C688.138%20366.828%20686.411%20357.584%20686.411%20346.149V211.982H652.33V170.2H686.411V102.021H742.702V170.2H783.913Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M840.323%20310.746C841.907%20319.389%20844.616%20327.171%20848.452%20334.055C852.271%20340.948%20857.36%20346.454%20863.702%20350.548C870.044%20354.659%20877.969%20356.714%20887.486%20356.714C896.995%20356.714%20904.989%20354.659%20911.458%20350.548C917.935%20346.454%20923.092%20340.948%20926.919%20334.055C930.755%20327.171%20933.464%20319.389%20935.039%20310.746C936.623%20302.093%20937.419%20293.221%20937.419%20284.129C937.419%20275.036%20936.623%20266.097%20935.039%20257.3C933.464%20248.504%20930.755%20240.732%20926.919%20233.991C923.092%20227.241%20917.935%20221.744%20911.458%20217.498C904.989%20213.244%20896.995%20211.112%20887.486%20211.112C877.969%20211.112%20870.044%20213.244%20863.702%20217.498C857.36%20221.744%20852.271%20227.241%20848.452%20233.991C844.616%20240.732%20841.907%20248.504%20840.323%20257.3C838.731%20266.097%20837.935%20275.036%20837.935%20284.129C837.935%20293.221%20838.731%20302.093%20840.323%20310.746ZM789.197%20234.642C794.218%20219.841%20801.348%20207.23%20810.603%20196.818C819.841%20186.415%20830.941%20178.346%20843.888%20172.629C856.835%20166.903%20871.365%20164.053%20887.486%20164.053C903.591%20164.053%20918.198%20166.903%20931.28%20172.629C944.353%20178.346%20955.522%20186.415%20964.768%20196.818C974.023%20207.23%20981.144%20219.841%20986.174%20234.642C991.186%20249.452%20993.693%20265.944%20993.693%20284.129C993.693%20302.313%20991.186%20318.738%20986.174%20333.396C981.144%20348.061%20974.023%20360.605%20964.768%20371.008C955.522%20381.419%20944.353%20389.412%20931.28%20394.986C918.198%20400.542%20903.591%20403.334%20887.486%20403.334C871.365%20403.334%20856.835%20400.542%20843.888%20394.986C830.941%20389.412%20819.841%20381.419%20810.603%20371.008C801.348%20360.605%20794.218%20348.061%20789.197%20333.396C784.168%20318.738%20781.661%20302.313%20781.661%20284.129C781.661%20265.944%20784.168%20249.452%20789.197%20234.642Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1060.74%20397.352H1004.46V83.2871H1060.74V397.352Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M522.923%2083.5254H588.401L494.176%20397.946H423.948L332.195%2083.5254H395.15L460.628%20311.38L522.923%2083.5254Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M145.465%20336.017C171.722%20336.017%20190.63%20322.873%20202.501%20307.531C208.64%20299.606%20213.543%20289.693%20216.032%20278.004C221.604%20251.844%20210.291%20227.858%20198.759%20212.71C192.62%20204.633%20185.727%20197.714%20178.776%20189.831C172.366%20182.591%20164.737%20175.064%20158.987%20166.547C154.915%20160.491%20150.808%20153.378%20147.548%20145.758C146.532%20143.389%20145.186%20139.592%20144.373%20137.951V137.646C144.356%20137.689%20144.322%20137.748%20144.297%20137.79C144.271%20137.748%20144.237%20137.689%20144.212%20137.646V137.951C143.399%20139.592%20142.053%20143.389%20141.054%20145.758C137.794%20153.378%20133.67%20160.491%20129.597%20166.547C123.865%20175.064%20116.219%20182.591%20109.817%20189.831C102.866%20197.714%2095.9817%20204.633%2089.8344%20212.71C78.3103%20227.858%2066.9809%20251.844%2072.5609%20278.004C75.0503%20289.693%2079.9614%20299.606%2086.0833%20307.531C97.9715%20322.873%20116.862%20336.017%20143.128%20336.017%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M142.569%20381.046C122.018%20381.046%20105.185%20375.972%2090.5028%20368.985C75.9728%20362.059%2063.7289%20352.543%2053.6443%20341.1C34.635%20319.549%2018.5725%20285.633%2024.4912%20243.75C27.0991%20225.27%2033.7544%20210.173%2042.1879%20196.953C50.5368%20183.843%2060.4351%20171.469%2070.9262%20160.965C81.4003%20150.452%2094.3385%20141.351%20103.627%20128.918C112.848%20116.586%20119.326%20102.022%20120.045%2080.666H26.2608C14.669%2080.666%205.26172%2090.0543%205.26172%20101.633V378.602C5.26172%20390.181%2014.669%20399.569%2026.2608%20399.569H261.239C272.839%20399.569%20282.238%20390.181%20282.238%20378.602V101.633C282.238%2090.0543%20272.839%2080.666%20261.239%2080.666H167.454C168.174%20102.022%20174.66%20116.586%20183.881%20128.918C193.161%20141.351%20206.099%20150.452%20216.573%20160.965C227.065%20171.469%20236.963%20183.843%20245.312%20196.953C253.745%20210.173%20260.401%20225.27%20263.017%20243.75C268.936%20285.633%20252.865%20319.549%20233.855%20341.1C223.779%20352.543%20211.527%20362.059%20196.997%20368.985C182.323%20375.972%20165.481%20381.046%20144.931%20381.046%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--volkswagen { aspect-ratio:4.3333; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22975%22%20height%3D%22225%22%20viewBox%3D%2225%2045%20975%20225%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M883.764%2070.1885C891.474%2070.1885%20898.954%2071.2175%20906.076%2073.1481L882.381%20126.078L859.142%2073.8047C867.151%2071.3106%20874.94%2070.1885%20883.764%2070.1885ZM868.863%20156.379L852.643%20192.394L814.214%20106.12C820.723%2096.9327%20828.973%2089.1074%20838.488%2083.0902L869.624%20153.194H897.571L928.853%2083.0804C936.52%2087.8628%20943.391%2093.8261%20949.198%20100.735C949.998%20101.754%20950.792%20102.793%20951.558%20103.851L912.006%20192.399L895.898%20156.384H868.863V156.379ZM844.011%20231.09C816.868%20216.767%20798.323%20188.283%20798.323%20155.542C798.323%20147.657%20799.279%20140.244%20801.29%20132.992L845.291%20231.717C844.776%20231.472%20844.526%20231.335%20844.011%20231.09ZM882.243%20240.076C874.739%20240.076%20867.313%20239.111%20860.128%20237.2L883.46%20184.505L906.811%20236.573C898.836%20238.891%20890.562%20240.071%20882.243%20240.076ZM922.703%20229.953L965.497%20133.923C967.135%20140.606%20967.984%20147.471%20967.984%20154.424C967.944%20186.005%20950.552%20215.013%20922.703%20229.953ZM883.671%20261.249C942.008%20261.249%20989.466%20213.842%20989.466%20155.556C989.466%2097.2708%20942.013%2049.8633%20883.671%2049.8633C825.329%2049.8633%20777.875%2097.2757%20777.875%20155.556C777.875%20213.837%20825.334%20261.249%20883.671%20261.249Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M83.8171%20200.111H64.3992L34.1172%20118.046H53.7706L69.3677%20164.351C71.2021%20169.79%2072.8256%20175.308%2074.2234%20180.879C75.6066%20175.21%2077.1123%20170.236%2078.9565%20164.925L95.1373%20118.046H114.555L83.8171%20200.111ZM151.415%20174.68C151.415%20181.487%20146.588%20187.612%20139.344%20187.612C133.022%20187.612%20127.161%20182.3%20127.161%20174.911C127.161%20167.987%20131.761%20161.862%20139.231%20161.862C146.01%20161.867%20151.415%20167.414%20151.415%20174.68ZM168.022%20174.68C168.022%20159.113%20155.912%20147.652%20139.339%20147.652C122.158%20147.652%20110.543%20159.579%20110.543%20174.568C110.543%20190.503%20122.854%20201.841%20138.535%20201.841C157.413%20201.841%20168.022%20188.43%20168.022%20174.68ZM180.598%20200.111V113.504H197.034V200.111H180.598ZM244.129%20200.111L228.164%20176.391V200.111H211.728V113.504H228.164V170.27L244.129%20149.48H264.268L244.713%20172.809L265.651%20200.111H244.129ZM290.322%20201.63C278.669%20201.63%20272.636%20197.828%20269.507%20189.621L283.426%20184.206C284.701%20187.548%20287.384%20189.973%20290.798%20189.973C294.089%20189.973%20296.09%20188.699%20296.09%20186.509C296.09%20179.12%20271.243%20182.349%20271.243%20164.699C271.243%20155.468%20278.781%20147.843%20291.735%20147.843C301.284%20147.843%20307.975%20151.307%20311.325%20159.74L298.16%20164.817C296.542%20160.779%20293.731%20159.505%20291.024%20159.505C288.91%20159.505%20286.551%20160.779%20286.551%20163.087C286.551%20171.167%20311.437%20167.468%20311.437%20185.23C311.442%20195.51%20302.324%20201.63%20290.322%20201.63ZM390.821%20200.111H375.307L366.631%20175.2C365.713%20172.72%20365.017%20170.163%20364.546%20167.571C364.011%20170.187%20363.315%20172.769%20362.466%20175.313L353.78%20200.107H337.575L315.7%20149.357H332.827L342.435%20173.813C343.593%20176.587%20344.402%20179.708%20345.329%20182.712C346.138%20179.708%20346.948%20176.469%20347.762%20174.048L356.326%20149.357H373.228L381.212%20172.426C382.375%20175.886%20383.41%20179.125%20384.106%20182.481C385.264%20178.669%20386.421%20175.308%20387.579%20172.426L396.604%20149.357H413.388L390.821%20200.111ZM457.423%20175.611C457.423%20182.545%20452.905%20188.9%20445.259%20188.9C437.382%20188.9%20432.629%20182.54%20432.629%20175.019C432.629%20167.277%20437.843%20162.087%20444.68%20162.087C452.444%20162.092%20457.423%20168.325%20457.423%20175.611ZM473.064%20200.107V149.49H456.849V155.379C454.068%20151.107%20448.04%20147.873%20440.972%20147.873C425.238%20147.873%20415.766%20159.539%20415.766%20175.494C415.766%20190.87%20424.777%20201.851%20439.466%20201.851C447.343%20201.851%20452.675%20199.078%20456.849%20194.908V200.107H473.064ZM526.222%20174.137C526.222%20180.952%20521.94%20186.96%20514.661%20186.96C507.029%20186.96%20502.404%20181.766%20502.404%20174.259C502.404%20167.556%20507.147%20161.887%20514.082%20161.887C522.401%20161.887%20526.222%20168.707%20526.222%20174.137ZM541.976%20195.29V149.445H525.751V155.203C522.631%20150.249%20516.859%20148.064%20509.801%20148.064C496.048%20148.064%20485.537%20159.353%20485.537%20174.602C485.537%20188.004%20493.159%20199.685%20509.34%20199.685C515.701%20199.685%20521.243%20197.833%20525.751%20192.864V200.033C525.751%20208.27%20522.058%20212.68%20514.431%20212.68C509.457%20212.68%20504.719%20209.544%20504.719%20205.129H488.431C488.431%20216.262%20497.553%20224.95%20513.391%20224.95C522.636%20224.95%20529.67%20222.749%20535.315%20217.306C540.367%20212.21%20541.976%20206.526%20541.976%20195.29ZM590.827%20169.021H570.492C571.071%20163.401%20575.024%20159.27%20580.954%20159.27C587.114%20159.275%20590.827%20164.204%20590.827%20169.021ZM607.047%20174.112C607.047%20157.3%20596.473%20147.652%20581.072%20147.652C565.288%20147.652%20554.527%20159.51%20554.527%20175.146C554.527%20193.021%20567.25%20201.822%20580.954%20201.822C592.676%20201.822%20600.033%20197.774%20605.9%20190.12L595.32%20183.167C591.985%20187.607%20587.933%20189.763%20582.695%20189.763C575.613%20189.763%20570.728%20184.985%20570.374%20178.723H606.939C607.047%20176.768%20607.047%20175.038%20607.047%20174.112ZM653.657%20200.111V172.054C653.657%20167.428%20652.161%20162.097%20645.937%20162.097C642.72%20162.097%20635.927%20163.954%20635.927%20173.441V200.107H619.496V149.426H635.927V156.109C638.34%20152.763%20643.063%20148.274%20652.269%20148.274C658.743%20148.274%20662.918%20150.577%20665.571%20153.228C668.813%20156.457%20670.088%20160.608%20670.088%20168.007V200.111H653.657Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22975%22%20height%3D%22225%22%20viewBox%3D%2225%2045%20975%20225%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M883.764%2070.1885C891.474%2070.1885%20898.954%2071.2175%20906.076%2073.1481L882.381%20126.078L859.142%2073.8047C867.151%2071.3106%20874.94%2070.1885%20883.764%2070.1885ZM868.863%20156.379L852.643%20192.394L814.214%20106.12C820.723%2096.9327%20828.973%2089.1074%20838.488%2083.0902L869.624%20153.194H897.571L928.853%2083.0804C936.52%2087.8628%20943.391%2093.8261%20949.198%20100.735C949.998%20101.754%20950.792%20102.793%20951.558%20103.851L912.006%20192.399L895.898%20156.384H868.863V156.379ZM844.011%20231.09C816.868%20216.767%20798.323%20188.283%20798.323%20155.542C798.323%20147.657%20799.279%20140.244%20801.29%20132.992L845.291%20231.717C844.776%20231.472%20844.526%20231.335%20844.011%20231.09ZM882.243%20240.076C874.739%20240.076%20867.313%20239.111%20860.128%20237.2L883.46%20184.505L906.811%20236.573C898.836%20238.891%20890.562%20240.071%20882.243%20240.076ZM922.703%20229.953L965.497%20133.923C967.135%20140.606%20967.984%20147.471%20967.984%20154.424C967.944%20186.005%20950.552%20215.013%20922.703%20229.953ZM883.671%20261.249C942.008%20261.249%20989.466%20213.842%20989.466%20155.556C989.466%2097.2708%20942.013%2049.8633%20883.671%2049.8633C825.329%2049.8633%20777.875%2097.2757%20777.875%20155.556C777.875%20213.837%20825.334%20261.249%20883.671%20261.249Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M83.8171%20200.111H64.3992L34.1172%20118.046H53.7706L69.3677%20164.351C71.2021%20169.79%2072.8256%20175.308%2074.2234%20180.879C75.6066%20175.21%2077.1123%20170.236%2078.9565%20164.925L95.1373%20118.046H114.555L83.8171%20200.111ZM151.415%20174.68C151.415%20181.487%20146.588%20187.612%20139.344%20187.612C133.022%20187.612%20127.161%20182.3%20127.161%20174.911C127.161%20167.987%20131.761%20161.862%20139.231%20161.862C146.01%20161.867%20151.415%20167.414%20151.415%20174.68ZM168.022%20174.68C168.022%20159.113%20155.912%20147.652%20139.339%20147.652C122.158%20147.652%20110.543%20159.579%20110.543%20174.568C110.543%20190.503%20122.854%20201.841%20138.535%20201.841C157.413%20201.841%20168.022%20188.43%20168.022%20174.68ZM180.598%20200.111V113.504H197.034V200.111H180.598ZM244.129%20200.111L228.164%20176.391V200.111H211.728V113.504H228.164V170.27L244.129%20149.48H264.268L244.713%20172.809L265.651%20200.111H244.129ZM290.322%20201.63C278.669%20201.63%20272.636%20197.828%20269.507%20189.621L283.426%20184.206C284.701%20187.548%20287.384%20189.973%20290.798%20189.973C294.089%20189.973%20296.09%20188.699%20296.09%20186.509C296.09%20179.12%20271.243%20182.349%20271.243%20164.699C271.243%20155.468%20278.781%20147.843%20291.735%20147.843C301.284%20147.843%20307.975%20151.307%20311.325%20159.74L298.16%20164.817C296.542%20160.779%20293.731%20159.505%20291.024%20159.505C288.91%20159.505%20286.551%20160.779%20286.551%20163.087C286.551%20171.167%20311.437%20167.468%20311.437%20185.23C311.442%20195.51%20302.324%20201.63%20290.322%20201.63ZM390.821%20200.111H375.307L366.631%20175.2C365.713%20172.72%20365.017%20170.163%20364.546%20167.571C364.011%20170.187%20363.315%20172.769%20362.466%20175.313L353.78%20200.107H337.575L315.7%20149.357H332.827L342.435%20173.813C343.593%20176.587%20344.402%20179.708%20345.329%20182.712C346.138%20179.708%20346.948%20176.469%20347.762%20174.048L356.326%20149.357H373.228L381.212%20172.426C382.375%20175.886%20383.41%20179.125%20384.106%20182.481C385.264%20178.669%20386.421%20175.308%20387.579%20172.426L396.604%20149.357H413.388L390.821%20200.111ZM457.423%20175.611C457.423%20182.545%20452.905%20188.9%20445.259%20188.9C437.382%20188.9%20432.629%20182.54%20432.629%20175.019C432.629%20167.277%20437.843%20162.087%20444.68%20162.087C452.444%20162.092%20457.423%20168.325%20457.423%20175.611ZM473.064%20200.107V149.49H456.849V155.379C454.068%20151.107%20448.04%20147.873%20440.972%20147.873C425.238%20147.873%20415.766%20159.539%20415.766%20175.494C415.766%20190.87%20424.777%20201.851%20439.466%20201.851C447.343%20201.851%20452.675%20199.078%20456.849%20194.908V200.107H473.064ZM526.222%20174.137C526.222%20180.952%20521.94%20186.96%20514.661%20186.96C507.029%20186.96%20502.404%20181.766%20502.404%20174.259C502.404%20167.556%20507.147%20161.887%20514.082%20161.887C522.401%20161.887%20526.222%20168.707%20526.222%20174.137ZM541.976%20195.29V149.445H525.751V155.203C522.631%20150.249%20516.859%20148.064%20509.801%20148.064C496.048%20148.064%20485.537%20159.353%20485.537%20174.602C485.537%20188.004%20493.159%20199.685%20509.34%20199.685C515.701%20199.685%20521.243%20197.833%20525.751%20192.864V200.033C525.751%20208.27%20522.058%20212.68%20514.431%20212.68C509.457%20212.68%20504.719%20209.544%20504.719%20205.129H488.431C488.431%20216.262%20497.553%20224.95%20513.391%20224.95C522.636%20224.95%20529.67%20222.749%20535.315%20217.306C540.367%20212.21%20541.976%20206.526%20541.976%20195.29ZM590.827%20169.021H570.492C571.071%20163.401%20575.024%20159.27%20580.954%20159.27C587.114%20159.275%20590.827%20164.204%20590.827%20169.021ZM607.047%20174.112C607.047%20157.3%20596.473%20147.652%20581.072%20147.652C565.288%20147.652%20554.527%20159.51%20554.527%20175.146C554.527%20193.021%20567.25%20201.822%20580.954%20201.822C592.676%20201.822%20600.033%20197.774%20605.9%20190.12L595.32%20183.167C591.985%20187.607%20587.933%20189.763%20582.695%20189.763C575.613%20189.763%20570.728%20184.985%20570.374%20178.723H606.939C607.047%20176.768%20607.047%20175.038%20607.047%20174.112ZM653.657%20200.111V172.054C653.657%20167.428%20652.161%20162.097%20645.937%20162.097C642.72%20162.097%20635.927%20163.954%20635.927%20173.441V200.107H619.496V149.426H635.927V156.109C638.34%20152.763%20643.063%20148.274%20652.269%20148.274C658.743%20148.274%20662.918%20150.577%20665.571%20153.228C668.813%20156.457%20670.088%20160.608%20670.088%20168.007V200.111H653.657Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--zeiss { aspect-ratio:3.4783; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22400%22%20height%3D%22115%22%20viewBox%3D%22150%20110%20400%20115%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M195.149%20130.881C184.268%20130.946%20175.275%20139.386%20174.523%20150.242H165.412V121.58H236.464C236.464%20121.58%20237.033%20143.725%20216.028%20167.198C216.028%20167.198%20196.035%20190.418%20195.528%20200.604H207.043C223.557%20200.604%20225.265%20181.244%20225.265%20181.244H234.755V209.968H162.122C162.122%20209.968%20159.464%20188.203%20184.646%20161.82C184.646%20161.82%20200.147%20144.484%20203.753%20130.818L195.149%20130.881Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M376.099%20209.905V200.541H373.947C370.04%20200.548%20366.868%20197.385%20366.861%20193.479C366.861%20193.471%20366.861%20193.463%20366.861%20193.455V138.031C366.855%20134.124%20370.017%20130.951%20373.924%20130.945C373.932%20130.945%20373.939%20130.945%20373.947%20130.945H376.099V121.581H328.963V130.945H331.114C335.029%20130.912%20338.23%20134.058%20338.263%20137.973C338.263%20137.992%20338.263%20138.012%20338.263%20138.032V193.456C338.262%20197.371%20335.088%20200.544%20331.173%20200.542C331.154%20200.542%20331.134%20200.542%20331.114%20200.542H328.963V209.906L376.099%20209.905Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M319.221%20209.968V181.244H309.73C309.73%20181.244%20307.959%20200.604%20291.445%20200.604H281.955V170.487H285.308C289.23%20170.461%20292.431%20173.62%20292.457%20177.542C292.457%20177.573%20292.457%20177.606%20292.457%20177.637V181.18H301.821V150.242H292.457V153.848C292.483%20157.771%20289.325%20160.972%20285.402%20160.998C285.371%20160.998%20285.339%20160.998%20285.307%20160.998H281.954V130.881H291.444C307.958%20130.881%20309.73%20150.241%20309.73%20150.241H319.22V121.517H244.373V130.944H246.524C250.432%20130.937%20253.604%20134.1%20253.611%20138.006C253.611%20138.014%20253.611%20138.022%20253.611%20138.03V193.454C253.617%20197.362%20250.455%20200.534%20246.548%20200.541C246.54%20200.541%20246.532%20200.541%20246.524%20200.541H244.373V209.904L319.221%20209.968Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M425.577%20130.881C436.462%20130.909%20445.458%20139.378%20446.14%20150.242H455.313V121.58H387.425C387.425%20121.58%20376.669%20135.626%20404.761%20167.198C404.761%20167.198%20424.691%20190.418%20425.197%20200.604H413.745C397.231%20200.604%20395.46%20181.244%20395.46%20181.244H385.906V209.968H454.364C454.364%20209.968%20466.828%20196.555%20436.015%20161.82C436.015%20161.82%20419.881%20145.244%20416.908%20130.818L425.577%20130.881Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M504.979%20130.881C515.852%20130.939%20524.831%20139.392%20525.542%20150.242H534.653V121.58H466.828C466.828%20121.58%20456.072%20135.626%20484.163%20167.198C484.163%20167.198%20504.093%20190.418%20504.599%20200.604H493.147C476.634%20200.604%20474.862%20181.244%20474.862%20181.244H465.372V209.968H533.829C533.829%20209.968%20546.23%20196.555%20515.481%20161.82C515.481%20161.82%20499.347%20145.244%20496.436%20130.818L504.979%20130.881Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22400%22%20height%3D%22115%22%20viewBox%3D%22150%20110%20400%20115%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M195.149%20130.881C184.268%20130.946%20175.275%20139.386%20174.523%20150.242H165.412V121.58H236.464C236.464%20121.58%20237.033%20143.725%20216.028%20167.198C216.028%20167.198%20196.035%20190.418%20195.528%20200.604H207.043C223.557%20200.604%20225.265%20181.244%20225.265%20181.244H234.755V209.968H162.122C162.122%20209.968%20159.464%20188.203%20184.646%20161.82C184.646%20161.82%20200.147%20144.484%20203.753%20130.818L195.149%20130.881Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M376.099%20209.905V200.541H373.947C370.04%20200.548%20366.868%20197.385%20366.861%20193.479C366.861%20193.471%20366.861%20193.463%20366.861%20193.455V138.031C366.855%20134.124%20370.017%20130.951%20373.924%20130.945C373.932%20130.945%20373.939%20130.945%20373.947%20130.945H376.099V121.581H328.963V130.945H331.114C335.029%20130.912%20338.23%20134.058%20338.263%20137.973C338.263%20137.992%20338.263%20138.012%20338.263%20138.032V193.456C338.262%20197.371%20335.088%20200.544%20331.173%20200.542C331.154%20200.542%20331.134%20200.542%20331.114%20200.542H328.963V209.906L376.099%20209.905Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M319.221%20209.968V181.244H309.73C309.73%20181.244%20307.959%20200.604%20291.445%20200.604H281.955V170.487H285.308C289.23%20170.461%20292.431%20173.62%20292.457%20177.542C292.457%20177.573%20292.457%20177.606%20292.457%20177.637V181.18H301.821V150.242H292.457V153.848C292.483%20157.771%20289.325%20160.972%20285.402%20160.998C285.371%20160.998%20285.339%20160.998%20285.307%20160.998H281.954V130.881H291.444C307.958%20130.881%20309.73%20150.241%20309.73%20150.241H319.22V121.517H244.373V130.944H246.524C250.432%20130.937%20253.604%20134.1%20253.611%20138.006C253.611%20138.014%20253.611%20138.022%20253.611%20138.03V193.454C253.617%20197.362%20250.455%20200.534%20246.548%20200.541C246.54%20200.541%20246.532%20200.541%20246.524%20200.541H244.373V209.904L319.221%20209.968Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M425.577%20130.881C436.462%20130.909%20445.458%20139.378%20446.14%20150.242H455.313V121.58H387.425C387.425%20121.58%20376.669%20135.626%20404.761%20167.198C404.761%20167.198%20424.691%20190.418%20425.197%20200.604H413.745C397.231%20200.604%20395.46%20181.244%20395.46%20181.244H385.906V209.968H454.364C454.364%20209.968%20466.828%20196.555%20436.015%20161.82C436.015%20161.82%20419.881%20145.244%20416.908%20130.818L425.577%20130.881Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M504.979%20130.881C515.852%20130.939%20524.831%20139.392%20525.542%20150.242H534.653V121.58H466.828C466.828%20121.58%20456.072%20135.626%20484.163%20167.198C484.163%20167.198%20504.093%20190.418%20504.599%20200.604H493.147C476.634%20200.604%20474.862%20181.244%20474.862%20181.244H465.372V209.968H533.829C533.829%20209.968%20546.23%20196.555%20515.481%20161.82C515.481%20161.82%20499.347%20145.244%20496.436%20130.818L504.979%20130.881Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--airbnb { aspect-ratio:3.2112; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221034%22%20height%3D%22322%22%20viewBox%3D%220%200%201034%20322%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23347)%22%3E%20%3Cpath%20d%3D%22M544.941%2080.9029C544.941%2092.5065%20535.573%20101.854%20523.945%20101.854C512.316%20101.854%20502.948%2092.5065%20502.948%2080.9029C502.948%2069.2993%20511.993%2059.952%20523.945%2059.952C535.896%2060.2743%20544.941%2069.6216%20544.941%2080.9029ZM458.371%20123.127C458.371%20125.061%20458.371%20128.284%20458.371%20128.284C458.371%20128.284%20448.357%20115.391%20427.037%20115.391C391.828%20115.391%20364.371%20142.144%20364.371%20179.211C364.371%20215.956%20391.505%20243.031%20427.037%20243.031C448.68%20243.031%20458.371%20229.816%20458.371%20229.816V235.295C458.371%20237.874%20460.309%20239.808%20462.893%20239.808H489.058V118.615C489.058%20118.615%20465.154%20118.615%20462.893%20118.615C460.309%20118.615%20458.371%20120.871%20458.371%20123.127ZM458.371%20200.807C453.525%20207.898%20443.835%20214.022%20432.206%20214.022C411.532%20214.022%20395.704%20201.129%20395.704%20179.211C395.704%20157.293%20411.532%20144.4%20432.206%20144.4C443.512%20144.4%20453.848%20150.847%20458.371%20157.616V200.807ZM508.439%20118.615H539.45V239.808H508.439V118.615ZM971.656%20115.391C950.336%20115.391%20940.323%20128.284%20940.323%20128.284V60.2743H909.312V239.808C909.312%20239.808%20933.216%20239.808%20935.477%20239.808C938.061%20239.808%20940%20237.552%20940%20235.295V229.816C940%20229.816%20950.013%20243.031%20971.333%20243.031C1006.54%20243.031%201034%20215.956%201034%20179.211C1034%20142.466%201006.54%20115.391%20971.656%20115.391ZM966.488%20213.7C954.536%20213.7%20945.168%20207.576%20940.323%20200.484V157.293C945.168%20150.847%20955.505%20144.078%20966.488%20144.078C987.161%20144.078%201002.99%20156.971%201002.99%20178.889C1002.99%20200.807%20987.161%20213.7%20966.488%20213.7ZM893.161%20167.93V240.13H862.151V171.475C862.151%20151.491%20855.69%20143.433%20838.247%20143.433C828.879%20143.433%20819.189%20148.268%20813.051%20155.359V239.808H782.041V118.615H806.591C809.175%20118.615%20811.113%20120.871%20811.113%20123.127V128.284C820.158%20118.937%20832.109%20115.391%20844.061%20115.391C857.628%20115.391%20868.934%20119.259%20877.979%20126.995C888.962%20136.02%20893.161%20147.624%20893.161%20167.93ZM706.776%20115.391C685.457%20115.391%20675.443%20128.284%20675.443%20128.284V60.2743H644.433V239.808C644.433%20239.808%20668.336%20239.808%20670.597%20239.808C673.182%20239.808%20675.12%20237.552%20675.12%20235.295V229.816C675.12%20229.816%20685.134%20243.031%20706.453%20243.031C741.663%20243.031%20769.12%20215.956%20769.12%20179.211C769.443%20142.466%20741.986%20115.391%20706.776%20115.391ZM701.608%20213.7C689.656%20213.7%20680.288%20207.576%20675.443%20200.484V157.293C680.288%20150.847%20690.625%20144.078%20701.608%20144.078C722.281%20144.078%20738.109%20156.971%20738.109%20178.889C738.109%20200.807%20722.281%20213.7%20701.608%20213.7ZM617.622%20115.391C626.989%20115.391%20631.835%20117.003%20631.835%20117.003V145.69C631.835%20145.69%20605.993%20136.987%20589.841%20155.359V240.13H558.831V118.615C558.831%20118.615%20582.735%20118.615%20584.996%20118.615C587.58%20118.615%20589.518%20120.871%20589.518%20123.127V128.284C595.333%20121.516%20607.931%20115.391%20617.622%20115.391ZM295.567%20228.849C293.951%20224.981%20292.336%20220.791%20290.721%20217.245C288.137%20211.443%20285.553%20205.964%20283.292%20200.807L282.969%20200.484C260.68%20152.136%20236.776%20103.143%20211.58%2054.7948L210.611%2052.8609C208.027%2048.026%20205.443%2042.8689%20202.859%2037.7117C199.628%2031.9099%20196.398%2025.7858%20191.23%2019.984C180.893%207.09109%20166.034%200%20150.206%200C134.055%200%20119.518%207.09109%20108.859%2019.3393C104.013%2025.1411%20100.46%2031.2653%2097.2298%2037.0671C94.6456%2042.2242%2092.0614%2047.3814%2089.4772%2052.2162L88.5082%2054.1501C63.6353%20102.498%2039.4085%20151.491%2017.1198%20199.84L16.7968%20200.484C14.5357%20205.642%2011.9515%20211.121%209.36727%20216.923C7.75215%20220.468%206.13703%20224.336%204.52191%20228.527C0.322599%20240.452%20-0.969497%20251.734%200.645623%20263.337C4.19889%20287.512%2020.3501%20307.818%2042.6387%20316.843C51.0374%20320.388%2059.759%20322%2068.8037%20322C71.3879%20322%2074.6181%20321.678%2077.2023%20321.355C87.8621%20320.066%2098.8449%20316.521%20109.505%20310.396C122.749%20302.983%20135.347%20292.346%20149.56%20276.875C163.773%20292.346%20176.694%20302.983%20189.615%20310.396C200.274%20316.521%20211.257%20320.066%20221.917%20321.355C224.501%20321.678%20227.732%20322%20230.316%20322C239.36%20322%20248.405%20320.388%20256.481%20316.843C279.092%20307.818%20294.921%20287.189%20298.474%20263.337C301.058%20252.056%20299.766%20240.775%20295.567%20228.849ZM149.883%20245.61C132.439%20223.692%20121.134%20203.063%20117.257%20185.658C115.642%20178.244%20115.319%20171.798%20116.288%20165.996C116.934%20160.839%20118.872%20156.326%20121.457%20152.458C127.594%20143.756%20137.931%20138.276%20149.883%20138.276C161.835%20138.276%20172.494%20143.433%20178.309%20152.458C180.893%20156.326%20182.831%20160.839%20183.477%20165.996C184.446%20171.798%20184.123%20178.567%20182.508%20185.658C178.632%20202.741%20167.326%20223.369%20149.883%20245.61ZM278.769%20260.759C276.508%20277.52%20265.202%20292.024%20249.374%20298.47C241.622%20301.694%20233.223%20302.661%20224.824%20301.694C216.749%20300.727%20208.673%20298.148%20200.274%20293.313C188.646%20286.867%20177.017%20276.875%20163.45%20262.048C184.769%20235.94%20197.69%20212.088%20202.536%20190.815C204.797%20180.823%20205.12%20171.798%20204.151%20163.417C202.859%20155.359%20199.951%20147.946%20195.429%20141.5C185.415%20126.995%20168.618%20118.615%20149.883%20118.615C131.147%20118.615%20114.35%20127.317%20104.336%20141.5C99.814%20147.946%2096.9068%20155.359%2095.6147%20163.417C94.3226%20171.798%2094.6456%20181.145%2097.2298%20190.815C102.075%20212.088%20115.319%20236.262%20136.316%20262.37C123.072%20277.197%20111.12%20287.189%2099.491%20293.636C91.0924%20298.47%2083.0168%20301.049%2074.9412%20302.016C66.2195%20302.983%2057.8209%20301.694%2050.3913%20298.793C34.5631%20292.346%2023.2573%20277.842%2020.9961%20261.081C20.0271%20253.023%2020.6731%20244.965%2023.9034%20235.94C24.8724%20232.717%2026.4875%20229.493%2028.1027%20225.626C30.3638%20220.468%2032.948%20214.989%2035.5322%20209.51L35.8552%20208.865C58.1439%20160.839%2082.0477%20111.846%20106.921%2064.1421L107.89%2062.2082C110.474%2057.3734%20113.058%2052.2162%20115.642%2047.3814C118.226%2042.2242%20121.134%2037.3894%20124.687%2033.1992C131.47%2025.4635%20140.515%2021.2733%20150.529%2021.2733C160.543%2021.2733%20169.587%2025.4635%20176.371%2033.1992C179.924%2037.3894%20182.831%2042.2242%20185.415%2047.3814C188%2052.2162%20190.584%2057.3734%20193.168%2062.2082L194.137%2064.1421C218.687%20112.168%20242.591%20161.161%20264.879%20209.187V209.51C267.463%20214.667%20269.725%20220.468%20272.309%20225.626C273.924%20229.493%20275.539%20232.717%20276.508%20235.94C279.092%20244.32%20280.061%20252.378%20278.769%20260.759Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23347%22%3E%20%3Crect%20width%3D%221034%22%20height%3D%22322%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221034%22%20height%3D%22322%22%20viewBox%3D%220%200%201034%20322%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23347)%22%3E%20%3Cpath%20d%3D%22M544.941%2080.9029C544.941%2092.5065%20535.573%20101.854%20523.945%20101.854C512.316%20101.854%20502.948%2092.5065%20502.948%2080.9029C502.948%2069.2993%20511.993%2059.952%20523.945%2059.952C535.896%2060.2743%20544.941%2069.6216%20544.941%2080.9029ZM458.371%20123.127C458.371%20125.061%20458.371%20128.284%20458.371%20128.284C458.371%20128.284%20448.357%20115.391%20427.037%20115.391C391.828%20115.391%20364.371%20142.144%20364.371%20179.211C364.371%20215.956%20391.505%20243.031%20427.037%20243.031C448.68%20243.031%20458.371%20229.816%20458.371%20229.816V235.295C458.371%20237.874%20460.309%20239.808%20462.893%20239.808H489.058V118.615C489.058%20118.615%20465.154%20118.615%20462.893%20118.615C460.309%20118.615%20458.371%20120.871%20458.371%20123.127ZM458.371%20200.807C453.525%20207.898%20443.835%20214.022%20432.206%20214.022C411.532%20214.022%20395.704%20201.129%20395.704%20179.211C395.704%20157.293%20411.532%20144.4%20432.206%20144.4C443.512%20144.4%20453.848%20150.847%20458.371%20157.616V200.807ZM508.439%20118.615H539.45V239.808H508.439V118.615ZM971.656%20115.391C950.336%20115.391%20940.323%20128.284%20940.323%20128.284V60.2743H909.312V239.808C909.312%20239.808%20933.216%20239.808%20935.477%20239.808C938.061%20239.808%20940%20237.552%20940%20235.295V229.816C940%20229.816%20950.013%20243.031%20971.333%20243.031C1006.54%20243.031%201034%20215.956%201034%20179.211C1034%20142.466%201006.54%20115.391%20971.656%20115.391ZM966.488%20213.7C954.536%20213.7%20945.168%20207.576%20940.323%20200.484V157.293C945.168%20150.847%20955.505%20144.078%20966.488%20144.078C987.161%20144.078%201002.99%20156.971%201002.99%20178.889C1002.99%20200.807%20987.161%20213.7%20966.488%20213.7ZM893.161%20167.93V240.13H862.151V171.475C862.151%20151.491%20855.69%20143.433%20838.247%20143.433C828.879%20143.433%20819.189%20148.268%20813.051%20155.359V239.808H782.041V118.615H806.591C809.175%20118.615%20811.113%20120.871%20811.113%20123.127V128.284C820.158%20118.937%20832.109%20115.391%20844.061%20115.391C857.628%20115.391%20868.934%20119.259%20877.979%20126.995C888.962%20136.02%20893.161%20147.624%20893.161%20167.93ZM706.776%20115.391C685.457%20115.391%20675.443%20128.284%20675.443%20128.284V60.2743H644.433V239.808C644.433%20239.808%20668.336%20239.808%20670.597%20239.808C673.182%20239.808%20675.12%20237.552%20675.12%20235.295V229.816C675.12%20229.816%20685.134%20243.031%20706.453%20243.031C741.663%20243.031%20769.12%20215.956%20769.12%20179.211C769.443%20142.466%20741.986%20115.391%20706.776%20115.391ZM701.608%20213.7C689.656%20213.7%20680.288%20207.576%20675.443%20200.484V157.293C680.288%20150.847%20690.625%20144.078%20701.608%20144.078C722.281%20144.078%20738.109%20156.971%20738.109%20178.889C738.109%20200.807%20722.281%20213.7%20701.608%20213.7ZM617.622%20115.391C626.989%20115.391%20631.835%20117.003%20631.835%20117.003V145.69C631.835%20145.69%20605.993%20136.987%20589.841%20155.359V240.13H558.831V118.615C558.831%20118.615%20582.735%20118.615%20584.996%20118.615C587.58%20118.615%20589.518%20120.871%20589.518%20123.127V128.284C595.333%20121.516%20607.931%20115.391%20617.622%20115.391ZM295.567%20228.849C293.951%20224.981%20292.336%20220.791%20290.721%20217.245C288.137%20211.443%20285.553%20205.964%20283.292%20200.807L282.969%20200.484C260.68%20152.136%20236.776%20103.143%20211.58%2054.7948L210.611%2052.8609C208.027%2048.026%20205.443%2042.8689%20202.859%2037.7117C199.628%2031.9099%20196.398%2025.7858%20191.23%2019.984C180.893%207.09109%20166.034%200%20150.206%200C134.055%200%20119.518%207.09109%20108.859%2019.3393C104.013%2025.1411%20100.46%2031.2653%2097.2298%2037.0671C94.6456%2042.2242%2092.0614%2047.3814%2089.4772%2052.2162L88.5082%2054.1501C63.6353%20102.498%2039.4085%20151.491%2017.1198%20199.84L16.7968%20200.484C14.5357%20205.642%2011.9515%20211.121%209.36727%20216.923C7.75215%20220.468%206.13703%20224.336%204.52191%20228.527C0.322599%20240.452%20-0.969497%20251.734%200.645623%20263.337C4.19889%20287.512%2020.3501%20307.818%2042.6387%20316.843C51.0374%20320.388%2059.759%20322%2068.8037%20322C71.3879%20322%2074.6181%20321.678%2077.2023%20321.355C87.8621%20320.066%2098.8449%20316.521%20109.505%20310.396C122.749%20302.983%20135.347%20292.346%20149.56%20276.875C163.773%20292.346%20176.694%20302.983%20189.615%20310.396C200.274%20316.521%20211.257%20320.066%20221.917%20321.355C224.501%20321.678%20227.732%20322%20230.316%20322C239.36%20322%20248.405%20320.388%20256.481%20316.843C279.092%20307.818%20294.921%20287.189%20298.474%20263.337C301.058%20252.056%20299.766%20240.775%20295.567%20228.849ZM149.883%20245.61C132.439%20223.692%20121.134%20203.063%20117.257%20185.658C115.642%20178.244%20115.319%20171.798%20116.288%20165.996C116.934%20160.839%20118.872%20156.326%20121.457%20152.458C127.594%20143.756%20137.931%20138.276%20149.883%20138.276C161.835%20138.276%20172.494%20143.433%20178.309%20152.458C180.893%20156.326%20182.831%20160.839%20183.477%20165.996C184.446%20171.798%20184.123%20178.567%20182.508%20185.658C178.632%20202.741%20167.326%20223.369%20149.883%20245.61ZM278.769%20260.759C276.508%20277.52%20265.202%20292.024%20249.374%20298.47C241.622%20301.694%20233.223%20302.661%20224.824%20301.694C216.749%20300.727%20208.673%20298.148%20200.274%20293.313C188.646%20286.867%20177.017%20276.875%20163.45%20262.048C184.769%20235.94%20197.69%20212.088%20202.536%20190.815C204.797%20180.823%20205.12%20171.798%20204.151%20163.417C202.859%20155.359%20199.951%20147.946%20195.429%20141.5C185.415%20126.995%20168.618%20118.615%20149.883%20118.615C131.147%20118.615%20114.35%20127.317%20104.336%20141.5C99.814%20147.946%2096.9068%20155.359%2095.6147%20163.417C94.3226%20171.798%2094.6456%20181.145%2097.2298%20190.815C102.075%20212.088%20115.319%20236.262%20136.316%20262.37C123.072%20277.197%20111.12%20287.189%2099.491%20293.636C91.0924%20298.47%2083.0168%20301.049%2074.9412%20302.016C66.2195%20302.983%2057.8209%20301.694%2050.3913%20298.793C34.5631%20292.346%2023.2573%20277.842%2020.9961%20261.081C20.0271%20253.023%2020.6731%20244.965%2023.9034%20235.94C24.8724%20232.717%2026.4875%20229.493%2028.1027%20225.626C30.3638%20220.468%2032.948%20214.989%2035.5322%20209.51L35.8552%20208.865C58.1439%20160.839%2082.0477%20111.846%20106.921%2064.1421L107.89%2062.2082C110.474%2057.3734%20113.058%2052.2162%20115.642%2047.3814C118.226%2042.2242%20121.134%2037.3894%20124.687%2033.1992C131.47%2025.4635%20140.515%2021.2733%20150.529%2021.2733C160.543%2021.2733%20169.587%2025.4635%20176.371%2033.1992C179.924%2037.3894%20182.831%2042.2242%20185.415%2047.3814C188%2052.2162%20190.584%2057.3734%20193.168%2062.2082L194.137%2064.1421C218.687%20112.168%20242.591%20161.161%20264.879%20209.187V209.51C267.463%20214.667%20269.725%20220.468%20272.309%20225.626C273.924%20229.493%20275.539%20232.717%20276.508%20235.94C279.092%20244.32%20280.061%20252.378%20278.769%20260.759Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23347%22%3E%20%3Crect%20width%3D%221034%22%20height%3D%22322%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--airbus { aspect-ratio:5.3838; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221599%22%20height%3D%22297%22%20viewBox%3D%220%200%201599%20297%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24850)%22%3E%20%3Cpath%20d%3D%22M736.98%20101.301C736.98%2047.1906%20701.53%206.06055%20628.48%206.06055H481.52V290.471H550.68V67.5305H628.92C657.88%2067.5305%20668.25%2083.9905%20668.25%20103.031C668.25%20122.511%20657.44%20138.531%20628.48%20138.531H561.48L656.58%20290.471H735.25C735.25%20290.471%20670.41%20188.311%20670.84%20188.311C711.05%20178.791%20736.98%20150.651%20736.98%20101.301Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M365.68%206.06055H434.84V290.481H365.68V6.06055Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M188.89%20183.121H130.69L173.76%2095.6705H174.63L271.45%20290.471H350.98L206.18%206.06055H144.8L0%20290.471H77.8L101.26%20242.861H217.85L188.89%20183.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1035.25%20210.821C1035.25%20258.871%20996.77%20290.471%20937.99%20290.471H769.84V6.06055H931.51C989%206.06055%201023.14%2036.8006%201023.14%2082.6906C1023.14%20111.261%201011.47%20130.741%20989.42%20142.861C1016.66%20152.391%201035.24%20177.491%201035.25%20210.821ZM839%2066.2405V116.451H931.07C945.34%20116.451%20956.15%20105.631%20956.15%2091.3405C956.15%2077.0605%20945.34%2066.2405%20931.51%2066.2405H839ZM933.23%20230.731C950.09%20230.731%20963.06%20218.181%20963.06%20201.301C963.06%20184.851%20950.09%20172.731%20933.23%20172.731H839V230.731H933.23Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1253.53%20164.941C1253.53%20208.101%201233.64%20232.031%201194.31%20232.031C1155.41%20232.031%201135.53%20208.101%201135.53%20164.941V6.06055H1064.64V159.741C1064.64%20247.621%201110.89%20296.541%201194.31%20296.541C1277.73%20296.541%201324.42%20247.621%201324.42%20159.741V6.06055H1253.53V164.941Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1508.98%20119.05C1443.33%20103.04%201429.02%20101.51%201429.02%2082.68C1429.02%2068.12%201445.44%2061.04%201473.11%2061.04C1509.85%2061.04%201548.97%2070.27%201571.23%2083.98L1593.27%2025.98C1564.75%2010.82%201522.82%200%201473.97%200C1400.92%200%201359.86%2036.37%201359.86%2085.28C1359.86%20137.91%201390.53%20159.3%201461%20174.46C1515.86%20186.57%201527.56%20194.13%201527.56%20209.52C1527.56%20226.24%201512.44%20233.76%201482.61%20233.76C1439.39%20233.76%201400.27%20223.25%201368.93%20206.06L1347.75%20266.66C1381.9%20284.84%201432.9%20296.53%201484.34%20296.53C1556.1%20296.53%201598.88%20263.2%201598.88%20207.35C1598.89%20162.55%201569.95%20133.77%201508.98%20119.05Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24850%22%3E%20%3Crect%20width%3D%221599%22%20height%3D%22297%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221599%22%20height%3D%22297%22%20viewBox%3D%220%200%201599%20297%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24850)%22%3E%20%3Cpath%20d%3D%22M736.98%20101.301C736.98%2047.1906%20701.53%206.06055%20628.48%206.06055H481.52V290.471H550.68V67.5305H628.92C657.88%2067.5305%20668.25%2083.9905%20668.25%20103.031C668.25%20122.511%20657.44%20138.531%20628.48%20138.531H561.48L656.58%20290.471H735.25C735.25%20290.471%20670.41%20188.311%20670.84%20188.311C711.05%20178.791%20736.98%20150.651%20736.98%20101.301Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M365.68%206.06055H434.84V290.481H365.68V6.06055Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M188.89%20183.121H130.69L173.76%2095.6705H174.63L271.45%20290.471H350.98L206.18%206.06055H144.8L0%20290.471H77.8L101.26%20242.861H217.85L188.89%20183.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1035.25%20210.821C1035.25%20258.871%20996.77%20290.471%20937.99%20290.471H769.84V6.06055H931.51C989%206.06055%201023.14%2036.8006%201023.14%2082.6906C1023.14%20111.261%201011.47%20130.741%20989.42%20142.861C1016.66%20152.391%201035.24%20177.491%201035.25%20210.821ZM839%2066.2405V116.451H931.07C945.34%20116.451%20956.15%20105.631%20956.15%2091.3405C956.15%2077.0605%20945.34%2066.2405%20931.51%2066.2405H839ZM933.23%20230.731C950.09%20230.731%20963.06%20218.181%20963.06%20201.301C963.06%20184.851%20950.09%20172.731%20933.23%20172.731H839V230.731H933.23Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1253.53%20164.941C1253.53%20208.101%201233.64%20232.031%201194.31%20232.031C1155.41%20232.031%201135.53%20208.101%201135.53%20164.941V6.06055H1064.64V159.741C1064.64%20247.621%201110.89%20296.541%201194.31%20296.541C1277.73%20296.541%201324.42%20247.621%201324.42%20159.741V6.06055H1253.53V164.941Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1508.98%20119.05C1443.33%20103.04%201429.02%20101.51%201429.02%2082.68C1429.02%2068.12%201445.44%2061.04%201473.11%2061.04C1509.85%2061.04%201548.97%2070.27%201571.23%2083.98L1593.27%2025.98C1564.75%2010.82%201522.82%200%201473.97%200C1400.92%200%201359.86%2036.37%201359.86%2085.28C1359.86%20137.91%201390.53%20159.3%201461%20174.46C1515.86%20186.57%201527.56%20194.13%201527.56%20209.52C1527.56%20226.24%201512.44%20233.76%201482.61%20233.76C1439.39%20233.76%201400.27%20223.25%201368.93%20206.06L1347.75%20266.66C1381.9%20284.84%201432.9%20296.53%201484.34%20296.53C1556.1%20296.53%201598.88%20263.2%201598.88%20207.35C1598.89%20162.55%201569.95%20133.77%201508.98%20119.05Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24850%22%3E%20%3Crect%20width%3D%221599%22%20height%3D%22297%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--ana { aspect-ratio:3.8514; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221140%22%20height%3D%22296%22%20viewBox%3D%220%200%201140%20296%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23349)%22%3E%20%3Cpath%20d%3D%22M1089.82%203.79492L923.032%20292.199H969.474L1136.2%203.79492H1089.82Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M923.035%20292.204L1089.82%203.7998H904.28L737.529%20292.204H923.035Z%22%20fill%3D%22white%22%2F%3E%20%3Cmask%20id%3D%22mask0_6822_23349%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%22-60%22%20y%3D%22-57%22%20width%3D%221253%22%20height%3D%22429%22%3E%20%3Cpath%20d%3D%22M-59.6895%20371.263H1192.98V-56.7452H-59.6895V371.263Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_23349)%22%3E%20%3Cpath%20d%3D%22M327.004%2099.8661C327.468%2097.5606%20329.676%2095.6436%20332.172%2095.6436C334.38%2095.6436%20336.45%2097.2975%20337.191%2099.2521L390.219%20292.169H477.094L521.354%2041.466H483.103L449.056%20234.508C448.604%20236.939%20446.584%20238.843%20444%20238.843C441.654%20238.843%20439.647%20237.152%20439.032%20234.984L385.891%2041.466H299.054L254.806%20292.169H293.006L327.004%2099.8661ZM178.678%20207.169L171.252%2094.8418C171.189%2092.3484%20169.52%2089.9803%20167.024%2089.3162C164.264%2088.6271%20161.441%2090.068%20160.35%2092.5238L47.0798%20292.169H3.79883L146.087%2041.4535H229.712L246.448%20292.169H184.374L182.555%20264.842C182.254%20259.003%20177.875%20254.367%20172.054%20254.367H78.1671L99.3432%20216.967H169.747C174.89%20216.967%20179.067%20212.456%20178.678%20207.169ZM650.69%20207.701L640.804%2096.4142C640.54%2093.5074%20638.156%2091.2896%20635.158%2091.2896C633.151%2091.2896%20631.357%2092.3296%20630.316%2093.9083L528.349%20292.163H486.046L614.873%2041.4598H698.499L720.754%20292.163H658.204L655.758%20264.823C655.294%20258.947%20651.028%20254.386%20645.257%20254.386H557.228L576.447%20216.973H641.682C647.014%20216.973%20651.216%20212.4%20650.69%20207.701Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23349%22%3E%20%3Crect%20width%3D%221140%22%20height%3D%22296%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221140%22%20height%3D%22296%22%20viewBox%3D%220%200%201140%20296%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23349)%22%3E%20%3Cpath%20d%3D%22M1089.82%203.79492L923.032%20292.199H969.474L1136.2%203.79492H1089.82Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M923.035%20292.204L1089.82%203.7998H904.28L737.529%20292.204H923.035Z%22%20fill%3D%22white%22%2F%3E%20%3Cmask%20id%3D%22mask0_6822_23349%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%22-60%22%20y%3D%22-57%22%20width%3D%221253%22%20height%3D%22429%22%3E%20%3Cpath%20d%3D%22M-59.6895%20371.263H1192.98V-56.7452H-59.6895V371.263Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_23349)%22%3E%20%3Cpath%20d%3D%22M327.004%2099.8661C327.468%2097.5606%20329.676%2095.6436%20332.172%2095.6436C334.38%2095.6436%20336.45%2097.2975%20337.191%2099.2521L390.219%20292.169H477.094L521.354%2041.466H483.103L449.056%20234.508C448.604%20236.939%20446.584%20238.843%20444%20238.843C441.654%20238.843%20439.647%20237.152%20439.032%20234.984L385.891%2041.466H299.054L254.806%20292.169H293.006L327.004%2099.8661ZM178.678%20207.169L171.252%2094.8418C171.189%2092.3484%20169.52%2089.9803%20167.024%2089.3162C164.264%2088.6271%20161.441%2090.068%20160.35%2092.5238L47.0798%20292.169H3.79883L146.087%2041.4535H229.712L246.448%20292.169H184.374L182.555%20264.842C182.254%20259.003%20177.875%20254.367%20172.054%20254.367H78.1671L99.3432%20216.967H169.747C174.89%20216.967%20179.067%20212.456%20178.678%20207.169ZM650.69%20207.701L640.804%2096.4142C640.54%2093.5074%20638.156%2091.2896%20635.158%2091.2896C633.151%2091.2896%20631.357%2092.3296%20630.316%2093.9083L528.349%20292.163H486.046L614.873%2041.4598H698.499L720.754%20292.163H658.204L655.758%20264.823C655.294%20258.947%20651.028%20254.386%20645.257%20254.386H557.228L576.447%20216.973H641.682C647.014%20216.973%20651.216%20212.4%20650.69%20207.701Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23349%22%3E%20%3Crect%20width%3D%221140%22%20height%3D%22296%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--allianz { aspect-ratio:2.7333; mask-image:url("data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%22109.33%22%20height%3D%2239.9988%22%20viewBox%3D%220%200%20109.33%2039.9988%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20id%3D%22Component%203%22%3E%20%3Cpath%20id%3D%22Vector%22%20d%3D%22M10.8677%2020.9534H7.19645L9.15172%2014.5742L10.8677%2020.9534ZM5.29317%2027.9838L6.5458%2023.7833H11.4923L12.6643%2027.9731H17.2375L12.6936%2011.9976C12.4263%2011.0537%2011.8616%2010.6177%2010.8677%2010.6177H4.38387V12.1256H4.92185C5.59916%2012.1256%205.96448%2012.3956%205.96448%2012.9096C5.96448%2013.2516%205.88915%2013.5363%205.62183%2014.3136L1.07063%2027.9838H5.29317Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_2%22%20d%3D%22M22.526%2027.9838V11.949C22.526%2011.1123%2022.0367%2010.6177%2021.228%2010.6177H17.2068V12.1256H17.4755C18.1514%2012.1256%2018.4381%2012.4143%2018.4381%2013.0983V27.9838H22.526Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_3%22%20d%3D%22M29.4758%2027.9838V11.949C29.4758%2011.1123%2028.9784%2010.6177%2028.1745%2010.6177H24.1666V12.1256H24.4359C25.1139%2012.1256%2025.4019%2012.4143%2025.4019%2013.0983V27.9838H29.4758Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_4%22%20d%3D%22M36.6056%2012.2016C36.6056%2011.0377%2035.7436%2010.3197%2034.263%2010.3197C32.783%2010.3197%2031.915%2011.025%2031.915%2012.2016C31.915%2013.3796%2032.805%2014.0842%2034.263%2014.0842C35.7209%2014.0842%2036.6056%2013.3849%2036.6056%2012.2016ZM36.5282%2027.9838V16.2962C36.5282%2015.4615%2036.0336%2014.9695%2035.2243%2014.9695H31.2664V16.4488H31.5017C32.1764%2016.4488%2032.4643%2016.7608%2032.4643%2017.4381V27.9838H36.5282Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_5%22%20d%3D%22M45.4786%2021.734V24.2633C44.798%2024.9652%2043.9693%2025.3966%2043.2673%2025.3966C42.5667%2025.3966%2042.278%2025.0366%2042.278%2024.0513C42.278%2023.0673%2042.482%2022.6513%2043.214%2022.368C43.9413%2022.0707%2044.7013%2021.858%2045.4786%2021.734ZM39.9808%2018.6954C41.2301%2018.0741%2042.5974%2017.7288%2043.992%2017.6768C45.0886%2017.6768%2045.4786%2018.0688%2045.4786%2019.2054V19.4947C43.8133%2019.7647%2043.2907%2019.8667%2042.3527%2020.0741C41.8274%2020.1894%2041.3134%2020.3507%2040.8141%2020.5554C39.1728%2021.214%2038.3948%2022.484%2038.3948%2024.4333C38.3948%2026.9072%2039.4701%2028.1011%2041.6714%2028.1011C42.422%2028.1045%2043.1647%2027.9651%2043.8613%2027.6898C44.494%2027.4032%2045.082%2027.0265%2045.6079%2026.5712V26.7545C45.6079%2027.5618%2046.0213%2027.9731%2046.8306%2027.9731H50.5558V26.5819H50.3731C49.6718%2026.5819%2049.4138%2026.2672%2049.4138%2025.4366V19.2374C49.4138%2015.9315%2048.2645%2014.7822%2044.954%2014.7822C43.9053%2014.7862%2042.858%2014.9109%2041.8374%2015.1495C40.8714%2015.3655%2039.9414%2015.7162%2039.0748%2016.1922L39.9808%2018.6954Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_6%22%20d%3D%22M56.4863%2027.9838V19.1834C57.1669%2018.4274%2057.8656%2018.0861%2058.6735%2018.0861C59.5362%2018.0861%2059.7475%2018.4274%2059.7475%2019.7381V27.9838H63.8087V19.1354C63.8087%2017.0755%2063.6621%2016.4248%2063.0027%2015.7255C62.4648%2015.1195%2061.6228%2014.8142%2060.5495%2014.8142C58.9615%2014.8142%2057.8409%2015.3055%2056.3383%2016.7122V16.1922C56.3383%2015.3862%2055.917%2014.9695%2055.085%2014.9695H51.2251V16.4488H51.4591C52.1344%2016.4488%2052.4251%2016.7608%2052.4251%2017.4381V27.9838H56.4863Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_7%22%20d%3D%22M75.8544%2025.2512H70.1892L75.607%2017.6541V14.9642H67.1093C66.1467%2014.9642%2065.7027%2015.4055%2065.7027%2016.3708V18.7374H67.2113V18.5061C67.2113%2017.9061%2067.5233%2017.6208%2068.1713%2017.6208H71.0925L65.6167%2025.3046V27.9945H75.837L75.8544%2025.2512Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_8%22%20d%3D%22M97.1744%2027.6525V12.9396C97.1744%2011.7663%2096.7584%2011.3703%2095.6204%2011.3703H92.1752V13.0256H92.3818C93.1678%2013.0256%2093.3205%2013.2036%2093.3205%2014.1482V27.6525H97.1744ZM98.8743%2027.6525H102.698V16.1922C102.698%2015.0422%20102.255%2014.6282%20101.133%2014.6282H98.8743V27.6525ZM91.6319%2027.6525V14.6396H89.3653C88.2426%2014.6396%2087.8053%2015.0529%2087.8053%2016.2035V27.6525H91.6319ZM106.319%2020.1734C106.319%2026.6585%20101.655%2031.3724%2095.2524%2031.3724C88.8486%2031.3724%2084.1741%2026.6585%2084.1741%2020.1734C84.1741%2013.6902%2088.8466%208.97573%2095.2524%208.97573C101.657%208.97573%20106.319%2013.7162%20106.319%2020.1734ZM108.583%2020.1734C108.583%2012.5489%20102.88%206.83912%2095.2524%206.83912C87.6247%206.83912%2081.9148%2012.5489%2081.9148%2020.1734C81.9148%2027.7978%2087.6193%2033.505%2095.2524%2033.505C102.884%2033.505%20108.583%2027.8158%20108.583%2020.1734Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20preserveAspectRatio%3D%22none%22%20overflow%3D%22visible%22%20style%3D%22display%3A%20block%3B%22%20width%3D%22109.33%22%20height%3D%2239.9988%22%20viewBox%3D%220%200%20109.33%2039.9988%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20id%3D%22Component%203%22%3E%20%3Cpath%20id%3D%22Vector%22%20d%3D%22M10.8677%2020.9534H7.19645L9.15172%2014.5742L10.8677%2020.9534ZM5.29317%2027.9838L6.5458%2023.7833H11.4923L12.6643%2027.9731H17.2375L12.6936%2011.9976C12.4263%2011.0537%2011.8616%2010.6177%2010.8677%2010.6177H4.38387V12.1256H4.92185C5.59916%2012.1256%205.96448%2012.3956%205.96448%2012.9096C5.96448%2013.2516%205.88915%2013.5363%205.62183%2014.3136L1.07063%2027.9838H5.29317Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_2%22%20d%3D%22M22.526%2027.9838V11.949C22.526%2011.1123%2022.0367%2010.6177%2021.228%2010.6177H17.2068V12.1256H17.4755C18.1514%2012.1256%2018.4381%2012.4143%2018.4381%2013.0983V27.9838H22.526Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_3%22%20d%3D%22M29.4758%2027.9838V11.949C29.4758%2011.1123%2028.9784%2010.6177%2028.1745%2010.6177H24.1666V12.1256H24.4359C25.1139%2012.1256%2025.4019%2012.4143%2025.4019%2013.0983V27.9838H29.4758Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_4%22%20d%3D%22M36.6056%2012.2016C36.6056%2011.0377%2035.7436%2010.3197%2034.263%2010.3197C32.783%2010.3197%2031.915%2011.025%2031.915%2012.2016C31.915%2013.3796%2032.805%2014.0842%2034.263%2014.0842C35.7209%2014.0842%2036.6056%2013.3849%2036.6056%2012.2016ZM36.5282%2027.9838V16.2962C36.5282%2015.4615%2036.0336%2014.9695%2035.2243%2014.9695H31.2664V16.4488H31.5017C32.1764%2016.4488%2032.4643%2016.7608%2032.4643%2017.4381V27.9838H36.5282Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_5%22%20d%3D%22M45.4786%2021.734V24.2633C44.798%2024.9652%2043.9693%2025.3966%2043.2673%2025.3966C42.5667%2025.3966%2042.278%2025.0366%2042.278%2024.0513C42.278%2023.0673%2042.482%2022.6513%2043.214%2022.368C43.9413%2022.0707%2044.7013%2021.858%2045.4786%2021.734ZM39.9808%2018.6954C41.2301%2018.0741%2042.5974%2017.7288%2043.992%2017.6768C45.0886%2017.6768%2045.4786%2018.0688%2045.4786%2019.2054V19.4947C43.8133%2019.7647%2043.2907%2019.8667%2042.3527%2020.0741C41.8274%2020.1894%2041.3134%2020.3507%2040.8141%2020.5554C39.1728%2021.214%2038.3948%2022.484%2038.3948%2024.4333C38.3948%2026.9072%2039.4701%2028.1011%2041.6714%2028.1011C42.422%2028.1045%2043.1647%2027.9651%2043.8613%2027.6898C44.494%2027.4032%2045.082%2027.0265%2045.6079%2026.5712V26.7545C45.6079%2027.5618%2046.0213%2027.9731%2046.8306%2027.9731H50.5558V26.5819H50.3731C49.6718%2026.5819%2049.4138%2026.2672%2049.4138%2025.4366V19.2374C49.4138%2015.9315%2048.2645%2014.7822%2044.954%2014.7822C43.9053%2014.7862%2042.858%2014.9109%2041.8374%2015.1495C40.8714%2015.3655%2039.9414%2015.7162%2039.0748%2016.1922L39.9808%2018.6954Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_6%22%20d%3D%22M56.4863%2027.9838V19.1834C57.1669%2018.4274%2057.8656%2018.0861%2058.6735%2018.0861C59.5362%2018.0861%2059.7475%2018.4274%2059.7475%2019.7381V27.9838H63.8087V19.1354C63.8087%2017.0755%2063.6621%2016.4248%2063.0027%2015.7255C62.4648%2015.1195%2061.6228%2014.8142%2060.5495%2014.8142C58.9615%2014.8142%2057.8409%2015.3055%2056.3383%2016.7122V16.1922C56.3383%2015.3862%2055.917%2014.9695%2055.085%2014.9695H51.2251V16.4488H51.4591C52.1344%2016.4488%2052.4251%2016.7608%2052.4251%2017.4381V27.9838H56.4863Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_7%22%20d%3D%22M75.8544%2025.2512H70.1892L75.607%2017.6541V14.9642H67.1093C66.1467%2014.9642%2065.7027%2015.4055%2065.7027%2016.3708V18.7374H67.2113V18.5061C67.2113%2017.9061%2067.5233%2017.6208%2068.1713%2017.6208H71.0925L65.6167%2025.3046V27.9945H75.837L75.8544%2025.2512Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20id%3D%22Vector_8%22%20d%3D%22M97.1744%2027.6525V12.9396C97.1744%2011.7663%2096.7584%2011.3703%2095.6204%2011.3703H92.1752V13.0256H92.3818C93.1678%2013.0256%2093.3205%2013.2036%2093.3205%2014.1482V27.6525H97.1744ZM98.8743%2027.6525H102.698V16.1922C102.698%2015.0422%20102.255%2014.6282%20101.133%2014.6282H98.8743V27.6525ZM91.6319%2027.6525V14.6396H89.3653C88.2426%2014.6396%2087.8053%2015.0529%2087.8053%2016.2035V27.6525H91.6319ZM106.319%2020.1734C106.319%2026.6585%20101.655%2031.3724%2095.2524%2031.3724C88.8486%2031.3724%2084.1741%2026.6585%2084.1741%2020.1734C84.1741%2013.6902%2088.8466%208.97573%2095.2524%208.97573C101.657%208.97573%20106.319%2013.7162%20106.319%2020.1734ZM108.583%2020.1734C108.583%2012.5489%20102.88%206.83912%2095.2524%206.83912C87.6247%206.83912%2081.9148%2012.5489%2081.9148%2020.1734C81.9148%2027.7978%2087.6193%2033.505%2095.2524%2033.505C102.884%2033.505%20108.583%2027.8158%20108.583%2020.1734Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--aviva { aspect-ratio:1.3890; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22957%22%20height%3D%22689%22%20viewBox%3D%220%200%20957%20689%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M596.622%20343.234L566.696%2035.4102L536.348%20348.342C556.016%20346.184%20576.107%20344.471%20596.622%20343.234Z%22%20fill%3D%22%23ADC9CC%22%2F%3E%20%3Cpath%20d%3D%22M669.692%20340.971L669.798%2035.4095L566.696%2035.3672V35.4095L596.622%20343.233C620.52%20341.774%20644.948%20341.013%20669.692%20340.971Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M536.348%20348.341L566.696%2035.4095V35.3672L297.258%2035.4095L297.364%20406.998C360.705%20379.261%20443.08%20358.63%20536.348%20348.341Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M443.926%20487.713C447.627%20488.38%20460.951%20492.271%20460.951%20501.714V653.099H505.998V482.32H443.926V487.713Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M90.1028%20482.32V487.713C95.4958%20488.845%20107.339%20492.155%20102.581%20502.803L35.4326%20653.099H70.8572L91.9006%20606.254H166.24L184.639%20653.099H231.273L164.653%20482.32H90.1028ZM101.418%20585.041L131.555%20517.84L157.991%20585.041H101.418Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M780.09%20482.32V487.713C785.483%20488.845%20797.326%20492.155%20792.568%20502.803L725.42%20653.099H760.844L781.888%20606.254H856.227L874.626%20653.099H921.26L854.64%20482.32H780.09ZM791.405%20585.041L821.542%20517.84L847.873%20585.041H791.405Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M660.387%20653.099L731.553%20482.32H697.82L645.688%20607.554L595.988%20482.32H532.752V487.713C540.048%20489.12%20548.297%20492.271%20551.998%20501.714L612.061%20653.099H660.387Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M348.438%20653.099L419.604%20482.32H385.872L333.739%20607.554L284.039%20482.32H220.804V487.713C228.1%20489.12%20236.348%20492.271%20240.049%20501.714L300.112%20653.099H348.438Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22957%22%20height%3D%22689%22%20viewBox%3D%220%200%20957%20689%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M596.622%20343.234L566.696%2035.4102L536.348%20348.342C556.016%20346.184%20576.107%20344.471%20596.622%20343.234Z%22%20fill%3D%22%23ADC9CC%22%2F%3E%20%3Cpath%20d%3D%22M669.692%20340.971L669.798%2035.4095L566.696%2035.3672V35.4095L596.622%20343.233C620.52%20341.774%20644.948%20341.013%20669.692%20340.971Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M536.348%20348.341L566.696%2035.4095V35.3672L297.258%2035.4095L297.364%20406.998C360.705%20379.261%20443.08%20358.63%20536.348%20348.341Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M443.926%20487.713C447.627%20488.38%20460.951%20492.271%20460.951%20501.714V653.099H505.998V482.32H443.926V487.713Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M90.1028%20482.32V487.713C95.4958%20488.845%20107.339%20492.155%20102.581%20502.803L35.4326%20653.099H70.8572L91.9006%20606.254H166.24L184.639%20653.099H231.273L164.653%20482.32H90.1028ZM101.418%20585.041L131.555%20517.84L157.991%20585.041H101.418Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M780.09%20482.32V487.713C785.483%20488.845%20797.326%20492.155%20792.568%20502.803L725.42%20653.099H760.844L781.888%20606.254H856.227L874.626%20653.099H921.26L854.64%20482.32H780.09ZM791.405%20585.041L821.542%20517.84L847.873%20585.041H791.405Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M660.387%20653.099L731.553%20482.32H697.82L645.688%20607.554L595.988%20482.32H532.752V487.713C540.048%20489.12%20548.297%20492.271%20551.998%20501.714L612.061%20653.099H660.387Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M348.438%20653.099L419.604%20482.32H385.872L333.739%20607.554L284.039%20482.32H220.804V487.713C228.1%20489.12%20236.348%20492.271%20240.049%20501.714L300.112%20653.099H348.438Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--bhp { aspect-ratio:2.6144; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22800%22%20height%3D%22306%22%20viewBox%3D%220%200%20800%20306%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24398)%22%3E%20%3Cpath%20d%3D%22M800%2096.0698C800%20149.442%20757.333%20192.14%20704%20192.14H638.222V304.221H562.667V0H703.111C757.333%200%20800%2043.5872%20800%2096.0698ZM691.556%2063.157H639.111V126.314H691.556C708.445%20126.314%20721.778%20111.192%20721.778%2095.1802C721.778%2078.2791%20708.445%2063.157%20691.556%2063.157ZM443.556%200V123.645H338.667V0H263.111V305.11H338.667V193.029H443.556V305.11H519.111V0H443.556ZM233.778%20222.384C233.778%20273.087%20188.444%20305.11%20140.444%20305.11H0V0H136C185.778%200%20226.667%2036.4709%20226.667%2081.8372C226.667%20117.419%20209.778%20136.988%20186.667%20151.221C213.333%20162.785%20233.778%20179.686%20233.778%20222.384ZM125.333%20182.355H75.5556V241.064H125.333C144.889%20241.064%20155.556%20227.721%20155.556%20211.709C155.556%20195.698%20141.333%20182.355%20125.333%20182.355ZM118.222%2063.157H75.5556V126.314H118.222C137.778%20126.314%20148.444%20111.192%20148.444%2095.1802C148.444%2078.2791%20137.778%2063.157%20118.222%2063.157Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24398%22%3E%20%3Crect%20width%3D%22800%22%20height%3D%22306%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22800%22%20height%3D%22306%22%20viewBox%3D%220%200%20800%20306%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24398)%22%3E%20%3Cpath%20d%3D%22M800%2096.0698C800%20149.442%20757.333%20192.14%20704%20192.14H638.222V304.221H562.667V0H703.111C757.333%200%20800%2043.5872%20800%2096.0698ZM691.556%2063.157H639.111V126.314H691.556C708.445%20126.314%20721.778%20111.192%20721.778%2095.1802C721.778%2078.2791%20708.445%2063.157%20691.556%2063.157ZM443.556%200V123.645H338.667V0H263.111V305.11H338.667V193.029H443.556V305.11H519.111V0H443.556ZM233.778%20222.384C233.778%20273.087%20188.444%20305.11%20140.444%20305.11H0V0H136C185.778%200%20226.667%2036.4709%20226.667%2081.8372C226.667%20117.419%20209.778%20136.988%20186.667%20151.221C213.333%20162.785%20233.778%20179.686%20233.778%20222.384ZM125.333%20182.355H75.5556V241.064H125.333C144.889%20241.064%20155.556%20227.721%20155.556%20211.709C155.556%20195.698%20141.333%20182.355%20125.333%20182.355ZM118.222%2063.157H75.5556V126.314H118.222C137.778%20126.314%20148.444%20111.192%20148.444%2095.1802C148.444%2078.2791%20137.778%2063.157%20118.222%2063.157Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24398%22%3E%20%3Crect%20width%3D%22800%22%20height%3D%22306%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--bmw { aspect-ratio:1.0000; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221504%22%20height%3D%221504%22%20viewBox%3D%220%200%201504%201504%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23359)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M752.89%200.410162C851.45%200.650162%20949%2020.2602%201040%2058.1302C1130.99%2095.9902%201213.66%20151.37%201283.3%20221.12C1352.93%20290.87%201408.18%20373.63%201445.9%20464.68C1483.61%20555.74%201503.07%20653.33%201503.14%20751.89C1503.14%201055.94%201319.92%201330.03%201038.97%201446.27C758.01%201562.52%20434.69%201498%20219.87%201282.83C5.04024%201067.66%20-58.9497%20744.23%2057.7502%20463.47C174.45%20182.7%20448.83%20-0.0798376%20752.89%200.410162ZM1453.57%20751.89C1453.33%20660%201435.04%20569.05%201399.73%20484.21C1364.41%20399.38%201312.77%20322.31%201247.74%20257.39C1182.71%20192.47%201105.55%20140.96%201020.65%20105.8C935.76%2070.6302%20844.78%2052.5002%20752.89%2052.4202C469.98%2052.4202%20214.92%20222.84%20106.66%20484.21C-1.59975%20745.58%2058.2402%201046.44%20258.29%201246.49C458.33%201446.53%20759.19%201506.38%201020.56%201398.11C1281.94%201289.85%201452.36%201034.8%201452.36%20751.89H1453.57Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M752.89%20305.75V329.77C807.88%20329.93%20862.3%20340.88%20913.07%20361.99C963.84%20383.11%201009.98%20413.99%201048.86%20452.87C1087.75%20491.75%201118.62%20537.89%201139.74%20588.66C1160.85%20639.43%201171.8%20693.86%201171.96%20748.85H1195.99C1196.15%20690.61%201184.79%20632.92%201162.58%20579.09C1140.37%20525.26%201107.74%20476.35%201066.56%20435.17C1025.39%20393.99%20976.47%20361.36%20922.64%20339.15C868.81%20316.94%20811.12%20305.59%20752.89%20305.75ZM752.89%201170.96C697.9%201170.8%20643.47%201159.85%20592.7%201138.74C541.93%201117.62%20495.79%201086.75%20456.91%201047.86C418.03%201008.98%20387.15%20962.84%20366.04%20912.07C344.92%20861.3%20333.97%20806.88%20333.81%20751.89H309.79C309.95%20810.43%20321.59%20868.37%20344.07%20922.43C366.55%20976.49%20399.42%201025.6%20440.81%201067C482.21%201108.4%20531.33%201141.27%20585.39%201163.74C639.44%201186.22%20697.38%201197.87%20755.93%201198.03%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1115.09%20435.6C1117.66%20439%201120.28%20442.37%201122.95%20445.69C1125.62%20449.02%201128.34%20452.3%201131.1%20455.55C1133.87%20458.79%201136.68%20462%201139.53%20465.16C1142.39%20468.33%201145.29%20471.45%201148.24%20474.53L1300.3%20378.73C1297.58%20375.91%201294.9%20373.04%201292.28%20370.13C1289.65%20367.21%201287.06%20364.26%201284.53%20361.27C1281.99%20358.28%201279.5%20355.24%201277.06%20352.17C1274.62%20349.1%201272.23%20345.99%201269.89%20342.85L1175%20405.19L1216.97%20321.26L1186.56%20290.84L1102.62%20332.51L1165.57%20236.71C1153.41%20227.89%201144.59%20218.77%201129.69%20206.3L1033.89%20358.36C1045.75%20367.48%201060.65%20382.38%201072.82%20391.2L1163.14%20344.37L1169.22%20341.33L1166.18%20347.41L1115.09%20435.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M770.83%20239.75L812.8%20147L815.84%20137.87V147L818.88%20272.6C822.64%20272.73%20826.4%20272.96%20830.16%20273.28C833.91%20273.6%20837.65%20274.01%20841.39%20274.52C845.12%20275.03%20848.84%20275.63%20852.54%20276.32C856.24%20277.01%20859.92%20277.8%20863.59%20278.68L857.81%2096.2099C836.82%2093.1699%20815.84%2093.1699%20794.85%2090.1299L752.89%20192.31L712.44%2090.1299C707.19%2090.2499%20701.94%2090.4699%20696.7%2090.7899C691.46%2091.1099%20686.23%2091.5199%20681%2092.0299C675.78%2092.5299%20670.56%2093.1399%20665.36%2093.8299C660.16%2094.5299%20654.97%2095.3199%20649.79%2096.2099L643.71%20278.68C658.61%20275.64%20674.12%20275.64%20688.72%20272.6L691.45%20147V137.87L694.5%20147L736.46%20239.75H770.83Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M338.98%20481.22L210.04%20359.57C222.2%20344.67%20242.88%20317.61%20258.09%20302.7C305.83%20251.92%20320.74%20236.71%20344.76%20233.67C347.67%20232.91%20350.66%20232.54%20353.67%20232.56C356.67%20232.58%20359.66%20232.99%20362.56%20233.79C365.46%20234.59%20368.24%20235.76%20370.83%20237.28C373.42%20238.8%20375.8%20240.65%20377.91%20242.79C381.2%20245.4%20384.11%20248.46%20386.55%20251.88C388.99%20255.3%20390.93%20259.05%20392.32%20263.01C393.71%20266.98%20394.54%20271.11%20394.78%20275.31C395.02%20279.5%20394.66%20283.71%20393.72%20287.8V290.84H396.76C401.32%20289.15%20406.1%20288.11%20410.95%20287.77C415.8%20287.43%20420.68%20287.79%20425.43%20288.84C430.18%20289.88%20434.75%20291.61%20439.01%20293.95C443.27%20296.3%20447.17%20299.25%20450.59%20302.7C474.62%20332.51%20459.41%20362.62%20435.69%20386.64C402.54%20422.53%20384.6%20440.47%20338.98%20481.22ZM291.84%20379.34C291.84%20379.34%20342.63%20325.51%20357.84%20310.31C359.57%20308.92%20361.1%20307.31%20362.4%20305.51C363.7%20303.71%20364.75%20301.75%20365.53%20299.67C366.3%20297.59%20366.79%20295.41%20366.98%20293.2C367.17%20290.99%20367.06%20288.77%20366.66%20286.59C366.66%20284.45%20366.14%20282.34%20365.14%20280.45C364.14%20278.55%20362.69%20276.94%20360.92%20275.74C359.15%20274.53%20357.11%20273.79%20354.98%20273.56C352.85%20273.33%20350.7%20273.63%20348.71%20274.42C347.38%20275.01%20346.06%20275.64%20344.76%20276.31C343.47%20276.99%20342.19%20277.71%20340.95%20278.47C339.7%20279.23%20338.48%20280.04%20337.29%20280.88C336.1%20281.73%20334.94%20282.62%20333.81%20283.55C328%20289.31%20322.27%20295.15%20316.61%20301.07C310.95%20306.98%20305.37%20312.97%20299.87%20319.03C294.37%20325.09%20288.94%20331.22%20283.6%20337.42C278.26%20343.62%20273%20349.89%20267.82%20356.23L291.84%20379.34ZM345.67%20428.91L411.67%20360.18C414.71%20354.1%20420.49%20345.28%20423.53%20339.2C424.22%20337.84%20424.61%20336.34%20424.67%20334.82C424.73%20333.29%20424.47%20331.77%20423.89%20330.36C423.31%20328.94%20422.44%20327.67%20421.33%20326.63C420.22%20325.58%20418.89%20324.79%20417.44%20324.3C416.07%20323.55%20414.61%20322.99%20413.1%20322.6C411.59%20322.22%20410.03%20322.03%20408.47%20322.03C406.91%20322.03%20405.36%20322.22%20403.85%20322.6C402.33%20322.99%20400.87%20323.55%20399.5%20324.3C396.76%20324.3%20390.68%20330.38%20384.6%20336.16C366.66%20354.1%20318.91%20405.19%20318.91%20405.19L345.67%20428.91Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M752.89%20305.75V751.89H306.75C306.87%20693.33%20318.49%20635.37%20340.95%20581.3C363.41%20527.22%20396.28%20478.09%20437.68%20436.68C479.09%20395.28%20528.22%20362.41%20582.3%20339.95C636.37%20317.49%20694.33%20305.87%20752.89%20305.75Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1199.03%20751.891C1199.11%20810.501%201187.62%20868.551%201165.23%20922.711C1142.84%20976.881%201109.98%201026.09%201068.53%201067.53C1027.09%201108.98%20977.881%201141.84%20923.711%201164.23C869.551%201186.62%20811.501%201198.11%20752.891%201198.03V751.891H1199.03Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23359%22%3E%20%3Crect%20width%3D%221504%22%20height%3D%221504%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221504%22%20height%3D%221504%22%20viewBox%3D%220%200%201504%201504%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23359)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M752.89%200.410162C851.45%200.650162%20949%2020.2602%201040%2058.1302C1130.99%2095.9902%201213.66%20151.37%201283.3%20221.12C1352.93%20290.87%201408.18%20373.63%201445.9%20464.68C1483.61%20555.74%201503.07%20653.33%201503.14%20751.89C1503.14%201055.94%201319.92%201330.03%201038.97%201446.27C758.01%201562.52%20434.69%201498%20219.87%201282.83C5.04024%201067.66%20-58.9497%20744.23%2057.7502%20463.47C174.45%20182.7%20448.83%20-0.0798376%20752.89%200.410162ZM1453.57%20751.89C1453.33%20660%201435.04%20569.05%201399.73%20484.21C1364.41%20399.38%201312.77%20322.31%201247.74%20257.39C1182.71%20192.47%201105.55%20140.96%201020.65%20105.8C935.76%2070.6302%20844.78%2052.5002%20752.89%2052.4202C469.98%2052.4202%20214.92%20222.84%20106.66%20484.21C-1.59975%20745.58%2058.2402%201046.44%20258.29%201246.49C458.33%201446.53%20759.19%201506.38%201020.56%201398.11C1281.94%201289.85%201452.36%201034.8%201452.36%20751.89H1453.57Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M752.89%20305.75V329.77C807.88%20329.93%20862.3%20340.88%20913.07%20361.99C963.84%20383.11%201009.98%20413.99%201048.86%20452.87C1087.75%20491.75%201118.62%20537.89%201139.74%20588.66C1160.85%20639.43%201171.8%20693.86%201171.96%20748.85H1195.99C1196.15%20690.61%201184.79%20632.92%201162.58%20579.09C1140.37%20525.26%201107.74%20476.35%201066.56%20435.17C1025.39%20393.99%20976.47%20361.36%20922.64%20339.15C868.81%20316.94%20811.12%20305.59%20752.89%20305.75ZM752.89%201170.96C697.9%201170.8%20643.47%201159.85%20592.7%201138.74C541.93%201117.62%20495.79%201086.75%20456.91%201047.86C418.03%201008.98%20387.15%20962.84%20366.04%20912.07C344.92%20861.3%20333.97%20806.88%20333.81%20751.89H309.79C309.95%20810.43%20321.59%20868.37%20344.07%20922.43C366.55%20976.49%20399.42%201025.6%20440.81%201067C482.21%201108.4%20531.33%201141.27%20585.39%201163.74C639.44%201186.22%20697.38%201197.87%20755.93%201198.03%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1115.09%20435.6C1117.66%20439%201120.28%20442.37%201122.95%20445.69C1125.62%20449.02%201128.34%20452.3%201131.1%20455.55C1133.87%20458.79%201136.68%20462%201139.53%20465.16C1142.39%20468.33%201145.29%20471.45%201148.24%20474.53L1300.3%20378.73C1297.58%20375.91%201294.9%20373.04%201292.28%20370.13C1289.65%20367.21%201287.06%20364.26%201284.53%20361.27C1281.99%20358.28%201279.5%20355.24%201277.06%20352.17C1274.62%20349.1%201272.23%20345.99%201269.89%20342.85L1175%20405.19L1216.97%20321.26L1186.56%20290.84L1102.62%20332.51L1165.57%20236.71C1153.41%20227.89%201144.59%20218.77%201129.69%20206.3L1033.89%20358.36C1045.75%20367.48%201060.65%20382.38%201072.82%20391.2L1163.14%20344.37L1169.22%20341.33L1166.18%20347.41L1115.09%20435.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M770.83%20239.75L812.8%20147L815.84%20137.87V147L818.88%20272.6C822.64%20272.73%20826.4%20272.96%20830.16%20273.28C833.91%20273.6%20837.65%20274.01%20841.39%20274.52C845.12%20275.03%20848.84%20275.63%20852.54%20276.32C856.24%20277.01%20859.92%20277.8%20863.59%20278.68L857.81%2096.2099C836.82%2093.1699%20815.84%2093.1699%20794.85%2090.1299L752.89%20192.31L712.44%2090.1299C707.19%2090.2499%20701.94%2090.4699%20696.7%2090.7899C691.46%2091.1099%20686.23%2091.5199%20681%2092.0299C675.78%2092.5299%20670.56%2093.1399%20665.36%2093.8299C660.16%2094.5299%20654.97%2095.3199%20649.79%2096.2099L643.71%20278.68C658.61%20275.64%20674.12%20275.64%20688.72%20272.6L691.45%20147V137.87L694.5%20147L736.46%20239.75H770.83Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M338.98%20481.22L210.04%20359.57C222.2%20344.67%20242.88%20317.61%20258.09%20302.7C305.83%20251.92%20320.74%20236.71%20344.76%20233.67C347.67%20232.91%20350.66%20232.54%20353.67%20232.56C356.67%20232.58%20359.66%20232.99%20362.56%20233.79C365.46%20234.59%20368.24%20235.76%20370.83%20237.28C373.42%20238.8%20375.8%20240.65%20377.91%20242.79C381.2%20245.4%20384.11%20248.46%20386.55%20251.88C388.99%20255.3%20390.93%20259.05%20392.32%20263.01C393.71%20266.98%20394.54%20271.11%20394.78%20275.31C395.02%20279.5%20394.66%20283.71%20393.72%20287.8V290.84H396.76C401.32%20289.15%20406.1%20288.11%20410.95%20287.77C415.8%20287.43%20420.68%20287.79%20425.43%20288.84C430.18%20289.88%20434.75%20291.61%20439.01%20293.95C443.27%20296.3%20447.17%20299.25%20450.59%20302.7C474.62%20332.51%20459.41%20362.62%20435.69%20386.64C402.54%20422.53%20384.6%20440.47%20338.98%20481.22ZM291.84%20379.34C291.84%20379.34%20342.63%20325.51%20357.84%20310.31C359.57%20308.92%20361.1%20307.31%20362.4%20305.51C363.7%20303.71%20364.75%20301.75%20365.53%20299.67C366.3%20297.59%20366.79%20295.41%20366.98%20293.2C367.17%20290.99%20367.06%20288.77%20366.66%20286.59C366.66%20284.45%20366.14%20282.34%20365.14%20280.45C364.14%20278.55%20362.69%20276.94%20360.92%20275.74C359.15%20274.53%20357.11%20273.79%20354.98%20273.56C352.85%20273.33%20350.7%20273.63%20348.71%20274.42C347.38%20275.01%20346.06%20275.64%20344.76%20276.31C343.47%20276.99%20342.19%20277.71%20340.95%20278.47C339.7%20279.23%20338.48%20280.04%20337.29%20280.88C336.1%20281.73%20334.94%20282.62%20333.81%20283.55C328%20289.31%20322.27%20295.15%20316.61%20301.07C310.95%20306.98%20305.37%20312.97%20299.87%20319.03C294.37%20325.09%20288.94%20331.22%20283.6%20337.42C278.26%20343.62%20273%20349.89%20267.82%20356.23L291.84%20379.34ZM345.67%20428.91L411.67%20360.18C414.71%20354.1%20420.49%20345.28%20423.53%20339.2C424.22%20337.84%20424.61%20336.34%20424.67%20334.82C424.73%20333.29%20424.47%20331.77%20423.89%20330.36C423.31%20328.94%20422.44%20327.67%20421.33%20326.63C420.22%20325.58%20418.89%20324.79%20417.44%20324.3C416.07%20323.55%20414.61%20322.99%20413.1%20322.6C411.59%20322.22%20410.03%20322.03%20408.47%20322.03C406.91%20322.03%20405.36%20322.22%20403.85%20322.6C402.33%20322.99%20400.87%20323.55%20399.5%20324.3C396.76%20324.3%20390.68%20330.38%20384.6%20336.16C366.66%20354.1%20318.91%20405.19%20318.91%20405.19L345.67%20428.91Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M752.89%20305.75V751.89H306.75C306.87%20693.33%20318.49%20635.37%20340.95%20581.3C363.41%20527.22%20396.28%20478.09%20437.68%20436.68C479.09%20395.28%20528.22%20362.41%20582.3%20339.95C636.37%20317.49%20694.33%20305.87%20752.89%20305.75Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1199.03%20751.891C1199.11%20810.501%201187.62%20868.551%201165.23%20922.711C1142.84%20976.881%201109.98%201026.09%201068.53%201067.53C1027.09%201108.98%20977.881%201141.84%20923.711%201164.23C869.551%201186.62%20811.501%201198.11%20752.891%201198.03V751.891H1199.03Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23359%22%3E%20%3Crect%20width%3D%221504%22%20height%3D%221504%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--bata { aspect-ratio:4.3978; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221183%22%20height%3D%22269%22%20viewBox%3D%220%200%201183%20269%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23357)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M856.798%20184.26C869.097%20119.67%20945.254%2086.9176%201001.45%2090.0369V90.0432C1023.16%2091.2682%201041.89%2097.8478%201052.76%20110.035L1052.83%20109.959C1052.86%20109.984%201052.88%20110.009%201052.9%20110.035C1057.36%20105.311%201061.84%20100.595%201066.34%2095.9093C1068.97%2093.1752%201076.49%2094.0592%201083.17%2095.2652C1090.73%2096.6355%201098.8%2099.7548%201103.97%2099.7611C1109.23%2099.7611%201121.68%2095.9472%201133.52%2094.1728C1145.35%2092.4048%201156.57%2092.6763%201154.64%2097.45L1144.05%20123.655H1144.25L1109.63%20209.164C1102.74%20226.194%201129.73%20221.68%201167.23%20182.069C1173.66%20186.275%201176.58%20187.064%201182.99%20202.976C1150.96%20230.469%201120.38%20250.221%201078%20264.801C1039.89%20277.922%201011.81%20258.928%201002.98%20227.274C948.833%20277.916%20873.39%20277.373%20851.733%20220.246C816.532%20237.624%20774.451%20256.087%20756.999%20261.119C743.315%20265.066%20730.859%20267.838%20719.173%20267.914C700.425%20268.04%20679.982%20250.612%20686.432%20224.969C655.384%20238.697%20630.724%20247.651%20595.149%20259.882C557.039%20273.003%20535.117%20258.935%20526.277%20227.274C472.118%20277.922%20396.644%20277.373%20375.013%20220.196C353.748%20230.419%20324.319%20245.441%20297.237%20256.036C253.676%20275.586%20202.629%20271.677%20164.493%20231.802L176.963%20212.202C194.914%20231.271%20216.812%20230.198%20233.973%20214.715C252.247%20198.228%20263.844%20166.435%20255.529%20140.388C251.874%20128.94%20238.949%20120.15%20214.706%20121.754L222.212%20101.794C246.999%20100.917%20266.386%2097.6142%20277.085%2082.0555C292.109%2060.2013%20292.368%2026.5266%20260.132%2027.4359C254.435%2027.5937%20247.732%2028.8061%20239.929%2031.3129C234.346%2047.8125%20224.507%2067.2861%20216.59%2087.7448C198.525%20134.427%20178.291%20186.243%20154.787%20219.64C126.782%20259.427%2096.8348%20267.295%2072.7054%20265.678C47.4631%20263.974%2027.6714%20256.339%200.00725936%20231.429C-0.125528%20220.859%200.930451%20216.262%202.94124%20203.141C12.6221%20216.754%2045.9834%20231.246%2056.7962%20215.409C80.9888%20179.954%20107.61%20111.569%20127.471%2067.425C109.519%2073.3732%2092.8575%2084.2845%2069.3225%20100.582C69.6007%2097.8794%2061.469%2091.9565%2061.7915%2084.0067C99.4906%2040.5888%20166.264%2014.043%20211.228%204.55249C279.949%20-9.9517%20353.691%2011.1447%20364.756%2054.5184C372.136%2083.4447%20337.971%20110.559%20305.868%20114.474C324.345%20125.334%20343.953%20144.196%20348.866%20167.268C351.345%20178.912%20350.662%20191.415%20346.969%20203.38C357.769%20198.373%20370.82%20191.8%20379.42%20188.308C392.971%2095.5115%20536.577%2065.6633%20576.205%20110.035L589.787%2095.9093C592.418%2093.1752%20599.936%2094.0592%20606.607%2095.2652C614.163%2096.6355%20622.244%2099.7548%20627.411%2099.7611C632.678%2099.7611%20645.122%2095.9472%20656.953%2094.1728C668.79%2092.4048%20680.007%2092.6763%20678.079%2097.45L632.937%20209.171C622.731%20234.391%20697.674%20189.697%20702.094%20187.279L734.292%20118.938L701.133%20119.399L707.089%2091.3124L743.726%2091.3314C749.752%2083.3436%20751.535%2073.7521%20759.534%2067.7407C770.385%2059.5825%20795.134%2063.9647%20806.51%2056.5516C816.342%2050.1362%20823.898%2040.4751%20832.985%2025.5984C840.832%2012.7423%20869.381%2016.0321%20863.925%2028.2757L838.379%2092.0765L870.659%2091.7734C885.999%2092.5753%20872.828%20118.022%20855.388%20118.218L828.717%20118.704L797.746%20198.784C787.578%20225.02%20827.142%20201.688%20856.798%20184.26ZM560.245%20129.47C556.704%20117.315%20546.119%20114.051%20536.963%20115.023C515.281%20117.334%20494.332%20141.367%20483.582%20158.087C466.358%20184.886%20470.443%20224.363%20497.822%20217.026C526.789%20209.247%20565.386%20147.125%20560.245%20129.47ZM1036.95%20129.47C1033.4%20117.315%201022.82%20114.051%201013.66%20115.023C991.976%20117.334%20971.034%20141.367%20960.278%20158.087C943.053%20184.886%20947.145%20224.363%20974.518%20217.026C1003.49%20209.247%201042.08%20147.125%201036.95%20129.47Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23357%22%3E%20%3Crect%20width%3D%221183%22%20height%3D%22269%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221183%22%20height%3D%22269%22%20viewBox%3D%220%200%201183%20269%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23357)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M856.798%20184.26C869.097%20119.67%20945.254%2086.9176%201001.45%2090.0369V90.0432C1023.16%2091.2682%201041.89%2097.8478%201052.76%20110.035L1052.83%20109.959C1052.86%20109.984%201052.88%20110.009%201052.9%20110.035C1057.36%20105.311%201061.84%20100.595%201066.34%2095.9093C1068.97%2093.1752%201076.49%2094.0592%201083.17%2095.2652C1090.73%2096.6355%201098.8%2099.7548%201103.97%2099.7611C1109.23%2099.7611%201121.68%2095.9472%201133.52%2094.1728C1145.35%2092.4048%201156.57%2092.6763%201154.64%2097.45L1144.05%20123.655H1144.25L1109.63%20209.164C1102.74%20226.194%201129.73%20221.68%201167.23%20182.069C1173.66%20186.275%201176.58%20187.064%201182.99%20202.976C1150.96%20230.469%201120.38%20250.221%201078%20264.801C1039.89%20277.922%201011.81%20258.928%201002.98%20227.274C948.833%20277.916%20873.39%20277.373%20851.733%20220.246C816.532%20237.624%20774.451%20256.087%20756.999%20261.119C743.315%20265.066%20730.859%20267.838%20719.173%20267.914C700.425%20268.04%20679.982%20250.612%20686.432%20224.969C655.384%20238.697%20630.724%20247.651%20595.149%20259.882C557.039%20273.003%20535.117%20258.935%20526.277%20227.274C472.118%20277.922%20396.644%20277.373%20375.013%20220.196C353.748%20230.419%20324.319%20245.441%20297.237%20256.036C253.676%20275.586%20202.629%20271.677%20164.493%20231.802L176.963%20212.202C194.914%20231.271%20216.812%20230.198%20233.973%20214.715C252.247%20198.228%20263.844%20166.435%20255.529%20140.388C251.874%20128.94%20238.949%20120.15%20214.706%20121.754L222.212%20101.794C246.999%20100.917%20266.386%2097.6142%20277.085%2082.0555C292.109%2060.2013%20292.368%2026.5266%20260.132%2027.4359C254.435%2027.5937%20247.732%2028.8061%20239.929%2031.3129C234.346%2047.8125%20224.507%2067.2861%20216.59%2087.7448C198.525%20134.427%20178.291%20186.243%20154.787%20219.64C126.782%20259.427%2096.8348%20267.295%2072.7054%20265.678C47.4631%20263.974%2027.6714%20256.339%200.00725936%20231.429C-0.125528%20220.859%200.930451%20216.262%202.94124%20203.141C12.6221%20216.754%2045.9834%20231.246%2056.7962%20215.409C80.9888%20179.954%20107.61%20111.569%20127.471%2067.425C109.519%2073.3732%2092.8575%2084.2845%2069.3225%20100.582C69.6007%2097.8794%2061.469%2091.9565%2061.7915%2084.0067C99.4906%2040.5888%20166.264%2014.043%20211.228%204.55249C279.949%20-9.9517%20353.691%2011.1447%20364.756%2054.5184C372.136%2083.4447%20337.971%20110.559%20305.868%20114.474C324.345%20125.334%20343.953%20144.196%20348.866%20167.268C351.345%20178.912%20350.662%20191.415%20346.969%20203.38C357.769%20198.373%20370.82%20191.8%20379.42%20188.308C392.971%2095.5115%20536.577%2065.6633%20576.205%20110.035L589.787%2095.9093C592.418%2093.1752%20599.936%2094.0592%20606.607%2095.2652C614.163%2096.6355%20622.244%2099.7548%20627.411%2099.7611C632.678%2099.7611%20645.122%2095.9472%20656.953%2094.1728C668.79%2092.4048%20680.007%2092.6763%20678.079%2097.45L632.937%20209.171C622.731%20234.391%20697.674%20189.697%20702.094%20187.279L734.292%20118.938L701.133%20119.399L707.089%2091.3124L743.726%2091.3314C749.752%2083.3436%20751.535%2073.7521%20759.534%2067.7407C770.385%2059.5825%20795.134%2063.9647%20806.51%2056.5516C816.342%2050.1362%20823.898%2040.4751%20832.985%2025.5984C840.832%2012.7423%20869.381%2016.0321%20863.925%2028.2757L838.379%2092.0765L870.659%2091.7734C885.999%2092.5753%20872.828%20118.022%20855.388%20118.218L828.717%20118.704L797.746%20198.784C787.578%20225.02%20827.142%20201.688%20856.798%20184.26ZM560.245%20129.47C556.704%20117.315%20546.119%20114.051%20536.963%20115.023C515.281%20117.334%20494.332%20141.367%20483.582%20158.087C466.358%20184.886%20470.443%20224.363%20497.822%20217.026C526.789%20209.247%20565.386%20147.125%20560.245%20129.47ZM1036.95%20129.47C1033.4%20117.315%201022.82%20114.051%201013.66%20115.023C991.976%20117.334%20971.034%20141.367%20960.278%20158.087C943.053%20184.886%20947.145%20224.363%20974.518%20217.026C1003.49%20209.247%201042.08%20147.125%201036.95%20129.47Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23357%22%3E%20%3Crect%20width%3D%221183%22%20height%3D%22269%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--bayes { aspect-ratio:1.7958; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22510%22%20height%3D%22284%22%20viewBox%3D%220%200%20510%20284%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23368)%22%3E%20%3Cpath%20d%3D%22M27.9499%20200.98C27.9666%20201.948%2027.8317%20202.913%2027.5499%20203.84C27.3031%20204.613%2026.9675%20205.354%2026.5499%20206.05C26.2264%20206.608%2025.8406%20207.128%2025.3999%20207.6L24.4799%20208.6C24.0459%20209.021%2023.5777%20209.406%2023.0799%20209.75C22.4541%20210.175%2021.7834%20210.531%2021.0799%20210.81C20.146%20211.173%2019.1777%20211.441%2018.1899%20211.61C16.8689%20211.836%2015.5302%20211.943%2014.1899%20211.93C12.9699%20211.93%2011.7599%20211.93%2010.5799%20211.79C9.39992%20211.65%208.18992%20211.65%206.96992%20211.65C6.04992%20211.65%205.13992%20211.65%204.21992%20211.76C3.29992%20211.87%202.38992%20211.89%201.46992%20211.93C1.61659%20208.596%201.72326%20205.15%201.78992%20201.59C1.85659%20198.03%201.88659%20194.696%201.87992%20191.59C1.87992%20188.423%201.84992%20185.263%201.78992%20182.11C1.72992%20178.956%201.60659%20175.796%201.41992%20172.63C2.14992%20172.71%202.82992%20172.76%203.47992%20172.8C4.12992%20172.84%205.09992%20172.88%206.39992%20172.91C6.70992%20172.91%207.23992%20172.91%207.99992%20172.85C8.75992%20172.79%209.56992%20172.78%2010.4099%20172.76C11.2499%20172.74%2012.0399%20172.71%2012.7899%20172.67C13.5399%20172.63%2014.0599%20172.61%2014.3699%20172.61C15.899%20172.602%2017.4256%20172.736%2018.9299%20173.01C20.2782%20173.244%2021.5706%20173.729%2022.7399%20174.44C23.8516%20175.128%2024.7621%20176.097%2025.3799%20177.25C26.0922%20178.668%2026.4361%20180.243%2026.3799%20181.83C26.4032%20183.067%2026.107%20184.29%2025.5199%20185.38C24.9362%20186.38%2024.1696%20187.262%2023.2599%20187.98C22.3292%20188.736%2021.2868%20189.343%2020.1699%20189.78C19.046%20190.23%2017.8702%20190.539%2016.6699%20190.7C18.1605%20190.837%2019.6361%20191.105%2021.0799%20191.5C22.3841%20191.847%2023.6096%20192.441%2024.6899%20193.25C25.7297%20194.042%2026.5661%20195.07%2027.1299%20196.25C27.7371%20197.75%2028.0167%20199.363%2027.9499%20200.98ZM8.78992%20189.41L9.98992%20189.5C10.3699%20189.5%2010.7499%20189.5%2011.1399%20189.5C13.2496%20189.657%2015.3363%20188.978%2016.9499%20187.61C17.6587%20186.849%2018.2023%20185.95%2018.5466%20184.969C18.8908%20183.988%2019.0281%20182.946%2018.9499%20181.91C19.0302%20180.196%2018.4786%20178.513%2017.3999%20177.18C16.8289%20176.558%2016.125%20176.074%2015.3406%20175.762C14.5563%20175.45%2013.7118%20175.32%2012.8699%20175.38C11.5299%20175.38%2010.2099%20175.44%208.91992%20175.55C8.91992%20176.31%208.84992%20177.09%208.82992%20177.87C8.80992%20178.65%208.82992%20179.43%208.82992%20180.19L8.78992%20189.41ZM8.78992%20203.85C8.78992%20204.31%208.78992%20205.02%208.78992%20205.97C8.78992%20206.92%208.83992%20207.8%208.87992%20208.61C9.44992%20208.69%209.96992%20208.76%2010.4299%20208.84C10.9425%20208.92%2011.4611%20208.957%2011.9799%20208.95C14.2423%20209.107%2016.4789%20208.391%2018.2299%20206.95C19.6833%20205.616%2020.4099%20203.543%2020.4099%20200.73C20.4528%20199.331%2020.2183%20197.937%2019.7199%20196.63C19.3173%20195.604%2018.6682%20194.694%2017.8299%20193.98C16.954%20193.283%2015.9262%20192.804%2014.8299%20192.58C13.5323%20192.299%2012.2074%20192.165%2010.8799%20192.18C10.19%20192.184%209.50134%20192.241%208.81992%20192.35V203.87L8.78992%20203.85Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M42.6003%20176.86C42.5203%20179.04%2042.4803%20181.43%2042.4603%20184.02C42.4403%20186.61%2042.4603%20189.16%2042.4603%20191.64C42.4603%20193.926%2042.4803%20195.806%2042.5203%20197.28C42.5203%20198.75%2042.6303%20199.96%2042.7503%20200.92C42.8284%20201.721%2043.003%20202.51%2043.2703%20203.27C43.5219%20203.905%2043.8583%20204.504%2044.2703%20205.05C45.1811%20206.211%2046.391%20207.103%2047.7703%20207.63C49.4506%20208.275%2051.2405%20208.588%2053.0403%20208.55C55.1558%20208.598%2057.24%20208.032%2059.0403%20206.92C60.6581%20205.93%2061.8974%20204.426%2062.5603%20202.65C62.6886%20202.303%2062.7955%20201.949%2062.8803%20201.59C62.9874%20201.088%2063.0642%20200.58%2063.1103%20200.07C63.1703%20199.46%2063.2103%20198.74%2063.2503%20197.92C63.2903%20197.1%2063.3103%20196.1%2063.3103%20194.92C63.3103%20191.18%2063.3103%20187.44%2063.2203%20183.72C63.1303%20180%2063.0203%20176.26%2062.7903%20172.52L64.0503%20172.75C64.4859%20172.827%2064.9278%20172.864%2065.3703%20172.86C65.8324%20172.858%2066.2937%20172.821%2066.7503%20172.75L68.0703%20172.52L67.9003%20175.27C67.8203%20176.49%2067.7603%20178.09%2067.7003%20180.06C67.6403%20182.03%2067.5903%20184.06%2067.5603%20186.22C67.5303%20188.38%2067.4803%20190.46%2067.4503%20192.52C67.4203%20194.58%2067.3703%20196.34%2067.3303%20197.79C67.3121%20199.269%2067.1682%20200.744%2066.9003%20202.2C66.6851%20203.363%2066.3081%20204.491%2065.7803%20205.55C65.3115%20206.476%2064.7046%20207.326%2063.9803%20208.07C63.2246%20208.824%2062.3898%20209.494%2061.4903%20210.07C60.0607%20210.995%2058.4697%20211.643%2056.8003%20211.98C55.1584%20212.345%2053.4824%20212.537%2051.8003%20212.55C50.0323%20212.547%2048.2683%20212.383%2046.5303%20212.06C44.7836%20211.752%2043.0962%20211.172%2041.5303%20210.34C39.9673%20209.517%2038.6023%20208.363%2037.5303%20206.96C36.3552%20205.354%2035.624%20203.467%2035.4103%20201.49C35.3249%20200.951%2035.288%20200.405%2035.3003%20199.86V182.86C35.3003%20182.14%2035.3003%20181.32%2035.3003%20180.43C35.3003%20179.54%2035.3003%20178.62%2035.2403%20177.71C35.1803%20176.8%2035.1903%20175.89%2035.1503%20174.99C35.1103%20174.09%2035.0703%20173.28%2035.0303%20172.55L37.0303%20172.78C38.3362%20172.926%2039.6544%20172.926%2040.9603%20172.78L42.7603%20172.55L42.6003%20176.86Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M76.8102%20203.219C77.3303%20204.455%2078.0021%20205.62%2078.8102%20206.689C79.406%20207.475%2080.1334%20208.152%2080.9602%20208.689C81.6636%20209.128%2082.4387%20209.44%2083.2502%20209.609C84.0543%20209.764%2084.8714%20209.841%2085.6902%20209.839C86.745%20209.856%2087.7936%20209.673%2088.7802%20209.299C89.6553%20208.965%2090.4544%20208.458%2091.1302%20207.809C91.7891%20207.171%2092.3069%20206.401%2092.6502%20205.549C93.017%20204.638%2093.2005%20203.662%2093.1902%20202.679C93.2217%20201.685%2093.0268%20200.697%2092.6202%20199.789C92.2817%20199.069%2091.8254%20198.41%2091.2702%20197.839C90.8131%20197.363%2090.279%20196.968%2089.6902%20196.669C89.1502%20196.403%2088.7502%20196.213%2088.4902%20196.099C87.6902%20195.759%2086.7002%20195.359%2085.4902%20194.899C84.2802%20194.439%2083.3402%20194.039%2082.5402%20193.699C81.3167%20193.176%2080.1533%20192.522%2079.0702%20191.749C78.2386%20191.116%2077.5215%20190.345%2076.9502%20189.469C76.3977%20188.653%2076.001%20187.741%2075.7802%20186.779C75.5418%20185.716%2075.4277%20184.629%2075.4402%20183.539C75.4512%20182.208%2075.6636%20180.887%2076.0702%20179.619C76.5031%20178.242%2077.2375%20176.978%2078.2202%20175.919C79.372%20174.717%2080.7708%20173.779%2082.3202%20173.169C84.3845%20172.385%2086.5829%20172.015%2088.7902%20172.079C90.5719%20172.035%2092.3498%20172.268%2094.0602%20172.769C95.5045%20173.24%2096.9203%20173.794%2098.3002%20174.429C97.9902%20175.119%2097.7602%20175.689%2097.5802%20176.149C97.4002%20176.609%2097.2602%20177.019%2097.1502%20177.379C97.0402%20177.739%2096.9302%20178.119%2096.8302%20178.499C96.7302%20178.879%2096.6302%20179.339%2096.5202%20179.879H95.7202C95.5337%20179.104%2095.1921%20178.375%2094.716%20177.736C94.2399%20177.096%2093.6392%20176.56%2092.9502%20176.159C91.4957%20175.299%2089.8296%20174.863%2088.1402%20174.899C87.2137%20174.829%2086.2828%20174.955%2085.4088%20175.271C84.5349%20175.586%2083.7378%20176.083%2083.0702%20176.729C81.96%20177.903%2081.3533%20179.464%2081.3802%20181.079C81.3525%20181.98%2081.5375%20182.874%2081.9202%20183.689C82.2947%20184.415%2082.8238%20185.05%2083.4702%20185.549C84.2273%20186.138%2085.0618%20186.619%2085.9502%20186.979C86.9502%20187.399%2088.0702%20187.859%2089.3302%20188.359C90.4402%20188.779%2091.3302%20189.149%2092.1702%20189.479C93.0102%20189.809%2093.6502%20190.119%2094.2602%20190.429C94.8147%20190.716%2095.3434%20191.051%2095.8402%20191.429C96.3061%20191.778%2096.738%20192.17%2097.1302%20192.599C97.7066%20193.196%2098.198%20193.869%2098.5902%20194.599C98.9362%20195.266%2099.2142%20195.967%2099.4202%20196.689C99.5983%20197.329%2099.732%20197.981%2099.8202%20198.639C99.8911%20199.133%2099.9312%20199.631%2099.9402%20200.129C99.9286%20201.634%2099.658%20203.126%2099.1402%20204.539C98.5858%20206.04%2097.7163%20207.404%2096.5902%20208.539C95.3079%20209.82%2093.7763%20210.824%2092.0902%20211.489C89.9535%20212.307%2087.6772%20212.698%2085.3902%20212.639C84.2265%20212.641%2083.0651%20212.538%2081.9202%20212.329C80.9043%20212.139%2079.9021%20211.882%2078.9202%20211.559C78.0202%20211.249%2077.2102%20210.939%2076.4902%20210.609C75.7702%20210.279%2075.1502%20209.989%2074.6602%20209.719C74.8935%20208.993%2075.0835%20208.373%2075.2302%20207.859C75.3747%20207.381%2075.4883%20206.893%2075.5702%20206.399C75.6502%20205.939%2075.7102%20205.469%2075.7702%20204.999C75.8302%20204.529%2075.8902%20203.939%2075.9702%20203.249H76.7502L76.8102%20203.219Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M108.38%20185.75C108.38%20183.92%20108.38%20181.95%20108.32%20179.85C108.26%20177.75%20108.11%20175.31%20107.8%20172.52C108.33%20172.6%20109.04%20172.67%20109.92%20172.75C110.8%20172.83%20111.45%20172.86%20111.92%20172.86C112.588%20172.857%20113.255%20172.82%20113.92%20172.75L115.98%20172.52C115.83%20173.59%20115.7%20174.96%20115.61%20176.62C115.52%20178.28%20115.45%20180.05%20115.41%20181.92C115.37%20183.79%20115.35%20185.65%20115.35%20187.51V192.51C115.35%20196.79%20115.39%20200.503%20115.47%20203.65C115.55%20206.796%20115.703%20209.536%20115.93%20211.87C115.28%20211.87%20114.61%20211.77%20113.93%20211.67C113.267%20211.575%20112.599%20211.528%20111.93%20211.53C111.241%20211.534%20110.553%20211.58%20109.87%20211.67C109.15%20211.76%20108.46%20211.83%20107.81%20211.87C108.123%20208.43%20108.303%20204.456%20108.35%20199.95C108.396%20195.443%20108.406%20190.71%20108.38%20185.75Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M126.03%20188.61C126.03%20185.9%20126.03%20183.2%20126.03%20180.53C126.03%20177.86%20126.03%20175.18%20125.94%20172.53L126.63%20172.62H127.32C127.547%20172.62%20127.767%20172.62%20127.98%20172.62L128.64%20172.53L132.71%20176.94C134.05%20178.39%20135.42%20179.84%20136.84%20181.29C138.26%20182.74%20139.72%20184.29%20141.25%20185.79C142.78%20187.29%20144.4%20188.95%20146.12%20190.63L152.88%20197.28C153.307%20197.725%20153.758%20198.145%20154.23%20198.54C154.59%20198.85%20155.1%20199.25%20155.75%20199.74V186.98C155.75%20184.54%20155.684%20182.104%20155.55%20179.67C155.42%20177.24%20155.25%20174.85%20155.06%20172.48L156.15%20172.71C156.605%20172.793%20157.068%20172.83%20157.53%20172.82C157.983%20172.826%20158.435%20172.789%20158.88%20172.71C159.25%20172.64%20159.6%20172.56%20159.94%20172.48C159.82%20174.2%20159.72%20175.78%20159.62%20177.24C159.52%20178.7%20159.46%20180.15%20159.42%20181.62C159.38%20183.09%20159.35%20184.62%20159.33%20186.26C159.31%20187.9%20159.33%20189.75%20159.33%20191.85V195.12C159.33%20196.46%20159.33%20197.84%20159.33%20199.27C159.33%20200.7%20159.33%20202.07%20159.33%20203.37V207.61C159.33%20208.11%20159.33%20208.61%20159.33%20209.19C159.33%20209.77%20159.33%20210.28%20159.33%20210.79V212.08L158.76%20211.99C158.57%20211.981%20158.38%20211.981%20158.19%20211.99H157.59C157.389%20212.009%20157.188%20212.039%20156.99%20212.08C155.77%20210.78%20154.38%20209.32%20152.84%20207.7C151.3%20206.08%20149.68%20204.41%20148%20202.7C146.32%20200.99%20144.6%20199.24%20142.84%20197.49C141.08%20195.74%20139.38%20194.05%20137.74%20192.49C136.1%20190.93%20134.57%20189.41%20133.16%20188.05C131.75%20186.69%20130.54%20185.56%20129.55%20184.64V189.88C129.55%20191.42%20129.55%20192.88%20129.55%20194.29C129.55%20195.7%20129.55%20197.05%20129.61%20198.39C129.67%20199.73%20129.66%20201.16%20129.7%20202.69C129.7%20203.53%20129.7%20204.23%20129.7%20204.78C129.7%20205.33%20129.7%20205.92%20129.79%20206.53C129.88%20207.14%20129.88%20207.86%20129.93%20208.68C129.98%20209.5%20130.07%20210.56%20130.19%20211.86C129.88%20211.86%20129.48%20211.76%20128.99%20211.66C128.536%20211.568%20128.074%20211.521%20127.61%20211.52C127.208%20211.521%20126.806%20211.557%20126.41%20211.63L125.32%20211.86L125.78%20203.86C125.78%20203.48%20125.85%20202.95%20125.87%20202.28C125.89%20201.61%20125.87%20200.9%20125.93%20200.16C125.99%20199.42%20125.93%20198.71%20125.93%20198.04V188.6L126.03%20188.61Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M176.74%20189.53H179.46C180.55%20189.53%20181.68%20189.53%20182.87%20189.47L186.31%20189.33C187.42%20189.27%20188.31%20189.21%20189.12%20189.13C189.04%20189.44%20188.98%20189.75%20188.92%20190.08C188.856%20190.449%20188.826%20190.824%20188.83%20191.2C188.798%20191.862%20188.896%20192.525%20189.12%20193.15C188.36%20193.07%20187.61%20193.02%20186.88%20192.98L184.7%20192.87L180.7%20192.78C179.38%20192.78%20178.05%20192.78%20176.7%20192.78V208.28H178.79L182.29%20208.19L186.41%20208.07C187.84%20208.07%20189.17%20207.98%20190.41%20207.9C190.187%20208.504%20190.088%20209.146%20190.12%20209.79C190.096%20210.488%20190.194%20211.185%20190.41%20211.85C186.97%20211.623%20183.456%20211.51%20179.87%20211.51C176.283%20211.51%20172.693%20211.623%20169.1%20211.85C169.18%20210.63%20169.23%20209.43%20169.27%20208.27C169.31%20207.11%20169.35%20205.91%20169.38%20204.69C169.38%20203.85%20169.45%20202.83%20169.47%20201.62C169.49%20200.41%20169.47%20199.2%20169.53%20197.95C169.59%20196.7%20169.53%20195.53%20169.59%20194.4C169.65%20193.27%20169.59%20192.4%20169.59%20191.74C169.59%20191.08%20169.59%20190.06%20169.59%20188.53C169.59%20187%20169.59%20185.29%20169.5%20183.4C169.41%20181.51%20169.41%20179.59%20169.36%20177.64C169.31%20175.69%20169.22%20173.99%20169.1%20172.54C169.79%20172.54%20170.58%20172.62%20171.46%20172.65L174.2%20172.77L177%20172.86H179.53C180.87%20172.86%20182.44%20172.86%20184.26%20172.75L190.08%20172.52C190%20172.86%20189.94%20173.17%20189.88%20173.44C189.816%20173.742%20189.786%20174.051%20189.79%20174.36C189.757%20175.078%20189.855%20175.796%20190.08%20176.48L184.69%20176.19L183.29%20176.1C182.89%20176.1%20182.42%20176.1%20181.89%20176.1H176.75V189.56L176.74%20189.53Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M197.76%20203.221C198.28%20204.456%20198.952%20205.622%20199.76%20206.691C200.356%20207.477%20201.083%20208.153%20201.91%20208.691C202.614%20209.13%20203.389%20209.441%20204.2%20209.611C205.004%20209.765%20205.821%20209.842%20206.64%20209.841C207.695%20209.858%20208.744%20209.675%20209.73%20209.301C210.605%20208.967%20211.404%20208.46%20212.08%20207.811C212.739%20207.172%20213.257%20206.402%20213.6%20205.551C213.967%20204.639%20214.15%20203.664%20214.14%20202.681C214.172%20201.687%20213.977%20200.699%20213.57%20199.791C213.232%20199.07%20212.775%20198.411%20212.22%20197.841C211.763%20197.365%20211.229%20196.969%20210.64%20196.671C210.1%20196.404%20209.7%20196.214%20209.44%20196.101C208.64%20195.761%20207.65%20195.361%20206.49%20194.901C205.33%20194.441%20204.34%20194.041%20203.49%20193.701C202.267%20193.178%20201.103%20192.524%20200.02%20191.751C199.151%20191.133%20198.396%20190.368%20197.79%20189.491C197.238%20188.674%20196.841%20187.762%20196.62%20186.801C196.382%20185.738%20196.268%20184.65%20196.28%20183.561C196.291%20182.23%20196.504%20180.908%20196.91%20179.641C197.343%20178.263%20198.078%20176.999%20199.06%20175.941C200.212%20174.739%20201.611%20173.801%20203.16%20173.191C205.224%20172.407%20207.423%20172.037%20209.63%20172.101C211.412%20172.057%20213.19%20172.29%20214.9%20172.791C216.345%20173.261%20217.76%20173.816%20219.14%20174.451C218.83%20175.141%20218.6%20175.711%20218.42%20176.171C218.24%20176.631%20218.1%20177.041%20217.99%20177.401C217.88%20177.761%20217.77%20178.141%20217.67%20178.521C217.57%20178.901%20217.47%20179.361%20217.36%20179.901H216.56C216.383%20179.133%20216.054%20178.407%20215.592%20177.769C215.13%20177.13%20214.544%20176.59%20213.87%20176.181C212.416%20175.321%20210.75%20174.884%20209.06%20174.921C208.134%20174.85%20207.203%20174.977%20206.329%20175.292C205.455%20175.607%20204.658%20176.105%20203.99%20176.751C202.88%20177.924%20202.273%20179.486%20202.3%20181.101C202.273%20182.001%20202.458%20182.895%20202.84%20183.711C203.215%20184.437%20203.744%20185.072%20204.39%20185.571C205.173%20186.159%20206.035%20186.633%20206.95%20186.981C207.95%20187.401%20209.07%20187.861%20210.33%20188.361C211.44%20188.781%20212.33%20189.151%20213.17%20189.481C214.01%20189.811%20214.65%20190.121%20215.26%20190.431C215.815%20190.718%20216.343%20191.053%20216.84%20191.431C217.306%20191.779%20217.738%20192.171%20218.13%20192.601C218.707%20193.197%20219.198%20193.87%20219.59%20194.601C219.936%20195.268%20220.214%20195.968%20220.42%20196.691C220.598%20197.331%20220.732%20197.982%20220.82%20198.641C220.891%20199.135%20220.931%20199.632%20220.94%20200.131C220.929%20201.636%20220.658%20203.128%20220.14%20204.541C219.586%20206.041%20218.716%20207.405%20217.59%20208.541C216.308%20209.822%20214.776%20210.826%20213.09%20211.491C210.954%20212.309%20208.677%20212.699%20206.39%20212.641C205.226%20212.643%20204.065%20212.539%20202.92%20212.331C201.904%20212.141%20200.902%20211.883%20199.92%20211.561C199.02%20211.251%20198.21%20210.941%20197.49%20210.611C196.77%20210.281%20196.15%20209.991%20195.66%20209.721C195.887%20208.994%20196.077%20208.374%20196.23%20207.861C196.375%20207.382%20196.488%20206.894%20196.57%20206.401C196.65%20205.941%20196.71%20205.471%20196.77%20205.001C196.83%20204.531%20196.89%20203.941%20196.97%20203.251H197.75L197.76%20203.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M228.53%20203.221C229.05%20204.456%20229.722%20205.622%20230.53%20206.691C231.126%20207.477%20231.854%20208.153%20232.68%20208.691C233.384%20209.13%20234.159%20209.441%20234.97%20209.611C235.775%20209.765%20236.592%20209.842%20237.41%20209.841C238.465%20209.858%20239.514%20209.675%20240.5%20209.301C241.376%20208.967%20242.175%20208.46%20242.85%20207.811C243.509%20207.172%20244.027%20206.402%20244.37%20205.551C244.737%20204.639%20244.921%20203.664%20244.91%20202.681C244.942%20201.687%20244.747%20200.699%20244.34%20199.791C244.002%20199.07%20243.546%20198.411%20242.99%20197.841C242.533%20197.365%20241.999%20196.969%20241.41%20196.671C240.87%20196.404%20240.47%20196.214%20240.21%20196.101C239.41%20195.761%20238.42%20195.361%20237.21%20194.901C236%20194.441%20235.06%20194.041%20234.26%20193.701C233.037%20193.178%20231.873%20192.524%20230.79%20191.751C229.921%20191.133%20229.166%20190.368%20228.56%20189.491C228.008%20188.674%20227.611%20187.762%20227.39%20186.801C227.152%20185.738%20227.038%20184.65%20227.05%20183.561C227.061%20182.23%20227.274%20180.908%20227.68%20179.641C228.113%20178.263%20228.848%20176.999%20229.83%20175.941C230.982%20174.739%20232.381%20173.801%20233.93%20173.191C235.995%20172.407%20238.193%20172.037%20240.4%20172.101C242.182%20172.057%20243.96%20172.29%20245.67%20172.791C247.115%20173.261%20248.53%20173.816%20249.91%20174.451C249.6%20175.141%20249.37%20175.711%20249.19%20176.171C249.01%20176.631%20248.87%20177.041%20248.76%20177.401C248.65%20177.761%20248.54%20178.141%20248.44%20178.521C248.34%20178.901%20248.24%20179.361%20248.13%20179.901H247.33C247.153%20179.133%20246.824%20178.407%20246.362%20177.769C245.9%20177.13%20245.315%20176.59%20244.64%20176.181C243.186%20175.321%20241.52%20174.884%20239.83%20174.921C238.904%20174.85%20237.973%20174.977%20237.099%20175.292C236.225%20175.607%20235.428%20176.105%20234.76%20176.751C233.65%20177.924%20233.044%20179.486%20233.07%20181.101C233.043%20182.001%20233.228%20182.895%20233.61%20183.711C233.985%20184.437%20234.514%20185.072%20235.16%20185.571C235.921%20186.16%20236.758%20186.641%20237.65%20187.001C238.65%20187.421%20239.77%20187.881%20241.03%20188.381C242.29%20188.881%20243.08%20189.171%20243.87%20189.501C244.66%20189.831%20245.35%20190.141%20245.96%20190.451C246.515%20190.738%20247.044%20191.073%20247.54%20191.451C248.006%20191.799%20248.438%20192.191%20248.83%20192.621C249.407%20193.217%20249.898%20193.89%20250.29%20194.621C250.636%20195.288%20250.914%20195.988%20251.12%20196.711C251.299%20197.351%20251.432%20198.002%20251.52%20198.661C251.591%20199.155%20251.631%20199.652%20251.64%20200.151C251.629%20201.656%20251.358%20203.148%20250.84%20204.561C250.286%20206.061%20249.416%20207.425%20248.29%20208.561C247.008%20209.842%20245.476%20210.846%20243.79%20211.511C241.654%20212.329%20239.377%20212.719%20237.09%20212.661C235.927%20212.663%20234.765%20212.559%20233.62%20212.351C232.604%20212.161%20231.602%20211.903%20230.62%20211.581C229.72%20211.271%20228.91%20210.961%20228.19%20210.631C227.47%20210.301%20226.85%20210.011%20226.36%20209.741C226.587%20209.014%20226.777%20208.394%20226.93%20207.881C227.075%20207.402%20227.189%20206.914%20227.27%20206.421C227.35%20205.961%20227.41%20205.491%20227.47%20205.021C227.53%20204.551%20227.59%20203.961%20227.67%20203.271H228.45L228.53%20203.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M274.2%20203.221C274.72%20204.456%20275.392%20205.622%20276.2%20206.691C276.796%20207.477%20277.523%20208.153%20278.35%20208.691C279.053%20209.13%20279.829%20209.441%20280.64%20209.611C281.444%20209.765%20282.261%20209.842%20283.08%20209.841C284.135%20209.858%20285.184%20209.675%20286.17%20209.301C287.045%20208.967%20287.844%20208.46%20288.52%20207.811C289.179%20207.172%20289.697%20206.402%20290.04%20205.551C290.407%20204.639%20290.59%20203.664%20290.58%20202.681C290.612%20201.687%20290.417%20200.699%20290.01%20199.791C289.672%20199.07%20289.215%20198.411%20288.66%20197.841C288.203%20197.365%20287.669%20196.969%20287.08%20196.671C286.54%20196.404%20286.14%20196.214%20285.88%20196.101C285.08%20195.761%20284.09%20195.361%20282.93%20194.901C281.77%20194.441%20280.78%20194.041%20279.98%20193.701C278.757%20193.178%20277.593%20192.524%20276.51%20191.751C275.641%20191.133%20274.886%20190.368%20274.28%20189.491C273.728%20188.674%20273.331%20187.762%20273.11%20186.801C272.872%20185.738%20272.758%20184.65%20272.77%20183.561C272.781%20182.23%20272.994%20180.908%20273.4%20179.641C273.833%20178.263%20274.567%20176.999%20275.55%20175.941C276.702%20174.739%20278.101%20173.801%20279.65%20173.191C281.714%20172.407%20283.913%20172.037%20286.12%20172.101C287.902%20172.057%20289.68%20172.29%20291.39%20172.791C292.834%20173.261%20294.25%20173.816%20295.63%20174.451C295.32%20175.141%20295.09%20175.711%20294.91%20176.171C294.73%20176.631%20294.59%20177.041%20294.48%20177.401C294.37%20177.761%20294.26%20178.141%20294.16%20178.521C294.06%20178.901%20293.96%20179.361%20293.85%20179.901H293.05C292.873%20179.133%20292.544%20178.407%20292.082%20177.769C291.62%20177.13%20291.034%20176.59%20290.36%20176.181C288.906%20175.321%20287.24%20174.884%20285.55%20174.921C284.624%20174.85%20283.693%20174.977%20282.819%20175.292C281.945%20175.607%20281.148%20176.105%20280.48%20176.751C279.37%20177.924%20278.763%20179.486%20278.79%20181.101C278.762%20182.001%20278.947%20182.895%20279.33%20183.711C279.705%20184.437%20280.234%20185.072%20280.88%20185.571C281.64%20186.16%20282.478%20186.641%20283.37%20187.001C284.37%20187.421%20285.49%20187.881%20286.75%20188.381C288.01%20188.881%20288.8%20189.171%20289.59%20189.501C290.38%20189.831%20291.07%20190.141%20291.68%20190.451C292.235%20190.738%20292.763%20191.073%20293.26%20191.451C293.726%20191.799%20294.158%20192.191%20294.55%20192.621C295.127%20193.217%20295.618%20193.89%20296.01%20194.621C296.356%20195.288%20296.634%20195.988%20296.84%20196.711C297.018%20197.351%20297.152%20198.002%20297.24%20198.661C297.311%20199.155%20297.351%20199.652%20297.36%20200.151C297.349%20201.656%20297.078%20203.148%20296.56%20204.561C296.006%20206.061%20295.136%20207.425%20294.01%20208.561C292.728%20209.842%20291.196%20210.846%20289.51%20211.511C287.373%20212.329%20285.097%20212.719%20282.81%20212.661C281.646%20212.663%20280.485%20212.559%20279.34%20212.351C278.324%20212.161%20277.322%20211.903%20276.34%20211.581C275.44%20211.271%20274.63%20210.961%20273.91%20210.631C273.19%20210.301%20272.57%20210.011%20272.08%20209.741C272.307%20209.014%20272.497%20208.394%20272.65%20207.881C272.795%20207.402%20272.908%20206.914%20272.99%20206.421C273.07%20205.961%20273.13%20205.491%20273.19%20205.021C273.25%20204.551%20273.31%20203.961%20273.39%20203.271H274.17L274.2%20203.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M337.17%20180.53H336.6C336.41%20180.19%20336.12%20179.71%20335.74%20179.1C335.268%20178.396%20334.664%20177.792%20333.96%20177.32C332.971%20176.657%20331.89%20176.144%20330.75%20175.8C329.095%20175.317%20327.374%20175.094%20325.65%20175.14C320.843%20175.14%20317.197%20176.63%20314.71%20179.61C312.223%20182.59%20310.97%20186.81%20310.95%20192.27C310.95%20192.77%20310.95%20193.45%20311.01%20194.33C311.06%20195.337%20311.184%20196.34%20311.38%20197.33C311.605%20198.505%20311.94%20199.657%20312.38%20200.77C312.885%20202.028%20313.557%20203.212%20314.38%20204.29C314.892%20205.016%20315.479%20205.686%20316.13%20206.29C316.823%20206.921%20317.58%20207.478%20318.39%20207.95C319.278%20208.469%20320.234%20208.863%20321.23%20209.12C322.379%20209.421%20323.563%20209.565%20324.75%20209.55C326.327%20209.573%20327.9%20209.371%20329.42%20208.95C330.684%20208.589%20331.898%20208.068%20333.03%20207.4C334.03%20206.807%20334.963%20206.106%20335.81%20205.31C336.576%20204.584%20337.303%20203.82%20337.99%20203.02L338.62%20203.42L337.99%20209.09C333.548%20211.521%20328.554%20212.764%20323.49%20212.7C320.8%20212.716%20318.126%20212.28%20315.58%20211.41C313.181%20210.601%20310.97%20209.315%20309.08%20207.63C307.178%20205.899%20305.674%20203.777%20304.67%20201.41C303.538%20198.708%20302.983%20195.799%20303.04%20192.87C303.02%20190.119%20303.477%20187.385%20304.39%20184.79C305.255%20182.318%20306.655%20180.068%20308.49%20178.2C310.476%20176.232%20312.864%20174.717%20315.49%20173.76C318.674%20172.608%20322.045%20172.055%20325.43%20172.13C327.7%20172.12%20329.965%20172.341%20332.19%20172.79C334.482%20173.276%20336.713%20174.017%20338.84%20175L337.17%20180.53Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M371.78%20192.511C370.22%20192.431%20368.68%20192.381%20367.15%20192.341C365.62%20192.301%20364.08%20192.281%20362.52%20192.281C360.96%20192.281%20359.25%20192.281%20357.64%20192.341C356.03%20192.401%20354.39%20192.441%20352.76%20192.511V198.241C352.76%20200.071%20352.76%20201.651%20352.76%20202.971C352.76%20204.291%20352.82%20205.451%20352.88%20206.471C352.94%20207.491%20352.99%20208.401%20353.05%20209.221C353.11%20210.041%20353.17%20210.911%20353.25%20211.831C352.83%20211.831%20352.25%20211.731%20351.56%20211.631C350.811%20211.532%20350.056%20211.485%20349.3%20211.491C348.632%20211.493%20347.964%20211.529%20347.3%20211.601L345.3%20211.831C345.533%20207.444%20345.677%20203.111%20345.73%20198.831C345.783%20194.551%20345.813%20190.217%20345.82%20185.831C345.82%20183.584%20345.773%20181.367%20345.68%20179.181C345.58%20177.001%20345.44%20174.811%20345.25%20172.591C345.82%20172.671%20346.54%20172.741%20347.4%20172.821C348.26%20172.901%20348.92%20172.931%20349.4%20172.931H350.4L351.55%20172.841L352.61%20172.721L353.38%20172.611C353.3%20173.411%20353.24%20174.211%20353.18%20174.991C353.12%20175.771%20353.06%20176.761%20353.01%20177.941C352.96%20179.121%20352.91%20180.591%20352.89%20182.321C352.87%20184.051%20352.89%20186.321%20352.89%20188.941C354.34%20189.021%20355.77%20189.071%20357.2%20189.111C358.63%20189.151%20360.07%20189.171%20361.51%20189.171C363.26%20189.171%20364.99%20189.171%20366.71%20189.111C368.43%20189.051%20370.16%20189.021%20371.91%20188.941V186.941C371.91%20186.001%20371.91%20185.011%20371.91%20183.941C371.91%20182.871%20371.91%20181.941%20371.85%20180.941C371.79%20179.941%20371.85%20179.361%20371.85%20179.021V177.851C371.85%20177.531%20371.85%20177.141%20371.79%20176.701C371.73%20176.261%20371.71%20175.701%20371.68%20175.101C371.65%20174.501%20371.6%20173.621%20371.56%20172.551C372.1%20172.631%20372.77%20172.701%20373.56%20172.781C374.35%20172.861%20375.1%20172.891%20375.76%20172.891C376.42%20172.891%20376.97%20172.891%20377.76%20172.781C378.55%20172.671%20379.24%20172.631%20379.76%20172.551C379.567%20174.037%20379.423%20175.937%20379.33%20178.251C379.23%20180.561%20379.16%20182.961%20379.1%20185.441C379.04%20187.921%20379%20190.321%20378.98%20192.631C378.96%20194.941%20378.98%20196.841%20378.98%20198.331C378.98%20200.624%20379%20202.934%20379.04%20205.261C379.068%20207.466%20379.242%20209.668%20379.56%20211.851L377.46%20211.621C376.759%20211.545%20376.055%20211.508%20375.35%20211.511C374.682%20211.513%20374.014%20211.55%20373.35%20211.621L371.35%20211.851C371.35%20211.581%20371.35%20211.011%20371.44%20210.131C371.53%20209.251%20371.55%20208.281%20371.61%20207.211C371.67%20206.141%20371.71%20205.101%20371.75%20204.091C371.79%20203.081%20371.81%20202.301%20371.81%20201.771L371.78%20192.511Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M408.63%20172.049C411.277%20172.044%20413.91%20172.421%20416.45%20173.169C418.924%20173.88%20421.233%20175.076%20423.24%20176.689C425.267%20178.342%20426.9%20180.426%20428.02%20182.789C429.286%20185.563%20429.902%20188.591%20429.82%20191.639C429.862%20194.605%20429.336%20197.551%20428.27%20200.319C427.306%20202.801%20425.823%20205.048%20423.92%20206.909C421.983%20208.767%20419.681%20210.201%20417.16%20211.119C414.37%20212.138%20411.419%20212.643%20408.45%20212.609C405.608%20212.631%20402.782%20212.195%20400.08%20211.319C397.589%20210.519%20395.281%20209.235%20393.29%20207.539C391.334%20205.847%20389.777%20203.743%20388.73%20201.379C387.581%20198.741%20387.014%20195.886%20387.07%20193.009C386.99%20189.788%20387.586%20186.586%20388.82%20183.609C389.885%20181.112%20391.49%20178.882%20393.52%20177.079C395.512%20175.345%20397.846%20174.048%20400.37%20173.269C403.045%20172.446%20405.83%20172.035%20408.63%20172.049ZM394.95%20192.329C394.948%20194.46%20395.19%20196.583%20395.67%20198.659C396.107%20200.64%20396.903%20202.525%20398.02%20204.219C399.101%20205.831%20400.529%20207.181%20402.2%20208.169C404.113%20209.235%20406.28%20209.76%20408.47%20209.689C410.646%20209.756%20412.799%20209.219%20414.69%20208.139C416.366%20207.137%20417.794%20205.77%20418.87%20204.139C419.981%20202.428%20420.786%20200.536%20421.25%20198.549C421.746%20196.523%20421.997%20194.445%20422%20192.359C422.009%20190.123%20421.768%20187.892%20421.28%20185.709C420.856%20183.743%20420.081%20181.869%20418.99%20180.179C417.939%20178.597%20416.513%20177.298%20414.84%20176.399C412.871%20175.405%20410.684%20174.924%20408.48%20174.999C406.28%20174.928%20404.106%20175.482%20402.21%20176.599C400.533%20177.651%20399.106%20179.058%20398.03%20180.719C396.923%20182.44%20396.128%20184.343%20395.68%20186.339C395.207%20188.301%20394.962%20190.311%20394.95%20192.329Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M457.44%20172.049C460.087%20172.044%20462.721%20172.421%20465.26%20173.169C467.735%20173.88%20470.043%20175.076%20472.05%20176.689C474.077%20178.342%20475.71%20180.426%20476.83%20182.789C478.097%20185.563%20478.713%20188.59%20478.63%20191.639C478.673%20194.605%20478.146%20197.551%20477.08%20200.319C476.116%20202.801%20474.633%20205.048%20472.73%20206.909C470.794%20208.767%20468.491%20210.201%20465.97%20211.119C463.181%20212.138%20460.23%20212.643%20457.26%20212.609C454.419%20212.631%20451.593%20212.195%20448.89%20211.319C446.4%20210.519%20444.092%20209.235%20442.1%20207.539C440.145%20205.847%20438.588%20203.743%20437.54%20201.379C436.391%20198.741%20435.825%20195.886%20435.88%20193.009C435.8%20189.788%20436.396%20186.586%20437.63%20183.609C438.696%20181.112%20440.301%20178.882%20442.33%20177.079C444.323%20175.345%20446.656%20174.048%20449.18%20173.269C451.856%20172.447%20454.641%20172.036%20457.44%20172.049ZM443.75%20192.329C443.749%20194.46%20443.991%20196.583%20444.47%20198.659C444.907%20200.64%20445.704%20202.525%20446.82%20204.219C447.901%20205.831%20449.329%20207.181%20451%20208.169C452.914%20209.235%20455.081%20209.76%20457.27%20209.689C459.447%20209.756%20461.599%20209.219%20463.49%20208.139C465.166%20207.137%20466.595%20205.77%20467.67%20204.139C468.781%20202.428%20469.586%20200.536%20470.05%20198.549C470.546%20196.523%20470.798%20194.445%20470.8%20192.359C470.81%20190.122%20470.568%20187.892%20470.08%20185.709C469.657%20183.743%20468.881%20181.869%20467.79%20180.179C466.739%20178.596%20465.314%20177.298%20463.64%20176.399C461.671%20175.405%20459.484%20174.924%20457.28%20174.999C455.081%20174.927%20452.906%20175.482%20451.01%20176.599C449.333%20177.651%20447.906%20179.058%20446.83%20180.719C445.724%20182.44%20444.928%20184.343%20444.48%20186.339C444.007%20188.301%20443.762%20190.311%20443.75%20192.329Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M487.01%20188.15V186.55C487.01%20186.09%20487.01%20185.55%20487.01%20185.03C487.01%20184.51%20487.01%20183.81%20486.95%20183.03C486.89%20182.25%20486.9%20181.22%20486.86%20179.96C486.86%20179.65%20486.86%20179.15%20486.86%20178.44C486.86%20177.73%20486.81%20176.99%20486.77%20176.2C486.73%20175.41%20486.7%20174.67%20486.68%20173.97C486.66%20173.27%20486.68%20172.78%20486.68%20172.51C487.339%20172.652%20488.007%20172.749%20488.68%20172.8C489.267%20172.84%20489.933%20172.86%20490.68%20172.86C491.4%20172.86%20492.07%20172.86%20492.68%20172.77C493.29%20172.68%20493.96%20172.63%20494.68%20172.51C494.567%20174.69%20494.48%20176.786%20494.42%20178.8C494.36%20180.8%20494.31%20182.8%20494.25%20184.8C494.19%20186.8%20494.15%20188.8%20494.14%20190.85C494.13%20192.9%20494.14%20195%20494.14%20197.22C494.14%20199.22%20494.14%20201.17%20494.2%20202.99C494.26%20204.81%20494.28%20206.52%20494.31%20208.13H497.63C498.74%20208.13%20499.97%20208.13%20501.33%20208.07C502.69%20208.01%20504.03%20207.96%20505.33%20207.88C506.63%20207.8%20507.75%20207.69%20508.6%20207.56C508.52%20207.87%20508.46%20208.16%20508.4%20208.45C508.327%20208.913%20508.297%20209.381%20508.31%20209.85C508.304%20210.184%20508.325%20210.518%20508.37%20210.85C508.429%20211.17%20508.506%20211.488%20508.6%20211.8C507.87%20211.8%20507.04%20211.72%20506.11%20211.69L503.22%20211.57L500.22%20211.48H497.61C495.78%20211.48%20494.02%20211.48%20492.34%20211.57C490.66%20211.66%20488.77%20211.71%20486.67%20211.83C486.67%20211.683%20486.67%20211.223%20486.67%20210.45C486.67%20209.69%20486.72%20208.76%20486.76%20207.67C486.8%20206.58%20486.83%20205.42%20486.85%20204.17C486.87%20202.92%20486.9%20201.75%20486.94%20200.65C486.98%20199.55%20487.01%20198.58%20487.03%20197.76C487.05%20196.94%20487.03%20196.41%20487.03%20196.18V188.18L487.01%20188.15Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M21.4896%20280.7C20.9406%20280.961%2020.368%20281.169%2019.7796%20281.32C19.1096%20281.5%2018.3696%20281.67%2017.5396%20281.81C16.688%20281.961%2015.8245%20282.035%2014.9596%20282.03C13.1566%20282.051%2011.3626%20281.774%209.64961%20281.21C8.08394%20280.699%206.65005%20279.848%205.44961%20278.72C4.24791%20277.57%203.30677%20276.175%202.68961%20274.63C1.36127%20271.084%201.36127%20267.177%202.68961%20263.63C3.31484%20262.08%204.27032%20260.684%205.48961%20259.54C6.73271%20258.397%208.20061%20257.525%209.79961%20256.98C11.5813%20256.383%2013.4506%20256.089%2015.3296%20256.11C16.8041%20256.094%2018.2751%20256.259%2019.7096%20256.6C20.9123%20256.889%2022.0869%20257.284%2023.2196%20257.78C22.995%20258.214%2022.8366%20258.68%2022.7496%20259.16C22.6296%20259.74%2022.5296%20260.23%2022.4596%20260.62L22.2396%20260.69C21.9385%20260.326%2021.6037%20259.992%2021.2396%20259.69C20.7575%20259.301%2020.246%20258.95%2019.7096%20258.64C19.075%20258.284%2018.4047%20257.996%2017.7096%20257.78C16.9321%20257.542%2016.1228%20257.424%2015.3096%20257.43C13.9454%20257.415%2012.5898%20257.649%2011.3096%20258.12C10.0928%20258.574%208.99753%20259.303%208.10961%20260.25C7.14717%20261.297%206.42079%20262.539%205.97961%20263.89C4.96648%20267.297%204.96648%20270.924%205.97961%20274.33C6.4313%20275.689%207.17156%20276.935%208.14961%20277.98C9.0394%20278.926%2010.1341%20279.654%2011.3496%20280.11C12.6298%20280.582%2013.9854%20280.816%2015.3496%20280.8C16.168%20280.808%2016.9831%20280.697%2017.7696%20280.47C18.4559%20280.264%2019.1247%20280.003%2019.7696%20279.69C20.3536%20279.405%2020.9123%20279.07%2021.4396%20278.69C21.9396%20278.34%2022.3596%20278.03%2022.6896%20277.76L22.8396%20277.91L22.5096%20280.06C22.195%20280.312%2021.8528%20280.527%2021.4896%20280.7Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M27.4598%20261.271C27.3998%20259.731%2027.3298%20258.161%2027.2598%20256.561L28.1698%20256.691C28.4583%20256.727%2028.749%20256.744%2029.0398%20256.741C29.3304%20256.739%2029.6208%20256.722%2029.9098%20256.691C30.1998%20256.691%2030.4998%20256.611%2030.8198%20256.561C30.7498%20258.161%2030.6798%20259.731%2030.6198%20261.271C30.5598%20262.811%2030.5298%20264.381%2030.5298%20265.981V272.241C30.5298%20273.841%2030.5298%20275.421%2030.6198%20276.971C30.7098%20278.521%2030.7498%20280.051%2030.8198%20281.551C30.2598%20281.501%2029.6698%20281.481%2029.0398%20281.481C28.4098%20281.481%2027.8198%20281.481%2027.2598%20281.551C27.3298%20280.051%2027.3998%20278.551%2027.4598%20276.971C27.5198%20275.391%2027.5498%20273.841%2027.5498%20272.241V265.981C27.5498%20264.381%2027.5198%20262.811%2027.4598%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M42.1799%20258.449H40.1799C39.4899%20258.449%2038.7999%20258.449%2038.1099%20258.519L36.1099%20258.649C35.4699%20258.699%2034.8899%20258.759%2034.3799%20258.829C34.491%20258.452%2034.5515%20258.062%2034.5599%20257.669C34.5425%20257.287%2034.4822%20256.908%2034.3799%20256.539L39.0699%20256.669C40.5899%20256.669%2042.1599%20256.719%2043.7599%20256.719C45.3599%20256.719%2046.9299%20256.719%2048.4499%20256.669C49.9699%20256.619%2051.5399%20256.589%2053.1399%20256.539C53.0358%20256.918%2052.9754%20257.307%2052.9599%20257.699C52.97%20258.082%2053.0305%20258.462%2053.1399%20258.829C52.6299%20258.759%2052.0499%20258.699%2051.4099%20258.649L49.4099%20258.519C48.7199%20258.519%2048.0299%20258.459%2047.3399%20258.449H45.3399C45.2732%20260.949%2045.2365%20263.459%2045.2299%20265.979V272.239C45.2299%20273.839%2045.2299%20275.419%2045.3199%20276.969C45.4099%20278.519%2045.4499%20280.049%2045.5199%20281.549C44.9599%20281.499%2044.3699%20281.479%2043.7399%20281.479C43.1099%20281.479%2042.5199%20281.479%2041.9599%20281.549C42.0299%20280.049%2042.0999%20278.549%2042.1599%20276.969C42.2199%20275.389%2042.2499%20273.839%2042.2499%20272.239V265.979C42.2765%20263.459%2042.2532%20260.949%2042.1799%20258.449Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M62.0303%20269.53C61.5603%20268.74%2061.0303%20267.87%2060.4703%20266.91L56.8703%20260.91C56.3003%20259.91%2055.7803%20259.09%2055.3203%20258.33L54.3203%20256.6L55.3203%20256.73C55.6523%20256.766%2055.9863%20256.783%2056.3203%20256.78C56.6603%20256.78%2056.9903%20256.78%2057.3203%20256.73L58.3203%20256.6C59.407%20258.713%2060.517%20260.786%2061.6503%20262.82C62.7836%20264.853%2063.977%20266.976%2065.2303%20269.19C65.7903%20268.32%2066.3703%20267.36%2066.9803%20266.31C67.5903%20265.26%2068.1903%20264.2%2068.8003%20263.11C69.4103%20262.02%2069.9903%20260.92%2070.5503%20259.82C71.1103%20258.72%2071.6303%20257.64%2072.1103%20256.6C73.0418%20256.84%2074.0189%20256.84%2074.9503%20256.6C73.7903%20258.37%2072.7403%20259.97%2071.8203%20261.4C70.9003%20262.83%2070.0903%20264.13%2069.3803%20265.29C68.6703%20266.45%2068.0603%20267.5%2067.5203%20268.44C66.9803%20269.38%2066.5203%20270.22%2066.1403%20270.97V273.84C66.1403%20273.84%2066.1403%20275.84%2066.1403%20276.84C66.1403%20277.84%2066.1903%20278.73%2066.2303%20279.57C66.2703%20280.41%2066.3103%20281.08%2066.3603%20281.57C65.8003%20281.52%2065.2103%20281.5%2064.5803%20281.5C63.9503%20281.5%2063.3503%20281.5%2062.8003%20281.57C62.9634%20280.048%2063.0468%20278.52%2063.0503%20276.99V271.35L62.0303%20269.53Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M107.42%20260.419C107.425%20259.13%20107.365%20257.842%20107.24%20256.559L108%20256.689C108.242%20256.726%20108.486%20256.743%20108.73%20256.739C109.1%20256.731%20109.467%20256.67%20109.82%20256.559C109.75%20257.409%20109.67%20258.419%20109.6%20259.559C109.53%20260.699%20109.47%20261.999%20109.42%20263.339C109.37%20264.679%20109.32%20266.069%20109.27%20267.489C109.22%20268.909%20109.19%20270.289%20109.16%20271.619C109.163%20273.108%20108.91%20274.587%20108.41%20275.989C107.986%20277.21%20107.304%20278.326%20106.41%20279.259C105.504%20280.163%20104.402%20280.847%20103.19%20281.259C101.781%20281.741%20100.299%20281.974%2098.8101%20281.949C95.1701%20281.949%2092.5268%20281.126%2090.8801%20279.479C89.2335%20277.833%2088.4101%20275.226%2088.4101%20271.659C88.4101%20270.519%2088.4101%20269.509%2088.5001%20268.659C88.5901%20267.809%2088.5901%20266.869%2088.5901%20265.949C88.5901%20263.949%2088.5901%20262.109%2088.5201%20260.529C88.4501%20258.949%2088.4201%20257.619%2088.3701%20256.529C88.6601%20256.579%2088.9801%20256.619%2089.3201%20256.659C89.6531%20256.68%2089.9871%20256.68%2090.3201%20256.659C90.5799%20256.675%2090.8404%20256.675%2091.1001%20256.659C91.3501%20256.659%2091.6201%20256.579%2091.8801%20256.529C91.8801%20257.059%2091.7801%20257.759%2091.7301%20258.619C91.6801%20259.479%2091.6301%20260.459%2091.5801%20261.549C91.5301%20262.639%2091.5001%20263.819%2091.4701%20265.079C91.4401%20266.339%2091.4701%20267.649%2091.4701%20269.009C91.4701%20269.839%2091.4701%20270.689%2091.4701%20271.579C91.496%20272.444%2091.5795%20273.306%2091.7201%20274.159C91.859%20274.985%2092.0974%20275.791%2092.4301%20276.559C92.7533%20277.316%2093.23%20277.997%2093.8301%20278.559C94.4659%20279.179%2095.2213%20279.662%2096.0501%20279.979C97.1541%20280.335%2098.3106%20280.501%2099.4701%20280.469C100.621%20280.504%20101.767%20280.307%20102.84%20279.889C103.687%20279.544%20104.45%20279.022%20105.08%20278.359C105.666%20277.724%20106.127%20276.985%20106.44%20276.179C106.769%20275.347%20107.007%20274.482%20107.15%20273.599C107.298%20272.71%20107.381%20271.811%20107.4%20270.909C107.4%20270.009%20107.4%20269.189%20107.4%20268.439C107.46%20264.979%20107.44%20262.289%20107.42%20260.419Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M127.95%20272.121C124.803%20268.741%20121.65%20265.374%20118.49%20262.021C118.49%20262.701%20118.49%20263.611%20118.42%20264.751C118.35%20265.891%20118.42%20267.441%20118.42%20269.411C118.42%20269.921%20118.42%20270.551%20118.42%20271.301C118.42%20272.051%20118.42%20272.841%20118.42%20273.671C118.42%20274.501%20118.42%20275.331%20118.42%20276.181C118.42%20277.031%20118.42%20277.821%20118.49%20278.551C118.56%20279.281%20118.54%20279.911%20118.56%20280.461C118.58%20281.011%20118.56%20281.381%20118.63%20281.571C118.208%20281.52%20117.784%20281.497%20117.36%20281.501C116.909%20281.497%20116.458%20281.52%20116.01%20281.571C116.01%20281.331%20116.11%20280.881%20116.17%20280.221C116.23%20279.561%20116.29%20278.781%20116.33%20277.871C116.37%20276.961%20116.43%20275.971%20116.49%20274.871C116.55%20273.771%20116.6%20272.741%20116.64%20271.671C116.68%20270.601%20116.71%20269.561%20116.73%20268.541C116.75%20267.521%20116.73%20266.611%20116.73%20265.811C116.73%20263.477%20116.73%20261.477%20116.73%20259.811C116.73%20258.144%20116.7%20256.894%20116.64%20256.061H117.22L121.97%20261.211C123.663%20263.044%20125.33%20264.851%20126.97%20266.631L131.7%20271.691C133.19%20273.281%20134.5%20274.631%20135.61%20275.751V270.801C135.61%20268.247%20135.61%20265.767%20135.61%20263.361C135.61%20260.951%20135.49%20258.671%20135.37%20256.541C135.774%20256.65%20136.191%20256.71%20136.61%20256.721C137.002%20256.706%20137.391%20256.645%20137.77%20256.541C137.72%20257.071%20137.67%20257.871%20137.61%20258.941C137.55%20260.011%20137.49%20261.151%20137.43%20262.361C137.37%20263.571%20137.31%20264.761%20137.27%20265.931C137.23%20267.101%20137.2%20268.031%20137.2%20268.731V270.981C137.2%20271.801%20137.2%20272.671%20137.2%20273.561C137.2%20274.451%20137.2%20275.361%20137.2%20276.271C137.2%20277.181%20137.2%20278.031%20137.2%20278.821C137.2%20279.611%20137.2%20280.291%20137.2%20280.881V282.081H136.69C134.016%20278.821%20131.103%20275.501%20127.95%20272.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M144.15%20261.271C144.09%20259.731%20144.02%20258.161%20143.95%20256.561L144.86%20256.691C145.149%20256.727%20145.439%20256.744%20145.73%20256.741C146.021%20256.739%20146.311%20256.722%20146.6%20256.691C146.89%20256.691%20147.19%20256.611%20147.51%20256.561C147.44%20258.161%20147.37%20259.731%20147.31%20261.271C147.25%20262.811%20147.22%20264.381%20147.22%20265.981V272.241C147.22%20273.841%20147.22%20275.421%20147.31%20276.971C147.4%20278.521%20147.44%20280.051%20147.51%20281.551C146.95%20281.501%20146.36%20281.481%20145.73%20281.481C145.1%20281.481%20144.51%20281.481%20143.95%20281.551C144.02%20280.051%20144.09%20278.551%20144.15%20276.971C144.21%20275.391%20144.24%20273.841%20144.24%20272.241V265.981C144.24%20264.381%20144.21%20262.811%20144.15%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M159.09%20276.391C158.29%20274.391%20157.43%20272.251%20156.53%20270.021C155.63%20267.791%20154.69%20265.511%20153.73%20263.181C152.77%20260.851%20151.86%20258.641%20150.98%20256.561L151.98%20256.691C152.282%20256.727%20152.586%20256.743%20152.89%20256.741C153.18%20256.741%20153.48%20256.741%20153.8%20256.691C154.12%20256.641%20154.44%20256.611%20154.8%20256.561C155.334%20258.161%20155.924%20259.827%20156.57%20261.561C157.217%20263.294%20157.884%20265.084%20158.57%20266.931C159.29%20268.751%20160.024%20270.594%20160.77%20272.461C161.52%20274.331%20162.29%20276.181%20163.06%20278.031C163.5%20277.031%20163.97%20275.931%20164.48%20274.701C164.99%20273.471%20165.48%20272.201%20166.03%20270.881C166.58%20269.561%20167.03%20268.211%20167.58%20266.881L169.05%20262.981C169.52%20261.721%20169.95%20260.541%20170.34%20259.451C170.73%20258.361%20171.05%20257.451%20171.34%20256.611C171.783%20256.719%20172.235%20256.78%20172.69%20256.791C173.146%20256.778%20173.598%20256.718%20174.04%20256.611C172.154%20260.831%20170.334%20265.014%20168.58%20269.161C166.827%20273.307%20165.16%20277.454%20163.58%20281.601C163.182%20281.552%20162.782%20281.528%20162.38%20281.531C161.979%20281.523%20161.578%20281.547%20161.18%20281.601C160.587%20280.147%20159.89%20278.411%20159.09%20276.391Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M177.66%20261.221C177.6%20259.671%20177.53%20258.121%20177.46%20256.561L180.72%20256.691C181.8%20256.691%20182.89%20256.741%20183.98%20256.741C185.07%20256.741%20186.15%20256.741%20187.22%20256.691C188.29%20256.641%20189.37%20256.611%20190.46%20256.561C190.313%20257.28%20190.313%20258.021%20190.46%20258.741L188.33%20258.591L186.33%20258.441C185.61%20258.441%20184.83%20258.351%20183.98%20258.311C183.13%20258.271%20182.11%20258.261%20180.92%20258.261C180.92%20259.041%20180.89%20259.781%20180.83%20260.481C180.83%20261.181%20180.78%20261.981%20180.78%20262.881C180.78%20263.781%20180.78%20264.751%20180.78%20265.651C180.78%20266.551%20180.78%20267.231%20180.78%20267.651H183.66C183.66%20267.651%20185.28%20267.601%20185.99%20267.561L187.99%20267.451L189.68%20267.321C189.607%20267.693%20189.57%20268.071%20189.57%20268.451C189.572%20268.817%20189.609%20269.182%20189.68%20269.541C189.05%20269.471%20188.32%20269.411%20187.48%20269.361C186.64%20269.311%20185.81%20269.281%20184.97%20269.271H182.6H180.84V269.981C180.84%20269.981%20180.84%20270.561%20180.84%20270.981V274.581V278.001C180.84%20278.001%20180.84%20279.581%20180.89%20280.001H183.44H186.15C186.15%20280.001%20187.87%20279.921%20188.66%20279.851C189.351%20279.798%20190.039%20279.708%20190.72%20279.581C190.668%20279.763%20190.638%20279.951%20190.63%20280.141V280.701C190.623%20281.021%20190.66%20281.34%20190.74%20281.651C189.65%20281.601%20188.56%20281.581%20187.48%20281.581H180.88C179.79%20281.581%20178.68%20281.581%20177.57%20281.651C177.64%20280.101%20177.71%20278.551%20177.77%20277.011C177.83%20275.471%20177.86%20273.901%20177.86%20272.301V265.981C177.76%20264.351%20177.72%20262.771%20177.66%20261.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M195.42%20261.271C195.36%20259.731%20195.29%20258.161%20195.22%20256.561L197.29%20256.691C197.96%20256.691%20198.66%20256.741%20199.36%20256.741C200.06%20256.741%20200.75%20256.741%20201.43%20256.651C202.11%20256.561%20202.8%20256.561%20203.5%20256.561C204.477%20256.558%20205.452%20256.655%20206.41%20256.851C207.271%20257.033%20208.091%20257.372%20208.83%20257.851C209.513%20258.293%20210.076%20258.898%20210.47%20259.611C210.896%20260.456%20211.102%20261.395%20211.07%20262.341C211.099%20263.394%20210.829%20264.435%20210.29%20265.341C209.796%20266.15%20209.147%20266.854%20208.38%20267.411C207.641%20267.952%20206.825%20268.38%20205.96%20268.681C205.198%20268.956%20204.411%20269.157%20203.61%20269.281L204.81%20270.811C205.32%20271.471%20205.89%20272.191%20206.52%20272.981C207.15%20273.771%20207.81%20274.591%20208.52%20275.451C209.23%20276.311%20209.85%20277.141%20210.52%20277.921C211.19%20278.701%20211.74%20279.431%20212.3%20280.091C212.86%20280.751%20213.3%20281.241%20213.65%20281.581C213.288%20281.532%20212.924%20281.509%20212.56%20281.511H210.42C210.065%20281.508%20209.711%20281.532%20209.36%20281.581C209%20281.071%20208.44%20280.311%20207.7%20279.291C206.96%20278.271%20206.14%20277.181%20205.24%20276.021C204.34%20274.861%20203.43%20273.701%20202.49%20272.541C201.55%20271.381%20200.7%20270.411%20199.92%20269.611H198.54V272.271C198.54%20273.871%20198.54%20275.451%20198.63%20277.001C198.72%20278.551%20198.76%20280.081%20198.83%20281.581C198.27%20281.531%20197.68%20281.511%20197.05%20281.511C196.42%20281.511%20195.83%20281.511%20195.27%20281.581C195.34%20280.081%20195.41%20278.581%20195.47%20277.001C195.53%20275.421%20195.56%20273.871%20195.56%20272.271V265.981C195.51%20264.381%20195.48%20262.811%20195.42%20261.271ZM199.61%20268.201C200.01%20268.201%20200.45%20268.201%20200.94%20268.201C201.73%20268.198%20202.517%20268.114%20203.29%20267.951C204.082%20267.786%20204.84%20267.485%20205.53%20267.061C206.216%20266.627%20206.795%20266.042%20207.22%20265.351C207.696%20264.529%20207.928%20263.589%20207.89%20262.641C207.919%20261.825%20207.737%20261.015%20207.36%20260.291C207.031%20259.695%20206.56%20259.19%20205.99%20258.821C205.434%20258.461%20204.817%20258.207%20204.17%20258.071C203.535%20257.941%20202.888%20257.874%20202.24%20257.871C201.39%20257.871%20200.69%20257.871%20200.13%20257.921C199.57%20257.971%20199.13%20258.001%20198.71%20258.051C198.71%20259.381%20198.61%20260.711%20198.56%20262.051C198.51%20263.391%20198.49%20264.671%20198.49%20265.981V268.051C198.859%20268.13%20199.233%20268.18%20199.61%20268.201Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M217.29%20278.159C218.009%20279.135%20219.006%20279.871%20220.15%20280.269C220.828%20280.509%20221.542%20280.628%20222.26%20280.619C223.005%20280.63%20223.743%20280.487%20224.43%20280.199C225.049%20279.939%20225.607%20279.554%20226.07%20279.069C226.51%20278.583%20226.85%20278.016%20227.07%20277.399C227.313%20276.74%20227.435%20276.042%20227.43%20275.339C227.48%20274.377%20227.174%20273.43%20226.57%20272.679C225.973%20272%20225.25%20271.443%20224.44%20271.039C223.55%20270.58%20222.632%20270.179%20221.69%20269.839C220.726%20269.486%20219.803%20269.026%20218.94%20268.469C218.092%20267.929%20217.366%20267.217%20216.81%20266.379C216.194%20265.356%20215.895%20264.173%20215.95%20262.979C215.935%20262.024%20216.123%20261.077%20216.5%20260.199C216.864%20259.37%20217.403%20258.63%20218.08%20258.029C218.81%20257.398%20219.656%20256.916%20220.57%20256.609C221.627%20256.255%20222.736%20256.083%20223.85%20256.099C224.866%20256.081%20225.878%20256.223%20226.85%20256.519C227.711%20256.805%20228.513%20257.242%20229.22%20257.809C228.998%20258.229%20228.814%20258.667%20228.67%20259.119C228.494%20259.695%20228.347%20260.279%20228.23%20260.869H227.79C227.65%20260.49%20227.486%20260.119%20227.3%20259.759C227.084%20259.345%20226.8%20258.97%20226.46%20258.649C226.088%20258.298%20225.663%20258.007%20225.2%20257.789C224.651%20257.54%20224.053%20257.42%20223.45%20257.439C222.812%20257.432%20222.178%20257.544%20221.58%20257.769C221.027%20257.978%20220.521%20258.294%20220.09%20258.699C219.658%20259.102%20219.317%20259.593%20219.09%20260.139C218.855%20260.717%20218.737%20261.335%20218.74%20261.959C218.69%20262.931%20218.996%20263.887%20219.6%20264.649C220.203%20265.328%20220.925%20265.891%20221.73%20266.309C222.616%20266.776%20223.535%20267.177%20224.48%20267.509C225.437%20267.848%20226.358%20268.28%20227.23%20268.799C228.071%20269.312%20228.796%20269.993%20229.36%20270.799C229.971%20271.751%20230.268%20272.87%20230.21%20273.999C230.216%20275.085%20230.012%20276.161%20229.61%20277.169C229.221%20278.152%20228.624%20279.039%20227.86%20279.769C227.059%20280.532%20226.105%20281.115%20225.06%20281.479C223.848%20281.897%20222.572%20282.1%20221.29%20282.079C220.043%20282.123%20218.799%20281.919%20217.63%20281.479C216.791%20281.131%20216.001%20280.673%20215.28%20280.119C215.48%20279.632%20215.63%20279.126%20215.73%20278.609C215.81%20278.159%20215.89%20277.609%20215.97%20276.879H216.41C216.663%20277.332%20216.958%20277.761%20217.29%20278.159Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M234.95%20261.271C234.89%20259.731%20234.82%20258.161%20234.75%20256.561L235.66%20256.691C235.949%20256.727%20236.239%20256.744%20236.53%20256.741C236.821%20256.739%20237.111%20256.722%20237.4%20256.691C237.69%20256.691%20237.99%20256.611%20238.31%20256.561C238.24%20258.161%20238.17%20259.731%20238.11%20261.271C238.05%20262.811%20238.02%20264.381%20238.02%20265.981V272.241C238.02%20273.841%20238.02%20275.421%20238.11%20276.971C238.2%20278.521%20238.24%20280.051%20238.31%20281.551C237.75%20281.501%20237.16%20281.481%20236.53%20281.481C235.9%20281.481%20235.31%20281.481%20234.75%20281.551C234.82%20280.051%20234.89%20278.551%20234.95%20276.971C235.01%20275.391%20235.04%20273.841%20235.04%20272.241V265.981C235.053%20264.381%20235.023%20262.811%20234.95%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M249.4%20258.449H247.4C246.71%20258.449%20246.02%20258.449%20245.33%20258.519L243.33%20258.649C242.69%20258.699%20242.11%20258.759%20241.6%20258.829C241.711%20258.452%20241.771%20258.062%20241.78%20257.669C241.762%20257.287%20241.702%20256.908%20241.6%20256.539L246.29%20256.669C247.81%20256.669%20249.38%20256.719%20250.98%20256.719C252.58%20256.719%20254.15%20256.719%20255.67%20256.669C257.19%20256.619%20258.76%20256.589%20260.36%20256.539C260.256%20256.918%20260.195%20257.307%20260.18%20257.699C260.19%20258.082%20260.25%20258.462%20260.36%20258.829C259.85%20258.759%20259.27%20258.699%20258.63%20258.649L256.63%20258.519C255.94%20258.519%20255.25%20258.459%20254.56%20258.449H252.56C252.493%20260.949%20252.456%20263.459%20252.45%20265.979V272.239C252.45%20273.839%20252.45%20275.419%20252.54%20276.969C252.63%20278.519%20252.67%20280.049%20252.74%20281.549C252.18%20281.499%20251.59%20281.479%20250.96%20281.479C250.33%20281.479%20249.74%20281.479%20249.18%20281.549C249.25%20280.049%20249.32%20278.549%20249.38%20276.969C249.44%20275.389%20249.47%20273.839%20249.47%20272.239V265.979C249.496%20263.459%20249.473%20260.949%20249.4%20258.449Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M269.72%20269.531C269.25%20268.741%20268.72%20267.871%20268.16%20266.911L264.56%20260.911C263.99%20259.911%20263.47%20259.091%20263.01%20258.331L261.95%20256.561L262.95%20256.691C263.282%20256.727%20263.616%20256.744%20263.95%20256.741C264.29%20256.741%20264.62%20256.741%20264.95%20256.691L265.95%20256.561C267.044%20258.674%20268.154%20260.747%20269.28%20262.781C270.407%20264.814%20271.6%20266.937%20272.86%20269.151C273.42%20268.281%20274%20267.321%20274.61%20266.271C275.22%20265.221%20275.82%20264.161%20276.43%20263.071C277.04%20261.981%20277.62%20260.881%20278.18%20259.781C278.74%20258.681%20279.26%20257.601%20279.74%20256.561C280.672%20256.801%20281.649%20256.801%20282.58%20256.561C281.42%20258.331%20280.37%20259.931%20279.45%20261.361C278.53%20262.791%20277.72%20264.091%20277.01%20265.251C276.3%20266.411%20275.69%20267.461%20275.15%20268.401C274.61%20269.341%20274.15%20270.181%20273.77%20270.931V273.801C273.77%20273.801%20273.77%20275.801%20273.77%20276.801C273.77%20277.801%20273.82%20278.691%20273.86%20279.531C273.9%20280.371%20273.94%20281.041%20273.99%20281.531C273.43%20281.481%20272.84%20281.461%20272.21%20281.461C271.58%20281.461%20270.98%20281.461%20270.43%20281.531C270.593%20280.009%20270.677%20278.481%20270.68%20276.951V271.311L269.72%20269.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M295.16%20263.601C295.785%20262.05%20296.741%20260.654%20297.96%20259.511C299.204%20258.371%20300.672%20257.502%20302.27%20256.961C305.845%20255.805%20309.694%20255.805%20313.27%20256.961C314.87%20257.498%20316.338%20258.367%20317.58%20259.511C318.797%20260.656%20319.752%20262.052%20320.38%20263.601C321.708%20267.147%20321.708%20271.054%20320.38%20274.601C319.755%20276.151%20318.799%20277.547%20317.58%20278.691C316.345%20279.83%20314.873%20280.68%20313.27%20281.181C311.481%20281.741%20309.615%20282.018%20307.74%20282.001C305.878%20282.022%20304.024%20281.745%20302.25%20281.181C300.65%20280.672%20299.179%20279.823%20297.94%20278.691C296.72%20277.548%20295.764%20276.152%20295.14%20274.601C293.811%20271.054%20293.811%20267.147%20295.14%20263.601H295.16ZM317.08%20263.891C316.639%20262.539%20315.912%20261.297%20314.95%20260.251C314.06%20259.305%20312.965%20258.577%20311.75%20258.121C309.186%20257.201%20306.383%20257.201%20303.82%20258.121C302.603%20258.574%20301.508%20259.303%20300.62%20260.251C299.657%20261.297%20298.931%20262.539%20298.49%20263.891C297.477%20267.297%20297.477%20270.924%20298.49%20274.331C298.931%20275.683%20299.657%20276.924%20300.62%20277.971C301.51%20278.916%20302.604%20279.645%20303.82%20280.101C306.383%20281.02%20309.186%20281.02%20311.75%20280.101C312.964%20279.648%20314.059%20278.922%20314.95%20277.981C315.912%20276.934%20316.639%20275.693%20317.08%20274.341C318.093%20270.934%20318.093%20267.307%20317.08%20263.901V263.891Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M325.95%20261.271C325.89%20259.731%20325.82%20258.161%20325.75%20256.561L329.01%20256.691C330.09%20256.691%20331.18%20256.741%20332.27%20256.741C333.36%20256.741%20334.47%20256.741%20335.58%20256.691L339.22%20256.561C339.074%20257.28%20339.074%20258.021%20339.22%20258.741C338.56%20258.671%20337.78%20258.601%20336.85%20258.541C335.92%20258.481%20334.99%20258.431%20334.03%20258.391L331.26%20258.301C330.37%20258.301%20329.64%20258.301%20329.06%20258.301C329.06%20259.151%20329.06%20259.961%20329.01%20260.741C328.96%20261.521%20329.01%20262.291%20329.01%20263.071C329.01%20263.851%20329.01%20264.701%20329.01%20265.421C329.01%20266.141%20329.01%20266.881%20329.01%20267.661C330.61%20267.661%20332.19%20267.661%20333.76%20267.591C335.33%20267.521%20336.87%20267.441%20338.4%20267.301C338.198%20268.013%20338.198%20268.768%20338.4%20269.481C337.79%20269.411%20337.11%20269.351%20336.34%20269.321C335.57%20269.291%20334.78%20269.251%20333.96%20269.231C333.14%20269.211%20332.3%20269.231%20331.45%20269.231H329.01V272.321C329.01%20273.921%20329.01%20275.501%20329.1%20277.051C329.19%20278.601%20329.23%20280.131%20329.3%20281.631C328.74%20281.581%20328.15%20281.561%20327.52%20281.561C326.89%20281.561%20326.3%20281.561%20325.74%20281.631C325.81%20280.131%20325.88%20278.631%20325.94%20277.051C326%20275.471%20326.03%20273.921%20326.03%20272.321V265.981C326.07%20264.381%20326.04%20262.811%20325.95%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M353.41%20261.271C353.35%20259.731%20353.28%20258.161%20353.21%20256.561L354.12%20256.691C354.409%20256.727%20354.7%20256.744%20354.99%20256.741C355.281%20256.739%20355.571%20256.722%20355.86%20256.691C356.15%20256.691%20356.45%20256.611%20356.77%20256.561C356.7%20258.161%20356.63%20259.731%20356.57%20261.271C356.51%20262.811%20356.48%20264.381%20356.48%20265.981C356.48%20269.041%20356.48%20271.691%20356.48%20273.931C356.48%20276.171%20356.53%20278.181%20356.55%20279.931C358.27%20279.931%20359.92%20279.931%20361.5%20279.881C363.203%20279.83%20364.902%20279.69%20366.59%20279.461C366.484%20279.815%20366.423%20280.181%20366.41%20280.551C366.42%20280.891%20366.481%20281.228%20366.59%20281.551C365.47%20281.501%20364.36%20281.481%20363.24%20281.481H356.52C355.44%20281.481%20354.32%20281.481%20353.15%20281.551C353.22%20280.051%20353.29%20278.551%20353.35%20276.971C353.41%20275.391%20353.44%20273.841%20353.44%20272.241V265.981C353.5%20264.381%20353.47%20262.811%20353.41%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M370.22%20263.601C370.845%20262.05%20371.8%20260.654%20373.02%20259.511C374.264%20258.371%20375.731%20257.502%20377.33%20256.961C380.905%20255.805%20384.754%20255.805%20388.33%20256.961C389.93%20257.498%20391.398%20258.367%20392.64%20259.511C393.857%20260.656%20394.812%20262.052%20395.44%20263.601C396.768%20267.147%20396.768%20271.054%20395.44%20274.601C394.814%20276.151%20393.859%20277.547%20392.64%20278.691C391.405%20279.83%20389.933%20280.68%20388.33%20281.181C386.541%20281.741%20384.675%20282.018%20382.8%20282.001C380.938%20282.022%20379.084%20281.745%20377.31%20281.181C375.71%20280.672%20374.239%20279.823%20373%20278.691C371.779%20277.548%20370.824%20276.152%20370.2%20274.601C369.505%20272.848%20369.165%20270.975%20369.2%20269.091C369.179%20267.212%20369.525%20265.347%20370.22%20263.601ZM392.15%20263.891C391.708%20262.539%20390.982%20261.297%20390.02%20260.251C389.13%20259.305%20388.035%20258.577%20386.82%20258.121C384.256%20257.201%20381.453%20257.201%20378.89%20258.121C377.673%20258.574%20376.578%20259.303%20375.69%20260.251C374.727%20261.297%20374.001%20262.539%20373.56%20263.891C372.546%20267.297%20372.546%20270.924%20373.56%20274.331C374.001%20275.683%20374.727%20276.924%20375.69%20277.971C376.579%20278.916%20377.674%20279.645%20378.89%20280.101C381.453%20281.02%20384.256%20281.02%20386.82%20280.101C388.035%20279.645%20389.13%20278.916%20390.02%20277.971C390.982%20276.924%20391.708%20275.683%20392.15%20274.331C393.163%20270.924%20393.163%20267.297%20392.15%20263.891Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M412.7%20272.121C409.553%20268.741%20406.4%20265.374%20403.24%20262.021C403.24%20262.701%20403.19%20263.611%20403.17%20264.751C403.15%20265.891%20403.17%20267.441%20403.17%20269.411C403.17%20269.921%20403.17%20270.551%20403.17%20271.301C403.17%20272.051%20403.17%20272.841%20403.17%20273.671C403.17%20274.501%20403.17%20275.331%20403.22%20276.181C403.27%20277.031%20403.22%20277.821%20403.29%20278.551C403.36%20279.281%20403.34%20279.911%20403.36%20280.461C403.38%20281.011%20403.41%20281.381%20403.43%20281.571C403.008%20281.52%20402.584%20281.497%20402.16%20281.501C401.709%20281.497%20401.258%20281.52%20400.81%20281.571C400.86%20281.331%20400.91%20280.881%20400.97%20280.221C401.03%20279.561%20401.09%20278.781%20401.13%20277.871C401.17%20276.961%20401.23%20275.971%20401.29%20274.871C401.35%20273.771%20401.4%20272.741%20401.44%20271.671C401.48%20270.601%20401.51%20269.561%20401.53%20268.541C401.55%20267.521%20401.53%20266.611%20401.53%20265.811C401.53%20263.477%20401.53%20261.477%20401.53%20259.811C401.53%20258.144%20401.5%20256.894%20401.44%20256.061H402.02L406.77%20261.211C408.456%20263.044%20410.123%20264.851%20411.77%20266.631L416.5%20271.691C417.99%20273.281%20419.3%20274.631%20420.41%20275.751V270.801C420.41%20268.247%20420.41%20265.767%20420.41%20263.361C420.41%20260.951%20420.29%20258.671%20420.17%20256.541C420.574%20256.65%20420.991%20256.71%20421.41%20256.721C421.802%20256.706%20422.191%20256.645%20422.57%20256.541C422.52%20257.071%20422.47%20257.871%20422.41%20258.941C422.35%20260.011%20422.29%20261.151%20422.23%20262.361C422.17%20263.571%20422.11%20264.761%20422.07%20265.931C422.03%20267.101%20422%20268.031%20422%20268.731V270.981C422%20271.801%20422%20272.671%20422%20273.561C422%20274.451%20422%20275.361%20422%20276.271C422%20277.181%20422%20278.031%20422%20278.821C422%20279.611%20422%20280.291%20422%20280.881V282.081H421.49C418.79%20278.821%20415.86%20275.501%20412.7%20272.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M428.95%20261.271C428.89%20259.731%20428.82%20258.161%20428.75%20256.561L431.5%20256.691C432.41%20256.691%20433.32%20256.741%20434.25%20256.741C435.18%20256.741%20436.09%20256.741%20437%20256.651C437.91%20256.561%20438.83%20256.561%20439.75%20256.561C441.612%20256.518%20443.467%20256.802%20445.23%20257.401C446.639%20257.893%20447.913%20258.708%20448.95%20259.781C449.946%20260.857%20450.676%20262.152%20451.08%20263.561C451.545%20265.186%20451.77%20266.871%20451.75%20268.561C451.817%20270.675%20451.385%20272.775%20450.49%20274.691C449.731%20276.244%20448.638%20277.61%20447.29%20278.691C446.02%20279.694%20444.561%20280.432%20443%20280.861C441.538%20281.27%20440.028%20281.485%20438.51%20281.501C437.68%20281.501%20436.87%20281.501%20436.07%20281.501C435.27%20281.501%20434.46%20281.501%20433.63%20281.501H431.19C430.39%20281.501%20429.58%20281.501%20428.75%20281.571C428.82%20280.071%20428.89%20278.571%20428.95%20276.991C429.01%20275.411%20429.04%20273.861%20429.04%20272.261V265.981C429.01%20264.381%20428.95%20262.811%20428.95%20261.271ZM432.25%20279.961C432.932%20280.104%20433.624%20280.194%20434.32%20280.231C435.19%20280.291%20436.09%20280.321%20437.01%20280.321C438.357%20280.318%20439.699%20280.16%20441.01%20279.851C442.326%20279.546%20443.552%20278.936%20444.59%20278.071C445.722%20277.099%20446.606%20275.872%20447.17%20274.491C448.423%20270.916%20448.5%20267.033%20447.39%20263.411C446.952%20262.176%20446.213%20261.069%20445.24%20260.191C444.301%20259.39%20443.183%20258.828%20441.98%20258.551C440.619%20258.239%20439.226%20258.088%20437.83%20258.101C436.74%20258.101%20435.72%20258.101%20434.77%20258.211C433.82%20258.321%20432.97%20258.371%20432.22%20258.461C432.15%20259.631%20432.09%20260.841%20432.06%20262.121C432.03%20263.401%20431.95%20264.691%20431.95%20265.981V272.241C431.95%20274.861%20432.06%20277.431%20432.21%20279.981L432.25%20279.961Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M455.84%20263.6C456.466%20262.05%20457.421%20260.654%20458.64%20259.51C459.886%20258.377%20461.354%20257.516%20462.95%20256.98C466.526%20255.824%20470.375%20255.824%20473.95%20256.98C475.55%20257.518%20477.019%20258.387%20478.26%20259.53C479.478%20260.676%20480.433%20262.071%20481.06%20263.62C482.389%20267.167%20482.389%20271.074%20481.06%20274.62C480.435%20276.171%20479.48%20277.566%20478.26%20278.71C477.026%20279.849%20475.554%20280.7%20473.95%20281.2C472.161%20281.761%20470.295%20282.038%20468.42%20282.02C466.558%20282.041%20464.705%20281.764%20462.93%20281.2C461.331%20280.692%20459.86%20279.842%20458.62%20278.71C457.4%20277.567%20456.445%20276.171%20455.82%20274.62C454.492%20271.074%20454.492%20267.167%20455.82%20263.62L455.84%20263.6ZM477.76%20263.89C477.319%20262.538%20476.593%20261.297%20475.63%20260.25C474.741%20259.305%20473.646%20258.576%20472.43%20258.12C469.867%20257.2%20467.064%20257.2%20464.5%20258.12C463.284%20258.574%20462.188%20259.303%20461.3%20260.25C460.338%20261.297%20459.612%20262.538%20459.17%20263.89C458.157%20267.296%20458.157%20270.924%20459.17%20274.33C459.612%20275.682%20460.338%20276.923%20461.3%20277.97C462.19%20278.916%20463.285%20279.644%20464.5%20280.1C467.064%20281.02%20469.867%20281.02%20472.43%20280.1C473.646%20279.644%20474.741%20278.916%20475.63%20277.97C476.593%20276.923%20477.319%20275.682%20477.76%20274.33C478.774%20270.924%20478.774%20267.296%20477.76%20263.89Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M498.32%20272.121C495.173%20268.741%20492.02%20265.374%20488.86%20262.021C488.86%20262.701%20488.81%20263.611%20488.79%20264.751C488.77%20265.891%20488.79%20267.441%20488.79%20269.411C488.79%20269.921%20488.79%20270.551%20488.79%20271.301C488.79%20272.051%20488.79%20272.841%20488.79%20273.671C488.79%20274.501%20488.79%20275.331%20488.84%20276.181C488.89%20277.031%20488.84%20277.821%20488.91%20278.551C488.98%20279.281%20488.91%20279.911%20488.98%20280.461C489.05%20281.011%20489.03%20281.381%20489.05%20281.571C488.628%20281.52%20488.204%20281.497%20487.78%20281.501C487.329%20281.497%20486.878%20281.52%20486.43%20281.571C486.48%20281.331%20486.53%20280.881%20486.59%20280.221C486.65%20279.561%20486.71%20278.781%20486.75%20277.871C486.79%20276.961%20486.85%20275.971%20486.91%20274.871C486.97%20273.771%20487.02%20272.741%20487.06%20271.671C487.1%20270.601%20487.13%20269.561%20487.15%20268.541C487.17%20267.521%20487.15%20266.611%20487.15%20265.811C487.15%20263.477%20487.15%20261.477%20487.15%20259.811C487.15%20258.144%20487.12%20256.894%20487.06%20256.061H487.64L492.39%20261.211C494.076%20263.044%20495.743%20264.851%20497.39%20266.631L502.12%20271.691C503.61%20273.281%20504.92%20274.631%20506.03%20275.751V270.801C506.03%20268.247%20506.013%20265.767%20505.98%20263.361C505.98%20260.951%20505.86%20258.671%20505.74%20256.541C506.144%20256.65%20506.561%20256.71%20506.98%20256.721C507.372%20256.706%20507.761%20256.645%20508.14%20256.541C508.09%20257.071%20508.04%20257.871%20507.98%20258.941C507.92%20260.011%20507.86%20261.151%20507.8%20262.361C507.74%20263.571%20507.68%20264.761%20507.64%20265.931C507.6%20267.101%20507.57%20268.031%20507.57%20268.731V270.981C507.57%20271.801%20507.57%20272.671%20507.57%20273.561C507.57%20274.451%20507.57%20275.361%20507.57%20276.271C507.57%20277.181%20507.57%20278.031%20507.57%20278.821C507.57%20279.611%20507.57%20280.291%20507.57%20280.881V282.081H507.06C504.393%20278.821%20501.48%20275.501%20498.32%20272.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M71.5703%20283.741C73.1467%20281.931%2074.5183%20279.952%2075.6603%20277.841C75.1874%20277.869%2074.7132%20277.869%2074.2403%20277.841C73.8593%20277.828%2073.4822%20277.76%2073.1203%20277.641C72.8503%20278.281%2072.5303%20279.031%2072.1203%20279.911C71.7103%20280.791%2071.3003%20281.721%2070.8303%20282.731L70.5303%20283.371C70.8698%20283.513%2071.217%20283.637%2071.5703%20283.741Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M507.95%20236.98H2C1.46957%20236.98%200.960859%20236.77%200.585786%20236.395C0.210714%20236.02%200%20235.511%200%20234.98C0%20234.45%200.210714%20233.941%200.585786%20233.566C0.960859%20233.191%201.46957%20232.98%202%20232.98H507.95C508.48%20232.98%20508.989%20233.191%20509.364%20233.566C509.739%20233.941%20509.95%20234.45%20509.95%20234.98C509.95%20235.511%20509.739%20236.02%20509.364%20236.395C508.989%20236.77%20508.48%20236.98%20507.95%20236.98Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M507.95%203.98047H2C1.46957%203.98047%200.960859%203.76976%200.585786%203.39468C0.210714%203.01961%200%202.5109%200%201.98047C0%201.45004%200.210714%200.941328%200.585786%200.566255C0.960859%200.191182%201.46957%20-0.0195312%202%20-0.0195312L507.95%20-0.0195312C508.48%20-0.0195312%20508.989%200.191182%20509.364%200.566255C509.739%200.941328%20509.95%201.45004%20509.95%201.98047C509.95%202.5109%20509.739%203.01961%20509.364%203.39468C508.989%203.76976%20508.48%203.98047%20507.95%203.98047Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M2.30016%2074.4297C2.30016%2064.7963%202.18349%2056.2397%201.95016%2048.7597C1.71682%2041.2797%201.38349%2033.7697%200.950156%2026.2297C2.95016%2026.4597%205.07016%2026.6697%207.39016%2026.8397C9.71016%2027.0097%2012.3202%2027.0997%2015.2202%2027.0997C20.2068%2027.0997%2025.4268%2026.9563%2030.8802%2026.6697C36.3335%2026.383%2041.5535%2026.2363%2046.5402%2026.2297C51.3425%2026.1809%2056.1333%2026.708%2060.8102%2027.7997C64.7841%2028.7049%2068.5593%2030.3282%2071.9502%2032.5897C75.0353%2034.7111%2077.5109%2037.6038%2079.1302%2040.9797C80.8941%2044.8101%2081.7562%2048.994%2081.6502%2053.2097C81.755%2057.4932%2080.7197%2061.7277%2078.6502%2065.4797C76.8109%2068.7381%2074.3752%2071.6215%2071.4702%2073.9797C68.6838%2076.2069%2065.5749%2077.9973%2062.2502%2079.2897C59.3433%2080.4534%2056.3287%2081.3277%2053.2502%2081.8997V82.2497C56.447%2082.4696%2059.6043%2083.0842%2062.6502%2084.0797C66.3411%2085.2284%2069.8201%2086.9713%2072.9502%2089.2397C76.2789%2091.6556%2079.088%2094.7163%2081.2102%2098.2397C83.5702%20102.269%2084.7452%20106.882%2084.6002%20111.55C84.7584%20117.077%2083.5963%20122.562%2081.2102%20127.55C79.0914%20131.798%2076.0095%20135.493%2072.2102%20138.34C68.3326%20141.171%2063.9038%20143.158%2059.2102%20144.17C54.2405%20145.28%2049.1624%20145.834%2044.0702%20145.82C39.4035%20145.82%2035.0702%20145.763%2031.0702%20145.65C27.0702%20145.536%2022.8635%20145.48%2018.4502%20145.48H8.83016C6.18563%20145.444%203.54127%20145.561%200.910156%20145.83C1.37016%20138.643%201.70349%20131.31%201.91016%20123.83C2.11682%20116.35%202.23349%20107.793%202.26016%2098.1597V74.4297H2.30016ZM55.8902%2056.5097C55.8905%2053.8382%2055.5545%2051.1772%2054.8902%2048.5897C54.3167%2046.2274%2053.2159%2044.0257%2051.6702%2042.1497C50.1018%2040.3018%2048.1499%2038.8174%2045.9502%2037.7997C43.2072%2036.6152%2040.2363%2036.0518%2037.2502%2036.1497C34.7035%2036.1497%2032.9335%2036.1797%2031.9402%2036.2397C30.8584%2036.3103%2029.7826%2036.454%2028.7202%2036.6697C28.4935%2040.963%2028.3202%2045.313%2028.2002%2049.7197C28.0802%2054.1297%2028.0302%2057.8397%2028.0302%2060.8597C28.0302%2063.8797%2028.0302%2066.9797%2028.1202%2069.8597C28.2102%2072.7397%2028.2102%2075.6297%2028.2102%2078.6497H36.0402C38.5128%2078.6445%2040.9623%2078.1729%2043.2602%2077.2597C45.6292%2076.335%2047.7885%2074.9442%2049.6102%2073.1697C51.5678%2071.2104%2053.1057%2068.8729%2054.1302%2066.2997C55.3599%2063.1852%2055.9582%2059.8574%2055.8902%2056.5097ZM57.1102%20112.71C57.1102%20104.59%2055.2835%2098.5297%2051.6302%2094.5297C47.9768%2090.5297%2042.6702%2088.5297%2035.7102%2088.5297C34.0902%2088.5297%2032.7102%2088.5297%2031.5302%2088.6197C30.3502%2088.7097%2029.2702%2088.7097%2028.2202%2088.7097C28.2202%2091.1497%2028.1902%2093.673%2028.1302%2096.2797C28.0702%2098.8863%2028.0402%20101.99%2028.0402%20105.59C28.0402%20108.37%2028.0402%20111.22%2028.1302%20114.12C28.2202%20117.02%2028.2202%20119.86%2028.2202%20122.65C28.2202%20125.44%2028.2202%20127.99%2028.3102%20130.31C28.4002%20132.63%2028.4002%20134.55%2028.4002%20136.05C30.0202%20136.17%2031.5302%20136.25%2032.9202%20136.31C34.3102%20136.37%2035.9902%20136.4%2037.9702%20136.4C40.4913%20136.408%2042.9846%20135.872%2045.2802%20134.83C47.6286%20133.767%2049.7094%20132.191%2051.3702%20130.22C53.2024%20128.028%2054.619%20125.52%2055.5502%20122.82C56.6451%20119.564%2057.1728%20116.144%2057.1102%20112.71Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M211.62%20145.769C208.84%20145.543%20206.2%20145.426%20203.7%20145.419H188.95C186.45%20145.419%20183.95%20145.529%20181.55%20145.769C179.69%20140.089%20177.776%20134.289%20175.81%20128.369C173.843%20122.449%20171.756%20116.533%20169.55%20110.619C165.843%20110.506%20162.13%20110.419%20158.41%20110.359C154.69%20110.299%20150.976%20110.269%20147.27%20110.269C144.27%20110.269%20141.27%20110.269%20138.22%20110.359C135.17%20110.449%20132.22%20110.509%20129.22%20110.619C126.9%20116.539%20124.753%20122.456%20122.78%20128.369C120.806%20134.283%20119.01%20140.083%20117.39%20145.769C116.038%20145.541%20114.67%20145.424%20113.3%20145.419H104.95C103.436%20145.425%20101.926%20145.542%20100.43%20145.769C101.823%20142.763%20103.68%20138.586%20106%20133.239C108.32%20127.893%20110.873%20121.859%20113.66%20115.139L122.66%2093.4794C125.846%2085.7727%20129.036%2077.9727%20132.23%2070.0794C135.423%2062.186%20138.556%2054.4127%20141.63%2046.7594C144.696%2039.0994%20147.51%2031.966%20150.07%2025.3594C151.23%2025.5894%20152.33%2025.7894%20153.38%2025.9694C154.474%2026.1496%20155.581%2026.2366%20156.69%2026.2294C157.781%2026.2323%20158.871%2026.1487%20159.95%2025.9794C161%2025.8094%20162.09%2025.5994%20163.26%2025.3694C166.966%2035.2294%20170.94%2045.786%20175.18%2057.0394C179.42%2068.2927%20183.676%2079.3394%20187.95%2090.1794C192.236%20101.026%20196.413%20111.319%20200.48%20121.059C204.546%20130.799%20208.26%20139.036%20211.62%20145.769ZM150.03%2058.9794C147.01%2065.9394%20144.166%2072.8127%20141.5%2079.5994C138.833%2086.386%20136.223%2093.316%20133.67%20100.389H165.51C162.956%2093.2894%20160.436%2086.346%20157.95%2079.5594C155.463%2072.7727%20152.823%2065.9127%20150.03%2058.9794Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M275.88%2067.0305C278.2%2062.8038%20280.464%2058.3671%20282.67%2053.7205C284.877%2049.0738%20287.024%2044.4071%20289.11%2039.7205C291.197%2035.0538%20293.227%2030.5571%20295.2%2026.2305C296.47%2026.4605%20297.78%2026.6705%20299.12%2026.8405C300.477%2027.0136%20301.843%2027.1004%20303.21%2027.1005C304.578%2027.1001%20305.944%2027.0133%20307.3%2026.8405C308.63%2026.6705%20310.05%2026.4605%20311.56%2026.2305C309.56%2029.4838%20307.097%2033.7471%20304.17%2039.0205C301.244%2044.2938%20298.084%2050.0071%20294.69%2056.1605C291.317%2062.3071%20287.924%2068.6005%20284.51%2075.0405C281.097%2081.4805%20277.994%2087.4238%20275.2%2092.8705C275.2%2095.6505%20275.14%2098.4705%20275.03%20101.31C274.92%20104.15%20274.86%20107.02%20274.86%20109.92C274.86%20115.84%20274.947%20121.697%20275.12%20127.49C275.294%20133.284%20275.787%20139.374%20276.6%20145.76C274.16%20145.53%20271.7%20145.41%20269.2%20145.41H254.41C251.91%20145.41%20249.41%20145.52%20247.02%20145.76C247.254%20140.427%20247.66%20134.974%20248.24%20129.4C248.819%20123.853%20249.109%20118.278%20249.11%20112.7C249.11%20110.03%20249.11%20107.34%20249.02%20104.61C248.93%20101.88%20248.87%2099.1905%20248.76%2096.5205C245.86%2090.7205%20242.527%2084.2538%20238.76%2077.1205C234.994%2069.9871%20231.327%2063.0571%20227.76%2056.3305C224.22%2049.5971%20220.974%2043.5071%20218.02%2038.0605C215.067%2032.6138%20212.89%2028.6705%20211.49%2026.2305C214.16%2026.4605%20216.77%2026.6705%20219.32%2026.8405C221.87%2027.0105%20224.48%2027.1005%20227.15%2027.1005C229.82%2027.1005%20232.4%2027.0105%20234.89%2026.8405C237.38%2026.6705%20239.96%2026.4605%20242.63%2026.2305C244.63%2030.5238%20246.864%2035.2805%20249.33%2040.5005C251.797%2045.7205%20254.264%2050.8238%20256.73%2055.8105C259.17%2060.8038%20261.434%2065.3271%20263.52%2069.3805C265.607%2073.4338%20267.29%2076.4338%20268.57%2078.3805H268.95C271.24%2075.0705%20273.56%2071.2705%20275.88%2067.0305Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M339.69%2048.7605C339.456%2041.2805%20339.123%2033.7705%20338.69%2026.2305C343.91%2026.3505%20349.073%2026.5238%20354.18%2026.7505C359.286%2026.9771%20364.45%2027.0938%20369.67%2027.1005C378.25%2027.1005%20385.876%2027.0138%20392.55%2026.8405C399.223%2026.6671%20403.72%2026.4638%20406.04%2026.2305C405.52%2028.6313%20405.286%2031.0848%20405.34%2033.5405C405.34%2035.4005%20405.4%2036.8505%20405.51%2037.8905C405.62%2038.9305%20405.8%2040.1005%20406.03%2041.3705C402.643%2041.1105%20398.95%2040.8771%20394.95%2040.6705C390.95%2040.4638%20387.06%2040.2338%20383.28%2039.9805C379.513%2039.7471%20376.12%2039.5738%20373.1%2039.4605C370.1%2039.3505%20367.94%2039.2905%20366.66%2039.2905C366.2%2045.6705%20365.94%2052.0038%20365.88%2058.2905C365.82%2064.5771%20365.79%2070.9105%20365.79%2077.2905C373.33%2077.1771%20380.146%2077.0038%20386.24%2076.7705C392.333%2076.5371%20398.666%2076.2471%20405.24%2075.9005C404.89%2077.9005%20404.66%2079.3805%20404.54%2080.4205C404.42%2081.5197%20404.363%2082.6248%20404.37%2083.7305C404.374%2084.6928%20404.461%2085.653%20404.63%2086.6005C404.8%2087.6005%20405.01%2089.0105%20405.24%2090.8605C392.02%2089.8205%20378.853%2089.2971%20365.74%2089.2905C365.74%2093.0038%20365.71%2096.7171%20365.65%20100.43C365.59%20104.14%20365.56%20107.86%20365.56%20111.57C365.56%20119.11%20365.733%20126.36%20366.08%20133.32C372.693%20133.32%20379.306%20133.147%20385.92%20132.8C392.533%20132.454%20399.21%20131.847%20405.95%20130.98C405.72%20132.26%20405.54%20133.42%20405.43%20134.46C405.296%20135.906%20405.239%20137.358%20405.26%20138.81C405.26%20140.67%20405.32%20142.12%20405.43%20143.16C405.512%20144.046%20405.686%20144.921%20405.95%20145.77C402.82%20145.65%20398.95%20145.57%20394.38%20145.51C389.81%20145.45%20383.5%20145.42%20375.5%20145.42H347.95C345.336%20145.42%20343.363%20145.45%20342.03%20145.51C340.7%20145.57%20339.56%20145.65%20338.64%20145.77C339.1%20138.584%20339.433%20131.25%20339.64%20123.77C339.846%20116.29%20339.963%20107.734%20339.99%2098.1005V74.4405C340.03%2064.8005%20339.93%2056.2405%20339.69%2048.7605Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M474.19%2034.7608C468.857%2034.7608%20464.507%2036.3274%20461.14%2039.4608C459.557%2040.8236%20458.287%2042.5116%20457.415%2044.4099C456.544%2046.3082%20456.092%2048.372%20456.09%2050.4608C456.016%2052.3864%20456.324%2054.3077%20456.996%2056.1135C457.669%2057.9193%20458.694%2059.5736%20460.01%2060.9808C462.901%2063.9201%20466.214%2066.4109%20469.84%2068.3708C473.78%2070.5774%20478.014%2072.6941%20482.54%2074.7208C487.039%2076.7343%20491.298%2079.2431%20495.24%2082.2008C499.169%2085.1408%20502.504%2088.7986%20505.07%2092.9808C507.657%2097.2074%20508.95%20102.624%20508.95%20109.231C509.019%20114.715%20507.889%20120.148%20505.64%20125.151C503.471%20129.919%20500.258%20134.139%20496.24%20137.501C491.959%20141.042%20487.022%20143.702%20481.71%20145.331C475.595%20147.202%20469.225%20148.113%20462.83%20148.031C457.17%20148.103%20451.525%20147.43%20446.04%20146.031C441.114%20144.697%20437.374%20143.031%20434.82%20141.031C435.98%20136.971%20436.98%20133.257%20437.82%20129.891C438.66%20126.524%20439.37%20122.887%20439.95%20118.981H443.26C443.715%20121.518%20444.598%20123.959%20445.87%20126.201C447.144%20128.461%20448.79%20130.49%20450.74%20132.201C452.833%20134.009%20455.253%20135.398%20457.87%20136.291C460.896%20137.318%20464.075%20137.819%20467.27%20137.771C474.23%20137.771%20479.364%20136.031%20482.67%20132.551C484.29%20130.896%20485.565%20128.936%20486.423%20126.786C487.281%20124.635%20487.705%20122.336%20487.67%20120.021C487.832%20116.065%20486.46%20112.199%20483.84%20109.231C481.065%20106.272%20477.834%20103.778%20474.27%20101.841C470.437%2099.6941%20466.26%2097.6074%20461.74%2095.5808C457.295%2093.5994%20453.091%2091.1166%20449.21%2088.1808C445.362%2085.2631%20442.112%2081.63%20439.64%2077.4808C437.087%2073.2541%20435.81%2067.8308%20435.81%2061.2108C435.702%2055.7063%20436.802%2050.245%20439.03%2045.2108C441.037%2040.7553%20443.973%2036.7799%20447.64%2033.5508C451.244%2030.3962%20455.424%2027.9683%20459.95%2026.4008C464.753%2024.7651%20469.797%2023.9471%20474.87%2023.9808C480.434%2023.8845%20485.979%2024.6468%20491.31%2026.2408C495.684%2027.5826%20499.78%2029.7033%20503.4%2032.5008C502.36%2035.1674%20501.46%2037.7474%20500.7%2040.2408C499.94%2042.7408%20498.99%2045.8908%20497.83%2049.7208H495.22C491.534%2039.7608%20484.524%2034.7741%20474.19%2034.7608Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23368%22%3E%20%3Crect%20width%3D%22509.9%22%20height%3D%22283.74%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22510%22%20height%3D%22284%22%20viewBox%3D%220%200%20510%20284%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_23368)%22%3E%20%3Cpath%20d%3D%22M27.9499%20200.98C27.9666%20201.948%2027.8317%20202.913%2027.5499%20203.84C27.3031%20204.613%2026.9675%20205.354%2026.5499%20206.05C26.2264%20206.608%2025.8406%20207.128%2025.3999%20207.6L24.4799%20208.6C24.0459%20209.021%2023.5777%20209.406%2023.0799%20209.75C22.4541%20210.175%2021.7834%20210.531%2021.0799%20210.81C20.146%20211.173%2019.1777%20211.441%2018.1899%20211.61C16.8689%20211.836%2015.5302%20211.943%2014.1899%20211.93C12.9699%20211.93%2011.7599%20211.93%2010.5799%20211.79C9.39992%20211.65%208.18992%20211.65%206.96992%20211.65C6.04992%20211.65%205.13992%20211.65%204.21992%20211.76C3.29992%20211.87%202.38992%20211.89%201.46992%20211.93C1.61659%20208.596%201.72326%20205.15%201.78992%20201.59C1.85659%20198.03%201.88659%20194.696%201.87992%20191.59C1.87992%20188.423%201.84992%20185.263%201.78992%20182.11C1.72992%20178.956%201.60659%20175.796%201.41992%20172.63C2.14992%20172.71%202.82992%20172.76%203.47992%20172.8C4.12992%20172.84%205.09992%20172.88%206.39992%20172.91C6.70992%20172.91%207.23992%20172.91%207.99992%20172.85C8.75992%20172.79%209.56992%20172.78%2010.4099%20172.76C11.2499%20172.74%2012.0399%20172.71%2012.7899%20172.67C13.5399%20172.63%2014.0599%20172.61%2014.3699%20172.61C15.899%20172.602%2017.4256%20172.736%2018.9299%20173.01C20.2782%20173.244%2021.5706%20173.729%2022.7399%20174.44C23.8516%20175.128%2024.7621%20176.097%2025.3799%20177.25C26.0922%20178.668%2026.4361%20180.243%2026.3799%20181.83C26.4032%20183.067%2026.107%20184.29%2025.5199%20185.38C24.9362%20186.38%2024.1696%20187.262%2023.2599%20187.98C22.3292%20188.736%2021.2868%20189.343%2020.1699%20189.78C19.046%20190.23%2017.8702%20190.539%2016.6699%20190.7C18.1605%20190.837%2019.6361%20191.105%2021.0799%20191.5C22.3841%20191.847%2023.6096%20192.441%2024.6899%20193.25C25.7297%20194.042%2026.5661%20195.07%2027.1299%20196.25C27.7371%20197.75%2028.0167%20199.363%2027.9499%20200.98ZM8.78992%20189.41L9.98992%20189.5C10.3699%20189.5%2010.7499%20189.5%2011.1399%20189.5C13.2496%20189.657%2015.3363%20188.978%2016.9499%20187.61C17.6587%20186.849%2018.2023%20185.95%2018.5466%20184.969C18.8908%20183.988%2019.0281%20182.946%2018.9499%20181.91C19.0302%20180.196%2018.4786%20178.513%2017.3999%20177.18C16.8289%20176.558%2016.125%20176.074%2015.3406%20175.762C14.5563%20175.45%2013.7118%20175.32%2012.8699%20175.38C11.5299%20175.38%2010.2099%20175.44%208.91992%20175.55C8.91992%20176.31%208.84992%20177.09%208.82992%20177.87C8.80992%20178.65%208.82992%20179.43%208.82992%20180.19L8.78992%20189.41ZM8.78992%20203.85C8.78992%20204.31%208.78992%20205.02%208.78992%20205.97C8.78992%20206.92%208.83992%20207.8%208.87992%20208.61C9.44992%20208.69%209.96992%20208.76%2010.4299%20208.84C10.9425%20208.92%2011.4611%20208.957%2011.9799%20208.95C14.2423%20209.107%2016.4789%20208.391%2018.2299%20206.95C19.6833%20205.616%2020.4099%20203.543%2020.4099%20200.73C20.4528%20199.331%2020.2183%20197.937%2019.7199%20196.63C19.3173%20195.604%2018.6682%20194.694%2017.8299%20193.98C16.954%20193.283%2015.9262%20192.804%2014.8299%20192.58C13.5323%20192.299%2012.2074%20192.165%2010.8799%20192.18C10.19%20192.184%209.50134%20192.241%208.81992%20192.35V203.87L8.78992%20203.85Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M42.6003%20176.86C42.5203%20179.04%2042.4803%20181.43%2042.4603%20184.02C42.4403%20186.61%2042.4603%20189.16%2042.4603%20191.64C42.4603%20193.926%2042.4803%20195.806%2042.5203%20197.28C42.5203%20198.75%2042.6303%20199.96%2042.7503%20200.92C42.8284%20201.721%2043.003%20202.51%2043.2703%20203.27C43.5219%20203.905%2043.8583%20204.504%2044.2703%20205.05C45.1811%20206.211%2046.391%20207.103%2047.7703%20207.63C49.4506%20208.275%2051.2405%20208.588%2053.0403%20208.55C55.1558%20208.598%2057.24%20208.032%2059.0403%20206.92C60.6581%20205.93%2061.8974%20204.426%2062.5603%20202.65C62.6886%20202.303%2062.7955%20201.949%2062.8803%20201.59C62.9874%20201.088%2063.0642%20200.58%2063.1103%20200.07C63.1703%20199.46%2063.2103%20198.74%2063.2503%20197.92C63.2903%20197.1%2063.3103%20196.1%2063.3103%20194.92C63.3103%20191.18%2063.3103%20187.44%2063.2203%20183.72C63.1303%20180%2063.0203%20176.26%2062.7903%20172.52L64.0503%20172.75C64.4859%20172.827%2064.9278%20172.864%2065.3703%20172.86C65.8324%20172.858%2066.2937%20172.821%2066.7503%20172.75L68.0703%20172.52L67.9003%20175.27C67.8203%20176.49%2067.7603%20178.09%2067.7003%20180.06C67.6403%20182.03%2067.5903%20184.06%2067.5603%20186.22C67.5303%20188.38%2067.4803%20190.46%2067.4503%20192.52C67.4203%20194.58%2067.3703%20196.34%2067.3303%20197.79C67.3121%20199.269%2067.1682%20200.744%2066.9003%20202.2C66.6851%20203.363%2066.3081%20204.491%2065.7803%20205.55C65.3115%20206.476%2064.7046%20207.326%2063.9803%20208.07C63.2246%20208.824%2062.3898%20209.494%2061.4903%20210.07C60.0607%20210.995%2058.4697%20211.643%2056.8003%20211.98C55.1584%20212.345%2053.4824%20212.537%2051.8003%20212.55C50.0323%20212.547%2048.2683%20212.383%2046.5303%20212.06C44.7836%20211.752%2043.0962%20211.172%2041.5303%20210.34C39.9673%20209.517%2038.6023%20208.363%2037.5303%20206.96C36.3552%20205.354%2035.624%20203.467%2035.4103%20201.49C35.3249%20200.951%2035.288%20200.405%2035.3003%20199.86V182.86C35.3003%20182.14%2035.3003%20181.32%2035.3003%20180.43C35.3003%20179.54%2035.3003%20178.62%2035.2403%20177.71C35.1803%20176.8%2035.1903%20175.89%2035.1503%20174.99C35.1103%20174.09%2035.0703%20173.28%2035.0303%20172.55L37.0303%20172.78C38.3362%20172.926%2039.6544%20172.926%2040.9603%20172.78L42.7603%20172.55L42.6003%20176.86Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M76.8102%20203.219C77.3303%20204.455%2078.0021%20205.62%2078.8102%20206.689C79.406%20207.475%2080.1334%20208.152%2080.9602%20208.689C81.6636%20209.128%2082.4387%20209.44%2083.2502%20209.609C84.0543%20209.764%2084.8714%20209.841%2085.6902%20209.839C86.745%20209.856%2087.7936%20209.673%2088.7802%20209.299C89.6553%20208.965%2090.4544%20208.458%2091.1302%20207.809C91.7891%20207.171%2092.3069%20206.401%2092.6502%20205.549C93.017%20204.638%2093.2005%20203.662%2093.1902%20202.679C93.2217%20201.685%2093.0268%20200.697%2092.6202%20199.789C92.2817%20199.069%2091.8254%20198.41%2091.2702%20197.839C90.8131%20197.363%2090.279%20196.968%2089.6902%20196.669C89.1502%20196.403%2088.7502%20196.213%2088.4902%20196.099C87.6902%20195.759%2086.7002%20195.359%2085.4902%20194.899C84.2802%20194.439%2083.3402%20194.039%2082.5402%20193.699C81.3167%20193.176%2080.1533%20192.522%2079.0702%20191.749C78.2386%20191.116%2077.5215%20190.345%2076.9502%20189.469C76.3977%20188.653%2076.001%20187.741%2075.7802%20186.779C75.5418%20185.716%2075.4277%20184.629%2075.4402%20183.539C75.4512%20182.208%2075.6636%20180.887%2076.0702%20179.619C76.5031%20178.242%2077.2375%20176.978%2078.2202%20175.919C79.372%20174.717%2080.7708%20173.779%2082.3202%20173.169C84.3845%20172.385%2086.5829%20172.015%2088.7902%20172.079C90.5719%20172.035%2092.3498%20172.268%2094.0602%20172.769C95.5045%20173.24%2096.9203%20173.794%2098.3002%20174.429C97.9902%20175.119%2097.7602%20175.689%2097.5802%20176.149C97.4002%20176.609%2097.2602%20177.019%2097.1502%20177.379C97.0402%20177.739%2096.9302%20178.119%2096.8302%20178.499C96.7302%20178.879%2096.6302%20179.339%2096.5202%20179.879H95.7202C95.5337%20179.104%2095.1921%20178.375%2094.716%20177.736C94.2399%20177.096%2093.6392%20176.56%2092.9502%20176.159C91.4957%20175.299%2089.8296%20174.863%2088.1402%20174.899C87.2137%20174.829%2086.2828%20174.955%2085.4088%20175.271C84.5349%20175.586%2083.7378%20176.083%2083.0702%20176.729C81.96%20177.903%2081.3533%20179.464%2081.3802%20181.079C81.3525%20181.98%2081.5375%20182.874%2081.9202%20183.689C82.2947%20184.415%2082.8238%20185.05%2083.4702%20185.549C84.2273%20186.138%2085.0618%20186.619%2085.9502%20186.979C86.9502%20187.399%2088.0702%20187.859%2089.3302%20188.359C90.4402%20188.779%2091.3302%20189.149%2092.1702%20189.479C93.0102%20189.809%2093.6502%20190.119%2094.2602%20190.429C94.8147%20190.716%2095.3434%20191.051%2095.8402%20191.429C96.3061%20191.778%2096.738%20192.17%2097.1302%20192.599C97.7066%20193.196%2098.198%20193.869%2098.5902%20194.599C98.9362%20195.266%2099.2142%20195.967%2099.4202%20196.689C99.5983%20197.329%2099.732%20197.981%2099.8202%20198.639C99.8911%20199.133%2099.9312%20199.631%2099.9402%20200.129C99.9286%20201.634%2099.658%20203.126%2099.1402%20204.539C98.5858%20206.04%2097.7163%20207.404%2096.5902%20208.539C95.3079%20209.82%2093.7763%20210.824%2092.0902%20211.489C89.9535%20212.307%2087.6772%20212.698%2085.3902%20212.639C84.2265%20212.641%2083.0651%20212.538%2081.9202%20212.329C80.9043%20212.139%2079.9021%20211.882%2078.9202%20211.559C78.0202%20211.249%2077.2102%20210.939%2076.4902%20210.609C75.7702%20210.279%2075.1502%20209.989%2074.6602%20209.719C74.8935%20208.993%2075.0835%20208.373%2075.2302%20207.859C75.3747%20207.381%2075.4883%20206.893%2075.5702%20206.399C75.6502%20205.939%2075.7102%20205.469%2075.7702%20204.999C75.8302%20204.529%2075.8902%20203.939%2075.9702%20203.249H76.7502L76.8102%20203.219Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M108.38%20185.75C108.38%20183.92%20108.38%20181.95%20108.32%20179.85C108.26%20177.75%20108.11%20175.31%20107.8%20172.52C108.33%20172.6%20109.04%20172.67%20109.92%20172.75C110.8%20172.83%20111.45%20172.86%20111.92%20172.86C112.588%20172.857%20113.255%20172.82%20113.92%20172.75L115.98%20172.52C115.83%20173.59%20115.7%20174.96%20115.61%20176.62C115.52%20178.28%20115.45%20180.05%20115.41%20181.92C115.37%20183.79%20115.35%20185.65%20115.35%20187.51V192.51C115.35%20196.79%20115.39%20200.503%20115.47%20203.65C115.55%20206.796%20115.703%20209.536%20115.93%20211.87C115.28%20211.87%20114.61%20211.77%20113.93%20211.67C113.267%20211.575%20112.599%20211.528%20111.93%20211.53C111.241%20211.534%20110.553%20211.58%20109.87%20211.67C109.15%20211.76%20108.46%20211.83%20107.81%20211.87C108.123%20208.43%20108.303%20204.456%20108.35%20199.95C108.396%20195.443%20108.406%20190.71%20108.38%20185.75Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M126.03%20188.61C126.03%20185.9%20126.03%20183.2%20126.03%20180.53C126.03%20177.86%20126.03%20175.18%20125.94%20172.53L126.63%20172.62H127.32C127.547%20172.62%20127.767%20172.62%20127.98%20172.62L128.64%20172.53L132.71%20176.94C134.05%20178.39%20135.42%20179.84%20136.84%20181.29C138.26%20182.74%20139.72%20184.29%20141.25%20185.79C142.78%20187.29%20144.4%20188.95%20146.12%20190.63L152.88%20197.28C153.307%20197.725%20153.758%20198.145%20154.23%20198.54C154.59%20198.85%20155.1%20199.25%20155.75%20199.74V186.98C155.75%20184.54%20155.684%20182.104%20155.55%20179.67C155.42%20177.24%20155.25%20174.85%20155.06%20172.48L156.15%20172.71C156.605%20172.793%20157.068%20172.83%20157.53%20172.82C157.983%20172.826%20158.435%20172.789%20158.88%20172.71C159.25%20172.64%20159.6%20172.56%20159.94%20172.48C159.82%20174.2%20159.72%20175.78%20159.62%20177.24C159.52%20178.7%20159.46%20180.15%20159.42%20181.62C159.38%20183.09%20159.35%20184.62%20159.33%20186.26C159.31%20187.9%20159.33%20189.75%20159.33%20191.85V195.12C159.33%20196.46%20159.33%20197.84%20159.33%20199.27C159.33%20200.7%20159.33%20202.07%20159.33%20203.37V207.61C159.33%20208.11%20159.33%20208.61%20159.33%20209.19C159.33%20209.77%20159.33%20210.28%20159.33%20210.79V212.08L158.76%20211.99C158.57%20211.981%20158.38%20211.981%20158.19%20211.99H157.59C157.389%20212.009%20157.188%20212.039%20156.99%20212.08C155.77%20210.78%20154.38%20209.32%20152.84%20207.7C151.3%20206.08%20149.68%20204.41%20148%20202.7C146.32%20200.99%20144.6%20199.24%20142.84%20197.49C141.08%20195.74%20139.38%20194.05%20137.74%20192.49C136.1%20190.93%20134.57%20189.41%20133.16%20188.05C131.75%20186.69%20130.54%20185.56%20129.55%20184.64V189.88C129.55%20191.42%20129.55%20192.88%20129.55%20194.29C129.55%20195.7%20129.55%20197.05%20129.61%20198.39C129.67%20199.73%20129.66%20201.16%20129.7%20202.69C129.7%20203.53%20129.7%20204.23%20129.7%20204.78C129.7%20205.33%20129.7%20205.92%20129.79%20206.53C129.88%20207.14%20129.88%20207.86%20129.93%20208.68C129.98%20209.5%20130.07%20210.56%20130.19%20211.86C129.88%20211.86%20129.48%20211.76%20128.99%20211.66C128.536%20211.568%20128.074%20211.521%20127.61%20211.52C127.208%20211.521%20126.806%20211.557%20126.41%20211.63L125.32%20211.86L125.78%20203.86C125.78%20203.48%20125.85%20202.95%20125.87%20202.28C125.89%20201.61%20125.87%20200.9%20125.93%20200.16C125.99%20199.42%20125.93%20198.71%20125.93%20198.04V188.6L126.03%20188.61Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M176.74%20189.53H179.46C180.55%20189.53%20181.68%20189.53%20182.87%20189.47L186.31%20189.33C187.42%20189.27%20188.31%20189.21%20189.12%20189.13C189.04%20189.44%20188.98%20189.75%20188.92%20190.08C188.856%20190.449%20188.826%20190.824%20188.83%20191.2C188.798%20191.862%20188.896%20192.525%20189.12%20193.15C188.36%20193.07%20187.61%20193.02%20186.88%20192.98L184.7%20192.87L180.7%20192.78C179.38%20192.78%20178.05%20192.78%20176.7%20192.78V208.28H178.79L182.29%20208.19L186.41%20208.07C187.84%20208.07%20189.17%20207.98%20190.41%20207.9C190.187%20208.504%20190.088%20209.146%20190.12%20209.79C190.096%20210.488%20190.194%20211.185%20190.41%20211.85C186.97%20211.623%20183.456%20211.51%20179.87%20211.51C176.283%20211.51%20172.693%20211.623%20169.1%20211.85C169.18%20210.63%20169.23%20209.43%20169.27%20208.27C169.31%20207.11%20169.35%20205.91%20169.38%20204.69C169.38%20203.85%20169.45%20202.83%20169.47%20201.62C169.49%20200.41%20169.47%20199.2%20169.53%20197.95C169.59%20196.7%20169.53%20195.53%20169.59%20194.4C169.65%20193.27%20169.59%20192.4%20169.59%20191.74C169.59%20191.08%20169.59%20190.06%20169.59%20188.53C169.59%20187%20169.59%20185.29%20169.5%20183.4C169.41%20181.51%20169.41%20179.59%20169.36%20177.64C169.31%20175.69%20169.22%20173.99%20169.1%20172.54C169.79%20172.54%20170.58%20172.62%20171.46%20172.65L174.2%20172.77L177%20172.86H179.53C180.87%20172.86%20182.44%20172.86%20184.26%20172.75L190.08%20172.52C190%20172.86%20189.94%20173.17%20189.88%20173.44C189.816%20173.742%20189.786%20174.051%20189.79%20174.36C189.757%20175.078%20189.855%20175.796%20190.08%20176.48L184.69%20176.19L183.29%20176.1C182.89%20176.1%20182.42%20176.1%20181.89%20176.1H176.75V189.56L176.74%20189.53Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M197.76%20203.221C198.28%20204.456%20198.952%20205.622%20199.76%20206.691C200.356%20207.477%20201.083%20208.153%20201.91%20208.691C202.614%20209.13%20203.389%20209.441%20204.2%20209.611C205.004%20209.765%20205.821%20209.842%20206.64%20209.841C207.695%20209.858%20208.744%20209.675%20209.73%20209.301C210.605%20208.967%20211.404%20208.46%20212.08%20207.811C212.739%20207.172%20213.257%20206.402%20213.6%20205.551C213.967%20204.639%20214.15%20203.664%20214.14%20202.681C214.172%20201.687%20213.977%20200.699%20213.57%20199.791C213.232%20199.07%20212.775%20198.411%20212.22%20197.841C211.763%20197.365%20211.229%20196.969%20210.64%20196.671C210.1%20196.404%20209.7%20196.214%20209.44%20196.101C208.64%20195.761%20207.65%20195.361%20206.49%20194.901C205.33%20194.441%20204.34%20194.041%20203.49%20193.701C202.267%20193.178%20201.103%20192.524%20200.02%20191.751C199.151%20191.133%20198.396%20190.368%20197.79%20189.491C197.238%20188.674%20196.841%20187.762%20196.62%20186.801C196.382%20185.738%20196.268%20184.65%20196.28%20183.561C196.291%20182.23%20196.504%20180.908%20196.91%20179.641C197.343%20178.263%20198.078%20176.999%20199.06%20175.941C200.212%20174.739%20201.611%20173.801%20203.16%20173.191C205.224%20172.407%20207.423%20172.037%20209.63%20172.101C211.412%20172.057%20213.19%20172.29%20214.9%20172.791C216.345%20173.261%20217.76%20173.816%20219.14%20174.451C218.83%20175.141%20218.6%20175.711%20218.42%20176.171C218.24%20176.631%20218.1%20177.041%20217.99%20177.401C217.88%20177.761%20217.77%20178.141%20217.67%20178.521C217.57%20178.901%20217.47%20179.361%20217.36%20179.901H216.56C216.383%20179.133%20216.054%20178.407%20215.592%20177.769C215.13%20177.13%20214.544%20176.59%20213.87%20176.181C212.416%20175.321%20210.75%20174.884%20209.06%20174.921C208.134%20174.85%20207.203%20174.977%20206.329%20175.292C205.455%20175.607%20204.658%20176.105%20203.99%20176.751C202.88%20177.924%20202.273%20179.486%20202.3%20181.101C202.273%20182.001%20202.458%20182.895%20202.84%20183.711C203.215%20184.437%20203.744%20185.072%20204.39%20185.571C205.173%20186.159%20206.035%20186.633%20206.95%20186.981C207.95%20187.401%20209.07%20187.861%20210.33%20188.361C211.44%20188.781%20212.33%20189.151%20213.17%20189.481C214.01%20189.811%20214.65%20190.121%20215.26%20190.431C215.815%20190.718%20216.343%20191.053%20216.84%20191.431C217.306%20191.779%20217.738%20192.171%20218.13%20192.601C218.707%20193.197%20219.198%20193.87%20219.59%20194.601C219.936%20195.268%20220.214%20195.968%20220.42%20196.691C220.598%20197.331%20220.732%20197.982%20220.82%20198.641C220.891%20199.135%20220.931%20199.632%20220.94%20200.131C220.929%20201.636%20220.658%20203.128%20220.14%20204.541C219.586%20206.041%20218.716%20207.405%20217.59%20208.541C216.308%20209.822%20214.776%20210.826%20213.09%20211.491C210.954%20212.309%20208.677%20212.699%20206.39%20212.641C205.226%20212.643%20204.065%20212.539%20202.92%20212.331C201.904%20212.141%20200.902%20211.883%20199.92%20211.561C199.02%20211.251%20198.21%20210.941%20197.49%20210.611C196.77%20210.281%20196.15%20209.991%20195.66%20209.721C195.887%20208.994%20196.077%20208.374%20196.23%20207.861C196.375%20207.382%20196.488%20206.894%20196.57%20206.401C196.65%20205.941%20196.71%20205.471%20196.77%20205.001C196.83%20204.531%20196.89%20203.941%20196.97%20203.251H197.75L197.76%20203.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M228.53%20203.221C229.05%20204.456%20229.722%20205.622%20230.53%20206.691C231.126%20207.477%20231.854%20208.153%20232.68%20208.691C233.384%20209.13%20234.159%20209.441%20234.97%20209.611C235.775%20209.765%20236.592%20209.842%20237.41%20209.841C238.465%20209.858%20239.514%20209.675%20240.5%20209.301C241.376%20208.967%20242.175%20208.46%20242.85%20207.811C243.509%20207.172%20244.027%20206.402%20244.37%20205.551C244.737%20204.639%20244.921%20203.664%20244.91%20202.681C244.942%20201.687%20244.747%20200.699%20244.34%20199.791C244.002%20199.07%20243.546%20198.411%20242.99%20197.841C242.533%20197.365%20241.999%20196.969%20241.41%20196.671C240.87%20196.404%20240.47%20196.214%20240.21%20196.101C239.41%20195.761%20238.42%20195.361%20237.21%20194.901C236%20194.441%20235.06%20194.041%20234.26%20193.701C233.037%20193.178%20231.873%20192.524%20230.79%20191.751C229.921%20191.133%20229.166%20190.368%20228.56%20189.491C228.008%20188.674%20227.611%20187.762%20227.39%20186.801C227.152%20185.738%20227.038%20184.65%20227.05%20183.561C227.061%20182.23%20227.274%20180.908%20227.68%20179.641C228.113%20178.263%20228.848%20176.999%20229.83%20175.941C230.982%20174.739%20232.381%20173.801%20233.93%20173.191C235.995%20172.407%20238.193%20172.037%20240.4%20172.101C242.182%20172.057%20243.96%20172.29%20245.67%20172.791C247.115%20173.261%20248.53%20173.816%20249.91%20174.451C249.6%20175.141%20249.37%20175.711%20249.19%20176.171C249.01%20176.631%20248.87%20177.041%20248.76%20177.401C248.65%20177.761%20248.54%20178.141%20248.44%20178.521C248.34%20178.901%20248.24%20179.361%20248.13%20179.901H247.33C247.153%20179.133%20246.824%20178.407%20246.362%20177.769C245.9%20177.13%20245.315%20176.59%20244.64%20176.181C243.186%20175.321%20241.52%20174.884%20239.83%20174.921C238.904%20174.85%20237.973%20174.977%20237.099%20175.292C236.225%20175.607%20235.428%20176.105%20234.76%20176.751C233.65%20177.924%20233.044%20179.486%20233.07%20181.101C233.043%20182.001%20233.228%20182.895%20233.61%20183.711C233.985%20184.437%20234.514%20185.072%20235.16%20185.571C235.921%20186.16%20236.758%20186.641%20237.65%20187.001C238.65%20187.421%20239.77%20187.881%20241.03%20188.381C242.29%20188.881%20243.08%20189.171%20243.87%20189.501C244.66%20189.831%20245.35%20190.141%20245.96%20190.451C246.515%20190.738%20247.044%20191.073%20247.54%20191.451C248.006%20191.799%20248.438%20192.191%20248.83%20192.621C249.407%20193.217%20249.898%20193.89%20250.29%20194.621C250.636%20195.288%20250.914%20195.988%20251.12%20196.711C251.299%20197.351%20251.432%20198.002%20251.52%20198.661C251.591%20199.155%20251.631%20199.652%20251.64%20200.151C251.629%20201.656%20251.358%20203.148%20250.84%20204.561C250.286%20206.061%20249.416%20207.425%20248.29%20208.561C247.008%20209.842%20245.476%20210.846%20243.79%20211.511C241.654%20212.329%20239.377%20212.719%20237.09%20212.661C235.927%20212.663%20234.765%20212.559%20233.62%20212.351C232.604%20212.161%20231.602%20211.903%20230.62%20211.581C229.72%20211.271%20228.91%20210.961%20228.19%20210.631C227.47%20210.301%20226.85%20210.011%20226.36%20209.741C226.587%20209.014%20226.777%20208.394%20226.93%20207.881C227.075%20207.402%20227.189%20206.914%20227.27%20206.421C227.35%20205.961%20227.41%20205.491%20227.47%20205.021C227.53%20204.551%20227.59%20203.961%20227.67%20203.271H228.45L228.53%20203.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M274.2%20203.221C274.72%20204.456%20275.392%20205.622%20276.2%20206.691C276.796%20207.477%20277.523%20208.153%20278.35%20208.691C279.053%20209.13%20279.829%20209.441%20280.64%20209.611C281.444%20209.765%20282.261%20209.842%20283.08%20209.841C284.135%20209.858%20285.184%20209.675%20286.17%20209.301C287.045%20208.967%20287.844%20208.46%20288.52%20207.811C289.179%20207.172%20289.697%20206.402%20290.04%20205.551C290.407%20204.639%20290.59%20203.664%20290.58%20202.681C290.612%20201.687%20290.417%20200.699%20290.01%20199.791C289.672%20199.07%20289.215%20198.411%20288.66%20197.841C288.203%20197.365%20287.669%20196.969%20287.08%20196.671C286.54%20196.404%20286.14%20196.214%20285.88%20196.101C285.08%20195.761%20284.09%20195.361%20282.93%20194.901C281.77%20194.441%20280.78%20194.041%20279.98%20193.701C278.757%20193.178%20277.593%20192.524%20276.51%20191.751C275.641%20191.133%20274.886%20190.368%20274.28%20189.491C273.728%20188.674%20273.331%20187.762%20273.11%20186.801C272.872%20185.738%20272.758%20184.65%20272.77%20183.561C272.781%20182.23%20272.994%20180.908%20273.4%20179.641C273.833%20178.263%20274.567%20176.999%20275.55%20175.941C276.702%20174.739%20278.101%20173.801%20279.65%20173.191C281.714%20172.407%20283.913%20172.037%20286.12%20172.101C287.902%20172.057%20289.68%20172.29%20291.39%20172.791C292.834%20173.261%20294.25%20173.816%20295.63%20174.451C295.32%20175.141%20295.09%20175.711%20294.91%20176.171C294.73%20176.631%20294.59%20177.041%20294.48%20177.401C294.37%20177.761%20294.26%20178.141%20294.16%20178.521C294.06%20178.901%20293.96%20179.361%20293.85%20179.901H293.05C292.873%20179.133%20292.544%20178.407%20292.082%20177.769C291.62%20177.13%20291.034%20176.59%20290.36%20176.181C288.906%20175.321%20287.24%20174.884%20285.55%20174.921C284.624%20174.85%20283.693%20174.977%20282.819%20175.292C281.945%20175.607%20281.148%20176.105%20280.48%20176.751C279.37%20177.924%20278.763%20179.486%20278.79%20181.101C278.762%20182.001%20278.947%20182.895%20279.33%20183.711C279.705%20184.437%20280.234%20185.072%20280.88%20185.571C281.64%20186.16%20282.478%20186.641%20283.37%20187.001C284.37%20187.421%20285.49%20187.881%20286.75%20188.381C288.01%20188.881%20288.8%20189.171%20289.59%20189.501C290.38%20189.831%20291.07%20190.141%20291.68%20190.451C292.235%20190.738%20292.763%20191.073%20293.26%20191.451C293.726%20191.799%20294.158%20192.191%20294.55%20192.621C295.127%20193.217%20295.618%20193.89%20296.01%20194.621C296.356%20195.288%20296.634%20195.988%20296.84%20196.711C297.018%20197.351%20297.152%20198.002%20297.24%20198.661C297.311%20199.155%20297.351%20199.652%20297.36%20200.151C297.349%20201.656%20297.078%20203.148%20296.56%20204.561C296.006%20206.061%20295.136%20207.425%20294.01%20208.561C292.728%20209.842%20291.196%20210.846%20289.51%20211.511C287.373%20212.329%20285.097%20212.719%20282.81%20212.661C281.646%20212.663%20280.485%20212.559%20279.34%20212.351C278.324%20212.161%20277.322%20211.903%20276.34%20211.581C275.44%20211.271%20274.63%20210.961%20273.91%20210.631C273.19%20210.301%20272.57%20210.011%20272.08%20209.741C272.307%20209.014%20272.497%20208.394%20272.65%20207.881C272.795%20207.402%20272.908%20206.914%20272.99%20206.421C273.07%20205.961%20273.13%20205.491%20273.19%20205.021C273.25%20204.551%20273.31%20203.961%20273.39%20203.271H274.17L274.2%20203.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M337.17%20180.53H336.6C336.41%20180.19%20336.12%20179.71%20335.74%20179.1C335.268%20178.396%20334.664%20177.792%20333.96%20177.32C332.971%20176.657%20331.89%20176.144%20330.75%20175.8C329.095%20175.317%20327.374%20175.094%20325.65%20175.14C320.843%20175.14%20317.197%20176.63%20314.71%20179.61C312.223%20182.59%20310.97%20186.81%20310.95%20192.27C310.95%20192.77%20310.95%20193.45%20311.01%20194.33C311.06%20195.337%20311.184%20196.34%20311.38%20197.33C311.605%20198.505%20311.94%20199.657%20312.38%20200.77C312.885%20202.028%20313.557%20203.212%20314.38%20204.29C314.892%20205.016%20315.479%20205.686%20316.13%20206.29C316.823%20206.921%20317.58%20207.478%20318.39%20207.95C319.278%20208.469%20320.234%20208.863%20321.23%20209.12C322.379%20209.421%20323.563%20209.565%20324.75%20209.55C326.327%20209.573%20327.9%20209.371%20329.42%20208.95C330.684%20208.589%20331.898%20208.068%20333.03%20207.4C334.03%20206.807%20334.963%20206.106%20335.81%20205.31C336.576%20204.584%20337.303%20203.82%20337.99%20203.02L338.62%20203.42L337.99%20209.09C333.548%20211.521%20328.554%20212.764%20323.49%20212.7C320.8%20212.716%20318.126%20212.28%20315.58%20211.41C313.181%20210.601%20310.97%20209.315%20309.08%20207.63C307.178%20205.899%20305.674%20203.777%20304.67%20201.41C303.538%20198.708%20302.983%20195.799%20303.04%20192.87C303.02%20190.119%20303.477%20187.385%20304.39%20184.79C305.255%20182.318%20306.655%20180.068%20308.49%20178.2C310.476%20176.232%20312.864%20174.717%20315.49%20173.76C318.674%20172.608%20322.045%20172.055%20325.43%20172.13C327.7%20172.12%20329.965%20172.341%20332.19%20172.79C334.482%20173.276%20336.713%20174.017%20338.84%20175L337.17%20180.53Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M371.78%20192.511C370.22%20192.431%20368.68%20192.381%20367.15%20192.341C365.62%20192.301%20364.08%20192.281%20362.52%20192.281C360.96%20192.281%20359.25%20192.281%20357.64%20192.341C356.03%20192.401%20354.39%20192.441%20352.76%20192.511V198.241C352.76%20200.071%20352.76%20201.651%20352.76%20202.971C352.76%20204.291%20352.82%20205.451%20352.88%20206.471C352.94%20207.491%20352.99%20208.401%20353.05%20209.221C353.11%20210.041%20353.17%20210.911%20353.25%20211.831C352.83%20211.831%20352.25%20211.731%20351.56%20211.631C350.811%20211.532%20350.056%20211.485%20349.3%20211.491C348.632%20211.493%20347.964%20211.529%20347.3%20211.601L345.3%20211.831C345.533%20207.444%20345.677%20203.111%20345.73%20198.831C345.783%20194.551%20345.813%20190.217%20345.82%20185.831C345.82%20183.584%20345.773%20181.367%20345.68%20179.181C345.58%20177.001%20345.44%20174.811%20345.25%20172.591C345.82%20172.671%20346.54%20172.741%20347.4%20172.821C348.26%20172.901%20348.92%20172.931%20349.4%20172.931H350.4L351.55%20172.841L352.61%20172.721L353.38%20172.611C353.3%20173.411%20353.24%20174.211%20353.18%20174.991C353.12%20175.771%20353.06%20176.761%20353.01%20177.941C352.96%20179.121%20352.91%20180.591%20352.89%20182.321C352.87%20184.051%20352.89%20186.321%20352.89%20188.941C354.34%20189.021%20355.77%20189.071%20357.2%20189.111C358.63%20189.151%20360.07%20189.171%20361.51%20189.171C363.26%20189.171%20364.99%20189.171%20366.71%20189.111C368.43%20189.051%20370.16%20189.021%20371.91%20188.941V186.941C371.91%20186.001%20371.91%20185.011%20371.91%20183.941C371.91%20182.871%20371.91%20181.941%20371.85%20180.941C371.79%20179.941%20371.85%20179.361%20371.85%20179.021V177.851C371.85%20177.531%20371.85%20177.141%20371.79%20176.701C371.73%20176.261%20371.71%20175.701%20371.68%20175.101C371.65%20174.501%20371.6%20173.621%20371.56%20172.551C372.1%20172.631%20372.77%20172.701%20373.56%20172.781C374.35%20172.861%20375.1%20172.891%20375.76%20172.891C376.42%20172.891%20376.97%20172.891%20377.76%20172.781C378.55%20172.671%20379.24%20172.631%20379.76%20172.551C379.567%20174.037%20379.423%20175.937%20379.33%20178.251C379.23%20180.561%20379.16%20182.961%20379.1%20185.441C379.04%20187.921%20379%20190.321%20378.98%20192.631C378.96%20194.941%20378.98%20196.841%20378.98%20198.331C378.98%20200.624%20379%20202.934%20379.04%20205.261C379.068%20207.466%20379.242%20209.668%20379.56%20211.851L377.46%20211.621C376.759%20211.545%20376.055%20211.508%20375.35%20211.511C374.682%20211.513%20374.014%20211.55%20373.35%20211.621L371.35%20211.851C371.35%20211.581%20371.35%20211.011%20371.44%20210.131C371.53%20209.251%20371.55%20208.281%20371.61%20207.211C371.67%20206.141%20371.71%20205.101%20371.75%20204.091C371.79%20203.081%20371.81%20202.301%20371.81%20201.771L371.78%20192.511Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M408.63%20172.049C411.277%20172.044%20413.91%20172.421%20416.45%20173.169C418.924%20173.88%20421.233%20175.076%20423.24%20176.689C425.267%20178.342%20426.9%20180.426%20428.02%20182.789C429.286%20185.563%20429.902%20188.591%20429.82%20191.639C429.862%20194.605%20429.336%20197.551%20428.27%20200.319C427.306%20202.801%20425.823%20205.048%20423.92%20206.909C421.983%20208.767%20419.681%20210.201%20417.16%20211.119C414.37%20212.138%20411.419%20212.643%20408.45%20212.609C405.608%20212.631%20402.782%20212.195%20400.08%20211.319C397.589%20210.519%20395.281%20209.235%20393.29%20207.539C391.334%20205.847%20389.777%20203.743%20388.73%20201.379C387.581%20198.741%20387.014%20195.886%20387.07%20193.009C386.99%20189.788%20387.586%20186.586%20388.82%20183.609C389.885%20181.112%20391.49%20178.882%20393.52%20177.079C395.512%20175.345%20397.846%20174.048%20400.37%20173.269C403.045%20172.446%20405.83%20172.035%20408.63%20172.049ZM394.95%20192.329C394.948%20194.46%20395.19%20196.583%20395.67%20198.659C396.107%20200.64%20396.903%20202.525%20398.02%20204.219C399.101%20205.831%20400.529%20207.181%20402.2%20208.169C404.113%20209.235%20406.28%20209.76%20408.47%20209.689C410.646%20209.756%20412.799%20209.219%20414.69%20208.139C416.366%20207.137%20417.794%20205.77%20418.87%20204.139C419.981%20202.428%20420.786%20200.536%20421.25%20198.549C421.746%20196.523%20421.997%20194.445%20422%20192.359C422.009%20190.123%20421.768%20187.892%20421.28%20185.709C420.856%20183.743%20420.081%20181.869%20418.99%20180.179C417.939%20178.597%20416.513%20177.298%20414.84%20176.399C412.871%20175.405%20410.684%20174.924%20408.48%20174.999C406.28%20174.928%20404.106%20175.482%20402.21%20176.599C400.533%20177.651%20399.106%20179.058%20398.03%20180.719C396.923%20182.44%20396.128%20184.343%20395.68%20186.339C395.207%20188.301%20394.962%20190.311%20394.95%20192.329Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M457.44%20172.049C460.087%20172.044%20462.721%20172.421%20465.26%20173.169C467.735%20173.88%20470.043%20175.076%20472.05%20176.689C474.077%20178.342%20475.71%20180.426%20476.83%20182.789C478.097%20185.563%20478.713%20188.59%20478.63%20191.639C478.673%20194.605%20478.146%20197.551%20477.08%20200.319C476.116%20202.801%20474.633%20205.048%20472.73%20206.909C470.794%20208.767%20468.491%20210.201%20465.97%20211.119C463.181%20212.138%20460.23%20212.643%20457.26%20212.609C454.419%20212.631%20451.593%20212.195%20448.89%20211.319C446.4%20210.519%20444.092%20209.235%20442.1%20207.539C440.145%20205.847%20438.588%20203.743%20437.54%20201.379C436.391%20198.741%20435.825%20195.886%20435.88%20193.009C435.8%20189.788%20436.396%20186.586%20437.63%20183.609C438.696%20181.112%20440.301%20178.882%20442.33%20177.079C444.323%20175.345%20446.656%20174.048%20449.18%20173.269C451.856%20172.447%20454.641%20172.036%20457.44%20172.049ZM443.75%20192.329C443.749%20194.46%20443.991%20196.583%20444.47%20198.659C444.907%20200.64%20445.704%20202.525%20446.82%20204.219C447.901%20205.831%20449.329%20207.181%20451%20208.169C452.914%20209.235%20455.081%20209.76%20457.27%20209.689C459.447%20209.756%20461.599%20209.219%20463.49%20208.139C465.166%20207.137%20466.595%20205.77%20467.67%20204.139C468.781%20202.428%20469.586%20200.536%20470.05%20198.549C470.546%20196.523%20470.798%20194.445%20470.8%20192.359C470.81%20190.122%20470.568%20187.892%20470.08%20185.709C469.657%20183.743%20468.881%20181.869%20467.79%20180.179C466.739%20178.596%20465.314%20177.298%20463.64%20176.399C461.671%20175.405%20459.484%20174.924%20457.28%20174.999C455.081%20174.927%20452.906%20175.482%20451.01%20176.599C449.333%20177.651%20447.906%20179.058%20446.83%20180.719C445.724%20182.44%20444.928%20184.343%20444.48%20186.339C444.007%20188.301%20443.762%20190.311%20443.75%20192.329Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M487.01%20188.15V186.55C487.01%20186.09%20487.01%20185.55%20487.01%20185.03C487.01%20184.51%20487.01%20183.81%20486.95%20183.03C486.89%20182.25%20486.9%20181.22%20486.86%20179.96C486.86%20179.65%20486.86%20179.15%20486.86%20178.44C486.86%20177.73%20486.81%20176.99%20486.77%20176.2C486.73%20175.41%20486.7%20174.67%20486.68%20173.97C486.66%20173.27%20486.68%20172.78%20486.68%20172.51C487.339%20172.652%20488.007%20172.749%20488.68%20172.8C489.267%20172.84%20489.933%20172.86%20490.68%20172.86C491.4%20172.86%20492.07%20172.86%20492.68%20172.77C493.29%20172.68%20493.96%20172.63%20494.68%20172.51C494.567%20174.69%20494.48%20176.786%20494.42%20178.8C494.36%20180.8%20494.31%20182.8%20494.25%20184.8C494.19%20186.8%20494.15%20188.8%20494.14%20190.85C494.13%20192.9%20494.14%20195%20494.14%20197.22C494.14%20199.22%20494.14%20201.17%20494.2%20202.99C494.26%20204.81%20494.28%20206.52%20494.31%20208.13H497.63C498.74%20208.13%20499.97%20208.13%20501.33%20208.07C502.69%20208.01%20504.03%20207.96%20505.33%20207.88C506.63%20207.8%20507.75%20207.69%20508.6%20207.56C508.52%20207.87%20508.46%20208.16%20508.4%20208.45C508.327%20208.913%20508.297%20209.381%20508.31%20209.85C508.304%20210.184%20508.325%20210.518%20508.37%20210.85C508.429%20211.17%20508.506%20211.488%20508.6%20211.8C507.87%20211.8%20507.04%20211.72%20506.11%20211.69L503.22%20211.57L500.22%20211.48H497.61C495.78%20211.48%20494.02%20211.48%20492.34%20211.57C490.66%20211.66%20488.77%20211.71%20486.67%20211.83C486.67%20211.683%20486.67%20211.223%20486.67%20210.45C486.67%20209.69%20486.72%20208.76%20486.76%20207.67C486.8%20206.58%20486.83%20205.42%20486.85%20204.17C486.87%20202.92%20486.9%20201.75%20486.94%20200.65C486.98%20199.55%20487.01%20198.58%20487.03%20197.76C487.05%20196.94%20487.03%20196.41%20487.03%20196.18V188.18L487.01%20188.15Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M21.4896%20280.7C20.9406%20280.961%2020.368%20281.169%2019.7796%20281.32C19.1096%20281.5%2018.3696%20281.67%2017.5396%20281.81C16.688%20281.961%2015.8245%20282.035%2014.9596%20282.03C13.1566%20282.051%2011.3626%20281.774%209.64961%20281.21C8.08394%20280.699%206.65005%20279.848%205.44961%20278.72C4.24791%20277.57%203.30677%20276.175%202.68961%20274.63C1.36127%20271.084%201.36127%20267.177%202.68961%20263.63C3.31484%20262.08%204.27032%20260.684%205.48961%20259.54C6.73271%20258.397%208.20061%20257.525%209.79961%20256.98C11.5813%20256.383%2013.4506%20256.089%2015.3296%20256.11C16.8041%20256.094%2018.2751%20256.259%2019.7096%20256.6C20.9123%20256.889%2022.0869%20257.284%2023.2196%20257.78C22.995%20258.214%2022.8366%20258.68%2022.7496%20259.16C22.6296%20259.74%2022.5296%20260.23%2022.4596%20260.62L22.2396%20260.69C21.9385%20260.326%2021.6037%20259.992%2021.2396%20259.69C20.7575%20259.301%2020.246%20258.95%2019.7096%20258.64C19.075%20258.284%2018.4047%20257.996%2017.7096%20257.78C16.9321%20257.542%2016.1228%20257.424%2015.3096%20257.43C13.9454%20257.415%2012.5898%20257.649%2011.3096%20258.12C10.0928%20258.574%208.99753%20259.303%208.10961%20260.25C7.14717%20261.297%206.42079%20262.539%205.97961%20263.89C4.96648%20267.297%204.96648%20270.924%205.97961%20274.33C6.4313%20275.689%207.17156%20276.935%208.14961%20277.98C9.0394%20278.926%2010.1341%20279.654%2011.3496%20280.11C12.6298%20280.582%2013.9854%20280.816%2015.3496%20280.8C16.168%20280.808%2016.9831%20280.697%2017.7696%20280.47C18.4559%20280.264%2019.1247%20280.003%2019.7696%20279.69C20.3536%20279.405%2020.9123%20279.07%2021.4396%20278.69C21.9396%20278.34%2022.3596%20278.03%2022.6896%20277.76L22.8396%20277.91L22.5096%20280.06C22.195%20280.312%2021.8528%20280.527%2021.4896%20280.7Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M27.4598%20261.271C27.3998%20259.731%2027.3298%20258.161%2027.2598%20256.561L28.1698%20256.691C28.4583%20256.727%2028.749%20256.744%2029.0398%20256.741C29.3304%20256.739%2029.6208%20256.722%2029.9098%20256.691C30.1998%20256.691%2030.4998%20256.611%2030.8198%20256.561C30.7498%20258.161%2030.6798%20259.731%2030.6198%20261.271C30.5598%20262.811%2030.5298%20264.381%2030.5298%20265.981V272.241C30.5298%20273.841%2030.5298%20275.421%2030.6198%20276.971C30.7098%20278.521%2030.7498%20280.051%2030.8198%20281.551C30.2598%20281.501%2029.6698%20281.481%2029.0398%20281.481C28.4098%20281.481%2027.8198%20281.481%2027.2598%20281.551C27.3298%20280.051%2027.3998%20278.551%2027.4598%20276.971C27.5198%20275.391%2027.5498%20273.841%2027.5498%20272.241V265.981C27.5498%20264.381%2027.5198%20262.811%2027.4598%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M42.1799%20258.449H40.1799C39.4899%20258.449%2038.7999%20258.449%2038.1099%20258.519L36.1099%20258.649C35.4699%20258.699%2034.8899%20258.759%2034.3799%20258.829C34.491%20258.452%2034.5515%20258.062%2034.5599%20257.669C34.5425%20257.287%2034.4822%20256.908%2034.3799%20256.539L39.0699%20256.669C40.5899%20256.669%2042.1599%20256.719%2043.7599%20256.719C45.3599%20256.719%2046.9299%20256.719%2048.4499%20256.669C49.9699%20256.619%2051.5399%20256.589%2053.1399%20256.539C53.0358%20256.918%2052.9754%20257.307%2052.9599%20257.699C52.97%20258.082%2053.0305%20258.462%2053.1399%20258.829C52.6299%20258.759%2052.0499%20258.699%2051.4099%20258.649L49.4099%20258.519C48.7199%20258.519%2048.0299%20258.459%2047.3399%20258.449H45.3399C45.2732%20260.949%2045.2365%20263.459%2045.2299%20265.979V272.239C45.2299%20273.839%2045.2299%20275.419%2045.3199%20276.969C45.4099%20278.519%2045.4499%20280.049%2045.5199%20281.549C44.9599%20281.499%2044.3699%20281.479%2043.7399%20281.479C43.1099%20281.479%2042.5199%20281.479%2041.9599%20281.549C42.0299%20280.049%2042.0999%20278.549%2042.1599%20276.969C42.2199%20275.389%2042.2499%20273.839%2042.2499%20272.239V265.979C42.2765%20263.459%2042.2532%20260.949%2042.1799%20258.449Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M62.0303%20269.53C61.5603%20268.74%2061.0303%20267.87%2060.4703%20266.91L56.8703%20260.91C56.3003%20259.91%2055.7803%20259.09%2055.3203%20258.33L54.3203%20256.6L55.3203%20256.73C55.6523%20256.766%2055.9863%20256.783%2056.3203%20256.78C56.6603%20256.78%2056.9903%20256.78%2057.3203%20256.73L58.3203%20256.6C59.407%20258.713%2060.517%20260.786%2061.6503%20262.82C62.7836%20264.853%2063.977%20266.976%2065.2303%20269.19C65.7903%20268.32%2066.3703%20267.36%2066.9803%20266.31C67.5903%20265.26%2068.1903%20264.2%2068.8003%20263.11C69.4103%20262.02%2069.9903%20260.92%2070.5503%20259.82C71.1103%20258.72%2071.6303%20257.64%2072.1103%20256.6C73.0418%20256.84%2074.0189%20256.84%2074.9503%20256.6C73.7903%20258.37%2072.7403%20259.97%2071.8203%20261.4C70.9003%20262.83%2070.0903%20264.13%2069.3803%20265.29C68.6703%20266.45%2068.0603%20267.5%2067.5203%20268.44C66.9803%20269.38%2066.5203%20270.22%2066.1403%20270.97V273.84C66.1403%20273.84%2066.1403%20275.84%2066.1403%20276.84C66.1403%20277.84%2066.1903%20278.73%2066.2303%20279.57C66.2703%20280.41%2066.3103%20281.08%2066.3603%20281.57C65.8003%20281.52%2065.2103%20281.5%2064.5803%20281.5C63.9503%20281.5%2063.3503%20281.5%2062.8003%20281.57C62.9634%20280.048%2063.0468%20278.52%2063.0503%20276.99V271.35L62.0303%20269.53Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M107.42%20260.419C107.425%20259.13%20107.365%20257.842%20107.24%20256.559L108%20256.689C108.242%20256.726%20108.486%20256.743%20108.73%20256.739C109.1%20256.731%20109.467%20256.67%20109.82%20256.559C109.75%20257.409%20109.67%20258.419%20109.6%20259.559C109.53%20260.699%20109.47%20261.999%20109.42%20263.339C109.37%20264.679%20109.32%20266.069%20109.27%20267.489C109.22%20268.909%20109.19%20270.289%20109.16%20271.619C109.163%20273.108%20108.91%20274.587%20108.41%20275.989C107.986%20277.21%20107.304%20278.326%20106.41%20279.259C105.504%20280.163%20104.402%20280.847%20103.19%20281.259C101.781%20281.741%20100.299%20281.974%2098.8101%20281.949C95.1701%20281.949%2092.5268%20281.126%2090.8801%20279.479C89.2335%20277.833%2088.4101%20275.226%2088.4101%20271.659C88.4101%20270.519%2088.4101%20269.509%2088.5001%20268.659C88.5901%20267.809%2088.5901%20266.869%2088.5901%20265.949C88.5901%20263.949%2088.5901%20262.109%2088.5201%20260.529C88.4501%20258.949%2088.4201%20257.619%2088.3701%20256.529C88.6601%20256.579%2088.9801%20256.619%2089.3201%20256.659C89.6531%20256.68%2089.9871%20256.68%2090.3201%20256.659C90.5799%20256.675%2090.8404%20256.675%2091.1001%20256.659C91.3501%20256.659%2091.6201%20256.579%2091.8801%20256.529C91.8801%20257.059%2091.7801%20257.759%2091.7301%20258.619C91.6801%20259.479%2091.6301%20260.459%2091.5801%20261.549C91.5301%20262.639%2091.5001%20263.819%2091.4701%20265.079C91.4401%20266.339%2091.4701%20267.649%2091.4701%20269.009C91.4701%20269.839%2091.4701%20270.689%2091.4701%20271.579C91.496%20272.444%2091.5795%20273.306%2091.7201%20274.159C91.859%20274.985%2092.0974%20275.791%2092.4301%20276.559C92.7533%20277.316%2093.23%20277.997%2093.8301%20278.559C94.4659%20279.179%2095.2213%20279.662%2096.0501%20279.979C97.1541%20280.335%2098.3106%20280.501%2099.4701%20280.469C100.621%20280.504%20101.767%20280.307%20102.84%20279.889C103.687%20279.544%20104.45%20279.022%20105.08%20278.359C105.666%20277.724%20106.127%20276.985%20106.44%20276.179C106.769%20275.347%20107.007%20274.482%20107.15%20273.599C107.298%20272.71%20107.381%20271.811%20107.4%20270.909C107.4%20270.009%20107.4%20269.189%20107.4%20268.439C107.46%20264.979%20107.44%20262.289%20107.42%20260.419Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M127.95%20272.121C124.803%20268.741%20121.65%20265.374%20118.49%20262.021C118.49%20262.701%20118.49%20263.611%20118.42%20264.751C118.35%20265.891%20118.42%20267.441%20118.42%20269.411C118.42%20269.921%20118.42%20270.551%20118.42%20271.301C118.42%20272.051%20118.42%20272.841%20118.42%20273.671C118.42%20274.501%20118.42%20275.331%20118.42%20276.181C118.42%20277.031%20118.42%20277.821%20118.49%20278.551C118.56%20279.281%20118.54%20279.911%20118.56%20280.461C118.58%20281.011%20118.56%20281.381%20118.63%20281.571C118.208%20281.52%20117.784%20281.497%20117.36%20281.501C116.909%20281.497%20116.458%20281.52%20116.01%20281.571C116.01%20281.331%20116.11%20280.881%20116.17%20280.221C116.23%20279.561%20116.29%20278.781%20116.33%20277.871C116.37%20276.961%20116.43%20275.971%20116.49%20274.871C116.55%20273.771%20116.6%20272.741%20116.64%20271.671C116.68%20270.601%20116.71%20269.561%20116.73%20268.541C116.75%20267.521%20116.73%20266.611%20116.73%20265.811C116.73%20263.477%20116.73%20261.477%20116.73%20259.811C116.73%20258.144%20116.7%20256.894%20116.64%20256.061H117.22L121.97%20261.211C123.663%20263.044%20125.33%20264.851%20126.97%20266.631L131.7%20271.691C133.19%20273.281%20134.5%20274.631%20135.61%20275.751V270.801C135.61%20268.247%20135.61%20265.767%20135.61%20263.361C135.61%20260.951%20135.49%20258.671%20135.37%20256.541C135.774%20256.65%20136.191%20256.71%20136.61%20256.721C137.002%20256.706%20137.391%20256.645%20137.77%20256.541C137.72%20257.071%20137.67%20257.871%20137.61%20258.941C137.55%20260.011%20137.49%20261.151%20137.43%20262.361C137.37%20263.571%20137.31%20264.761%20137.27%20265.931C137.23%20267.101%20137.2%20268.031%20137.2%20268.731V270.981C137.2%20271.801%20137.2%20272.671%20137.2%20273.561C137.2%20274.451%20137.2%20275.361%20137.2%20276.271C137.2%20277.181%20137.2%20278.031%20137.2%20278.821C137.2%20279.611%20137.2%20280.291%20137.2%20280.881V282.081H136.69C134.016%20278.821%20131.103%20275.501%20127.95%20272.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M144.15%20261.271C144.09%20259.731%20144.02%20258.161%20143.95%20256.561L144.86%20256.691C145.149%20256.727%20145.439%20256.744%20145.73%20256.741C146.021%20256.739%20146.311%20256.722%20146.6%20256.691C146.89%20256.691%20147.19%20256.611%20147.51%20256.561C147.44%20258.161%20147.37%20259.731%20147.31%20261.271C147.25%20262.811%20147.22%20264.381%20147.22%20265.981V272.241C147.22%20273.841%20147.22%20275.421%20147.31%20276.971C147.4%20278.521%20147.44%20280.051%20147.51%20281.551C146.95%20281.501%20146.36%20281.481%20145.73%20281.481C145.1%20281.481%20144.51%20281.481%20143.95%20281.551C144.02%20280.051%20144.09%20278.551%20144.15%20276.971C144.21%20275.391%20144.24%20273.841%20144.24%20272.241V265.981C144.24%20264.381%20144.21%20262.811%20144.15%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M159.09%20276.391C158.29%20274.391%20157.43%20272.251%20156.53%20270.021C155.63%20267.791%20154.69%20265.511%20153.73%20263.181C152.77%20260.851%20151.86%20258.641%20150.98%20256.561L151.98%20256.691C152.282%20256.727%20152.586%20256.743%20152.89%20256.741C153.18%20256.741%20153.48%20256.741%20153.8%20256.691C154.12%20256.641%20154.44%20256.611%20154.8%20256.561C155.334%20258.161%20155.924%20259.827%20156.57%20261.561C157.217%20263.294%20157.884%20265.084%20158.57%20266.931C159.29%20268.751%20160.024%20270.594%20160.77%20272.461C161.52%20274.331%20162.29%20276.181%20163.06%20278.031C163.5%20277.031%20163.97%20275.931%20164.48%20274.701C164.99%20273.471%20165.48%20272.201%20166.03%20270.881C166.58%20269.561%20167.03%20268.211%20167.58%20266.881L169.05%20262.981C169.52%20261.721%20169.95%20260.541%20170.34%20259.451C170.73%20258.361%20171.05%20257.451%20171.34%20256.611C171.783%20256.719%20172.235%20256.78%20172.69%20256.791C173.146%20256.778%20173.598%20256.718%20174.04%20256.611C172.154%20260.831%20170.334%20265.014%20168.58%20269.161C166.827%20273.307%20165.16%20277.454%20163.58%20281.601C163.182%20281.552%20162.782%20281.528%20162.38%20281.531C161.979%20281.523%20161.578%20281.547%20161.18%20281.601C160.587%20280.147%20159.89%20278.411%20159.09%20276.391Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M177.66%20261.221C177.6%20259.671%20177.53%20258.121%20177.46%20256.561L180.72%20256.691C181.8%20256.691%20182.89%20256.741%20183.98%20256.741C185.07%20256.741%20186.15%20256.741%20187.22%20256.691C188.29%20256.641%20189.37%20256.611%20190.46%20256.561C190.313%20257.28%20190.313%20258.021%20190.46%20258.741L188.33%20258.591L186.33%20258.441C185.61%20258.441%20184.83%20258.351%20183.98%20258.311C183.13%20258.271%20182.11%20258.261%20180.92%20258.261C180.92%20259.041%20180.89%20259.781%20180.83%20260.481C180.83%20261.181%20180.78%20261.981%20180.78%20262.881C180.78%20263.781%20180.78%20264.751%20180.78%20265.651C180.78%20266.551%20180.78%20267.231%20180.78%20267.651H183.66C183.66%20267.651%20185.28%20267.601%20185.99%20267.561L187.99%20267.451L189.68%20267.321C189.607%20267.693%20189.57%20268.071%20189.57%20268.451C189.572%20268.817%20189.609%20269.182%20189.68%20269.541C189.05%20269.471%20188.32%20269.411%20187.48%20269.361C186.64%20269.311%20185.81%20269.281%20184.97%20269.271H182.6H180.84V269.981C180.84%20269.981%20180.84%20270.561%20180.84%20270.981V274.581V278.001C180.84%20278.001%20180.84%20279.581%20180.89%20280.001H183.44H186.15C186.15%20280.001%20187.87%20279.921%20188.66%20279.851C189.351%20279.798%20190.039%20279.708%20190.72%20279.581C190.668%20279.763%20190.638%20279.951%20190.63%20280.141V280.701C190.623%20281.021%20190.66%20281.34%20190.74%20281.651C189.65%20281.601%20188.56%20281.581%20187.48%20281.581H180.88C179.79%20281.581%20178.68%20281.581%20177.57%20281.651C177.64%20280.101%20177.71%20278.551%20177.77%20277.011C177.83%20275.471%20177.86%20273.901%20177.86%20272.301V265.981C177.76%20264.351%20177.72%20262.771%20177.66%20261.221Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M195.42%20261.271C195.36%20259.731%20195.29%20258.161%20195.22%20256.561L197.29%20256.691C197.96%20256.691%20198.66%20256.741%20199.36%20256.741C200.06%20256.741%20200.75%20256.741%20201.43%20256.651C202.11%20256.561%20202.8%20256.561%20203.5%20256.561C204.477%20256.558%20205.452%20256.655%20206.41%20256.851C207.271%20257.033%20208.091%20257.372%20208.83%20257.851C209.513%20258.293%20210.076%20258.898%20210.47%20259.611C210.896%20260.456%20211.102%20261.395%20211.07%20262.341C211.099%20263.394%20210.829%20264.435%20210.29%20265.341C209.796%20266.15%20209.147%20266.854%20208.38%20267.411C207.641%20267.952%20206.825%20268.38%20205.96%20268.681C205.198%20268.956%20204.411%20269.157%20203.61%20269.281L204.81%20270.811C205.32%20271.471%20205.89%20272.191%20206.52%20272.981C207.15%20273.771%20207.81%20274.591%20208.52%20275.451C209.23%20276.311%20209.85%20277.141%20210.52%20277.921C211.19%20278.701%20211.74%20279.431%20212.3%20280.091C212.86%20280.751%20213.3%20281.241%20213.65%20281.581C213.288%20281.532%20212.924%20281.509%20212.56%20281.511H210.42C210.065%20281.508%20209.711%20281.532%20209.36%20281.581C209%20281.071%20208.44%20280.311%20207.7%20279.291C206.96%20278.271%20206.14%20277.181%20205.24%20276.021C204.34%20274.861%20203.43%20273.701%20202.49%20272.541C201.55%20271.381%20200.7%20270.411%20199.92%20269.611H198.54V272.271C198.54%20273.871%20198.54%20275.451%20198.63%20277.001C198.72%20278.551%20198.76%20280.081%20198.83%20281.581C198.27%20281.531%20197.68%20281.511%20197.05%20281.511C196.42%20281.511%20195.83%20281.511%20195.27%20281.581C195.34%20280.081%20195.41%20278.581%20195.47%20277.001C195.53%20275.421%20195.56%20273.871%20195.56%20272.271V265.981C195.51%20264.381%20195.48%20262.811%20195.42%20261.271ZM199.61%20268.201C200.01%20268.201%20200.45%20268.201%20200.94%20268.201C201.73%20268.198%20202.517%20268.114%20203.29%20267.951C204.082%20267.786%20204.84%20267.485%20205.53%20267.061C206.216%20266.627%20206.795%20266.042%20207.22%20265.351C207.696%20264.529%20207.928%20263.589%20207.89%20262.641C207.919%20261.825%20207.737%20261.015%20207.36%20260.291C207.031%20259.695%20206.56%20259.19%20205.99%20258.821C205.434%20258.461%20204.817%20258.207%20204.17%20258.071C203.535%20257.941%20202.888%20257.874%20202.24%20257.871C201.39%20257.871%20200.69%20257.871%20200.13%20257.921C199.57%20257.971%20199.13%20258.001%20198.71%20258.051C198.71%20259.381%20198.61%20260.711%20198.56%20262.051C198.51%20263.391%20198.49%20264.671%20198.49%20265.981V268.051C198.859%20268.13%20199.233%20268.18%20199.61%20268.201Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M217.29%20278.159C218.009%20279.135%20219.006%20279.871%20220.15%20280.269C220.828%20280.509%20221.542%20280.628%20222.26%20280.619C223.005%20280.63%20223.743%20280.487%20224.43%20280.199C225.049%20279.939%20225.607%20279.554%20226.07%20279.069C226.51%20278.583%20226.85%20278.016%20227.07%20277.399C227.313%20276.74%20227.435%20276.042%20227.43%20275.339C227.48%20274.377%20227.174%20273.43%20226.57%20272.679C225.973%20272%20225.25%20271.443%20224.44%20271.039C223.55%20270.58%20222.632%20270.179%20221.69%20269.839C220.726%20269.486%20219.803%20269.026%20218.94%20268.469C218.092%20267.929%20217.366%20267.217%20216.81%20266.379C216.194%20265.356%20215.895%20264.173%20215.95%20262.979C215.935%20262.024%20216.123%20261.077%20216.5%20260.199C216.864%20259.37%20217.403%20258.63%20218.08%20258.029C218.81%20257.398%20219.656%20256.916%20220.57%20256.609C221.627%20256.255%20222.736%20256.083%20223.85%20256.099C224.866%20256.081%20225.878%20256.223%20226.85%20256.519C227.711%20256.805%20228.513%20257.242%20229.22%20257.809C228.998%20258.229%20228.814%20258.667%20228.67%20259.119C228.494%20259.695%20228.347%20260.279%20228.23%20260.869H227.79C227.65%20260.49%20227.486%20260.119%20227.3%20259.759C227.084%20259.345%20226.8%20258.97%20226.46%20258.649C226.088%20258.298%20225.663%20258.007%20225.2%20257.789C224.651%20257.54%20224.053%20257.42%20223.45%20257.439C222.812%20257.432%20222.178%20257.544%20221.58%20257.769C221.027%20257.978%20220.521%20258.294%20220.09%20258.699C219.658%20259.102%20219.317%20259.593%20219.09%20260.139C218.855%20260.717%20218.737%20261.335%20218.74%20261.959C218.69%20262.931%20218.996%20263.887%20219.6%20264.649C220.203%20265.328%20220.925%20265.891%20221.73%20266.309C222.616%20266.776%20223.535%20267.177%20224.48%20267.509C225.437%20267.848%20226.358%20268.28%20227.23%20268.799C228.071%20269.312%20228.796%20269.993%20229.36%20270.799C229.971%20271.751%20230.268%20272.87%20230.21%20273.999C230.216%20275.085%20230.012%20276.161%20229.61%20277.169C229.221%20278.152%20228.624%20279.039%20227.86%20279.769C227.059%20280.532%20226.105%20281.115%20225.06%20281.479C223.848%20281.897%20222.572%20282.1%20221.29%20282.079C220.043%20282.123%20218.799%20281.919%20217.63%20281.479C216.791%20281.131%20216.001%20280.673%20215.28%20280.119C215.48%20279.632%20215.63%20279.126%20215.73%20278.609C215.81%20278.159%20215.89%20277.609%20215.97%20276.879H216.41C216.663%20277.332%20216.958%20277.761%20217.29%20278.159Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M234.95%20261.271C234.89%20259.731%20234.82%20258.161%20234.75%20256.561L235.66%20256.691C235.949%20256.727%20236.239%20256.744%20236.53%20256.741C236.821%20256.739%20237.111%20256.722%20237.4%20256.691C237.69%20256.691%20237.99%20256.611%20238.31%20256.561C238.24%20258.161%20238.17%20259.731%20238.11%20261.271C238.05%20262.811%20238.02%20264.381%20238.02%20265.981V272.241C238.02%20273.841%20238.02%20275.421%20238.11%20276.971C238.2%20278.521%20238.24%20280.051%20238.31%20281.551C237.75%20281.501%20237.16%20281.481%20236.53%20281.481C235.9%20281.481%20235.31%20281.481%20234.75%20281.551C234.82%20280.051%20234.89%20278.551%20234.95%20276.971C235.01%20275.391%20235.04%20273.841%20235.04%20272.241V265.981C235.053%20264.381%20235.023%20262.811%20234.95%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M249.4%20258.449H247.4C246.71%20258.449%20246.02%20258.449%20245.33%20258.519L243.33%20258.649C242.69%20258.699%20242.11%20258.759%20241.6%20258.829C241.711%20258.452%20241.771%20258.062%20241.78%20257.669C241.762%20257.287%20241.702%20256.908%20241.6%20256.539L246.29%20256.669C247.81%20256.669%20249.38%20256.719%20250.98%20256.719C252.58%20256.719%20254.15%20256.719%20255.67%20256.669C257.19%20256.619%20258.76%20256.589%20260.36%20256.539C260.256%20256.918%20260.195%20257.307%20260.18%20257.699C260.19%20258.082%20260.25%20258.462%20260.36%20258.829C259.85%20258.759%20259.27%20258.699%20258.63%20258.649L256.63%20258.519C255.94%20258.519%20255.25%20258.459%20254.56%20258.449H252.56C252.493%20260.949%20252.456%20263.459%20252.45%20265.979V272.239C252.45%20273.839%20252.45%20275.419%20252.54%20276.969C252.63%20278.519%20252.67%20280.049%20252.74%20281.549C252.18%20281.499%20251.59%20281.479%20250.96%20281.479C250.33%20281.479%20249.74%20281.479%20249.18%20281.549C249.25%20280.049%20249.32%20278.549%20249.38%20276.969C249.44%20275.389%20249.47%20273.839%20249.47%20272.239V265.979C249.496%20263.459%20249.473%20260.949%20249.4%20258.449Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M269.72%20269.531C269.25%20268.741%20268.72%20267.871%20268.16%20266.911L264.56%20260.911C263.99%20259.911%20263.47%20259.091%20263.01%20258.331L261.95%20256.561L262.95%20256.691C263.282%20256.727%20263.616%20256.744%20263.95%20256.741C264.29%20256.741%20264.62%20256.741%20264.95%20256.691L265.95%20256.561C267.044%20258.674%20268.154%20260.747%20269.28%20262.781C270.407%20264.814%20271.6%20266.937%20272.86%20269.151C273.42%20268.281%20274%20267.321%20274.61%20266.271C275.22%20265.221%20275.82%20264.161%20276.43%20263.071C277.04%20261.981%20277.62%20260.881%20278.18%20259.781C278.74%20258.681%20279.26%20257.601%20279.74%20256.561C280.672%20256.801%20281.649%20256.801%20282.58%20256.561C281.42%20258.331%20280.37%20259.931%20279.45%20261.361C278.53%20262.791%20277.72%20264.091%20277.01%20265.251C276.3%20266.411%20275.69%20267.461%20275.15%20268.401C274.61%20269.341%20274.15%20270.181%20273.77%20270.931V273.801C273.77%20273.801%20273.77%20275.801%20273.77%20276.801C273.77%20277.801%20273.82%20278.691%20273.86%20279.531C273.9%20280.371%20273.94%20281.041%20273.99%20281.531C273.43%20281.481%20272.84%20281.461%20272.21%20281.461C271.58%20281.461%20270.98%20281.461%20270.43%20281.531C270.593%20280.009%20270.677%20278.481%20270.68%20276.951V271.311L269.72%20269.531Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M295.16%20263.601C295.785%20262.05%20296.741%20260.654%20297.96%20259.511C299.204%20258.371%20300.672%20257.502%20302.27%20256.961C305.845%20255.805%20309.694%20255.805%20313.27%20256.961C314.87%20257.498%20316.338%20258.367%20317.58%20259.511C318.797%20260.656%20319.752%20262.052%20320.38%20263.601C321.708%20267.147%20321.708%20271.054%20320.38%20274.601C319.755%20276.151%20318.799%20277.547%20317.58%20278.691C316.345%20279.83%20314.873%20280.68%20313.27%20281.181C311.481%20281.741%20309.615%20282.018%20307.74%20282.001C305.878%20282.022%20304.024%20281.745%20302.25%20281.181C300.65%20280.672%20299.179%20279.823%20297.94%20278.691C296.72%20277.548%20295.764%20276.152%20295.14%20274.601C293.811%20271.054%20293.811%20267.147%20295.14%20263.601H295.16ZM317.08%20263.891C316.639%20262.539%20315.912%20261.297%20314.95%20260.251C314.06%20259.305%20312.965%20258.577%20311.75%20258.121C309.186%20257.201%20306.383%20257.201%20303.82%20258.121C302.603%20258.574%20301.508%20259.303%20300.62%20260.251C299.657%20261.297%20298.931%20262.539%20298.49%20263.891C297.477%20267.297%20297.477%20270.924%20298.49%20274.331C298.931%20275.683%20299.657%20276.924%20300.62%20277.971C301.51%20278.916%20302.604%20279.645%20303.82%20280.101C306.383%20281.02%20309.186%20281.02%20311.75%20280.101C312.964%20279.648%20314.059%20278.922%20314.95%20277.981C315.912%20276.934%20316.639%20275.693%20317.08%20274.341C318.093%20270.934%20318.093%20267.307%20317.08%20263.901V263.891Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M325.95%20261.271C325.89%20259.731%20325.82%20258.161%20325.75%20256.561L329.01%20256.691C330.09%20256.691%20331.18%20256.741%20332.27%20256.741C333.36%20256.741%20334.47%20256.741%20335.58%20256.691L339.22%20256.561C339.074%20257.28%20339.074%20258.021%20339.22%20258.741C338.56%20258.671%20337.78%20258.601%20336.85%20258.541C335.92%20258.481%20334.99%20258.431%20334.03%20258.391L331.26%20258.301C330.37%20258.301%20329.64%20258.301%20329.06%20258.301C329.06%20259.151%20329.06%20259.961%20329.01%20260.741C328.96%20261.521%20329.01%20262.291%20329.01%20263.071C329.01%20263.851%20329.01%20264.701%20329.01%20265.421C329.01%20266.141%20329.01%20266.881%20329.01%20267.661C330.61%20267.661%20332.19%20267.661%20333.76%20267.591C335.33%20267.521%20336.87%20267.441%20338.4%20267.301C338.198%20268.013%20338.198%20268.768%20338.4%20269.481C337.79%20269.411%20337.11%20269.351%20336.34%20269.321C335.57%20269.291%20334.78%20269.251%20333.96%20269.231C333.14%20269.211%20332.3%20269.231%20331.45%20269.231H329.01V272.321C329.01%20273.921%20329.01%20275.501%20329.1%20277.051C329.19%20278.601%20329.23%20280.131%20329.3%20281.631C328.74%20281.581%20328.15%20281.561%20327.52%20281.561C326.89%20281.561%20326.3%20281.561%20325.74%20281.631C325.81%20280.131%20325.88%20278.631%20325.94%20277.051C326%20275.471%20326.03%20273.921%20326.03%20272.321V265.981C326.07%20264.381%20326.04%20262.811%20325.95%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M353.41%20261.271C353.35%20259.731%20353.28%20258.161%20353.21%20256.561L354.12%20256.691C354.409%20256.727%20354.7%20256.744%20354.99%20256.741C355.281%20256.739%20355.571%20256.722%20355.86%20256.691C356.15%20256.691%20356.45%20256.611%20356.77%20256.561C356.7%20258.161%20356.63%20259.731%20356.57%20261.271C356.51%20262.811%20356.48%20264.381%20356.48%20265.981C356.48%20269.041%20356.48%20271.691%20356.48%20273.931C356.48%20276.171%20356.53%20278.181%20356.55%20279.931C358.27%20279.931%20359.92%20279.931%20361.5%20279.881C363.203%20279.83%20364.902%20279.69%20366.59%20279.461C366.484%20279.815%20366.423%20280.181%20366.41%20280.551C366.42%20280.891%20366.481%20281.228%20366.59%20281.551C365.47%20281.501%20364.36%20281.481%20363.24%20281.481H356.52C355.44%20281.481%20354.32%20281.481%20353.15%20281.551C353.22%20280.051%20353.29%20278.551%20353.35%20276.971C353.41%20275.391%20353.44%20273.841%20353.44%20272.241V265.981C353.5%20264.381%20353.47%20262.811%20353.41%20261.271Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M370.22%20263.601C370.845%20262.05%20371.8%20260.654%20373.02%20259.511C374.264%20258.371%20375.731%20257.502%20377.33%20256.961C380.905%20255.805%20384.754%20255.805%20388.33%20256.961C389.93%20257.498%20391.398%20258.367%20392.64%20259.511C393.857%20260.656%20394.812%20262.052%20395.44%20263.601C396.768%20267.147%20396.768%20271.054%20395.44%20274.601C394.814%20276.151%20393.859%20277.547%20392.64%20278.691C391.405%20279.83%20389.933%20280.68%20388.33%20281.181C386.541%20281.741%20384.675%20282.018%20382.8%20282.001C380.938%20282.022%20379.084%20281.745%20377.31%20281.181C375.71%20280.672%20374.239%20279.823%20373%20278.691C371.779%20277.548%20370.824%20276.152%20370.2%20274.601C369.505%20272.848%20369.165%20270.975%20369.2%20269.091C369.179%20267.212%20369.525%20265.347%20370.22%20263.601ZM392.15%20263.891C391.708%20262.539%20390.982%20261.297%20390.02%20260.251C389.13%20259.305%20388.035%20258.577%20386.82%20258.121C384.256%20257.201%20381.453%20257.201%20378.89%20258.121C377.673%20258.574%20376.578%20259.303%20375.69%20260.251C374.727%20261.297%20374.001%20262.539%20373.56%20263.891C372.546%20267.297%20372.546%20270.924%20373.56%20274.331C374.001%20275.683%20374.727%20276.924%20375.69%20277.971C376.579%20278.916%20377.674%20279.645%20378.89%20280.101C381.453%20281.02%20384.256%20281.02%20386.82%20280.101C388.035%20279.645%20389.13%20278.916%20390.02%20277.971C390.982%20276.924%20391.708%20275.683%20392.15%20274.331C393.163%20270.924%20393.163%20267.297%20392.15%20263.891Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M412.7%20272.121C409.553%20268.741%20406.4%20265.374%20403.24%20262.021C403.24%20262.701%20403.19%20263.611%20403.17%20264.751C403.15%20265.891%20403.17%20267.441%20403.17%20269.411C403.17%20269.921%20403.17%20270.551%20403.17%20271.301C403.17%20272.051%20403.17%20272.841%20403.17%20273.671C403.17%20274.501%20403.17%20275.331%20403.22%20276.181C403.27%20277.031%20403.22%20277.821%20403.29%20278.551C403.36%20279.281%20403.34%20279.911%20403.36%20280.461C403.38%20281.011%20403.41%20281.381%20403.43%20281.571C403.008%20281.52%20402.584%20281.497%20402.16%20281.501C401.709%20281.497%20401.258%20281.52%20400.81%20281.571C400.86%20281.331%20400.91%20280.881%20400.97%20280.221C401.03%20279.561%20401.09%20278.781%20401.13%20277.871C401.17%20276.961%20401.23%20275.971%20401.29%20274.871C401.35%20273.771%20401.4%20272.741%20401.44%20271.671C401.48%20270.601%20401.51%20269.561%20401.53%20268.541C401.55%20267.521%20401.53%20266.611%20401.53%20265.811C401.53%20263.477%20401.53%20261.477%20401.53%20259.811C401.53%20258.144%20401.5%20256.894%20401.44%20256.061H402.02L406.77%20261.211C408.456%20263.044%20410.123%20264.851%20411.77%20266.631L416.5%20271.691C417.99%20273.281%20419.3%20274.631%20420.41%20275.751V270.801C420.41%20268.247%20420.41%20265.767%20420.41%20263.361C420.41%20260.951%20420.29%20258.671%20420.17%20256.541C420.574%20256.65%20420.991%20256.71%20421.41%20256.721C421.802%20256.706%20422.191%20256.645%20422.57%20256.541C422.52%20257.071%20422.47%20257.871%20422.41%20258.941C422.35%20260.011%20422.29%20261.151%20422.23%20262.361C422.17%20263.571%20422.11%20264.761%20422.07%20265.931C422.03%20267.101%20422%20268.031%20422%20268.731V270.981C422%20271.801%20422%20272.671%20422%20273.561C422%20274.451%20422%20275.361%20422%20276.271C422%20277.181%20422%20278.031%20422%20278.821C422%20279.611%20422%20280.291%20422%20280.881V282.081H421.49C418.79%20278.821%20415.86%20275.501%20412.7%20272.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M428.95%20261.271C428.89%20259.731%20428.82%20258.161%20428.75%20256.561L431.5%20256.691C432.41%20256.691%20433.32%20256.741%20434.25%20256.741C435.18%20256.741%20436.09%20256.741%20437%20256.651C437.91%20256.561%20438.83%20256.561%20439.75%20256.561C441.612%20256.518%20443.467%20256.802%20445.23%20257.401C446.639%20257.893%20447.913%20258.708%20448.95%20259.781C449.946%20260.857%20450.676%20262.152%20451.08%20263.561C451.545%20265.186%20451.77%20266.871%20451.75%20268.561C451.817%20270.675%20451.385%20272.775%20450.49%20274.691C449.731%20276.244%20448.638%20277.61%20447.29%20278.691C446.02%20279.694%20444.561%20280.432%20443%20280.861C441.538%20281.27%20440.028%20281.485%20438.51%20281.501C437.68%20281.501%20436.87%20281.501%20436.07%20281.501C435.27%20281.501%20434.46%20281.501%20433.63%20281.501H431.19C430.39%20281.501%20429.58%20281.501%20428.75%20281.571C428.82%20280.071%20428.89%20278.571%20428.95%20276.991C429.01%20275.411%20429.04%20273.861%20429.04%20272.261V265.981C429.01%20264.381%20428.95%20262.811%20428.95%20261.271ZM432.25%20279.961C432.932%20280.104%20433.624%20280.194%20434.32%20280.231C435.19%20280.291%20436.09%20280.321%20437.01%20280.321C438.357%20280.318%20439.699%20280.16%20441.01%20279.851C442.326%20279.546%20443.552%20278.936%20444.59%20278.071C445.722%20277.099%20446.606%20275.872%20447.17%20274.491C448.423%20270.916%20448.5%20267.033%20447.39%20263.411C446.952%20262.176%20446.213%20261.069%20445.24%20260.191C444.301%20259.39%20443.183%20258.828%20441.98%20258.551C440.619%20258.239%20439.226%20258.088%20437.83%20258.101C436.74%20258.101%20435.72%20258.101%20434.77%20258.211C433.82%20258.321%20432.97%20258.371%20432.22%20258.461C432.15%20259.631%20432.09%20260.841%20432.06%20262.121C432.03%20263.401%20431.95%20264.691%20431.95%20265.981V272.241C431.95%20274.861%20432.06%20277.431%20432.21%20279.981L432.25%20279.961Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M455.84%20263.6C456.466%20262.05%20457.421%20260.654%20458.64%20259.51C459.886%20258.377%20461.354%20257.516%20462.95%20256.98C466.526%20255.824%20470.375%20255.824%20473.95%20256.98C475.55%20257.518%20477.019%20258.387%20478.26%20259.53C479.478%20260.676%20480.433%20262.071%20481.06%20263.62C482.389%20267.167%20482.389%20271.074%20481.06%20274.62C480.435%20276.171%20479.48%20277.566%20478.26%20278.71C477.026%20279.849%20475.554%20280.7%20473.95%20281.2C472.161%20281.761%20470.295%20282.038%20468.42%20282.02C466.558%20282.041%20464.705%20281.764%20462.93%20281.2C461.331%20280.692%20459.86%20279.842%20458.62%20278.71C457.4%20277.567%20456.445%20276.171%20455.82%20274.62C454.492%20271.074%20454.492%20267.167%20455.82%20263.62L455.84%20263.6ZM477.76%20263.89C477.319%20262.538%20476.593%20261.297%20475.63%20260.25C474.741%20259.305%20473.646%20258.576%20472.43%20258.12C469.867%20257.2%20467.064%20257.2%20464.5%20258.12C463.284%20258.574%20462.188%20259.303%20461.3%20260.25C460.338%20261.297%20459.612%20262.538%20459.17%20263.89C458.157%20267.296%20458.157%20270.924%20459.17%20274.33C459.612%20275.682%20460.338%20276.923%20461.3%20277.97C462.19%20278.916%20463.285%20279.644%20464.5%20280.1C467.064%20281.02%20469.867%20281.02%20472.43%20280.1C473.646%20279.644%20474.741%20278.916%20475.63%20277.97C476.593%20276.923%20477.319%20275.682%20477.76%20274.33C478.774%20270.924%20478.774%20267.296%20477.76%20263.89Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M498.32%20272.121C495.173%20268.741%20492.02%20265.374%20488.86%20262.021C488.86%20262.701%20488.81%20263.611%20488.79%20264.751C488.77%20265.891%20488.79%20267.441%20488.79%20269.411C488.79%20269.921%20488.79%20270.551%20488.79%20271.301C488.79%20272.051%20488.79%20272.841%20488.79%20273.671C488.79%20274.501%20488.79%20275.331%20488.84%20276.181C488.89%20277.031%20488.84%20277.821%20488.91%20278.551C488.98%20279.281%20488.91%20279.911%20488.98%20280.461C489.05%20281.011%20489.03%20281.381%20489.05%20281.571C488.628%20281.52%20488.204%20281.497%20487.78%20281.501C487.329%20281.497%20486.878%20281.52%20486.43%20281.571C486.48%20281.331%20486.53%20280.881%20486.59%20280.221C486.65%20279.561%20486.71%20278.781%20486.75%20277.871C486.79%20276.961%20486.85%20275.971%20486.91%20274.871C486.97%20273.771%20487.02%20272.741%20487.06%20271.671C487.1%20270.601%20487.13%20269.561%20487.15%20268.541C487.17%20267.521%20487.15%20266.611%20487.15%20265.811C487.15%20263.477%20487.15%20261.477%20487.15%20259.811C487.15%20258.144%20487.12%20256.894%20487.06%20256.061H487.64L492.39%20261.211C494.076%20263.044%20495.743%20264.851%20497.39%20266.631L502.12%20271.691C503.61%20273.281%20504.92%20274.631%20506.03%20275.751V270.801C506.03%20268.247%20506.013%20265.767%20505.98%20263.361C505.98%20260.951%20505.86%20258.671%20505.74%20256.541C506.144%20256.65%20506.561%20256.71%20506.98%20256.721C507.372%20256.706%20507.761%20256.645%20508.14%20256.541C508.09%20257.071%20508.04%20257.871%20507.98%20258.941C507.92%20260.011%20507.86%20261.151%20507.8%20262.361C507.74%20263.571%20507.68%20264.761%20507.64%20265.931C507.6%20267.101%20507.57%20268.031%20507.57%20268.731V270.981C507.57%20271.801%20507.57%20272.671%20507.57%20273.561C507.57%20274.451%20507.57%20275.361%20507.57%20276.271C507.57%20277.181%20507.57%20278.031%20507.57%20278.821C507.57%20279.611%20507.57%20280.291%20507.57%20280.881V282.081H507.06C504.393%20278.821%20501.48%20275.501%20498.32%20272.121Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M71.5703%20283.741C73.1467%20281.931%2074.5183%20279.952%2075.6603%20277.841C75.1874%20277.869%2074.7132%20277.869%2074.2403%20277.841C73.8593%20277.828%2073.4822%20277.76%2073.1203%20277.641C72.8503%20278.281%2072.5303%20279.031%2072.1203%20279.911C71.7103%20280.791%2071.3003%20281.721%2070.8303%20282.731L70.5303%20283.371C70.8698%20283.513%2071.217%20283.637%2071.5703%20283.741Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M507.95%20236.98H2C1.46957%20236.98%200.960859%20236.77%200.585786%20236.395C0.210714%20236.02%200%20235.511%200%20234.98C0%20234.45%200.210714%20233.941%200.585786%20233.566C0.960859%20233.191%201.46957%20232.98%202%20232.98H507.95C508.48%20232.98%20508.989%20233.191%20509.364%20233.566C509.739%20233.941%20509.95%20234.45%20509.95%20234.98C509.95%20235.511%20509.739%20236.02%20509.364%20236.395C508.989%20236.77%20508.48%20236.98%20507.95%20236.98Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M507.95%203.98047H2C1.46957%203.98047%200.960859%203.76976%200.585786%203.39468C0.210714%203.01961%200%202.5109%200%201.98047C0%201.45004%200.210714%200.941328%200.585786%200.566255C0.960859%200.191182%201.46957%20-0.0195312%202%20-0.0195312L507.95%20-0.0195312C508.48%20-0.0195312%20508.989%200.191182%20509.364%200.566255C509.739%200.941328%20509.95%201.45004%20509.95%201.98047C509.95%202.5109%20509.739%203.01961%20509.364%203.39468C508.989%203.76976%20508.48%203.98047%20507.95%203.98047Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M2.30016%2074.4297C2.30016%2064.7963%202.18349%2056.2397%201.95016%2048.7597C1.71682%2041.2797%201.38349%2033.7697%200.950156%2026.2297C2.95016%2026.4597%205.07016%2026.6697%207.39016%2026.8397C9.71016%2027.0097%2012.3202%2027.0997%2015.2202%2027.0997C20.2068%2027.0997%2025.4268%2026.9563%2030.8802%2026.6697C36.3335%2026.383%2041.5535%2026.2363%2046.5402%2026.2297C51.3425%2026.1809%2056.1333%2026.708%2060.8102%2027.7997C64.7841%2028.7049%2068.5593%2030.3282%2071.9502%2032.5897C75.0353%2034.7111%2077.5109%2037.6038%2079.1302%2040.9797C80.8941%2044.8101%2081.7562%2048.994%2081.6502%2053.2097C81.755%2057.4932%2080.7197%2061.7277%2078.6502%2065.4797C76.8109%2068.7381%2074.3752%2071.6215%2071.4702%2073.9797C68.6838%2076.2069%2065.5749%2077.9973%2062.2502%2079.2897C59.3433%2080.4534%2056.3287%2081.3277%2053.2502%2081.8997V82.2497C56.447%2082.4696%2059.6043%2083.0842%2062.6502%2084.0797C66.3411%2085.2284%2069.8201%2086.9713%2072.9502%2089.2397C76.2789%2091.6556%2079.088%2094.7163%2081.2102%2098.2397C83.5702%20102.269%2084.7452%20106.882%2084.6002%20111.55C84.7584%20117.077%2083.5963%20122.562%2081.2102%20127.55C79.0914%20131.798%2076.0095%20135.493%2072.2102%20138.34C68.3326%20141.171%2063.9038%20143.158%2059.2102%20144.17C54.2405%20145.28%2049.1624%20145.834%2044.0702%20145.82C39.4035%20145.82%2035.0702%20145.763%2031.0702%20145.65C27.0702%20145.536%2022.8635%20145.48%2018.4502%20145.48H8.83016C6.18563%20145.444%203.54127%20145.561%200.910156%20145.83C1.37016%20138.643%201.70349%20131.31%201.91016%20123.83C2.11682%20116.35%202.23349%20107.793%202.26016%2098.1597V74.4297H2.30016ZM55.8902%2056.5097C55.8905%2053.8382%2055.5545%2051.1772%2054.8902%2048.5897C54.3167%2046.2274%2053.2159%2044.0257%2051.6702%2042.1497C50.1018%2040.3018%2048.1499%2038.8174%2045.9502%2037.7997C43.2072%2036.6152%2040.2363%2036.0518%2037.2502%2036.1497C34.7035%2036.1497%2032.9335%2036.1797%2031.9402%2036.2397C30.8584%2036.3103%2029.7826%2036.454%2028.7202%2036.6697C28.4935%2040.963%2028.3202%2045.313%2028.2002%2049.7197C28.0802%2054.1297%2028.0302%2057.8397%2028.0302%2060.8597C28.0302%2063.8797%2028.0302%2066.9797%2028.1202%2069.8597C28.2102%2072.7397%2028.2102%2075.6297%2028.2102%2078.6497H36.0402C38.5128%2078.6445%2040.9623%2078.1729%2043.2602%2077.2597C45.6292%2076.335%2047.7885%2074.9442%2049.6102%2073.1697C51.5678%2071.2104%2053.1057%2068.8729%2054.1302%2066.2997C55.3599%2063.1852%2055.9582%2059.8574%2055.8902%2056.5097ZM57.1102%20112.71C57.1102%20104.59%2055.2835%2098.5297%2051.6302%2094.5297C47.9768%2090.5297%2042.6702%2088.5297%2035.7102%2088.5297C34.0902%2088.5297%2032.7102%2088.5297%2031.5302%2088.6197C30.3502%2088.7097%2029.2702%2088.7097%2028.2202%2088.7097C28.2202%2091.1497%2028.1902%2093.673%2028.1302%2096.2797C28.0702%2098.8863%2028.0402%20101.99%2028.0402%20105.59C28.0402%20108.37%2028.0402%20111.22%2028.1302%20114.12C28.2202%20117.02%2028.2202%20119.86%2028.2202%20122.65C28.2202%20125.44%2028.2202%20127.99%2028.3102%20130.31C28.4002%20132.63%2028.4002%20134.55%2028.4002%20136.05C30.0202%20136.17%2031.5302%20136.25%2032.9202%20136.31C34.3102%20136.37%2035.9902%20136.4%2037.9702%20136.4C40.4913%20136.408%2042.9846%20135.872%2045.2802%20134.83C47.6286%20133.767%2049.7094%20132.191%2051.3702%20130.22C53.2024%20128.028%2054.619%20125.52%2055.5502%20122.82C56.6451%20119.564%2057.1728%20116.144%2057.1102%20112.71Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M211.62%20145.769C208.84%20145.543%20206.2%20145.426%20203.7%20145.419H188.95C186.45%20145.419%20183.95%20145.529%20181.55%20145.769C179.69%20140.089%20177.776%20134.289%20175.81%20128.369C173.843%20122.449%20171.756%20116.533%20169.55%20110.619C165.843%20110.506%20162.13%20110.419%20158.41%20110.359C154.69%20110.299%20150.976%20110.269%20147.27%20110.269C144.27%20110.269%20141.27%20110.269%20138.22%20110.359C135.17%20110.449%20132.22%20110.509%20129.22%20110.619C126.9%20116.539%20124.753%20122.456%20122.78%20128.369C120.806%20134.283%20119.01%20140.083%20117.39%20145.769C116.038%20145.541%20114.67%20145.424%20113.3%20145.419H104.95C103.436%20145.425%20101.926%20145.542%20100.43%20145.769C101.823%20142.763%20103.68%20138.586%20106%20133.239C108.32%20127.893%20110.873%20121.859%20113.66%20115.139L122.66%2093.4794C125.846%2085.7727%20129.036%2077.9727%20132.23%2070.0794C135.423%2062.186%20138.556%2054.4127%20141.63%2046.7594C144.696%2039.0994%20147.51%2031.966%20150.07%2025.3594C151.23%2025.5894%20152.33%2025.7894%20153.38%2025.9694C154.474%2026.1496%20155.581%2026.2366%20156.69%2026.2294C157.781%2026.2323%20158.871%2026.1487%20159.95%2025.9794C161%2025.8094%20162.09%2025.5994%20163.26%2025.3694C166.966%2035.2294%20170.94%2045.786%20175.18%2057.0394C179.42%2068.2927%20183.676%2079.3394%20187.95%2090.1794C192.236%20101.026%20196.413%20111.319%20200.48%20121.059C204.546%20130.799%20208.26%20139.036%20211.62%20145.769ZM150.03%2058.9794C147.01%2065.9394%20144.166%2072.8127%20141.5%2079.5994C138.833%2086.386%20136.223%2093.316%20133.67%20100.389H165.51C162.956%2093.2894%20160.436%2086.346%20157.95%2079.5594C155.463%2072.7727%20152.823%2065.9127%20150.03%2058.9794Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M275.88%2067.0305C278.2%2062.8038%20280.464%2058.3671%20282.67%2053.7205C284.877%2049.0738%20287.024%2044.4071%20289.11%2039.7205C291.197%2035.0538%20293.227%2030.5571%20295.2%2026.2305C296.47%2026.4605%20297.78%2026.6705%20299.12%2026.8405C300.477%2027.0136%20301.843%2027.1004%20303.21%2027.1005C304.578%2027.1001%20305.944%2027.0133%20307.3%2026.8405C308.63%2026.6705%20310.05%2026.4605%20311.56%2026.2305C309.56%2029.4838%20307.097%2033.7471%20304.17%2039.0205C301.244%2044.2938%20298.084%2050.0071%20294.69%2056.1605C291.317%2062.3071%20287.924%2068.6005%20284.51%2075.0405C281.097%2081.4805%20277.994%2087.4238%20275.2%2092.8705C275.2%2095.6505%20275.14%2098.4705%20275.03%20101.31C274.92%20104.15%20274.86%20107.02%20274.86%20109.92C274.86%20115.84%20274.947%20121.697%20275.12%20127.49C275.294%20133.284%20275.787%20139.374%20276.6%20145.76C274.16%20145.53%20271.7%20145.41%20269.2%20145.41H254.41C251.91%20145.41%20249.41%20145.52%20247.02%20145.76C247.254%20140.427%20247.66%20134.974%20248.24%20129.4C248.819%20123.853%20249.109%20118.278%20249.11%20112.7C249.11%20110.03%20249.11%20107.34%20249.02%20104.61C248.93%20101.88%20248.87%2099.1905%20248.76%2096.5205C245.86%2090.7205%20242.527%2084.2538%20238.76%2077.1205C234.994%2069.9871%20231.327%2063.0571%20227.76%2056.3305C224.22%2049.5971%20220.974%2043.5071%20218.02%2038.0605C215.067%2032.6138%20212.89%2028.6705%20211.49%2026.2305C214.16%2026.4605%20216.77%2026.6705%20219.32%2026.8405C221.87%2027.0105%20224.48%2027.1005%20227.15%2027.1005C229.82%2027.1005%20232.4%2027.0105%20234.89%2026.8405C237.38%2026.6705%20239.96%2026.4605%20242.63%2026.2305C244.63%2030.5238%20246.864%2035.2805%20249.33%2040.5005C251.797%2045.7205%20254.264%2050.8238%20256.73%2055.8105C259.17%2060.8038%20261.434%2065.3271%20263.52%2069.3805C265.607%2073.4338%20267.29%2076.4338%20268.57%2078.3805H268.95C271.24%2075.0705%20273.56%2071.2705%20275.88%2067.0305Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M339.69%2048.7605C339.456%2041.2805%20339.123%2033.7705%20338.69%2026.2305C343.91%2026.3505%20349.073%2026.5238%20354.18%2026.7505C359.286%2026.9771%20364.45%2027.0938%20369.67%2027.1005C378.25%2027.1005%20385.876%2027.0138%20392.55%2026.8405C399.223%2026.6671%20403.72%2026.4638%20406.04%2026.2305C405.52%2028.6313%20405.286%2031.0848%20405.34%2033.5405C405.34%2035.4005%20405.4%2036.8505%20405.51%2037.8905C405.62%2038.9305%20405.8%2040.1005%20406.03%2041.3705C402.643%2041.1105%20398.95%2040.8771%20394.95%2040.6705C390.95%2040.4638%20387.06%2040.2338%20383.28%2039.9805C379.513%2039.7471%20376.12%2039.5738%20373.1%2039.4605C370.1%2039.3505%20367.94%2039.2905%20366.66%2039.2905C366.2%2045.6705%20365.94%2052.0038%20365.88%2058.2905C365.82%2064.5771%20365.79%2070.9105%20365.79%2077.2905C373.33%2077.1771%20380.146%2077.0038%20386.24%2076.7705C392.333%2076.5371%20398.666%2076.2471%20405.24%2075.9005C404.89%2077.9005%20404.66%2079.3805%20404.54%2080.4205C404.42%2081.5197%20404.363%2082.6248%20404.37%2083.7305C404.374%2084.6928%20404.461%2085.653%20404.63%2086.6005C404.8%2087.6005%20405.01%2089.0105%20405.24%2090.8605C392.02%2089.8205%20378.853%2089.2971%20365.74%2089.2905C365.74%2093.0038%20365.71%2096.7171%20365.65%20100.43C365.59%20104.14%20365.56%20107.86%20365.56%20111.57C365.56%20119.11%20365.733%20126.36%20366.08%20133.32C372.693%20133.32%20379.306%20133.147%20385.92%20132.8C392.533%20132.454%20399.21%20131.847%20405.95%20130.98C405.72%20132.26%20405.54%20133.42%20405.43%20134.46C405.296%20135.906%20405.239%20137.358%20405.26%20138.81C405.26%20140.67%20405.32%20142.12%20405.43%20143.16C405.512%20144.046%20405.686%20144.921%20405.95%20145.77C402.82%20145.65%20398.95%20145.57%20394.38%20145.51C389.81%20145.45%20383.5%20145.42%20375.5%20145.42H347.95C345.336%20145.42%20343.363%20145.45%20342.03%20145.51C340.7%20145.57%20339.56%20145.65%20338.64%20145.77C339.1%20138.584%20339.433%20131.25%20339.64%20123.77C339.846%20116.29%20339.963%20107.734%20339.99%2098.1005V74.4405C340.03%2064.8005%20339.93%2056.2405%20339.69%2048.7605Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M474.19%2034.7608C468.857%2034.7608%20464.507%2036.3274%20461.14%2039.4608C459.557%2040.8236%20458.287%2042.5116%20457.415%2044.4099C456.544%2046.3082%20456.092%2048.372%20456.09%2050.4608C456.016%2052.3864%20456.324%2054.3077%20456.996%2056.1135C457.669%2057.9193%20458.694%2059.5736%20460.01%2060.9808C462.901%2063.9201%20466.214%2066.4109%20469.84%2068.3708C473.78%2070.5774%20478.014%2072.6941%20482.54%2074.7208C487.039%2076.7343%20491.298%2079.2431%20495.24%2082.2008C499.169%2085.1408%20502.504%2088.7986%20505.07%2092.9808C507.657%2097.2074%20508.95%20102.624%20508.95%20109.231C509.019%20114.715%20507.889%20120.148%20505.64%20125.151C503.471%20129.919%20500.258%20134.139%20496.24%20137.501C491.959%20141.042%20487.022%20143.702%20481.71%20145.331C475.595%20147.202%20469.225%20148.113%20462.83%20148.031C457.17%20148.103%20451.525%20147.43%20446.04%20146.031C441.114%20144.697%20437.374%20143.031%20434.82%20141.031C435.98%20136.971%20436.98%20133.257%20437.82%20129.891C438.66%20126.524%20439.37%20122.887%20439.95%20118.981H443.26C443.715%20121.518%20444.598%20123.959%20445.87%20126.201C447.144%20128.461%20448.79%20130.49%20450.74%20132.201C452.833%20134.009%20455.253%20135.398%20457.87%20136.291C460.896%20137.318%20464.075%20137.819%20467.27%20137.771C474.23%20137.771%20479.364%20136.031%20482.67%20132.551C484.29%20130.896%20485.565%20128.936%20486.423%20126.786C487.281%20124.635%20487.705%20122.336%20487.67%20120.021C487.832%20116.065%20486.46%20112.199%20483.84%20109.231C481.065%20106.272%20477.834%20103.778%20474.27%20101.841C470.437%2099.6941%20466.26%2097.6074%20461.74%2095.5808C457.295%2093.5994%20453.091%2091.1166%20449.21%2088.1808C445.362%2085.2631%20442.112%2081.63%20439.64%2077.4808C437.087%2073.2541%20435.81%2067.8308%20435.81%2061.2108C435.702%2055.7063%20436.802%2050.245%20439.03%2045.2108C441.037%2040.7553%20443.973%2036.7799%20447.64%2033.5508C451.244%2030.3962%20455.424%2027.9683%20459.95%2026.4008C464.753%2024.7651%20469.797%2023.9471%20474.87%2023.9808C480.434%2023.8845%20485.979%2024.6468%20491.31%2026.2408C495.684%2027.5826%20499.78%2029.7033%20503.4%2032.5008C502.36%2035.1674%20501.46%2037.7474%20500.7%2040.2408C499.94%2042.7408%20498.99%2045.8908%20497.83%2049.7208H495.22C491.534%2039.7608%20484.524%2034.7741%20474.19%2034.7608Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_23368%22%3E%20%3Crect%20width%3D%22509.9%22%20height%3D%22283.74%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--dcu { aspect-ratio:1.4707; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22653%22%20height%3D%22444%22%20viewBox%3D%220%200%20653%20444%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24881)%22%3E%20%3Cpath%20d%3D%22M117.587%20297.91V426.042H136.042C167.812%20426.042%20191.408%20410.619%20191.408%20357.362C191.408%20314.388%20171.898%20297.91%20139.206%20297.91H117.587ZM82.7852%20284.727H160.693C209.864%20286.836%20229.373%20320.583%20229.373%20357.494C229.373%20408.774%20193.517%20439.489%20146.456%20439.489H82.917V284.727H82.7852ZM390.594%20414.31C378.203%20422.351%20360.67%20430.261%20342.215%20430.261C310.445%20427.229%20292.913%20400.469%20292.913%20363.558C292.913%20329.679%20307.281%20293.823%20345.247%20293.823C359.879%20293.823%20382.289%20301.732%20390.594%20309.642V292.109C379.257%20284.991%20360.67%20280.641%20345.247%20280.641C295.945%20280.641%20254.947%20307.269%20254.947%20366.854C254.947%20414.046%20291.858%20443.839%20340.106%20443.839C355.529%20443.839%20371.48%20440.411%20390.462%20431.315L390.594%20414.31ZM561.175%20281.959V365.667C560.12%20391.241%20560.12%20414.837%20536.523%20431.184C524.264%20440.411%20507.127%20443.443%20491.703%20443.443C465.075%20443.443%20432.514%20435.27%20424.341%20405.61C422.232%20396.382%20421.309%20386.1%20421.309%20376.872V307.665L455.056%20282.223V349.321C455.056%20361.581%20455.056%20380.036%20457.165%20392.296C459.275%20403.632%20460.197%20410.751%20468.37%20417.869C475.489%20424.988%20486.562%20428.152%20496.844%20428.152C517.277%20428.152%20530.459%20419.979%20538.633%20400.469C542.719%20390.186%20542.719%20364.613%20542.719%20353.407V293.691L561.175%20281.959Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M201.691%20115.597C124.969%20151.058%2053.7842%20196.273%200%20241.489L0.263644%20241.884L1.18642%20242.939C53.1251%20200.623%20122.069%20160.022%20194.309%20127.329C376.226%2043.8846%20546.674%2024.3747%20574.357%2083.6955C588.462%20115.729%20560.384%20165.954%20496.186%20220.792L497.767%20222.77C558.143%20173.863%20591.231%20129.043%20591.231%2094.5051C591.231%2087.5184%20589.912%2080.9272%20587.144%2074.8633C558.143%2013.1697%20385.322%2031.3614%20201.691%20115.597Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M221.992%20125.747C185.213%20142.093%20152.389%20161.999%20121.806%20180.322L122.86%20182.3C149.621%20167.667%20172.294%20157.253%20193.122%20147.63C338.392%2081.0589%20474.171%2065.6355%20496.054%20113.092C512.137%20147.103%20464.416%20208.137%20373.589%20267.722L374.908%20269.831C473.38%20212.619%20533.624%20151.189%20533.624%20109.269C533.624%20103.469%20532.437%2098.0642%20530.196%2093.1867C525.583%2083.0363%20516.223%2075.3905%20502.382%2070.2494C448.466%2050.4758%20335.888%2072.754%20221.992%20125.747Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M322.046%2040.0617L322.837%2042.6981C374.907%2027.1429%20418.014%2017.3879%20454.661%2011.8513C548.783%20-2.38568%20607.445%208.81936%20624.055%2044.28C631.832%2059.7034%20632.096%2077.3678%20624.977%2098.5915C606.918%20151.717%20543.906%20219.079%20452.156%20283.277C443.06%20290.395%20351.443%20351.166%20310.973%20371.204L312.027%20373.972C348.674%20356.571%20387.431%20335.743%20426.978%20312.015L460.461%20290.659C581.344%20211.565%20652.001%20131.152%20652.001%2076.1814C652.001%2066.8219%20650.024%2058.2534%20645.806%2050.6076C612.059%20-13.1952%20494.208%20-16.6227%20322.046%2040.0617Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24881%22%3E%20%3Crect%20width%3D%22653%22%20height%3D%22444%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22653%22%20height%3D%22444%22%20viewBox%3D%220%200%20653%20444%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24881)%22%3E%20%3Cpath%20d%3D%22M117.587%20297.91V426.042H136.042C167.812%20426.042%20191.408%20410.619%20191.408%20357.362C191.408%20314.388%20171.898%20297.91%20139.206%20297.91H117.587ZM82.7852%20284.727H160.693C209.864%20286.836%20229.373%20320.583%20229.373%20357.494C229.373%20408.774%20193.517%20439.489%20146.456%20439.489H82.917V284.727H82.7852ZM390.594%20414.31C378.203%20422.351%20360.67%20430.261%20342.215%20430.261C310.445%20427.229%20292.913%20400.469%20292.913%20363.558C292.913%20329.679%20307.281%20293.823%20345.247%20293.823C359.879%20293.823%20382.289%20301.732%20390.594%20309.642V292.109C379.257%20284.991%20360.67%20280.641%20345.247%20280.641C295.945%20280.641%20254.947%20307.269%20254.947%20366.854C254.947%20414.046%20291.858%20443.839%20340.106%20443.839C355.529%20443.839%20371.48%20440.411%20390.462%20431.315L390.594%20414.31ZM561.175%20281.959V365.667C560.12%20391.241%20560.12%20414.837%20536.523%20431.184C524.264%20440.411%20507.127%20443.443%20491.703%20443.443C465.075%20443.443%20432.514%20435.27%20424.341%20405.61C422.232%20396.382%20421.309%20386.1%20421.309%20376.872V307.665L455.056%20282.223V349.321C455.056%20361.581%20455.056%20380.036%20457.165%20392.296C459.275%20403.632%20460.197%20410.751%20468.37%20417.869C475.489%20424.988%20486.562%20428.152%20496.844%20428.152C517.277%20428.152%20530.459%20419.979%20538.633%20400.469C542.719%20390.186%20542.719%20364.613%20542.719%20353.407V293.691L561.175%20281.959Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M201.691%20115.597C124.969%20151.058%2053.7842%20196.273%200%20241.489L0.263644%20241.884L1.18642%20242.939C53.1251%20200.623%20122.069%20160.022%20194.309%20127.329C376.226%2043.8846%20546.674%2024.3747%20574.357%2083.6955C588.462%20115.729%20560.384%20165.954%20496.186%20220.792L497.767%20222.77C558.143%20173.863%20591.231%20129.043%20591.231%2094.5051C591.231%2087.5184%20589.912%2080.9272%20587.144%2074.8633C558.143%2013.1697%20385.322%2031.3614%20201.691%20115.597Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M221.992%20125.747C185.213%20142.093%20152.389%20161.999%20121.806%20180.322L122.86%20182.3C149.621%20167.667%20172.294%20157.253%20193.122%20147.63C338.392%2081.0589%20474.171%2065.6355%20496.054%20113.092C512.137%20147.103%20464.416%20208.137%20373.589%20267.722L374.908%20269.831C473.38%20212.619%20533.624%20151.189%20533.624%20109.269C533.624%20103.469%20532.437%2098.0642%20530.196%2093.1867C525.583%2083.0363%20516.223%2075.3905%20502.382%2070.2494C448.466%2050.4758%20335.888%2072.754%20221.992%20125.747Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M322.046%2040.0617L322.837%2042.6981C374.907%2027.1429%20418.014%2017.3879%20454.661%2011.8513C548.783%20-2.38568%20607.445%208.81936%20624.055%2044.28C631.832%2059.7034%20632.096%2077.3678%20624.977%2098.5915C606.918%20151.717%20543.906%20219.079%20452.156%20283.277C443.06%20290.395%20351.443%20351.166%20310.973%20371.204L312.027%20373.972C348.674%20356.571%20387.431%20335.743%20426.978%20312.015L460.461%20290.659C581.344%20211.565%20652.001%20131.152%20652.001%2076.1814C652.001%2066.8219%20650.024%2058.2534%20645.806%2050.6076C612.059%20-13.1952%20494.208%20-16.6227%20322.046%2040.0617Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24881%22%3E%20%3Crect%20width%3D%22653%22%20height%3D%22444%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--cannes { aspect-ratio:2.0000; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221414%22%20height%3D%22707%22%20viewBox%3D%220%200%201414%20707%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24400)%22%3E%20%3Cpath%20d%3D%22M16.8007%20625.803V649.845H62.666V664.679H16.8007V705.852H0V610.848H63.9649V625.803H16.8007ZM82.4813%20705.858V610.854H147.848V625.809H98.974V649.851H146.41V664.685H98.974V690.764H147.848V705.858H82.4813ZM202.527%20707C179.613%20707%20164.371%20701.302%20164.371%20679.362H181.159C181.159%20688.897%20185.714%20691.906%20202.823%20691.906C221.195%20691.906%20224.191%20687.35%20224.191%20676.963C224.191%20667.688%20220.627%20666.413%20213.492%20665.821C192.583%20664.274%20164.371%20670.093%20164.371%20638.751C164.371%20616.648%20177.196%20609.875%20202.249%20609.875C225.188%20609.875%20239.995%20615.682%20239.995%20637.477H223.49C223.49%20626.244%20216.362%20624.957%20202.002%20624.957C183.026%20624.957%20181.165%20628.534%20181.165%20638.443C181.165%20647.332%20185.153%20648.437%20191.877%20649.005C212.797%20650.727%20241.125%20644.613%20240.974%20676.22C240.835%20697.604%20228.281%20707%20202.527%20707ZM294.669%20625.803V705.852H277.886V625.803H248.954V610.848H323.588V625.803H294.669ZM336.988%20705.858V610.854H353.788V705.858H336.988ZM417.046%20705.858H400.493L365.049%20610.854H382.974L409.072%20684.589L435.116%20610.854H452.793L417.046%20705.858ZM518.691%20705.858L509.864%20681.64H472.837L464.15%20705.858H446.643L483.398%20610.854H500.615L537.062%20705.858H518.691ZM491.493%20629.537L478.111%20667.09H504.705L491.493%20629.537ZM549.036%20705.858V610.854H565.825V690.764H612.977V705.858H549.036ZM726.758%20693.036C719.949%20703.139%20709.673%20705.852%20692.02%20705.852H656.703V610.848H691.894C709.546%20610.848%20719.798%20613.694%20726.643%20623.797C731.639%20631.223%20732.902%20639.779%20732.902%20658.413C732.896%20677.096%20731.778%20685.64%20726.758%20693.036ZM691.042%20625.803H673.238V690.758H691.187C710.253%20690.758%20716.083%20689.755%20716.083%20658.407C716.077%20627.078%20710.108%20625.803%20691.042%20625.803ZM752.862%20705.858V610.854H818.216V625.809H769.355V649.851H816.779V664.685H769.355V690.764H818.216V705.858H752.862ZM927.171%20637.477C927.171%20627.918%20923.183%20625.096%20906.818%20625.096C887.739%20625.096%20884.743%20631.223%20884.743%20658.413C884.743%20685.64%20887.612%20691.61%20906.679%20691.61C923.032%20691.61%20927.02%20688.897%20927.02%20679.362H943.561C943.561%20700.855%20929.599%20707%20907.947%20707C868.196%20707%20867.924%20685.495%20867.924%20658.25C867.924%20631.084%20868.347%20609.875%20908.074%20609.875C929.702%20609.875%20943.706%20615.978%20943.706%20637.477H927.171ZM1022.89%20705.858L1014.05%20681.64H977.023L968.318%20705.858H950.81L987.553%20610.854H1004.77L1041.25%20705.858H1022.89ZM995.654%20629.537L982.285%20667.09H1008.93L995.654%20629.537ZM1108.31%20705.858L1068.89%20637.609V705.858H1053.23V610.854H1070.31L1109.92%20678.522V610.854H1125.58V705.858H1108.31ZM1209.45%20705.858L1170.02%20637.609V705.858H1154.35V610.854H1171.43L1211.04%20678.522V610.854H1226.68V705.858H1209.45ZM1255.46%20705.858V610.854H1320.83V625.809H1271.99V649.851H1319.42V664.685H1271.99V690.764H1320.83V705.858H1255.46ZM1375.55%20707C1352.61%20707%201337.37%20701.302%201337.37%20679.362H1354.15C1354.15%20688.897%201358.73%20691.906%201375.82%20691.906C1394.18%20691.906%201397.17%20687.35%201397.17%20676.963C1397.17%20667.688%201393.61%20666.413%201386.48%20665.821C1365.57%20664.274%201337.37%20670.093%201337.37%20638.751C1337.37%20616.648%201350.18%20609.875%201375.24%20609.875C1398.21%20609.875%201412.98%20615.682%201412.98%20637.477H1396.47C1396.47%20626.244%201389.36%20624.957%201374.96%20624.957C1356.01%20624.957%201354.16%20628.534%201354.16%20638.443C1354.16%20647.332%201358.15%20648.437%201364.84%20649.005C1385.77%20650.727%201414.13%20644.613%201414%20676.22C1413.85%20697.604%201401.33%20707%201375.55%20707Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M707.028%200C439.345%200%20224.307%20119.101%20224.307%20263.387C224.307%20407.661%20437.207%20526.762%20707.028%20526.762C975.266%20526.762%201189.68%20407.661%201189.68%20263.387C1189.68%20119.101%20974.202%200%20707.028%200ZM706.52%20513.058C460.278%20513.058%20249.541%20399.008%20249.541%20263.242C249.541%20127.494%20465.105%2010.979%20706.52%2010.979C952.2%2010.979%201163.22%20127.494%201163.22%20263.242C1163.22%20399.008%20951.131%20513.058%20706.52%20513.058Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1070.97%20230.589C1056.12%20233.617%201042.32%20238.36%201028.18%20242.577C1019.08%20245.303%201009.83%20247.804%201000.04%20249.472L996.041%20249.417L997.793%20246.777C999.158%20245.363%201000.54%20243.955%201001.95%20242.577C1016.07%20228.71%201032.09%20216.752%201046.87%20203.314C1051.5%20197.9%201061.67%20193.767%201058.37%20183.924C1055.37%20182.353%201047.22%20185.634%201043.33%20187.368C1014.59%20202.208%20988.145%20218.879%20963.853%20242.064C963.14%20242.741%20962.44%20243.417%20961.721%20244.1C947.941%20254.523%20945.397%20278.644%20924.754%20277.249C911.663%20276.04%20909.772%20276.167%20904.74%20274.391C925.799%20258.137%20966.306%20204.384%20969.919%20191.538C969.919%20191.538%20973.556%20179.906%20968.535%20180.299C949.234%20187.332%20931.019%20203.677%20915.976%20216.922C917.372%20210.396%20927.95%20197.93%20922.803%20190.426C889.383%20197.465%20842.249%20242.197%20842.019%20242.348C833.066%20248.287%20829.755%20267.393%20815.818%20264.554C807.101%20263.351%20796.595%20263.242%20791.46%20260.294C800.431%20254.952%20809.01%20248.976%20817.322%20242.577C836.624%20227.755%20854.555%20210.716%20872.818%20194.311C873.863%20191.918%20879.886%20189.531%20876.46%20185.906C870.637%20181.247%20863.81%20188.124%20857.479%20189.235C828.535%20201.924%20808.979%20219%20789.877%20242.577C786.307%20246.982%20780.984%20252.668%20777.801%20257.744C764.159%20256.137%20756.88%20256.862%20750.204%20252.541C754.282%20249.17%20758.414%20245.871%20762.565%20242.583C784.833%20224.94%20807.542%20207.544%20824.536%20181.374C822.826%20172.492%20813.891%20179.61%20809.596%20181.308C779.208%20196.311%20754.234%20214.819%20735.101%20244.13C733.917%20245.937%20732.775%20247.792%20731.676%20249.72C718.294%20249.363%20706.731%20246.747%20695.174%20244.1C694.927%20244.04%20694.685%20243.985%20694.437%20243.937L694.54%20242.698C723.671%20227.804%20749.63%20202.226%20769.711%20172.003C769.711%20172.003%20786.379%20142.751%20749.811%20166.933C722.523%20184.48%20697.663%20207.646%20680.24%20240.596C680.24%20240.596%20661.887%20241.29%20661.887%20239.284C679.564%20217.58%20700.068%20189.574%20710.459%20160.993C711.443%20156.54%20714.162%20147.199%20707.601%20146.208C683.031%20156.522%20666.792%20185.423%20653.622%20212.517C649.599%20220.468%20647.406%20230.511%20643.836%20238.088C627.385%20237.278%20616.028%20238.716%20600.248%20234.009C620.027%20216.638%20641.643%20202.329%20659.658%20181.471C662.708%20175.797%20682.959%20161.918%20682.451%20144.014C676.144%20140.141%20669.801%20144.709%20665.953%20147.549L610.446%20191.791L607.534%20191.942C616.384%20176.111%20635.698%20152.939%20643.63%20136.576C646.294%20131.09%20649.599%20126.105%20649.351%20119.428L644.452%20117.839C604.32%20135.09%20569.739%20174.438%20556.165%20225.169C552.842%20229.864%20551.229%20238.861%20544.396%20236.179C543.539%20222.402%20539.249%20209.568%20534.531%20197.103C517.326%20161.12%20492.635%20134.872%20461.069%20115.905C455.922%20112.969%20452.95%20118.528%20454.647%20122.824C459.076%20148.135%20474.717%20164.039%20485.488%20183.259C498.296%20203.072%20515.676%20220.988%20530.314%20238.879C525.318%20240.589%20411.175%20267.768%20390.882%20284.209C380.225%20290.077%20363.177%20303.708%20363.443%20333.563C364.337%20342.361%20370.487%20351.014%20378.292%20353.624C385.674%20354.688%20390.882%20355.334%20395.739%20352.011C416.775%20325.201%20441.163%20300.669%20468.343%20284.354C486.992%20274.59%20500.688%20265.019%20522.104%20262.324C530.93%20270.56%20536.651%20281.4%20548.704%20291.382C572.452%20313.001%20593.294%20327.684%20626.044%20333.044L629.306%20331.956L628.11%20328.947C610.802%20303.75%20584.317%20287.853%20557.234%20274.687C552.594%20271.182%20541.37%20265.254%20540.748%20258.137C557.44%20252.535%20579.653%20250.922%20599.716%20255.738C623.67%20297.364%20650.088%20343.044%20688.499%20369.25C691.362%20369.914%20693.362%20365.932%20691.924%20363.328C665.294%20298.475%20648.276%20292.626%20620.981%20262.831C619.513%20260.626%20617.471%20255.454%20621.362%20253.732L646.862%20254.13C655.066%20255.266%20666.297%20252.928%20668.297%20256.535C669.529%20299.424%20697.138%20332.204%20713.805%20364.827C713.805%20364.827%20719.158%20367.908%20718.868%20362.307L719.043%20361.944C712.223%20286.421%20683.937%20269.031%20679.66%20256.197C684.016%20255.895%20688.795%20256.167%20692.359%20258.131C710.314%20294.669%20734.684%20322.252%20766.787%20342.941C767.488%20343.394%20771.487%20343.89%20768.89%20338.065C759.556%20306.687%20730.727%20290.608%20712.023%20266.958L708.749%20260.85L712.531%20260.348C720.541%20261.943%20731.373%20263.75%20737.258%20267.581C747.927%20288.046%20762.323%20303.835%20777.668%20318.47C790.366%20329.962%20801.223%20343.382%20820.416%20347.135L822.446%20346.839L823.056%20345.189L822.464%20342.754C810.587%20311.684%20778.568%20298.608%20755.973%20276.705C754.439%20275.321%20751.606%20269.671%20755.841%20268.789L792.239%20274.076C846.991%20347.195%20868.172%20344.277%20868.172%20344.277C868.172%20344.277%20884.598%20348.089%20877.083%20336.053C859.231%20317.503%20843.668%20308.983%20822.331%20292.064C818.495%20288.403%20808.901%20281.937%20809.892%20275.375C817.709%20276.584%20819.02%20276.481%20834.957%20278.282C839.977%20279.001%20846.756%20279.877%20850.604%20281.599C879.191%20294.355%20881.692%20334.361%20951.088%20342.772C953.559%20342.99%20954.091%20339.666%20952.375%20337.491C932.554%20322.053%20880.858%20287.382%20877.687%20283.406C884.302%20284.004%20912.098%20287.974%20916.484%20290.022C951.39%20308.862%20972.746%20322.917%201022.68%20316.313C1026.97%20310.034%201020.01%20307.497%201014.11%20305.17L985.988%20294.228C982.346%20293.086%20966.729%20290.022%20961.123%20288.215C991.009%20278.789%201030.43%20267.901%201056.74%20251.931C1060.91%20248.662%201065.85%20246.161%201069.93%20242.559C1072.69%20240.124%201075.03%20237.133%201076.47%20233.097C1077.88%20228.668%201070.97%20230.589%201070.97%20230.589ZM568.507%20235.81C565.36%20233.876%20567.861%20230.04%20568.827%20228.456C569.764%20227.296%20580.487%20208.003%20589.966%20212.964C591.645%20217.737%20575.219%20236.879%20568.507%20235.81ZM897.768%20242.638C892.506%20251.278%20896.282%20263.623%20889.395%20271.684L842.762%20265.677C869.833%20256.034%20891.829%20237.544%20904.83%20230.015L897.768%20242.638ZM948.074%20278.578C947.687%20273.551%20953.48%20269.085%20957.093%20265.665C972.776%20252.825%20975.132%20265.309%20975.132%20265.309C967.998%20270.928%20957.891%20277.551%20948.074%20278.578Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24400%22%3E%20%3Crect%20width%3D%221414%22%20height%3D%22707%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221414%22%20height%3D%22707%22%20viewBox%3D%220%200%201414%20707%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24400)%22%3E%20%3Cpath%20d%3D%22M16.8007%20625.803V649.845H62.666V664.679H16.8007V705.852H0V610.848H63.9649V625.803H16.8007ZM82.4813%20705.858V610.854H147.848V625.809H98.974V649.851H146.41V664.685H98.974V690.764H147.848V705.858H82.4813ZM202.527%20707C179.613%20707%20164.371%20701.302%20164.371%20679.362H181.159C181.159%20688.897%20185.714%20691.906%20202.823%20691.906C221.195%20691.906%20224.191%20687.35%20224.191%20676.963C224.191%20667.688%20220.627%20666.413%20213.492%20665.821C192.583%20664.274%20164.371%20670.093%20164.371%20638.751C164.371%20616.648%20177.196%20609.875%20202.249%20609.875C225.188%20609.875%20239.995%20615.682%20239.995%20637.477H223.49C223.49%20626.244%20216.362%20624.957%20202.002%20624.957C183.026%20624.957%20181.165%20628.534%20181.165%20638.443C181.165%20647.332%20185.153%20648.437%20191.877%20649.005C212.797%20650.727%20241.125%20644.613%20240.974%20676.22C240.835%20697.604%20228.281%20707%20202.527%20707ZM294.669%20625.803V705.852H277.886V625.803H248.954V610.848H323.588V625.803H294.669ZM336.988%20705.858V610.854H353.788V705.858H336.988ZM417.046%20705.858H400.493L365.049%20610.854H382.974L409.072%20684.589L435.116%20610.854H452.793L417.046%20705.858ZM518.691%20705.858L509.864%20681.64H472.837L464.15%20705.858H446.643L483.398%20610.854H500.615L537.062%20705.858H518.691ZM491.493%20629.537L478.111%20667.09H504.705L491.493%20629.537ZM549.036%20705.858V610.854H565.825V690.764H612.977V705.858H549.036ZM726.758%20693.036C719.949%20703.139%20709.673%20705.852%20692.02%20705.852H656.703V610.848H691.894C709.546%20610.848%20719.798%20613.694%20726.643%20623.797C731.639%20631.223%20732.902%20639.779%20732.902%20658.413C732.896%20677.096%20731.778%20685.64%20726.758%20693.036ZM691.042%20625.803H673.238V690.758H691.187C710.253%20690.758%20716.083%20689.755%20716.083%20658.407C716.077%20627.078%20710.108%20625.803%20691.042%20625.803ZM752.862%20705.858V610.854H818.216V625.809H769.355V649.851H816.779V664.685H769.355V690.764H818.216V705.858H752.862ZM927.171%20637.477C927.171%20627.918%20923.183%20625.096%20906.818%20625.096C887.739%20625.096%20884.743%20631.223%20884.743%20658.413C884.743%20685.64%20887.612%20691.61%20906.679%20691.61C923.032%20691.61%20927.02%20688.897%20927.02%20679.362H943.561C943.561%20700.855%20929.599%20707%20907.947%20707C868.196%20707%20867.924%20685.495%20867.924%20658.25C867.924%20631.084%20868.347%20609.875%20908.074%20609.875C929.702%20609.875%20943.706%20615.978%20943.706%20637.477H927.171ZM1022.89%20705.858L1014.05%20681.64H977.023L968.318%20705.858H950.81L987.553%20610.854H1004.77L1041.25%20705.858H1022.89ZM995.654%20629.537L982.285%20667.09H1008.93L995.654%20629.537ZM1108.31%20705.858L1068.89%20637.609V705.858H1053.23V610.854H1070.31L1109.92%20678.522V610.854H1125.58V705.858H1108.31ZM1209.45%20705.858L1170.02%20637.609V705.858H1154.35V610.854H1171.43L1211.04%20678.522V610.854H1226.68V705.858H1209.45ZM1255.46%20705.858V610.854H1320.83V625.809H1271.99V649.851H1319.42V664.685H1271.99V690.764H1320.83V705.858H1255.46ZM1375.55%20707C1352.61%20707%201337.37%20701.302%201337.37%20679.362H1354.15C1354.15%20688.897%201358.73%20691.906%201375.82%20691.906C1394.18%20691.906%201397.17%20687.35%201397.17%20676.963C1397.17%20667.688%201393.61%20666.413%201386.48%20665.821C1365.57%20664.274%201337.37%20670.093%201337.37%20638.751C1337.37%20616.648%201350.18%20609.875%201375.24%20609.875C1398.21%20609.875%201412.98%20615.682%201412.98%20637.477H1396.47C1396.47%20626.244%201389.36%20624.957%201374.96%20624.957C1356.01%20624.957%201354.16%20628.534%201354.16%20638.443C1354.16%20647.332%201358.15%20648.437%201364.84%20649.005C1385.77%20650.727%201414.13%20644.613%201414%20676.22C1413.85%20697.604%201401.33%20707%201375.55%20707Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M707.028%200C439.345%200%20224.307%20119.101%20224.307%20263.387C224.307%20407.661%20437.207%20526.762%20707.028%20526.762C975.266%20526.762%201189.68%20407.661%201189.68%20263.387C1189.68%20119.101%20974.202%200%20707.028%200ZM706.52%20513.058C460.278%20513.058%20249.541%20399.008%20249.541%20263.242C249.541%20127.494%20465.105%2010.979%20706.52%2010.979C952.2%2010.979%201163.22%20127.494%201163.22%20263.242C1163.22%20399.008%20951.131%20513.058%20706.52%20513.058Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1070.97%20230.589C1056.12%20233.617%201042.32%20238.36%201028.18%20242.577C1019.08%20245.303%201009.83%20247.804%201000.04%20249.472L996.041%20249.417L997.793%20246.777C999.158%20245.363%201000.54%20243.955%201001.95%20242.577C1016.07%20228.71%201032.09%20216.752%201046.87%20203.314C1051.5%20197.9%201061.67%20193.767%201058.37%20183.924C1055.37%20182.353%201047.22%20185.634%201043.33%20187.368C1014.59%20202.208%20988.145%20218.879%20963.853%20242.064C963.14%20242.741%20962.44%20243.417%20961.721%20244.1C947.941%20254.523%20945.397%20278.644%20924.754%20277.249C911.663%20276.04%20909.772%20276.167%20904.74%20274.391C925.799%20258.137%20966.306%20204.384%20969.919%20191.538C969.919%20191.538%20973.556%20179.906%20968.535%20180.299C949.234%20187.332%20931.019%20203.677%20915.976%20216.922C917.372%20210.396%20927.95%20197.93%20922.803%20190.426C889.383%20197.465%20842.249%20242.197%20842.019%20242.348C833.066%20248.287%20829.755%20267.393%20815.818%20264.554C807.101%20263.351%20796.595%20263.242%20791.46%20260.294C800.431%20254.952%20809.01%20248.976%20817.322%20242.577C836.624%20227.755%20854.555%20210.716%20872.818%20194.311C873.863%20191.918%20879.886%20189.531%20876.46%20185.906C870.637%20181.247%20863.81%20188.124%20857.479%20189.235C828.535%20201.924%20808.979%20219%20789.877%20242.577C786.307%20246.982%20780.984%20252.668%20777.801%20257.744C764.159%20256.137%20756.88%20256.862%20750.204%20252.541C754.282%20249.17%20758.414%20245.871%20762.565%20242.583C784.833%20224.94%20807.542%20207.544%20824.536%20181.374C822.826%20172.492%20813.891%20179.61%20809.596%20181.308C779.208%20196.311%20754.234%20214.819%20735.101%20244.13C733.917%20245.937%20732.775%20247.792%20731.676%20249.72C718.294%20249.363%20706.731%20246.747%20695.174%20244.1C694.927%20244.04%20694.685%20243.985%20694.437%20243.937L694.54%20242.698C723.671%20227.804%20749.63%20202.226%20769.711%20172.003C769.711%20172.003%20786.379%20142.751%20749.811%20166.933C722.523%20184.48%20697.663%20207.646%20680.24%20240.596C680.24%20240.596%20661.887%20241.29%20661.887%20239.284C679.564%20217.58%20700.068%20189.574%20710.459%20160.993C711.443%20156.54%20714.162%20147.199%20707.601%20146.208C683.031%20156.522%20666.792%20185.423%20653.622%20212.517C649.599%20220.468%20647.406%20230.511%20643.836%20238.088C627.385%20237.278%20616.028%20238.716%20600.248%20234.009C620.027%20216.638%20641.643%20202.329%20659.658%20181.471C662.708%20175.797%20682.959%20161.918%20682.451%20144.014C676.144%20140.141%20669.801%20144.709%20665.953%20147.549L610.446%20191.791L607.534%20191.942C616.384%20176.111%20635.698%20152.939%20643.63%20136.576C646.294%20131.09%20649.599%20126.105%20649.351%20119.428L644.452%20117.839C604.32%20135.09%20569.739%20174.438%20556.165%20225.169C552.842%20229.864%20551.229%20238.861%20544.396%20236.179C543.539%20222.402%20539.249%20209.568%20534.531%20197.103C517.326%20161.12%20492.635%20134.872%20461.069%20115.905C455.922%20112.969%20452.95%20118.528%20454.647%20122.824C459.076%20148.135%20474.717%20164.039%20485.488%20183.259C498.296%20203.072%20515.676%20220.988%20530.314%20238.879C525.318%20240.589%20411.175%20267.768%20390.882%20284.209C380.225%20290.077%20363.177%20303.708%20363.443%20333.563C364.337%20342.361%20370.487%20351.014%20378.292%20353.624C385.674%20354.688%20390.882%20355.334%20395.739%20352.011C416.775%20325.201%20441.163%20300.669%20468.343%20284.354C486.992%20274.59%20500.688%20265.019%20522.104%20262.324C530.93%20270.56%20536.651%20281.4%20548.704%20291.382C572.452%20313.001%20593.294%20327.684%20626.044%20333.044L629.306%20331.956L628.11%20328.947C610.802%20303.75%20584.317%20287.853%20557.234%20274.687C552.594%20271.182%20541.37%20265.254%20540.748%20258.137C557.44%20252.535%20579.653%20250.922%20599.716%20255.738C623.67%20297.364%20650.088%20343.044%20688.499%20369.25C691.362%20369.914%20693.362%20365.932%20691.924%20363.328C665.294%20298.475%20648.276%20292.626%20620.981%20262.831C619.513%20260.626%20617.471%20255.454%20621.362%20253.732L646.862%20254.13C655.066%20255.266%20666.297%20252.928%20668.297%20256.535C669.529%20299.424%20697.138%20332.204%20713.805%20364.827C713.805%20364.827%20719.158%20367.908%20718.868%20362.307L719.043%20361.944C712.223%20286.421%20683.937%20269.031%20679.66%20256.197C684.016%20255.895%20688.795%20256.167%20692.359%20258.131C710.314%20294.669%20734.684%20322.252%20766.787%20342.941C767.488%20343.394%20771.487%20343.89%20768.89%20338.065C759.556%20306.687%20730.727%20290.608%20712.023%20266.958L708.749%20260.85L712.531%20260.348C720.541%20261.943%20731.373%20263.75%20737.258%20267.581C747.927%20288.046%20762.323%20303.835%20777.668%20318.47C790.366%20329.962%20801.223%20343.382%20820.416%20347.135L822.446%20346.839L823.056%20345.189L822.464%20342.754C810.587%20311.684%20778.568%20298.608%20755.973%20276.705C754.439%20275.321%20751.606%20269.671%20755.841%20268.789L792.239%20274.076C846.991%20347.195%20868.172%20344.277%20868.172%20344.277C868.172%20344.277%20884.598%20348.089%20877.083%20336.053C859.231%20317.503%20843.668%20308.983%20822.331%20292.064C818.495%20288.403%20808.901%20281.937%20809.892%20275.375C817.709%20276.584%20819.02%20276.481%20834.957%20278.282C839.977%20279.001%20846.756%20279.877%20850.604%20281.599C879.191%20294.355%20881.692%20334.361%20951.088%20342.772C953.559%20342.99%20954.091%20339.666%20952.375%20337.491C932.554%20322.053%20880.858%20287.382%20877.687%20283.406C884.302%20284.004%20912.098%20287.974%20916.484%20290.022C951.39%20308.862%20972.746%20322.917%201022.68%20316.313C1026.97%20310.034%201020.01%20307.497%201014.11%20305.17L985.988%20294.228C982.346%20293.086%20966.729%20290.022%20961.123%20288.215C991.009%20278.789%201030.43%20267.901%201056.74%20251.931C1060.91%20248.662%201065.85%20246.161%201069.93%20242.559C1072.69%20240.124%201075.03%20237.133%201076.47%20233.097C1077.88%20228.668%201070.97%20230.589%201070.97%20230.589ZM568.507%20235.81C565.36%20233.876%20567.861%20230.04%20568.827%20228.456C569.764%20227.296%20580.487%20208.003%20589.966%20212.964C591.645%20217.737%20575.219%20236.879%20568.507%20235.81ZM897.768%20242.638C892.506%20251.278%20896.282%20263.623%20889.395%20271.684L842.762%20265.677C869.833%20256.034%20891.829%20237.544%20904.83%20230.015L897.768%20242.638ZM948.074%20278.578C947.687%20273.551%20953.48%20269.085%20957.093%20265.665C972.776%20252.825%20975.132%20265.309%20975.132%20265.309C967.998%20270.928%20957.891%20277.551%20948.074%20278.578Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24400%22%3E%20%3Crect%20width%3D%221414%22%20height%3D%22707%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--kpmg { aspect-ratio:2.5118; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22849%22%20height%3D%22338%22%20viewBox%3D%220%200%20849%20338%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24406)%22%3E%20%3Cpath%20d%3D%22M660.53%200.0126953V168.615L658.379%20170.392L656.228%20172.168L654.166%20174.034L652.194%20175.899L650.312%20177.765L648.43%20179.719L646.638%20181.673L644.845%20183.628V0.0126953H456.357V153.514H440.762V0.0126953H252.274V153.78H236.679V0.0126953H48.1909V175.278L0.0605469%20334.197H42.365L63.6069%20263.843H69.7016L104.836%20334.197H155.924L121.865%20263.843H199.124L177.703%20334.197H223.862L245.014%20264.02H255.232V263.842H269.751H270.917H358.125L337.69%20334.019H384.296L404.104%20263.842H425.077L425.614%20334.019H464.692L509.596%20263.842H538.994L523.757%20334.019H569.647L584.615%20263.842H611.144L610.965%20267.84L611.06%20271.926L611.239%20275.834L611.597%20279.743L611.866%20281.609L612.135%20283.474L612.493%20285.339L612.851%20287.205L613.299%20289.07L613.747%20290.847L614.284%20292.624L614.821%20294.4L615.449%20296.177L616.077%20297.865L616.794%20299.553L617.511%20301.152L618.318%20302.839L619.125%20304.438L620.022%20305.948L620.919%20307.547L621.905%20309.058L622.98%20310.479L624.056%20311.989L625.221%20313.321L626.386%20314.743L627.552%20316.075L628.896%20317.408L630.24%20318.651L631.943%20320.073L633.646%20321.494L635.439%20322.826L637.321%20324.07L639.203%20325.314L641.085%20326.469L643.057%20327.445L645.119%20328.511L647.09%20329.399L649.152%20330.288L651.213%20331.087L653.364%20331.887L655.515%20332.598L657.667%20333.22L659.818%20333.841L661.969%20334.375L666.271%20335.351L670.663%20336.062L674.965%20336.684L679.267%20337.217L683.479%20337.572L687.602%20337.75L691.636%20337.928H695.489L700.688%20337.844L705.886%20337.76L711.175%20337.493L716.463%20337.227L721.751%20336.782L727.039%20336.337L732.327%20335.804L737.615%20335.183L742.992%20334.471L748.37%20333.672L753.748%20332.784L759.126%20331.895L764.503%20330.919L769.881%20329.853L775.259%20328.787L780.726%20327.543L796.68%20263.851H849.023V0.0209135L660.53%200.0126953ZM65.6683%20257.269L65.937%20256.292L66.5649%20257.269H65.6683ZM229.867%20162.752L227.178%20171.724L202.082%20254.338L201.096%20257.269H118.638L112.275%20243.767L201.096%20153.78H144.003L74.5413%20227.955L97.0379%20153.78H54.9127V6.67513H229.867L229.867%20162.752ZM278.535%20232.574L277.191%20232.658L275.936%20232.742L274.591%20232.827H273.157H271.275H269.662L268.138%20232.911H266.704L255.501%20232.827L260.699%20213.817L263.119%20204.401L269.034%20182.282H270.917H272.888L274.771%20182.197H276.563H285.257L290.545%20182.282L295.385%20182.46L297.536%20182.544L299.598%20182.722L301.569%20182.989L303.362%20183.255L304.975%20183.522L306.499%20183.966L307.933%20184.411L309.188%20184.944L310.263%20185.477L311.249%20186.188L312.146%20186.9L312.863%20187.788L313.31%20188.499L313.669%20189.21L314.027%20190.01L314.295%20190.898L314.475%20191.875L314.569%20192.851V193.917V195.072L314.475%20196.316L314.39%20197.559L314.122%20198.981L313.853%20200.402L313.046%20203.422L312.06%20206.798L311.074%20209.641L309.998%20212.394L308.833%20214.97L307.578%20217.369L306.95%20218.435L306.322%20219.501L305.605%20220.567L304.798%20221.544L303.991%20222.52L303.183%20223.408L302.287%20224.297L301.39%20225.096L300.404%20225.808L299.418%20226.607L298.342%20227.229L297.177%20227.94L296.012%20228.562L294.757%20229.095L293.502%20229.628L292.158%20230.073L290.724%20230.606L289.2%20230.961L287.587%20231.316L285.974%20231.671L284.181%20231.938L282.389%20232.204L280.506%20232.382L278.535%20232.56L278.535%20232.574ZM405.986%20257.269L424.36%20192.422L425.077%20257.269H405.986ZM433.95%20153.514H390.212L360.097%20257.269H313.669L315.82%20256.381L317.971%20255.493L320.033%20254.605L322.094%20253.628L324.066%20252.651L325.948%20251.496L327.83%20250.43L329.623%20249.275L331.416%20248.032L333.118%20246.788L334.732%20245.545L336.345%20244.123L337.869%20242.791L339.303%20241.281L340.737%20239.859L342.081%20238.26L343.426%20236.75L344.681%20235.062L345.846%20233.463L347.011%20231.687L348.086%20229.91L349.073%20228.134L350.059%20226.268L350.955%20224.314L351.852%20222.359L352.659%20220.405L353.376%20218.362L354.093%20216.23L354.63%20214.098L355.258%20211.966L355.706%20209.657L356.154%20207.436L356.782%20203.883L357.319%20200.507L357.677%20197.309L357.946%20194.289L358.041%20191.268L357.946%20188.515L357.862%20185.761L357.504%20183.185L357.145%20180.786L356.517%20178.388L355.889%20176.167L354.993%20174.035L354.007%20171.992L352.931%20169.949L351.676%20168.083L350.242%20166.307L349.077%20165.063L347.912%20163.82L346.657%20162.753L345.313%20161.777L343.879%20160.8L342.445%20159.912L340.921%20159.112L339.397%20158.401L337.784%20157.69L336.171%20157.157L334.468%20156.624L332.765%20156.09L330.972%20155.646L329.18%20155.291L327.387%20154.936L325.505%20154.669L321.651%20154.136L317.797%20153.869L313.853%20153.603L309.82%20153.519H301.753H293.777H291.267H286.786H281.229H275.044H269.039H263.93H260.345H259.001V6.67987H433.955L433.95%20153.514ZM540.249%20257.269H513.988L553.783%20195.087L540.249%20257.269ZM638.033%20156.445L637.938%20192.422L635.698%20195.531L633.636%20198.729L631.575%20201.927L629.693%20205.125L627.9%20208.323L626.108%20211.61L624.584%20214.808L623.06%20218.005L621.626%20221.115L620.371%20224.313L619.116%20227.422L618.041%20230.442L617.055%20233.462L616.158%20236.394L615.351%20239.236L614.634%20242.079L614.186%20243.944L613.738%20245.899L613.29%20247.764L612.932%20249.718L612.574%20251.584L612.305%20253.449L612.036%20255.315L611.857%20257.269H586.134L608.093%20153.78L534.06%20153.696L467.825%20257.274H462.985V6.67966H638.029L638.033%20156.445ZM738.954%20299.642L735.28%20300.263L731.515%20300.797L727.751%20301.33L724.076%20301.774L720.401%20302.129L716.727%20302.396L713.142%20302.574H709.556H707.226L704.896%20302.49L702.655%20302.312L700.414%20302.045L698.263%20301.69L696.202%20301.335L694.14%20300.89L692.169%20300.357L690.286%20299.736L688.404%20299.114L686.612%20298.314L684.909%20297.515L683.206%20296.538L681.593%20295.561L680.069%20294.495L678.635%20293.429L677.201%20292.186L675.946%20290.853L674.691%20289.521L673.526%20288.01L672.45%20286.5L671.464%20284.812L670.568%20283.125L669.671%20281.348L668.953%20279.483L668.326%20277.439L667.788%20275.396L667.251%20273.264L666.893%20271.044L666.624%20268.734L666.445%20266.336L666.35%20263.848H747.912L738.954%20299.642ZM842.385%20257.269H798.288L805.548%20228.31H717.175L709.915%20257.269H667.162V251.317L667.7%20248.83L668.147%20246.343L668.685%20243.678L669.222%20241.013L670.029%20238.081L670.836%20235.15L671.733%20232.219L672.719%20229.376L673.795%20226.533L674.96%20223.691L676.215%20220.937L677.469%20218.183L678.904%20215.429L680.337%20212.853L681.861%20210.188L683.564%20207.701L685.267%20205.214L686.97%20202.815L688.852%20200.506L690.824%20198.285L692.885%20196.153L694.947%20194.199L697.188%20192.244L699.428%20190.379L701.759%20188.691L704.268%20187.092L706.778%20185.671L709.377%20184.338L712.066%20183.095L714.844%20182.029L717.712%20181.141L720.67%20180.429L723.717%20179.808L726.855%20179.363L730.081%20179.097L733.397%20179.012L735.997%20179.097L738.596%20179.275L741.195%20179.63L743.705%20180.163L744.959%20180.518L746.125%20180.873L747.29%20181.228L748.365%20181.761L749.441%20182.206L750.516%20182.827L751.502%20183.449L752.489%20184.071L753.385%20184.87L754.282%20185.67L755.089%20186.47L755.896%20187.446L756.614%20188.335L757.241%20189.401L757.779%20190.555L758.316%20191.71L758.764%20192.954L759.122%20194.286L759.391%20195.619L759.66%20197.129L759.754%20198.639V200.238V201.926L759.575%20203.702H812.277L813.084%20200.06L813.801%20195.885L814.159%20193.664L814.338%20191.266L814.518%20188.868V186.38L814.433%20183.804L814.165%20181.139L813.896%20179.896L813.717%20178.563L813.359%20177.231L813%20175.898L812.553%20174.477L812.105%20173.144L811.567%20171.812L810.939%20170.479L810.312%20169.147L809.504%20167.815L808.697%20166.482L807.801%20165.15L806.725%20163.728L805.56%20162.396L804.395%20161.063L803.14%20159.82L801.796%20158.576L800.362%20157.421L798.928%20156.355L797.404%20155.289L795.791%20154.223L794.177%20153.335L792.474%20152.447L790.682%20151.559L788.889%20150.759L787.007%20149.959L785.035%20149.248L783.063%20148.537L781.092%20147.915L778.941%20147.382L776.879%20146.849L774.638%20146.316L772.398%20145.871L770.157%20145.427L767.827%20145.072L765.407%20144.805L760.477%20144.272L755.458%20143.827L750.17%20143.649L744.792%20143.565L740.759%20143.649L736.546%20143.734L732.155%20144L727.584%20144.355L722.833%20144.888L717.994%20145.51L713.064%20146.31L708.045%20147.376L705.535%20147.909L702.936%20148.53L700.426%20149.241L697.827%20149.953L695.228%20150.752L692.629%20151.641L690.029%20152.529L687.52%20153.505L684.921%20154.571L682.322%20155.726L679.812%20156.881L677.213%20158.125L674.703%20159.457L672.194%20160.878L669.684%20162.3L667.174%20163.899V6.66681H842.397V257.261L842.385%20257.269Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24406%22%3E%20%3Crect%20width%3D%22849%22%20height%3D%22338%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22849%22%20height%3D%22338%22%20viewBox%3D%220%200%20849%20338%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24406)%22%3E%20%3Cpath%20d%3D%22M660.53%200.0126953V168.615L658.379%20170.392L656.228%20172.168L654.166%20174.034L652.194%20175.899L650.312%20177.765L648.43%20179.719L646.638%20181.673L644.845%20183.628V0.0126953H456.357V153.514H440.762V0.0126953H252.274V153.78H236.679V0.0126953H48.1909V175.278L0.0605469%20334.197H42.365L63.6069%20263.843H69.7016L104.836%20334.197H155.924L121.865%20263.843H199.124L177.703%20334.197H223.862L245.014%20264.02H255.232V263.842H269.751H270.917H358.125L337.69%20334.019H384.296L404.104%20263.842H425.077L425.614%20334.019H464.692L509.596%20263.842H538.994L523.757%20334.019H569.647L584.615%20263.842H611.144L610.965%20267.84L611.06%20271.926L611.239%20275.834L611.597%20279.743L611.866%20281.609L612.135%20283.474L612.493%20285.339L612.851%20287.205L613.299%20289.07L613.747%20290.847L614.284%20292.624L614.821%20294.4L615.449%20296.177L616.077%20297.865L616.794%20299.553L617.511%20301.152L618.318%20302.839L619.125%20304.438L620.022%20305.948L620.919%20307.547L621.905%20309.058L622.98%20310.479L624.056%20311.989L625.221%20313.321L626.386%20314.743L627.552%20316.075L628.896%20317.408L630.24%20318.651L631.943%20320.073L633.646%20321.494L635.439%20322.826L637.321%20324.07L639.203%20325.314L641.085%20326.469L643.057%20327.445L645.119%20328.511L647.09%20329.399L649.152%20330.288L651.213%20331.087L653.364%20331.887L655.515%20332.598L657.667%20333.22L659.818%20333.841L661.969%20334.375L666.271%20335.351L670.663%20336.062L674.965%20336.684L679.267%20337.217L683.479%20337.572L687.602%20337.75L691.636%20337.928H695.489L700.688%20337.844L705.886%20337.76L711.175%20337.493L716.463%20337.227L721.751%20336.782L727.039%20336.337L732.327%20335.804L737.615%20335.183L742.992%20334.471L748.37%20333.672L753.748%20332.784L759.126%20331.895L764.503%20330.919L769.881%20329.853L775.259%20328.787L780.726%20327.543L796.68%20263.851H849.023V0.0209135L660.53%200.0126953ZM65.6683%20257.269L65.937%20256.292L66.5649%20257.269H65.6683ZM229.867%20162.752L227.178%20171.724L202.082%20254.338L201.096%20257.269H118.638L112.275%20243.767L201.096%20153.78H144.003L74.5413%20227.955L97.0379%20153.78H54.9127V6.67513H229.867L229.867%20162.752ZM278.535%20232.574L277.191%20232.658L275.936%20232.742L274.591%20232.827H273.157H271.275H269.662L268.138%20232.911H266.704L255.501%20232.827L260.699%20213.817L263.119%20204.401L269.034%20182.282H270.917H272.888L274.771%20182.197H276.563H285.257L290.545%20182.282L295.385%20182.46L297.536%20182.544L299.598%20182.722L301.569%20182.989L303.362%20183.255L304.975%20183.522L306.499%20183.966L307.933%20184.411L309.188%20184.944L310.263%20185.477L311.249%20186.188L312.146%20186.9L312.863%20187.788L313.31%20188.499L313.669%20189.21L314.027%20190.01L314.295%20190.898L314.475%20191.875L314.569%20192.851V193.917V195.072L314.475%20196.316L314.39%20197.559L314.122%20198.981L313.853%20200.402L313.046%20203.422L312.06%20206.798L311.074%20209.641L309.998%20212.394L308.833%20214.97L307.578%20217.369L306.95%20218.435L306.322%20219.501L305.605%20220.567L304.798%20221.544L303.991%20222.52L303.183%20223.408L302.287%20224.297L301.39%20225.096L300.404%20225.808L299.418%20226.607L298.342%20227.229L297.177%20227.94L296.012%20228.562L294.757%20229.095L293.502%20229.628L292.158%20230.073L290.724%20230.606L289.2%20230.961L287.587%20231.316L285.974%20231.671L284.181%20231.938L282.389%20232.204L280.506%20232.382L278.535%20232.56L278.535%20232.574ZM405.986%20257.269L424.36%20192.422L425.077%20257.269H405.986ZM433.95%20153.514H390.212L360.097%20257.269H313.669L315.82%20256.381L317.971%20255.493L320.033%20254.605L322.094%20253.628L324.066%20252.651L325.948%20251.496L327.83%20250.43L329.623%20249.275L331.416%20248.032L333.118%20246.788L334.732%20245.545L336.345%20244.123L337.869%20242.791L339.303%20241.281L340.737%20239.859L342.081%20238.26L343.426%20236.75L344.681%20235.062L345.846%20233.463L347.011%20231.687L348.086%20229.91L349.073%20228.134L350.059%20226.268L350.955%20224.314L351.852%20222.359L352.659%20220.405L353.376%20218.362L354.093%20216.23L354.63%20214.098L355.258%20211.966L355.706%20209.657L356.154%20207.436L356.782%20203.883L357.319%20200.507L357.677%20197.309L357.946%20194.289L358.041%20191.268L357.946%20188.515L357.862%20185.761L357.504%20183.185L357.145%20180.786L356.517%20178.388L355.889%20176.167L354.993%20174.035L354.007%20171.992L352.931%20169.949L351.676%20168.083L350.242%20166.307L349.077%20165.063L347.912%20163.82L346.657%20162.753L345.313%20161.777L343.879%20160.8L342.445%20159.912L340.921%20159.112L339.397%20158.401L337.784%20157.69L336.171%20157.157L334.468%20156.624L332.765%20156.09L330.972%20155.646L329.18%20155.291L327.387%20154.936L325.505%20154.669L321.651%20154.136L317.797%20153.869L313.853%20153.603L309.82%20153.519H301.753H293.777H291.267H286.786H281.229H275.044H269.039H263.93H260.345H259.001V6.67987H433.955L433.95%20153.514ZM540.249%20257.269H513.988L553.783%20195.087L540.249%20257.269ZM638.033%20156.445L637.938%20192.422L635.698%20195.531L633.636%20198.729L631.575%20201.927L629.693%20205.125L627.9%20208.323L626.108%20211.61L624.584%20214.808L623.06%20218.005L621.626%20221.115L620.371%20224.313L619.116%20227.422L618.041%20230.442L617.055%20233.462L616.158%20236.394L615.351%20239.236L614.634%20242.079L614.186%20243.944L613.738%20245.899L613.29%20247.764L612.932%20249.718L612.574%20251.584L612.305%20253.449L612.036%20255.315L611.857%20257.269H586.134L608.093%20153.78L534.06%20153.696L467.825%20257.274H462.985V6.67966H638.029L638.033%20156.445ZM738.954%20299.642L735.28%20300.263L731.515%20300.797L727.751%20301.33L724.076%20301.774L720.401%20302.129L716.727%20302.396L713.142%20302.574H709.556H707.226L704.896%20302.49L702.655%20302.312L700.414%20302.045L698.263%20301.69L696.202%20301.335L694.14%20300.89L692.169%20300.357L690.286%20299.736L688.404%20299.114L686.612%20298.314L684.909%20297.515L683.206%20296.538L681.593%20295.561L680.069%20294.495L678.635%20293.429L677.201%20292.186L675.946%20290.853L674.691%20289.521L673.526%20288.01L672.45%20286.5L671.464%20284.812L670.568%20283.125L669.671%20281.348L668.953%20279.483L668.326%20277.439L667.788%20275.396L667.251%20273.264L666.893%20271.044L666.624%20268.734L666.445%20266.336L666.35%20263.848H747.912L738.954%20299.642ZM842.385%20257.269H798.288L805.548%20228.31H717.175L709.915%20257.269H667.162V251.317L667.7%20248.83L668.147%20246.343L668.685%20243.678L669.222%20241.013L670.029%20238.081L670.836%20235.15L671.733%20232.219L672.719%20229.376L673.795%20226.533L674.96%20223.691L676.215%20220.937L677.469%20218.183L678.904%20215.429L680.337%20212.853L681.861%20210.188L683.564%20207.701L685.267%20205.214L686.97%20202.815L688.852%20200.506L690.824%20198.285L692.885%20196.153L694.947%20194.199L697.188%20192.244L699.428%20190.379L701.759%20188.691L704.268%20187.092L706.778%20185.671L709.377%20184.338L712.066%20183.095L714.844%20182.029L717.712%20181.141L720.67%20180.429L723.717%20179.808L726.855%20179.363L730.081%20179.097L733.397%20179.012L735.997%20179.097L738.596%20179.275L741.195%20179.63L743.705%20180.163L744.959%20180.518L746.125%20180.873L747.29%20181.228L748.365%20181.761L749.441%20182.206L750.516%20182.827L751.502%20183.449L752.489%20184.071L753.385%20184.87L754.282%20185.67L755.089%20186.47L755.896%20187.446L756.614%20188.335L757.241%20189.401L757.779%20190.555L758.316%20191.71L758.764%20192.954L759.122%20194.286L759.391%20195.619L759.66%20197.129L759.754%20198.639V200.238V201.926L759.575%20203.702H812.277L813.084%20200.06L813.801%20195.885L814.159%20193.664L814.338%20191.266L814.518%20188.868V186.38L814.433%20183.804L814.165%20181.139L813.896%20179.896L813.717%20178.563L813.359%20177.231L813%20175.898L812.553%20174.477L812.105%20173.144L811.567%20171.812L810.939%20170.479L810.312%20169.147L809.504%20167.815L808.697%20166.482L807.801%20165.15L806.725%20163.728L805.56%20162.396L804.395%20161.063L803.14%20159.82L801.796%20158.576L800.362%20157.421L798.928%20156.355L797.404%20155.289L795.791%20154.223L794.177%20153.335L792.474%20152.447L790.682%20151.559L788.889%20150.759L787.007%20149.959L785.035%20149.248L783.063%20148.537L781.092%20147.915L778.941%20147.382L776.879%20146.849L774.638%20146.316L772.398%20145.871L770.157%20145.427L767.827%20145.072L765.407%20144.805L760.477%20144.272L755.458%20143.827L750.17%20143.649L744.792%20143.565L740.759%20143.649L736.546%20143.734L732.155%20144L727.584%20144.355L722.833%20144.888L717.994%20145.51L713.064%20146.31L708.045%20147.376L705.535%20147.909L702.936%20148.53L700.426%20149.241L697.827%20149.953L695.228%20150.752L692.629%20151.641L690.029%20152.529L687.52%20153.505L684.921%20154.571L682.322%20155.726L679.812%20156.881L677.213%20158.125L674.703%20159.457L672.194%20160.878L669.684%20162.3L667.174%20163.899V6.66681H842.397V257.261L842.385%20257.269Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24406%22%3E%20%3Crect%20width%3D%22849%22%20height%3D%22338%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--lloyds { aspect-ratio:3.9474; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221500%22%20height%3D%22380%22%20viewBox%3D%2250%20120%201500%20380%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M569.6%20407.5C564.3%20405.7%20557.6%20404.2%20551.8%20404.2C534.2%20404.2%20522.1%20416.4%20522.4%20431.7C522.4%20447.3%20533.7%20460.1%20550.7%20460.1C553.6%20460.1%20556.7%20459.7%20558.5%20459.5V429.5H571.6V469.7H571.4C566.5%20471%20557.8%20472.6%20551.1%20472.6C525%20472.6%20508.5%20454.6%20508.5%20431.7C508.5%20407.7%20527%20391.3%20551.8%20391.3C558.9%20391.3%20565.6%20392.8%20569.6%20394.2V407.5ZM678.8%20407.5C673.5%20405.7%20666.8%20404.2%20661%20404.2C643.4%20404.2%20631.3%20416.4%20631.5%20431.7C631.5%20447.3%20642.9%20460.2%20659.9%20460.2C662.8%20460.2%20665.9%20459.7%20667.7%20459.5V429.5H680.8V469.7H680.6C675.7%20471.1%20667%20472.6%20660.3%20472.6C634.2%20472.6%20617.7%20454.6%20617.7%20431.7C617.7%20407.7%20636.2%20391.3%20661%20391.3C668.1%20391.3%20674.8%20392.8%20678.8%20394.2V407.5ZM809.7%20472.6C787.1%20472.6%20768.9%20454.4%20768.9%20431.8C768.9%20409.3%20787.1%20391.1%20809.7%20391.1C832.3%20391.1%20850.5%20409.3%20850.5%20431.8C850.5%20454.4%20832.3%20472.6%20809.7%20472.6ZM836.7%20431.8C836.7%20416.3%20824.6%20403.7%20809.7%20403.7C794.8%20403.7%20782.7%20416.3%20782.7%20431.8C782.7%20447.4%20794.8%20459.9%20809.7%20459.9C824.6%20459.9%20836.7%20447.4%20836.7%20431.8ZM181.4%20449.7H148.9L140.4%20471.5H126.2L158.5%20391.7H171.9L204.6%20471.5H190.1L181.4%20449.7ZM153.6%20437.5H176.8L165.4%20407.7L153.6%20437.5ZM491.4%20391.9V471.5H481.1L435.6%20413.5V471.5H422.5V391.9H434.7L478.2%20447.3V391.9H491.4ZM90.8996%20391.9C104.5%20391.9%20115.5%20399.3%20115.5%20413.3C115.5%20420.6%20111.2%20426.6%20106.5%20429C114.1%20433.5%20118.4%20440.2%20118.4%20448.4C118.4%20464.6%20105.6%20471.5%2089.9996%20471.5H62.1996V391.9H90.8996ZM728.1%20392C743.9%20392%20754.9%20400.4%20754.9%20416.2C754.9%20426.2%20749.1%20434.6%20739.7%20438.2L758.9%20471.5H743.7L726.3%20440.2H715.4V471.5H702V392H728.1ZM975.4%20392C991%20392%201002.3%20402%201002.3%20417.3C1002.3%20433.3%20990.3%20443.1%20974.5%20443.1H962.9V471.5H949.9V392H975.4ZM75.4996%20436.8V459.3H89.3996C99.1996%20459.3%20104.5%20455%20104.5%20447.9C104.5%20441.3%2099.3996%20436.8%2091.7996%20436.8H75.4996ZM385.7%20391.9H399.3V471.5H385.7V391.9ZM91.8996%20135V283.1H173.9V312.3H61.5996V135H91.8996ZM236%20135V283.1H318V312.3H205.7V135H236ZM685.7%20135L578.4%20312.4H544.6L586.8%20243L517.8%20135H553L604.2%20216.7L651.9%20135H685.7ZM766.2%20135C816.4%20135%20857.6%20172.6%20857.6%20223.7C857.6%20274.7%20816.9%20312.3%20766.2%20312.3H710V135H766.2ZM946.1%20133.5C962.9%20133.5%20977.3%20136.4%20990.8%20142.4V170.6H990.3C975.9%20163.7%20960%20160.7%20948%20160.7C932.6%20160.7%20915.7%20165.7%20915.7%20182C915.7%20193.4%20924.7%20199.9%20954%20208.8C982.3%20217.7%201002.7%20232.1%201002.7%20261.8C1002.7%20294%20973.4%20314.3%20942.1%20314.3C920.7%20314.3%20901.3%20307.4%20890.9%20301.5H890.4V271.2L891.4%20271.7C902.8%20279.2%20921.7%20287.1%20941.6%20287.1C957%20287.1%20973.4%20279.6%20973.4%20262.8C973.4%20245.5%20956%20240%20934.6%20233.1C910.8%20225.6%20887.4%20212.3%20887.4%20182.5C887.4%20167.2%20893.9%20154.3%20906.3%20145.4C916.7%20137.9%20931.1%20133.5%20946.1%20133.5ZM419.4%20314.8C369.1%20314.8%20328.4%20274.2%20328.4%20223.9C328.4%20173.6%20369.1%20133%20419.4%20133C469.7%20133%20510.3%20173.6%20510.3%20223.9C510.3%20274.2%20469.7%20314.8%20419.4%20314.8ZM739.9%20163.7V284.1H766.2C801.5%20284.1%20826.3%20257.8%20826.3%20223.7C826.3%20189.5%20801.5%20163.7%20766.2%20163.7H739.9ZM479.5%20223.9C479.5%20189.2%20452.6%20161.2%20419.4%20161.2C386.1%20161.2%20359.3%20189.2%20359.3%20223.9C359.3%20258.6%20386.1%20286.6%20419.4%20286.6C452.6%20286.6%20479.5%20258.6%20479.5%20223.9ZM929.2%20391.9V442.8C929.2%20461%20916.7%20472.5%20898.4%20472.5C879.9%20472.5%20867.7%20461%20867.7%20442.8V391.9H881.1V442.3C881.1%20452.8%20887.7%20459.9%20898.4%20459.9C909.6%20459.9%20915.6%20452.8%20915.6%20442.3V391.9H929.2ZM372.5%20391.9L337.5%20430.8L374.3%20471.4H356.3L322.4%20433.4V471.4H309V391.9H322.4V429.2L355.6%20391.9H372.5ZM962.9%20404.6V429.9H973.8C983.2%20429.9%20988.7%20425.2%20988.7%20417.4C988.7%20409.7%20983.4%20404.6%20974.7%20404.6H962.9ZM285.8%20391.9V471.4H275.5L230.3%20413.4V471.4H216.9V391.9H229.2L272.6%20447.2V391.9H285.8ZM715.4%20404.3V427.9H728.1C735.9%20427.9%20741.2%20423.9%20741.2%20416.1C741.2%20407.9%20735.4%20404.3%20727.4%20404.3H715.4ZM75.4996%20404.1V424.8H90.4996C97.1996%20424.8%20102.1%20420.5%20102.1%20414.1C102.1%20407.4%2096.2996%20404.1%2089.7996%20404.1H75.4996Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1522.6%20313.3C1530.6%20319.1%201538.8%20323.4%201538.8%20332.6C1538.8%20335.3%201535.3%20337.9%201527.6%20337.9C1521.8%20337.9%201515.5%20336.4%201512.5%20332.1C1510.2%20328.9%201513.6%20324.7%201511.5%20321.5C1509.9%20318.9%201506.2%20320.2%201503.8%20318.9C1500.9%20317.3%201500.6%20316%201498.7%20312C1496.6%20307.3%201489.5%20299.3%201481%20290.9C1473.8%20283.7%201466.1%20280.1%201462.7%20280.3C1460.3%20280.6%201459.5%20280.6%201457.1%20280.6C1451%20280.6%201445.7%20286.4%201436.9%20290.1C1430.9%20292.7%201427.4%20294.3%201423.4%20294.8L1422.1%20296.4L1430%20296.2C1437.5%20296.2%201447.3%20295.1%201454.7%20295.1C1462.4%20295.1%201466.1%20302%201469.1%20309.1C1474.9%20323.6%201483.6%20344.5%201494%20362C1499%20370.2%201503.3%20375.5%201503.3%20385.5C1503.3%20388.7%201503%20392.9%201498.7%20392.9C1492.9%20392.9%201478.1%20386.9%201478.1%20380.2C1478.1%20375.2%201482%20373.1%201482%20368C1482%20364.9%201477.3%20365.4%201476.2%20362.5C1472.5%20346.9%201468%20331.6%201459.2%20322.3C1454.7%20317.6%201454.2%20315.4%201449.7%20315.4C1447.3%20315.4%201444.9%20316%201442.8%20316.8C1430.6%20321.3%201414.4%20334.8%201394.3%20340.8C1386.6%20343.2%201385.2%20338.7%201377.3%20340.3H1377.8C1371.4%20341.6%201366.4%20345.3%201357.6%20347.7C1345.4%20351.1%201324.5%20352.7%201307.8%20350.6C1295.9%20349%201280.4%20346.7%201273.8%20346.9C1268.8%20361.4%201257.9%20380.5%201242%20387.9C1233.5%20391.6%201230.9%20396.9%201233.5%20406.4C1236.7%20418.3%201247.3%20427%201252.9%20437C1257.9%20445.7%201266.1%20459.5%201274.9%20464C1283.6%20468.5%201289%20475.1%201289%20480.6C1289%20483.2%201287.9%20484.8%201285.2%20484.8H1267.7C1265.1%20484.8%201263.7%20483.2%201263.2%20482.2C1260.8%20477.7%201262.4%20473.5%201259.2%20469.5C1256.8%20466.6%201255%20467.4%201252.1%20465C1246.8%20460%201250.8%20457.1%201246.8%20450.7C1235.6%20433.3%201230.9%20429.1%201221.6%20416.7C1216.3%20410.1%201209.9%20406.9%201209.9%20398.2C1209.9%20387.6%201220.5%20385.8%201220.3%20375.2C1213.4%20380.2%201205.4%20384.2%201193.2%20385.8C1191.6%20386.1%201187.3%20389.2%201185.5%20391.3C1181.3%20395.6%201179.7%20399.8%201179.1%20406.1C1177.8%20420.4%201174.9%20434.9%201176.7%20449.2C1179.1%20458.4%201180.7%20461.6%201188.4%20466.6C1193.2%20469.8%201198.8%20474.3%201199.3%20480.9C1199.3%20482.7%201198.8%20484.8%201196.1%20484.8H1177.3C1175.4%20484.8%201173.8%20483.5%201173.3%20482.5C1171.2%20478.8%201172.5%20476.1%201171.7%20471.9C1169.9%20463.2%201160%20463.7%201160%20454.7C1160%20452.1%201161.6%20448.6%201161.9%20443.1C1162.4%20431%201166.1%20411.4%201162.4%20387.6C1160.8%20373.9%201175.2%20373.3%201182.6%20361.2C1187.1%20354.3%201185.8%20357.2%201188.4%20352.2C1191.1%20346.9%201190.5%20343.2%201190.3%20340C1190.3%20336.1%201186.3%20327.6%201189%20310.4C1190%20302.8%201193.7%20295.1%201198.8%20288.5C1198.8%20288.2%201198.8%20287.2%201197.2%20287.2C1189.7%20287.7%201189.7%20285.9%201184.7%20285.9C1179.9%20285.9%201176.2%20289.8%201175.4%20291.9C1173%20290.9%201172%20288.2%201172%20286.7C1172%20284%201172.5%20281.6%201175.2%20279C1176.2%20277.9%201175.2%20277.4%201173.8%20277.4C1168%20277.4%201162.4%20284.5%201161.1%20289.5C1157.7%20289%201157.4%20284.5%201155.8%20284.5C1154.2%20284.5%201153.2%20286.9%201153.2%20289.3C1153.2%20306.2%201180.7%20309.9%201180.7%20332.1C1180.7%20357.7%201149.7%20352.4%201149.7%20361.7C1149.7%20363.6%201151%20365.1%201153.4%20366.2C1152.4%20368.6%201149.7%20369.6%201146.8%20369.6C1139.9%20369.6%201134.9%20364.6%201134.9%20357.7C1134.9%20343.7%201153.7%20343.5%201153.7%20332.9C1153.7%20327.9%201150.5%20326.3%201147.6%20323.9C1129.6%20311.2%201119.5%20298.5%201119.5%20277.7C1119.5%20255.2%201135.1%20238%201155.5%20238C1185.2%20238%201186%20272.1%201213.1%20275C1223.2%20268.2%201235.1%20264.2%201246.8%20264.2C1264.3%20264.2%201272%20268.7%201290.5%20268.7C1298%20268.7%201310.4%20266.6%201325.3%20256.5C1330.9%20252.8%201333.2%20252.1%201338.3%20247.5C1349.9%20237.5%201360.8%20217.9%201360.8%20203.9V204.7C1360.8%20200.2%201359.8%20197.6%201357.6%20197.6C1351.3%20197.6%201345.7%20203.4%201339.3%20209.5C1335.4%20213.7%201341.5%20215.6%201332.4%20220.6C1329.3%20222.2%201325.6%20219.3%201322.1%20219.3C1314.9%20219.3%201311.8%20210.8%201311.8%20203.4C1311.8%20199.7%201314.7%20198.6%201316.3%20195.2C1320%20188.1%201319.7%20185.4%201323.2%20178.3C1325.3%20173.5%201329%20170.4%201328.7%20166.9C1328.7%20165.6%201327.7%20164.8%201327.7%20163.5C1327.7%20156.3%201337.2%20151.6%201337.2%20144.5C1337.2%20140.5%201332.7%20138.6%201331.7%20135.5C1330.6%20132.3%201331.4%20131.5%201331.4%20131.5C1331.7%20131%201332.2%20130.7%201332.7%20130.7C1336.4%20130.7%201338%20134.7%201341.5%20136.8C1341.7%20132%201340.1%20131%201340.1%20127.6C1340.1%20125.7%201339.9%20122.8%201341.7%20122.8C1344.1%20122.8%201343.8%20126%201346%20127.6C1348.6%20129.7%201351%20129.4%201353.9%20131.3C1357.6%20133.6%201359.8%20137.6%201361.1%20137.9C1364.8%20138.4%201365.9%20133.9%201364%20131.3C1368.2%20131%201372.5%20134.4%201378.1%20134.4C1386.8%20134.4%201389.8%20136.8%201391.3%20138.1C1396.9%20142.9%201398%20146.6%201404.1%20146.6C1407.2%20146.6%201408.8%20143.9%201409.6%20142.9C1413.9%20146%201414.1%20154%201409.6%20160.6C1411.5%20166.2%201419.4%20166.7%201423.2%20169.3C1426.9%20172%201426.3%20173.3%201429%20174.9C1431.1%20176.2%201433%20175.9%201434.6%20174.9C1436.4%20182.3%201430%20188.9%201422.4%20189.9C1422.6%20199.4%201432.7%20205.2%201437.2%20207.6C1434.6%20213.4%201429.8%20215.3%201425.5%20216.3C1426.9%20222.2%201433.2%20230.6%201430%20238.3C1427.1%20237%201422.9%20238.3%201422.9%20242.5C1422.9%20247.3%201429%20249.7%201422.6%20253.1C1419.7%20254.7%201419.2%20258.9%201424.5%20262.9C1431.4%20261%201438%20261.3%201445.7%20261.3C1450.5%20261.3%201456.8%20260%201461.1%20260C1469.1%20260%201473.8%20263.1%201479.7%20269.5C1494.3%20285.3%201507.5%20302%201522.6%20313.3Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221500%22%20height%3D%22380%22%20viewBox%3D%2250%20120%201500%20380%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M569.6%20407.5C564.3%20405.7%20557.6%20404.2%20551.8%20404.2C534.2%20404.2%20522.1%20416.4%20522.4%20431.7C522.4%20447.3%20533.7%20460.1%20550.7%20460.1C553.6%20460.1%20556.7%20459.7%20558.5%20459.5V429.5H571.6V469.7H571.4C566.5%20471%20557.8%20472.6%20551.1%20472.6C525%20472.6%20508.5%20454.6%20508.5%20431.7C508.5%20407.7%20527%20391.3%20551.8%20391.3C558.9%20391.3%20565.6%20392.8%20569.6%20394.2V407.5ZM678.8%20407.5C673.5%20405.7%20666.8%20404.2%20661%20404.2C643.4%20404.2%20631.3%20416.4%20631.5%20431.7C631.5%20447.3%20642.9%20460.2%20659.9%20460.2C662.8%20460.2%20665.9%20459.7%20667.7%20459.5V429.5H680.8V469.7H680.6C675.7%20471.1%20667%20472.6%20660.3%20472.6C634.2%20472.6%20617.7%20454.6%20617.7%20431.7C617.7%20407.7%20636.2%20391.3%20661%20391.3C668.1%20391.3%20674.8%20392.8%20678.8%20394.2V407.5ZM809.7%20472.6C787.1%20472.6%20768.9%20454.4%20768.9%20431.8C768.9%20409.3%20787.1%20391.1%20809.7%20391.1C832.3%20391.1%20850.5%20409.3%20850.5%20431.8C850.5%20454.4%20832.3%20472.6%20809.7%20472.6ZM836.7%20431.8C836.7%20416.3%20824.6%20403.7%20809.7%20403.7C794.8%20403.7%20782.7%20416.3%20782.7%20431.8C782.7%20447.4%20794.8%20459.9%20809.7%20459.9C824.6%20459.9%20836.7%20447.4%20836.7%20431.8ZM181.4%20449.7H148.9L140.4%20471.5H126.2L158.5%20391.7H171.9L204.6%20471.5H190.1L181.4%20449.7ZM153.6%20437.5H176.8L165.4%20407.7L153.6%20437.5ZM491.4%20391.9V471.5H481.1L435.6%20413.5V471.5H422.5V391.9H434.7L478.2%20447.3V391.9H491.4ZM90.8996%20391.9C104.5%20391.9%20115.5%20399.3%20115.5%20413.3C115.5%20420.6%20111.2%20426.6%20106.5%20429C114.1%20433.5%20118.4%20440.2%20118.4%20448.4C118.4%20464.6%20105.6%20471.5%2089.9996%20471.5H62.1996V391.9H90.8996ZM728.1%20392C743.9%20392%20754.9%20400.4%20754.9%20416.2C754.9%20426.2%20749.1%20434.6%20739.7%20438.2L758.9%20471.5H743.7L726.3%20440.2H715.4V471.5H702V392H728.1ZM975.4%20392C991%20392%201002.3%20402%201002.3%20417.3C1002.3%20433.3%20990.3%20443.1%20974.5%20443.1H962.9V471.5H949.9V392H975.4ZM75.4996%20436.8V459.3H89.3996C99.1996%20459.3%20104.5%20455%20104.5%20447.9C104.5%20441.3%2099.3996%20436.8%2091.7996%20436.8H75.4996ZM385.7%20391.9H399.3V471.5H385.7V391.9ZM91.8996%20135V283.1H173.9V312.3H61.5996V135H91.8996ZM236%20135V283.1H318V312.3H205.7V135H236ZM685.7%20135L578.4%20312.4H544.6L586.8%20243L517.8%20135H553L604.2%20216.7L651.9%20135H685.7ZM766.2%20135C816.4%20135%20857.6%20172.6%20857.6%20223.7C857.6%20274.7%20816.9%20312.3%20766.2%20312.3H710V135H766.2ZM946.1%20133.5C962.9%20133.5%20977.3%20136.4%20990.8%20142.4V170.6H990.3C975.9%20163.7%20960%20160.7%20948%20160.7C932.6%20160.7%20915.7%20165.7%20915.7%20182C915.7%20193.4%20924.7%20199.9%20954%20208.8C982.3%20217.7%201002.7%20232.1%201002.7%20261.8C1002.7%20294%20973.4%20314.3%20942.1%20314.3C920.7%20314.3%20901.3%20307.4%20890.9%20301.5H890.4V271.2L891.4%20271.7C902.8%20279.2%20921.7%20287.1%20941.6%20287.1C957%20287.1%20973.4%20279.6%20973.4%20262.8C973.4%20245.5%20956%20240%20934.6%20233.1C910.8%20225.6%20887.4%20212.3%20887.4%20182.5C887.4%20167.2%20893.9%20154.3%20906.3%20145.4C916.7%20137.9%20931.1%20133.5%20946.1%20133.5ZM419.4%20314.8C369.1%20314.8%20328.4%20274.2%20328.4%20223.9C328.4%20173.6%20369.1%20133%20419.4%20133C469.7%20133%20510.3%20173.6%20510.3%20223.9C510.3%20274.2%20469.7%20314.8%20419.4%20314.8ZM739.9%20163.7V284.1H766.2C801.5%20284.1%20826.3%20257.8%20826.3%20223.7C826.3%20189.5%20801.5%20163.7%20766.2%20163.7H739.9ZM479.5%20223.9C479.5%20189.2%20452.6%20161.2%20419.4%20161.2C386.1%20161.2%20359.3%20189.2%20359.3%20223.9C359.3%20258.6%20386.1%20286.6%20419.4%20286.6C452.6%20286.6%20479.5%20258.6%20479.5%20223.9ZM929.2%20391.9V442.8C929.2%20461%20916.7%20472.5%20898.4%20472.5C879.9%20472.5%20867.7%20461%20867.7%20442.8V391.9H881.1V442.3C881.1%20452.8%20887.7%20459.9%20898.4%20459.9C909.6%20459.9%20915.6%20452.8%20915.6%20442.3V391.9H929.2ZM372.5%20391.9L337.5%20430.8L374.3%20471.4H356.3L322.4%20433.4V471.4H309V391.9H322.4V429.2L355.6%20391.9H372.5ZM962.9%20404.6V429.9H973.8C983.2%20429.9%20988.7%20425.2%20988.7%20417.4C988.7%20409.7%20983.4%20404.6%20974.7%20404.6H962.9ZM285.8%20391.9V471.4H275.5L230.3%20413.4V471.4H216.9V391.9H229.2L272.6%20447.2V391.9H285.8ZM715.4%20404.3V427.9H728.1C735.9%20427.9%20741.2%20423.9%20741.2%20416.1C741.2%20407.9%20735.4%20404.3%20727.4%20404.3H715.4ZM75.4996%20404.1V424.8H90.4996C97.1996%20424.8%20102.1%20420.5%20102.1%20414.1C102.1%20407.4%2096.2996%20404.1%2089.7996%20404.1H75.4996Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1522.6%20313.3C1530.6%20319.1%201538.8%20323.4%201538.8%20332.6C1538.8%20335.3%201535.3%20337.9%201527.6%20337.9C1521.8%20337.9%201515.5%20336.4%201512.5%20332.1C1510.2%20328.9%201513.6%20324.7%201511.5%20321.5C1509.9%20318.9%201506.2%20320.2%201503.8%20318.9C1500.9%20317.3%201500.6%20316%201498.7%20312C1496.6%20307.3%201489.5%20299.3%201481%20290.9C1473.8%20283.7%201466.1%20280.1%201462.7%20280.3C1460.3%20280.6%201459.5%20280.6%201457.1%20280.6C1451%20280.6%201445.7%20286.4%201436.9%20290.1C1430.9%20292.7%201427.4%20294.3%201423.4%20294.8L1422.1%20296.4L1430%20296.2C1437.5%20296.2%201447.3%20295.1%201454.7%20295.1C1462.4%20295.1%201466.1%20302%201469.1%20309.1C1474.9%20323.6%201483.6%20344.5%201494%20362C1499%20370.2%201503.3%20375.5%201503.3%20385.5C1503.3%20388.7%201503%20392.9%201498.7%20392.9C1492.9%20392.9%201478.1%20386.9%201478.1%20380.2C1478.1%20375.2%201482%20373.1%201482%20368C1482%20364.9%201477.3%20365.4%201476.2%20362.5C1472.5%20346.9%201468%20331.6%201459.2%20322.3C1454.7%20317.6%201454.2%20315.4%201449.7%20315.4C1447.3%20315.4%201444.9%20316%201442.8%20316.8C1430.6%20321.3%201414.4%20334.8%201394.3%20340.8C1386.6%20343.2%201385.2%20338.7%201377.3%20340.3H1377.8C1371.4%20341.6%201366.4%20345.3%201357.6%20347.7C1345.4%20351.1%201324.5%20352.7%201307.8%20350.6C1295.9%20349%201280.4%20346.7%201273.8%20346.9C1268.8%20361.4%201257.9%20380.5%201242%20387.9C1233.5%20391.6%201230.9%20396.9%201233.5%20406.4C1236.7%20418.3%201247.3%20427%201252.9%20437C1257.9%20445.7%201266.1%20459.5%201274.9%20464C1283.6%20468.5%201289%20475.1%201289%20480.6C1289%20483.2%201287.9%20484.8%201285.2%20484.8H1267.7C1265.1%20484.8%201263.7%20483.2%201263.2%20482.2C1260.8%20477.7%201262.4%20473.5%201259.2%20469.5C1256.8%20466.6%201255%20467.4%201252.1%20465C1246.8%20460%201250.8%20457.1%201246.8%20450.7C1235.6%20433.3%201230.9%20429.1%201221.6%20416.7C1216.3%20410.1%201209.9%20406.9%201209.9%20398.2C1209.9%20387.6%201220.5%20385.8%201220.3%20375.2C1213.4%20380.2%201205.4%20384.2%201193.2%20385.8C1191.6%20386.1%201187.3%20389.2%201185.5%20391.3C1181.3%20395.6%201179.7%20399.8%201179.1%20406.1C1177.8%20420.4%201174.9%20434.9%201176.7%20449.2C1179.1%20458.4%201180.7%20461.6%201188.4%20466.6C1193.2%20469.8%201198.8%20474.3%201199.3%20480.9C1199.3%20482.7%201198.8%20484.8%201196.1%20484.8H1177.3C1175.4%20484.8%201173.8%20483.5%201173.3%20482.5C1171.2%20478.8%201172.5%20476.1%201171.7%20471.9C1169.9%20463.2%201160%20463.7%201160%20454.7C1160%20452.1%201161.6%20448.6%201161.9%20443.1C1162.4%20431%201166.1%20411.4%201162.4%20387.6C1160.8%20373.9%201175.2%20373.3%201182.6%20361.2C1187.1%20354.3%201185.8%20357.2%201188.4%20352.2C1191.1%20346.9%201190.5%20343.2%201190.3%20340C1190.3%20336.1%201186.3%20327.6%201189%20310.4C1190%20302.8%201193.7%20295.1%201198.8%20288.5C1198.8%20288.2%201198.8%20287.2%201197.2%20287.2C1189.7%20287.7%201189.7%20285.9%201184.7%20285.9C1179.9%20285.9%201176.2%20289.8%201175.4%20291.9C1173%20290.9%201172%20288.2%201172%20286.7C1172%20284%201172.5%20281.6%201175.2%20279C1176.2%20277.9%201175.2%20277.4%201173.8%20277.4C1168%20277.4%201162.4%20284.5%201161.1%20289.5C1157.7%20289%201157.4%20284.5%201155.8%20284.5C1154.2%20284.5%201153.2%20286.9%201153.2%20289.3C1153.2%20306.2%201180.7%20309.9%201180.7%20332.1C1180.7%20357.7%201149.7%20352.4%201149.7%20361.7C1149.7%20363.6%201151%20365.1%201153.4%20366.2C1152.4%20368.6%201149.7%20369.6%201146.8%20369.6C1139.9%20369.6%201134.9%20364.6%201134.9%20357.7C1134.9%20343.7%201153.7%20343.5%201153.7%20332.9C1153.7%20327.9%201150.5%20326.3%201147.6%20323.9C1129.6%20311.2%201119.5%20298.5%201119.5%20277.7C1119.5%20255.2%201135.1%20238%201155.5%20238C1185.2%20238%201186%20272.1%201213.1%20275C1223.2%20268.2%201235.1%20264.2%201246.8%20264.2C1264.3%20264.2%201272%20268.7%201290.5%20268.7C1298%20268.7%201310.4%20266.6%201325.3%20256.5C1330.9%20252.8%201333.2%20252.1%201338.3%20247.5C1349.9%20237.5%201360.8%20217.9%201360.8%20203.9V204.7C1360.8%20200.2%201359.8%20197.6%201357.6%20197.6C1351.3%20197.6%201345.7%20203.4%201339.3%20209.5C1335.4%20213.7%201341.5%20215.6%201332.4%20220.6C1329.3%20222.2%201325.6%20219.3%201322.1%20219.3C1314.9%20219.3%201311.8%20210.8%201311.8%20203.4C1311.8%20199.7%201314.7%20198.6%201316.3%20195.2C1320%20188.1%201319.7%20185.4%201323.2%20178.3C1325.3%20173.5%201329%20170.4%201328.7%20166.9C1328.7%20165.6%201327.7%20164.8%201327.7%20163.5C1327.7%20156.3%201337.2%20151.6%201337.2%20144.5C1337.2%20140.5%201332.7%20138.6%201331.7%20135.5C1330.6%20132.3%201331.4%20131.5%201331.4%20131.5C1331.7%20131%201332.2%20130.7%201332.7%20130.7C1336.4%20130.7%201338%20134.7%201341.5%20136.8C1341.7%20132%201340.1%20131%201340.1%20127.6C1340.1%20125.7%201339.9%20122.8%201341.7%20122.8C1344.1%20122.8%201343.8%20126%201346%20127.6C1348.6%20129.7%201351%20129.4%201353.9%20131.3C1357.6%20133.6%201359.8%20137.6%201361.1%20137.9C1364.8%20138.4%201365.9%20133.9%201364%20131.3C1368.2%20131%201372.5%20134.4%201378.1%20134.4C1386.8%20134.4%201389.8%20136.8%201391.3%20138.1C1396.9%20142.9%201398%20146.6%201404.1%20146.6C1407.2%20146.6%201408.8%20143.9%201409.6%20142.9C1413.9%20146%201414.1%20154%201409.6%20160.6C1411.5%20166.2%201419.4%20166.7%201423.2%20169.3C1426.9%20172%201426.3%20173.3%201429%20174.9C1431.1%20176.2%201433%20175.9%201434.6%20174.9C1436.4%20182.3%201430%20188.9%201422.4%20189.9C1422.6%20199.4%201432.7%20205.2%201437.2%20207.6C1434.6%20213.4%201429.8%20215.3%201425.5%20216.3C1426.9%20222.2%201433.2%20230.6%201430%20238.3C1427.1%20237%201422.9%20238.3%201422.9%20242.5C1422.9%20247.3%201429%20249.7%201422.6%20253.1C1419.7%20254.7%201419.2%20258.9%201424.5%20262.9C1431.4%20261%201438%20261.3%201445.7%20261.3C1450.5%20261.3%201456.8%20260%201461.1%20260C1469.1%20260%201473.8%20263.1%201479.7%20269.5C1494.3%20285.3%201507.5%20302%201522.6%20313.3Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--bayer { aspect-ratio:1.0000; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20viewBox%3D%220%200%201000%201000%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24891)%22%3E%20%3Cpath%20d%3D%22M998.685%20468.421C982.895%20207.895%20765.79%200%20500.001%200C234.211%200%2017.1059%20207.895%201.31641%20468.421C1.31641%20478.947%202.6322%20489.474%203.94799%20500C14.4743%20586.842%2047.369%20667.105%2097.369%20734.211C188.159%20857.895%20334.211%20938.158%20500.001%20938.158C268.422%20938.158%2078.948%20757.895%2063.1585%20531.579C61.8427%20521.053%2061.8427%20510.526%2061.8427%20500C61.8427%20489.474%2061.8427%20478.947%2063.1585%20468.421C78.948%20242.105%20268.422%2061.8421%20500.001%2061.8421C665.79%2061.8421%20811.843%20142.105%20902.632%20265.789C952.632%20332.895%20985.527%20413.158%20996.053%20500C997.369%20510.526%20998.685%20521.053%20998.685%20530.263C998.685%20519.737%201000%20509.211%201000%20498.684C1000%20489.474%201000%20478.947%20998.685%20468.421Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M1.31579%20531.579C17.1053%20792.105%20234.211%201000%20500%201000C765.789%201000%20982.895%20792.105%20998.684%20531.579C998.684%20521.052%20997.368%20510.526%20996.053%20500C985.526%20413.158%20952.632%20332.894%20902.632%20265.789C811.842%20142.105%20665.789%2061.8418%20500%2061.8418C731.579%2061.8418%20921.053%20242.105%20936.842%20468.421C938.158%20478.947%20938.158%20489.473%20938.158%20500C938.158%20510.526%20938.158%20521.052%20936.842%20531.579C921.053%20759.21%20731.579%20938.158%20500%20938.158C334.211%20938.158%20188.158%20857.894%2097.3684%20734.21C47.3684%20667.105%2014.4737%20586.842%203.94737%20500C2.63158%20489.473%201.31579%20478.947%201.31579%20469.737C1.31579%20480.263%200%20490.789%200%20501.316C0%20510.526%209.41126e-08%20521.052%201.31579%20531.579Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M438.159%2096.0527V234.211H534.212C557.896%20234.211%20576.317%20215.79%20576.317%20192.105C576.317%20180.263%20571.054%20169.737%20563.159%20161.842C568.422%20155.263%20572.369%20146.052%20573.685%20136.842C573.685%20114.473%20555.264%2096.0527%20532.896%2096.0527H438.159ZM469.737%20125H527.632C534.211%20125%20539.476%20130.263%20539.476%20136.842C539.476%20143.421%20534.211%20148.684%20527.632%20148.684H469.737V125ZM469.737%20177.631H528.948C536.843%20177.631%20542.106%20182.894%20542.106%20190.789C542.106%20198.684%20536.843%20203.947%20528.948%20203.947H469.737V177.631Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M484.212%20260.525L415.79%20398.684H451.317L461.843%20375H539.476L550.001%20398.684H585.526L515.79%20260.525H484.212ZM500.001%20296.053L523.685%20346.053H476.317L500.001%20296.053Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M547.369%20428.947H586.843L517.106%20518.421V567.105H484.211V518.421L414.475%20428.947H453.948L501.317%20492.105L547.369%20428.947Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M773.685%20428.947V567.105H806.579V514.475H831.579L871.054%20567.105H910.526L869.737%20513.158C886.843%20507.895%20900.001%20492.106%20900.001%20472.369C900.001%20448.685%20881.58%20428.947%20857.896%20428.947H773.685ZM807.896%20457.895H855.265C861.844%20457.895%20868.423%20464.474%20868.423%20471.053C868.423%20477.632%20863.159%20484.211%20855.265%20484.211H807.896V457.895Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M101.316%20428.947V567.105H197.369C221.053%20567.105%20239.475%20548.684%20239.475%20525C239.475%20513.158%20234.211%20502.631%20226.316%20494.736C231.58%20488.157%20235.526%20478.947%20236.842%20469.736C236.842%20447.368%20218.421%20428.947%20196.053%20428.947H101.316ZM132.895%20457.895H190.789C197.368%20457.895%20202.633%20463.157%20202.633%20469.736C202.633%20476.315%20197.368%20481.578%20190.789%20481.578H132.895V457.895ZM132.895%20510.525H192.105C200%20510.525%20205.264%20515.789%20205.264%20523.684C205.264%20531.578%20200%20536.842%20192.105%20536.842H132.895V510.525Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M327.633%20428.947L259.211%20567.106H294.738L305.264%20543.422H382.896L393.422%20567.106H428.947L359.211%20428.947H327.633ZM343.422%20464.475L367.105%20514.475H319.738L343.422%20464.475Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M730.264%20428.947V458.645H638.158V481.886H727.632V511.584H638.158V537.408H730.264V567.106H605.264V428.947H730.264Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M436.843%20768.422V906.58H469.737V853.949H494.737L534.212%20906.58H573.685L532.896%20852.633C550.001%20847.37%20563.159%20831.581%20563.159%20811.844C563.159%20788.16%20544.738%20768.422%20521.054%20768.422H436.843ZM471.054%20797.369H518.423C525.002%20797.369%20531.581%20803.948%20531.581%20810.527C531.581%20817.106%20526.318%20823.686%20518.423%20823.686H471.054V797.369Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M563.158%20597.061V626.758H471.053V650H560.527V679.697H471.053V705.521H563.158V735.219H438.158V597.061H563.158Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24891%22%3E%20%3Crect%20width%3D%221000%22%20height%3D%221000%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221000%22%20height%3D%221000%22%20viewBox%3D%220%200%201000%201000%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24891)%22%3E%20%3Cpath%20d%3D%22M998.685%20468.421C982.895%20207.895%20765.79%200%20500.001%200C234.211%200%2017.1059%20207.895%201.31641%20468.421C1.31641%20478.947%202.6322%20489.474%203.94799%20500C14.4743%20586.842%2047.369%20667.105%2097.369%20734.211C188.159%20857.895%20334.211%20938.158%20500.001%20938.158C268.422%20938.158%2078.948%20757.895%2063.1585%20531.579C61.8427%20521.053%2061.8427%20510.526%2061.8427%20500C61.8427%20489.474%2061.8427%20478.947%2063.1585%20468.421C78.948%20242.105%20268.422%2061.8421%20500.001%2061.8421C665.79%2061.8421%20811.843%20142.105%20902.632%20265.789C952.632%20332.895%20985.527%20413.158%20996.053%20500C997.369%20510.526%20998.685%20521.053%20998.685%20530.263C998.685%20519.737%201000%20509.211%201000%20498.684C1000%20489.474%201000%20478.947%20998.685%20468.421Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M1.31579%20531.579C17.1053%20792.105%20234.211%201000%20500%201000C765.789%201000%20982.895%20792.105%20998.684%20531.579C998.684%20521.052%20997.368%20510.526%20996.053%20500C985.526%20413.158%20952.632%20332.894%20902.632%20265.789C811.842%20142.105%20665.789%2061.8418%20500%2061.8418C731.579%2061.8418%20921.053%20242.105%20936.842%20468.421C938.158%20478.947%20938.158%20489.473%20938.158%20500C938.158%20510.526%20938.158%20521.052%20936.842%20531.579C921.053%20759.21%20731.579%20938.158%20500%20938.158C334.211%20938.158%20188.158%20857.894%2097.3684%20734.21C47.3684%20667.105%2014.4737%20586.842%203.94737%20500C2.63158%20489.473%201.31579%20478.947%201.31579%20469.737C1.31579%20480.263%200%20490.789%200%20501.316C0%20510.526%209.41126e-08%20521.052%201.31579%20531.579Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M438.159%2096.0527V234.211H534.212C557.896%20234.211%20576.317%20215.79%20576.317%20192.105C576.317%20180.263%20571.054%20169.737%20563.159%20161.842C568.422%20155.263%20572.369%20146.052%20573.685%20136.842C573.685%20114.473%20555.264%2096.0527%20532.896%2096.0527H438.159ZM469.737%20125H527.632C534.211%20125%20539.476%20130.263%20539.476%20136.842C539.476%20143.421%20534.211%20148.684%20527.632%20148.684H469.737V125ZM469.737%20177.631H528.948C536.843%20177.631%20542.106%20182.894%20542.106%20190.789C542.106%20198.684%20536.843%20203.947%20528.948%20203.947H469.737V177.631Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M484.212%20260.525L415.79%20398.684H451.317L461.843%20375H539.476L550.001%20398.684H585.526L515.79%20260.525H484.212ZM500.001%20296.053L523.685%20346.053H476.317L500.001%20296.053Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M547.369%20428.947H586.843L517.106%20518.421V567.105H484.211V518.421L414.475%20428.947H453.948L501.317%20492.105L547.369%20428.947Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M773.685%20428.947V567.105H806.579V514.475H831.579L871.054%20567.105H910.526L869.737%20513.158C886.843%20507.895%20900.001%20492.106%20900.001%20472.369C900.001%20448.685%20881.58%20428.947%20857.896%20428.947H773.685ZM807.896%20457.895H855.265C861.844%20457.895%20868.423%20464.474%20868.423%20471.053C868.423%20477.632%20863.159%20484.211%20855.265%20484.211H807.896V457.895Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M101.316%20428.947V567.105H197.369C221.053%20567.105%20239.475%20548.684%20239.475%20525C239.475%20513.158%20234.211%20502.631%20226.316%20494.736C231.58%20488.157%20235.526%20478.947%20236.842%20469.736C236.842%20447.368%20218.421%20428.947%20196.053%20428.947H101.316ZM132.895%20457.895H190.789C197.368%20457.895%20202.633%20463.157%20202.633%20469.736C202.633%20476.315%20197.368%20481.578%20190.789%20481.578H132.895V457.895ZM132.895%20510.525H192.105C200%20510.525%20205.264%20515.789%20205.264%20523.684C205.264%20531.578%20200%20536.842%20192.105%20536.842H132.895V510.525Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M327.633%20428.947L259.211%20567.106H294.738L305.264%20543.422H382.896L393.422%20567.106H428.947L359.211%20428.947H327.633ZM343.422%20464.475L367.105%20514.475H319.738L343.422%20464.475Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M730.264%20428.947V458.645H638.158V481.886H727.632V511.584H638.158V537.408H730.264V567.106H605.264V428.947H730.264Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M436.843%20768.422V906.58H469.737V853.949H494.737L534.212%20906.58H573.685L532.896%20852.633C550.001%20847.37%20563.159%20831.581%20563.159%20811.844C563.159%20788.16%20544.738%20768.422%20521.054%20768.422H436.843ZM471.054%20797.369H518.423C525.002%20797.369%20531.581%20803.948%20531.581%20810.527C531.581%20817.106%20526.318%20823.686%20518.423%20823.686H471.054V797.369Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M563.158%20597.061V626.758H471.053V650H560.527V679.697H471.053V705.521H563.158V735.219H438.158V597.061H563.158Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24891%22%3E%20%3Crect%20width%3D%221000%22%20height%3D%221000%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--mercer { aspect-ratio:6.3347; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221533%22%20height%3D%22242%22%20viewBox%3D%220%200%201533%20242%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_34049)%22%3E%20%3Cpath%20d%3D%22M634.9%203.79922C635.7%203.73255%20636.5%203.83255%20637.3%204.09922C638.033%204.36589%20638.7%204.79922%20639.3%205.39922C639.9%205.93255%20640.333%206.59922%20640.6%207.39922C640.866%208.19922%20640.933%208.99922%20640.8%209.79922V235.199C640.933%20235.999%20640.866%20236.799%20640.6%20237.599C640.333%20238.333%20639.9%20238.999%20639.3%20239.599C638.7%20240.199%20638.033%20240.633%20637.3%20240.899C636.5%20241.166%20635.7%20241.233%20634.9%20241.099H607.2C606.4%20241.233%20605.6%20241.166%20604.8%20240.899C604.066%20240.633%20603.4%20240.199%20602.8%20239.599C602.2%20238.999%20601.766%20238.333%20601.5%20237.599C601.3%20236.799%20601.233%20235.999%20601.3%20235.199V101.699H599.2L569.8%20235.799C569.666%20236.533%20569.4%20237.233%20569%20237.899C568.6%20238.566%20568.1%20239.166%20567.5%20239.699C566.966%20240.166%20566.333%20240.533%20565.6%20240.799C564.866%20241.066%20564.1%20241.166%20563.3%20241.099H548.7C547.966%20241.166%20547.233%20241.066%20546.5%20240.799C545.766%20240.533%20545.1%20240.166%20544.5%20239.699C543.9%20239.166%20543.4%20238.566%20543%20237.899C542.6%20237.233%20542.333%20236.533%20542.2%20235.799L512.7%20101.699H510.6V235.199C510.8%20235.999%20510.7%20236.799%20510.4%20237.599C510.1%20238.399%20509.7%20239.099%20509.1%20239.599C508.6%20240.199%20507.9%20240.599%20507.1%20240.899C506.3%20241.199%20505.5%20241.299%20504.7%20241.099H477.4C476.6%20241.299%20475.7%20241.199%20475%20240.899C474.2%20240.599%20473.5%20240.199%20472.9%20239.599C472.3%20239.099%20471.9%20238.399%20471.6%20237.599C471.4%20236.799%20471.3%20235.999%20471.4%20235.199V9.79922C471.3%208.99922%20471.4%208.09922%20471.6%207.39922C471.9%206.59922%20472.3%205.89922%20472.9%205.29922C473.5%204.79922%20474.2%204.29922%20475%204.09922C475.7%203.79922%20476.6%203.69922%20477.4%203.79922H516.3C517.033%203.79922%20517.766%203.93255%20518.5%204.19922C519.233%204.46589%20519.9%204.83255%20520.5%205.29922C521.1%205.76589%20521.6%206.33255%20522%206.99922C522.4%207.66589%20522.666%208.36589%20522.8%209.09922L555.7%20156.899L589.1%209.09922C589.233%208.36589%20589.5%207.66589%20589.9%206.99922C590.3%206.33255%20590.8%205.76589%20591.4%205.29922C592%204.83255%20592.666%204.46589%20593.4%204.19922C594.133%203.93255%20594.866%203.79922%20595.6%203.79922H634.9Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M818.9%2038.3008C818.9%2041.2008%20817.7%2043.2008%20814.1%2043.2008H739.8V102.601H796.6C797.267%20102.534%20797.9%20102.634%20798.5%20102.901C799.167%20103.101%20799.734%20103.467%20800.2%20104.001C800.667%20104.467%20801%20105.034%20801.2%20105.701C801.4%20106.367%20801.434%20107.034%20801.3%20107.701V137.001C801.434%20137.667%20801.4%20138.301%20801.2%20138.901C801%20139.567%20800.667%20140.167%20800.2%20140.701C799.734%20141.167%20799.167%20141.534%20798.5%20141.801C797.9%20142.001%20797.267%20142.067%20796.6%20142.001H739.8V202.001H814.1C817.7%20202.001%20818.9%20203.501%20818.9%20206.701V236.401C818.9%20239.301%20817.7%20241.101%20814.1%20241.101H704.8C704.134%20241.167%20703.534%20241.067%20703%20240.801C702.4%20240.601%20701.867%20240.267%20701.4%20239.801C701%20239.334%20700.7%20238.801%20700.5%20238.201C700.3%20237.601%20700.234%20237.001%20700.3%20236.401V8.50078C700.234%207.90078%20700.3%207.30078%20700.5%206.70078C700.7%206.10078%20701%205.60078%20701.4%205.20078C701.867%204.73411%20702.367%204.36745%20702.9%204.10078C703.5%203.90078%20704.134%203.80078%20704.8%203.80078H814.1C817.7%203.80078%20818.9%205.60078%20818.9%208.50078V38.3008Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M997.5%20118.899C997.5%20138.799%20990%20151.899%20975.8%20158.099L996.3%20235.799C997.2%20239.299%20995.4%20241.099%20992.1%20241.099H961.2C960.6%20241.166%20960%20241.133%20959.4%20240.999C958.867%20240.799%20958.367%20240.499%20957.9%20240.099C957.433%20239.699%20957.033%20239.233%20956.7%20238.699C956.433%20238.166%20956.267%20237.599%20956.2%20236.999L936.3%20161.799H915.8V236.399C915.867%20237.066%20915.767%20237.699%20915.5%20238.299C915.3%20238.899%20914.967%20239.433%20914.5%20239.899C914.033%20240.366%20913.5%20240.699%20912.9%20240.899C912.3%20241.099%20911.667%20241.166%20911%20241.099H880.1C879.433%20241.166%20878.8%20241.099%20878.2%20240.899C877.6%20240.699%20877.067%20240.366%20876.6%20239.899C876.133%20239.433%20875.8%20238.899%20875.6%20238.299C875.4%20237.699%20875.333%20237.066%20875.4%20236.399V8.4993C875.333%207.8993%20875.4%207.2993%20875.6%206.6993C875.8%206.0993%20876.133%205.56596%20876.6%205.0993C877.067%204.63263%20877.6%204.2993%20878.2%204.0993C878.8%203.83263%20879.433%203.73263%20880.1%203.7993H954.7C982.6%203.7993%20997.5%2018.5993%20997.5%2046.4993V118.899ZM945.2%20122.499C946.8%20122.699%20948.4%20122.499%20949.9%20121.999C951.5%20121.499%20952.9%20120.599%20954%20119.499C955.2%20118.299%20956%20116.999%20956.6%20115.399C957.1%20113.899%20957.3%20112.299%20957.1%20110.699V54.8993C957.3%2053.1993%20957.1%2051.5993%20956.6%2050.0993C956%2048.5993%20955.2%2047.1993%20954%2045.9993C952.9%2044.8993%20951.5%2043.9993%20949.9%2043.4993C948.4%2042.9993%20946.8%2042.7993%20945.2%2042.9993H915.8V122.499H945.2Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1176.1%2078.6008C1176.17%2079.2674%201176.1%2079.9008%201175.9%2080.5008C1175.63%2081.1008%201175.27%2081.6341%201174.8%2082.1008C1174.4%2082.5008%201173.87%2082.8341%201173.2%2083.1008C1172.6%2083.3008%201172%2083.3674%201171.4%2083.3008H1141.4C1140.73%2083.4341%201140.1%2083.4008%201139.5%2083.2008C1138.83%2082.9341%201138.27%2082.6008%201137.8%2082.2008C1137.33%2081.7341%201137%2081.1674%201136.8%2080.5008C1136.6%2079.9008%201136.53%2079.2674%201136.6%2078.6008V54.8008C1136.8%2053.2008%201136.6%2051.6008%201136.1%2050.1008C1135.6%2048.5008%201134.7%2047.2008%201133.6%2046.0008C1132.4%2044.9008%201131%2044.0008%201129.5%2043.5008C1128%2043.0008%201126.3%2042.8008%201124.7%2043.0008H1109.3C1107.7%2042.8008%201106%2042.9008%201104.5%2043.4008C1103%2043.9008%201101.6%2044.8008%201100.4%2046.0008C1099.3%2047.1008%201098.4%2048.5008%201097.9%2050.0008C1097.4%2051.6008%201097.2%2053.2008%201097.4%2054.8008V190.101C1097.2%20191.701%201097.4%20193.401%201097.9%20194.901C1098.4%20196.401%201099.3%20197.801%201100.4%20199.001C1101.6%20200.101%201103%20201.001%201104.5%20201.501C1106.1%20202.001%201107.7%20202.201%201109.3%20202.001H1124.7C1126.3%20202.201%201128%20202.001%201129.5%20201.501C1131.1%20201.001%201132.4%20200.101%201133.6%20199.001C1134.7%20197.801%201135.6%20196.401%201136.1%20194.901C1136.7%20193.401%201136.8%20191.701%201136.6%20190.101V166.401C1136.53%20165.734%201136.63%20165.101%201136.9%20164.501C1137.1%20163.901%201137.43%20163.401%201137.9%20163.001C1138.37%20162.534%201138.9%20162.201%201139.5%20162.001C1140.1%20161.801%201140.73%20161.734%201141.4%20161.801H1171.1C1171.77%20161.801%201172.4%20161.901%201173%20162.101C1173.6%20162.301%201174.13%20162.634%201174.6%20163.101C1175.07%20163.567%201175.4%20164.101%201175.6%20164.701C1175.8%20165.301%201175.87%20165.934%201175.8%20166.601V198.601C1175.8%20226.501%201160.7%20241.301%201133%20241.301H1099.8C1071.9%20241.301%201056.7%20226.501%201056.7%20198.601V46.5008C1056.7%2018.6008%201071.9%203.80078%201099.8%203.80078H1133C1160.7%203.80078%201175.8%2018.6008%201175.8%2046.5008L1176.1%2078.6008Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1354.2%2038.3008C1354.2%2041.2008%201352.9%2043.2008%201349.4%2043.2008H1275.1V102.601H1331.9C1332.57%20102.534%201333.2%20102.634%201333.8%20102.901C1334.47%20103.101%201335.03%20103.467%201335.5%20104.001C1335.97%20104.467%201336.3%20105.034%201336.5%20105.701C1336.7%20106.367%201336.73%20107.034%201336.6%20107.701V137.001C1336.73%20137.667%201336.7%20138.301%201336.5%20138.901C1336.3%20139.567%201335.97%20140.167%201335.5%20140.701C1335.03%20141.167%201334.47%20141.534%201333.8%20141.801C1333.2%20142.001%201332.57%20142.067%201331.9%20142.001H1275.1V202.001H1349.4C1352.9%20202.001%201354.2%20203.501%201354.2%20206.701V236.401C1354.2%20239.301%201352.9%20241.101%201349.4%20241.101H1240C1239.4%20241.167%201238.8%20241.067%201238.2%20240.801C1237.67%20240.601%201237.17%20240.267%201236.7%20239.801C1236.3%20239.334%201236%20238.801%201235.8%20238.201C1235.6%20237.601%201235.53%20237.001%201235.6%20236.401V8.50078C1235.53%207.90078%201235.6%207.30078%201235.8%206.70078C1236%206.10078%201236.3%205.60078%201236.7%205.20078C1237.17%204.73411%201237.67%204.36745%201238.2%204.10078C1238.8%203.90078%201239.4%203.80078%201240%203.80078H1349.4C1352.9%203.80078%201354.2%205.60078%201354.2%208.50078V38.3008Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1532.8%20118.899C1532.8%20138.799%201525.3%20151.899%201511.1%20158.099L1531.6%20235.799C1532.5%20239.299%201530.7%20241.099%201527.4%20241.099H1496.5C1495.9%20241.166%201495.3%20241.133%201494.7%20240.999C1494.17%20240.799%201493.67%20240.499%201493.2%20240.099C1492.67%20239.699%201492.27%20239.233%201492%20238.699C1491.73%20238.166%201491.57%20237.599%201491.5%20236.999L1471.6%20161.799H1451.1V236.399C1451.1%20237.066%201451%20237.699%201450.8%20238.299C1450.6%20238.899%201450.27%20239.433%201449.8%20239.899C1449.33%20240.366%201448.8%20240.699%201448.2%20240.899C1447.53%20241.099%201446.9%20241.166%201446.3%20241.099H1415.4C1414.73%20241.166%201414.1%20241.099%201413.5%20240.899C1412.9%20240.699%201412.37%20240.366%201411.9%20239.899C1411.43%20239.433%201411.1%20238.899%201410.9%20238.299C1410.7%20237.699%201410.63%20237.066%201410.7%20236.399V8.4993C1410.63%207.8993%201410.7%207.2993%201410.9%206.6993C1411.1%206.0993%201411.43%205.56596%201411.9%205.0993C1412.37%204.63263%201412.9%204.2993%201413.5%204.0993C1414.1%203.83263%201414.73%203.73263%201415.4%203.7993H1490C1517.9%203.7993%201532.8%2018.5993%201532.8%2046.4993V118.899ZM1480.4%20122.499C1482.1%20122.699%201483.7%20122.499%201485.2%20121.999C1486.8%20121.499%201488.2%20120.599%201489.3%20119.499C1490.4%20118.299%201491.3%20116.999%201491.9%20115.399C1492.4%20113.899%201492.6%20112.299%201492.4%20110.699V54.8993C1492.6%2053.1993%201492.4%2051.5993%201491.9%2050.0993C1491.3%2048.5993%201490.4%2047.1993%201489.3%2045.9993C1488.2%2044.8993%201486.8%2043.9993%201485.2%2043.4993C1483.7%2042.9993%201482.1%2042.7993%201480.4%2042.9993H1451.1V122.499H1480.4Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M0%20241.1L138.7%200V118.5L68.5%20241.5L0%20241.1Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M208.8%20241.1L138.7%20118.5V0L277.3%20241.1H208.8Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M122.2%20241.1L260.8%200V118.5L190.7%20241.5L122.2%20241.1Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M330.7%20241.1L260.8%20118.5V0L399.5%20241.1H330.7Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_34049%22%3E%20%3Crect%20width%3D%221533%22%20height%3D%22242%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221533%22%20height%3D%22242%22%20viewBox%3D%220%200%201533%20242%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_34049)%22%3E%20%3Cpath%20d%3D%22M634.9%203.79922C635.7%203.73255%20636.5%203.83255%20637.3%204.09922C638.033%204.36589%20638.7%204.79922%20639.3%205.39922C639.9%205.93255%20640.333%206.59922%20640.6%207.39922C640.866%208.19922%20640.933%208.99922%20640.8%209.79922V235.199C640.933%20235.999%20640.866%20236.799%20640.6%20237.599C640.333%20238.333%20639.9%20238.999%20639.3%20239.599C638.7%20240.199%20638.033%20240.633%20637.3%20240.899C636.5%20241.166%20635.7%20241.233%20634.9%20241.099H607.2C606.4%20241.233%20605.6%20241.166%20604.8%20240.899C604.066%20240.633%20603.4%20240.199%20602.8%20239.599C602.2%20238.999%20601.766%20238.333%20601.5%20237.599C601.3%20236.799%20601.233%20235.999%20601.3%20235.199V101.699H599.2L569.8%20235.799C569.666%20236.533%20569.4%20237.233%20569%20237.899C568.6%20238.566%20568.1%20239.166%20567.5%20239.699C566.966%20240.166%20566.333%20240.533%20565.6%20240.799C564.866%20241.066%20564.1%20241.166%20563.3%20241.099H548.7C547.966%20241.166%20547.233%20241.066%20546.5%20240.799C545.766%20240.533%20545.1%20240.166%20544.5%20239.699C543.9%20239.166%20543.4%20238.566%20543%20237.899C542.6%20237.233%20542.333%20236.533%20542.2%20235.799L512.7%20101.699H510.6V235.199C510.8%20235.999%20510.7%20236.799%20510.4%20237.599C510.1%20238.399%20509.7%20239.099%20509.1%20239.599C508.6%20240.199%20507.9%20240.599%20507.1%20240.899C506.3%20241.199%20505.5%20241.299%20504.7%20241.099H477.4C476.6%20241.299%20475.7%20241.199%20475%20240.899C474.2%20240.599%20473.5%20240.199%20472.9%20239.599C472.3%20239.099%20471.9%20238.399%20471.6%20237.599C471.4%20236.799%20471.3%20235.999%20471.4%20235.199V9.79922C471.3%208.99922%20471.4%208.09922%20471.6%207.39922C471.9%206.59922%20472.3%205.89922%20472.9%205.29922C473.5%204.79922%20474.2%204.29922%20475%204.09922C475.7%203.79922%20476.6%203.69922%20477.4%203.79922H516.3C517.033%203.79922%20517.766%203.93255%20518.5%204.19922C519.233%204.46589%20519.9%204.83255%20520.5%205.29922C521.1%205.76589%20521.6%206.33255%20522%206.99922C522.4%207.66589%20522.666%208.36589%20522.8%209.09922L555.7%20156.899L589.1%209.09922C589.233%208.36589%20589.5%207.66589%20589.9%206.99922C590.3%206.33255%20590.8%205.76589%20591.4%205.29922C592%204.83255%20592.666%204.46589%20593.4%204.19922C594.133%203.93255%20594.866%203.79922%20595.6%203.79922H634.9Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M818.9%2038.3008C818.9%2041.2008%20817.7%2043.2008%20814.1%2043.2008H739.8V102.601H796.6C797.267%20102.534%20797.9%20102.634%20798.5%20102.901C799.167%20103.101%20799.734%20103.467%20800.2%20104.001C800.667%20104.467%20801%20105.034%20801.2%20105.701C801.4%20106.367%20801.434%20107.034%20801.3%20107.701V137.001C801.434%20137.667%20801.4%20138.301%20801.2%20138.901C801%20139.567%20800.667%20140.167%20800.2%20140.701C799.734%20141.167%20799.167%20141.534%20798.5%20141.801C797.9%20142.001%20797.267%20142.067%20796.6%20142.001H739.8V202.001H814.1C817.7%20202.001%20818.9%20203.501%20818.9%20206.701V236.401C818.9%20239.301%20817.7%20241.101%20814.1%20241.101H704.8C704.134%20241.167%20703.534%20241.067%20703%20240.801C702.4%20240.601%20701.867%20240.267%20701.4%20239.801C701%20239.334%20700.7%20238.801%20700.5%20238.201C700.3%20237.601%20700.234%20237.001%20700.3%20236.401V8.50078C700.234%207.90078%20700.3%207.30078%20700.5%206.70078C700.7%206.10078%20701%205.60078%20701.4%205.20078C701.867%204.73411%20702.367%204.36745%20702.9%204.10078C703.5%203.90078%20704.134%203.80078%20704.8%203.80078H814.1C817.7%203.80078%20818.9%205.60078%20818.9%208.50078V38.3008Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M997.5%20118.899C997.5%20138.799%20990%20151.899%20975.8%20158.099L996.3%20235.799C997.2%20239.299%20995.4%20241.099%20992.1%20241.099H961.2C960.6%20241.166%20960%20241.133%20959.4%20240.999C958.867%20240.799%20958.367%20240.499%20957.9%20240.099C957.433%20239.699%20957.033%20239.233%20956.7%20238.699C956.433%20238.166%20956.267%20237.599%20956.2%20236.999L936.3%20161.799H915.8V236.399C915.867%20237.066%20915.767%20237.699%20915.5%20238.299C915.3%20238.899%20914.967%20239.433%20914.5%20239.899C914.033%20240.366%20913.5%20240.699%20912.9%20240.899C912.3%20241.099%20911.667%20241.166%20911%20241.099H880.1C879.433%20241.166%20878.8%20241.099%20878.2%20240.899C877.6%20240.699%20877.067%20240.366%20876.6%20239.899C876.133%20239.433%20875.8%20238.899%20875.6%20238.299C875.4%20237.699%20875.333%20237.066%20875.4%20236.399V8.4993C875.333%207.8993%20875.4%207.2993%20875.6%206.6993C875.8%206.0993%20876.133%205.56596%20876.6%205.0993C877.067%204.63263%20877.6%204.2993%20878.2%204.0993C878.8%203.83263%20879.433%203.73263%20880.1%203.7993H954.7C982.6%203.7993%20997.5%2018.5993%20997.5%2046.4993V118.899ZM945.2%20122.499C946.8%20122.699%20948.4%20122.499%20949.9%20121.999C951.5%20121.499%20952.9%20120.599%20954%20119.499C955.2%20118.299%20956%20116.999%20956.6%20115.399C957.1%20113.899%20957.3%20112.299%20957.1%20110.699V54.8993C957.3%2053.1993%20957.1%2051.5993%20956.6%2050.0993C956%2048.5993%20955.2%2047.1993%20954%2045.9993C952.9%2044.8993%20951.5%2043.9993%20949.9%2043.4993C948.4%2042.9993%20946.8%2042.7993%20945.2%2042.9993H915.8V122.499H945.2Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1176.1%2078.6008C1176.17%2079.2674%201176.1%2079.9008%201175.9%2080.5008C1175.63%2081.1008%201175.27%2081.6341%201174.8%2082.1008C1174.4%2082.5008%201173.87%2082.8341%201173.2%2083.1008C1172.6%2083.3008%201172%2083.3674%201171.4%2083.3008H1141.4C1140.73%2083.4341%201140.1%2083.4008%201139.5%2083.2008C1138.83%2082.9341%201138.27%2082.6008%201137.8%2082.2008C1137.33%2081.7341%201137%2081.1674%201136.8%2080.5008C1136.6%2079.9008%201136.53%2079.2674%201136.6%2078.6008V54.8008C1136.8%2053.2008%201136.6%2051.6008%201136.1%2050.1008C1135.6%2048.5008%201134.7%2047.2008%201133.6%2046.0008C1132.4%2044.9008%201131%2044.0008%201129.5%2043.5008C1128%2043.0008%201126.3%2042.8008%201124.7%2043.0008H1109.3C1107.7%2042.8008%201106%2042.9008%201104.5%2043.4008C1103%2043.9008%201101.6%2044.8008%201100.4%2046.0008C1099.3%2047.1008%201098.4%2048.5008%201097.9%2050.0008C1097.4%2051.6008%201097.2%2053.2008%201097.4%2054.8008V190.101C1097.2%20191.701%201097.4%20193.401%201097.9%20194.901C1098.4%20196.401%201099.3%20197.801%201100.4%20199.001C1101.6%20200.101%201103%20201.001%201104.5%20201.501C1106.1%20202.001%201107.7%20202.201%201109.3%20202.001H1124.7C1126.3%20202.201%201128%20202.001%201129.5%20201.501C1131.1%20201.001%201132.4%20200.101%201133.6%20199.001C1134.7%20197.801%201135.6%20196.401%201136.1%20194.901C1136.7%20193.401%201136.8%20191.701%201136.6%20190.101V166.401C1136.53%20165.734%201136.63%20165.101%201136.9%20164.501C1137.1%20163.901%201137.43%20163.401%201137.9%20163.001C1138.37%20162.534%201138.9%20162.201%201139.5%20162.001C1140.1%20161.801%201140.73%20161.734%201141.4%20161.801H1171.1C1171.77%20161.801%201172.4%20161.901%201173%20162.101C1173.6%20162.301%201174.13%20162.634%201174.6%20163.101C1175.07%20163.567%201175.4%20164.101%201175.6%20164.701C1175.8%20165.301%201175.87%20165.934%201175.8%20166.601V198.601C1175.8%20226.501%201160.7%20241.301%201133%20241.301H1099.8C1071.9%20241.301%201056.7%20226.501%201056.7%20198.601V46.5008C1056.7%2018.6008%201071.9%203.80078%201099.8%203.80078H1133C1160.7%203.80078%201175.8%2018.6008%201175.8%2046.5008L1176.1%2078.6008Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1354.2%2038.3008C1354.2%2041.2008%201352.9%2043.2008%201349.4%2043.2008H1275.1V102.601H1331.9C1332.57%20102.534%201333.2%20102.634%201333.8%20102.901C1334.47%20103.101%201335.03%20103.467%201335.5%20104.001C1335.97%20104.467%201336.3%20105.034%201336.5%20105.701C1336.7%20106.367%201336.73%20107.034%201336.6%20107.701V137.001C1336.73%20137.667%201336.7%20138.301%201336.5%20138.901C1336.3%20139.567%201335.97%20140.167%201335.5%20140.701C1335.03%20141.167%201334.47%20141.534%201333.8%20141.801C1333.2%20142.001%201332.57%20142.067%201331.9%20142.001H1275.1V202.001H1349.4C1352.9%20202.001%201354.2%20203.501%201354.2%20206.701V236.401C1354.2%20239.301%201352.9%20241.101%201349.4%20241.101H1240C1239.4%20241.167%201238.8%20241.067%201238.2%20240.801C1237.67%20240.601%201237.17%20240.267%201236.7%20239.801C1236.3%20239.334%201236%20238.801%201235.8%20238.201C1235.6%20237.601%201235.53%20237.001%201235.6%20236.401V8.50078C1235.53%207.90078%201235.6%207.30078%201235.8%206.70078C1236%206.10078%201236.3%205.60078%201236.7%205.20078C1237.17%204.73411%201237.67%204.36745%201238.2%204.10078C1238.8%203.90078%201239.4%203.80078%201240%203.80078H1349.4C1352.9%203.80078%201354.2%205.60078%201354.2%208.50078V38.3008Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1532.8%20118.899C1532.8%20138.799%201525.3%20151.899%201511.1%20158.099L1531.6%20235.799C1532.5%20239.299%201530.7%20241.099%201527.4%20241.099H1496.5C1495.9%20241.166%201495.3%20241.133%201494.7%20240.999C1494.17%20240.799%201493.67%20240.499%201493.2%20240.099C1492.67%20239.699%201492.27%20239.233%201492%20238.699C1491.73%20238.166%201491.57%20237.599%201491.5%20236.999L1471.6%20161.799H1451.1V236.399C1451.1%20237.066%201451%20237.699%201450.8%20238.299C1450.6%20238.899%201450.27%20239.433%201449.8%20239.899C1449.33%20240.366%201448.8%20240.699%201448.2%20240.899C1447.53%20241.099%201446.9%20241.166%201446.3%20241.099H1415.4C1414.73%20241.166%201414.1%20241.099%201413.5%20240.899C1412.9%20240.699%201412.37%20240.366%201411.9%20239.899C1411.43%20239.433%201411.1%20238.899%201410.9%20238.299C1410.7%20237.699%201410.63%20237.066%201410.7%20236.399V8.4993C1410.63%207.8993%201410.7%207.2993%201410.9%206.6993C1411.1%206.0993%201411.43%205.56596%201411.9%205.0993C1412.37%204.63263%201412.9%204.2993%201413.5%204.0993C1414.1%203.83263%201414.73%203.73263%201415.4%203.7993H1490C1517.9%203.7993%201532.8%2018.5993%201532.8%2046.4993V118.899ZM1480.4%20122.499C1482.1%20122.699%201483.7%20122.499%201485.2%20121.999C1486.8%20121.499%201488.2%20120.599%201489.3%20119.499C1490.4%20118.299%201491.3%20116.999%201491.9%20115.399C1492.4%20113.899%201492.6%20112.299%201492.4%20110.699V54.8993C1492.6%2053.1993%201492.4%2051.5993%201491.9%2050.0993C1491.3%2048.5993%201490.4%2047.1993%201489.3%2045.9993C1488.2%2044.8993%201486.8%2043.9993%201485.2%2043.4993C1483.7%2042.9993%201482.1%2042.7993%201480.4%2042.9993H1451.1V122.499H1480.4Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M0%20241.1L138.7%200V118.5L68.5%20241.5L0%20241.1Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M208.8%20241.1L138.7%20118.5V0L277.3%20241.1H208.8Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M122.2%20241.1L260.8%200V118.5L190.7%20241.5L122.2%20241.1Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M330.7%20241.1L260.8%20118.5V0L399.5%20241.1H330.7Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_34049%22%3E%20%3Crect%20width%3D%221533%22%20height%3D%22242%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--nyu { aspect-ratio:2.9375; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221222%22%20height%3D%22416%22%20viewBox%3D%220%200%201222%20416%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_32072)%22%3E%20%3Cmask%20id%3D%22mask0_6822_32072%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%221223%22%20height%3D%22416%22%3E%20%3Cpath%20d%3D%22M0%203.33786e-06V416H1222.01V3.33786e-06H0Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_32072)%22%3E%20%3Cpath%20d%3D%22M524.092%2088.0022H572.061L682.787%20233.507V88.0022H734.115V324.308H689.891L575.403%20174.085V324.308H524.092V88.0022Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M850.923%20231.129L760.096%2088.0022H820.895L877.294%20182.872L934.692%2088.0022H993.759L902.944%20230.129V324.308H850.923V231.129Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1016.05%20223.034V88.0021H1068.07V221.692C1068.07%20260.161%201087.26%20280.083%201119.04%20280.083C1150.75%20280.083%201170.03%20260.824%201170.03%20223.388V88.0021H1222.01V221.342C1222.01%20292.891%201181.82%20328.009%201118.33%20328.009C1054.88%20328.009%201016.05%20292.578%201016.05%20223.034Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M45.3145%20388.405H356.28V28.8888H45.3145V388.405Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M183.388%20216.973C140.735%20191.533%20145.003%20155.199%20162.681%20128.495C163.06%20127.935%20163.18%20127.003%20163.06%20125.92C162.32%20119.569%20155.389%20103.501%20152.494%2099.1313C151.753%2098.0235%20151.121%2098.1144%20151.048%2098.9017C150.814%20106.166%20142.541%20124.373%20129.879%20145.341C116.422%20167.657%20116.392%20216.089%20183.2%20217.979C183.839%20217.996%20184.02%20217.34%20183.388%20216.973ZM194.797%20215.095C169.298%20160.641%20220.302%20125.469%20228.61%20117.842C229.785%20116.771%20229.49%20115.784%20229.513%20114.562C229.513%2097.4164%20219.687%2069.6769%20216.467%2065.7095C216.016%2065.0963%20215.63%2065.3613%20215.442%2065.9807C211.089%2082.8811%20187.879%20108.069%20183.2%20113.582C143.823%20160.382%20152.837%20188.879%20193.948%20215.758C194.472%20216.089%20195.104%20215.71%20194.797%20215.095ZM203.107%20212.779C215.154%20155.019%20262.184%20153.61%20266.392%20142.651C272.955%20125.558%20260.944%2095.2255%20257.873%2091.6386C257.577%2091.2535%20257.15%2091.5%20256.999%2091.8189C250.624%20105.812%20240.286%20119.136%20232.741%20125.258C222.066%20133.852%20181.213%20164.12%20202.106%20212.821C202.347%20213.423%20202.962%20213.272%20203.107%20212.779ZM211.469%20217.791C287.617%20220.549%20293.006%20151.185%20293.306%20125.227C293.342%20123.723%20292.583%20123.591%20292.223%20124.643C289.964%20130.06%20280.066%20149.404%20252.611%20161.165C228.092%20171.679%20213.348%20195.535%20210.776%20216.973C210.662%20217.503%20211.114%20217.791%20211.469%20217.791ZM228.792%20243.791V226.327H168.732V243.791H228.792ZM193.677%20367.37C194.165%20370.289%20200.48%20371.722%20201.895%20367.37L216.443%20252.135H181.105L193.677%20367.37ZM416.146%20416H0V3.33786e-06H416.146V416Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_32072%22%3E%20%3Crect%20width%3D%221222%22%20height%3D%22416%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221222%22%20height%3D%22416%22%20viewBox%3D%220%200%201222%20416%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_32072)%22%3E%20%3Cmask%20id%3D%22mask0_6822_32072%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%221223%22%20height%3D%22416%22%3E%20%3Cpath%20d%3D%22M0%203.33786e-06V416H1222.01V3.33786e-06H0Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_32072)%22%3E%20%3Cpath%20d%3D%22M524.092%2088.0022H572.061L682.787%20233.507V88.0022H734.115V324.308H689.891L575.403%20174.085V324.308H524.092V88.0022Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M850.923%20231.129L760.096%2088.0022H820.895L877.294%20182.872L934.692%2088.0022H993.759L902.944%20230.129V324.308H850.923V231.129Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1016.05%20223.034V88.0021H1068.07V221.692C1068.07%20260.161%201087.26%20280.083%201119.04%20280.083C1150.75%20280.083%201170.03%20260.824%201170.03%20223.388V88.0021H1222.01V221.342C1222.01%20292.891%201181.82%20328.009%201118.33%20328.009C1054.88%20328.009%201016.05%20292.578%201016.05%20223.034Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M45.3145%20388.405H356.28V28.8888H45.3145V388.405Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M183.388%20216.973C140.735%20191.533%20145.003%20155.199%20162.681%20128.495C163.06%20127.935%20163.18%20127.003%20163.06%20125.92C162.32%20119.569%20155.389%20103.501%20152.494%2099.1313C151.753%2098.0235%20151.121%2098.1144%20151.048%2098.9017C150.814%20106.166%20142.541%20124.373%20129.879%20145.341C116.422%20167.657%20116.392%20216.089%20183.2%20217.979C183.839%20217.996%20184.02%20217.34%20183.388%20216.973ZM194.797%20215.095C169.298%20160.641%20220.302%20125.469%20228.61%20117.842C229.785%20116.771%20229.49%20115.784%20229.513%20114.562C229.513%2097.4164%20219.687%2069.6769%20216.467%2065.7095C216.016%2065.0963%20215.63%2065.3613%20215.442%2065.9807C211.089%2082.8811%20187.879%20108.069%20183.2%20113.582C143.823%20160.382%20152.837%20188.879%20193.948%20215.758C194.472%20216.089%20195.104%20215.71%20194.797%20215.095ZM203.107%20212.779C215.154%20155.019%20262.184%20153.61%20266.392%20142.651C272.955%20125.558%20260.944%2095.2255%20257.873%2091.6386C257.577%2091.2535%20257.15%2091.5%20256.999%2091.8189C250.624%20105.812%20240.286%20119.136%20232.741%20125.258C222.066%20133.852%20181.213%20164.12%20202.106%20212.821C202.347%20213.423%20202.962%20213.272%20203.107%20212.779ZM211.469%20217.791C287.617%20220.549%20293.006%20151.185%20293.306%20125.227C293.342%20123.723%20292.583%20123.591%20292.223%20124.643C289.964%20130.06%20280.066%20149.404%20252.611%20161.165C228.092%20171.679%20213.348%20195.535%20210.776%20216.973C210.662%20217.503%20211.114%20217.791%20211.469%20217.791ZM228.792%20243.791V226.327H168.732V243.791H228.792ZM193.677%20367.37C194.165%20370.289%20200.48%20371.722%20201.895%20367.37L216.443%20252.135H181.105L193.677%20367.37ZM416.146%20416H0V3.33786e-06H416.146V416Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_32072%22%3E%20%3Crect%20width%3D%221222%22%20height%3D%22416%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--orange { aspect-ratio:3.5854; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221470%22%20height%3D%22410%22%20viewBox%3D%2270%20245%201470%20410%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M1365.5%20256.6C1384.7%20256.7%201404%20256.6%201423.2%20256.7C1423.2%20260.033%201423.2%20263.366%201423.2%20266.7C1415.7%20266.7%201408.1%20266.7%201400.5%20266.7C1400.5%20287.7%201400.5%20308.7%201400.5%20329.6C1396.37%20329.6%201392.27%20329.633%201388.2%20329.7C1388.1%20308.7%201388.2%20287.7%201388.1%20266.7C1380.6%20266.7%201373%20266.7%201365.5%20266.7C1365.43%20263.366%201365.43%20260%201365.5%20256.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1437.6%20256.7C1443.87%20256.7%201450.17%20256.7%201456.5%20256.7C1463.6%20274.9%201470.8%20293.2%201477.9%20311.4C1484.9%20293.2%201492%20275%201499%20256.7C1505.2%20256.634%201511.43%20256.634%201517.7%20256.7C1517.7%20281%201517.8%20305.3%201517.6%20329.7C1513.53%20329.634%201509.47%20329.6%201505.4%20329.6C1505.3%20309.6%201505.4%20289.6%201505.3%20269.6C1497.1%20289.5%201489.6%20309.6%201481.6%20329.6C1478.93%20329.6%201476.27%20329.6%201473.6%20329.6C1465.8%20309.7%201458.3%20289.6%201450.1%20269.9C1449.8%20289.8%201450%20309.7%201449.9%20329.6C1445.83%20329.6%201441.73%20329.6%201437.6%20329.6C1437.53%20305.267%201437.53%20280.967%201437.6%20256.7Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M187.199%20334.501C212.399%20333.101%20238.499%20339.001%20259.399%20353.701C277.299%20366.301%20290.299%20385.401%20296.699%20406.401C303.499%20428.801%20304.299%20452.701%20300.999%20475.801C297.999%20495.601%20290.499%20515.101%20277.499%20530.601C263.199%20548.101%20242.299%20559.701%20220.299%20564.201C196.499%20569.101%20171.199%20567.501%20148.699%20558.301C129.999%20550.801%20113.699%20537.201%20102.999%20520.001C89.8993%20499.001%2084.9993%20473.701%2085.4993%20449.101C85.2993%20423.101%2091.5993%20396.101%20107.299%20374.901C125.599%20349.601%20156.499%20335.701%20187.199%20334.501ZM184.799%20384.301C172.899%20385.801%20161.899%20392.501%20155.099%20402.401C146.499%20415.301%20143.799%20431.101%20143.199%20446.401C142.899%20463.301%20144.799%20481.101%20153.399%20496.001C159.299%20506.301%20169.699%20513.901%20181.299%20516.301C195.599%20519.201%20211.699%20517.701%20223.699%20508.701C234.399%20500.601%20240.199%20487.501%20242.799%20474.601C245.699%20459.901%20245.799%20444.601%20243.399%20429.801C241.099%20416.601%20236.099%20403.101%20225.699%20394.201C214.699%20384.501%20198.899%20382.201%20184.799%20384.301Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M397.299%20365.6C413.899%20346.2%20439.599%20333.5%20465.399%20335.9C465.399%20354.1%20465.399%20372.3%20465.399%20390.5C448.999%20390.7%20431.999%20391.3%20416.899%20398.5C410.399%20401.9%20403.799%20407.1%20401.399%20414.2C401.199%20463%20401.399%20511.8%20401.299%20560.6C381.599%20560.5%20361.899%20560.6%20342.199%20560.5C342.199%20487.1%20342.199%20413.6%20342.199%20340.1C360.499%20339.9%20378.899%20340%20397.299%20340C397.299%20348.533%20397.299%20357.066%20397.299%20365.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M541.901%20341.899C564.301%20334.699%20588.5%20334.099%20611.8%20337.399C631.3%20340.499%20651.601%20348.299%20663.901%20364.599C673.301%20376.699%20676.1%20392.599%20675.1%20407.599C675.2%20458.599%20674.701%20509.599%20675.401%20560.599C658.134%20560.599%20640.901%20560.599%20623.701%20560.599C621.967%20554.199%20620.267%20547.833%20618.6%20541.499C603.5%20551.399%20586.501%20558.299%20568.701%20561.299C550.801%20564.199%20531.701%20564.599%20514.901%20556.799C500.301%20550.199%20489.001%20537.199%20484.201%20521.899C478.401%20503.299%20479.5%20481.899%20489.9%20465.099C499.3%20450.199%20514.701%20440.299%20530.501%20433.399C558.501%20421.499%20588.901%20416.599%20619.001%20412.999C618.701%20403.999%20620.6%20393.599%20614.1%20386.199C605%20375.799%20589.6%20375.099%20576.8%20376.199C558.9%20377.599%20542.401%20387.199%20531.201%20401.099C518.001%20393.699%20504.9%20386.199%20491.8%20378.599C503.9%20361.299%20521.801%20348.299%20541.901%20341.899ZM565.501%20460.399C556.401%20464.399%20547.301%20469.799%20542.201%20478.599C535.401%20489.899%20536.701%20505.599%20545.501%20515.499C550.101%20520.399%20556.8%20523.299%20563.6%20523.199C583.8%20523.499%20602.6%20513.099%20617.3%20499.899C617.2%20482.699%20617.3%20465.499%20617.3%20448.299C599.7%20450.599%20581.901%20453.599%20565.501%20460.399Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M829.5%20337.099C848%20333.599%20867.9%20334.299%20885.2%20342.099C898%20347.899%20907.8%20359.399%20912.5%20372.699C916.1%20382.499%20917.5%20393.099%20917.8%20403.599C917.8%20455.799%20917.8%20507.999%20917.8%20560.199C898.4%20560.199%20879%20560.299%20859.7%20560.199C859.7%20511.099%20859.7%20462.099%20859.7%20412.999C859.3%20403.299%20858.3%20392.699%20851.8%20385.099C845.2%20377.899%20834.5%20377.399%20825.5%20378.399C807.5%20380.599%20791.9%20390.999%20778.2%20402.299C778.2%20454.966%20778.2%20507.599%20778.2%20560.199C759%20560.199%20739.7%20560.299%20720.5%20560.199C720.5%20488.799%20720.4%20417.399%20720.5%20345.999C736.566%20343.732%20752.666%20341.499%20768.8%20339.299C770.3%20347.999%20772.2%20356.599%20773.9%20365.199C790.8%20352.999%20808.9%20341.399%20829.5%20337.099Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M980.5%20369.2C994.1%20350.5%201015.6%20337.3%201038.9%20335.5C1053.8%20334.7%201069.2%20336%201083.1%20341.7C1093.7%20346%201103.6%20353.3%201108.7%20363.9C1110.1%20355.7%201111.7%20347.7%201113%20339.5C1129.4%20339.1%201145.8%20339.5%201162.1%20339.4C1162.1%20412.133%201162.1%20484.867%201162.1%20557.6C1161.8%20579%201157.1%20601.8%201141.9%20617.9C1124.9%20635.8%201099.8%20642.5%201076.1%20644.9C1048.7%20647.6%201019.5%20646%20994.9%20632.4C979.1%20623.8%20966.7%20608.7%20963.2%20590.8C982.333%20587.733%201001.43%20584.667%201020.5%20581.6C1022%20587.2%201024.6%20593%201029.7%20596.2C1039.9%20602.9%201052.6%20603.3%201064.4%20603.1C1075.6%20603.1%201087.7%20600%201095.4%20591.4C1103.9%20581.9%201105.7%20568.5%201106.1%20556.2C1106%20546.9%201106.3%20537.7%201105.8%20528.4C1100%20537.8%201093.1%20547%201083.3%20552.5C1069.1%20560.5%201052.2%20561.2%201036.4%20559.7C1014.7%20557.4%20993.8%20546.7%20980.3%20529.4C963.3%20508%20957.4%20480%20957.1%20453.2C956.6%20423.8%20962.8%20393.2%20980.5%20369.2ZM1051.3%20377.3C1042.8%20378.8%201035%20383.4%201029.4%20390C1021.5%20399.3%201017.8%20411.5%201016.1%20423.4C1014.3%20437%201014.7%20450.8%201015.9%20464.4C1017.5%20477.8%201020.7%20492%201030.4%20502C1037.6%20509.8%201048.5%20513.1%201058.9%20512.8C1070%20513%201081.6%20509.4%201089.5%20501.3C1098.3%20492.3%201102.3%20480%201104.4%20467.9C1106.2%20456.4%201106.7%20444.7%201106.3%20433.1C1105.3%20417.3%201100.7%20400.8%201089.4%20389.2C1079.7%20379.1%201064.9%20374.8%201051.3%20377.3Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1222.1%20367.6C1236.9%20349.5%201259.3%20338.9%201282.2%20336.2C1307.9%20333.2%201335.4%20336.2%201357.5%20350.5C1375.5%20362%201388%20380.7%201394.1%20401C1399.7%20419.6%201401.5%20439.4%201399.9%20458.8C1351.2%20458.8%201302.6%20458.8%201254%20458.8C1254.1%20473.6%201256.3%20489%201264.3%20501.7C1270.8%20512%201282.2%20518.6%201294.1%20520.3C1306.5%20522.1%201319.7%20521.4%201331%20515.6C1341%20510.6%201348.8%20502%201355.1%20492.9C1369.3%20500.833%201383.53%20508.733%201397.8%20516.6C1384.7%20539.8%201360.6%20555.2%201334.9%20560.8C1308.7%20566.4%201280.5%20566.5%201255.4%20556.3C1235.8%20548.6%201219.6%20533.1%201210.2%20514.3C1198%20490.2%201195.5%20462.4%201197.3%20435.8C1199%20411.4%201206.1%20386.5%201222.1%20367.6ZM1267.4%20387.6C1259.3%20396.7%201255.8%20409%201254.8%20421C1284.4%20421%201313.9%20421%201343.5%20421C1343.2%20409.2%201340.5%20396.8%201332.4%20387.9C1323.3%20377.5%201308.8%20373.8%201295.4%20374.8C1285%20375.4%201274.5%20379.7%201267.4%20387.6Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221470%22%20height%3D%22410%22%20viewBox%3D%2270%20245%201470%20410%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M1365.5%20256.6C1384.7%20256.7%201404%20256.6%201423.2%20256.7C1423.2%20260.033%201423.2%20263.366%201423.2%20266.7C1415.7%20266.7%201408.1%20266.7%201400.5%20266.7C1400.5%20287.7%201400.5%20308.7%201400.5%20329.6C1396.37%20329.6%201392.27%20329.633%201388.2%20329.7C1388.1%20308.7%201388.2%20287.7%201388.1%20266.7C1380.6%20266.7%201373%20266.7%201365.5%20266.7C1365.43%20263.366%201365.43%20260%201365.5%20256.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1437.6%20256.7C1443.87%20256.7%201450.17%20256.7%201456.5%20256.7C1463.6%20274.9%201470.8%20293.2%201477.9%20311.4C1484.9%20293.2%201492%20275%201499%20256.7C1505.2%20256.634%201511.43%20256.634%201517.7%20256.7C1517.7%20281%201517.8%20305.3%201517.6%20329.7C1513.53%20329.634%201509.47%20329.6%201505.4%20329.6C1505.3%20309.6%201505.4%20289.6%201505.3%20269.6C1497.1%20289.5%201489.6%20309.6%201481.6%20329.6C1478.93%20329.6%201476.27%20329.6%201473.6%20329.6C1465.8%20309.7%201458.3%20289.6%201450.1%20269.9C1449.8%20289.8%201450%20309.7%201449.9%20329.6C1445.83%20329.6%201441.73%20329.6%201437.6%20329.6C1437.53%20305.267%201437.53%20280.967%201437.6%20256.7Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M187.199%20334.501C212.399%20333.101%20238.499%20339.001%20259.399%20353.701C277.299%20366.301%20290.299%20385.401%20296.699%20406.401C303.499%20428.801%20304.299%20452.701%20300.999%20475.801C297.999%20495.601%20290.499%20515.101%20277.499%20530.601C263.199%20548.101%20242.299%20559.701%20220.299%20564.201C196.499%20569.101%20171.199%20567.501%20148.699%20558.301C129.999%20550.801%20113.699%20537.201%20102.999%20520.001C89.8993%20499.001%2084.9993%20473.701%2085.4993%20449.101C85.2993%20423.101%2091.5993%20396.101%20107.299%20374.901C125.599%20349.601%20156.499%20335.701%20187.199%20334.501ZM184.799%20384.301C172.899%20385.801%20161.899%20392.501%20155.099%20402.401C146.499%20415.301%20143.799%20431.101%20143.199%20446.401C142.899%20463.301%20144.799%20481.101%20153.399%20496.001C159.299%20506.301%20169.699%20513.901%20181.299%20516.301C195.599%20519.201%20211.699%20517.701%20223.699%20508.701C234.399%20500.601%20240.199%20487.501%20242.799%20474.601C245.699%20459.901%20245.799%20444.601%20243.399%20429.801C241.099%20416.601%20236.099%20403.101%20225.699%20394.201C214.699%20384.501%20198.899%20382.201%20184.799%20384.301Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M397.299%20365.6C413.899%20346.2%20439.599%20333.5%20465.399%20335.9C465.399%20354.1%20465.399%20372.3%20465.399%20390.5C448.999%20390.7%20431.999%20391.3%20416.899%20398.5C410.399%20401.9%20403.799%20407.1%20401.399%20414.2C401.199%20463%20401.399%20511.8%20401.299%20560.6C381.599%20560.5%20361.899%20560.6%20342.199%20560.5C342.199%20487.1%20342.199%20413.6%20342.199%20340.1C360.499%20339.9%20378.899%20340%20397.299%20340C397.299%20348.533%20397.299%20357.066%20397.299%20365.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M541.901%20341.899C564.301%20334.699%20588.5%20334.099%20611.8%20337.399C631.3%20340.499%20651.601%20348.299%20663.901%20364.599C673.301%20376.699%20676.1%20392.599%20675.1%20407.599C675.2%20458.599%20674.701%20509.599%20675.401%20560.599C658.134%20560.599%20640.901%20560.599%20623.701%20560.599C621.967%20554.199%20620.267%20547.833%20618.6%20541.499C603.5%20551.399%20586.501%20558.299%20568.701%20561.299C550.801%20564.199%20531.701%20564.599%20514.901%20556.799C500.301%20550.199%20489.001%20537.199%20484.201%20521.899C478.401%20503.299%20479.5%20481.899%20489.9%20465.099C499.3%20450.199%20514.701%20440.299%20530.501%20433.399C558.501%20421.499%20588.901%20416.599%20619.001%20412.999C618.701%20403.999%20620.6%20393.599%20614.1%20386.199C605%20375.799%20589.6%20375.099%20576.8%20376.199C558.9%20377.599%20542.401%20387.199%20531.201%20401.099C518.001%20393.699%20504.9%20386.199%20491.8%20378.599C503.9%20361.299%20521.801%20348.299%20541.901%20341.899ZM565.501%20460.399C556.401%20464.399%20547.301%20469.799%20542.201%20478.599C535.401%20489.899%20536.701%20505.599%20545.501%20515.499C550.101%20520.399%20556.8%20523.299%20563.6%20523.199C583.8%20523.499%20602.6%20513.099%20617.3%20499.899C617.2%20482.699%20617.3%20465.499%20617.3%20448.299C599.7%20450.599%20581.901%20453.599%20565.501%20460.399Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M829.5%20337.099C848%20333.599%20867.9%20334.299%20885.2%20342.099C898%20347.899%20907.8%20359.399%20912.5%20372.699C916.1%20382.499%20917.5%20393.099%20917.8%20403.599C917.8%20455.799%20917.8%20507.999%20917.8%20560.199C898.4%20560.199%20879%20560.299%20859.7%20560.199C859.7%20511.099%20859.7%20462.099%20859.7%20412.999C859.3%20403.299%20858.3%20392.699%20851.8%20385.099C845.2%20377.899%20834.5%20377.399%20825.5%20378.399C807.5%20380.599%20791.9%20390.999%20778.2%20402.299C778.2%20454.966%20778.2%20507.599%20778.2%20560.199C759%20560.199%20739.7%20560.299%20720.5%20560.199C720.5%20488.799%20720.4%20417.399%20720.5%20345.999C736.566%20343.732%20752.666%20341.499%20768.8%20339.299C770.3%20347.999%20772.2%20356.599%20773.9%20365.199C790.8%20352.999%20808.9%20341.399%20829.5%20337.099Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M980.5%20369.2C994.1%20350.5%201015.6%20337.3%201038.9%20335.5C1053.8%20334.7%201069.2%20336%201083.1%20341.7C1093.7%20346%201103.6%20353.3%201108.7%20363.9C1110.1%20355.7%201111.7%20347.7%201113%20339.5C1129.4%20339.1%201145.8%20339.5%201162.1%20339.4C1162.1%20412.133%201162.1%20484.867%201162.1%20557.6C1161.8%20579%201157.1%20601.8%201141.9%20617.9C1124.9%20635.8%201099.8%20642.5%201076.1%20644.9C1048.7%20647.6%201019.5%20646%20994.9%20632.4C979.1%20623.8%20966.7%20608.7%20963.2%20590.8C982.333%20587.733%201001.43%20584.667%201020.5%20581.6C1022%20587.2%201024.6%20593%201029.7%20596.2C1039.9%20602.9%201052.6%20603.3%201064.4%20603.1C1075.6%20603.1%201087.7%20600%201095.4%20591.4C1103.9%20581.9%201105.7%20568.5%201106.1%20556.2C1106%20546.9%201106.3%20537.7%201105.8%20528.4C1100%20537.8%201093.1%20547%201083.3%20552.5C1069.1%20560.5%201052.2%20561.2%201036.4%20559.7C1014.7%20557.4%20993.8%20546.7%20980.3%20529.4C963.3%20508%20957.4%20480%20957.1%20453.2C956.6%20423.8%20962.8%20393.2%20980.5%20369.2ZM1051.3%20377.3C1042.8%20378.8%201035%20383.4%201029.4%20390C1021.5%20399.3%201017.8%20411.5%201016.1%20423.4C1014.3%20437%201014.7%20450.8%201015.9%20464.4C1017.5%20477.8%201020.7%20492%201030.4%20502C1037.6%20509.8%201048.5%20513.1%201058.9%20512.8C1070%20513%201081.6%20509.4%201089.5%20501.3C1098.3%20492.3%201102.3%20480%201104.4%20467.9C1106.2%20456.4%201106.7%20444.7%201106.3%20433.1C1105.3%20417.3%201100.7%20400.8%201089.4%20389.2C1079.7%20379.1%201064.9%20374.8%201051.3%20377.3Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1222.1%20367.6C1236.9%20349.5%201259.3%20338.9%201282.2%20336.2C1307.9%20333.2%201335.4%20336.2%201357.5%20350.5C1375.5%20362%201388%20380.7%201394.1%20401C1399.7%20419.6%201401.5%20439.4%201399.9%20458.8C1351.2%20458.8%201302.6%20458.8%201254%20458.8C1254.1%20473.6%201256.3%20489%201264.3%20501.7C1270.8%20512%201282.2%20518.6%201294.1%20520.3C1306.5%20522.1%201319.7%20521.4%201331%20515.6C1341%20510.6%201348.8%20502%201355.1%20492.9C1369.3%20500.833%201383.53%20508.733%201397.8%20516.6C1384.7%20539.8%201360.6%20555.2%201334.9%20560.8C1308.7%20566.4%201280.5%20566.5%201255.4%20556.3C1235.8%20548.6%201219.6%20533.1%201210.2%20514.3C1198%20490.2%201195.5%20462.4%201197.3%20435.8C1199%20411.4%201206.1%20386.5%201222.1%20367.6ZM1267.4%20387.6C1259.3%20396.7%201255.8%20409%201254.8%20421C1284.4%20421%201313.9%20421%201343.5%20421C1343.2%20409.2%201340.5%20396.8%201332.4%20387.9C1323.3%20377.5%201308.8%20373.8%201295.4%20374.8C1285%20375.4%201274.5%20379.7%201267.4%20387.6Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--petronas { aspect-ratio:1.2654; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22944%22%20height%3D%22746%22%20viewBox%3D%220%200%20944%20746%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_27589)%22%3E%20%3Cpath%20d%3D%22M54.8679%20676.323C54.8679%20676.751%2055.0648%20677.123%2055.3526%20677.413C55.5192%20677.564%2055.7009%20677.675%2055.8675%20677.758C55.9584%20677.758%2056.019%20677.771%2056.1098%20677.758C56.1098%20677.758%2056.1553%20677.758%2056.1704%20677.771C56.6248%20677.909%2057.0489%20677.951%2057.5336%20678.033C58.3969%20678.171%2059.3208%20678.254%2060.2295%20678.254C69.3019%20678.254%2076.5871%20671.578%2076.5871%20663.343C76.5871%20655.122%2069.3019%20648.432%2060.2295%20648.432C59.3208%20648.432%2058.3969%20648.57%2057.5336%20648.666C57.0489%20648.804%2056.6248%20648.832%2056.1704%20648.901C56.1553%20648.901%2056.125%20648.901%2056.125%20648.901H56.1098C56.019%20648.901%2055.9584%20648.901%2055.8675%20648.901C55.7009%20649.039%2055.5192%20649.135%2055.3526%20649.218C55.0648%20649.536%2054.8679%20649.88%2054.8679%20650.322V676.213V676.323ZM54.8679%20713.98V732.381V732.519C54.8679%20738.299%2049.7486%20742.961%2043.4327%20742.961H26.6056C20.2595%20742.961%2015.125%20738.299%2015.125%20732.519V627.134C15.125%20621.368%2020.2595%20616.706%2026.6056%20616.706H63.3193C92.5055%20616.706%20116.179%20638.238%20116.179%20664.819C116.179%20691.372%2092.5055%20712.932%2063.3193%20712.932C61.9107%20712.932%2060.4719%20712.794%2059.0936%20712.766C58.3817%20712.766%2057.6547%20712.628%2056.9732%20712.587C56.9732%20712.587%2056.7914%20712.587%2056.7308%20712.587H56.6249C55.6252%20712.587%2054.868%20713.235%2054.868%20714.077%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M363.155%20676.324C363.155%20676.752%20363.352%20677.124%20363.609%20677.414C363.776%20677.566%20363.973%20677.676%20364.17%20677.759C364.17%20677.759%20364.306%20677.773%20364.367%20677.759C364.367%20677.759%20364.397%20677.759%20364.442%20677.773C364.866%20677.911%20365.306%20677.952%20365.745%20678.035C366.638%20678.173%20367.562%20678.255%20368.532%20678.255C377.543%20678.255%20384.874%20671.579%20384.874%20663.344C384.874%20655.123%20377.543%20648.433%20368.532%20648.433C367.562%20648.433%20366.638%20648.571%20365.745%20648.668C365.306%20648.806%20364.866%20648.833%20364.442%20648.902C364.397%20648.902%20364.382%20648.902%20364.382%20648.902H364.367C364.306%20648.902%20364.231%20648.902%20364.17%20648.902C363.973%20649.04%20363.776%20649.137%20363.609%20649.219C363.352%20649.537%20363.155%20649.882%20363.155%20650.323V676.214L363.155%20676.324ZM366.336%20709.719C366.245%20709.512%20366.124%20709.319%20365.957%20709.209C365.654%20708.919%20365.245%20708.781%20364.791%20708.781C363.882%20708.781%20363.155%20709.457%20363.155%20710.271V714.009V732.41V732.548C363.155%20738.327%20358.005%20742.99%20351.69%20742.99H334.847C328.516%20742.99%20323.382%20738.327%20323.382%20732.548V627.163C323.382%20621.397%20328.516%20616.735%20334.847%20616.735H376.074C402.595%20616.735%20424.102%20636.336%20424.102%20660.489C424.102%20674.876%20416.484%20687.649%20404.685%20695.608L419.649%20728.52C420.255%20729.789%20420.573%20731.155%20420.573%20732.603C420.573%20738.383%20415.408%20743.045%20409.077%20743.045H409.047H388.873H388.812C383.92%20743.045%20379.816%20740.3%20378.135%20736.41L366.336%20709.816L366.336%20709.719Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M194.877%20672.559C194.877%20666.794%20189.743%20662.117%20183.397%20662.117H163.904C162.965%20662.117%20162.238%20661.469%20162.238%20660.573V654.531C162.238%20653.703%20162.965%20653.041%20163.904%20653.041H197.649C203.965%20653.041%20209.13%20648.393%20209.13%20642.627V627.081C209.13%20621.315%20203.965%20616.639%20197.649%20616.639H133.945C127.614%20616.639%20122.465%20621.315%20122.465%20627.081V679.718V679.884V732.507C122.465%20738.287%20127.614%20742.949%20133.945%20742.949H197.649C203.965%20742.949%20209.13%20738.287%20209.13%20732.507V717.017C209.13%20711.21%20203.965%20706.547%20197.649%20706.547H163.904C162.965%20706.547%20162.238%20705.899%20162.238%20705.03V698.975C162.238%20698.161%20162.965%20697.485%20163.904%20697.485H183.397C189.743%20697.485%20194.877%20692.795%20194.877%20687.043V672.559Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M245.76%20654.527V732.503C245.76%20738.283%20250.925%20742.945%20257.256%20742.945H274.068C280.429%20742.945%20285.548%20738.283%20285.548%20732.503V732.365V654.499C285.548%20653.672%20286.275%20653.023%20287.184%20653.023H303.693C310.039%20653.023%20315.189%20648.361%20315.189%20642.595V627.05C315.189%20621.284%20310.039%20616.608%20303.693%20616.608H303.618H266.783H264.541H227.752H227.616C221.27%20616.608%20216.15%20621.284%20216.15%20627.05V642.595C216.15%20648.361%20221.27%20653.023%20227.616%20653.023H244.17C245.049%20653.023%20245.761%20653.672%20245.761%20654.499%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M502.234%20648.803C483.423%20648.803%20468.171%20662.652%20468.171%20679.826C468.171%20696.93%20483.423%20710.834%20502.234%20710.834C521.076%20710.834%20536.328%20696.93%20536.328%20679.826C536.328%20662.652%20521.076%20648.803%20502.234%20648.803ZM575.571%20679.826C575.571%20716.683%20542.75%20746.602%20502.234%20746.602C461.719%20746.602%20428.913%20716.683%20428.913%20679.826C428.913%20642.927%20461.719%20613.036%20502.234%20613.036C542.75%20613.036%20575.571%20642.927%20575.571%20679.826Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M621.331%20691.31C621.331%20690.496%20622.043%20689.848%20622.967%20689.848C623.451%20689.848%20623.936%20690.041%20624.209%20690.358L674.175%20740.499C674.251%20740.637%20674.372%20740.706%20674.478%20740.816C675.917%20742.126%20677.977%20742.954%20680.203%20742.954H691.123C696.091%20742.954%20700.075%20739.313%20700.075%20734.788V627.072C700.075%20621.306%20694.925%20616.644%20688.594%20616.644H671.797C665.451%20616.644%20660.302%20621.306%20660.302%20627.072V627.21V667.461V667.598C660.302%20668.412%20659.605%20669.13%20658.696%20669.13C658.257%20669.13%20657.833%20668.936%20657.545%20668.661H657.485L608.048%20619.21C607.912%20619.072%20607.851%20618.989%20607.73%20618.893C606.276%20617.568%20604.247%20616.755%20602.02%20616.755H590.524C585.587%20616.755%20581.543%20620.424%20581.543%20624.934V732.623C581.543%20738.402%20586.677%20743.064%20593.039%20743.064H609.881C616.151%20743.064%20621.331%20738.402%20621.331%20732.623V732.485V691.407L621.331%20691.31Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M785.479%20695.445H765.002C764.078%20695.445%20763.351%20694.742%20763.351%20693.928C763.351%20693.749%20763.394%20693.624%20763.457%20693.459L773.68%20666.368C773.893%20665.747%20774.483%20665.333%20775.21%20665.333C775.968%20665.333%20776.588%20665.747%20776.816%20666.368L787.054%20693.459C787.083%20693.624%20787.098%20693.749%20787.098%20693.928C787.098%20694.742%20786.389%20695.445%20785.479%20695.445ZM843.607%20733.282H843.636L802.832%20622.283C801.621%20619%20798.228%20616.641%20794.199%20616.641H756.259C752.26%20616.641%20748.852%20619%20747.641%20622.283L706.872%20733.282C706.614%20733.958%20706.433%20734.73%20706.433%20735.558C706.433%20739.641%20710.098%20742.951%20714.642%20742.951H738.709C742.707%20742.951%20746.115%20740.62%20747.311%20737.337L747.34%20737.199C747.34%20737.199%20747.383%20737.199%20747.383%20737.061L749.322%20731.847C749.519%20731.226%20750.185%20730.813%20750.897%20730.813H773.298H777.145H799.591C800.319%20730.813%20800.939%20731.226%20801.136%20731.847L803.09%20737.061C803.104%20737.061%20803.104%20737.199%20803.104%20737.199L803.133%20737.337C804.345%20740.62%20807.768%20742.951%20811.812%20742.951H835.833C840.347%20742.951%20843.982%20739.641%20843.982%20735.558C843.982%20734.73%20843.864%20733.958%20843.607%20733.282Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M868.015%20687.242C858.67%20679.765%20852.747%20668.675%20852.747%20656.399C852.747%20633.611%20872.998%20615.127%20897.988%20615.127C915.649%20615.127%20919.768%20617.1%20923.903%20618.852C928.068%20620.548%20930.991%20624.425%20930.991%20628.88V642.094C930.991%20647.584%20926.084%20652.067%20920.071%20652.067C914.028%20652.067%20911.847%20649.322%20906.319%20649.322C900.745%20649.322%20896.216%20653.433%20896.216%20658.495C896.216%20661.019%20897.367%20663.337%20899.2%20664.992C899.654%20665.392%20900.169%20665.737%20900.669%20666.109C905.107%20669.185%20911.029%20673.324%20913.013%20675.268C913.135%20675.406%20913.209%20675.42%20913.301%20675.489C921.328%20682.952%20926.266%20693.145%20926.266%20704.456C926.266%20727.202%20906.031%20745.645%20881.01%20745.645C863.41%20745.645%20859.26%20743.7%20855.125%20741.962C850.915%20740.237%20848.037%20736.389%20848.037%20731.947V718.691C848.037%20713.215%20852.914%20708.76%20858.957%20708.76C865.001%20708.76%20867.151%20711.491%20872.71%20711.491C878.268%20711.491%20882.797%20707.38%20882.797%20702.332C882.797%20699.297%20881.146%20696.58%20878.662%20694.911C876.905%20693.697%20870.771%20689.476%20868.015%20687.242Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M308.613%20290.89C289.387%20320.946%20278.188%20356.396%20278.188%20394.454C278.188%20501.494%20366.605%20588.836%20475.182%20588.836C583.526%20588.836%20672.149%20501.494%20672.149%20394.454C672.149%20356.865%20661.238%20321.898%20642.452%20292.076L621.179%20252.419L754.561%2015.4962H462.828L308.613%20290.89Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M588.494%20389.724C588.494%20456.017%20534.927%20509.744%20468.895%20509.744C402.864%20509.744%20349.297%20456.017%20349.297%20389.724C349.297%20323.431%20402.864%20269.663%20468.895%20269.663C534.927%20269.663%20588.494%20323.431%20588.494%20389.724Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M572.268%20210.026L491.78%2070.0049H652.783L572.268%20210.026ZM468.899%20529.656C391.901%20529.656%20329.498%20467.005%20329.498%20389.718C329.498%20363.882%20336.493%20339.674%20348.641%20318.832L468.899%20109.814L589.143%20318.832C601.319%20339.674%20608.327%20363.882%20608.327%20389.718C608.327%20467.005%20545.869%20529.656%20468.899%20529.656ZM595.135%20249.752L721.412%2030.2373H468.899L314.643%20298.472C298.908%20325.204%20289.852%20356.406%20289.852%20389.718C289.852%20488.951%20370.01%20569.438%20468.899%20569.438C567.788%20569.438%20647.932%20488.951%20647.932%20389.718C647.932%20356.406%20638.931%20325.204%20623.169%20298.472L595.135%20249.752Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_27589%22%3E%20%3Crect%20width%3D%22944%22%20height%3D%22746%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22944%22%20height%3D%22746%22%20viewBox%3D%220%200%20944%20746%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_27589)%22%3E%20%3Cpath%20d%3D%22M54.8679%20676.323C54.8679%20676.751%2055.0648%20677.123%2055.3526%20677.413C55.5192%20677.564%2055.7009%20677.675%2055.8675%20677.758C55.9584%20677.758%2056.019%20677.771%2056.1098%20677.758C56.1098%20677.758%2056.1553%20677.758%2056.1704%20677.771C56.6248%20677.909%2057.0489%20677.951%2057.5336%20678.033C58.3969%20678.171%2059.3208%20678.254%2060.2295%20678.254C69.3019%20678.254%2076.5871%20671.578%2076.5871%20663.343C76.5871%20655.122%2069.3019%20648.432%2060.2295%20648.432C59.3208%20648.432%2058.3969%20648.57%2057.5336%20648.666C57.0489%20648.804%2056.6248%20648.832%2056.1704%20648.901C56.1553%20648.901%2056.125%20648.901%2056.125%20648.901H56.1098C56.019%20648.901%2055.9584%20648.901%2055.8675%20648.901C55.7009%20649.039%2055.5192%20649.135%2055.3526%20649.218C55.0648%20649.536%2054.8679%20649.88%2054.8679%20650.322V676.213V676.323ZM54.8679%20713.98V732.381V732.519C54.8679%20738.299%2049.7486%20742.961%2043.4327%20742.961H26.6056C20.2595%20742.961%2015.125%20738.299%2015.125%20732.519V627.134C15.125%20621.368%2020.2595%20616.706%2026.6056%20616.706H63.3193C92.5055%20616.706%20116.179%20638.238%20116.179%20664.819C116.179%20691.372%2092.5055%20712.932%2063.3193%20712.932C61.9107%20712.932%2060.4719%20712.794%2059.0936%20712.766C58.3817%20712.766%2057.6547%20712.628%2056.9732%20712.587C56.9732%20712.587%2056.7914%20712.587%2056.7308%20712.587H56.6249C55.6252%20712.587%2054.868%20713.235%2054.868%20714.077%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M363.155%20676.324C363.155%20676.752%20363.352%20677.124%20363.609%20677.414C363.776%20677.566%20363.973%20677.676%20364.17%20677.759C364.17%20677.759%20364.306%20677.773%20364.367%20677.759C364.367%20677.759%20364.397%20677.759%20364.442%20677.773C364.866%20677.911%20365.306%20677.952%20365.745%20678.035C366.638%20678.173%20367.562%20678.255%20368.532%20678.255C377.543%20678.255%20384.874%20671.579%20384.874%20663.344C384.874%20655.123%20377.543%20648.433%20368.532%20648.433C367.562%20648.433%20366.638%20648.571%20365.745%20648.668C365.306%20648.806%20364.866%20648.833%20364.442%20648.902C364.397%20648.902%20364.382%20648.902%20364.382%20648.902H364.367C364.306%20648.902%20364.231%20648.902%20364.17%20648.902C363.973%20649.04%20363.776%20649.137%20363.609%20649.219C363.352%20649.537%20363.155%20649.882%20363.155%20650.323V676.214L363.155%20676.324ZM366.336%20709.719C366.245%20709.512%20366.124%20709.319%20365.957%20709.209C365.654%20708.919%20365.245%20708.781%20364.791%20708.781C363.882%20708.781%20363.155%20709.457%20363.155%20710.271V714.009V732.41V732.548C363.155%20738.327%20358.005%20742.99%20351.69%20742.99H334.847C328.516%20742.99%20323.382%20738.327%20323.382%20732.548V627.163C323.382%20621.397%20328.516%20616.735%20334.847%20616.735H376.074C402.595%20616.735%20424.102%20636.336%20424.102%20660.489C424.102%20674.876%20416.484%20687.649%20404.685%20695.608L419.649%20728.52C420.255%20729.789%20420.573%20731.155%20420.573%20732.603C420.573%20738.383%20415.408%20743.045%20409.077%20743.045H409.047H388.873H388.812C383.92%20743.045%20379.816%20740.3%20378.135%20736.41L366.336%20709.816L366.336%20709.719Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M194.877%20672.559C194.877%20666.794%20189.743%20662.117%20183.397%20662.117H163.904C162.965%20662.117%20162.238%20661.469%20162.238%20660.573V654.531C162.238%20653.703%20162.965%20653.041%20163.904%20653.041H197.649C203.965%20653.041%20209.13%20648.393%20209.13%20642.627V627.081C209.13%20621.315%20203.965%20616.639%20197.649%20616.639H133.945C127.614%20616.639%20122.465%20621.315%20122.465%20627.081V679.718V679.884V732.507C122.465%20738.287%20127.614%20742.949%20133.945%20742.949H197.649C203.965%20742.949%20209.13%20738.287%20209.13%20732.507V717.017C209.13%20711.21%20203.965%20706.547%20197.649%20706.547H163.904C162.965%20706.547%20162.238%20705.899%20162.238%20705.03V698.975C162.238%20698.161%20162.965%20697.485%20163.904%20697.485H183.397C189.743%20697.485%20194.877%20692.795%20194.877%20687.043V672.559Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M245.76%20654.527V732.503C245.76%20738.283%20250.925%20742.945%20257.256%20742.945H274.068C280.429%20742.945%20285.548%20738.283%20285.548%20732.503V732.365V654.499C285.548%20653.672%20286.275%20653.023%20287.184%20653.023H303.693C310.039%20653.023%20315.189%20648.361%20315.189%20642.595V627.05C315.189%20621.284%20310.039%20616.608%20303.693%20616.608H303.618H266.783H264.541H227.752H227.616C221.27%20616.608%20216.15%20621.284%20216.15%20627.05V642.595C216.15%20648.361%20221.27%20653.023%20227.616%20653.023H244.17C245.049%20653.023%20245.761%20653.672%20245.761%20654.499%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M502.234%20648.803C483.423%20648.803%20468.171%20662.652%20468.171%20679.826C468.171%20696.93%20483.423%20710.834%20502.234%20710.834C521.076%20710.834%20536.328%20696.93%20536.328%20679.826C536.328%20662.652%20521.076%20648.803%20502.234%20648.803ZM575.571%20679.826C575.571%20716.683%20542.75%20746.602%20502.234%20746.602C461.719%20746.602%20428.913%20716.683%20428.913%20679.826C428.913%20642.927%20461.719%20613.036%20502.234%20613.036C542.75%20613.036%20575.571%20642.927%20575.571%20679.826Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M621.331%20691.31C621.331%20690.496%20622.043%20689.848%20622.967%20689.848C623.451%20689.848%20623.936%20690.041%20624.209%20690.358L674.175%20740.499C674.251%20740.637%20674.372%20740.706%20674.478%20740.816C675.917%20742.126%20677.977%20742.954%20680.203%20742.954H691.123C696.091%20742.954%20700.075%20739.313%20700.075%20734.788V627.072C700.075%20621.306%20694.925%20616.644%20688.594%20616.644H671.797C665.451%20616.644%20660.302%20621.306%20660.302%20627.072V627.21V667.461V667.598C660.302%20668.412%20659.605%20669.13%20658.696%20669.13C658.257%20669.13%20657.833%20668.936%20657.545%20668.661H657.485L608.048%20619.21C607.912%20619.072%20607.851%20618.989%20607.73%20618.893C606.276%20617.568%20604.247%20616.755%20602.02%20616.755H590.524C585.587%20616.755%20581.543%20620.424%20581.543%20624.934V732.623C581.543%20738.402%20586.677%20743.064%20593.039%20743.064H609.881C616.151%20743.064%20621.331%20738.402%20621.331%20732.623V732.485V691.407L621.331%20691.31Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M785.479%20695.445H765.002C764.078%20695.445%20763.351%20694.742%20763.351%20693.928C763.351%20693.749%20763.394%20693.624%20763.457%20693.459L773.68%20666.368C773.893%20665.747%20774.483%20665.333%20775.21%20665.333C775.968%20665.333%20776.588%20665.747%20776.816%20666.368L787.054%20693.459C787.083%20693.624%20787.098%20693.749%20787.098%20693.928C787.098%20694.742%20786.389%20695.445%20785.479%20695.445ZM843.607%20733.282H843.636L802.832%20622.283C801.621%20619%20798.228%20616.641%20794.199%20616.641H756.259C752.26%20616.641%20748.852%20619%20747.641%20622.283L706.872%20733.282C706.614%20733.958%20706.433%20734.73%20706.433%20735.558C706.433%20739.641%20710.098%20742.951%20714.642%20742.951H738.709C742.707%20742.951%20746.115%20740.62%20747.311%20737.337L747.34%20737.199C747.34%20737.199%20747.383%20737.199%20747.383%20737.061L749.322%20731.847C749.519%20731.226%20750.185%20730.813%20750.897%20730.813H773.298H777.145H799.591C800.319%20730.813%20800.939%20731.226%20801.136%20731.847L803.09%20737.061C803.104%20737.061%20803.104%20737.199%20803.104%20737.199L803.133%20737.337C804.345%20740.62%20807.768%20742.951%20811.812%20742.951H835.833C840.347%20742.951%20843.982%20739.641%20843.982%20735.558C843.982%20734.73%20843.864%20733.958%20843.607%20733.282Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M868.015%20687.242C858.67%20679.765%20852.747%20668.675%20852.747%20656.399C852.747%20633.611%20872.998%20615.127%20897.988%20615.127C915.649%20615.127%20919.768%20617.1%20923.903%20618.852C928.068%20620.548%20930.991%20624.425%20930.991%20628.88V642.094C930.991%20647.584%20926.084%20652.067%20920.071%20652.067C914.028%20652.067%20911.847%20649.322%20906.319%20649.322C900.745%20649.322%20896.216%20653.433%20896.216%20658.495C896.216%20661.019%20897.367%20663.337%20899.2%20664.992C899.654%20665.392%20900.169%20665.737%20900.669%20666.109C905.107%20669.185%20911.029%20673.324%20913.013%20675.268C913.135%20675.406%20913.209%20675.42%20913.301%20675.489C921.328%20682.952%20926.266%20693.145%20926.266%20704.456C926.266%20727.202%20906.031%20745.645%20881.01%20745.645C863.41%20745.645%20859.26%20743.7%20855.125%20741.962C850.915%20740.237%20848.037%20736.389%20848.037%20731.947V718.691C848.037%20713.215%20852.914%20708.76%20858.957%20708.76C865.001%20708.76%20867.151%20711.491%20872.71%20711.491C878.268%20711.491%20882.797%20707.38%20882.797%20702.332C882.797%20699.297%20881.146%20696.58%20878.662%20694.911C876.905%20693.697%20870.771%20689.476%20868.015%20687.242Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M308.613%20290.89C289.387%20320.946%20278.188%20356.396%20278.188%20394.454C278.188%20501.494%20366.605%20588.836%20475.182%20588.836C583.526%20588.836%20672.149%20501.494%20672.149%20394.454C672.149%20356.865%20661.238%20321.898%20642.452%20292.076L621.179%20252.419L754.561%2015.4962H462.828L308.613%20290.89Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M588.494%20389.724C588.494%20456.017%20534.927%20509.744%20468.895%20509.744C402.864%20509.744%20349.297%20456.017%20349.297%20389.724C349.297%20323.431%20402.864%20269.663%20468.895%20269.663C534.927%20269.663%20588.494%20323.431%20588.494%20389.724Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M572.268%20210.026L491.78%2070.0049H652.783L572.268%20210.026ZM468.899%20529.656C391.901%20529.656%20329.498%20467.005%20329.498%20389.718C329.498%20363.882%20336.493%20339.674%20348.641%20318.832L468.899%20109.814L589.143%20318.832C601.319%20339.674%20608.327%20363.882%20608.327%20389.718C608.327%20467.005%20545.869%20529.656%20468.899%20529.656ZM595.135%20249.752L721.412%2030.2373H468.899L314.643%20298.472C298.908%20325.204%20289.852%20356.406%20289.852%20389.718C289.852%20488.951%20370.01%20569.438%20468.899%20569.438C567.788%20569.438%20647.932%20488.951%20647.932%20389.718C647.932%20356.406%20638.931%20325.204%20623.169%20298.472L595.135%20249.752Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_27589%22%3E%20%3Crect%20width%3D%22944%22%20height%3D%22746%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--qatar { aspect-ratio:2.8571; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221160%22%20height%3D%22406%22%20viewBox%3D%220%200%201160%20406%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M307.863%20291.494C305.036%20301.181%20298.17%20316.542%20286.248%20343.259L272.535%20373.726C274.179%20373.49%20275.85%20373.025%20277.848%20373.025C279.741%20373.025%20281.998%20373.49%20283.524%20373.726C285.404%20366.996%20289.19%20357.181%20292.963%20348.098C297.694%20347.849%20302.432%20347.623%20307.151%20347.623C312.236%20347.623%20317.202%20347.85%20322.299%20348.098L327.24%20360.624L332.214%20373.726C334.343%20373.608%20337.653%20373.025%20340.952%20373.025C344.264%20373.025%20348.403%20373.608%20350.177%20373.726C344.855%20362.266%20337.047%20344.414%20332.564%20334.136C328.306%20324.225%20321.216%20307.686%20315.55%20291.494C314.249%20291.849%20313.064%20292.093%20311.775%20292.093C310.355%20292.093%20309.164%20291.849%20307.863%20291.494ZM600.581%20291.494C597.754%20301.181%20590.888%20316.542%20578.955%20343.259L565.253%20373.726C566.921%20373.49%20568.556%20373.025%20570.567%20373.025C572.459%20373.025%20574.704%20373.49%20576.253%20373.726C578.133%20366.996%20581.931%20357.181%20585.704%20348.098C590.423%20347.849%20595.15%20347.623%20599.869%20347.623C604.955%20347.623%20609.909%20347.85%20614.995%20348.098L619.958%20360.624L624.921%20373.726C627.061%20373.608%20630.371%20373.025%20633.671%20373.025C636.982%20373.025%20641.122%20373.608%20642.884%20373.726C637.574%20362.266%20629.765%20344.414%20625.271%20334.136C621.013%20324.225%20613.934%20307.686%20608.268%20291.494C606.967%20291.849%20605.782%20292.093%20604.481%20292.093C603.074%20292.093%20601.882%20291.849%20600.581%20291.494ZM736.172%20291.732C714.777%20291.732%20708.633%20304.963%20708.633%20315.347C708.633%20325.164%20712.073%20331.199%20723.522%20336.273C726.822%20337.692%20732.398%20339.805%20735.697%20341.236C737.945%20342.17%20745.397%20345.469%20745.397%20354.813C745.397%20363.329%20739.229%20369.6%20729.909%20369.6C722.931%20369.6%20717.024%20367.827%20711.595%20356.011H709.933C709.354%20361.676%20709.231%20363.213%20707.22%20369.351C711.478%20371.48%20719.162%20375.388%20729.31%20375.388C750.942%20375.388%20759.325%20361.575%20759.325%20349.511C759.325%20346.199%20758.503%20339.221%20753.548%20333.91C750.118%20330.125%20746.567%20328.833%20737.472%20325.285C727.088%20321.263%20721.046%20318.894%20721.046%20310.272C721.046%20303.305%20725.653%20297.508%20734.985%20297.508C742.424%20297.508%20748.711%20301.066%20750.473%20307.796H752.123C753.188%20303.313%20753.421%20302.365%20755.786%20296.57C749.991%20293.98%20744.794%20291.732%20736.172%20291.732ZM359.346%20292.67C360.528%20304.118%20360.533%20312.52%20360.533%20319.971C360.533%20340.172%20360.534%20359.675%20359.233%20373.726C361.846%20373.62%20365.144%20373.025%20367.734%20373.025C370.454%20373.025%20373.289%20373.62%20376.009%20373.726C375.063%20364.158%20374.833%20351.396%20374.833%20333.797C374.833%20321.852%20374.832%20301.422%20376.133%20292.67C373.295%20293.025%20370.348%20293.393%20367.734%20293.393C365.972%20293.393%20361.581%20292.918%20359.346%20292.67ZM396.075%20292.67C396.891%20307.915%20396.889%20309.565%20396.889%20325.047C396.889%20347.838%20396.772%20350.45%20395.838%20373.726C398.44%20373.383%20401.281%20373.025%20403.977%20373.025C406.946%20373.025%20409.537%20373.489%20411.902%20373.726C411.902%20370.663%20411.427%20355.417%20411.427%20351.987V335.21H414.265C420.652%20344.187%20427.96%20354.581%20433.992%20363.925C435.766%20366.633%20438.368%20371.018%20440.142%20373.726C443.69%20373.253%20445.116%20373.025%20449.728%20373.025C453.974%20373.025%20456.931%20373.383%20460.231%20373.726C452.791%20364.406%20449.586%20360.264%20440.266%20347.148C438.492%20344.664%20435.89%20340.757%20434.116%20338.285L430.804%20333.56C441.567%20331.549%20451.368%20324.8%20451.368%20311.696C451.368%20306.729%20449.478%20301.888%20445.941%20298.458C440.867%20293.621%20435.066%20292.67%20427.39%20292.67C424.67%20292.67%20410.952%20293.258%20407.889%20293.258C401.857%20293.258%20398.784%20292.918%20396.075%20292.67ZM457.97%20292.67C462.819%20305.431%20466.94%20316.759%20470.145%20325.748C475.585%20341.111%20479.125%20351.764%20483.383%20364.739L486.322%20373.726C487.978%20373.383%20489.859%20373.025%20491.172%20373.025C492.473%20373.025%20493.661%20373.253%20495.66%20373.726C497.553%20367.588%20499.803%20360.024%20501.471%20355.175C506.06%20341.703%20506.654%20339.817%20512.685%20323.046L516.224%20313.245C517.525%20317.018%20519.773%20323.049%20521.062%20326.822C522.363%20330.488%20528.393%20348.565%20529.812%20352.586C531.705%20357.896%20532.174%20359.427%20536.55%20373.726C537.614%20373.608%20539.84%20373.025%20541.626%20373.025C543.282%20373.025%20544.577%20373.383%20546.351%20373.726C550.846%20359.675%20551.316%20358.259%20557.928%20339.348C564.433%20320.909%20568.445%20310.399%20575.529%20292.67C573.755%20293.143%20572.002%20293.382%20570.216%20293.382C567.969%20293.382%20566.091%20293.025%20564.79%20292.67C560.532%20308.033%20558.418%20315.487%20554.988%20325.635C549.43%20342.169%20548.718%20344.061%20545.3%20353.049C541.515%20342.89%20537.843%20332.605%20534.413%20322.221C532.533%20316.544%20525.306%20292.918%20525.2%20292.67C523.556%20293.025%20522.365%20293.382%20520%20293.382C517.894%20293.382%20516.336%20292.918%20514.811%20292.67C511.263%20307.087%20498.731%20341.829%20497.548%20345.023L494.598%20352.699L492.348%20346.086C486.813%20329.658%20479.125%20306.614%20475.458%20292.67C472.501%20293.143%20469.915%20293.382%20467.194%20293.382C464.356%20293.382%20460.335%20292.918%20457.97%20292.67ZM630.81%20292.67C636.949%20302.948%20646.993%20319.252%20653.013%20329.648L659.988%20341.711C659.988%20349.043%20659.63%20364.513%20659.287%20373.726C661.523%20373.49%20664.836%20373.025%20667.19%20373.025C669.91%20373.025%20672.643%20373.49%20675.363%20373.726C674.878%20362.739%20674.515%20356.36%20674.515%20346.425V342.061C674.515%20341.008%20675.225%20339.705%20676.053%20338.274C681.02%20329.77%20685.63%20320.901%20690.953%20312.397C692.715%20309.558%20701.342%20295.863%20703.128%20292.67C701.815%20293.143%20700.519%20293.393%20698.165%20293.393C695.551%20293.393%20693.184%20293.025%20691.292%20292.67C682.788%20311.345%20680.893%20315.354%20670.864%20332.61C660.822%20315.011%20656.326%20305.68%20650.176%20292.67C646.758%20293.261%20643.325%20293.393%20640.499%20293.393C637.897%20293.393%20635.175%20293.143%20630.81%20292.67ZM419.827%20298.458C423.718%20298.458%20427.634%20299.054%20430.804%20301.42C434.943%20304.483%20435.767%20308.741%20435.767%20313.708C435.767%20321.372%20431.405%20330.021%20419.589%20330.021C416.514%20330.021%20413.674%20329.767%20411.427%20329.648V299.057C413.201%20298.927%20417.58%20298.458%20419.827%20298.458ZM307.75%20311.696L318.851%20340.761C315.197%20341.009%20311.654%20341.236%20307.987%20341.236C303.848%20341.236%20299.838%20340.879%20295.699%20340.761L307.75%20311.696ZM600.457%20311.696L611.581%20340.761C607.914%20341.009%20604.372%20341.236%20600.694%20341.236C596.566%20341.236%20592.545%20340.879%20588.417%20340.761L600.457%20311.696Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M401.795%205.41211C393.279%2034.4951%20372.728%2080.5796%20336.927%20160.685L295.789%20252.142C300.756%20251.444%20305.72%20250.016%20311.74%20250.016C317.405%20250.016%20324.164%20251.444%20328.765%20252.142C334.43%20231.929%20345.799%20202.509%20357.129%20175.212C371.298%20174.514%20385.477%20173.81%20399.658%20173.81C414.903%20173.81%20429.79%20174.514%20445.047%20175.212L459.913%20212.801L474.813%20252.142C481.188%20251.787%20491.129%20250.016%20501.041%20250.016C510.987%20250.016%20523.37%20251.787%20528.704%20252.142C512.749%20217.76%20489.348%20164.229%20475.865%20133.384C463.103%20103.615%20441.842%2053.9745%20424.834%205.41211C420.931%206.48838%20417.387%207.19827%20413.495%207.19827C409.238%207.19827%20405.686%206.4884%20401.795%205.41211ZM796.449%205.41211C787.957%2034.4951%20767.383%2080.5796%20731.57%20160.685L690.466%20252.142C695.421%20251.444%20700.397%20250.016%20706.417%20250.016C712.082%20250.016%20718.818%20251.444%20723.442%20252.142C729.119%20231.929%20740.441%20202.509%20751.784%20175.212C765.953%20174.514%20780.143%20173.81%20794.335%20173.81C809.58%20173.81%20824.468%20174.514%20839.702%20175.212L854.59%20212.801L869.479%20252.142C875.854%20251.787%20885.795%20250.016%20895.718%20250.016C905.641%20250.016%20918.047%20251.787%20923.37%20252.142C907.415%20217.76%20884.013%20164.229%20870.542%20133.384C857.78%20103.615%20836.507%2053.9745%20819.5%205.41211C815.597%206.48838%20812.052%207.19827%20808.161%207.19827C803.903%207.19827%20800.352%206.4884%20796.449%205.41211ZM138.221%206.13558C66.6309%206.13558%204.94725%2045.8304%204.94727%20135.871C4.94727%20154.995%209.20603%20191.166%2038.9751%20221.302C69.8203%20252.502%20106.324%20257.105%20137.169%20257.105C141.061%20257.105%20144.955%20257.108%20148.87%20256.765L230.039%20320.22C240.672%20312.769%20257.34%20303.554%20269.392%20298.232L189.285%20248.592C238.545%20231.23%20269.392%20187.263%20269.392%20127.358C269.392%2042.2971%20204.512%206.13558%20138.221%206.13558ZM514.053%208.97309C515.129%2013.2309%20515.827%2017.829%20515.827%2022.0868C515.827%2026.3445%20515.129%2030.9432%20514.053%2035.1892C532.148%2033.4269%20566.175%2032.7134%20569.356%2032.7134H587.094C587.448%2046.5512%20587.794%2058.9495%20587.794%2072.0658L588.156%20170.961C588.156%20197.915%20586.038%20225.211%20584.607%20252.142C597.368%20250.734%20602.689%20250.016%20608.709%20250.016C612.966%20250.016%20624.307%20251.089%20634.597%20252.142C633.521%20242.231%20632.11%20230.518%20632.11%20203.587V72.4275C632.11%2058.9564%20632.456%2045.4868%20632.811%2032.7134C657.269%2032.7134%20682.454%2033.0721%20703.365%2035.1892C702.3%2029.524%20701.59%2026.3402%20701.59%2022.4372C701.59%2019.5987%20702.3%2014.9813%20703.365%208.97309C669.338%2010.7353%20638.135%2011.0871%20608.709%2011.0871C581.411%2011.0871%20542.059%2010.7354%20514.053%208.97309ZM961.908%208.97309C964.38%2054.697%20964.384%2059.6488%20964.384%20106.082C964.384%20174.514%20964.022%20182.302%20961.196%20252.142C968.99%20251.089%20977.499%20250.016%20985.648%20250.016C994.507%20250.016%201002.32%20251.444%201009.4%20252.142C1009.4%20242.916%201007.99%20197.202%201007.99%20186.912V136.572H1016.5C1035.64%20163.514%201057.63%20194.72%201075.7%20222.726C1081.01%20230.887%201088.81%20244.005%201094.12%20252.142C1104.76%20250.734%201109.02%20250.016%201122.83%20250.016C1135.59%20250.016%201144.46%20251.089%201154.39%20252.142C1132.06%20224.147%201122.5%20211.735%201094.48%20172.386C1089.16%20164.934%201081.36%20153.236%201076.04%20145.796L1066.13%20131.631C1098.38%20125.6%201127.81%20105.401%201127.81%2066.0403C1127.81%2051.1499%201122.13%2036.6147%201111.48%2026.3487C1096.25%2011.8131%201078.88%208.97309%201055.84%208.97309C1047.68%208.97309%201006.57%2010.7367%20997.349%2010.7367C979.265%2010.7367%20970.045%209.67092%20961.908%208.97309ZM137.531%2024.2008C195.662%2024.2008%20220.826%2072.4187%20220.826%20123.82C220.826%20153.234%20217.274%20180.895%20202.738%20203.237C188.202%20225.554%20164.115%20239.028%20137.87%20239.028C72.3005%20239.028%2053.5019%20176.628%2053.5019%20137.634C53.5019%2048.3154%20101.364%2024.2008%20137.531%2024.2008ZM1033.15%2026.3487C1044.85%2026.3487%201056.54%2028.1047%201066.13%2035.1892C1078.52%2044.4144%201081.01%2057.1635%201081.01%2072.0658C1081.01%2095.1051%201067.9%20120.993%201032.45%20120.993C1023.23%20120.993%201014.72%20120.262%201007.99%20119.931V28.1123C1013.3%2027.7693%201026.41%2026.3487%201033.15%2026.3487ZM401.444%2066.0404L434.76%20153.246C423.761%20153.968%20413.134%20154.671%20402.123%20154.671C389.728%20154.671%20377.675%20153.601%20365.28%20153.246L401.444%2066.0404ZM796.099%2066.0404L829.426%20153.246C818.438%20153.968%20807.799%20154.671%20796.811%20154.671C784.393%20154.671%20772.353%20153.601%20759.934%20153.246L796.099%2066.0404ZM1068.21%20292.67C1062.94%20292.67%201061.52%20294.981%201061.52%20299.215C1061.52%20303.449%201063.39%20304.924%201068.21%20304.924C1073.07%20304.924%201076.48%20303.059%201076.48%20299.215C1076.48%20295.395%201074.23%20292.67%201068.21%20292.67ZM1086.93%20292.67C1081.63%20292.67%201080.23%20294.981%201080.23%20299.215C1080.23%20303.449%201082.03%20304.924%201086.93%20304.924C1091.75%20304.924%201095.15%20303.059%201095.15%20299.215C1095.15%20295.395%201092.89%20292.67%201086.93%20292.67ZM792.945%20293.778C787.634%20293.778%20786.218%20296.101%20786.218%20300.323C786.218%20304.581%20788.06%20306.066%20792.945%20306.066C797.77%20306.066%20801.175%20304.167%20801.175%20300.323C801.175%20296.467%20798.917%20293.778%20792.945%20293.778ZM810.976%20293.778C805.642%20293.778%20804.238%20296.101%20804.238%20300.323C804.238%20304.581%20806.08%20306.066%20810.976%20306.066C815.849%20306.066%20819.138%20304.167%20819.138%20300.323C819.138%20296.467%20816.913%20293.778%20810.976%20293.778ZM944.985%20294.241C944.985%20294.241%20936.783%20299.997%20930.763%20304.574C924.755%20309.151%20930.763%20312.227%20930.763%20312.227V360.963H913.568L913.206%20319.135C913.206%20319.135%20901.239%20327.88%20897.809%20330.541C894.462%20333.19%20896.321%20335.549%20900.07%20335.549C900.07%20335.549%20899.38%20366.429%20899.38%20373.715C899.38%20381.048%20893.307%20389.427%20880.569%20385.619C880.569%20385.619%20876.532%20386.4%20879.891%20389.451C883.238%20392.491%20887.276%20394.81%20891.806%20394.81C896.312%20394.81%20912.822%20391.692%20912.822%20373.715H1129.23V295.756C1129.23%20295.756%201116.49%20304.168%201113.87%20306.45C1111.23%20308.733%201112%20311.476%201115.39%20311.074V360.963H1096.72V315.664C1096.72%20315.664%201092.89%20317.122%201087.65%20319.44C1082.46%20321.793%201063.69%20329.43%201063.69%20339.743V351.659H1082.81V360.963H1037.42C1037.46%20358.775%201037.5%20355.553%201037.5%20350.834C1037.5%20335.967%201024.84%20327.873%201013.57%20327.873H961.094C951.904%20327.873%20947.468%20330.101%20944.984%20332.644L944.985%20294.241ZM1153.98%20295.801C1153.98%20295.801%201141.21%20304.236%201138.62%20306.507C1135.98%20308.79%201136.75%20311.521%201140.1%20311.142V373.805H1153.98V295.801ZM824.881%20302.641C824.881%20302.641%20809.468%20316.802%20808.025%20318.682C806.535%20320.693%20811.688%20322.515%20811.688%20322.515L810.818%20328.043C810.818%20328.043%20804.68%20331.223%20797.229%20336.262C789.826%20341.241%20784.33%20347.598%20784.33%20351.998C784.33%20356.41%20782.465%20373.715%20782.465%20373.715H880.479V327.387C880.479%20327.387%20871.626%20332.48%20866.02%20337.471C860.449%20342.415%20867.161%20344.288%20867.161%20344.288V360.963H824.881L824.881%20302.641ZM1082.81%20333.978V341.643H1073.83C1073.83%20336.711%201082.81%20333.978%201082.81%20333.978ZM955.826%20341.247H1013.18C1025.56%20341.247%201023.64%20347.764%201023.64%20351.998C1023.64%20354.269%201023.54%20357.97%201023.43%20360.963H944.985V347.171C947.031%20341.86%20950.48%20341.247%20955.826%20341.247ZM811.338%20342.411V360.963H796.766C796.766%20360.963%20794.803%20351.991%20800.078%20348.561C805.377%20345.084%20811.338%20342.411%20811.338%20342.411ZM838.277%20378.734C833.003%20378.734%20831.551%20380.988%20831.551%20385.234C831.551%20389.445%20833.416%20390.989%20838.277%20390.989C843.103%20390.989%20846.519%20389.066%20846.519%20385.234C846.519%20381.367%20844.297%20378.734%20838.277%20378.734ZM857.01%20378.734C851.735%20378.734%20850.295%20380.988%20850.295%20385.234C850.295%20389.445%20852.208%20390.989%20857.01%20390.989C861.906%20390.989%20865.274%20389.066%20865.274%20385.234C865.274%20381.367%20863.053%20378.734%20857.01%20378.734Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221160%22%20height%3D%22406%22%20viewBox%3D%220%200%201160%20406%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M307.863%20291.494C305.036%20301.181%20298.17%20316.542%20286.248%20343.259L272.535%20373.726C274.179%20373.49%20275.85%20373.025%20277.848%20373.025C279.741%20373.025%20281.998%20373.49%20283.524%20373.726C285.404%20366.996%20289.19%20357.181%20292.963%20348.098C297.694%20347.849%20302.432%20347.623%20307.151%20347.623C312.236%20347.623%20317.202%20347.85%20322.299%20348.098L327.24%20360.624L332.214%20373.726C334.343%20373.608%20337.653%20373.025%20340.952%20373.025C344.264%20373.025%20348.403%20373.608%20350.177%20373.726C344.855%20362.266%20337.047%20344.414%20332.564%20334.136C328.306%20324.225%20321.216%20307.686%20315.55%20291.494C314.249%20291.849%20313.064%20292.093%20311.775%20292.093C310.355%20292.093%20309.164%20291.849%20307.863%20291.494ZM600.581%20291.494C597.754%20301.181%20590.888%20316.542%20578.955%20343.259L565.253%20373.726C566.921%20373.49%20568.556%20373.025%20570.567%20373.025C572.459%20373.025%20574.704%20373.49%20576.253%20373.726C578.133%20366.996%20581.931%20357.181%20585.704%20348.098C590.423%20347.849%20595.15%20347.623%20599.869%20347.623C604.955%20347.623%20609.909%20347.85%20614.995%20348.098L619.958%20360.624L624.921%20373.726C627.061%20373.608%20630.371%20373.025%20633.671%20373.025C636.982%20373.025%20641.122%20373.608%20642.884%20373.726C637.574%20362.266%20629.765%20344.414%20625.271%20334.136C621.013%20324.225%20613.934%20307.686%20608.268%20291.494C606.967%20291.849%20605.782%20292.093%20604.481%20292.093C603.074%20292.093%20601.882%20291.849%20600.581%20291.494ZM736.172%20291.732C714.777%20291.732%20708.633%20304.963%20708.633%20315.347C708.633%20325.164%20712.073%20331.199%20723.522%20336.273C726.822%20337.692%20732.398%20339.805%20735.697%20341.236C737.945%20342.17%20745.397%20345.469%20745.397%20354.813C745.397%20363.329%20739.229%20369.6%20729.909%20369.6C722.931%20369.6%20717.024%20367.827%20711.595%20356.011H709.933C709.354%20361.676%20709.231%20363.213%20707.22%20369.351C711.478%20371.48%20719.162%20375.388%20729.31%20375.388C750.942%20375.388%20759.325%20361.575%20759.325%20349.511C759.325%20346.199%20758.503%20339.221%20753.548%20333.91C750.118%20330.125%20746.567%20328.833%20737.472%20325.285C727.088%20321.263%20721.046%20318.894%20721.046%20310.272C721.046%20303.305%20725.653%20297.508%20734.985%20297.508C742.424%20297.508%20748.711%20301.066%20750.473%20307.796H752.123C753.188%20303.313%20753.421%20302.365%20755.786%20296.57C749.991%20293.98%20744.794%20291.732%20736.172%20291.732ZM359.346%20292.67C360.528%20304.118%20360.533%20312.52%20360.533%20319.971C360.533%20340.172%20360.534%20359.675%20359.233%20373.726C361.846%20373.62%20365.144%20373.025%20367.734%20373.025C370.454%20373.025%20373.289%20373.62%20376.009%20373.726C375.063%20364.158%20374.833%20351.396%20374.833%20333.797C374.833%20321.852%20374.832%20301.422%20376.133%20292.67C373.295%20293.025%20370.348%20293.393%20367.734%20293.393C365.972%20293.393%20361.581%20292.918%20359.346%20292.67ZM396.075%20292.67C396.891%20307.915%20396.889%20309.565%20396.889%20325.047C396.889%20347.838%20396.772%20350.45%20395.838%20373.726C398.44%20373.383%20401.281%20373.025%20403.977%20373.025C406.946%20373.025%20409.537%20373.489%20411.902%20373.726C411.902%20370.663%20411.427%20355.417%20411.427%20351.987V335.21H414.265C420.652%20344.187%20427.96%20354.581%20433.992%20363.925C435.766%20366.633%20438.368%20371.018%20440.142%20373.726C443.69%20373.253%20445.116%20373.025%20449.728%20373.025C453.974%20373.025%20456.931%20373.383%20460.231%20373.726C452.791%20364.406%20449.586%20360.264%20440.266%20347.148C438.492%20344.664%20435.89%20340.757%20434.116%20338.285L430.804%20333.56C441.567%20331.549%20451.368%20324.8%20451.368%20311.696C451.368%20306.729%20449.478%20301.888%20445.941%20298.458C440.867%20293.621%20435.066%20292.67%20427.39%20292.67C424.67%20292.67%20410.952%20293.258%20407.889%20293.258C401.857%20293.258%20398.784%20292.918%20396.075%20292.67ZM457.97%20292.67C462.819%20305.431%20466.94%20316.759%20470.145%20325.748C475.585%20341.111%20479.125%20351.764%20483.383%20364.739L486.322%20373.726C487.978%20373.383%20489.859%20373.025%20491.172%20373.025C492.473%20373.025%20493.661%20373.253%20495.66%20373.726C497.553%20367.588%20499.803%20360.024%20501.471%20355.175C506.06%20341.703%20506.654%20339.817%20512.685%20323.046L516.224%20313.245C517.525%20317.018%20519.773%20323.049%20521.062%20326.822C522.363%20330.488%20528.393%20348.565%20529.812%20352.586C531.705%20357.896%20532.174%20359.427%20536.55%20373.726C537.614%20373.608%20539.84%20373.025%20541.626%20373.025C543.282%20373.025%20544.577%20373.383%20546.351%20373.726C550.846%20359.675%20551.316%20358.259%20557.928%20339.348C564.433%20320.909%20568.445%20310.399%20575.529%20292.67C573.755%20293.143%20572.002%20293.382%20570.216%20293.382C567.969%20293.382%20566.091%20293.025%20564.79%20292.67C560.532%20308.033%20558.418%20315.487%20554.988%20325.635C549.43%20342.169%20548.718%20344.061%20545.3%20353.049C541.515%20342.89%20537.843%20332.605%20534.413%20322.221C532.533%20316.544%20525.306%20292.918%20525.2%20292.67C523.556%20293.025%20522.365%20293.382%20520%20293.382C517.894%20293.382%20516.336%20292.918%20514.811%20292.67C511.263%20307.087%20498.731%20341.829%20497.548%20345.023L494.598%20352.699L492.348%20346.086C486.813%20329.658%20479.125%20306.614%20475.458%20292.67C472.501%20293.143%20469.915%20293.382%20467.194%20293.382C464.356%20293.382%20460.335%20292.918%20457.97%20292.67ZM630.81%20292.67C636.949%20302.948%20646.993%20319.252%20653.013%20329.648L659.988%20341.711C659.988%20349.043%20659.63%20364.513%20659.287%20373.726C661.523%20373.49%20664.836%20373.025%20667.19%20373.025C669.91%20373.025%20672.643%20373.49%20675.363%20373.726C674.878%20362.739%20674.515%20356.36%20674.515%20346.425V342.061C674.515%20341.008%20675.225%20339.705%20676.053%20338.274C681.02%20329.77%20685.63%20320.901%20690.953%20312.397C692.715%20309.558%20701.342%20295.863%20703.128%20292.67C701.815%20293.143%20700.519%20293.393%20698.165%20293.393C695.551%20293.393%20693.184%20293.025%20691.292%20292.67C682.788%20311.345%20680.893%20315.354%20670.864%20332.61C660.822%20315.011%20656.326%20305.68%20650.176%20292.67C646.758%20293.261%20643.325%20293.393%20640.499%20293.393C637.897%20293.393%20635.175%20293.143%20630.81%20292.67ZM419.827%20298.458C423.718%20298.458%20427.634%20299.054%20430.804%20301.42C434.943%20304.483%20435.767%20308.741%20435.767%20313.708C435.767%20321.372%20431.405%20330.021%20419.589%20330.021C416.514%20330.021%20413.674%20329.767%20411.427%20329.648V299.057C413.201%20298.927%20417.58%20298.458%20419.827%20298.458ZM307.75%20311.696L318.851%20340.761C315.197%20341.009%20311.654%20341.236%20307.987%20341.236C303.848%20341.236%20299.838%20340.879%20295.699%20340.761L307.75%20311.696ZM600.457%20311.696L611.581%20340.761C607.914%20341.009%20604.372%20341.236%20600.694%20341.236C596.566%20341.236%20592.545%20340.879%20588.417%20340.761L600.457%20311.696Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M401.795%205.41211C393.279%2034.4951%20372.728%2080.5796%20336.927%20160.685L295.789%20252.142C300.756%20251.444%20305.72%20250.016%20311.74%20250.016C317.405%20250.016%20324.164%20251.444%20328.765%20252.142C334.43%20231.929%20345.799%20202.509%20357.129%20175.212C371.298%20174.514%20385.477%20173.81%20399.658%20173.81C414.903%20173.81%20429.79%20174.514%20445.047%20175.212L459.913%20212.801L474.813%20252.142C481.188%20251.787%20491.129%20250.016%20501.041%20250.016C510.987%20250.016%20523.37%20251.787%20528.704%20252.142C512.749%20217.76%20489.348%20164.229%20475.865%20133.384C463.103%20103.615%20441.842%2053.9745%20424.834%205.41211C420.931%206.48838%20417.387%207.19827%20413.495%207.19827C409.238%207.19827%20405.686%206.4884%20401.795%205.41211ZM796.449%205.41211C787.957%2034.4951%20767.383%2080.5796%20731.57%20160.685L690.466%20252.142C695.421%20251.444%20700.397%20250.016%20706.417%20250.016C712.082%20250.016%20718.818%20251.444%20723.442%20252.142C729.119%20231.929%20740.441%20202.509%20751.784%20175.212C765.953%20174.514%20780.143%20173.81%20794.335%20173.81C809.58%20173.81%20824.468%20174.514%20839.702%20175.212L854.59%20212.801L869.479%20252.142C875.854%20251.787%20885.795%20250.016%20895.718%20250.016C905.641%20250.016%20918.047%20251.787%20923.37%20252.142C907.415%20217.76%20884.013%20164.229%20870.542%20133.384C857.78%20103.615%20836.507%2053.9745%20819.5%205.41211C815.597%206.48838%20812.052%207.19827%20808.161%207.19827C803.903%207.19827%20800.352%206.4884%20796.449%205.41211ZM138.221%206.13558C66.6309%206.13558%204.94725%2045.8304%204.94727%20135.871C4.94727%20154.995%209.20603%20191.166%2038.9751%20221.302C69.8203%20252.502%20106.324%20257.105%20137.169%20257.105C141.061%20257.105%20144.955%20257.108%20148.87%20256.765L230.039%20320.22C240.672%20312.769%20257.34%20303.554%20269.392%20298.232L189.285%20248.592C238.545%20231.23%20269.392%20187.263%20269.392%20127.358C269.392%2042.2971%20204.512%206.13558%20138.221%206.13558ZM514.053%208.97309C515.129%2013.2309%20515.827%2017.829%20515.827%2022.0868C515.827%2026.3445%20515.129%2030.9432%20514.053%2035.1892C532.148%2033.4269%20566.175%2032.7134%20569.356%2032.7134H587.094C587.448%2046.5512%20587.794%2058.9495%20587.794%2072.0658L588.156%20170.961C588.156%20197.915%20586.038%20225.211%20584.607%20252.142C597.368%20250.734%20602.689%20250.016%20608.709%20250.016C612.966%20250.016%20624.307%20251.089%20634.597%20252.142C633.521%20242.231%20632.11%20230.518%20632.11%20203.587V72.4275C632.11%2058.9564%20632.456%2045.4868%20632.811%2032.7134C657.269%2032.7134%20682.454%2033.0721%20703.365%2035.1892C702.3%2029.524%20701.59%2026.3402%20701.59%2022.4372C701.59%2019.5987%20702.3%2014.9813%20703.365%208.97309C669.338%2010.7353%20638.135%2011.0871%20608.709%2011.0871C581.411%2011.0871%20542.059%2010.7354%20514.053%208.97309ZM961.908%208.97309C964.38%2054.697%20964.384%2059.6488%20964.384%20106.082C964.384%20174.514%20964.022%20182.302%20961.196%20252.142C968.99%20251.089%20977.499%20250.016%20985.648%20250.016C994.507%20250.016%201002.32%20251.444%201009.4%20252.142C1009.4%20242.916%201007.99%20197.202%201007.99%20186.912V136.572H1016.5C1035.64%20163.514%201057.63%20194.72%201075.7%20222.726C1081.01%20230.887%201088.81%20244.005%201094.12%20252.142C1104.76%20250.734%201109.02%20250.016%201122.83%20250.016C1135.59%20250.016%201144.46%20251.089%201154.39%20252.142C1132.06%20224.147%201122.5%20211.735%201094.48%20172.386C1089.16%20164.934%201081.36%20153.236%201076.04%20145.796L1066.13%20131.631C1098.38%20125.6%201127.81%20105.401%201127.81%2066.0403C1127.81%2051.1499%201122.13%2036.6147%201111.48%2026.3487C1096.25%2011.8131%201078.88%208.97309%201055.84%208.97309C1047.68%208.97309%201006.57%2010.7367%20997.349%2010.7367C979.265%2010.7367%20970.045%209.67092%20961.908%208.97309ZM137.531%2024.2008C195.662%2024.2008%20220.826%2072.4187%20220.826%20123.82C220.826%20153.234%20217.274%20180.895%20202.738%20203.237C188.202%20225.554%20164.115%20239.028%20137.87%20239.028C72.3005%20239.028%2053.5019%20176.628%2053.5019%20137.634C53.5019%2048.3154%20101.364%2024.2008%20137.531%2024.2008ZM1033.15%2026.3487C1044.85%2026.3487%201056.54%2028.1047%201066.13%2035.1892C1078.52%2044.4144%201081.01%2057.1635%201081.01%2072.0658C1081.01%2095.1051%201067.9%20120.993%201032.45%20120.993C1023.23%20120.993%201014.72%20120.262%201007.99%20119.931V28.1123C1013.3%2027.7693%201026.41%2026.3487%201033.15%2026.3487ZM401.444%2066.0404L434.76%20153.246C423.761%20153.968%20413.134%20154.671%20402.123%20154.671C389.728%20154.671%20377.675%20153.601%20365.28%20153.246L401.444%2066.0404ZM796.099%2066.0404L829.426%20153.246C818.438%20153.968%20807.799%20154.671%20796.811%20154.671C784.393%20154.671%20772.353%20153.601%20759.934%20153.246L796.099%2066.0404ZM1068.21%20292.67C1062.94%20292.67%201061.52%20294.981%201061.52%20299.215C1061.52%20303.449%201063.39%20304.924%201068.21%20304.924C1073.07%20304.924%201076.48%20303.059%201076.48%20299.215C1076.48%20295.395%201074.23%20292.67%201068.21%20292.67ZM1086.93%20292.67C1081.63%20292.67%201080.23%20294.981%201080.23%20299.215C1080.23%20303.449%201082.03%20304.924%201086.93%20304.924C1091.75%20304.924%201095.15%20303.059%201095.15%20299.215C1095.15%20295.395%201092.89%20292.67%201086.93%20292.67ZM792.945%20293.778C787.634%20293.778%20786.218%20296.101%20786.218%20300.323C786.218%20304.581%20788.06%20306.066%20792.945%20306.066C797.77%20306.066%20801.175%20304.167%20801.175%20300.323C801.175%20296.467%20798.917%20293.778%20792.945%20293.778ZM810.976%20293.778C805.642%20293.778%20804.238%20296.101%20804.238%20300.323C804.238%20304.581%20806.08%20306.066%20810.976%20306.066C815.849%20306.066%20819.138%20304.167%20819.138%20300.323C819.138%20296.467%20816.913%20293.778%20810.976%20293.778ZM944.985%20294.241C944.985%20294.241%20936.783%20299.997%20930.763%20304.574C924.755%20309.151%20930.763%20312.227%20930.763%20312.227V360.963H913.568L913.206%20319.135C913.206%20319.135%20901.239%20327.88%20897.809%20330.541C894.462%20333.19%20896.321%20335.549%20900.07%20335.549C900.07%20335.549%20899.38%20366.429%20899.38%20373.715C899.38%20381.048%20893.307%20389.427%20880.569%20385.619C880.569%20385.619%20876.532%20386.4%20879.891%20389.451C883.238%20392.491%20887.276%20394.81%20891.806%20394.81C896.312%20394.81%20912.822%20391.692%20912.822%20373.715H1129.23V295.756C1129.23%20295.756%201116.49%20304.168%201113.87%20306.45C1111.23%20308.733%201112%20311.476%201115.39%20311.074V360.963H1096.72V315.664C1096.72%20315.664%201092.89%20317.122%201087.65%20319.44C1082.46%20321.793%201063.69%20329.43%201063.69%20339.743V351.659H1082.81V360.963H1037.42C1037.46%20358.775%201037.5%20355.553%201037.5%20350.834C1037.5%20335.967%201024.84%20327.873%201013.57%20327.873H961.094C951.904%20327.873%20947.468%20330.101%20944.984%20332.644L944.985%20294.241ZM1153.98%20295.801C1153.98%20295.801%201141.21%20304.236%201138.62%20306.507C1135.98%20308.79%201136.75%20311.521%201140.1%20311.142V373.805H1153.98V295.801ZM824.881%20302.641C824.881%20302.641%20809.468%20316.802%20808.025%20318.682C806.535%20320.693%20811.688%20322.515%20811.688%20322.515L810.818%20328.043C810.818%20328.043%20804.68%20331.223%20797.229%20336.262C789.826%20341.241%20784.33%20347.598%20784.33%20351.998C784.33%20356.41%20782.465%20373.715%20782.465%20373.715H880.479V327.387C880.479%20327.387%20871.626%20332.48%20866.02%20337.471C860.449%20342.415%20867.161%20344.288%20867.161%20344.288V360.963H824.881L824.881%20302.641ZM1082.81%20333.978V341.643H1073.83C1073.83%20336.711%201082.81%20333.978%201082.81%20333.978ZM955.826%20341.247H1013.18C1025.56%20341.247%201023.64%20347.764%201023.64%20351.998C1023.64%20354.269%201023.54%20357.97%201023.43%20360.963H944.985V347.171C947.031%20341.86%20950.48%20341.247%20955.826%20341.247ZM811.338%20342.411V360.963H796.766C796.766%20360.963%20794.803%20351.991%20800.078%20348.561C805.377%20345.084%20811.338%20342.411%20811.338%20342.411ZM838.277%20378.734C833.003%20378.734%20831.551%20380.988%20831.551%20385.234C831.551%20389.445%20833.416%20390.989%20838.277%20390.989C843.103%20390.989%20846.519%20389.066%20846.519%20385.234C846.519%20381.367%20844.297%20378.734%20838.277%20378.734ZM857.01%20378.734C851.735%20378.734%20850.295%20380.988%20850.295%20385.234C850.295%20389.445%20852.208%20390.989%20857.01%20390.989C861.906%20390.989%20865.274%20389.066%20865.274%20385.234C865.274%20381.367%20863.053%20378.734%20857.01%20378.734Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--sap { aspect-ratio:1.7748; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221340%22%20height%3D%22755%22%20viewBox%3D%2210%20150%201340%20755%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1238.83%20836.97C1238.83%20870.52%201212.41%20895.52%201180.9%20895.52C1148.94%20895.52%201121.71%20870.52%201121.71%20836.97C1121.71%20803.67%201148.94%20779.05%201180.9%20779.05C1212.41%20779.05%201238.83%20803.67%201238.83%20836.97ZM1133.05%20836.97C1133.05%20864.86%201154.38%20885.45%201180.9%20885.45C1206.97%20885.45%201227.49%20864.86%201227.49%20836.97C1227.49%20809.56%201206.97%20788.5%201180.9%20788.5C1154.38%20788.5%201133.05%20809.56%201133.05%20836.97ZM1183.42%20803.61C1199.29%20803.61%201207.34%20809.34%201207.34%20822.49C1207.34%20834.5%201199.47%20840.17%201189.71%20841.38L1209.23%20870.34H1197.9L1179.64%20841.38H1168.31V870.34H1158.23V803.61H1183.42ZM1168.31%20833.2H1180.27C1188.87%20833.2%201196.64%20832.28%201196.64%20821.86C1196.64%20813.53%201188.97%20812.42%201182.16%20812.42H1168.31V833.2Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1073.83%20168.75C1244.05%20168.75%201324%20229.37%201324%20361.53C1324%20480.27%201241.67%20551.02%201102.65%20551.02H1045.08V722.06H781.25L755.14%20640.26C727.23%20649.45%20695.7%20654.49%20662.27%20654.49C628.02%20654.49%20595.66%20649.09%20567.25%20639.48L540.09%20722.06H378.39L396.2%20674.19L389.68%20679.89C349.36%20712.29%20298.91%20730.11%20236.44%20731.32H227.15C155.36%20731.32%2085.02%20711.54%2025.6%20677.72L80.59%20568.46C140.19%20603.68%20177.61%20611.54%20228.06%20610.53C254.23%20609.94%20273.15%20605.21%20285.47%20592.42C292.94%20584.76%20296.79%20575.07%20297.19%20564.74C297.66%20536.35%20257.28%20523.04%20207.81%20507.79C167.72%20495.21%20122.32%20478.43%2086.74%20452.36C44.69%20421.4%2024.6%20382.68%2025.6%20328.12C26.27%20288.3%2041%20252.52%2068.22%20224.23C107.39%20183.8%20170.54%20159.1%20246.32%20159.1H246.72C311.68%20159.24%20391.09%20177.62%20448.39%20206.89L386.53%20314.63C323.73%20284.27%20292.09%20281.37%20256.23%20279.55C203.02%20276.71%20176.04%20295.73%20175.63%20316.24C175.17%20341.32%20226.15%20363.96%20274.04%20379.38C346.7%20402.4%20439.12%20433.29%20453.17%20522.49L586.07%20168.57H740.25L895.8%20591.89V168.57H1073.85M662.29%20530.93C682.56%20530.93%20701.52%20527.27%20718.18%20521.3L662.88%20342.73H661.67L605.19%20520.82C622.01%20527.15%20641.48%20530.93%20662.23%20530.93H662.29ZM1084.25%20428.43C1136.6%20428.43%201178.27%20411.11%201178.27%20355.83C1178.27%20302.3%201136.6%20285.05%201084.25%20285.05H1045.04V428.43H1084.25Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221340%22%20height%3D%22755%22%20viewBox%3D%2210%20150%201340%20755%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1238.83%20836.97C1238.83%20870.52%201212.41%20895.52%201180.9%20895.52C1148.94%20895.52%201121.71%20870.52%201121.71%20836.97C1121.71%20803.67%201148.94%20779.05%201180.9%20779.05C1212.41%20779.05%201238.83%20803.67%201238.83%20836.97ZM1133.05%20836.97C1133.05%20864.86%201154.38%20885.45%201180.9%20885.45C1206.97%20885.45%201227.49%20864.86%201227.49%20836.97C1227.49%20809.56%201206.97%20788.5%201180.9%20788.5C1154.38%20788.5%201133.05%20809.56%201133.05%20836.97ZM1183.42%20803.61C1199.29%20803.61%201207.34%20809.34%201207.34%20822.49C1207.34%20834.5%201199.47%20840.17%201189.71%20841.38L1209.23%20870.34H1197.9L1179.64%20841.38H1168.31V870.34H1158.23V803.61H1183.42ZM1168.31%20833.2H1180.27C1188.87%20833.2%201196.64%20832.28%201196.64%20821.86C1196.64%20813.53%201188.97%20812.42%201182.16%20812.42H1168.31V833.2Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1073.83%20168.75C1244.05%20168.75%201324%20229.37%201324%20361.53C1324%20480.27%201241.67%20551.02%201102.65%20551.02H1045.08V722.06H781.25L755.14%20640.26C727.23%20649.45%20695.7%20654.49%20662.27%20654.49C628.02%20654.49%20595.66%20649.09%20567.25%20639.48L540.09%20722.06H378.39L396.2%20674.19L389.68%20679.89C349.36%20712.29%20298.91%20730.11%20236.44%20731.32H227.15C155.36%20731.32%2085.02%20711.54%2025.6%20677.72L80.59%20568.46C140.19%20603.68%20177.61%20611.54%20228.06%20610.53C254.23%20609.94%20273.15%20605.21%20285.47%20592.42C292.94%20584.76%20296.79%20575.07%20297.19%20564.74C297.66%20536.35%20257.28%20523.04%20207.81%20507.79C167.72%20495.21%20122.32%20478.43%2086.74%20452.36C44.69%20421.4%2024.6%20382.68%2025.6%20328.12C26.27%20288.3%2041%20252.52%2068.22%20224.23C107.39%20183.8%20170.54%20159.1%20246.32%20159.1H246.72C311.68%20159.24%20391.09%20177.62%20448.39%20206.89L386.53%20314.63C323.73%20284.27%20292.09%20281.37%20256.23%20279.55C203.02%20276.71%20176.04%20295.73%20175.63%20316.24C175.17%20341.32%20226.15%20363.96%20274.04%20379.38C346.7%20402.4%20439.12%20433.29%20453.17%20522.49L586.07%20168.57H740.25L895.8%20591.89V168.57H1073.85M662.29%20530.93C682.56%20530.93%20701.52%20527.27%20718.18%20521.3L662.88%20342.73H661.67L605.19%20520.82C622.01%20527.15%20641.48%20530.93%20662.23%20530.93H662.29ZM1084.25%20428.43C1136.6%20428.43%201178.27%20411.11%201178.27%20355.83C1178.27%20302.3%201136.6%20285.05%201084.25%20285.05H1045.04V428.43H1084.25Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--sas { aspect-ratio:2.7313; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221535%22%20height%3D%22562%22%20viewBox%3D%220%200%201535%20562%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24848)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1010.7%2017.4001L906.8%20548.3C906.3%20550.9%20905.4%20551.8%20902.7%20551.8C881.7%20551.8%20738.3%20551.8%20718.3%20551.8C713%20551.8%20712.6%20547.7%20712.9%20546.2C712.9%20546.2%20734.7%20434.3%20735.1%20432C735.6%20429.7%20733.3%20429.9%20733.3%20429.9C733.3%20429.9%20582.2%20429.9%20580.7%20429.9C578.8%20429.9%20577.4%20432%20577.4%20432L486.5%20548.5C485.3%20550.1%20484.7%20551.8%20478.4%20551.8C464.4%20551.9%20424.9%20551.9%20415.1%20551.9C410.8%20551.9%20410.3%20548.7%20412.8%20545.7L839.8%2016.4001C839.8%2016.4001%20843.1%2011.9001%20850.9%2011.9001C862.1%2011.9001%20945.2%2011.8001%201005.9%2011.8001C1012.6%2011.8001%201010.7%2017.4001%201010.7%2017.4001ZM746.1%20374.4C746.4%20374.1%20746.6%20373.2%20746.6%20373.2L786.6%20168.2C786.6%20168.2%20787%20166.4%20785.8%20166.4C784.5%20166.4%20783.3%20168%20783.3%20168L623.8%20372.5C623.8%20372.5%20622.9%20373.6%20623.3%20374.3C623.8%20375%20624.6%20374.8%20624.6%20374.8H744.6C744.6%20374.8%20745.7%20374.8%20746.1%20374.4ZM15.6%20432.7C17.5%20426%2021.5%20424.3%2024.5%20427.4C42.7%20445.8%2096.5%20499.2%20174.7%20499.2C258.8%20499.2%20253.5%20429.3%20253.5%20419.2C253.3%20392.9%20216.7%20256.1%20207.6%20219.6C179%20105.4%20248.9%200.100071%20413.1%200.200071C501.4%200.200071%20543.3%2023.9001%20560.1%2032.7001C571%2038.4001%20568.6%2046.7001%20568.6%2046.7001C568.6%2046.7001%20560.3%2089.9001%20559.5%2093.1001C558.3%2098.7001%20554.8%2097.0001%20550%2094.0001C524.7%2078.1001%20495.7%2060.6001%20449.4%2060.6001C395.1%2060.6001%20367.5%20101.5%20382%20158.3C386.9%20177.8%20421.2%20316.5%20427.4%20343.3C450.7%20443.6%20384.3%20561.8%20201.1%20561.9C99.4%20561.9%2035.3%20523.3%2013.7%20505.5C2.29998%20496%20-1.20002%20490.7%200.29998%20484.4C0.29998%20484.4%2014.7%20436.2%2015.6%20432.7ZM981.7%20432.6C982.6%20426.7%20988.6%20425.2%20992.7%20429.2C1011%20447.5%201062.6%20499%201140.7%20499C1224.9%20499%201219.6%20429.2%201219.6%20419.1C1219.4%20392.7%201182.8%20255.9%201173.6%20219.4C1145.1%20105.2%201215%20-0.0999288%201379.2%207.11678e-05C1467.5%207.11678e-05%201509.4%2023.7001%201526.2%2032.5001C1537.2%2038.2001%201534.7%2046.6001%201534.7%2046.6001C1534.7%2046.6001%201526.3%2089.7001%201525.6%2092.9001C1524.3%2098.5001%201520.8%2096.9001%201516%2093.8001C1490.7%2078.0001%201461.8%2060.4001%201415.4%2060.4001C1361.2%2060.5001%201333.6%20101.3%201348%20158.1C1353%20177.7%201387.3%20316.4%201393.5%20343.1C1416.7%20443.4%201350.3%20561.7%201167.2%20561.7C1065.5%20561.7%201006.5%20526%20984.9%20508.3C973.4%20498.8%20970%20493.4%20971.5%20487.1C971.5%20487.1%20981.2%20436.1%20981.7%20432.6Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24848%22%3E%20%3Crect%20width%3D%221535%22%20height%3D%22562%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221535%22%20height%3D%22562%22%20viewBox%3D%220%200%201535%20562%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24848)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1010.7%2017.4001L906.8%20548.3C906.3%20550.9%20905.4%20551.8%20902.7%20551.8C881.7%20551.8%20738.3%20551.8%20718.3%20551.8C713%20551.8%20712.6%20547.7%20712.9%20546.2C712.9%20546.2%20734.7%20434.3%20735.1%20432C735.6%20429.7%20733.3%20429.9%20733.3%20429.9C733.3%20429.9%20582.2%20429.9%20580.7%20429.9C578.8%20429.9%20577.4%20432%20577.4%20432L486.5%20548.5C485.3%20550.1%20484.7%20551.8%20478.4%20551.8C464.4%20551.9%20424.9%20551.9%20415.1%20551.9C410.8%20551.9%20410.3%20548.7%20412.8%20545.7L839.8%2016.4001C839.8%2016.4001%20843.1%2011.9001%20850.9%2011.9001C862.1%2011.9001%20945.2%2011.8001%201005.9%2011.8001C1012.6%2011.8001%201010.7%2017.4001%201010.7%2017.4001ZM746.1%20374.4C746.4%20374.1%20746.6%20373.2%20746.6%20373.2L786.6%20168.2C786.6%20168.2%20787%20166.4%20785.8%20166.4C784.5%20166.4%20783.3%20168%20783.3%20168L623.8%20372.5C623.8%20372.5%20622.9%20373.6%20623.3%20374.3C623.8%20375%20624.6%20374.8%20624.6%20374.8H744.6C744.6%20374.8%20745.7%20374.8%20746.1%20374.4ZM15.6%20432.7C17.5%20426%2021.5%20424.3%2024.5%20427.4C42.7%20445.8%2096.5%20499.2%20174.7%20499.2C258.8%20499.2%20253.5%20429.3%20253.5%20419.2C253.3%20392.9%20216.7%20256.1%20207.6%20219.6C179%20105.4%20248.9%200.100071%20413.1%200.200071C501.4%200.200071%20543.3%2023.9001%20560.1%2032.7001C571%2038.4001%20568.6%2046.7001%20568.6%2046.7001C568.6%2046.7001%20560.3%2089.9001%20559.5%2093.1001C558.3%2098.7001%20554.8%2097.0001%20550%2094.0001C524.7%2078.1001%20495.7%2060.6001%20449.4%2060.6001C395.1%2060.6001%20367.5%20101.5%20382%20158.3C386.9%20177.8%20421.2%20316.5%20427.4%20343.3C450.7%20443.6%20384.3%20561.8%20201.1%20561.9C99.4%20561.9%2035.3%20523.3%2013.7%20505.5C2.29998%20496%20-1.20002%20490.7%200.29998%20484.4C0.29998%20484.4%2014.7%20436.2%2015.6%20432.7ZM981.7%20432.6C982.6%20426.7%20988.6%20425.2%20992.7%20429.2C1011%20447.5%201062.6%20499%201140.7%20499C1224.9%20499%201219.6%20429.2%201219.6%20419.1C1219.4%20392.7%201182.8%20255.9%201173.6%20219.4C1145.1%20105.2%201215%20-0.0999288%201379.2%207.11678e-05C1467.5%207.11678e-05%201509.4%2023.7001%201526.2%2032.5001C1537.2%2038.2001%201534.7%2046.6001%201534.7%2046.6001C1534.7%2046.6001%201526.3%2089.7001%201525.6%2092.9001C1524.3%2098.5001%201520.8%2096.9001%201516%2093.8001C1490.7%2078.0001%201461.8%2060.4001%201415.4%2060.4001C1361.2%2060.5001%201333.6%20101.3%201348%20158.1C1353%20177.7%201387.3%20316.4%201393.5%20343.1C1416.7%20443.4%201350.3%20561.7%201167.2%20561.7C1065.5%20561.7%201006.5%20526%20984.9%20508.3C973.4%20498.8%20970%20493.4%20971.5%20487.1C971.5%20487.1%20981.2%20436.1%20981.7%20432.6Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24848%22%3E%20%3Crect%20width%3D%221535%22%20height%3D%22562%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--stellantis { aspect-ratio:4.6951; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221540%22%20height%3D%22328%22%20viewBox%3D%220%200%201540%20328%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1054.22%20118.9C1053.89%20118.93%201053.56%20118.89%201053.24%20118.79C1052.93%20118.68%201052.64%20118.52%201052.39%20118.31C1052.14%20118.09%201051.93%20117.83%201051.78%20117.54C1051.62%20117.24%201051.53%20116.92%201051.5%20116.59H1051.51C1051.46%20115.92%201051.68%20115.26%201052.12%20114.75C1052.56%20114.24%201053.19%20113.93%201053.86%20113.88C1054.53%20113.84%201055.19%20114.06%201055.7%20114.5C1056.21%20114.94%201056.52%20115.56%201056.58%20116.23C1056.6%20116.57%201056.56%20116.9%201056.45%20117.22C1056.35%20117.53%201056.18%20117.83%201055.96%20118.08C1055.74%20118.33%201055.48%20118.54%201055.18%20118.69C1054.88%20118.84%201054.55%20118.93%201054.22%20118.95M892.88%2036.7199C892.88%2035.7499%20893.07%2034.7999%20893.44%2033.8999C893.82%2032.9999%20894.36%2032.1899%20895.05%2031.5099C895.73%2030.8199%20896.54%2030.2799%20897.44%2029.9099C898.34%2029.5299%20899.3%2029.3399%20900.27%2029.3399C903.25%2029.3399%20905.94%2031.1399%20907.09%2033.8999C908.23%2036.6599%20907.6%2039.8299%20905.49%2041.9399C903.37%2044.0499%20900.2%2044.6799%20897.44%2043.5399C894.68%2042.3999%20892.88%2039.7099%20892.88%2036.7199ZM939.81%2052.5299C939.81%2051.5599%20940%2050.5999%20940.37%2049.6999C940.74%2048.8099%20941.28%2047.9899%20941.97%2047.3099C942.66%2046.6199%20943.47%2046.0799%20944.37%2045.7099C945.26%2045.3399%20946.22%2045.1499%20947.19%2045.1499C950.2%2045.1499%20952.9%2046.9599%20954.05%2049.7299C955.2%2052.4999%20954.57%2055.6999%20952.44%2057.8199C950.32%2059.9499%20947.12%2060.5799%20944.35%2059.4299C941.57%2058.2799%20939.76%2055.5699%20939.76%2052.5699L939.81%2052.5299ZM763.21%20245.77C763.21%20244.8%20763.41%20243.84%20763.79%20242.95C764.16%20242.06%20764.71%20241.25%20765.4%20240.57C766.09%20239.89%20766.91%20239.35%20767.81%20238.98C768.7%20238.62%20769.66%20238.43%20770.63%20238.44C773.64%20238.46%20776.34%20240.28%20777.47%20243.06C778.6%20245.84%20777.95%20249.03%20775.81%20251.14C773.67%20253.26%20770.47%20253.87%20767.7%20252.7C764.94%20251.54%20763.14%20248.82%20763.16%20245.82L763.21%20245.77ZM799.71%20276.47C799.72%20275.5%20799.91%20274.54%20800.29%20273.65C800.66%20272.75%20801.2%20271.94%20801.89%20271.25C802.57%20270.56%20803.38%20270.01%20804.27%20269.63C805.17%20269.26%20806.13%20269.06%20807.1%20269.04C810.1%20269.04%20812.81%20270.85%20813.96%20273.63C815.11%20276.4%20814.47%20279.6%20812.35%20281.72C810.22%20283.84%20807.03%20284.48%20804.25%20283.33C801.48%20282.18%20799.67%20279.47%20799.67%20276.47H799.71ZM846.74%20287.93C847.11%20287.03%20847.66%20286.2%20848.35%20285.51C849.04%20284.82%20849.86%20284.28%20850.76%20283.91C851.67%20283.53%20852.64%20283.35%20853.61%20283.35C856.62%20283.35%20859.33%20285.16%20860.48%20287.94C861.63%20290.71%20860.99%20293.9%20858.87%20296.03C856.74%20298.15%20853.55%20298.79%20850.77%20297.64C847.99%20296.49%20846.18%20293.78%20846.18%20290.78C846.18%20289.8%20846.37%20288.83%20846.74%20287.93ZM893.92%20290.19C893.9%20289.2%20894.07%20288.22%20894.44%20287.3C894.8%20286.38%20895.34%20285.54%20896.04%20284.84C896.73%20284.13%20897.56%20283.57%20898.47%20283.19C899.38%20282.81%20900.36%20282.62%20901.35%20282.63C904.32%20282.65%20906.98%20284.44%20908.12%20287.17C909.26%20289.91%20908.65%20293.06%20906.57%20295.18C904.5%20297.29%20901.35%20297.96%20898.6%20296.87C895.84%20295.78%20894%20293.15%20893.92%20290.19ZM939.85%20275.56C939.85%20274.59%20940.03%20273.62%20940.41%20272.72C940.78%20271.81%20941.32%20270.99%20942.02%20270.3C942.71%20269.61%20943.53%20269.06%20944.43%20268.69C945.34%20268.32%20946.3%20268.13%20947.28%20268.14C950.27%20268.18%20952.94%20270%20954.07%20272.76C955.2%20275.53%20954.56%20278.7%20952.44%20280.81C950.33%20282.93%20947.16%20283.57%20944.39%20282.44C941.62%20281.32%20939.8%20278.64%20939.76%20275.66L939.85%20275.56ZM976.91%20243.38C977.28%20242.47%20977.83%20241.65%20978.52%20240.96C979.21%20240.27%20980.03%20239.72%20980.94%20239.35C981.84%20238.98%20982.81%20238.79%20983.79%20238.8C986.79%20238.8%20989.5%20240.61%20990.65%20243.38C991.8%20246.16%20991.17%20249.35%20989.04%20251.48C986.92%20253.6%20983.72%20254.23%20980.95%20253.08C978.17%20251.94%20976.36%20249.23%20976.36%20246.22C976.35%20245.25%20976.54%20244.28%20976.91%20243.38ZM975.86%2081.8699C975.86%2080.8899%20976.04%2079.9299%20976.41%2079.0299C976.78%2078.1299%20977.32%2077.3099%20978.01%2076.6199C978.69%2075.9299%20979.51%2075.3799%20980.41%2075.0099C981.31%2074.6299%20982.27%2074.4399%20983.24%2074.4399C986.23%2074.4399%20988.92%2076.2299%20990.06%2078.9899C991.21%2081.7399%20990.58%2084.9099%20988.48%2087.0199C986.38%2089.1399%20983.21%2089.7799%20980.45%2088.6499C977.69%2087.5199%20975.88%2084.8499%20975.86%2081.8699ZM924%2062.3099C924.01%2063.5499%20923.77%2064.7799%20923.3%2065.9199C922.83%2067.0699%20922.13%2068.1199%20921.26%2068.9899C920.38%2069.8699%20919.34%2070.5699%20918.19%2071.0499C917.05%2071.5199%20915.82%2071.7699%20914.58%2071.7699C910.77%2071.7699%20907.34%2069.4799%20905.88%2065.9699C904.42%2062.4499%20905.22%2058.3999%20907.9%2055.7099C910.59%2053.0099%20914.63%2052.1899%20918.15%2053.6399C921.67%2055.0799%20923.98%2058.4999%20924%2062.3099ZM955.71%2081.8199C955.71%2083.0599%20955.47%2084.2899%20955%2085.4399C954.53%2086.5899%20953.84%2087.6299%20952.96%2088.5099C952.09%2089.3899%20951.05%2090.0899%20949.9%2090.5599C948.75%2091.0399%20947.53%2091.2799%20946.28%2091.2799C942.48%2091.2799%20939.05%2088.9899%20937.59%2085.4799C936.12%2081.9699%20936.92%2077.9199%20939.61%2075.2199C942.29%2072.5299%20946.34%2071.7099%20949.86%2073.1499C953.38%2074.5999%20955.69%2078.0199%20955.71%2081.8199ZM980.44%20109.67C980.44%20110.91%20980.2%20112.14%20979.73%20113.3C979.25%20114.45%20978.56%20115.49%20977.68%20116.37C976.8%20117.25%20975.75%20117.95%20974.6%20118.42C973.45%20118.9%20972.21%20119.14%20970.97%20119.13C967.14%20119.13%20963.69%20116.82%20962.22%20113.29C960.76%20109.75%20961.57%20105.68%20964.28%20102.98C966.98%20100.27%20971.06%2099.4599%20974.59%20100.92C978.13%20102.39%20980.44%20105.84%20980.44%20109.67ZM912.68%203.80988C912.65%204.12988%20912.56%204.44988%20912.4%204.73988C912.25%205.03988%20912.04%205.28988%20911.79%205.50988C911.54%205.71988%20911.24%205.86988%20910.93%205.96988C910.62%206.06988%20910.29%206.09988%20909.96%206.06988C909.63%206.03988%20909.31%205.93988%20909.01%205.77988C908.72%205.62988%20908.46%205.40988%20908.24%205.15988C908.03%204.89988%20907.87%204.60988%20907.76%204.28988C907.66%203.97988%20907.62%203.63988%20907.65%203.30988C907.68%202.97988%20907.78%202.65988%20907.94%202.35988C908.09%202.06988%20908.31%201.80988%20908.56%201.58988C908.82%201.37988%20909.11%201.21988%20909.43%201.11988C909.75%201.00988%20910.08%200.969877%20910.41%200.999877C910.74%201.03988%20911.05%201.13988%20911.34%201.29988C911.63%201.45988%20911.88%201.66988%20912.08%201.92988C912.29%202.17988%20912.44%202.47988%20912.54%202.78988C912.63%203.10988%20912.66%203.43988%20912.63%203.75988L912.68%203.80988ZM975.86%2026.7199C975.83%2027.0499%20975.74%2027.3699%20975.59%2027.6599C975.44%2027.9599%20975.23%2028.2199%20974.98%2028.4299C974.73%2028.6399%20974.43%2028.8099%20974.12%2028.9099C973.81%2029.0099%20973.47%2029.0499%20973.14%2029.0299C972.86%2028.9699%20972.59%2028.8699%20972.34%2028.7199C972.09%2028.5799%20971.86%2028.3899%20971.68%2028.1699C971.49%2027.9499%20971.34%2027.6999%20971.23%2027.4299C971.13%2027.1599%20971.07%2026.8699%20971.06%2026.5799C971.06%2026.2499%20971.12%2025.9199%20971.25%2025.6099C971.37%2025.3099%20971.55%2025.0299%20971.78%2024.7899C972.01%2024.5499%20972.29%2024.3599%20972.59%2024.2199C972.89%2024.0899%20973.22%2024.0099%20973.55%2023.9999C973.88%2024.0299%20974.2%2024.1199%20974.49%2024.2699C974.78%2024.4299%20975.04%2024.6399%20975.25%2024.8899C975.46%2025.1399%20975.62%2025.4299%20975.72%2025.7499C975.81%2026.0599%20975.85%2026.3899%20975.82%2026.7199H975.86ZM1025.41%2062.2599C1025.42%2062.2999%201025.42%2062.3399%201025.43%2062.3899C1025.43%2062.4299%201025.43%2062.4699%201025.43%2062.5099C1025.43%2062.5499%201025.43%2062.5899%201025.43%2062.6299C1025.42%2062.6799%201025.42%2062.7199%201025.41%2062.7599C1025.34%2063.0799%201025.21%2063.3899%201025.02%2063.6699C1024.84%2063.9499%201024.6%2064.1899%201024.33%2064.3699C1024.05%2064.5599%201023.74%2064.6999%201023.42%2064.7699C1023.09%2064.8399%201022.75%2064.8499%201022.42%2064.7999C1022.1%2064.7299%201021.79%2064.5899%201021.52%2064.4099C1021.24%2064.2199%201021.01%2063.9799%201020.82%2063.7099C1020.64%2063.4299%201020.51%2063.1199%201020.44%2062.7899C1020.37%2062.4699%201020.37%2062.1299%201020.43%2061.8099C1020.46%2061.4799%201020.55%2061.1599%201020.7%2060.8699C1020.86%2060.5799%201021.07%2060.3199%201021.32%2060.1099C1021.57%2059.8999%201021.86%2059.7399%201022.18%2059.6399C1022.49%2059.5499%201022.82%2059.5099%201023.15%2059.5399C1023.48%2059.5699%201023.81%2059.6699%201024.1%2059.8199C1024.4%2059.9799%201024.66%2060.1899%201024.88%2060.4399C1025.09%2060.6999%201025.26%2060.9999%201025.36%2061.3199C1025.45%2061.6399%201025.49%2061.9699%201025.46%2062.3099L1025.41%2062.2599ZM939.58%2029.3899C939.55%2030.0299%20939.38%2030.6599%20939.1%2031.2399C938.82%2031.8199%20938.42%2032.3299%20937.94%2032.7599C937.45%2033.1799%20936.89%2033.4999%20936.27%2033.6999C935.66%2033.8999%20935.01%2033.9699%20934.37%2033.9199C932.45%2033.7499%20930.82%2032.4499%20930.22%2030.6199C929.62%2028.7899%20930.18%2026.7799%20931.64%2025.5099C933.09%2024.2499%20935.16%2023.9799%20936.89%2024.8199C938.62%2025.6699%20939.68%2027.4699%20939.58%2029.3899ZM987.55%2053.2499C987.52%2053.8899%20987.36%2054.5199%20987.08%2055.0999C986.81%2055.6799%20986.41%2056.1899%20985.93%2056.6199C985.45%2057.0399%20984.89%2057.3599%20984.28%2057.5599C983.67%2057.7599%20983.02%2057.8299%20982.38%2057.7799H981.93C980.63%2057.6499%20979.44%2057.0099%20978.63%2055.9899C977.82%2054.9599%20977.46%2053.6599%20977.63%2052.3699C977.8%2051.0699%20978.5%2049.9099%20979.55%2049.1399C980.6%2048.3599%20981.91%2048.0499%20983.2%2048.2699C983.84%2048.2999%20984.47%2048.4699%20985.05%2048.7499C985.63%2049.0299%20986.15%2049.4299%20986.57%2049.9099C986.99%2050.3999%20987.31%2050.9699%20987.51%2051.5799C987.71%2052.1899%20987.78%2052.8399%20987.73%2053.4799L987.55%2053.2499ZM1020.52%2087.5299C1021.16%2087.5599%201021.79%2087.7199%201022.37%2088.0099C1022.95%2088.2899%201023.47%2088.6799%201023.89%2089.1699C1024.31%2089.6599%201024.63%2090.2199%201024.83%2090.8299C1025.03%2091.4499%201025.11%2092.0899%201025.05%2092.7299C1024.88%2094.6499%201023.59%2096.2899%201021.75%2096.8799C1019.92%2097.4799%201017.91%2096.9199%201016.64%2095.4699C1015.38%2094.0099%201015.11%2091.9499%201015.95%2090.2099C1016.8%2088.4799%201018.6%2087.4199%201020.52%2087.5299ZM876.89%2016.2599C877.53%2016.2499%20878.15%2016.3699%20878.74%2016.6099C879.32%2016.8499%20879.86%2017.1999%20880.3%2017.6499C880.75%2018.0999%20881.1%2018.6299%20881.34%2019.2099C881.58%2019.7999%20881.7%2020.4299%20881.7%2021.0599C881.68%2023.0199%20880.48%2024.7699%20878.66%2025.5099C876.84%2026.2399%20874.76%2025.7999%20873.39%2024.4099C872.02%2023.0099%20871.62%2020.9199%20872.39%2019.1199C873.16%2017.3099%20874.93%2016.1499%20876.89%2016.1699V16.2599ZM853.52%2029.5199C854.49%2029.5299%20855.45%2029.7199%20856.35%2030.0899C857.24%2030.4599%20858.06%2030.9999%20858.74%2031.6899C859.43%2032.3699%20859.97%2033.1899%20860.34%2034.0799C860.71%2034.9799%20860.91%2035.9399%20860.91%2036.9099C860.89%2039.9099%20859.06%2042.6099%20856.28%2043.7399C853.5%2044.8699%20850.3%2044.2099%20848.19%2042.0799C846.08%2039.9399%20845.47%2036.7399%20846.63%2033.9799C847.8%2031.2099%20850.52%2029.4199%20853.52%2029.4299V29.5199ZM806.64%2045.1899C807.61%2045.1999%20808.57%2045.3999%20809.46%2045.7799C810.36%2046.1599%20811.17%2046.7099%20811.85%2047.3899C812.54%2048.0799%20813.08%2048.8999%20813.45%2049.7899C813.83%2050.6899%20814.02%2051.6499%20814.03%2052.6199C814.01%2055.6199%20812.18%2058.3199%20809.4%2059.4499C806.62%2060.5799%20803.42%2059.9299%20801.31%2057.7899C799.2%2055.6499%20798.59%2052.4599%20799.75%2049.6899C800.92%2046.9199%20803.64%2045.1299%20806.64%2045.1499V45.1899ZM687.61%20192.07H765.7L760.67%20205.66H667.09V114.19H687.61V192.07ZM747.35%20113.29C748.31%20113.32%20749.26%20113.55%20750.14%20113.94C751.01%20114.34%20751.8%20114.91%20752.46%20115.61C753.12%20116.31%20753.64%20117.13%20753.98%20118.03C754.32%20118.93%20754.49%20119.89%20754.46%20120.85C754.45%20123.85%20752.62%20126.55%20749.84%20127.68C747.05%20128.81%20743.86%20128.16%20741.75%20126.02C739.64%20123.89%20739.02%20120.69%20740.19%20117.92C741.36%20115.15%20744.08%20113.36%20747.08%20113.38L747.35%20113.29ZM770.95%2074.4399C771.92%2074.4499%20772.88%2074.6499%20773.77%2075.0299C774.67%2075.4099%20775.48%2075.9599%20776.16%2076.6399C776.85%2077.3299%20777.39%2078.1499%20777.76%2079.0399C778.13%2079.9399%20778.33%2080.8999%20778.33%2081.8699C778.32%2084.8699%20776.49%2087.5699%20773.71%2088.6999C770.92%2089.8299%20767.73%2089.1799%20765.62%2087.0399C763.51%2084.8999%20762.89%2081.7099%20764.06%2078.9399C765.23%2076.1699%20767.95%2074.3799%20770.95%2074.3999V74.4399ZM876.89%20281.13C875.65%20281.13%20874.43%20280.88%20873.29%20280.4C872.14%20279.92%20871.1%20279.22%20870.23%20278.35C869.36%20277.47%20868.66%20276.43%20868.19%20275.28C867.72%20274.14%20867.47%20272.91%20867.47%20271.67C867.49%20267.84%20869.81%20264.4%20873.36%20262.96C876.9%20261.51%20880.97%20262.34%20883.67%20265.06C886.36%20267.78%20887.15%20271.85%20885.67%20275.38C884.19%20278.91%20880.72%20281.2%20876.89%20281.18V281.13ZM876.89%2066.1099C875.65%2066.0999%20874.43%2065.8499%20873.29%2065.3799C872.14%2064.8999%20871.1%2064.1999%20870.23%2063.3199C869.36%2062.4399%20868.66%2061.3999%20868.19%2060.2599C867.72%2059.1099%20867.47%2057.8899%20867.47%2056.6499C867.49%2052.8199%20869.81%2049.3799%20873.36%2047.9299C876.9%2046.4799%20880.97%2047.3099%20883.67%2050.0299C886.36%2052.7499%20887.15%2056.8299%20885.67%2060.3499C884.19%2063.8799%20880.72%2066.1699%20876.89%2066.1499V66.1099ZM839.25%2071.6299C838.02%2071.6299%20836.79%2071.3799%20835.65%2070.8999C834.51%2070.4199%20833.48%2069.7199%20832.61%2068.8399C831.74%2067.9599%20831.05%2066.9199%20830.58%2065.7799C830.11%2064.6299%20829.87%2063.4099%20829.88%2062.1699C829.9%2058.3399%20832.22%2054.8999%20835.76%2053.4599C839.31%2052.0099%20843.38%2052.8399%20846.07%2055.5599C848.77%2058.2799%20849.56%2062.3499%20848.07%2065.8799C846.59%2069.4099%20843.13%2071.6999%20839.3%2071.6799L839.25%2071.6299ZM807.5%2091.0999C806.27%2091.0999%20805.04%2090.8499%20803.9%2090.3699C802.76%2089.8899%20801.73%2089.1899%20800.85%2088.3099C799.98%2087.4299%20799.3%2086.3899%20798.83%2085.2499C798.36%2084.0999%20798.12%2082.8799%20798.13%2081.6399C798.15%2077.8099%20800.47%2074.3699%20804.01%2072.9299C807.56%2071.4799%20811.63%2072.3099%20814.32%2075.0299C817.01%2077.7499%20817.8%2081.8199%20816.32%2085.3499C814.84%2088.8799%20811.38%2091.1699%20807.55%2091.1499L807.5%2091.0999ZM782.82%20118.86C781.58%20118.85%20780.36%20118.6%20779.22%20118.12C778.08%20117.65%20777.04%20116.95%20776.17%20116.07C775.3%20115.19%20774.61%20114.15%20774.14%20113C773.67%20111.86%20773.44%20110.63%20773.44%20109.4C773.54%20105.55%20775.95%20102.15%20779.54%20100.78C783.13%2099.4199%20787.2%20100.36%20789.82%20103.17C792.45%20105.98%20793.11%20110.09%20791.51%20113.58C789.9%20117.07%20786.34%20119.25%20782.5%20119.08L782.82%20118.86ZM772.54%20153.95C771.3%20153.95%20770.07%20153.7%20768.93%20153.23C767.79%20152.76%20766.75%20152.06%20765.87%20151.19C765%20150.32%20764.31%20149.28%20763.83%20148.13C763.36%20146.99%20763.12%20145.77%20763.12%20144.53C763.13%20140.7%20765.46%20137.26%20769%20135.82C772.55%20134.37%20776.61%20135.2%20779.31%20137.92C782%20140.64%20782.79%20144.71%20781.31%20148.24C779.83%20151.77%20776.37%20154.06%20772.54%20154.04V153.95ZM843.83%206.06988C843.5%206.09988%20843.17%206.05988%20842.86%205.94988C842.55%205.84988%20842.26%205.68988%20842.01%205.46988C841.76%205.25988%20841.56%204.99988%20841.41%204.69988C841.27%204.40988%20841.18%204.08988%20841.16%203.75988C841.12%203.42988%20841.15%203.09988%20841.24%202.77988C841.34%202.45988%20841.49%202.15988%20841.71%201.89988C841.92%201.64988%20842.18%201.42988%20842.47%201.27988C842.77%201.11988%20843.09%201.02988%20843.42%200.999877C843.75%200.969877%20844.09%201.00988%20844.41%201.11988C844.72%201.21988%20845.02%201.37988%20845.27%201.58988C845.53%201.80988%20845.74%202.06988%20845.9%202.35988C846.05%202.65988%20846.15%202.97988%20846.18%203.30988C846.21%203.63988%20846.17%203.97988%20846.07%204.28988C845.97%204.60988%20845.8%204.89988%20845.59%205.15988C845.38%205.40988%20845.12%205.62988%20844.82%205.77988C844.53%205.93988%20844.21%206.03988%20843.87%206.06988H843.83ZM779.76%2028.8599C779.44%2028.7599%20779.15%2028.5999%20778.9%2028.3899C778.65%2028.1699%20778.44%2027.9099%20778.29%2027.6199C778.14%2027.3199%20778.05%2026.9999%20778.02%2026.6699C777.99%2026.3499%20778.03%2026.0199%20778.14%2025.6999C778.24%2025.3899%20778.4%2025.1099%20778.62%2024.8599C778.83%2024.6099%20779.09%2024.4099%20779.39%2024.2599C779.68%2024.1099%20780%2024.0199%20780.33%2023.9999C780.66%2023.9799%20780.99%2024.0199%20781.3%2024.1199C781.62%2024.2199%20781.91%2024.3799%20782.16%2024.5999C782.41%2024.8099%20782.62%2025.0699%20782.77%2025.3699C782.92%2025.6599%20783.02%2025.9799%20783.04%2026.3099C783.07%2026.6399%20783.03%2026.9699%20782.93%2027.2799C782.82%2027.5899%20782.66%2027.8799%20782.45%2028.1299C782.23%2028.3699%20781.97%2028.5799%20781.68%2028.7199C781.38%2028.8699%20781.06%2028.9599%20780.73%2028.9799C780.4%2029.0099%20780.07%2028.9699%20779.76%2028.8599ZM1054.08%20226.8C1053.75%20226.83%201053.42%20226.79%201053.11%20226.68C1052.79%20226.58%201052.5%20226.42%201052.25%20226.2C1052%20225.99%201051.79%20225.73%201051.64%20225.43C1051.49%20225.14%201051.4%20224.82%201051.37%20224.49C1051.34%20224.16%201051.38%20223.84%201051.49%20223.52C1051.59%20223.21%201051.75%20222.92%201051.97%20222.68C1052.18%20222.43%201052.44%20222.22%201052.74%20222.08C1053.03%20221.93%201053.35%20221.84%201053.68%20221.82H1054.22C1054.89%20221.82%201055.54%20222.09%201056.01%20222.56C1056.49%20223.04%201056.76%20223.68%201056.76%20224.36C1056.76%20225.03%201056.49%20225.67%201056.01%20226.15C1055.54%20226.62%201054.89%20226.89%201054.22%20226.89L1054.08%20226.8ZM1022.84%20268.81C1022.52%20268.71%201022.22%20268.54%201021.97%20268.33C1021.71%20268.11%201021.5%20267.85%201021.34%20267.55C1021.19%20267.26%201021.09%20266.93%201021.07%20266.6C1021.04%20266.27%201021.08%20265.93%201021.18%20265.62C1021.28%20265.3%201021.45%20265%201021.66%20264.75C1021.87%20264.49%201022.13%20264.28%201022.43%20264.13C1022.72%20263.97%201023.04%20263.87%201023.38%20263.84C1023.71%20263.81%201024.04%20263.85%201024.36%20263.95C1024.68%20264.06%201024.97%20264.22%201025.23%20264.43C1025.48%20264.64%201025.69%20264.91%201025.85%20265.2C1026.01%20265.49%201026.1%20265.82%201026.14%20266.15C1026.16%20266.48%201026.11%20266.81%201026.01%20267.12C1025.91%20267.44%201025.74%20267.73%201025.53%20267.99C1025.32%20268.24%201025.06%20268.45%201024.77%20268.61C1024.48%20268.77%201024.16%20268.87%201023.83%20268.91C1023.49%20268.94%201023.16%20268.9%201022.84%20268.81ZM973.42%20304.45C973.09%20304.48%20972.76%20304.45%20972.44%20304.35C972.13%20304.25%20971.84%20304.1%20971.59%20303.89C971.33%20303.68%20971.12%20303.42%20970.97%20303.13C970.82%20302.83%20970.73%20302.52%20970.7%20302.19C970.69%20302.15%20970.69%20302.11%20970.69%20302.06C970.68%20302.02%20970.68%20301.98%20970.68%20301.94C970.68%20301.9%20970.68%20301.86%20970.69%20301.81C970.69%20301.77%20970.69%20301.73%20970.7%20301.69C970.7%20301.02%20970.97%20300.37%20971.44%20299.9C971.92%20299.42%20972.56%20299.15%20973.23%20299.15C973.91%20299.15%20974.55%20299.42%20975.03%20299.9C975.5%20300.37%20975.77%20301.02%20975.77%20301.69C975.8%20302.02%20975.76%20302.35%20975.65%20302.66C975.55%20302.97%20975.39%20303.26%20975.17%20303.51C974.96%20303.75%20974.7%20303.96%20974.4%20304.1C974.11%20304.25%20973.79%20304.34%20973.46%20304.36L973.42%20304.45ZM910.41%20326.99C909.74%20327.05%20909.08%20326.83%20908.56%20326.4C908.05%20325.96%20907.73%20325.34%20907.68%20324.67C907.63%20324%20907.84%20323.33%20908.28%20322.82C908.71%20322.31%20909.33%20321.99%20910%20321.93V321.94C910.68%20321.88%20911.34%20322.1%20911.85%20322.53C912.36%20322.97%20912.68%20323.59%20912.74%20324.26C912.79%20324.93%20912.58%20325.6%20912.14%20326.11C911.7%20326.62%20911.08%20326.94%20910.41%20327V326.99ZM843.87%20327V326.99C843.2%20327.05%20842.54%20326.83%20842.03%20326.4C841.51%20325.96%20841.2%20325.34%20841.14%20324.67C841.09%20324%20841.3%20323.33%20841.74%20322.82C842.18%20322.31%20842.8%20321.99%20843.47%20321.93V321.94C844.14%20321.88%20844.8%20322.09%20845.32%20322.52C845.84%20322.95%20846.16%20323.57%20846.22%20324.24C846.28%20324.91%20846.07%20325.57%20845.64%20326.09C845.21%20326.61%20844.59%20326.93%20843.92%20327H843.87ZM779.76%20303.93C779.44%20303.82%20779.15%20303.66%20778.9%20303.45C778.65%20303.23%20778.44%20302.97%20778.29%20302.68C778.14%20302.38%20778.05%20302.06%20778.02%20301.74C777.99%20301.41%20778.03%20301.08%20778.14%20300.77C778.24%20300.46%20778.4%20300.17%20778.62%20299.92C778.83%20299.67%20779.09%20299.47%20779.39%20299.32C779.68%20299.17%20780%20299.09%20780.33%20299.06C780.66%20299.04%20780.99%20299.08%20781.3%20299.18C781.62%20299.28%20781.91%20299.45%20782.16%20299.66C782.41%20299.87%20782.62%20300.14%20782.77%20300.43C782.92%20300.72%20783.02%20301.04%20783.04%20301.37C783.07%20301.7%20783.03%20302.03%20782.93%20302.34C782.82%20302.65%20782.66%20302.94%20782.45%20303.19C782.23%20303.44%20781.97%20303.64%20781.68%20303.79C781.38%20303.93%20781.06%20304.02%20780.73%20304.04C780.4%20304.07%20780.07%20304.03%20779.76%20303.93ZM730.91%20268.46C730.58%20268.48%20730.25%20268.44%20729.94%20268.34C729.62%20268.24%20729.33%20268.07%20729.08%20267.86C728.83%20267.65%20728.62%20267.38%20728.47%20267.09C728.31%20266.8%20728.22%20266.48%20728.19%20266.15H728.2C728.15%20265.48%20728.37%20264.81%20728.81%20264.3C729.25%20263.8%20729.88%20263.48%20730.55%20263.44C731.22%20263.39%20731.88%20263.61%20732.39%20264.05C732.9%20264.49%20733.21%20265.11%20733.27%20265.78C733.29%20266.12%20733.25%20266.45%20733.14%20266.77C733.04%20267.09%20732.87%20267.38%20732.65%20267.63C732.43%20267.88%20732.17%20268.09%20731.87%20268.24C731.57%20268.39%20731.24%20268.48%20730.91%20268.5V268.46ZM699.61%20226.8C698.99%20226.78%20698.39%20226.54%20697.93%20226.11C697.48%20225.68%20697.2%20225.09%20697.15%20224.47C697.1%20223.85%20697.28%20223.23%20697.66%20222.73C698.04%20222.23%20698.59%20221.89%20699.21%20221.77H699.75C700.42%20221.77%20701.07%20222.04%20701.54%20222.52C702.02%20222.99%20702.29%20223.64%20702.29%20224.31C702.29%20224.98%20702.02%20225.63%20701.54%20226.1C701.07%20226.58%20700.42%20226.85%20699.75%20226.85L699.61%20226.8ZM731.14%2064.3399C730.81%2064.3699%20730.48%2064.3299%20730.16%2064.2299C729.85%2064.1199%20729.56%2063.9599%20729.3%2063.7499C729.05%2063.5299%20728.84%2063.2699%20728.69%2062.9799C728.54%2062.6799%20728.45%2062.3599%20728.42%2062.0299H728.43C728.38%2061.3599%20728.6%2060.6999%20729.04%2060.1899C729.48%2059.6799%20730.1%2059.3699%20730.78%2059.3199C731.45%2059.2799%20732.11%2059.4999%20732.62%2059.9399C733.13%2060.3799%20733.44%2060.9999%20733.49%2061.6699C733.52%2062.0099%20733.48%2062.3399%20733.37%2062.6599C733.27%2062.9699%20733.1%2063.2699%20732.88%2063.5199C732.66%2063.7699%20732.39%2063.9799%20732.1%2064.1299C731.8%2064.2799%20731.47%2064.3699%20731.14%2064.3899V64.3399ZM819.23%2033.5099C818.02%2033.4999%20816.85%2033.0399%20815.97%2032.2099C815.08%2031.3699%20814.55%2030.2399%20814.47%2029.0299C814.39%2027.8199%20814.77%2026.6199%20815.54%2025.6799C816.3%2024.7399%20817.4%2024.1199%20818.6%2023.9599C819.83%2023.9099%20821.04%2024.3399%20821.96%2025.1599C822.89%2025.9699%20823.46%2027.1099%20823.57%2028.3399C823.67%2029.5699%20823.3%2030.7999%20822.53%2031.7599C821.75%2032.7199%20820.64%2033.3499%20819.42%2033.5099H819.23ZM770.59%2057.5999C768.13%2057.4699%20766.23%2055.4199%20766.29%2052.9599C766.35%2050.5099%20768.36%2048.5499%20770.82%2048.5499C773.27%2048.5499%20775.28%2050.5099%20775.34%2052.9599C775.4%2055.4199%20773.5%2057.4699%20771.04%2057.5999H770.59ZM728.51%2092.7299C728.48%2092.1099%20728.57%2091.4799%20728.78%2090.8899C728.99%2090.2999%20729.32%2089.7499%20729.74%2089.2899C730.16%2088.8199%20730.67%2088.4399%20731.23%2088.1699C731.8%2087.8999%20732.41%2087.7399%20733.04%2087.7099C734.35%2087.5299%20735.68%2087.8999%20736.71%2088.7299C737.74%2089.5599%20738.38%2090.7799%20738.48%2092.0999C738.58%2093.4199%20738.13%2094.7199%20737.24%2095.6999C736.35%2096.6799%20735.09%2097.2399%20733.76%2097.2599H733.09C732.49%2097.2599%20731.9%2097.1399%20731.35%2096.9199C730.8%2096.6899%20730.3%2096.3499%20729.88%2095.9299C729.46%2095.5099%20729.13%2095.0099%20728.9%2094.4699C728.67%2093.9199%20728.56%2093.3299%20728.56%2092.7299H728.51ZM1098.52%20114.42H1118.99V204.75H1098.52L1012.46%20136.83V204.75H991.94V114.56H1012.55L1098.61%20182.11L1098.52%20114.42ZM1020.97%20230.56C1022.19%20230.56%201023.36%20231.03%201024.24%20231.86C1025.13%20232.69%201025.66%20233.83%201025.74%20235.04C1025.82%20236.25%201025.44%20237.45%201024.67%20238.39C1023.91%20239.33%201022.81%20239.95%201021.61%20240.11C1020.38%20240.16%201019.17%20239.73%201018.25%20238.91C1017.32%20238.1%201016.75%20236.95%201016.64%20235.72C1016.54%20234.49%201016.91%20233.27%201017.68%20232.31C1018.46%20231.35%201019.57%20230.72%201020.79%20230.56H1020.97ZM984.42%20270.18C985.02%20270.18%20985.61%20270.29%20986.16%20270.52C986.71%20270.75%20987.2%20271.08%20987.63%20271.5C988.05%20271.92%20988.38%20272.42%20988.61%20272.97C988.83%20273.52%20988.95%20274.11%20988.95%20274.7C988.98%20275.33%20988.89%20275.96%20988.68%20276.55C988.47%20277.14%20988.14%20277.68%20987.72%20278.15C987.3%20278.62%20986.8%20279%20986.23%20279.27C985.66%20279.54%20985.05%20279.7%20984.42%20279.73C983.11%20279.91%20981.78%20279.54%20980.75%20278.71C979.72%20277.88%20979.08%20276.66%20978.98%20275.34C978.88%20274.02%20979.33%20272.72%20980.22%20271.74C981.12%20270.76%20982.37%20270.2%20983.7%20270.18H984.42ZM934.51%20293.99C935.13%20293.96%20935.76%20294.06%20936.35%20294.27C936.93%20294.48%20937.48%20294.8%20937.94%20295.22C938.4%20295.64%20938.78%20296.15%20939.04%20296.72C939.31%20297.28%20939.46%20297.9%20939.49%20298.52C939.49%20298.66%20939.45%20297.7%20939.49%20298.97C939.54%20300.25%20939.08%20301.48%20938.21%20302.42C937.34%20303.35%20936.14%20303.9%20934.87%20303.95C933.6%20304%20932.36%20303.54%20931.42%20302.67C930.49%20301.81%20929.94%20300.61%20929.89%20299.34C929.86%20298.71%20929.95%20298.08%20930.16%20297.49C930.37%20296.9%20930.7%20296.36%20931.12%20295.89C931.54%20295.42%20932.04%20295.04%20932.61%20294.77C933.18%20294.5%20933.79%20294.34%20934.42%20294.31L934.51%20293.99ZM876.35%20302.14C877.58%20302.1%20878.79%20302.53%20879.71%20303.34C880.64%20304.16%20881.21%20305.3%20881.32%20306.53C881.42%20307.76%20881.05%20308.98%20880.28%20309.94C879.5%20310.91%20878.39%20311.53%20877.17%20311.7L876.71%20311.69C875.44%20311.74%20874.2%20311.28%20873.27%20310.42C872.33%20309.55%20871.78%20308.35%20871.73%20307.08C871.69%20305.81%20872.15%20304.57%20873.01%20303.63C873.88%20302.7%20875.08%20302.15%20876.35%20302.1V302.14ZM820.73%20295.76C821.37%20295.7%20822.02%20295.78%20822.63%20295.98C823.24%20296.18%20823.81%20296.5%20824.29%20296.92C824.78%20297.34%20825.18%20297.86%20825.46%20298.44C825.74%20299.01%20825.9%20299.64%20825.94%20300.29C826.04%20302.21%20824.98%20304.01%20823.25%20304.85C821.52%20305.7%20819.45%20305.43%20817.99%20304.16C816.54%20302.9%20815.98%20300.89%20816.58%20299.05C817.17%20297.22%20818.81%20295.92%20820.73%20295.76ZM770.41%20270.4C771.64%20270.36%20772.85%20270.79%20773.77%20271.6C774.7%20272.42%20775.27%20273.56%20775.37%20274.79C775.48%20276.02%20775.11%20277.24%20774.33%20278.2C773.56%20279.17%20772.45%20279.79%20771.22%20279.96L770.77%20279.95C769.5%20280%20768.26%20279.54%20767.32%20278.68C766.39%20277.81%20765.84%20276.61%20765.79%20275.34C765.74%20274.07%20766.2%20272.83%20767.07%20271.89C767.93%20270.96%20769.14%20270.41%20770.41%20270.36V270.4ZM733.22%20230.74C734.44%20230.75%20735.6%20231.21%20736.49%20232.04C737.37%20232.87%20737.91%20234.01%20737.99%20235.22C738.07%20236.43%20737.69%20237.63%20736.92%20238.57C736.15%20239.51%20735.06%20240.13%20733.86%20240.29C732.62%20240.34%20731.42%20239.91%20730.49%20239.09C729.57%20238.28%20728.99%20237.13%20728.89%20235.91C728.78%20234.68%20729.16%20233.45%20729.93%20232.49C730.7%20231.53%20731.82%20230.9%20733.04%20230.74H733.22ZM712.57%20138.78C713.78%20138.79%20714.95%20139.25%20715.83%20140.08C716.72%20140.91%20717.25%20142.05%20717.33%20143.26C717.41%20144.47%20717.03%20145.67%20716.27%20146.61C715.5%20147.55%20714.4%20148.17%20713.2%20148.33C711.97%20148.38%20710.76%20147.95%20709.84%20147.13C708.91%20146.32%20708.34%20145.18%20708.23%20143.95C708.13%20142.72%20708.5%20141.49%20709.28%20140.53C710.05%20139.57%20711.16%20138.94%20712.39%20138.78H712.57ZM849.08%20265.56C849.08%20266.79%20848.84%20268.02%20848.37%20269.16C847.89%20270.3%20847.2%20271.34%20846.32%20272.22C845.45%20273.09%20844.41%20273.79%20843.27%20274.26C842.12%20274.73%20840.9%20274.98%20839.66%20274.98C835.85%20274.98%20832.42%20272.68%20830.96%20269.16C829.5%20265.64%20830.31%20261.59%20833%20258.9C835.7%20256.21%20839.75%20255.4%20843.27%20256.86C846.79%20258.31%20849.08%20261.75%20849.08%20265.56ZM914.17%20256.14C915.41%20256.15%20916.63%20256.4%20917.77%20256.87C918.91%20257.35%20919.95%20258.05%20920.82%20258.93C921.69%20259.81%20922.38%20260.85%20922.85%20262C923.32%20263.14%20923.55%20264.37%20923.55%20265.6C923.53%20269.43%20921.21%20272.87%20917.66%20274.32C914.12%20275.77%20910.05%20274.94%20907.35%20272.22C904.66%20269.5%20903.87%20265.42%20905.35%20261.89C906.83%20258.37%20910.3%20256.08%20914.13%20256.1L914.17%20256.14ZM946.06%20237.3C947.33%20237.29%20948.59%20237.52%20949.77%20238C950.95%20238.48%20952.02%20239.19%20952.92%20240.09C953.82%20240.99%20954.53%20242.06%20955.01%20243.24C955.49%20244.42%20955.72%20245.68%20955.71%20246.95C955.67%20250.79%20953.31%20254.22%20949.75%20255.65C946.18%20257.07%20942.1%20256.19%20939.43%20253.43C936.76%20250.67%20936.03%20246.57%20937.57%20243.06C939.11%20239.54%20942.63%20237.3%20946.47%20237.4L946.06%20237.3ZM980.3%20218.33C980.31%20219.57%20980.07%20220.8%20979.6%20221.95C979.13%20223.1%20978.43%20224.14%20977.56%20225.02C976.68%20225.9%20975.64%20226.6%20974.5%20227.08C973.35%20227.55%20972.12%20227.8%20970.88%20227.8C967.07%20227.8%20963.64%20225.51%20962.18%20221.99C960.72%20218.48%20961.52%20214.43%20964.2%20211.74C966.89%20209.04%20970.93%20208.22%20974.45%20209.66C977.98%20211.11%20980.28%20214.53%20980.3%20218.33ZM807.82%20236.94C809.06%20236.95%20810.28%20237.2%20811.42%20237.68C812.56%20238.16%20813.6%20238.85%20814.47%20239.73C815.34%20240.61%20816.03%20241.65%20816.5%20242.8C816.96%20243.94%20817.2%20245.17%20817.2%20246.41C817.18%20250.23%20814.86%20253.67%20811.31%20255.12C807.77%20256.57%20803.7%20255.74%20801%20253.02C798.31%20250.3%20797.52%20246.23%20799%20242.7C800.48%20239.17%20803.95%20236.88%20807.78%20236.9L807.82%20236.94ZM782.77%20208.92C784.01%20208.92%20785.24%20209.16%20786.38%20209.63C787.52%20210.11%20788.56%20210.8%20789.43%20211.67C790.31%20212.55%20791%20213.59%20791.48%20214.73C791.95%20215.87%20792.19%20217.1%20792.19%20218.33C792.23%20222.18%20789.94%20225.66%20786.39%20227.15C782.85%20228.64%20778.75%20227.83%20776.03%20225.11C773.32%20222.4%20772.51%20218.3%20774%20214.76C775.49%20211.22%20778.97%20208.92%20782.82%20208.96L782.77%20208.92ZM1165.96%20114.19H1298.08L1293.15%20127.78H1239.88V205.66H1219.36V127.78H1160.98L1165.96%20114.19ZM738.02%20156.98C738.99%20156.98%20739.95%20157.17%20740.85%20157.54C741.74%20157.91%20742.56%20158.46%20743.24%20159.14C743.93%20159.83%20744.47%20160.64%20744.84%20161.54C745.21%20162.43%20745.41%20163.39%20745.41%20164.36C745.39%20167.37%20743.56%20170.06%20740.78%20171.19C738%20172.33%20734.8%20171.67%20732.69%20169.54C730.58%20167.4%20729.97%20164.2%20731.13%20161.43C732.3%20158.67%20735.02%20156.87%20738.02%20156.89V156.98ZM900.31%20114.42L949.77%20204.75H927.8L878.34%20114.19L900.31%20114.42ZM853.02%20114.42H874.99L825.58%20204.75H803.61L853.02%20114.42ZM1039.46%20183.94C1040.72%20183.83%201041.98%20184.23%201042.96%20185.05C1043.93%20185.87%201044.54%20187.05%201044.65%20188.32C1044.75%20189.58%201044.35%20190.84%201043.53%20191.82C1042.71%20192.79%201041.54%20193.4%201040.27%20193.52V193.5C1039%20193.61%201037.74%20193.21%201036.77%20192.39C1035.79%20191.57%201035.19%20190.4%201035.08%20189.13C1034.97%20187.86%201035.37%20186.6%201036.19%20185.63C1037.01%20184.65%201038.19%20184.05%201039.45%20183.92L1039.46%20183.94ZM1513.23%20152.59C1530.94%20152.59%201540%20164.72%201540%20176.41V182.43C1539.77%20193.97%201530.99%20205.61%201513.73%20205.61H1417.89L1422.87%20192.03H1508.48C1509.96%20192.06%201511.43%20191.8%201512.81%20191.26C1514.19%20190.72%201515.45%20189.91%201516.52%20188.89C1517.59%20187.86%201518.44%20186.63%201519.04%20185.28C1519.63%20183.92%201519.95%20182.46%201519.98%20180.98V178.44C1519.99%20178.37%201519.99%20178.3%201519.99%20178.23C1520%20178.16%201520%20178.09%201520%20178.01C1520%20177.94%201520%20177.87%201519.99%20177.8C1519.99%20177.73%201519.99%20177.65%201519.98%20177.58C1519.84%20176.08%201519.41%20174.63%201518.71%20173.3C1518.01%20171.96%201517.06%20170.78%201515.9%20169.82C1514.74%20168.86%201513.41%20168.13%201511.97%20167.68C1510.53%20167.24%201509.02%20167.08%201507.52%20167.21H1444.66C1426.95%20167.21%201417.89%20155.08%201417.89%20143.35V137.38C1418.11%20125.83%201426.9%20114.19%201444.16%20114.19H1540L1535.02%20127.78H1449.41C1447.93%20127.74%201446.45%20128%201445.07%20128.54C1443.69%20129.07%201442.43%20129.88%201441.36%20130.91C1440.29%20131.93%201439.43%20133.16%201438.84%20134.52C1438.25%20135.88%201437.93%20137.34%201437.91%20138.83V141.36C1437.9%20141.44%201437.9%20141.53%201437.89%20141.61C1437.89%20141.69%201437.89%20141.78%201437.89%20141.86C1437.89%20141.94%201437.89%20142.03%201437.89%20142.11C1437.9%20142.19%201437.9%20142.27%201437.91%20142.36C1438.04%20143.86%201438.47%20145.31%201439.17%20146.64C1439.87%20147.98%201440.83%20149.16%201441.99%20150.12C1443.14%20151.08%201444.48%20151.81%201445.92%20152.26C1447.35%20152.7%201448.86%20152.86%201450.36%20152.73H1513.23V152.59ZM95.34%20152.59C113.05%20152.59%20122.11%20164.72%20122.11%20176.41V182.65C121.89%20194.2%20113.1%20205.84%2095.84%20205.84H0L4.98%20192.25H90.59C92.07%20192.28%2093.54%20192.02%2094.92%20191.48C96.3%20190.94%2097.56%20190.14%2098.63%20189.11C99.7%20188.09%20100.55%20186.86%20101.15%20185.5C101.74%20184.15%20102.06%20182.69%20102.09%20181.21V178.67C102.1%20178.6%20102.1%20178.53%20102.11%20178.46C102.11%20178.38%20102.11%20178.31%20102.11%20178.24C102.11%20178.17%20102.11%20178.1%20102.11%20178.02C102.1%20177.95%20102.1%20177.88%20102.09%20177.81C101.96%20176.31%20101.53%20174.85%20100.83%20173.52C100.13%20172.19%2099.17%20171.01%2098.01%20170.05C96.86%20169.08%2095.52%20168.36%2094.08%20167.91C92.65%20167.46%2091.14%20167.3%2089.64%20167.44H26.77C9.06%20167.44%200%20155.31%200%20143.58V137.6C0.23%20126.06%209.06%20114.6%2026.27%20114.19H122.29L117.13%20127.78H31.43C29.96%20127.75%2028.49%20128.02%2027.12%20128.56C25.75%20129.11%2024.5%20129.91%2023.44%20130.94C22.38%20131.96%2021.53%20133.19%2020.94%20134.54C20.36%20135.9%2020.04%20137.35%2020.02%20138.83V141.36C20.01%20141.43%2020.01%20141.5%2020.01%20141.58C20%20141.65%2020%20141.72%2020%20141.79C20%20141.86%2020%20141.93%2020.01%20142.01C20.01%20142.08%2020.01%20142.15%2020.02%20142.22C20.16%20143.72%2020.59%20145.18%2021.29%20146.51C21.99%20147.84%2022.94%20149.02%2024.1%20149.99C25.26%20150.95%2026.59%20151.67%2028.03%20152.12C29.47%20152.57%2030.98%20152.73%2032.48%20152.59H95.34ZM1341.43%20114.42H1361.95V204.75H1341.43V114.42ZM171.76%20114.19H303.92L298.94%20127.78H245.68V205.66H225.16V127.78H166.82L171.76%20114.19ZM369.24%20127.78V153.09H432.65L427.71%20166.4H369.42V192.07H452.76L447.78%20205.66H348.76V114.19H452.62L447.64%20127.78H369.24ZM534.83%20192.16H612.92L607.89%20205.75H514.31V114.42H534.83V192.16Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221540%22%20height%3D%22328%22%20viewBox%3D%220%200%201540%20328%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1054.22%20118.9C1053.89%20118.93%201053.56%20118.89%201053.24%20118.79C1052.93%20118.68%201052.64%20118.52%201052.39%20118.31C1052.14%20118.09%201051.93%20117.83%201051.78%20117.54C1051.62%20117.24%201051.53%20116.92%201051.5%20116.59H1051.51C1051.46%20115.92%201051.68%20115.26%201052.12%20114.75C1052.56%20114.24%201053.19%20113.93%201053.86%20113.88C1054.53%20113.84%201055.19%20114.06%201055.7%20114.5C1056.21%20114.94%201056.52%20115.56%201056.58%20116.23C1056.6%20116.57%201056.56%20116.9%201056.45%20117.22C1056.35%20117.53%201056.18%20117.83%201055.96%20118.08C1055.74%20118.33%201055.48%20118.54%201055.18%20118.69C1054.88%20118.84%201054.55%20118.93%201054.22%20118.95M892.88%2036.7199C892.88%2035.7499%20893.07%2034.7999%20893.44%2033.8999C893.82%2032.9999%20894.36%2032.1899%20895.05%2031.5099C895.73%2030.8199%20896.54%2030.2799%20897.44%2029.9099C898.34%2029.5299%20899.3%2029.3399%20900.27%2029.3399C903.25%2029.3399%20905.94%2031.1399%20907.09%2033.8999C908.23%2036.6599%20907.6%2039.8299%20905.49%2041.9399C903.37%2044.0499%20900.2%2044.6799%20897.44%2043.5399C894.68%2042.3999%20892.88%2039.7099%20892.88%2036.7199ZM939.81%2052.5299C939.81%2051.5599%20940%2050.5999%20940.37%2049.6999C940.74%2048.8099%20941.28%2047.9899%20941.97%2047.3099C942.66%2046.6199%20943.47%2046.0799%20944.37%2045.7099C945.26%2045.3399%20946.22%2045.1499%20947.19%2045.1499C950.2%2045.1499%20952.9%2046.9599%20954.05%2049.7299C955.2%2052.4999%20954.57%2055.6999%20952.44%2057.8199C950.32%2059.9499%20947.12%2060.5799%20944.35%2059.4299C941.57%2058.2799%20939.76%2055.5699%20939.76%2052.5699L939.81%2052.5299ZM763.21%20245.77C763.21%20244.8%20763.41%20243.84%20763.79%20242.95C764.16%20242.06%20764.71%20241.25%20765.4%20240.57C766.09%20239.89%20766.91%20239.35%20767.81%20238.98C768.7%20238.62%20769.66%20238.43%20770.63%20238.44C773.64%20238.46%20776.34%20240.28%20777.47%20243.06C778.6%20245.84%20777.95%20249.03%20775.81%20251.14C773.67%20253.26%20770.47%20253.87%20767.7%20252.7C764.94%20251.54%20763.14%20248.82%20763.16%20245.82L763.21%20245.77ZM799.71%20276.47C799.72%20275.5%20799.91%20274.54%20800.29%20273.65C800.66%20272.75%20801.2%20271.94%20801.89%20271.25C802.57%20270.56%20803.38%20270.01%20804.27%20269.63C805.17%20269.26%20806.13%20269.06%20807.1%20269.04C810.1%20269.04%20812.81%20270.85%20813.96%20273.63C815.11%20276.4%20814.47%20279.6%20812.35%20281.72C810.22%20283.84%20807.03%20284.48%20804.25%20283.33C801.48%20282.18%20799.67%20279.47%20799.67%20276.47H799.71ZM846.74%20287.93C847.11%20287.03%20847.66%20286.2%20848.35%20285.51C849.04%20284.82%20849.86%20284.28%20850.76%20283.91C851.67%20283.53%20852.64%20283.35%20853.61%20283.35C856.62%20283.35%20859.33%20285.16%20860.48%20287.94C861.63%20290.71%20860.99%20293.9%20858.87%20296.03C856.74%20298.15%20853.55%20298.79%20850.77%20297.64C847.99%20296.49%20846.18%20293.78%20846.18%20290.78C846.18%20289.8%20846.37%20288.83%20846.74%20287.93ZM893.92%20290.19C893.9%20289.2%20894.07%20288.22%20894.44%20287.3C894.8%20286.38%20895.34%20285.54%20896.04%20284.84C896.73%20284.13%20897.56%20283.57%20898.47%20283.19C899.38%20282.81%20900.36%20282.62%20901.35%20282.63C904.32%20282.65%20906.98%20284.44%20908.12%20287.17C909.26%20289.91%20908.65%20293.06%20906.57%20295.18C904.5%20297.29%20901.35%20297.96%20898.6%20296.87C895.84%20295.78%20894%20293.15%20893.92%20290.19ZM939.85%20275.56C939.85%20274.59%20940.03%20273.62%20940.41%20272.72C940.78%20271.81%20941.32%20270.99%20942.02%20270.3C942.71%20269.61%20943.53%20269.06%20944.43%20268.69C945.34%20268.32%20946.3%20268.13%20947.28%20268.14C950.27%20268.18%20952.94%20270%20954.07%20272.76C955.2%20275.53%20954.56%20278.7%20952.44%20280.81C950.33%20282.93%20947.16%20283.57%20944.39%20282.44C941.62%20281.32%20939.8%20278.64%20939.76%20275.66L939.85%20275.56ZM976.91%20243.38C977.28%20242.47%20977.83%20241.65%20978.52%20240.96C979.21%20240.27%20980.03%20239.72%20980.94%20239.35C981.84%20238.98%20982.81%20238.79%20983.79%20238.8C986.79%20238.8%20989.5%20240.61%20990.65%20243.38C991.8%20246.16%20991.17%20249.35%20989.04%20251.48C986.92%20253.6%20983.72%20254.23%20980.95%20253.08C978.17%20251.94%20976.36%20249.23%20976.36%20246.22C976.35%20245.25%20976.54%20244.28%20976.91%20243.38ZM975.86%2081.8699C975.86%2080.8899%20976.04%2079.9299%20976.41%2079.0299C976.78%2078.1299%20977.32%2077.3099%20978.01%2076.6199C978.69%2075.9299%20979.51%2075.3799%20980.41%2075.0099C981.31%2074.6299%20982.27%2074.4399%20983.24%2074.4399C986.23%2074.4399%20988.92%2076.2299%20990.06%2078.9899C991.21%2081.7399%20990.58%2084.9099%20988.48%2087.0199C986.38%2089.1399%20983.21%2089.7799%20980.45%2088.6499C977.69%2087.5199%20975.88%2084.8499%20975.86%2081.8699ZM924%2062.3099C924.01%2063.5499%20923.77%2064.7799%20923.3%2065.9199C922.83%2067.0699%20922.13%2068.1199%20921.26%2068.9899C920.38%2069.8699%20919.34%2070.5699%20918.19%2071.0499C917.05%2071.5199%20915.82%2071.7699%20914.58%2071.7699C910.77%2071.7699%20907.34%2069.4799%20905.88%2065.9699C904.42%2062.4499%20905.22%2058.3999%20907.9%2055.7099C910.59%2053.0099%20914.63%2052.1899%20918.15%2053.6399C921.67%2055.0799%20923.98%2058.4999%20924%2062.3099ZM955.71%2081.8199C955.71%2083.0599%20955.47%2084.2899%20955%2085.4399C954.53%2086.5899%20953.84%2087.6299%20952.96%2088.5099C952.09%2089.3899%20951.05%2090.0899%20949.9%2090.5599C948.75%2091.0399%20947.53%2091.2799%20946.28%2091.2799C942.48%2091.2799%20939.05%2088.9899%20937.59%2085.4799C936.12%2081.9699%20936.92%2077.9199%20939.61%2075.2199C942.29%2072.5299%20946.34%2071.7099%20949.86%2073.1499C953.38%2074.5999%20955.69%2078.0199%20955.71%2081.8199ZM980.44%20109.67C980.44%20110.91%20980.2%20112.14%20979.73%20113.3C979.25%20114.45%20978.56%20115.49%20977.68%20116.37C976.8%20117.25%20975.75%20117.95%20974.6%20118.42C973.45%20118.9%20972.21%20119.14%20970.97%20119.13C967.14%20119.13%20963.69%20116.82%20962.22%20113.29C960.76%20109.75%20961.57%20105.68%20964.28%20102.98C966.98%20100.27%20971.06%2099.4599%20974.59%20100.92C978.13%20102.39%20980.44%20105.84%20980.44%20109.67ZM912.68%203.80988C912.65%204.12988%20912.56%204.44988%20912.4%204.73988C912.25%205.03988%20912.04%205.28988%20911.79%205.50988C911.54%205.71988%20911.24%205.86988%20910.93%205.96988C910.62%206.06988%20910.29%206.09988%20909.96%206.06988C909.63%206.03988%20909.31%205.93988%20909.01%205.77988C908.72%205.62988%20908.46%205.40988%20908.24%205.15988C908.03%204.89988%20907.87%204.60988%20907.76%204.28988C907.66%203.97988%20907.62%203.63988%20907.65%203.30988C907.68%202.97988%20907.78%202.65988%20907.94%202.35988C908.09%202.06988%20908.31%201.80988%20908.56%201.58988C908.82%201.37988%20909.11%201.21988%20909.43%201.11988C909.75%201.00988%20910.08%200.969877%20910.41%200.999877C910.74%201.03988%20911.05%201.13988%20911.34%201.29988C911.63%201.45988%20911.88%201.66988%20912.08%201.92988C912.29%202.17988%20912.44%202.47988%20912.54%202.78988C912.63%203.10988%20912.66%203.43988%20912.63%203.75988L912.68%203.80988ZM975.86%2026.7199C975.83%2027.0499%20975.74%2027.3699%20975.59%2027.6599C975.44%2027.9599%20975.23%2028.2199%20974.98%2028.4299C974.73%2028.6399%20974.43%2028.8099%20974.12%2028.9099C973.81%2029.0099%20973.47%2029.0499%20973.14%2029.0299C972.86%2028.9699%20972.59%2028.8699%20972.34%2028.7199C972.09%2028.5799%20971.86%2028.3899%20971.68%2028.1699C971.49%2027.9499%20971.34%2027.6999%20971.23%2027.4299C971.13%2027.1599%20971.07%2026.8699%20971.06%2026.5799C971.06%2026.2499%20971.12%2025.9199%20971.25%2025.6099C971.37%2025.3099%20971.55%2025.0299%20971.78%2024.7899C972.01%2024.5499%20972.29%2024.3599%20972.59%2024.2199C972.89%2024.0899%20973.22%2024.0099%20973.55%2023.9999C973.88%2024.0299%20974.2%2024.1199%20974.49%2024.2699C974.78%2024.4299%20975.04%2024.6399%20975.25%2024.8899C975.46%2025.1399%20975.62%2025.4299%20975.72%2025.7499C975.81%2026.0599%20975.85%2026.3899%20975.82%2026.7199H975.86ZM1025.41%2062.2599C1025.42%2062.2999%201025.42%2062.3399%201025.43%2062.3899C1025.43%2062.4299%201025.43%2062.4699%201025.43%2062.5099C1025.43%2062.5499%201025.43%2062.5899%201025.43%2062.6299C1025.42%2062.6799%201025.42%2062.7199%201025.41%2062.7599C1025.34%2063.0799%201025.21%2063.3899%201025.02%2063.6699C1024.84%2063.9499%201024.6%2064.1899%201024.33%2064.3699C1024.05%2064.5599%201023.74%2064.6999%201023.42%2064.7699C1023.09%2064.8399%201022.75%2064.8499%201022.42%2064.7999C1022.1%2064.7299%201021.79%2064.5899%201021.52%2064.4099C1021.24%2064.2199%201021.01%2063.9799%201020.82%2063.7099C1020.64%2063.4299%201020.51%2063.1199%201020.44%2062.7899C1020.37%2062.4699%201020.37%2062.1299%201020.43%2061.8099C1020.46%2061.4799%201020.55%2061.1599%201020.7%2060.8699C1020.86%2060.5799%201021.07%2060.3199%201021.32%2060.1099C1021.57%2059.8999%201021.86%2059.7399%201022.18%2059.6399C1022.49%2059.5499%201022.82%2059.5099%201023.15%2059.5399C1023.48%2059.5699%201023.81%2059.6699%201024.1%2059.8199C1024.4%2059.9799%201024.66%2060.1899%201024.88%2060.4399C1025.09%2060.6999%201025.26%2060.9999%201025.36%2061.3199C1025.45%2061.6399%201025.49%2061.9699%201025.46%2062.3099L1025.41%2062.2599ZM939.58%2029.3899C939.55%2030.0299%20939.38%2030.6599%20939.1%2031.2399C938.82%2031.8199%20938.42%2032.3299%20937.94%2032.7599C937.45%2033.1799%20936.89%2033.4999%20936.27%2033.6999C935.66%2033.8999%20935.01%2033.9699%20934.37%2033.9199C932.45%2033.7499%20930.82%2032.4499%20930.22%2030.6199C929.62%2028.7899%20930.18%2026.7799%20931.64%2025.5099C933.09%2024.2499%20935.16%2023.9799%20936.89%2024.8199C938.62%2025.6699%20939.68%2027.4699%20939.58%2029.3899ZM987.55%2053.2499C987.52%2053.8899%20987.36%2054.5199%20987.08%2055.0999C986.81%2055.6799%20986.41%2056.1899%20985.93%2056.6199C985.45%2057.0399%20984.89%2057.3599%20984.28%2057.5599C983.67%2057.7599%20983.02%2057.8299%20982.38%2057.7799H981.93C980.63%2057.6499%20979.44%2057.0099%20978.63%2055.9899C977.82%2054.9599%20977.46%2053.6599%20977.63%2052.3699C977.8%2051.0699%20978.5%2049.9099%20979.55%2049.1399C980.6%2048.3599%20981.91%2048.0499%20983.2%2048.2699C983.84%2048.2999%20984.47%2048.4699%20985.05%2048.7499C985.63%2049.0299%20986.15%2049.4299%20986.57%2049.9099C986.99%2050.3999%20987.31%2050.9699%20987.51%2051.5799C987.71%2052.1899%20987.78%2052.8399%20987.73%2053.4799L987.55%2053.2499ZM1020.52%2087.5299C1021.16%2087.5599%201021.79%2087.7199%201022.37%2088.0099C1022.95%2088.2899%201023.47%2088.6799%201023.89%2089.1699C1024.31%2089.6599%201024.63%2090.2199%201024.83%2090.8299C1025.03%2091.4499%201025.11%2092.0899%201025.05%2092.7299C1024.88%2094.6499%201023.59%2096.2899%201021.75%2096.8799C1019.92%2097.4799%201017.91%2096.9199%201016.64%2095.4699C1015.38%2094.0099%201015.11%2091.9499%201015.95%2090.2099C1016.8%2088.4799%201018.6%2087.4199%201020.52%2087.5299ZM876.89%2016.2599C877.53%2016.2499%20878.15%2016.3699%20878.74%2016.6099C879.32%2016.8499%20879.86%2017.1999%20880.3%2017.6499C880.75%2018.0999%20881.1%2018.6299%20881.34%2019.2099C881.58%2019.7999%20881.7%2020.4299%20881.7%2021.0599C881.68%2023.0199%20880.48%2024.7699%20878.66%2025.5099C876.84%2026.2399%20874.76%2025.7999%20873.39%2024.4099C872.02%2023.0099%20871.62%2020.9199%20872.39%2019.1199C873.16%2017.3099%20874.93%2016.1499%20876.89%2016.1699V16.2599ZM853.52%2029.5199C854.49%2029.5299%20855.45%2029.7199%20856.35%2030.0899C857.24%2030.4599%20858.06%2030.9999%20858.74%2031.6899C859.43%2032.3699%20859.97%2033.1899%20860.34%2034.0799C860.71%2034.9799%20860.91%2035.9399%20860.91%2036.9099C860.89%2039.9099%20859.06%2042.6099%20856.28%2043.7399C853.5%2044.8699%20850.3%2044.2099%20848.19%2042.0799C846.08%2039.9399%20845.47%2036.7399%20846.63%2033.9799C847.8%2031.2099%20850.52%2029.4199%20853.52%2029.4299V29.5199ZM806.64%2045.1899C807.61%2045.1999%20808.57%2045.3999%20809.46%2045.7799C810.36%2046.1599%20811.17%2046.7099%20811.85%2047.3899C812.54%2048.0799%20813.08%2048.8999%20813.45%2049.7899C813.83%2050.6899%20814.02%2051.6499%20814.03%2052.6199C814.01%2055.6199%20812.18%2058.3199%20809.4%2059.4499C806.62%2060.5799%20803.42%2059.9299%20801.31%2057.7899C799.2%2055.6499%20798.59%2052.4599%20799.75%2049.6899C800.92%2046.9199%20803.64%2045.1299%20806.64%2045.1499V45.1899ZM687.61%20192.07H765.7L760.67%20205.66H667.09V114.19H687.61V192.07ZM747.35%20113.29C748.31%20113.32%20749.26%20113.55%20750.14%20113.94C751.01%20114.34%20751.8%20114.91%20752.46%20115.61C753.12%20116.31%20753.64%20117.13%20753.98%20118.03C754.32%20118.93%20754.49%20119.89%20754.46%20120.85C754.45%20123.85%20752.62%20126.55%20749.84%20127.68C747.05%20128.81%20743.86%20128.16%20741.75%20126.02C739.64%20123.89%20739.02%20120.69%20740.19%20117.92C741.36%20115.15%20744.08%20113.36%20747.08%20113.38L747.35%20113.29ZM770.95%2074.4399C771.92%2074.4499%20772.88%2074.6499%20773.77%2075.0299C774.67%2075.4099%20775.48%2075.9599%20776.16%2076.6399C776.85%2077.3299%20777.39%2078.1499%20777.76%2079.0399C778.13%2079.9399%20778.33%2080.8999%20778.33%2081.8699C778.32%2084.8699%20776.49%2087.5699%20773.71%2088.6999C770.92%2089.8299%20767.73%2089.1799%20765.62%2087.0399C763.51%2084.8999%20762.89%2081.7099%20764.06%2078.9399C765.23%2076.1699%20767.95%2074.3799%20770.95%2074.3999V74.4399ZM876.89%20281.13C875.65%20281.13%20874.43%20280.88%20873.29%20280.4C872.14%20279.92%20871.1%20279.22%20870.23%20278.35C869.36%20277.47%20868.66%20276.43%20868.19%20275.28C867.72%20274.14%20867.47%20272.91%20867.47%20271.67C867.49%20267.84%20869.81%20264.4%20873.36%20262.96C876.9%20261.51%20880.97%20262.34%20883.67%20265.06C886.36%20267.78%20887.15%20271.85%20885.67%20275.38C884.19%20278.91%20880.72%20281.2%20876.89%20281.18V281.13ZM876.89%2066.1099C875.65%2066.0999%20874.43%2065.8499%20873.29%2065.3799C872.14%2064.8999%20871.1%2064.1999%20870.23%2063.3199C869.36%2062.4399%20868.66%2061.3999%20868.19%2060.2599C867.72%2059.1099%20867.47%2057.8899%20867.47%2056.6499C867.49%2052.8199%20869.81%2049.3799%20873.36%2047.9299C876.9%2046.4799%20880.97%2047.3099%20883.67%2050.0299C886.36%2052.7499%20887.15%2056.8299%20885.67%2060.3499C884.19%2063.8799%20880.72%2066.1699%20876.89%2066.1499V66.1099ZM839.25%2071.6299C838.02%2071.6299%20836.79%2071.3799%20835.65%2070.8999C834.51%2070.4199%20833.48%2069.7199%20832.61%2068.8399C831.74%2067.9599%20831.05%2066.9199%20830.58%2065.7799C830.11%2064.6299%20829.87%2063.4099%20829.88%2062.1699C829.9%2058.3399%20832.22%2054.8999%20835.76%2053.4599C839.31%2052.0099%20843.38%2052.8399%20846.07%2055.5599C848.77%2058.2799%20849.56%2062.3499%20848.07%2065.8799C846.59%2069.4099%20843.13%2071.6999%20839.3%2071.6799L839.25%2071.6299ZM807.5%2091.0999C806.27%2091.0999%20805.04%2090.8499%20803.9%2090.3699C802.76%2089.8899%20801.73%2089.1899%20800.85%2088.3099C799.98%2087.4299%20799.3%2086.3899%20798.83%2085.2499C798.36%2084.0999%20798.12%2082.8799%20798.13%2081.6399C798.15%2077.8099%20800.47%2074.3699%20804.01%2072.9299C807.56%2071.4799%20811.63%2072.3099%20814.32%2075.0299C817.01%2077.7499%20817.8%2081.8199%20816.32%2085.3499C814.84%2088.8799%20811.38%2091.1699%20807.55%2091.1499L807.5%2091.0999ZM782.82%20118.86C781.58%20118.85%20780.36%20118.6%20779.22%20118.12C778.08%20117.65%20777.04%20116.95%20776.17%20116.07C775.3%20115.19%20774.61%20114.15%20774.14%20113C773.67%20111.86%20773.44%20110.63%20773.44%20109.4C773.54%20105.55%20775.95%20102.15%20779.54%20100.78C783.13%2099.4199%20787.2%20100.36%20789.82%20103.17C792.45%20105.98%20793.11%20110.09%20791.51%20113.58C789.9%20117.07%20786.34%20119.25%20782.5%20119.08L782.82%20118.86ZM772.54%20153.95C771.3%20153.95%20770.07%20153.7%20768.93%20153.23C767.79%20152.76%20766.75%20152.06%20765.87%20151.19C765%20150.32%20764.31%20149.28%20763.83%20148.13C763.36%20146.99%20763.12%20145.77%20763.12%20144.53C763.13%20140.7%20765.46%20137.26%20769%20135.82C772.55%20134.37%20776.61%20135.2%20779.31%20137.92C782%20140.64%20782.79%20144.71%20781.31%20148.24C779.83%20151.77%20776.37%20154.06%20772.54%20154.04V153.95ZM843.83%206.06988C843.5%206.09988%20843.17%206.05988%20842.86%205.94988C842.55%205.84988%20842.26%205.68988%20842.01%205.46988C841.76%205.25988%20841.56%204.99988%20841.41%204.69988C841.27%204.40988%20841.18%204.08988%20841.16%203.75988C841.12%203.42988%20841.15%203.09988%20841.24%202.77988C841.34%202.45988%20841.49%202.15988%20841.71%201.89988C841.92%201.64988%20842.18%201.42988%20842.47%201.27988C842.77%201.11988%20843.09%201.02988%20843.42%200.999877C843.75%200.969877%20844.09%201.00988%20844.41%201.11988C844.72%201.21988%20845.02%201.37988%20845.27%201.58988C845.53%201.80988%20845.74%202.06988%20845.9%202.35988C846.05%202.65988%20846.15%202.97988%20846.18%203.30988C846.21%203.63988%20846.17%203.97988%20846.07%204.28988C845.97%204.60988%20845.8%204.89988%20845.59%205.15988C845.38%205.40988%20845.12%205.62988%20844.82%205.77988C844.53%205.93988%20844.21%206.03988%20843.87%206.06988H843.83ZM779.76%2028.8599C779.44%2028.7599%20779.15%2028.5999%20778.9%2028.3899C778.65%2028.1699%20778.44%2027.9099%20778.29%2027.6199C778.14%2027.3199%20778.05%2026.9999%20778.02%2026.6699C777.99%2026.3499%20778.03%2026.0199%20778.14%2025.6999C778.24%2025.3899%20778.4%2025.1099%20778.62%2024.8599C778.83%2024.6099%20779.09%2024.4099%20779.39%2024.2599C779.68%2024.1099%20780%2024.0199%20780.33%2023.9999C780.66%2023.9799%20780.99%2024.0199%20781.3%2024.1199C781.62%2024.2199%20781.91%2024.3799%20782.16%2024.5999C782.41%2024.8099%20782.62%2025.0699%20782.77%2025.3699C782.92%2025.6599%20783.02%2025.9799%20783.04%2026.3099C783.07%2026.6399%20783.03%2026.9699%20782.93%2027.2799C782.82%2027.5899%20782.66%2027.8799%20782.45%2028.1299C782.23%2028.3699%20781.97%2028.5799%20781.68%2028.7199C781.38%2028.8699%20781.06%2028.9599%20780.73%2028.9799C780.4%2029.0099%20780.07%2028.9699%20779.76%2028.8599ZM1054.08%20226.8C1053.75%20226.83%201053.42%20226.79%201053.11%20226.68C1052.79%20226.58%201052.5%20226.42%201052.25%20226.2C1052%20225.99%201051.79%20225.73%201051.64%20225.43C1051.49%20225.14%201051.4%20224.82%201051.37%20224.49C1051.34%20224.16%201051.38%20223.84%201051.49%20223.52C1051.59%20223.21%201051.75%20222.92%201051.97%20222.68C1052.18%20222.43%201052.44%20222.22%201052.74%20222.08C1053.03%20221.93%201053.35%20221.84%201053.68%20221.82H1054.22C1054.89%20221.82%201055.54%20222.09%201056.01%20222.56C1056.49%20223.04%201056.76%20223.68%201056.76%20224.36C1056.76%20225.03%201056.49%20225.67%201056.01%20226.15C1055.54%20226.62%201054.89%20226.89%201054.22%20226.89L1054.08%20226.8ZM1022.84%20268.81C1022.52%20268.71%201022.22%20268.54%201021.97%20268.33C1021.71%20268.11%201021.5%20267.85%201021.34%20267.55C1021.19%20267.26%201021.09%20266.93%201021.07%20266.6C1021.04%20266.27%201021.08%20265.93%201021.18%20265.62C1021.28%20265.3%201021.45%20265%201021.66%20264.75C1021.87%20264.49%201022.13%20264.28%201022.43%20264.13C1022.72%20263.97%201023.04%20263.87%201023.38%20263.84C1023.71%20263.81%201024.04%20263.85%201024.36%20263.95C1024.68%20264.06%201024.97%20264.22%201025.23%20264.43C1025.48%20264.64%201025.69%20264.91%201025.85%20265.2C1026.01%20265.49%201026.1%20265.82%201026.14%20266.15C1026.16%20266.48%201026.11%20266.81%201026.01%20267.12C1025.91%20267.44%201025.74%20267.73%201025.53%20267.99C1025.32%20268.24%201025.06%20268.45%201024.77%20268.61C1024.48%20268.77%201024.16%20268.87%201023.83%20268.91C1023.49%20268.94%201023.16%20268.9%201022.84%20268.81ZM973.42%20304.45C973.09%20304.48%20972.76%20304.45%20972.44%20304.35C972.13%20304.25%20971.84%20304.1%20971.59%20303.89C971.33%20303.68%20971.12%20303.42%20970.97%20303.13C970.82%20302.83%20970.73%20302.52%20970.7%20302.19C970.69%20302.15%20970.69%20302.11%20970.69%20302.06C970.68%20302.02%20970.68%20301.98%20970.68%20301.94C970.68%20301.9%20970.68%20301.86%20970.69%20301.81C970.69%20301.77%20970.69%20301.73%20970.7%20301.69C970.7%20301.02%20970.97%20300.37%20971.44%20299.9C971.92%20299.42%20972.56%20299.15%20973.23%20299.15C973.91%20299.15%20974.55%20299.42%20975.03%20299.9C975.5%20300.37%20975.77%20301.02%20975.77%20301.69C975.8%20302.02%20975.76%20302.35%20975.65%20302.66C975.55%20302.97%20975.39%20303.26%20975.17%20303.51C974.96%20303.75%20974.7%20303.96%20974.4%20304.1C974.11%20304.25%20973.79%20304.34%20973.46%20304.36L973.42%20304.45ZM910.41%20326.99C909.74%20327.05%20909.08%20326.83%20908.56%20326.4C908.05%20325.96%20907.73%20325.34%20907.68%20324.67C907.63%20324%20907.84%20323.33%20908.28%20322.82C908.71%20322.31%20909.33%20321.99%20910%20321.93V321.94C910.68%20321.88%20911.34%20322.1%20911.85%20322.53C912.36%20322.97%20912.68%20323.59%20912.74%20324.26C912.79%20324.93%20912.58%20325.6%20912.14%20326.11C911.7%20326.62%20911.08%20326.94%20910.41%20327V326.99ZM843.87%20327V326.99C843.2%20327.05%20842.54%20326.83%20842.03%20326.4C841.51%20325.96%20841.2%20325.34%20841.14%20324.67C841.09%20324%20841.3%20323.33%20841.74%20322.82C842.18%20322.31%20842.8%20321.99%20843.47%20321.93V321.94C844.14%20321.88%20844.8%20322.09%20845.32%20322.52C845.84%20322.95%20846.16%20323.57%20846.22%20324.24C846.28%20324.91%20846.07%20325.57%20845.64%20326.09C845.21%20326.61%20844.59%20326.93%20843.92%20327H843.87ZM779.76%20303.93C779.44%20303.82%20779.15%20303.66%20778.9%20303.45C778.65%20303.23%20778.44%20302.97%20778.29%20302.68C778.14%20302.38%20778.05%20302.06%20778.02%20301.74C777.99%20301.41%20778.03%20301.08%20778.14%20300.77C778.24%20300.46%20778.4%20300.17%20778.62%20299.92C778.83%20299.67%20779.09%20299.47%20779.39%20299.32C779.68%20299.17%20780%20299.09%20780.33%20299.06C780.66%20299.04%20780.99%20299.08%20781.3%20299.18C781.62%20299.28%20781.91%20299.45%20782.16%20299.66C782.41%20299.87%20782.62%20300.14%20782.77%20300.43C782.92%20300.72%20783.02%20301.04%20783.04%20301.37C783.07%20301.7%20783.03%20302.03%20782.93%20302.34C782.82%20302.65%20782.66%20302.94%20782.45%20303.19C782.23%20303.44%20781.97%20303.64%20781.68%20303.79C781.38%20303.93%20781.06%20304.02%20780.73%20304.04C780.4%20304.07%20780.07%20304.03%20779.76%20303.93ZM730.91%20268.46C730.58%20268.48%20730.25%20268.44%20729.94%20268.34C729.62%20268.24%20729.33%20268.07%20729.08%20267.86C728.83%20267.65%20728.62%20267.38%20728.47%20267.09C728.31%20266.8%20728.22%20266.48%20728.19%20266.15H728.2C728.15%20265.48%20728.37%20264.81%20728.81%20264.3C729.25%20263.8%20729.88%20263.48%20730.55%20263.44C731.22%20263.39%20731.88%20263.61%20732.39%20264.05C732.9%20264.49%20733.21%20265.11%20733.27%20265.78C733.29%20266.12%20733.25%20266.45%20733.14%20266.77C733.04%20267.09%20732.87%20267.38%20732.65%20267.63C732.43%20267.88%20732.17%20268.09%20731.87%20268.24C731.57%20268.39%20731.24%20268.48%20730.91%20268.5V268.46ZM699.61%20226.8C698.99%20226.78%20698.39%20226.54%20697.93%20226.11C697.48%20225.68%20697.2%20225.09%20697.15%20224.47C697.1%20223.85%20697.28%20223.23%20697.66%20222.73C698.04%20222.23%20698.59%20221.89%20699.21%20221.77H699.75C700.42%20221.77%20701.07%20222.04%20701.54%20222.52C702.02%20222.99%20702.29%20223.64%20702.29%20224.31C702.29%20224.98%20702.02%20225.63%20701.54%20226.1C701.07%20226.58%20700.42%20226.85%20699.75%20226.85L699.61%20226.8ZM731.14%2064.3399C730.81%2064.3699%20730.48%2064.3299%20730.16%2064.2299C729.85%2064.1199%20729.56%2063.9599%20729.3%2063.7499C729.05%2063.5299%20728.84%2063.2699%20728.69%2062.9799C728.54%2062.6799%20728.45%2062.3599%20728.42%2062.0299H728.43C728.38%2061.3599%20728.6%2060.6999%20729.04%2060.1899C729.48%2059.6799%20730.1%2059.3699%20730.78%2059.3199C731.45%2059.2799%20732.11%2059.4999%20732.62%2059.9399C733.13%2060.3799%20733.44%2060.9999%20733.49%2061.6699C733.52%2062.0099%20733.48%2062.3399%20733.37%2062.6599C733.27%2062.9699%20733.1%2063.2699%20732.88%2063.5199C732.66%2063.7699%20732.39%2063.9799%20732.1%2064.1299C731.8%2064.2799%20731.47%2064.3699%20731.14%2064.3899V64.3399ZM819.23%2033.5099C818.02%2033.4999%20816.85%2033.0399%20815.97%2032.2099C815.08%2031.3699%20814.55%2030.2399%20814.47%2029.0299C814.39%2027.8199%20814.77%2026.6199%20815.54%2025.6799C816.3%2024.7399%20817.4%2024.1199%20818.6%2023.9599C819.83%2023.9099%20821.04%2024.3399%20821.96%2025.1599C822.89%2025.9699%20823.46%2027.1099%20823.57%2028.3399C823.67%2029.5699%20823.3%2030.7999%20822.53%2031.7599C821.75%2032.7199%20820.64%2033.3499%20819.42%2033.5099H819.23ZM770.59%2057.5999C768.13%2057.4699%20766.23%2055.4199%20766.29%2052.9599C766.35%2050.5099%20768.36%2048.5499%20770.82%2048.5499C773.27%2048.5499%20775.28%2050.5099%20775.34%2052.9599C775.4%2055.4199%20773.5%2057.4699%20771.04%2057.5999H770.59ZM728.51%2092.7299C728.48%2092.1099%20728.57%2091.4799%20728.78%2090.8899C728.99%2090.2999%20729.32%2089.7499%20729.74%2089.2899C730.16%2088.8199%20730.67%2088.4399%20731.23%2088.1699C731.8%2087.8999%20732.41%2087.7399%20733.04%2087.7099C734.35%2087.5299%20735.68%2087.8999%20736.71%2088.7299C737.74%2089.5599%20738.38%2090.7799%20738.48%2092.0999C738.58%2093.4199%20738.13%2094.7199%20737.24%2095.6999C736.35%2096.6799%20735.09%2097.2399%20733.76%2097.2599H733.09C732.49%2097.2599%20731.9%2097.1399%20731.35%2096.9199C730.8%2096.6899%20730.3%2096.3499%20729.88%2095.9299C729.46%2095.5099%20729.13%2095.0099%20728.9%2094.4699C728.67%2093.9199%20728.56%2093.3299%20728.56%2092.7299H728.51ZM1098.52%20114.42H1118.99V204.75H1098.52L1012.46%20136.83V204.75H991.94V114.56H1012.55L1098.61%20182.11L1098.52%20114.42ZM1020.97%20230.56C1022.19%20230.56%201023.36%20231.03%201024.24%20231.86C1025.13%20232.69%201025.66%20233.83%201025.74%20235.04C1025.82%20236.25%201025.44%20237.45%201024.67%20238.39C1023.91%20239.33%201022.81%20239.95%201021.61%20240.11C1020.38%20240.16%201019.17%20239.73%201018.25%20238.91C1017.32%20238.1%201016.75%20236.95%201016.64%20235.72C1016.54%20234.49%201016.91%20233.27%201017.68%20232.31C1018.46%20231.35%201019.57%20230.72%201020.79%20230.56H1020.97ZM984.42%20270.18C985.02%20270.18%20985.61%20270.29%20986.16%20270.52C986.71%20270.75%20987.2%20271.08%20987.63%20271.5C988.05%20271.92%20988.38%20272.42%20988.61%20272.97C988.83%20273.52%20988.95%20274.11%20988.95%20274.7C988.98%20275.33%20988.89%20275.96%20988.68%20276.55C988.47%20277.14%20988.14%20277.68%20987.72%20278.15C987.3%20278.62%20986.8%20279%20986.23%20279.27C985.66%20279.54%20985.05%20279.7%20984.42%20279.73C983.11%20279.91%20981.78%20279.54%20980.75%20278.71C979.72%20277.88%20979.08%20276.66%20978.98%20275.34C978.88%20274.02%20979.33%20272.72%20980.22%20271.74C981.12%20270.76%20982.37%20270.2%20983.7%20270.18H984.42ZM934.51%20293.99C935.13%20293.96%20935.76%20294.06%20936.35%20294.27C936.93%20294.48%20937.48%20294.8%20937.94%20295.22C938.4%20295.64%20938.78%20296.15%20939.04%20296.72C939.31%20297.28%20939.46%20297.9%20939.49%20298.52C939.49%20298.66%20939.45%20297.7%20939.49%20298.97C939.54%20300.25%20939.08%20301.48%20938.21%20302.42C937.34%20303.35%20936.14%20303.9%20934.87%20303.95C933.6%20304%20932.36%20303.54%20931.42%20302.67C930.49%20301.81%20929.94%20300.61%20929.89%20299.34C929.86%20298.71%20929.95%20298.08%20930.16%20297.49C930.37%20296.9%20930.7%20296.36%20931.12%20295.89C931.54%20295.42%20932.04%20295.04%20932.61%20294.77C933.18%20294.5%20933.79%20294.34%20934.42%20294.31L934.51%20293.99ZM876.35%20302.14C877.58%20302.1%20878.79%20302.53%20879.71%20303.34C880.64%20304.16%20881.21%20305.3%20881.32%20306.53C881.42%20307.76%20881.05%20308.98%20880.28%20309.94C879.5%20310.91%20878.39%20311.53%20877.17%20311.7L876.71%20311.69C875.44%20311.74%20874.2%20311.28%20873.27%20310.42C872.33%20309.55%20871.78%20308.35%20871.73%20307.08C871.69%20305.81%20872.15%20304.57%20873.01%20303.63C873.88%20302.7%20875.08%20302.15%20876.35%20302.1V302.14ZM820.73%20295.76C821.37%20295.7%20822.02%20295.78%20822.63%20295.98C823.24%20296.18%20823.81%20296.5%20824.29%20296.92C824.78%20297.34%20825.18%20297.86%20825.46%20298.44C825.74%20299.01%20825.9%20299.64%20825.94%20300.29C826.04%20302.21%20824.98%20304.01%20823.25%20304.85C821.52%20305.7%20819.45%20305.43%20817.99%20304.16C816.54%20302.9%20815.98%20300.89%20816.58%20299.05C817.17%20297.22%20818.81%20295.92%20820.73%20295.76ZM770.41%20270.4C771.64%20270.36%20772.85%20270.79%20773.77%20271.6C774.7%20272.42%20775.27%20273.56%20775.37%20274.79C775.48%20276.02%20775.11%20277.24%20774.33%20278.2C773.56%20279.17%20772.45%20279.79%20771.22%20279.96L770.77%20279.95C769.5%20280%20768.26%20279.54%20767.32%20278.68C766.39%20277.81%20765.84%20276.61%20765.79%20275.34C765.74%20274.07%20766.2%20272.83%20767.07%20271.89C767.93%20270.96%20769.14%20270.41%20770.41%20270.36V270.4ZM733.22%20230.74C734.44%20230.75%20735.6%20231.21%20736.49%20232.04C737.37%20232.87%20737.91%20234.01%20737.99%20235.22C738.07%20236.43%20737.69%20237.63%20736.92%20238.57C736.15%20239.51%20735.06%20240.13%20733.86%20240.29C732.62%20240.34%20731.42%20239.91%20730.49%20239.09C729.57%20238.28%20728.99%20237.13%20728.89%20235.91C728.78%20234.68%20729.16%20233.45%20729.93%20232.49C730.7%20231.53%20731.82%20230.9%20733.04%20230.74H733.22ZM712.57%20138.78C713.78%20138.79%20714.95%20139.25%20715.83%20140.08C716.72%20140.91%20717.25%20142.05%20717.33%20143.26C717.41%20144.47%20717.03%20145.67%20716.27%20146.61C715.5%20147.55%20714.4%20148.17%20713.2%20148.33C711.97%20148.38%20710.76%20147.95%20709.84%20147.13C708.91%20146.32%20708.34%20145.18%20708.23%20143.95C708.13%20142.72%20708.5%20141.49%20709.28%20140.53C710.05%20139.57%20711.16%20138.94%20712.39%20138.78H712.57ZM849.08%20265.56C849.08%20266.79%20848.84%20268.02%20848.37%20269.16C847.89%20270.3%20847.2%20271.34%20846.32%20272.22C845.45%20273.09%20844.41%20273.79%20843.27%20274.26C842.12%20274.73%20840.9%20274.98%20839.66%20274.98C835.85%20274.98%20832.42%20272.68%20830.96%20269.16C829.5%20265.64%20830.31%20261.59%20833%20258.9C835.7%20256.21%20839.75%20255.4%20843.27%20256.86C846.79%20258.31%20849.08%20261.75%20849.08%20265.56ZM914.17%20256.14C915.41%20256.15%20916.63%20256.4%20917.77%20256.87C918.91%20257.35%20919.95%20258.05%20920.82%20258.93C921.69%20259.81%20922.38%20260.85%20922.85%20262C923.32%20263.14%20923.55%20264.37%20923.55%20265.6C923.53%20269.43%20921.21%20272.87%20917.66%20274.32C914.12%20275.77%20910.05%20274.94%20907.35%20272.22C904.66%20269.5%20903.87%20265.42%20905.35%20261.89C906.83%20258.37%20910.3%20256.08%20914.13%20256.1L914.17%20256.14ZM946.06%20237.3C947.33%20237.29%20948.59%20237.52%20949.77%20238C950.95%20238.48%20952.02%20239.19%20952.92%20240.09C953.82%20240.99%20954.53%20242.06%20955.01%20243.24C955.49%20244.42%20955.72%20245.68%20955.71%20246.95C955.67%20250.79%20953.31%20254.22%20949.75%20255.65C946.18%20257.07%20942.1%20256.19%20939.43%20253.43C936.76%20250.67%20936.03%20246.57%20937.57%20243.06C939.11%20239.54%20942.63%20237.3%20946.47%20237.4L946.06%20237.3ZM980.3%20218.33C980.31%20219.57%20980.07%20220.8%20979.6%20221.95C979.13%20223.1%20978.43%20224.14%20977.56%20225.02C976.68%20225.9%20975.64%20226.6%20974.5%20227.08C973.35%20227.55%20972.12%20227.8%20970.88%20227.8C967.07%20227.8%20963.64%20225.51%20962.18%20221.99C960.72%20218.48%20961.52%20214.43%20964.2%20211.74C966.89%20209.04%20970.93%20208.22%20974.45%20209.66C977.98%20211.11%20980.28%20214.53%20980.3%20218.33ZM807.82%20236.94C809.06%20236.95%20810.28%20237.2%20811.42%20237.68C812.56%20238.16%20813.6%20238.85%20814.47%20239.73C815.34%20240.61%20816.03%20241.65%20816.5%20242.8C816.96%20243.94%20817.2%20245.17%20817.2%20246.41C817.18%20250.23%20814.86%20253.67%20811.31%20255.12C807.77%20256.57%20803.7%20255.74%20801%20253.02C798.31%20250.3%20797.52%20246.23%20799%20242.7C800.48%20239.17%20803.95%20236.88%20807.78%20236.9L807.82%20236.94ZM782.77%20208.92C784.01%20208.92%20785.24%20209.16%20786.38%20209.63C787.52%20210.11%20788.56%20210.8%20789.43%20211.67C790.31%20212.55%20791%20213.59%20791.48%20214.73C791.95%20215.87%20792.19%20217.1%20792.19%20218.33C792.23%20222.18%20789.94%20225.66%20786.39%20227.15C782.85%20228.64%20778.75%20227.83%20776.03%20225.11C773.32%20222.4%20772.51%20218.3%20774%20214.76C775.49%20211.22%20778.97%20208.92%20782.82%20208.96L782.77%20208.92ZM1165.96%20114.19H1298.08L1293.15%20127.78H1239.88V205.66H1219.36V127.78H1160.98L1165.96%20114.19ZM738.02%20156.98C738.99%20156.98%20739.95%20157.17%20740.85%20157.54C741.74%20157.91%20742.56%20158.46%20743.24%20159.14C743.93%20159.83%20744.47%20160.64%20744.84%20161.54C745.21%20162.43%20745.41%20163.39%20745.41%20164.36C745.39%20167.37%20743.56%20170.06%20740.78%20171.19C738%20172.33%20734.8%20171.67%20732.69%20169.54C730.58%20167.4%20729.97%20164.2%20731.13%20161.43C732.3%20158.67%20735.02%20156.87%20738.02%20156.89V156.98ZM900.31%20114.42L949.77%20204.75H927.8L878.34%20114.19L900.31%20114.42ZM853.02%20114.42H874.99L825.58%20204.75H803.61L853.02%20114.42ZM1039.46%20183.94C1040.72%20183.83%201041.98%20184.23%201042.96%20185.05C1043.93%20185.87%201044.54%20187.05%201044.65%20188.32C1044.75%20189.58%201044.35%20190.84%201043.53%20191.82C1042.71%20192.79%201041.54%20193.4%201040.27%20193.52V193.5C1039%20193.61%201037.74%20193.21%201036.77%20192.39C1035.79%20191.57%201035.19%20190.4%201035.08%20189.13C1034.97%20187.86%201035.37%20186.6%201036.19%20185.63C1037.01%20184.65%201038.19%20184.05%201039.45%20183.92L1039.46%20183.94ZM1513.23%20152.59C1530.94%20152.59%201540%20164.72%201540%20176.41V182.43C1539.77%20193.97%201530.99%20205.61%201513.73%20205.61H1417.89L1422.87%20192.03H1508.48C1509.96%20192.06%201511.43%20191.8%201512.81%20191.26C1514.19%20190.72%201515.45%20189.91%201516.52%20188.89C1517.59%20187.86%201518.44%20186.63%201519.04%20185.28C1519.63%20183.92%201519.95%20182.46%201519.98%20180.98V178.44C1519.99%20178.37%201519.99%20178.3%201519.99%20178.23C1520%20178.16%201520%20178.09%201520%20178.01C1520%20177.94%201520%20177.87%201519.99%20177.8C1519.99%20177.73%201519.99%20177.65%201519.98%20177.58C1519.84%20176.08%201519.41%20174.63%201518.71%20173.3C1518.01%20171.96%201517.06%20170.78%201515.9%20169.82C1514.74%20168.86%201513.41%20168.13%201511.97%20167.68C1510.53%20167.24%201509.02%20167.08%201507.52%20167.21H1444.66C1426.95%20167.21%201417.89%20155.08%201417.89%20143.35V137.38C1418.11%20125.83%201426.9%20114.19%201444.16%20114.19H1540L1535.02%20127.78H1449.41C1447.93%20127.74%201446.45%20128%201445.07%20128.54C1443.69%20129.07%201442.43%20129.88%201441.36%20130.91C1440.29%20131.93%201439.43%20133.16%201438.84%20134.52C1438.25%20135.88%201437.93%20137.34%201437.91%20138.83V141.36C1437.9%20141.44%201437.9%20141.53%201437.89%20141.61C1437.89%20141.69%201437.89%20141.78%201437.89%20141.86C1437.89%20141.94%201437.89%20142.03%201437.89%20142.11C1437.9%20142.19%201437.9%20142.27%201437.91%20142.36C1438.04%20143.86%201438.47%20145.31%201439.17%20146.64C1439.87%20147.98%201440.83%20149.16%201441.99%20150.12C1443.14%20151.08%201444.48%20151.81%201445.92%20152.26C1447.35%20152.7%201448.86%20152.86%201450.36%20152.73H1513.23V152.59ZM95.34%20152.59C113.05%20152.59%20122.11%20164.72%20122.11%20176.41V182.65C121.89%20194.2%20113.1%20205.84%2095.84%20205.84H0L4.98%20192.25H90.59C92.07%20192.28%2093.54%20192.02%2094.92%20191.48C96.3%20190.94%2097.56%20190.14%2098.63%20189.11C99.7%20188.09%20100.55%20186.86%20101.15%20185.5C101.74%20184.15%20102.06%20182.69%20102.09%20181.21V178.67C102.1%20178.6%20102.1%20178.53%20102.11%20178.46C102.11%20178.38%20102.11%20178.31%20102.11%20178.24C102.11%20178.17%20102.11%20178.1%20102.11%20178.02C102.1%20177.95%20102.1%20177.88%20102.09%20177.81C101.96%20176.31%20101.53%20174.85%20100.83%20173.52C100.13%20172.19%2099.17%20171.01%2098.01%20170.05C96.86%20169.08%2095.52%20168.36%2094.08%20167.91C92.65%20167.46%2091.14%20167.3%2089.64%20167.44H26.77C9.06%20167.44%200%20155.31%200%20143.58V137.6C0.23%20126.06%209.06%20114.6%2026.27%20114.19H122.29L117.13%20127.78H31.43C29.96%20127.75%2028.49%20128.02%2027.12%20128.56C25.75%20129.11%2024.5%20129.91%2023.44%20130.94C22.38%20131.96%2021.53%20133.19%2020.94%20134.54C20.36%20135.9%2020.04%20137.35%2020.02%20138.83V141.36C20.01%20141.43%2020.01%20141.5%2020.01%20141.58C20%20141.65%2020%20141.72%2020%20141.79C20%20141.86%2020%20141.93%2020.01%20142.01C20.01%20142.08%2020.01%20142.15%2020.02%20142.22C20.16%20143.72%2020.59%20145.18%2021.29%20146.51C21.99%20147.84%2022.94%20149.02%2024.1%20149.99C25.26%20150.95%2026.59%20151.67%2028.03%20152.12C29.47%20152.57%2030.98%20152.73%2032.48%20152.59H95.34ZM1341.43%20114.42H1361.95V204.75H1341.43V114.42ZM171.76%20114.19H303.92L298.94%20127.78H245.68V205.66H225.16V127.78H166.82L171.76%20114.19ZM369.24%20127.78V153.09H432.65L427.71%20166.4H369.42V192.07H452.76L447.78%20205.66H348.76V114.19H452.62L447.64%20127.78H369.24ZM534.83%20192.16H612.92L607.89%20205.75H514.31V114.42H534.83V192.16Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--swatch { aspect-ratio:6.9596; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221552%22%20height%3D%22223%22%20viewBox%3D%220%200%201552%20223%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_25847)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1441%2052.3004C1441%2025.0004%201463%202.90039%201490.3%202.90039C1517.4%202.90039%201539.5%2025.0004%201539.5%2052.3004C1539.5%2079.6004%201517.4%20101.7%201490.3%20101.7C1483.8%20101.7%201477.4%20100.4%201471.4%2097.9004C1465.4%2095.4004%201460%2091.8004%201455.4%2087.2004C1450.8%2082.6004%201447.2%2077.2004%201444.7%2071.2004C1442.2%2065.2004%201441%2058.8004%201441%2052.3004ZM733.2%2082.0004C716.8%2082.0004%20703.5%2068.9004%20703.5%2052.7004C703.5%2036.5004%20716.8%2023.4004%20733.2%2023.4004C749.6%2023.4004%20762.9%2036.5004%20762.9%2052.7004C762.9%2068.9004%20749.6%2082.0004%20733.2%2082.0004ZM937.7%2088.2004C917.5%2088.2004%20901.2%2072.1004%20901.2%2052.2004C901.2%2032.3004%20917.5%2016.2004%20937.7%2016.2004C957.8%2016.2004%20974.1%2032.3004%20974.1%2052.2004C974.1%2072.1004%20957.8%2088.2004%20937.7%2088.2004Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1257.1%2052.7008C1257.1%2063.3008%201253.3%2073.1008%201247.1%2080.7008C1239%2090.5008%201226.8%2095.4008%201213.1%2095.4008C1187.1%2095.4008%201171.1%2073.8008%201171.1%2052.6008C1171.1%2029.1008%201190.1%209.80078%201213.1%209.80078C1227.2%209.80078%201239.7%2015.2008%201247.8%2025.5008C1249.27%2027.4341%201250.6%2029.4674%201251.8%2031.6008C1252.93%2033.7341%201253.9%2035.9674%201254.7%2038.3008C1255.5%2040.6341%201256.1%2043.0008%201256.5%2045.4008C1256.9%2047.8008%201257.1%2050.2341%201257.1%2052.7008Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M0%20189.601H29.8C29.9%20199.901%2034.1%20200.701%2042.7%20200.701H79.2C85.5%20200.701%2091.9%20200.101%2091.9%20192.601C91.9%20184.101%2088.4%20183.501%2050.1%20183.501C5.2%20183.501%200.1%20178.201%200.1%20154.201C0.1%20136.601%201.8%20123.001%2039.3%20123.001H80.9C115.3%20123.001%20118.5%20134.701%20118.5%20151.801V154.901H88.7C88.7%20147.801%2087.9%20144.801%2074.2%20144.801H41.2C34.5%20144.801%2029.9%20147.101%2029.9%20152.301C29.9%20160.801%2033.6%20161.101%2065.5%20161.001C111.8%20160.801%20122.5%20163.601%20122.5%20192.001C122.5%20218.201%20113.7%20222.501%2074.1%20222.501H38C10.9%20222.501%200%20217.401%200%20196.301L0%20189.601Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M126.6%20124.101H155.8L176.4%20195.601H176.7L201.4%20124.101H229L253.7%20195.601H254L274.7%20124.101H303.8L272.3%20221.501H238L215.4%20157.201H215.1L192.4%20221.501H158.2L126.6%20124.101ZM338.7%20124.101H377.5L430.9%20221.401H397.8L388.5%20204.201H328.1L319.4%20221.401H286.1L338.7%20124.101ZM339.2%20183.301H377.4L358%20146.701L339.2%20183.301Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M410.4%20124.1H523.9V148.3H482V221.5H452.2V148.3H410.4V124.1ZM531.4%20158.3C531.4%20129.8%20547.4%20123%20574.2%20123H609.3C651.7%20123%20657.2%20132.2%20656.9%20159.8H627.1V157.1C627.1%20150.1%20622%20148%20613.1%20148H580.7C565%20148%20562%20155.4%20562%20167.6V178C562%20192.1%20565%20197.5%20579.1%20197.5H610.9C624.3%20197.5%20628.3%20196.2%20628.3%20184.1H658.1V193.2C658.1%20209.6%20652.2%20222.5%20622.3%20222.5H574.2C547.4%20222.5%20531.4%20215.8%20531.4%20187.3V158.3ZM672.7%20124.2H702.5V158.8H765.3V124.2H795.1V221.5H765.3V184.7H702.5V221.5H672.7V124.2ZM872.7%20158.4C872.7%20129.9%20888.7%20123.1%20915.5%20123.1H960.3C994.1%20123.1%20998.8%20135.4%20998.8%20154.3V157.4H969.6C969.6%20147.7%20964.1%20146.5%20954.5%20146.5H922.2C907.2%20146.5%20903.3%20150.2%20903.3%20166.8V178.9C903.3%20195.6%20907.2%20199.2%20922.2%20199.2H954C961.8%20199.2%20969.6%20198%20969.6%20188.6V185.8H932.5V165.6H999.4V193.3C999.4%20221.3%20984.9%20222.6%20951.3%20222.6H915.5C888.7%20222.6%20872.7%20215.9%20872.7%20187.4V158.4ZM1014%20124.3H1103.9C1126.9%20124.3%201133%20135.7%201133%20153.2V159.3C1133%20172.4%201130.1%20180.1%201116.4%20183.3V183.6C1125.2%20185.2%201132.6%20189.1%201132.6%20205.1V221.6H1102.8V209.9C1102.8%20199.7%201099.9%20196.3%201090.6%20196.3H1043.8V221.6H1014V124.3ZM1043.8%20172.2H1093C1101.1%20172.2%201104%20168.9%201104%20161.9V158.7C1104%20150.1%201099.8%20148.5%201090.4%20148.5H1043.8V172.2ZM1147.7%20158.4C1147.7%20129.9%201163.6%20123.2%201190.5%20123.2H1238.2C1265.1%20123.2%201281.1%20129.9%201281.1%20158.4V187.5C1281.1%20216%201265.1%20222.7%201238.2%20222.7H1190.5C1163.6%20222.7%201147.7%20216%201147.7%20187.5V158.4ZM1178.3%20178.1C1178.3%20192.3%201181.2%20197.7%201195.3%20197.7H1233.4C1247.5%20197.7%201250.5%20192.3%201250.5%20178.1V167.7C1250.5%20155.6%201247.5%20148.2%201231.8%20148.2H1196.9C1181.2%20148.2%201178.3%20155.6%201178.3%20167.7V178.1ZM1295.7%20124.2H1325.5V180.4C1325.5%20192.8%201329.9%20197.7%201342.1%20197.7H1371.7C1383.9%20197.7%201388.3%20192.8%201388.3%20180.4V124.2H1418.1V186.9C1418.1%20211.1%201405.6%20222.7%201378.2%20222.7H1335.5C1308.2%20222.7%201295.7%20211.1%201295.7%20186.9V124.2Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1434.9%20124.101H1516C1544.4%20124.101%201551.2%20138.401%201551.2%20157.501V165.801C1551.2%20180.301%201544.9%20197.001%201523.8%20197.001H1464.6V221.501H1434.9V124.101ZM1464.6%20172.701H1510.9C1517.9%20172.701%201520.6%20168.201%201520.6%20162.401V158.601C1520.6%20152.001%201517.4%20148.301%201508.4%20148.301H1464.6V172.701Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1236.3%2080.7004H1247.1C1237.5%2092.4004%201222.6%2098.3004%201207.7%2096.4004C1192.7%2094.5004%201179.8%2085.1004%201173.3%2071.5004C1166.9%2057.8004%201167.9%2041.8004%201176%2029.1004C1184.1%2016.3004%201198.1%208.60039%201213.2%208.60039C1216.5%208.60039%201219.8%209.00039%201223%209.70039C1226.3%2010.5004%201229.4%2011.6004%201232.4%2013.1004C1235.4%2014.5004%201238.2%2016.3004%201240.8%2018.4004C1243.4%2020.5004%201245.7%2022.9004%201247.8%2025.5004H1236.3V43.9004H1217.9V62.3004H1236.3V80.7004ZM959.2%2060.0004H973.4C971.5%2069.0004%20966.3%2077.0004%20958.9%2082.4004C951.4%2087.9004%20942.2%2090.4004%20933.1%2089.4004C923.9%2088.4004%20915.4%2084.1004%20909.3%2077.3004C903.1%2070.4004%20899.7%2061.5004%20899.7%2052.3004C899.7%2043.0004%20903.2%2034.1004%20909.4%2027.2004C915.7%2020.4004%20924.2%2016.1004%20933.4%2015.2004C942.6%2014.3004%20951.9%2016.9004%20959.3%2022.5004C966.7%2028.1004%20971.7%2036.2004%20973.5%2045.3004H959.2V60.0004ZM753.6%2060.5004H761.9C761.1%2063.7004%20759.7%2066.8004%20757.9%2069.6004C756%2072.4004%20753.7%2074.8004%20751.1%2076.9004C748.4%2078.9004%20745.5%2080.5004%20742.3%2081.6004C739.2%2082.7004%20735.8%2083.2004%20732.5%2083.2004C724.6%2083.0004%20717%2079.7004%20711.4%2074.0004C705.9%2068.3004%20702.8%2060.7004%20702.8%2052.7004C702.8%2044.8004%20705.9%2037.1004%20711.4%2031.4004C717%2025.7004%20724.6%2022.4004%20732.5%2022.2004C735.9%2022.2004%20739.3%2022.8004%20742.5%2023.9004C745.7%2025.1004%20748.7%2026.7004%20751.4%2028.8004C754%2030.9004%20756.3%2033.5004%20758.2%2036.4004C760%2039.3004%20761.3%2042.4004%20762.1%2045.7004H753.6V60.5004ZM1439.5%2052.4004C1439.2%2038.7004%201444.4%2025.5004%201454%2015.7004C1463.5%205.90039%201476.6%200.400391%201490.3%200.400391C1503.9%200.400391%201517%205.90039%201526.5%2015.7004C1536.1%2025.5004%201541.3%2038.7004%201541%2052.4004C1540.7%2065.6004%201535.2%2078.3004%201525.7%2087.6004C1516.3%2096.9004%201503.5%20102.1%201490.3%20102.1C1477%20102.1%201464.3%2096.9004%201454.8%2087.6004C1445.3%2078.3004%201439.8%2065.6004%201439.5%2052.4004ZM1501.7%2040.9004V17.9004H1478.8V40.9004H1455.8V63.9004H1478.8V86.8004H1501.7V63.9004H1524.7V40.9004H1501.7Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_25847%22%3E%20%3Crect%20width%3D%221552%22%20height%3D%22223%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221552%22%20height%3D%22223%22%20viewBox%3D%220%200%201552%20223%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_25847)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1441%2052.3004C1441%2025.0004%201463%202.90039%201490.3%202.90039C1517.4%202.90039%201539.5%2025.0004%201539.5%2052.3004C1539.5%2079.6004%201517.4%20101.7%201490.3%20101.7C1483.8%20101.7%201477.4%20100.4%201471.4%2097.9004C1465.4%2095.4004%201460%2091.8004%201455.4%2087.2004C1450.8%2082.6004%201447.2%2077.2004%201444.7%2071.2004C1442.2%2065.2004%201441%2058.8004%201441%2052.3004ZM733.2%2082.0004C716.8%2082.0004%20703.5%2068.9004%20703.5%2052.7004C703.5%2036.5004%20716.8%2023.4004%20733.2%2023.4004C749.6%2023.4004%20762.9%2036.5004%20762.9%2052.7004C762.9%2068.9004%20749.6%2082.0004%20733.2%2082.0004ZM937.7%2088.2004C917.5%2088.2004%20901.2%2072.1004%20901.2%2052.2004C901.2%2032.3004%20917.5%2016.2004%20937.7%2016.2004C957.8%2016.2004%20974.1%2032.3004%20974.1%2052.2004C974.1%2072.1004%20957.8%2088.2004%20937.7%2088.2004Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1257.1%2052.7008C1257.1%2063.3008%201253.3%2073.1008%201247.1%2080.7008C1239%2090.5008%201226.8%2095.4008%201213.1%2095.4008C1187.1%2095.4008%201171.1%2073.8008%201171.1%2052.6008C1171.1%2029.1008%201190.1%209.80078%201213.1%209.80078C1227.2%209.80078%201239.7%2015.2008%201247.8%2025.5008C1249.27%2027.4341%201250.6%2029.4674%201251.8%2031.6008C1252.93%2033.7341%201253.9%2035.9674%201254.7%2038.3008C1255.5%2040.6341%201256.1%2043.0008%201256.5%2045.4008C1256.9%2047.8008%201257.1%2050.2341%201257.1%2052.7008Z%22%20fill%3D%22%23FFFFFE%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M0%20189.601H29.8C29.9%20199.901%2034.1%20200.701%2042.7%20200.701H79.2C85.5%20200.701%2091.9%20200.101%2091.9%20192.601C91.9%20184.101%2088.4%20183.501%2050.1%20183.501C5.2%20183.501%200.1%20178.201%200.1%20154.201C0.1%20136.601%201.8%20123.001%2039.3%20123.001H80.9C115.3%20123.001%20118.5%20134.701%20118.5%20151.801V154.901H88.7C88.7%20147.801%2087.9%20144.801%2074.2%20144.801H41.2C34.5%20144.801%2029.9%20147.101%2029.9%20152.301C29.9%20160.801%2033.6%20161.101%2065.5%20161.001C111.8%20160.801%20122.5%20163.601%20122.5%20192.001C122.5%20218.201%20113.7%20222.501%2074.1%20222.501H38C10.9%20222.501%200%20217.401%200%20196.301L0%20189.601Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M126.6%20124.101H155.8L176.4%20195.601H176.7L201.4%20124.101H229L253.7%20195.601H254L274.7%20124.101H303.8L272.3%20221.501H238L215.4%20157.201H215.1L192.4%20221.501H158.2L126.6%20124.101ZM338.7%20124.101H377.5L430.9%20221.401H397.8L388.5%20204.201H328.1L319.4%20221.401H286.1L338.7%20124.101ZM339.2%20183.301H377.4L358%20146.701L339.2%20183.301Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M410.4%20124.1H523.9V148.3H482V221.5H452.2V148.3H410.4V124.1ZM531.4%20158.3C531.4%20129.8%20547.4%20123%20574.2%20123H609.3C651.7%20123%20657.2%20132.2%20656.9%20159.8H627.1V157.1C627.1%20150.1%20622%20148%20613.1%20148H580.7C565%20148%20562%20155.4%20562%20167.6V178C562%20192.1%20565%20197.5%20579.1%20197.5H610.9C624.3%20197.5%20628.3%20196.2%20628.3%20184.1H658.1V193.2C658.1%20209.6%20652.2%20222.5%20622.3%20222.5H574.2C547.4%20222.5%20531.4%20215.8%20531.4%20187.3V158.3ZM672.7%20124.2H702.5V158.8H765.3V124.2H795.1V221.5H765.3V184.7H702.5V221.5H672.7V124.2ZM872.7%20158.4C872.7%20129.9%20888.7%20123.1%20915.5%20123.1H960.3C994.1%20123.1%20998.8%20135.4%20998.8%20154.3V157.4H969.6C969.6%20147.7%20964.1%20146.5%20954.5%20146.5H922.2C907.2%20146.5%20903.3%20150.2%20903.3%20166.8V178.9C903.3%20195.6%20907.2%20199.2%20922.2%20199.2H954C961.8%20199.2%20969.6%20198%20969.6%20188.6V185.8H932.5V165.6H999.4V193.3C999.4%20221.3%20984.9%20222.6%20951.3%20222.6H915.5C888.7%20222.6%20872.7%20215.9%20872.7%20187.4V158.4ZM1014%20124.3H1103.9C1126.9%20124.3%201133%20135.7%201133%20153.2V159.3C1133%20172.4%201130.1%20180.1%201116.4%20183.3V183.6C1125.2%20185.2%201132.6%20189.1%201132.6%20205.1V221.6H1102.8V209.9C1102.8%20199.7%201099.9%20196.3%201090.6%20196.3H1043.8V221.6H1014V124.3ZM1043.8%20172.2H1093C1101.1%20172.2%201104%20168.9%201104%20161.9V158.7C1104%20150.1%201099.8%20148.5%201090.4%20148.5H1043.8V172.2ZM1147.7%20158.4C1147.7%20129.9%201163.6%20123.2%201190.5%20123.2H1238.2C1265.1%20123.2%201281.1%20129.9%201281.1%20158.4V187.5C1281.1%20216%201265.1%20222.7%201238.2%20222.7H1190.5C1163.6%20222.7%201147.7%20216%201147.7%20187.5V158.4ZM1178.3%20178.1C1178.3%20192.3%201181.2%20197.7%201195.3%20197.7H1233.4C1247.5%20197.7%201250.5%20192.3%201250.5%20178.1V167.7C1250.5%20155.6%201247.5%20148.2%201231.8%20148.2H1196.9C1181.2%20148.2%201178.3%20155.6%201178.3%20167.7V178.1ZM1295.7%20124.2H1325.5V180.4C1325.5%20192.8%201329.9%20197.7%201342.1%20197.7H1371.7C1383.9%20197.7%201388.3%20192.8%201388.3%20180.4V124.2H1418.1V186.9C1418.1%20211.1%201405.6%20222.7%201378.2%20222.7H1335.5C1308.2%20222.7%201295.7%20211.1%201295.7%20186.9V124.2Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1434.9%20124.101H1516C1544.4%20124.101%201551.2%20138.401%201551.2%20157.501V165.801C1551.2%20180.301%201544.9%20197.001%201523.8%20197.001H1464.6V221.501H1434.9V124.101ZM1464.6%20172.701H1510.9C1517.9%20172.701%201520.6%20168.201%201520.6%20162.401V158.601C1520.6%20152.001%201517.4%20148.301%201508.4%20148.301H1464.6V172.701Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1236.3%2080.7004H1247.1C1237.5%2092.4004%201222.6%2098.3004%201207.7%2096.4004C1192.7%2094.5004%201179.8%2085.1004%201173.3%2071.5004C1166.9%2057.8004%201167.9%2041.8004%201176%2029.1004C1184.1%2016.3004%201198.1%208.60039%201213.2%208.60039C1216.5%208.60039%201219.8%209.00039%201223%209.70039C1226.3%2010.5004%201229.4%2011.6004%201232.4%2013.1004C1235.4%2014.5004%201238.2%2016.3004%201240.8%2018.4004C1243.4%2020.5004%201245.7%2022.9004%201247.8%2025.5004H1236.3V43.9004H1217.9V62.3004H1236.3V80.7004ZM959.2%2060.0004H973.4C971.5%2069.0004%20966.3%2077.0004%20958.9%2082.4004C951.4%2087.9004%20942.2%2090.4004%20933.1%2089.4004C923.9%2088.4004%20915.4%2084.1004%20909.3%2077.3004C903.1%2070.4004%20899.7%2061.5004%20899.7%2052.3004C899.7%2043.0004%20903.2%2034.1004%20909.4%2027.2004C915.7%2020.4004%20924.2%2016.1004%20933.4%2015.2004C942.6%2014.3004%20951.9%2016.9004%20959.3%2022.5004C966.7%2028.1004%20971.7%2036.2004%20973.5%2045.3004H959.2V60.0004ZM753.6%2060.5004H761.9C761.1%2063.7004%20759.7%2066.8004%20757.9%2069.6004C756%2072.4004%20753.7%2074.8004%20751.1%2076.9004C748.4%2078.9004%20745.5%2080.5004%20742.3%2081.6004C739.2%2082.7004%20735.8%2083.2004%20732.5%2083.2004C724.6%2083.0004%20717%2079.7004%20711.4%2074.0004C705.9%2068.3004%20702.8%2060.7004%20702.8%2052.7004C702.8%2044.8004%20705.9%2037.1004%20711.4%2031.4004C717%2025.7004%20724.6%2022.4004%20732.5%2022.2004C735.9%2022.2004%20739.3%2022.8004%20742.5%2023.9004C745.7%2025.1004%20748.7%2026.7004%20751.4%2028.8004C754%2030.9004%20756.3%2033.5004%20758.2%2036.4004C760%2039.3004%20761.3%2042.4004%20762.1%2045.7004H753.6V60.5004ZM1439.5%2052.4004C1439.2%2038.7004%201444.4%2025.5004%201454%2015.7004C1463.5%205.90039%201476.6%200.400391%201490.3%200.400391C1503.9%200.400391%201517%205.90039%201526.5%2015.7004C1536.1%2025.5004%201541.3%2038.7004%201541%2052.4004C1540.7%2065.6004%201535.2%2078.3004%201525.7%2087.6004C1516.3%2096.9004%201503.5%20102.1%201490.3%20102.1C1477%20102.1%201464.3%2096.9004%201454.8%2087.6004C1445.3%2078.3004%201439.8%2065.6004%201439.5%2052.4004ZM1501.7%2040.9004V17.9004H1478.8V40.9004H1455.8V63.9004H1478.8V86.8004H1501.7V63.9004H1524.7V40.9004H1501.7Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_25847%22%3E%20%3Crect%20width%3D%221552%22%20height%3D%22223%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--temenos { aspect-ratio:6.2275; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221040%22%20height%3D%22167%22%20viewBox%3D%220%200%201040%20167%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24909)%22%3E%20%3Cmask%20id%3D%22mask0_6822_24909%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%221041%22%20height%3D%22168%22%3E%20%3Cpath%20d%3D%22M0%20167.002H1040.01V0.000241231H0V167.002Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_24909)%22%3E%20%3Cpath%20d%3D%22M54.8671%2033.0636H94.6626V56.8687H54.8671V120.168C54.8671%20132.463%2062.5186%20139.529%2075.2748%20139.529C81.3993%20139.529%2087.7774%20137.961%2092.3694%20135.345V160.982C84.7179%20164.643%2074.2549%20167%2064.5639%20167C37.2654%20167%2021.1906%20151.305%2021.1906%20124.618V56.8687H-0.00585938V33.0636H21.1906V-0.00169038H54.8671V33.0636ZM515.115%2088.4959C517.684%2067.3133%20528.542%2056.3442%20545.315%2056.3442C561.846%2056.3442%20572.698%2067.3133%20575.025%2088.4959H515.115ZM607.609%2088.4959H607.597C604.11%2051.6294%20581.392%2030.4468%20545.315%2030.4468C505.52%2030.4468%20482.047%2055.5603%20482.047%2098.7206C482.047%20141.622%20505.52%20167%20545.315%20167C579.24%20167%20602.425%20149.483%20607.733%20119.604H574.867C571.008%20132.779%20560.365%20140.843%20545.315%20140.843C528.621%20140.843%20517.78%20125.492%20515.188%20104.236H608.076V98.7206C608.076%2095.3255%20607.919%2092.0545%20607.626%2088.885L607.609%2088.4959ZM140.594%2088.4959C143.163%2067.3133%20154.015%2056.3442%20170.794%2056.3442C187.325%2056.3442%20198.177%2067.3133%20200.504%2088.4959H140.594ZM233.087%2088.4959H233.071C229.588%2051.6294%20206.865%2030.4468%20170.794%2030.4468C130.993%2030.4468%20107.526%2055.5603%20107.526%2098.7206C107.526%20141.622%20130.993%20167%20170.794%20167C204.718%20167%20227.904%20149.483%20233.206%20119.604H200.346C196.487%20132.779%20185.843%20140.843%20170.794%20140.843C154.094%20140.843%20143.259%20125.492%20140.667%20104.236H233.555V98.7206C233.555%2095.3255%20233.392%2092.0489%20233.104%2088.885L233.087%2088.4959ZM752.22%2084.3338V164.383H718.543V85.9016C718.543%2068.1198%20709.359%2057.6526%20693.538%2057.6526C675.683%2057.6526%20665.226%2070.9904%20665.226%2093.2276V164.383H631.549V33.0636H665.226V66.2982L665.181%2078.0287C668.465%2054.3816%20684.495%2030.4468%20707.32%2030.4468C735.638%2030.4468%20752.22%2050.3323%20752.22%2084.3338ZM459.589%2083.0254V164.383H425.918V84.5989C425.918%2067.5897%20416.987%2057.6526%20401.932%2057.6526C385.097%2057.6526%20375.146%2070.4715%20375.146%2091.9192V164.383H341.47V84.5989C341.47%2067.5897%20332.793%2057.6526%20317.744%2057.6526C300.655%2057.6526%20290.699%2070.4715%20290.699%2091.9192V164.383H257.028V33.0636H290.699V66.2982L290.597%2078.0287C293.764%2054.3365%20309.805%2030.4468%20332.545%2030.4468C356.108%2030.4468%20371.169%2043.1304%20374.453%2066.2982L374.882%2078.0287C377.902%2054.3365%20393.43%2030.4468%20415.714%2030.4468C443.26%2030.4468%20459.589%2049.8078%20459.589%2083.0254ZM1040%20123.834C1040%20150.78%201018.32%20166.994%20981.837%20166.994C945.101%20166.994%20923.673%20150.256%20923.673%20121.742H955.051C955.051%20136.394%20965.001%20145.022%20981.837%20145.022C998.16%20145.022%201007.6%20138.745%201007.6%20127.759C1007.6%20113.891%20992.554%20111.28%20975.712%20108.398C953.519%20104.738%20926.986%20100.294%20926.986%2070.2121C926.986%2045.3637%20947.394%2030.4468%20981.837%2030.4468C1016.02%2030.4468%201036.43%2046.4015%201036.43%2073.6128H1005.05C1005.05%2059.7449%20996.633%2051.9001%20981.837%2051.9001C967.807%2051.9001%20959.384%2057.6526%20959.384%2067.3302C959.384%2079.1002%20973.419%2081.4576%20989.748%2084.3338C1012.45%2088.259%201040%2092.9681%201040%20123.834ZM841.519%20139.529C821.106%20139.529%20809.116%20124.359%20809.116%2098.7262C809.116%2073.0827%20821.106%2057.6526%20841.519%2057.6526C861.927%2057.6526%20873.917%2073.0827%20873.917%2098.7262C873.917%20124.359%20861.927%20139.529%20841.519%20139.529ZM841.519%2030.4468C799.678%2030.4468%20774.673%2055.8197%20774.673%2098.7262C774.673%20141.622%20799.678%20167%20841.519%20167C883.354%20167%20908.1%20141.622%20908.1%2098.7262C908.1%2055.8197%20883.354%2030.4468%20841.519%2030.4468Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24909%22%3E%20%3Crect%20width%3D%221040%22%20height%3D%22167%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221040%22%20height%3D%22167%22%20viewBox%3D%220%200%201040%20167%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_24909)%22%3E%20%3Cmask%20id%3D%22mask0_6822_24909%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%221041%22%20height%3D%22168%22%3E%20%3Cpath%20d%3D%22M0%20167.002H1040.01V0.000241231H0V167.002Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23mask0_6822_24909)%22%3E%20%3Cpath%20d%3D%22M54.8671%2033.0636H94.6626V56.8687H54.8671V120.168C54.8671%20132.463%2062.5186%20139.529%2075.2748%20139.529C81.3993%20139.529%2087.7774%20137.961%2092.3694%20135.345V160.982C84.7179%20164.643%2074.2549%20167%2064.5639%20167C37.2654%20167%2021.1906%20151.305%2021.1906%20124.618V56.8687H-0.00585938V33.0636H21.1906V-0.00169038H54.8671V33.0636ZM515.115%2088.4959C517.684%2067.3133%20528.542%2056.3442%20545.315%2056.3442C561.846%2056.3442%20572.698%2067.3133%20575.025%2088.4959H515.115ZM607.609%2088.4959H607.597C604.11%2051.6294%20581.392%2030.4468%20545.315%2030.4468C505.52%2030.4468%20482.047%2055.5603%20482.047%2098.7206C482.047%20141.622%20505.52%20167%20545.315%20167C579.24%20167%20602.425%20149.483%20607.733%20119.604H574.867C571.008%20132.779%20560.365%20140.843%20545.315%20140.843C528.621%20140.843%20517.78%20125.492%20515.188%20104.236H608.076V98.7206C608.076%2095.3255%20607.919%2092.0545%20607.626%2088.885L607.609%2088.4959ZM140.594%2088.4959C143.163%2067.3133%20154.015%2056.3442%20170.794%2056.3442C187.325%2056.3442%20198.177%2067.3133%20200.504%2088.4959H140.594ZM233.087%2088.4959H233.071C229.588%2051.6294%20206.865%2030.4468%20170.794%2030.4468C130.993%2030.4468%20107.526%2055.5603%20107.526%2098.7206C107.526%20141.622%20130.993%20167%20170.794%20167C204.718%20167%20227.904%20149.483%20233.206%20119.604H200.346C196.487%20132.779%20185.843%20140.843%20170.794%20140.843C154.094%20140.843%20143.259%20125.492%20140.667%20104.236H233.555V98.7206C233.555%2095.3255%20233.392%2092.0489%20233.104%2088.885L233.087%2088.4959ZM752.22%2084.3338V164.383H718.543V85.9016C718.543%2068.1198%20709.359%2057.6526%20693.538%2057.6526C675.683%2057.6526%20665.226%2070.9904%20665.226%2093.2276V164.383H631.549V33.0636H665.226V66.2982L665.181%2078.0287C668.465%2054.3816%20684.495%2030.4468%20707.32%2030.4468C735.638%2030.4468%20752.22%2050.3323%20752.22%2084.3338ZM459.589%2083.0254V164.383H425.918V84.5989C425.918%2067.5897%20416.987%2057.6526%20401.932%2057.6526C385.097%2057.6526%20375.146%2070.4715%20375.146%2091.9192V164.383H341.47V84.5989C341.47%2067.5897%20332.793%2057.6526%20317.744%2057.6526C300.655%2057.6526%20290.699%2070.4715%20290.699%2091.9192V164.383H257.028V33.0636H290.699V66.2982L290.597%2078.0287C293.764%2054.3365%20309.805%2030.4468%20332.545%2030.4468C356.108%2030.4468%20371.169%2043.1304%20374.453%2066.2982L374.882%2078.0287C377.902%2054.3365%20393.43%2030.4468%20415.714%2030.4468C443.26%2030.4468%20459.589%2049.8078%20459.589%2083.0254ZM1040%20123.834C1040%20150.78%201018.32%20166.994%20981.837%20166.994C945.101%20166.994%20923.673%20150.256%20923.673%20121.742H955.051C955.051%20136.394%20965.001%20145.022%20981.837%20145.022C998.16%20145.022%201007.6%20138.745%201007.6%20127.759C1007.6%20113.891%20992.554%20111.28%20975.712%20108.398C953.519%20104.738%20926.986%20100.294%20926.986%2070.2121C926.986%2045.3637%20947.394%2030.4468%20981.837%2030.4468C1016.02%2030.4468%201036.43%2046.4015%201036.43%2073.6128H1005.05C1005.05%2059.7449%20996.633%2051.9001%20981.837%2051.9001C967.807%2051.9001%20959.384%2057.6526%20959.384%2067.3302C959.384%2079.1002%20973.419%2081.4576%20989.748%2084.3338C1012.45%2088.259%201040%2092.9681%201040%20123.834ZM841.519%20139.529C821.106%20139.529%20809.116%20124.359%20809.116%2098.7262C809.116%2073.0827%20821.106%2057.6526%20841.519%2057.6526C861.927%2057.6526%20873.917%2073.0827%20873.917%2098.7262C873.917%20124.359%20861.927%20139.529%20841.519%20139.529ZM841.519%2030.4468C799.678%2030.4468%20774.673%2055.8197%20774.673%2098.7262C774.673%20141.622%20799.678%20167%20841.519%20167C883.354%20167%20908.1%20141.622%20908.1%2098.7262C908.1%2055.8197%20883.354%2030.4468%20841.519%2030.4468Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_24909%22%3E%20%3Crect%20width%3D%221040%22%20height%3D%22167%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--turkish { aspect-ratio:3.7178; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221528%22%20height%3D%22411%22%20viewBox%3D%220%200%201528%20411%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_34018)%22%3E%20%3Cpath%20d%3D%22M1474.5%20181.398V113.498H1406.6V181.398H1369.3V20.498H1406.6V84.298H1474.5V20.498H1511.9V181.398H1474.5Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M673.199%2020.498V120.998C673.199%20131.798%20674.599%20141.998%20677.999%20149.498C681.399%20156.998%20686.099%20163.698%20691.599%20168.498C697.699%20173.298%20705.199%20177.298%20713.299%20179.398C721.399%20181.398%20730.999%20182.798%20741.799%20182.798C751.999%20182.798%20761.499%20181.398%20769.699%20179.398C777.799%20177.298%20784.599%20173.298%20789.999%20168.498C795.499%20163.698%20800.199%20156.998%20802.899%20149.498C806.299%20141.298%20807.699%20131.798%20807.699%20120.998V20.498H773.099V120.298C773.099%20130.498%20770.299%20138.598%20765.599%20144.698C760.799%20150.798%20752.699%20154.198%20741.799%20154.198C730.999%20154.198%20722.799%20150.798%20718.099%20144.698C713.299%20138.598%20710.599%20130.498%20710.599%20120.298V20.498H673.199Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M565.899%20181.398V50.298H522.499V20.498H647.399V34.698C647.399%2043.598%20640.599%2050.298%20631.799%2050.298H603.299V181.398H565.899Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1163.5%2020.498H1200.9V181.398H1163.5V20.498Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1039.9%20105.998L1041.3%20107.398L1088.8%20168.498C1094.9%20175.998%201103.8%20180.698%201113.9%20180.698H1143.8L1075.9%2093.798L1075.2%2092.398L1075.9%2091.098L1131.6%2020.498H1092.9L1041.3%2089.698L1039.9%2091.098V88.398V20.498H1002.6V181.398H1039.9V108.698V105.998Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M954.399%20181.398C943.499%20181.398%20932.599%20175.298%20927.199%20166.498L897.999%20118.898H879.699V182.098H842.299V20.498H908.899C925.799%2020.498%20939.399%2025.198%20948.299%2033.398C957.799%2042.198%20962.499%2054.398%20962.499%2068.698C962.499%2076.1647%20960.466%2083.6314%20956.399%2091.098C952.332%2098.5647%20945.532%20104.665%20935.999%20109.398L933.999%20110.098L979.499%20180.698H954.399V181.398ZM901.399%2093.798C908.899%2093.798%20914.999%2091.798%20919.099%2087.698C923.165%2083.6314%20925.199%2078.198%20925.199%2071.398C925.199%2064.598%20923.099%2059.198%20919.699%2055.098C915.699%2050.998%20910.199%2048.998%20902.099%2048.998H880.299V93.798H901.399Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1231.4%20174.599V144.099C1243%20149.499%201258.6%20154.899%201274.2%20154.899C1292.5%20154.899%201301.4%20148.799%201301.4%20136.599C1301.4%20122.299%201289.1%20120.999%201264%20110.099C1247%20102.599%201231.4%2091.0988%201231.4%2063.8988C1231.4%2032.6988%201255.2%2017.7988%201288.5%2017.7988C1306.1%2017.7988%201321%2021.7988%201329.2%2025.1988V55.0988C1321%2050.9988%201306.1%2046.2988%201290.5%2046.2988C1274.2%2046.2988%201266.7%2052.3988%201266.7%2062.5988C1266.7%2073.3988%201276.2%2076.7988%201292.5%2082.8988C1313.6%2093.7988%201338.7%2098.5988%201338.7%20134.499C1338.7%20165.799%201313.6%20182.799%201280.3%20182.799C1260.6%20183.399%201244.3%20179.999%201231.4%20174.599Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1289.8%20391.199V230.299H1390.3V244.599C1390.3%20253.399%201383.5%20260.199%201374.7%20260.199H1326.5V294.799H1380.8V321.999H1326.5V361.299H1390.3V391.199H1289.8Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M921.8%20391.199V230.299H940.1C951%20230.299%20959.1%20239.099%20959.1%20249.299V361.999H1018.2V391.199H921.8Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M691.6%20391.199V230.299H728.9V391.199H691.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M874.199%20391.199C863.399%20391.199%20852.499%20385.099%20847.099%20376.299L817.899%20328.799H799.499V391.899H762.199V230.299H828.699C845.699%20230.299%20859.299%20234.999%20868.099%20243.199C877.599%20251.999%20882.399%20264.199%20882.399%20278.499C882.399%20285.999%20880.299%20293.399%20876.299%20301.599C872.233%20309.065%20865.433%20315.165%20855.899%20319.899L853.899%20320.599L899.399%20391.199H874.199ZM800.099%20303.599H821.899C829.999%20303.599%20835.499%20301.599%20839.499%20297.499C843.566%20293.432%20845.599%20287.999%20845.599%20281.199C845.599%20274.399%20843.599%20268.999%20840.199%20264.899C836.099%20260.799%20830.699%20258.799%20822.599%20258.799H800.799L800.099%20303.599Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M669.199%20391.199H629.099L619.599%20361.299H554.399L548.299%20380.399C546.299%20387.199%20540.099%20391.199%20533.399%20391.199H506.899L567.299%20230.299H610.099L669.199%20391.199ZM610.099%20332.799L595.799%20292.099C593.099%20282.499%20589.699%20273.699%20587.699%20266.199H586.999C584.999%20272.999%20581.599%20283.199%20578.199%20292.099L563.899%20332.799H610.099Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1420.2%20384.4V353.9C1431.7%20359.3%201447.3%20364.7%201463%20364.7C1481.3%20364.7%201490.1%20358.6%201490.1%20346.4C1490.1%20332.1%201477.9%20330.8%201452.8%20319.9C1435.8%20312.5%201420.2%20300.9%201420.2%20273.8C1420.2%20242.5%201444%20227.6%201477.2%20227.6C1494.9%20227.6%201509.8%20231.7%201518%20235V264.9C1509.8%20260.8%201494.9%20256.1%201479.3%20256.1C1463%20256.1%201455.5%20262.2%201455.5%20272.4C1455.5%20283.3%201465%20286.7%201481.3%20292.8C1502.4%20303.6%201527.5%20308.4%201527.5%20344.4C1527.5%20375.6%201502.4%20392.6%201469.1%20392.6C1449.4%20393.3%201433.1%20389.9%201420.2%20384.4Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1113.9%20230.299H1137C1147.9%20230.299%201158.1%20235.699%201164.2%20245.199L1209%20317.199C1213.8%20325.399%201219.9%20335.499%201223.3%20342.999H1223.9C1223.3%20335.499%201223.3%20325.999%201223.3%20318.599V230.299H1255.9V391.199H1215.1L1160.8%20304.299C1156%20296.199%201150.6%20286.699%201146.5%20279.199H1145.9C1145.9%20285.999%201146.5%20294.099%201146.5%20302.299V391.199H1113.9V230.299Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1042.6%20230.299H1080V391.199H1042.6V230.299Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M227.1%201.49961C330.3%2012.2996%20411.1%2099.1996%20411.1%20205.8C411.1%20319.2%20319.5%20410.9%20206.1%20410.9C92.6998%20410.9%200.299805%20319.2%200.299805%20205.8C0.299805%2092.3996%2091.9998%200.0996094%20206.1%200.0996094C212.8%200.0996094%20220.3%200.799609%20227.1%201.49961ZM238%20396.7C343.2%20379%20414.5%20279.2%20396.9%20173.3C381.9%2085.6996%20310.6%2021.7996%20226.4%2012.9996C209.4%2010.9996%20191.8%2011.5996%20174.1%2014.3996C153.1%2017.7996%20133.4%2024.4996%20115.7%2033.9996C208.1%2065.9996%20258.3%20114.2%20261.7%20163.1C263.8%20193.6%20249.5%20215.4%20230.5%20233L362.2%20224.2C365.6%20224.2%20367%20228.3%20362.9%20229.6L48.4998%20319.2C80.3998%20363.4%20130%20392.6%20185%20398C202.7%20400.1%20220.3%20400.1%20238%20396.7ZM151.7%20209.9C168.7%20145.4%20149%2077.4996%20102.2%2041.4996C38.2998%2082.2996%200.999804%20158.3%2014.5998%20237.8C18.5998%20264.2%2028.0998%20288%2041.6998%20309.1C91.9998%20295.5%20136.1%20269%20151.7%20209.9Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M238%20396.7C343.2%20379%20414.5%20279.2%20396.9%20173.3C381.9%2085.6999%20310.6%2021.7999%20226.4%2012.9999C209.4%2010.9999%20191.8%2011.5999%20174.1%2014.3999C153.1%2017.7999%20133.4%2024.4999%20115.7%2033.9999C208.1%2065.9999%20258.3%20114.2%20261.7%20163.1C263.8%20193.6%20249.5%20215.4%20230.5%20233L362.2%20224.2C365.6%20224.2%20367%20228.3%20362.9%20229.6L48.4997%20319.2C80.3997%20363.4%20130%20392.6%20185%20398C202.7%20400.1%20220.3%20400.1%20238%20396.7ZM151.7%20209.9C168.7%20145.4%20149%2077.4999%20102.2%2041.4999C38.2997%2082.2999%200.999723%20158.3%2014.5997%20237.8C18.5997%20264.2%2028.0997%20288%2041.6997%20309.1C91.9997%20295.5%20136.1%20269%20151.7%20209.9Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_34018%22%3E%20%3Crect%20width%3D%221528%22%20height%3D%22411%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221528%22%20height%3D%22411%22%20viewBox%3D%220%200%201528%20411%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_34018)%22%3E%20%3Cpath%20d%3D%22M1474.5%20181.398V113.498H1406.6V181.398H1369.3V20.498H1406.6V84.298H1474.5V20.498H1511.9V181.398H1474.5Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M673.199%2020.498V120.998C673.199%20131.798%20674.599%20141.998%20677.999%20149.498C681.399%20156.998%20686.099%20163.698%20691.599%20168.498C697.699%20173.298%20705.199%20177.298%20713.299%20179.398C721.399%20181.398%20730.999%20182.798%20741.799%20182.798C751.999%20182.798%20761.499%20181.398%20769.699%20179.398C777.799%20177.298%20784.599%20173.298%20789.999%20168.498C795.499%20163.698%20800.199%20156.998%20802.899%20149.498C806.299%20141.298%20807.699%20131.798%20807.699%20120.998V20.498H773.099V120.298C773.099%20130.498%20770.299%20138.598%20765.599%20144.698C760.799%20150.798%20752.699%20154.198%20741.799%20154.198C730.999%20154.198%20722.799%20150.798%20718.099%20144.698C713.299%20138.598%20710.599%20130.498%20710.599%20120.298V20.498H673.199Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M565.899%20181.398V50.298H522.499V20.498H647.399V34.698C647.399%2043.598%20640.599%2050.298%20631.799%2050.298H603.299V181.398H565.899Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1163.5%2020.498H1200.9V181.398H1163.5V20.498Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1039.9%20105.998L1041.3%20107.398L1088.8%20168.498C1094.9%20175.998%201103.8%20180.698%201113.9%20180.698H1143.8L1075.9%2093.798L1075.2%2092.398L1075.9%2091.098L1131.6%2020.498H1092.9L1041.3%2089.698L1039.9%2091.098V88.398V20.498H1002.6V181.398H1039.9V108.698V105.998Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M954.399%20181.398C943.499%20181.398%20932.599%20175.298%20927.199%20166.498L897.999%20118.898H879.699V182.098H842.299V20.498H908.899C925.799%2020.498%20939.399%2025.198%20948.299%2033.398C957.799%2042.198%20962.499%2054.398%20962.499%2068.698C962.499%2076.1647%20960.466%2083.6314%20956.399%2091.098C952.332%2098.5647%20945.532%20104.665%20935.999%20109.398L933.999%20110.098L979.499%20180.698H954.399V181.398ZM901.399%2093.798C908.899%2093.798%20914.999%2091.798%20919.099%2087.698C923.165%2083.6314%20925.199%2078.198%20925.199%2071.398C925.199%2064.598%20923.099%2059.198%20919.699%2055.098C915.699%2050.998%20910.199%2048.998%20902.099%2048.998H880.299V93.798H901.399Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1231.4%20174.599V144.099C1243%20149.499%201258.6%20154.899%201274.2%20154.899C1292.5%20154.899%201301.4%20148.799%201301.4%20136.599C1301.4%20122.299%201289.1%20120.999%201264%20110.099C1247%20102.599%201231.4%2091.0988%201231.4%2063.8988C1231.4%2032.6988%201255.2%2017.7988%201288.5%2017.7988C1306.1%2017.7988%201321%2021.7988%201329.2%2025.1988V55.0988C1321%2050.9988%201306.1%2046.2988%201290.5%2046.2988C1274.2%2046.2988%201266.7%2052.3988%201266.7%2062.5988C1266.7%2073.3988%201276.2%2076.7988%201292.5%2082.8988C1313.6%2093.7988%201338.7%2098.5988%201338.7%20134.499C1338.7%20165.799%201313.6%20182.799%201280.3%20182.799C1260.6%20183.399%201244.3%20179.999%201231.4%20174.599Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1289.8%20391.199V230.299H1390.3V244.599C1390.3%20253.399%201383.5%20260.199%201374.7%20260.199H1326.5V294.799H1380.8V321.999H1326.5V361.299H1390.3V391.199H1289.8Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M921.8%20391.199V230.299H940.1C951%20230.299%20959.1%20239.099%20959.1%20249.299V361.999H1018.2V391.199H921.8Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M691.6%20391.199V230.299H728.9V391.199H691.6Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M874.199%20391.199C863.399%20391.199%20852.499%20385.099%20847.099%20376.299L817.899%20328.799H799.499V391.899H762.199V230.299H828.699C845.699%20230.299%20859.299%20234.999%20868.099%20243.199C877.599%20251.999%20882.399%20264.199%20882.399%20278.499C882.399%20285.999%20880.299%20293.399%20876.299%20301.599C872.233%20309.065%20865.433%20315.165%20855.899%20319.899L853.899%20320.599L899.399%20391.199H874.199ZM800.099%20303.599H821.899C829.999%20303.599%20835.499%20301.599%20839.499%20297.499C843.566%20293.432%20845.599%20287.999%20845.599%20281.199C845.599%20274.399%20843.599%20268.999%20840.199%20264.899C836.099%20260.799%20830.699%20258.799%20822.599%20258.799H800.799L800.099%20303.599Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M669.199%20391.199H629.099L619.599%20361.299H554.399L548.299%20380.399C546.299%20387.199%20540.099%20391.199%20533.399%20391.199H506.899L567.299%20230.299H610.099L669.199%20391.199ZM610.099%20332.799L595.799%20292.099C593.099%20282.499%20589.699%20273.699%20587.699%20266.199H586.999C584.999%20272.999%20581.599%20283.199%20578.199%20292.099L563.899%20332.799H610.099Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1420.2%20384.4V353.9C1431.7%20359.3%201447.3%20364.7%201463%20364.7C1481.3%20364.7%201490.1%20358.6%201490.1%20346.4C1490.1%20332.1%201477.9%20330.8%201452.8%20319.9C1435.8%20312.5%201420.2%20300.9%201420.2%20273.8C1420.2%20242.5%201444%20227.6%201477.2%20227.6C1494.9%20227.6%201509.8%20231.7%201518%20235V264.9C1509.8%20260.8%201494.9%20256.1%201479.3%20256.1C1463%20256.1%201455.5%20262.2%201455.5%20272.4C1455.5%20283.3%201465%20286.7%201481.3%20292.8C1502.4%20303.6%201527.5%20308.4%201527.5%20344.4C1527.5%20375.6%201502.4%20392.6%201469.1%20392.6C1449.4%20393.3%201433.1%20389.9%201420.2%20384.4Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1113.9%20230.299H1137C1147.9%20230.299%201158.1%20235.699%201164.2%20245.199L1209%20317.199C1213.8%20325.399%201219.9%20335.499%201223.3%20342.999H1223.9C1223.3%20335.499%201223.3%20325.999%201223.3%20318.599V230.299H1255.9V391.199H1215.1L1160.8%20304.299C1156%20296.199%201150.6%20286.699%201146.5%20279.199H1145.9C1145.9%20285.999%201146.5%20294.099%201146.5%20302.299V391.199H1113.9V230.299Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1042.6%20230.299H1080V391.199H1042.6V230.299Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M227.1%201.49961C330.3%2012.2996%20411.1%2099.1996%20411.1%20205.8C411.1%20319.2%20319.5%20410.9%20206.1%20410.9C92.6998%20410.9%200.299805%20319.2%200.299805%20205.8C0.299805%2092.3996%2091.9998%200.0996094%20206.1%200.0996094C212.8%200.0996094%20220.3%200.799609%20227.1%201.49961ZM238%20396.7C343.2%20379%20414.5%20279.2%20396.9%20173.3C381.9%2085.6996%20310.6%2021.7996%20226.4%2012.9996C209.4%2010.9996%20191.8%2011.5996%20174.1%2014.3996C153.1%2017.7996%20133.4%2024.4996%20115.7%2033.9996C208.1%2065.9996%20258.3%20114.2%20261.7%20163.1C263.8%20193.6%20249.5%20215.4%20230.5%20233L362.2%20224.2C365.6%20224.2%20367%20228.3%20362.9%20229.6L48.4998%20319.2C80.3998%20363.4%20130%20392.6%20185%20398C202.7%20400.1%20220.3%20400.1%20238%20396.7ZM151.7%20209.9C168.7%20145.4%20149%2077.4996%20102.2%2041.4996C38.2998%2082.2996%200.999804%20158.3%2014.5998%20237.8C18.5998%20264.2%2028.0998%20288%2041.6998%20309.1C91.9998%20295.5%20136.1%20269%20151.7%20209.9Z%22%20fill%3D%22%2360989D%22%2F%3E%20%3Cpath%20d%3D%22M238%20396.7C343.2%20379%20414.5%20279.2%20396.9%20173.3C381.9%2085.6999%20310.6%2021.7999%20226.4%2012.9999C209.4%2010.9999%20191.8%2011.5999%20174.1%2014.3999C153.1%2017.7999%20133.4%2024.4999%20115.7%2033.9999C208.1%2065.9999%20258.3%20114.2%20261.7%20163.1C263.8%20193.6%20249.5%20215.4%20230.5%20233L362.2%20224.2C365.6%20224.2%20367%20228.3%20362.9%20229.6L48.4997%20319.2C80.3997%20363.4%20130%20392.6%20185%20398C202.7%20400.1%20220.3%20400.1%20238%20396.7ZM151.7%20209.9C168.7%20145.4%20149%2077.4999%20102.2%2041.4999C38.2997%2082.2999%200.999723%20158.3%2014.5997%20237.8C18.5997%20264.2%2028.0997%20288%2041.6997%20309.1C91.9997%20295.5%20136.1%20269%20151.7%20209.9Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_34018%22%3E%20%3Crect%20width%3D%221528%22%20height%3D%22411%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--ubs { aspect-ratio:2.7599; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221540%22%20height%3D%22558%22%20viewBox%3D%220%200%201540%20558%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_25858)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M900.5%20335.8C900.5%20451.3%20837.5%20465.1%20774.5%20465.1C666.1%20465.1%20643.1%20409.7%20643.1%20330.4V106.8H603.1V85.1996H754.5V106.8H711.5V323.9C711.5%20400.5%20731.4%20438.6%20786.4%20438.6C842.5%20438.6%20869.8%20410.9%20869.8%20331.2V106.8H829.4V85.1996H937V106.8H900.5V335.8ZM1006.4%20439.3V106.7H964.3V85.1996H1132.2C1203.6%2085.1996%201239%20125.6%201239%20172.9C1239%20223.4%201193.3%20251.8%201152.5%20260.3C1231.7%20267.6%201253.2%20318.4%201253.2%20355.8C1253.2%20432%201188.3%20460.9%201124.5%20460.9H961.6V439.3H1006.4ZM1170.5%20177.2C1170.5%20142.2%201152.5%20106.7%201112.9%20106.7H1069.3V251.1H1108.3C1150.2%20251.1%201170.5%20215.7%201170.5%20177.2ZM1184%20355.8C1184%20305.7%201162.5%20272.2%201112.1%20272.2H1069.3V439.3H1104.1C1157.5%20439.3%201184%20407.7%201184%20355.8ZM1420.7%20101.7C1381.1%20101.7%201355.7%20125.2%201355.7%20166C1355.7%20203%201395.7%20220.7%201434.5%20233.8C1457.5%20241.9%201486.7%20252.6%201506.7%20271.9C1528.6%20292.7%201540.5%20320.4%201539.8%20355.4C1538.2%20420.8%201492.5%20465.1%201411.8%20465.5C1381.5%20465.5%201334.2%20458.6%201305.8%20442L1302.7%20343.5H1326.5C1328.4%20409.7%201359.6%20444.3%201414.1%20444.3C1457.9%20444.3%201482.1%20415.1%201482.1%20370.4C1482.1%20331.9%201450.2%20315.4%201401.8%20299.2C1386.1%20293.8%201355%20282.3%201333.1%20260.7C1313.5%20241.1%201304.2%20216.4%201304.2%20190.3C1304.2%20113.7%201358.8%2080.5996%201426.4%2080.5996C1453.3%2080.5996%201493.7%2090.1996%201517.1%20103.7L1519.4%20189.1H1495.6C1490.6%20128.3%201464.1%20101.7%201420.7%20101.7Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M414%20161.199L404%20169.599L414.6%20204.199L382.9%20186.899L372.3%20195.199L407.4%20214.199L370.1%20244.299L360.1%20230.899L373.4%20220.299L363.4%20208.599L350.1%20219.199L340.1%20206.399L353.4%20195.799L343.4%20182.999L275%20239.799L340.1%20292.199L351.7%20277.699C360.1%20278.299%20366.2%20284.399%20369.5%20292.199L357.9%20306.699L365.1%20312.299C381.2%20297.799%20402.4%20288.299%20424.1%20288.299C469.7%20288.299%20505.3%20325.699%20505.3%20371.399C505.3%20386.399%20501.4%20402.599%20493%20415.899L505.3%20425.399C504.7%20434.299%20496.4%20443.799%20488%20445.999L476.3%20436.599C460.2%20452.199%20439.1%20460.499%20416.8%20460.499C371.2%20460.499%20335.6%20424.299%20335.6%20378.099C335.6%20362.999%20340.1%20347.399%20346.7%20334.599L340.1%20328.399L328.4%20343.999C320%20342.899%20312.8%20337.299%20310.6%20328.399L322.3%20314.499L267.2%20268.799V341.199L285.5%20341.799C287.8%20344.599%20289.4%20348.499%20289.4%20352.999C289.4%20356.899%20287.8%20361.299%20286.1%20364.699H267.2V373.599C307.2%20380.299%20340.6%20414.299%20340.6%20455.499C340.6%20498.399%20307.8%20532.399%20267.2%20539.099V553.599C263.3%20555.799%20258.3%20557.499%20253.8%20557.499C248.8%20557.499%20243.3%20555.799%20238.8%20553.599V539.099C198.2%20532.399%20166.5%20498.399%20166.5%20455.499C166.5%20414.299%20198.2%20380.299%20238.8%20374.099V364.699H219.9C217.7%20361.299%20216.6%20356.899%20216.6%20352.999C216.6%20348.533%20217.7%20344.599%20219.9%20341.199H238.8V268.799L183.2%20314.499L195.4%20328.399C192.6%20337.299%20185.4%20342.899%20177.1%20343.999L165.4%20328.399L158.1%20334.599C165.9%20347.399%20169.8%20362.999%20169.8%20378.099C169.8%20424.299%20134.2%20460.499%2088.6002%20460.499C66.9002%20460.499%2045.2002%20452.199%2029.6002%20436.599L17.4002%20445.999C9.60019%20443.799%201.3002%20434.299%200.200195%20425.399L11.8002%20415.899C4.6002%20402.599%200.200195%20386.399%200.200195%20371.399C0.200195%20325.699%2035.8002%20288.299%2081.4002%20288.299C103.6%20288.299%20124.8%20297.799%20140.9%20312.299L147.6%20307.299L135.9%20292.199C138.7%20284.399%20145.9%20278.799%20154.3%20277.699L165.9%20292.199L231%20239.799L162.6%20182.999L152.6%20195.799L165.9%20206.399L155.9%20219.199L142.6%20208.599L132.6%20220.299L145.4%20230.899L135.3%20244.299L98.6002%20214.199L133.1%20195.199L123.1%20186.899L91.4002%20204.199L102%20169.599L92.0002%20161.199L80.3002%20199.099L43.0002%20168.999L53.0002%20156.799L65.8002%20167.399L76.4002%20155.099L63.0002%20143.399L73.0002%20131.699L86.4002%20141.699L95.8002%20129.999L66.9002%20107.199C69.7002%2097.6992%2075.8002%2089.8992%2084.7002%2084.2992L238.8%20210.299V126.099H223.2V142.299H207.7V126.099H191.5V142.299H175.4V94.8992L212.1%20110.499V97.0992L178.2%2083.1992L212.1%2069.7992V56.9992L175.4%2071.4992V23.5992H191.5V40.7992H207.7V23.5992H223.2V40.7992H238.8V2.99922C243.3%201.29922%20248.3%200.199219%20253.3%200.199219C257.7%200.199219%20262.7%201.29922%20267.2%202.99922V210.299L421.3%2084.2992C429.6%2089.8992%20435.7%2097.6992%20439.1%20107.199L409.6%20129.999L419.6%20141.699L433%20131.699L443%20143.399L429.6%20155.099L439.6%20167.399L453%20156.799L463%20168.999L425.7%20199.099L414%20161.199ZM99.2002%20389.199C99.2002%20402.599%20109.2%20410.899%20120.9%20411.999L101.4%20427.099C88.0002%20422.099%2075.8002%20405.899%2075.8002%20391.999C75.8002%20387.499%2076.9002%20384.699%2078.0002%20381.399C76.4002%20381.399%2075.2002%20381.999%2074.1002%20381.999C56.3002%20381.999%2041.3002%20365.199%2038.0002%20347.999L58.0002%20332.299C57.4002%20334.599%2057.4002%20336.199%2057.4002%20337.899C57.4002%20349.099%2068.0002%20359.099%2079.1002%20359.099C90.8002%20359.099%20101.9%20349.099%20101.9%20337.299C101.9%20322.899%2090.8002%20313.399%2076.9002%20313.399C49.7002%20313.399%2023.0002%20339.599%2023.0002%20374.199C23.0002%20384.199%2025.2002%20393.699%2029.6002%20401.999L41.9002%20392.499C50.2002%20396.399%2056.9002%20404.799%2059.1002%20414.299L46.9002%20423.699C58.6002%20433.799%2073.0002%20438.199%2088.0002%20438.199C119.2%20438.199%20144.2%20413.199%20144.2%20390.899C144.2%20378.099%20135.3%20366.899%20122%20366.899C109.7%20366.899%2099.2002%20376.399%2099.2002%20389.199ZM264.4%20437.099C264.4%20449.399%20274.4%20459.399%20286.1%20459.399C294.4%20459.399%20297.8%20456.099%20303.9%20451.099V476.099C297.8%20479.499%20291.6%20481.199%20285%20481.199C271.6%20481.199%20260.5%20477.199%20253.3%20465.499C245.5%20477.199%20234.3%20481.199%20221%20481.199C214.9%20481.199%20208.2%20479.499%20202.1%20476.099V451.099C207.6%20456.599%20212.1%20459.399%20219.9%20459.399C232.1%20459.399%20241.6%20449.399%20241.6%20437.099C241.6%20425.399%20233.8%20414.799%20221%20414.799C198.2%20414.799%20188.7%20436.599%20188.7%20456.599C188.7%20486.199%20210.4%20511.199%20238.8%20516.299V501.199C243.2%20498.999%20248.2%20498.399%20252.7%20498.399C257.7%20498.399%20262.7%20498.999%20267.2%20501.199V516.299C293.3%20512.399%20317.2%20484.499%20317.2%20456.599C317.2%20435.999%20308.9%20414.799%20285%20414.799C272.7%20414.799%20264.4%20425.399%20264.4%20437.099ZM402.9%20337.299C402.9%20348.499%20414.6%20359.099%20426.3%20359.099C437.4%20359.099%20448%20349.099%20448%20337.899C448%20336.199%20447.4%20334.599%20447.4%20332.299L466.9%20347.999C463.5%20366.899%20446.8%20383.599%20427.4%20381.399C428.5%20384.699%20429%20387.499%20429%20391.999C429%20405.899%20416.8%20422.099%20403.5%20427.099L384%20411.999C396.2%20410.899%20406.2%20402.599%20406.2%20389.199C406.2%20376.399%20395.1%20366.899%20382.9%20366.899C370.1%20366.899%20360.6%20378.099%20360.6%20391.399C360.6%20407.599%20380.1%20438.199%20417.4%20438.199C432.4%20438.199%20446.8%20433.799%20458%20423.699L445.7%20414.299C448.5%20404.799%20454.1%20396.399%20463%20392.499L475.2%20401.999C479.7%20393.699%20482.4%20384.199%20482.4%20374.199C482.4%20347.399%20461.9%20313.399%20429%20313.399C415.1%20313.399%20402.9%20322.899%20402.9%20337.299Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_25858%22%3E%20%3Crect%20width%3D%221540%22%20height%3D%22558%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221540%22%20height%3D%22558%22%20viewBox%3D%220%200%201540%20558%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_25858)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M900.5%20335.8C900.5%20451.3%20837.5%20465.1%20774.5%20465.1C666.1%20465.1%20643.1%20409.7%20643.1%20330.4V106.8H603.1V85.1996H754.5V106.8H711.5V323.9C711.5%20400.5%20731.4%20438.6%20786.4%20438.6C842.5%20438.6%20869.8%20410.9%20869.8%20331.2V106.8H829.4V85.1996H937V106.8H900.5V335.8ZM1006.4%20439.3V106.7H964.3V85.1996H1132.2C1203.6%2085.1996%201239%20125.6%201239%20172.9C1239%20223.4%201193.3%20251.8%201152.5%20260.3C1231.7%20267.6%201253.2%20318.4%201253.2%20355.8C1253.2%20432%201188.3%20460.9%201124.5%20460.9H961.6V439.3H1006.4ZM1170.5%20177.2C1170.5%20142.2%201152.5%20106.7%201112.9%20106.7H1069.3V251.1H1108.3C1150.2%20251.1%201170.5%20215.7%201170.5%20177.2ZM1184%20355.8C1184%20305.7%201162.5%20272.2%201112.1%20272.2H1069.3V439.3H1104.1C1157.5%20439.3%201184%20407.7%201184%20355.8ZM1420.7%20101.7C1381.1%20101.7%201355.7%20125.2%201355.7%20166C1355.7%20203%201395.7%20220.7%201434.5%20233.8C1457.5%20241.9%201486.7%20252.6%201506.7%20271.9C1528.6%20292.7%201540.5%20320.4%201539.8%20355.4C1538.2%20420.8%201492.5%20465.1%201411.8%20465.5C1381.5%20465.5%201334.2%20458.6%201305.8%20442L1302.7%20343.5H1326.5C1328.4%20409.7%201359.6%20444.3%201414.1%20444.3C1457.9%20444.3%201482.1%20415.1%201482.1%20370.4C1482.1%20331.9%201450.2%20315.4%201401.8%20299.2C1386.1%20293.8%201355%20282.3%201333.1%20260.7C1313.5%20241.1%201304.2%20216.4%201304.2%20190.3C1304.2%20113.7%201358.8%2080.5996%201426.4%2080.5996C1453.3%2080.5996%201493.7%2090.1996%201517.1%20103.7L1519.4%20189.1H1495.6C1490.6%20128.3%201464.1%20101.7%201420.7%20101.7Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M414%20161.199L404%20169.599L414.6%20204.199L382.9%20186.899L372.3%20195.199L407.4%20214.199L370.1%20244.299L360.1%20230.899L373.4%20220.299L363.4%20208.599L350.1%20219.199L340.1%20206.399L353.4%20195.799L343.4%20182.999L275%20239.799L340.1%20292.199L351.7%20277.699C360.1%20278.299%20366.2%20284.399%20369.5%20292.199L357.9%20306.699L365.1%20312.299C381.2%20297.799%20402.4%20288.299%20424.1%20288.299C469.7%20288.299%20505.3%20325.699%20505.3%20371.399C505.3%20386.399%20501.4%20402.599%20493%20415.899L505.3%20425.399C504.7%20434.299%20496.4%20443.799%20488%20445.999L476.3%20436.599C460.2%20452.199%20439.1%20460.499%20416.8%20460.499C371.2%20460.499%20335.6%20424.299%20335.6%20378.099C335.6%20362.999%20340.1%20347.399%20346.7%20334.599L340.1%20328.399L328.4%20343.999C320%20342.899%20312.8%20337.299%20310.6%20328.399L322.3%20314.499L267.2%20268.799V341.199L285.5%20341.799C287.8%20344.599%20289.4%20348.499%20289.4%20352.999C289.4%20356.899%20287.8%20361.299%20286.1%20364.699H267.2V373.599C307.2%20380.299%20340.6%20414.299%20340.6%20455.499C340.6%20498.399%20307.8%20532.399%20267.2%20539.099V553.599C263.3%20555.799%20258.3%20557.499%20253.8%20557.499C248.8%20557.499%20243.3%20555.799%20238.8%20553.599V539.099C198.2%20532.399%20166.5%20498.399%20166.5%20455.499C166.5%20414.299%20198.2%20380.299%20238.8%20374.099V364.699H219.9C217.7%20361.299%20216.6%20356.899%20216.6%20352.999C216.6%20348.533%20217.7%20344.599%20219.9%20341.199H238.8V268.799L183.2%20314.499L195.4%20328.399C192.6%20337.299%20185.4%20342.899%20177.1%20343.999L165.4%20328.399L158.1%20334.599C165.9%20347.399%20169.8%20362.999%20169.8%20378.099C169.8%20424.299%20134.2%20460.499%2088.6002%20460.499C66.9002%20460.499%2045.2002%20452.199%2029.6002%20436.599L17.4002%20445.999C9.60019%20443.799%201.3002%20434.299%200.200195%20425.399L11.8002%20415.899C4.6002%20402.599%200.200195%20386.399%200.200195%20371.399C0.200195%20325.699%2035.8002%20288.299%2081.4002%20288.299C103.6%20288.299%20124.8%20297.799%20140.9%20312.299L147.6%20307.299L135.9%20292.199C138.7%20284.399%20145.9%20278.799%20154.3%20277.699L165.9%20292.199L231%20239.799L162.6%20182.999L152.6%20195.799L165.9%20206.399L155.9%20219.199L142.6%20208.599L132.6%20220.299L145.4%20230.899L135.3%20244.299L98.6002%20214.199L133.1%20195.199L123.1%20186.899L91.4002%20204.199L102%20169.599L92.0002%20161.199L80.3002%20199.099L43.0002%20168.999L53.0002%20156.799L65.8002%20167.399L76.4002%20155.099L63.0002%20143.399L73.0002%20131.699L86.4002%20141.699L95.8002%20129.999L66.9002%20107.199C69.7002%2097.6992%2075.8002%2089.8992%2084.7002%2084.2992L238.8%20210.299V126.099H223.2V142.299H207.7V126.099H191.5V142.299H175.4V94.8992L212.1%20110.499V97.0992L178.2%2083.1992L212.1%2069.7992V56.9992L175.4%2071.4992V23.5992H191.5V40.7992H207.7V23.5992H223.2V40.7992H238.8V2.99922C243.3%201.29922%20248.3%200.199219%20253.3%200.199219C257.7%200.199219%20262.7%201.29922%20267.2%202.99922V210.299L421.3%2084.2992C429.6%2089.8992%20435.7%2097.6992%20439.1%20107.199L409.6%20129.999L419.6%20141.699L433%20131.699L443%20143.399L429.6%20155.099L439.6%20167.399L453%20156.799L463%20168.999L425.7%20199.099L414%20161.199ZM99.2002%20389.199C99.2002%20402.599%20109.2%20410.899%20120.9%20411.999L101.4%20427.099C88.0002%20422.099%2075.8002%20405.899%2075.8002%20391.999C75.8002%20387.499%2076.9002%20384.699%2078.0002%20381.399C76.4002%20381.399%2075.2002%20381.999%2074.1002%20381.999C56.3002%20381.999%2041.3002%20365.199%2038.0002%20347.999L58.0002%20332.299C57.4002%20334.599%2057.4002%20336.199%2057.4002%20337.899C57.4002%20349.099%2068.0002%20359.099%2079.1002%20359.099C90.8002%20359.099%20101.9%20349.099%20101.9%20337.299C101.9%20322.899%2090.8002%20313.399%2076.9002%20313.399C49.7002%20313.399%2023.0002%20339.599%2023.0002%20374.199C23.0002%20384.199%2025.2002%20393.699%2029.6002%20401.999L41.9002%20392.499C50.2002%20396.399%2056.9002%20404.799%2059.1002%20414.299L46.9002%20423.699C58.6002%20433.799%2073.0002%20438.199%2088.0002%20438.199C119.2%20438.199%20144.2%20413.199%20144.2%20390.899C144.2%20378.099%20135.3%20366.899%20122%20366.899C109.7%20366.899%2099.2002%20376.399%2099.2002%20389.199ZM264.4%20437.099C264.4%20449.399%20274.4%20459.399%20286.1%20459.399C294.4%20459.399%20297.8%20456.099%20303.9%20451.099V476.099C297.8%20479.499%20291.6%20481.199%20285%20481.199C271.6%20481.199%20260.5%20477.199%20253.3%20465.499C245.5%20477.199%20234.3%20481.199%20221%20481.199C214.9%20481.199%20208.2%20479.499%20202.1%20476.099V451.099C207.6%20456.599%20212.1%20459.399%20219.9%20459.399C232.1%20459.399%20241.6%20449.399%20241.6%20437.099C241.6%20425.399%20233.8%20414.799%20221%20414.799C198.2%20414.799%20188.7%20436.599%20188.7%20456.599C188.7%20486.199%20210.4%20511.199%20238.8%20516.299V501.199C243.2%20498.999%20248.2%20498.399%20252.7%20498.399C257.7%20498.399%20262.7%20498.999%20267.2%20501.199V516.299C293.3%20512.399%20317.2%20484.499%20317.2%20456.599C317.2%20435.999%20308.9%20414.799%20285%20414.799C272.7%20414.799%20264.4%20425.399%20264.4%20437.099ZM402.9%20337.299C402.9%20348.499%20414.6%20359.099%20426.3%20359.099C437.4%20359.099%20448%20349.099%20448%20337.899C448%20336.199%20447.4%20334.599%20447.4%20332.299L466.9%20347.999C463.5%20366.899%20446.8%20383.599%20427.4%20381.399C428.5%20384.699%20429%20387.499%20429%20391.999C429%20405.899%20416.8%20422.099%20403.5%20427.099L384%20411.999C396.2%20410.899%20406.2%20402.599%20406.2%20389.199C406.2%20376.399%20395.1%20366.899%20382.9%20366.899C370.1%20366.899%20360.6%20378.099%20360.6%20391.399C360.6%20407.599%20380.1%20438.199%20417.4%20438.199C432.4%20438.199%20446.8%20433.799%20458%20423.699L445.7%20414.299C448.5%20404.799%20454.1%20396.399%20463%20392.499L475.2%20401.999C479.7%20393.699%20482.4%20384.199%20482.4%20374.199C482.4%20347.399%20461.9%20313.399%20429%20313.399C415.1%20313.399%20402.9%20322.899%20402.9%20337.299Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_25858%22%3E%20%3Crect%20width%3D%221540%22%20height%3D%22558%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--stgallen { aspect-ratio:4.1240; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%222128%22%20height%3D%22516%22%20viewBox%3D%220%200%202128%20516%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_34042)%22%3E%20%3Cpath%20d%3D%22M395.697%20222.041C393.619%20223.121%20391.807%20221.673%20389.629%20221.933L384.068%20223.269L383.561%20223.121C380.783%20225.541%20377.034%20224.473%20373.888%20225.833C372.918%20227.037%20371.57%20225.965%20370.617%20227.037C368.554%20227.585%20366.491%20227.585%20364.438%20228.521C360.452%20227.317%20356.717%20229.333%20352.828%20229.857L349.078%20232.153C346.889%20232.309%20344.808%20232.981%20342.871%20233.381C340.836%20232.569%20338.798%20233.513%20336.832%20234.185C332.479%20235.521%20329.826%20230.685%20325.821%20231.085C325.077%20230.141%20323.773%20230.537%20322.928%20230.141C322.536%20230.141%20322.044%20230.821%20321.946%20230.141C320.836%20230.141%20319.783%20230.141%20318.69%20229.749C317.708%20229.077%20316.975%20227.717%20315.796%20227.997C314.786%20228.129%20315.052%20226.489%20314.081%20227.037C312.845%20226.121%20311.159%20226.489%20309.926%20225.833L303.776%20226.249L303.549%20226.029C303.452%20225.873%20302.298%20225.965%20302.298%20225.965C300.515%20226.121%20298.689%20226.777%20296.863%20226.381C293.97%20227.037%20291.443%20228.521%20288.398%20229.077C286.223%20230.141%20284.509%20232.157%20282.122%20232.701C280.156%20232.153%20277.981%20233.117%20276.043%20233.513C274.106%20234.185%20271.928%20234.449%20269.879%20234.449C268.671%20234.449%20267.801%20235.385%20266.733%20235.385C263.7%20237.425%20259.573%20235.821%20257.298%20239.041C255.583%20239.853%20254.235%20241.057%20252.567%20241.993C251.485%20243.065%20249.914%20241.689%20248.929%20242.893C247.484%20242.893%20246.514%20243.525%20245.054%20243.261C243.649%20243.549%20243.243%20244.025%20242.387%20243.745C241.377%20243.369%20241.348%20244.205%20240.083%20243.901C238.286%20242.517%20236.097%20243.613%20234.749%20244.817C233.681%20244.685%20234.285%20246.177%20233.318%20246.309C230.665%20247.661%20229.695%20250.901%20228.235%20253.589C226.55%20254.661%20227.729%20257.065%20226.887%20258.557L227.139%20263.285C224.95%20267.201%20229.806%20268.949%20229.188%20272.973C229.918%20273.785%20229.555%20275.293%20230.284%20275.793L231.492%20279.029C232.096%20280.653%20231.604%20282.529%20232.603%20284.169C233.178%20285.905%20234.907%20287.121%20235.27%20289.005L239.749%20290.497L241.42%20292.905C243.609%20293.341%20245.773%20293.997%20248.078%20294.149C248.455%20294.413%20248.71%20294.961%20249.271%20294.805C251.097%20295.485%20252.948%20296.165%20254.746%20296.665C255.587%20297.101%20256.431%20297.625%20257.301%20297.369C260.673%20298.721%20264.322%20299.253%20267.708%20300.613L268.074%20301.153C269.659%20301.677%20270.853%20302.621%20272.427%20303.037C273.538%20304.373%20275.335%20304.241%20276.414%20305.445C277.762%20305.445%20278.588%20306.821%20279.926%20306.953C282.129%20306.953%20283.085%20309.493%20285.274%20309.493C286.849%20310.321%20288.154%20311.377%20289.98%20311.813C290.709%20313.017%20292.154%20312.601%20293.139%20313.697C294.965%20314.633%20295.947%20316.253%20297.859%20317.065C298.477%20318.137%20299.434%20318.949%20300.627%20319.337C301.231%20320.273%20302.579%20320.821%20302.945%20322.157L303.057%20321.901L303.787%20322.449C305.023%20323.229%20306.328%20323.521%20307.298%20324.325C310.207%20325.113%20313.111%20326.209%20316.033%20326.865L316.271%20327.301C317.478%20327.433%20318.909%20327.301%20319.653%20328.357C326.814%20331.465%20334.283%20335.113%20342.414%20336.449C346.767%20337.521%20351.85%20337.933%20356.106%20339.685C359.841%20341.169%20363.353%20342.921%20367.228%20344.277C369.082%20344.557%20370.765%20345.589%20372.691%20345.901C373.281%20347.229%20375.107%20346.417%20376.329%20346.681C376.556%20346.681%20376.807%20347.097%20376.667%20347.509C379.223%20348.821%20382.131%20349.657%20384.683%20351.149C385.398%20350.729%20385.765%20352.085%20386.495%20351.405C387.21%20351.929%20388.209%20352.889%20389.528%20352.497C389.528%20352.605%20389.866%20352.889%20390.147%20352.605C390.707%20353.833%20392.393%20353.697%20393.375%20354.377L398.486%20355.993C400.115%20356.541%20401.714%20357.001%20403.371%20357.393V219.793C400.668%20220.145%20398.001%20220.145%20395.697%20222.041ZM151.656%20131.417C154.086%20131.549%20155.154%20131.853%20157.695%20131.441C158.806%20132.513%20160.251%20133.213%20161.71%20133.629C161.947%20133.997%20161.71%20133.933%20162.537%20133.669C163.252%20134.217%20164.068%20134.261%20164.909%20134.677C166.006%20135.357%20166.088%20136.949%20167.127%20137.849C167.843%20138.397%20167.717%20138.481%20168.475%20139.405C169.457%20139.601%20169.094%20140.609%20169.094%20140.609C169.151%20140.781%20169.741%20144.001%20168.644%20145.093C166.958%20147.789%20166.62%20148.789%20165.161%20151.501C163.842%20152.969%20163.083%20155.253%20162.494%20157.393C162.72%20157.517%20162.72%20157.941%20162.72%20158.221C161.401%20158.745%20161.75%20160.629%20160.657%20161.441C160.531%20163.317%20159.942%20164.941%20160.053%20166.973C158.957%20167.909%20159.575%20169.381%20158.705%20170.317C157.889%20173.161%20157.889%20177.061%20159.323%20179.245C160.179%20181.105%20160.053%20183.113%20161.247%20185.017C161.753%20186.769%20163.31%20187.689%20164.295%20189.041C164.406%20190.533%20167.063%20193.089%20167.063%20193.089L169.449%20194.317L169.802%20193.901C170.42%20194.425%20171.908%20194.993%20172.275%20196.065C173.946%20197.137%20176.333%20197.837%20177.526%20199.481C178.508%20200.417%20178.508%20202.169%20178.792%20203.661C180.463%20204.333%20180.028%20206.113%20181.15%20207.577C181.613%20210.005%20176.178%20214.249%20174.381%20215.733C172.052%20217.069%20170.24%20218.953%20168.062%20220.725L167.458%20222.477C164.665%20223.133%20162.868%20225.977%20160.564%20227.461C159.467%20228.945%20157.641%20228.797%20156.322%20229.869C155.592%20229.605%20155.003%20228.665%20154.018%20228.949C151.854%20229.761%20151.969%20232.325%20150.394%20233.785C150.254%20234.729%20149.413%20235.145%20148.709%20235.693C148.062%20235.537%20147.472%20236.109%20147.095%20236.609C145.79%20236.501%20144.456%20236.501%20143.597%20237.553C142.529%20239.873%20140.452%20240.397%20138.514%20241.333C138.022%20242.277%20136.94%20241.333%20136.35%20241.905C135.254%20242.281%20134.046%20242.825%20132.925%20243.085C131.857%20243.765%20130.524%20243.921%20129.413%20244.313C128.345%20244.993%20127.504%20246.877%20126.041%20246.721C125.703%20247.949%20124.215%20247.837%20123.737%20248.909C122.418%20249.565%20120.703%20250.001%20119.495%20251.049C118.399%20251.449%20117.306%20252.385%20116.239%20252.385C115.031%20253.329%20113.823%20254.269%20112.364%20254.401C111.634%20255.361%20111.267%20256.721%20109.948%20256.845C107.87%20256.985%20106.774%20259.141%20105.088%20259.673C103.629%20260.477%20102.195%20261.289%20101.353%20262.909C100.257%20263.173%20100.005%20264.245%2099.3045%20264.793C96.2419%20268.817%2092.9025%20270.721%2089.502%20274.481C88.5458%20275.161%2087.9168%20276.253%2087.0864%20277.045C86.3423%20277.193%2086.4538%20278.137%2085.8786%20278.397C84.5307%20279.209%2083.5745%20280.461%2082.3667%20281.117C82.1151%20282.321%2080.7815%20282.321%2080.5407%20283.389C79.2071%20284.349%2078.2365%20285.685%2077.5068%20287.145L77.2696%20286.753C77.0323%20287.541%2076.3709%20288.041%2076.0474%20287.833C75.3321%20287.981%2074.6168%20288.613%2074.2501%20289.317C73.3946%20289.841%2071.946%20290.521%2072.1725%20291.849C71.3313%20293.085%2070.235%20294.433%2068.9158%20294.433C67.9596%20295.637%2066.6116%20296.465%2065.8819%20297.801C63.1033%20298.737%2061.306%20300.537%2059.2535%20302.565C58.7754%20304.057%2057.05%20304.605%2055.9824%20305.409C55.0119%20305.409%2054.0593%20305.673%2053.441%20306.613C52.4597%20306.613%2051.561%20307.013%2050.9284%20308.081C48.7537%20308.605%2046.9815%20310.901%2044.8212%20310.353C42.154%20311.165%2039.5982%20309.549%2037.9124%20307.409C37.6608%20305.917%2037.2941%20305.213%2036.3272%20303.989C35.4716%20301.169%2035.7233%20298.081%2036.2013%20295.237C35.4716%20293.485%2037.0425%20291.845%2036.3272%20290.253C36.5644%20288.769%2036.3272%20287.277%2036.2013%20285.793C35.4716%20285.137%2036.2013%20283.521%2035.5831%20282.549C34.8821%20281.369%2035.4716%20279.629%2035.4716%20278.393C34.7419%20276.641%2036.0899%20274.345%2034.6305%20272.885C33.1711%20272.181%2033.2825%20270.457%2032.2006%20269.517C32.3264%20268.425%2031.23%20268.289%2031.3738%20267.345C30.7555%20265.753%2029.7742%20264.245%2029.7742%20262.493C29.1847%20260.065%2029.7742%20257.501%2028.455%20255.517C28.5952%20254.681%2027.8655%20254.001%2028.2285%20253.329C27.373%20249.437%2026.1509%20245.361%2025.5613%20241.337C24.9431%20239.877%2024.3392%20238.385%2024.1019%20236.609C22.7827%20234.733%2022.0243%20232.173%2021.938%20229.609C20.2377%20227.733%2019.3822%20225.173%2018.4153%20222.609C17.8114%20221.405%2018.0486%20219.921%2017.3333%20218.853C17.0817%20216.313%2016.6036%20214.261%2015.1442%20212.269C15.2556%20211.309%2014.2743%20211.309%2014.2743%20210.385C12.9551%20207.917%2012.3512%20205.113%2011.4094%20202.557C9.6948%20199.845%208.74224%20196.761%207.5057%20193.785C4.94994%20190.965%206.54953%20186.521%205.45678%20183.285C4.36042%20180.309%205.45678%20177.357%205.20515%20174.253C5.20515%20170.877%205.09372%20167.229%204.61564%20163.729C3.99737%20162.393%204.48983%20160.229%202.90102%20159.441C2.67456%20157.669%201.32659%20156.185%201.10372%20154.457C0.374019%20153.753%200.737073%20152.417%200.23383%20151.481C-0.467116%20149.333%200.600478%20147.457%200.8521%20145.285C1.33018%20144.349%200.374019%20143.145%201.33018%20142.185C1.69683%20141.637%202.05988%20140.585%202.67815%20140.177C3.99737%20136.777%205.31659%20133.457%207.28283%20130.741C7.62072%20129.937%208.23899%20129.125%208.35042%20128.053C11.6359%20122.937%2017.0853%20128.297%2020.7338%20124.797C21.5498%20124.533%2022.3082%20124.533%2022.8977%20123.617C28.6958%20122.789%2034.7491%20128.361%2040.3243%20129.977C43.484%20131.181%2046.2626%20134.025%2049.9003%20133.501C51.0938%20133.085%2052.4417%20133.197%2053.3979%20132.385C56.7948%20132.017%2059.7999%20132.649%2063.3405%20132.649C65.0264%20132.805%2066.7123%20131.445%2068.4233%20132.233L68.7899%20131.989C73.8727%20132.233%2078.7326%20134.129%2083.5601%20132.513C84.5163%20132.381%2085.6091%20132.801%2086.4538%20132.121C91.3137%20132.229%2095.6667%20129.557%20100.494%20129.557C101.364%20129.821%20102.432%20129.821%20103.417%20129.689C105.832%20130.893%20108.499%20132.641%20110.915%20132.797C112.964%20132.377%20115.268%20130.781%20117.457%20131.985C119.032%20132.377%20120.602%20131.877%20122.202%20131.569C123.999%20131.313%20125.319%20132.641%20127.145%20132.373L127.511%20132.793C130.067%20133.049%20132.454%20131.873%20134.995%20131.713C138.295%20131.565%20141.3%20130.885%20144.557%20130.073C147.249%20130.189%20148.989%20130.605%20151.656%20131.417Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M118.744%20442.212C119.585%20440.596%20119.222%20439.133%20119.7%20437.361C120.077%20436.157%20120.796%20435.088%20121.048%20433.728C122.004%20432.524%20122.004%20430.644%20123.097%20429.44C123.223%20429.048%20123%20428.088%20123.715%20428.212C123.967%20425.948%20125.175%20424.588%20126.019%20422.548C126.131%20422.156%20125.879%20421.612%20126.372%20421.612C126.85%20419.056%20128.435%20417.192%20129.391%20415.16L129.758%20415.309C130.362%20414.065%20130.728%20412.729%20131.724%20411.901C132.425%20410.017%20133.888%20408.816%20133.888%20406.776C134.395%20405.996%20135.096%20405.34%20134.97%20404.368C134.028%20401.416%20136.429%20399.541%20136.796%20396.697V396.148C137.766%20394.68%20138.13%20392.928%20138.971%20391.444C139.449%20390.764%20139.449%20389.692%20140.038%20389.28C141.02%20387.108%20142.256%20385.361%20143.086%20383.085C143.565%20382.961%20143.464%20382.404%20143.69%20382.148C144.42%20381.468%20145.038%20380.377%20145.265%20379.305C147.44%20376.877%20147.695%20373.116%20149.985%20370.812C150.826%20368.148%20152.763%20366.377%20154.226%20363.969C154.956%20363.157%20155.463%20361.805%20156.149%20361.125C156.656%20359.633%20157.623%20358.429%20158.579%20357.077C159.561%20353.053%20163.31%20349.945%20164.884%20346.029C165.725%20346.029%20165.391%20344.668%20166.106%20344.428C167.314%20341.848%20169.363%20339.837%20170.179%20336.977C170.937%20335.713%20171.947%20335.421%20172.551%20333.805C172.778%20333.649%20173.324%20333.601%20173.378%20332.969C174.108%20332.313%20174.388%20332.165%20174.992%20331.353C175.905%20331.117%20175.679%20330.672%20176.383%20330.432L176.915%20330.089C177.012%20329.997%20177.113%20329.908%20177.224%20329.824C177.224%20329.824%20177.224%20329.824%20177.253%20329.824C177.253%20329.824%20180.021%20328.405%20180.495%20327.029C182.559%20325.429%20182.925%20322.74%20184.133%20320.724C184.64%20318.952%20185.959%20317.888%20186.689%20316.264C187.39%20314.648%20188.317%20312.52%20188.738%20311.28C188.486%20310.124%20188.429%20309.861%20188.177%20308.913C189.917%20305.633%20188.964%20301.217%20187.868%20297.693C187.501%20294.997%20186.042%20292.176%20183.626%20290.824C181.94%20289.88%20181.887%20288.021%20180.312%20287.081C180.172%20286.861%20180.495%20286.621%20180.255%20286.533C180.028%20286.313%20179.762%20286.269%20179.467%20286.133C179.385%20286.049%20179.284%20285.96%20179.216%20285.828C179.032%20285.828%20178.878%20285.765%20178.738%20285.681C178.695%20285.633%20178.666%20285.588%20178.626%20285.548C178.554%20285.548%20178.486%20285.525%20178.429%20285.477C177.81%20284.977%20177.95%20283.884%20177.25%20283.384C176.743%20281.104%20174.791%20279.753%20173.95%20277.457C173.317%20274.541%20171.211%20271.661%20168.515%20270.349C167.558%20269.801%20166.52%20269.405%20165.427%20269.341C163.572%20269.105%20161.775%20267.544%20159.866%20267.48C159.697%20267.432%20159.557%20267.416%20159.445%20267.372L159.363%20267.201C157.174%20266.521%20155.966%20266.937%20153.773%20266.521C152.677%20267.045%20151.358%20266.52%20150.15%20266.776C149.672%20267.324%20148.719%20266.52%20148.45%20267.324L148.324%20267.201C147.102%20267.873%20146.034%20267.616%20144.812%20268.004C143.604%20268.552%20142.396%20268.269%20141.44%20269.341C137.199%20270.021%20133.072%20271.905%20129.42%20273.785C127.845%20273.785%20126.429%20274.745%20124.984%20275.417C124.607%20275.681%20124.607%20276.496%20124.003%20275.948C119.747%20278.66%20114.934%20279.997%20111.156%20283.753C109.836%20284.017%20108.866%20284.844%20107.633%20285.112C105.836%20286.448%20104.01%20287.909%20102.212%20289.293C101.371%20289.549%20101.102%20290.761%20100.386%20290.909C99.7968%20292.637%2098.2224%20293.572%2096.8744%20294.54C96.1447%20296.4%2094.2072%20295.745%2093.1252%20296.961C90.4436%20298.053%2088.5205%20300.6%2085.6125%20301.272C79.4334%20306.256%2072.4132%20309.74%2066.4893%20315.272C65.871%20315.552%2066.2376%20316.501%2065.5079%20316.345C63.4842%20319.149%2061.2807%20322.189%2058.7968%20324.681C56.2411%20326.893%2053.5739%20328.992%2051.4675%20330.648C50.2884%20331.444%2048.8003%20332.361%2047.3409%20332.361C46.2445%20332.713%2045.4861%20333.761%2044.6449%20334.573C42.6355%20335.245%2042.9051%20336.556%2041.248%20337.612C39.9001%20339.884%2037.905%20342.029%2036.5283%20343.917C36.6973%20344.745%2037.4557%20345.66%2036.9058%20346.776C37.0316%20349.62%2037.5672%20350.408%2037.79%20353.228C37.3119%20353.76%2037.0891%20354.697%2037.3119%20355.401C38.2933%20356.057%2037.1718%20357.956%2038.3795%20358.612C38.7462%20361.456%2040.2595%20363.073%2040.3745%20366.029C41.3702%20368.061%2041.2444%20370.464%2042.7038%20372.092C46.3272%20377.756%2047.2258%20384.297%2051.241%20389.569C52.3086%20391.029%2052.1972%20392.781%2052.1972%20394.685L52.9269%20399.668C54.8643%20404.292%2057.111%20408.161%2058.9945%20412.465C59.4726%20414.129%2059.9219%20415.84%2060.4539%20417.544C61.1549%20421.856%2061.633%20425.904%2063.0924%20429.928C62.4885%20430.624%2062.7401%20431.813%2062.9809%20432.641C62.7437%20434.369%2063.6963%20436.14%2063.6963%20437.892C63.8221%20438.424%2064.5518%20438.705%2064.16%20439.361C62.4885%20446.797%2065.3965%20453.377%2069.4117%20459.025C70.7309%20462.149%2069.4117%20465.76%2070.0012%20468.868C69.4117%20472.26%2070.9573%20474.468%2071.5756%20477.704C73.204%20479.516%2076.0976%20478.253%2077.9776%20479.805C78.3694%20479.953%2078.6534%20480.264%2078.8762%20480.592H79.1998H79.0739C79.1854%20480.676%2079.2716%20480.789%2079.3543%20480.897C80.5333%20481.421%2082.992%20482.317%2084.0165%20481.249C85.5334%20481.117%2086.7951%20481.641%2088.4522%20481.029C90.4472%20483.521%2093.5925%20482.029%2096.2309%20482.341C96.2309%20482.341%2099.5739%20480.496%2099.6566%20480.496C99.883%20479.144%20101.734%20478.964%20102.435%20478.052C102.324%20476.436%20104.247%20476.692%20104.513%20475.208C105.189%20473.98%20105.469%20474.809%20105.803%20474.201C106.393%20473.109%20106.785%20473.193%20107.629%20472.257C107.586%20471.561%20107.827%20471.028%20108.093%20470.544C108.895%20469.888%20109.793%20469.3%20109.905%20468.488C110.634%20467.152%20110.886%20465.536%20111.842%20464.332C111.716%20462.848%20112.683%20461.904%20113.19%20460.552C113.557%20460.152%20113.302%20459.324%20113.92%20458.936C114.258%20457.732%20115.239%20456.656%20114.988%20455.28C115.128%20455.172%20115.239%20455.172%20115.354%20455.172L116.336%20452.353C116.939%20449.789%20117.795%20447.213%20118.244%20445.065C119.111%20444.385%20118.744%20443.048%20118.744%20442.212Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M403.252%20110.04V1.01637C401.412%200.828371%20400.049%200.132371%20398.198%200.272371C395.15%200.688371%20394.071%201.21637%20391.627%202.46037C389.463%202.30437%20389.463%203.80437%20387.526%203.13237C386.444%202.60837%20384.603%204.03237%20383.651%203.37637C381.487%203.22837%20379.424%203.63237%20377.36%204.58837C376.49%204.98837%20375.786%205.52437%20375.171%205.78437C374.33%206.04037%20373.234%206.20037%20372.518%206.73637C370.344%207.55637%20370.944%2010.5084%20368.769%2010.9244C365.257%2012.4164%20362.112%2014.4244%20359.082%2017.0964C356.414%2018.1804%20354.448%2021.3084%20352.54%2023.0164C348.539%2027.0884%20343.327%2028.0084%20339.34%2031.9324C337.291%2032.7124%20335.494%2034.3524%20333.891%2035.7124C332.935%2035.9644%20332.316%2036.9164%20331.475%2037.3204C330.731%2038.4044%20329.635%2038.7884%20329.045%2039.8684C326.982%2040.9604%20324.818%2041.7684%20322.992%2043.2284C320.451%2045.4004%20317.543%2046.3364%20314.987%2047.9644C312.348%2050.2524%20309.063%2051.8844%20305.918%2052.6844C304.473%2053.2084%20303.139%2054.5604%20301.676%2054.7164C299.401%2055.7724%20297.212%2057.5284%20295.386%2059.4044C293.337%2062.2484%20290.666%2065.3324%20288.477%2068.0444C286.539%2068.8564%20284.853%2070.3244%20283.142%2071.6764C282.186%2072.0764%20281.331%2072.9044%20280.504%2073.2924C279.03%2075.1764%20276.74%2075.5884%20275.31%2077.3244C274.213%2077.2164%20273.595%2078.6764%20272.502%2078.5444C270.816%2079.0764%20269.468%2079.8804%20268.038%2080.7164C265.849%2082.5924%20262.955%2082.9884%20260.399%2083.4044C258.825%2083.4044%20257.254%2084.6324%20255.795%2083.9524C254.22%2085.3124%20252.045%2084.0604%20250.485%2085.5444C249.36%2086.3804%20248.156%2087.0364%20247.089%2087.5604C244.784%2088.9204%20243.102%2090.4044%20241.021%2091.7404C236.416%2093.0924%20231.952%2094.9964%20226.98%2095.2884C224.594%2095.4604%20224.622%2094.7324%20222.739%2095.1084C221.912%2094.5844%20220.352%2094.8044%20219.762%2095.2164L219.748%2095.2404C217.207%2094.9764%20217.207%2097.2964%20215.028%2097.9964C211.391%2098.7764%20208.583%20102.716%20205.186%20104.62C203.022%20106.916%20199.669%20106.528%20197.379%20108.536C194.446%20109.48%20190.301%20111.78%20189.74%20111.78C188.364%20111.188%20186.484%20113.372%20185.021%20113.372C184.291%20113.92%20183.166%20115.496%20182.422%20115.888C181.818%20115.34%20181.34%20116.288%20180.75%20116.044C179.64%20116.824%20177.972%20116.764%20177.238%20118.124C175.412%20119.716%20174.01%20118.716%20174.373%20121.272C173.378%20122.076%20173.867%20123.544%20173.644%20124.336C175.581%20126.344%20175.441%20129.296%20177.63%20130.788C177.63%20131.88%20178.698%20131.724%20179.205%20132.248C181.254%20132.38%20182.21%20134.42%20184.162%20134.544C185.017%20135.636%20186.717%20135.38%20187.433%20136.84C188.162%20137.92%20189.147%20139.34%20190.1%20139.996C192.289%20139.62%20193.357%20140.652%20195.042%20141.612C195.549%20142.136%20196.39%20141.744%20196.897%20142.548C197.965%20142.416%20199.032%20143.384%20200.211%20142.964C201.067%20144.744%20203.019%20144.652%20203.623%20146.556C204.705%20146.556%20204.985%20147.992%20205.826%20148.648C206.782%20148.524%20206.951%20149.46%20207.681%20150.14C209.536%20152.148%20211.164%20153.008%20211.527%20155.428C211.894%20156.632%20212.537%20157.068%20212.652%20158.404C212.16%20159.324%20214.266%20160.156%20214.029%20160.832C214.266%20162.3%20215.503%20163.652%20215.28%20165.144C215.657%20166.324%20215.125%20167.676%20215.744%20168.9C217.092%20170.844%20215.014%20171.876%20215.772%20173.344C215.869%20174.04%20215.183%20173.408%20215.492%20174.548C216.84%20176.736%20215.675%20179.14%20216.531%20181.416L215.478%20185.832C214.173%20187.144%20214.536%20188.44%20213.076%20189.644C212.289%20191.612%20209.173%20193.012%20209.424%20194.908C209.762%20196.924%20208.749%20198.26%20209.734%20199.612C211.768%20200.16%20210.661%20202.588%20212.232%20203.66C214.788%20204.864%20221.585%20208.652%20224.59%20208.784C225.445%20207.972%20226.19%20209.2%20227.146%20208.908C227.875%20210.548%20229.195%20209.064%20230.402%20209.328L230.668%20208.908C232.354%20208.784%20234.166%20208.252%20235.988%20208.516C238.066%20209.196%20240.453%20208.516%20242.027%20207.968L243.487%20207.704C245.776%20206.768%20247.869%20205.564%20249.666%20204.08C250.636%20204.188%20251.014%20203.244%20251.715%20202.72C253.289%20202.172%20254.86%20201.104%20256.56%20200.836C257.782%20200.008%20258.99%20198.828%20260.45%20198.936C261.517%20198.124%20262.991%20198.404%20264.199%20197.748C269.282%20194.512%20272.664%20189.108%20278.732%20188.436C283.336%20185.748%20287.801%20184.804%20292.409%20182.092C292.661%20182.348%20293.365%20182.092%20293.506%20182.508C296.033%20181.28%20298.7%20179.688%20301.593%20179.532C306.565%20177.516%20310.328%20173.612%20315.397%20171.876C317.348%20171.46%20318.808%20169.968%20320.382%20168.752C322.909%20166.236%20326.813%20166.58%20329.566%20164.488L330.436%20164.308C334.157%20162.556%20338.287%20160.564%20341.08%20156.628C342.877%20155.58%20344.592%20154.488%20346.4%20153.152C347.985%20150.44%20351.019%20149.372%20353.42%20147.488L355.85%20144.364C356.932%20144.1%20357.676%20142.92%20358.517%20142.24C360.566%20141.148%20362.281%20139.396%20364.315%20137.78C366.001%20137.536%20367.223%20135.372%20368.557%20134.536C369.528%20133.732%20370.876%20133.732%20371.465%20132.528C372.069%20130.776%20374.006%20131.456%20374.977%20130.1C376.915%20129.708%20378.011%20127.692%20379.722%20126.992L385.142%20123.912C388.428%20120.256%20393.148%20121.848%20395.703%20117.28C398.651%20114.852%20399.593%20112.336%20402.95%20110.524M125.483%20479.432L127.561%20480.236C131.184%20480.808%20135.789%20477.868%20139.132%20477.344C140.311%20478.288%20142.277%20478.596%20143.553%20478.46C145.983%20478.984%20147.863%20477.5%20150.221%20478.484C152.328%20478.352%20154.715%20477.696%20156.512%20479.032C158.449%20478.812%20160.768%20481.352%20162.802%20481.4C171.566%20481.112%20178.895%20475.596%20187.235%20479.492C194.971%20479.532%20201.416%20485.744%20209.169%20485.812C209.295%20486.36%20210.434%20485.812%20210.305%20486.468C214.432%20486.82%20218.968%20486.796%20222.843%20488.936C230.607%20490.164%20238.063%20494.32%20245.816%20496.02C248.623%20497.028%20251.517%20496.192%20254.353%20495.816C259.325%20494.396%20264.127%20498.012%20269.152%20497.332L270.331%20497.856C276.384%20498.472%20282.689%20498.292%20289.26%20496.412C292.348%20496.412%20295.227%20498.952%20298.498%20498.576C302.305%20496.24%20306.978%20500.224%20311.345%20499.608L316.525%20502.364C318.125%20502.888%20319.868%20502.956%20321.41%20502.732C324.807%20502.928%20328.179%20506.912%20331.914%20506.388C334.272%20507.348%20340.523%20509.052%20342.755%20509.036C344.581%20508.724%20346.307%20509.8%20347.895%20508.644C349.847%20506.784%20351.91%20509.228%20354.074%20508.184C356.842%20509.192%20359.607%20510.504%20362.245%20510.956L371.372%20511.16C378.014%20508.88%20383.112%20516.864%20389.427%20512.768C394.862%20511.852%20400.269%20509.972%20403.313%20510.36L403.328%20444.744C403.13%20444.68%20402.4%20444.064%20402.4%20444.064C402.023%20443.916%20401.502%20443.828%20401.11%20443.736C399.061%20442.908%20398.331%20442.448%20396.279%20442.316C395.437%20441.776%20394.341%20441.512%20393.356%20441.38C391.25%20440.128%20389.115%20439.824%20387.066%20438.74C386.868%20438.584%20386.645%20438.488%20386.433%20438.32C385.477%20437.928%20385.322%20436.568%20384.258%20436.304C384.244%20436.304%20384.201%20436.264%20384.201%20436.264C383.119%20435.208%20381.703%20434.648%20380.887%20433.592C380.732%20433.568%20380.635%20433.552%20380.549%20433.508C380.437%20433.444%20380.351%20433.384%20380.297%20433.288C379.664%20433.204%20379.089%20433.024%20378.557%20432.716C377.518%20432.144%20376.648%20431.34%20375.779%20430.636C375.696%20430.66%20375.624%20430.636%20375.552%20430.636C375.455%20430.528%20375.34%20430.416%20375.214%20430.332C375.017%20430.356%20374.794%20430.332%20374.567%20430.248C374.398%20430.14%20374.201%20429.96%20374.089%20429.832C373.949%20429.808%20373.852%20429.74%20373.712%20429.724C373.64%20429.652%20373.557%20429.568%20373.5%20429.52C373.331%20429.48%20373.162%20429.436%20373.022%20429.372C372.346%20428.956%20371.814%20428.364%20371.084%20428.084C370.858%20427.912%20370.577%20427.772%20370.311%20427.708C369.427%20426.928%20368.417%20426.308%20367.378%20425.74C365.778%20424.864%20364.035%20424.184%20362.45%20423.356C362.378%20422.808%20361.957%20422.568%20361.508%20422.396C361.271%20422.216%20360.947%20422.084%20360.609%20421.96C360.498%20421.388%20360.16%20421.172%20359.725%20421.04C359.319%20420.648%20358.672%20420.648%20358.054%20420.54C357.885%20419.752%20357.213%20419.812%20356.875%20419.056C356.734%20419.024%20356.565%20418.94%20356.397%20418.876C356.382%20418.828%20356.339%20418.804%20356.339%20418.768C355.498%20418.524%20354.668%20418.024%20353.923%20417.712C348.672%20413.212%20343.168%20409.18%20338.478%20403.588C336.314%20401.16%20334.491%20398.024%20332.424%20395.62C330.85%20393.324%20328.438%20392.252%20326.96%20390.088C325.612%20389.408%20324.322%20388.472%20323.704%20386.868C323.52%20386.852%20323.366%20386.784%20323.197%20386.696C323.197%20386.648%20323.168%20386.612%20323.139%20386.54C323.057%20386.524%20322.97%20386.5%20322.888%20386.476C322.298%20386.016%20321.82%20385.256%20321.119%20385.056C320.95%20384.9%20320.767%20384.812%20320.587%20384.752C320.336%20384.204%20320.138%20383.588%20319.577%20383.572C319.437%20383.392%20319.268%20383.26%20319.045%20383.244C318.905%20383%20318.653%20382.824%20318.398%20382.824C318.301%20382.716%20318.2%20382.636%20318.075%20382.588C317.471%20382.016%20316.993%20381.12%20316.205%20380.852C316.008%20380.704%20315.814%20380.596%20315.587%20380.548C314.476%20379.784%20313.707%20378.54%20312.471%20377.992C312.244%20377.884%20311.993%20377.772%20311.755%20377.664C310.45%20376.412%20308.736%20375.624%20307.248%20374.444C307.205%20374.444%20307.165%20374.444%20307.136%20374.444C306.982%20374.36%20306.827%20374.272%20306.673%20374.164C305.997%20374.272%20305.31%20374.1%20304.663%20373.788C304.016%20373.396%20303.427%20372.912%20302.866%20372.428C302.74%20372.388%20302.614%20372.32%20302.46%20372.28C302.417%20372.208%20302.363%20372.196%20302.291%20372.132C297.966%20370.24%20294.077%20369.304%20289.835%20367.18C289.598%20367.032%20289.329%20366.924%20289.077%20366.884C289.019%20366.836%20288.994%20366.812%20288.951%20366.792L289.077%20366.636C288.951%20366.38%20288.851%20366.112%20288.725%20365.98C288.527%20365.916%20288.347%20365.808%20288.178%20365.724C288.15%20365.724%20288.15%20365.676%20288.135%20365.676C288.092%20365.652%20288.038%20365.612%20287.981%20365.592C286.676%20364.78%20285.748%20363.34%20284.584%20362.224C284.472%20362.2%20284.357%20362.152%20284.246%20362.14C284.163%20362.048%20284.134%20361.984%20284.048%20361.92C283.908%20361.896%20283.797%20361.848%20283.671%20361.812C283.024%20361.312%20282.632%20360.404%20281.931%20359.928C280.906%20359.404%20280.655%20358.2%20279.699%20357.96C279.627%20357.876%20279.515%20357.804%20279.418%20357.764C277.423%20355.224%20276.553%20352.336%20274.195%20350.216C273.829%20350.084%20274.055%20349.272%20273.466%20349.272C273.591%20348.484%20273.128%20347.936%20272.484%20347.632C272.765%20346.696%20271.277%20346.844%20271.417%20345.772C270.967%20345.164%20270.489%20344.46%20269.788%20344.248C269.691%20344.156%20269.591%20344.068%20269.465%20344.02C266.755%20340.936%20264.817%20337.784%20261.729%20335.536C260.55%20334.772%20259.371%20333.48%20258.052%20332.864C257.574%20332.584%20257.082%20332.364%20256.55%20332.256C256.521%20332.256%20256.492%20332.232%20256.452%20332.232C256.172%20331.988%20255.974%20331.684%20256.032%20331.224C255.751%20331.004%20255.694%20331.356%20255.64%20331.66C255.5%20331.448%20255.442%20331.2%20255.471%20330.916C255.104%20330.652%20255.104%20331.308%20254.993%20331.596C254.684%20331.572%20254.404%20331.448%20254.152%20331.308C253.113%20330.676%20252.326%20329.652%20251.244%20329.192C251.089%20329.108%20250.978%20329.012%20250.838%20328.972C250.78%20328.924%20250.755%20328.924%20250.726%20328.9C250.615%20328.86%20250.5%20328.792%20250.388%20328.776C250.248%20328.532%20249.997%20328.572%20249.799%20328.644L249.292%20328.464C249.292%20328.424%20249.263%20328.4%20249.263%20328.34L247.157%20327.576C246.876%20327.248%20246.51%20327.004%20246.118%20326.848C245.442%20326.412%20244.601%20326.264%20243.871%20325.912C243.196%20325.34%20242.441%20324.888%20241.653%20324.512C240.838%20324.028%20240.011%20323.7%20239.238%20323.348C237.441%20323.348%20235.924%20322.192%20234.353%20321.604C233.792%20321.12%20233.257%20320.416%20232.599%20320.196C232.221%20319.932%20229.216%20320.588%20228.767%20320.72C225.525%20321.86%20225.679%20322.212%20223.037%20324.524C222.645%20324.944%20221.901%20324.484%20221.901%20325.252C220.92%20326.236%20220.92%20326.104%20219.022%20326.432C218.742%20326.628%20218.447%20327.064%20218.195%20327.004C217.843%20326.74%20217.494%20327.94%20217.113%20327.832C216.721%20327.552%20216.286%20328.076%20215.765%20328.34C214.306%20329.276%20213.702%20331.052%20212.128%20331.748C211.412%20332.108%20210.78%20333.348%20210.064%20333.896C208.619%20336.98%20205.682%20338.856%20203.745%20341.42C202.818%20343.592%20200.136%20344.396%20199.658%20347.084C199.054%20346.936%20198.914%20347.74%20198.464%20347.896C198.213%20348.7%20197.483%20348.812%20197.242%20349.78C195.165%20351.532%20193.101%20353.404%20191.667%20355.7C189.478%20358.944%20187.3%20361.92%20185.362%20365.528C185.125%20365.808%20185.265%20366.62%20184.647%20366.748C180.52%20373.78%20176.782%20381.296%20171.926%20388.168L169.629%20391.816C169.262%20392.216%20169.402%20393.02%20168.787%20393.152C168.421%20394.488%20167.58%20395.448%20166.85%20396.388C166.483%20398.14%20165.276%20399.496%20164.546%20400.856C164.068%20402.84%20163.115%20404.356%20162.357%20406.084C160.657%20411.068%20158.018%20415.124%20156.081%20419.976C155.225%20422.14%20154.129%20424.156%20153.622%20426.56C152.666%20428.724%20152.946%20431.676%20151.598%20433.576C149.661%20436.272%20148.201%20438.828%20146.501%20441.656C146.264%20442.616%20145.056%20442.876%20145.167%20443.928C142.878%20446.224%20141.292%20449.044%20139.592%20451.756C139.858%20453.092%20138.51%20453.772%20138.51%20454.864C137.428%20455.936%20136.573%20457.552%20135.254%20458.78C135.365%20459.568%20134.524%20459.852%20134.384%20460.532C132.446%20466.46%20128.823%20471.424%20126.17%20477.072%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1003.13%20376.681C994.671%20376.681%20986.023%20384.073%20976.954%20401.745H976.562V378.689H958.646V479.273H976.562V426.641C976.562%20409.385%20986.224%20395.713%20998.496%20395.713C1002.27%20395.713%201008.3%20398.925%201013.41%20403.761L1022.89%20386.525C1016.13%20379.893%201009.8%20376.681%201003.13%20376.681Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M2066.81%20391.729H2067.2C2074.04%20382.105%202084.1%20376.501%202094.17%20376.501C2111.29%20376.501%202124.98%20389.493%202124.98%20417.049V479.105H2107.06V416.825C2107.06%20402.045%202100.23%20392.409%202089.34%20392.409C2081.48%20392.409%202075.26%20396.449%202066.8%20406.965V479.105H2048.87V378.517H2066.8M2028.34%20449.973C2017.87%20457.597%202007.62%20462.073%201996.75%20462.073C1979.43%20462.073%201969.16%20451.769%201966.35%20431.837H2029.97C2029.97%20394.649%202014.67%20376.501%201990.71%20376.501C1965.75%20376.501%201948.42%20397.109%201948.42%20427.573C1948.42%20455.353%201964.12%20481.113%201992.31%20481.113C2007.62%20481.113%202017.47%20477.309%202028.34%20469.245M1966.75%20418.613C1969.16%20402.713%201977.42%20393.753%201991.11%20393.753C2003.8%20393.753%202011.64%20403.377%202012.25%20418.613H1966.75ZM1913.21%20479.105H1931.12V326.325H1913.21V479.105ZM1871.14%20479.105H1889.05V326.325H1871.14V479.105ZM1856.84%20461.181C1852.8%20464.541%201849.19%20466.557%201847.38%20466.557C1845.16%20466.557%201843.95%20465.205%201843.95%20461.401V409.657C1843.95%20386.805%201829.46%20376.501%201811.15%20376.501C1798.06%20376.501%201788.18%20380.977%201781.16%20390.165V411.901C1789.81%20400.473%201799.86%20395.317%201809.73%20395.317C1820.61%20395.317%201826.03%20400.473%201826.03%20413.013V418.405L1810.12%20424.669C1795.65%20430.497%201779.33%20436.545%201779.33%20456.473C1779.33%20469.465%201788.18%20481.113%201801.47%20481.113C1809.73%20481.113%201817.99%20477.753%201825.84%20470.809C1827.43%20477.981%201831.68%20481.113%201839.54%20481.113C1845.16%20481.113%201848.59%20479.317%201856.84%20473.269M1826.04%20458.713C1821.21%20463.861%201815.97%20467.001%201810.34%20467.001C1802.9%20467.001%201797.45%20461.181%201797.45%20452.893C1797.45%20441.009%201810.73%20435.197%201826.04%20429.369V458.713ZM1759.61%20468.565C1741.28%20477.533%201726.4%20481.113%201707.27%20481.113C1665.19%20481.113%201634.19%20448.409%201634.19%20403.605C1634.19%20358.581%201665.99%20324.309%201707.86%20324.309C1723.98%20324.309%201735.24%20327.225%201756.8%20337.309V359.481C1740.69%20349.621%201723.98%20344.473%201707.47%20344.473C1677.67%20344.473%201654.53%20369.777%201654.53%20402.933C1654.53%20436.989%201677.48%20460.957%201710.08%20460.957C1720.77%20460.957%201730.41%20458.261%201739.89%20454.901V423.549H1713.5V403.821H1759.6M1614.07%20467.669C1614.07%20475.069%201608.63%20481.113%201601.99%20481.113C1595.34%20481.113%201589.92%20475.065%201589.92%20467.669C1589.92%20460.285%201595.34%20454.241%201601.99%20454.241C1608.64%20454.237%201614.07%20460.285%201614.07%20467.669ZM1545.63%20378.517H1574.22V396.445H1545.63V447.961C1545.63%20459.837%201553.27%20463.197%201558.51%20463.197C1564.95%20463.197%201571.61%20460.729%201578.85%20455.805V474.389C1572.6%20478.193%201562.96%20481.109%201557.11%20481.109C1537.57%20481.109%201527.71%20467.665%201527.71%20449.525V396.445H1512.01V394.193L1545.63%20357.677M1500.14%20359.925C1488.47%20347.613%201477.19%20344.017%201467.93%20344.017C1455.25%20344.017%201446.19%20351.417%201446.19%20362.165C1446.19%20391.509%201505.57%20391.065%201505.57%20439.665C1505.57%20463.641%201489.27%20481.109%201467.11%20481.109C1452.23%20481.109%201440.15%20476.633%201428.67%20467.001V439.221C1438.74%20453.557%201451.42%20461.401%201464.92%20461.401C1480.22%20461.401%201487.25%20450.649%201487.25%20442.145C1487.25%20410.561%201427.86%20406.965%201427.86%20365.073C1427.86%20340.213%201444.37%20324.309%201469.53%20324.309C1480.02%20324.309%201490.48%20327.889%201500.14%20335.061M1330.43%20378.517H1359.02V396.445H1330.43V447.961C1330.43%20459.837%201338.1%20463.197%201343.32%20463.197C1349.75%20463.197%201356.41%20460.729%201363.65%20455.805V474.389C1357.41%20478.193%201347.76%20481.109%201341.92%20481.109C1322.37%20481.109%201312.51%20467.665%201312.51%20449.525V396.445H1296.82V394.193L1330.43%20357.677M1294.6%20461.181C1290.58%20464.541%201286.96%20466.557%201285.15%20466.557C1282.93%20466.557%201281.74%20465.205%201281.74%20461.401V409.657C1281.74%20386.805%201267.23%20376.501%201248.91%20376.501C1235.82%20376.501%201225.96%20380.977%201218.91%20390.165V411.901C1227.56%20400.473%201237.63%20395.317%201247.5%20395.317C1258.37%20395.317%201263.82%20400.473%201263.82%20413.013V418.405L1247.91%20424.669C1233.4%20430.497%201217.1%20436.545%201217.1%20456.473C1217.1%20469.465%201225.96%20481.113%201239.24%20481.113C1247.5%20481.113%201255.76%20477.753%201263.59%20470.809C1265.22%20477.981%201269.43%20481.113%201277.3%20481.113C1282.93%20481.113%201286.34%20479.317%201294.6%20473.269M1269.63%20338.417C1264.41%20338.417%201260.18%20342.901%201260.18%20348.721C1260.18%20354.557%201264.41%20359.261%201269.63%20359.261C1274.88%20359.261%201278.9%20354.557%201278.9%20348.721C1278.9%20342.901%201274.88%20338.417%201269.63%20338.417ZM1232.21%20338.417C1226.98%20338.417%201222.73%20342.901%201222.73%20348.721C1222.73%20354.557%201226.98%20359.261%201232.21%20359.261C1237.45%20359.261%201241.47%20354.557%201241.47%20348.721C1241.47%20342.901%201237.45%20338.417%201232.21%20338.417ZM1263.82%20458.713C1258.99%20463.861%201253.74%20467.001%201248.12%20467.001C1240.67%20467.001%201235.22%20461.181%201235.22%20452.893C1235.22%20441.009%201248.51%20435.197%201263.82%20429.369V458.713ZM1173.42%20378.517H1202.01V396.445H1173.42V447.961C1173.42%20459.837%201181.09%20463.197%201186.31%20463.197C1192.74%20463.197%201199.4%20460.729%201206.64%20455.805V474.389C1200.41%20478.193%201190.73%20481.109%201184.89%20481.109C1165.37%20481.109%201155.5%20467.665%201155.5%20449.525V396.445H1139.8V394.193L1173.42%20357.677M1115.85%20359.925C1110.01%20359.925%201105.18%20354.557%201105.18%20348.057C1105.18%20341.557%201110.01%20336.181%201115.85%20336.181C1121.69%20336.181%201126.52%20341.557%201126.52%20348.057C1126.52%20354.557%201121.69%20359.925%201115.85%20359.925ZM1124.7%20479.105H1106.8V378.517H1124.7V479.105ZM1082.43%20404.505C1072.38%20397.113%201062.92%20393.973%201056.28%20393.973C1049.01%20393.973%201044.38%20397.777%201044.38%20403.161C1044.38%20407.645%201050.43%20413.013%201066.34%20423.317C1081.23%20434.301%201086.66%20441.245%201086.66%20451.545C1086.66%20469.249%201073.98%20481.117%201056.88%20481.117C1045.78%20481.117%201037.13%20478.657%201025.47%20471.937V450.421C1037.13%20459.389%201047.81%20463.649%201055.05%20463.649C1062.3%20463.205%201068.33%20459.393%201068.33%20452.221C1068.33%20438.329%201026.07%20430.949%201026.07%20403.829C1026.07%20386.813%201037.75%20376.509%201055.86%20376.509C1064.32%20376.509%201072.98%20379.189%201082.43%20384.797M934.886%20449.973C924.412%20457.597%20914.146%20462.073%20903.265%20462.073C885.964%20462.073%20875.687%20451.769%20872.88%20431.837H936.486C936.486%20394.649%20921.195%20376.501%20897.226%20376.501C872.276%20376.501%20854.961%20397.109%20854.961%20427.573C854.961%20455.353%20870.658%20481.113%20898.854%20481.113C914.146%20481.113%20924.016%20477.309%20934.883%20469.245M873.271%20418.613C875.687%20402.713%20883.944%20393.753%20897.632%20393.753C910.31%20393.753%20918.175%20403.377%20918.765%20418.613H873.271ZM764.172%20378.517H783.705L808.065%20440.345L831.822%20378.517H850.945L811.067%20481.109H805.028M742.633%20359.925C736.792%20359.925%20731.961%20354.557%20731.961%20348.057C731.961%20341.557%20736.792%20336.181%20742.633%20336.181C748.474%20336.181%20753.305%20341.557%20753.305%20348.057C753.305%20354.557%20748.474%20359.925%20742.633%20359.925ZM751.505%20479.105H733.575V378.517H751.505V479.105ZM652.049%20391.729H652.455C659.292%20382.105%20669.361%20376.501%20679.415%20376.501C696.532%20376.501%20710.221%20389.493%20710.221%20417.049V479.105H692.305V416.825C692.305%20402.045%20685.454%20392.409%20674.584%20392.409C666.748%20392.409%20660.5%20396.449%20652.046%20406.965V479.105H634.13V378.517H652.046M612.793%20419.057C612.793%20456.473%20592.67%20481.113%20551.81%20481.113C522.802%20481.113%20494.635%20462.965%20494.635%20421.309V326.325H514.348V416.605C514.348%20433.857%20516.371%20441.013%20522.604%20447.965C530.469%20456.701%20540.326%20460.957%20552.202%20460.957C567.296%20460.957%20578.18%20455.573%20584.413%20448.637C591.462%20440.793%20593.062%20429.597%20593.062%20415.261V326.325H612.789%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_34042%22%3E%20%3Crect%20width%3D%222128%22%20height%3D%22516%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%222128%22%20height%3D%22516%22%20viewBox%3D%220%200%202128%20516%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23clip0_6822_34042)%22%3E%20%3Cpath%20d%3D%22M395.697%20222.041C393.619%20223.121%20391.807%20221.673%20389.629%20221.933L384.068%20223.269L383.561%20223.121C380.783%20225.541%20377.034%20224.473%20373.888%20225.833C372.918%20227.037%20371.57%20225.965%20370.617%20227.037C368.554%20227.585%20366.491%20227.585%20364.438%20228.521C360.452%20227.317%20356.717%20229.333%20352.828%20229.857L349.078%20232.153C346.889%20232.309%20344.808%20232.981%20342.871%20233.381C340.836%20232.569%20338.798%20233.513%20336.832%20234.185C332.479%20235.521%20329.826%20230.685%20325.821%20231.085C325.077%20230.141%20323.773%20230.537%20322.928%20230.141C322.536%20230.141%20322.044%20230.821%20321.946%20230.141C320.836%20230.141%20319.783%20230.141%20318.69%20229.749C317.708%20229.077%20316.975%20227.717%20315.796%20227.997C314.786%20228.129%20315.052%20226.489%20314.081%20227.037C312.845%20226.121%20311.159%20226.489%20309.926%20225.833L303.776%20226.249L303.549%20226.029C303.452%20225.873%20302.298%20225.965%20302.298%20225.965C300.515%20226.121%20298.689%20226.777%20296.863%20226.381C293.97%20227.037%20291.443%20228.521%20288.398%20229.077C286.223%20230.141%20284.509%20232.157%20282.122%20232.701C280.156%20232.153%20277.981%20233.117%20276.043%20233.513C274.106%20234.185%20271.928%20234.449%20269.879%20234.449C268.671%20234.449%20267.801%20235.385%20266.733%20235.385C263.7%20237.425%20259.573%20235.821%20257.298%20239.041C255.583%20239.853%20254.235%20241.057%20252.567%20241.993C251.485%20243.065%20249.914%20241.689%20248.929%20242.893C247.484%20242.893%20246.514%20243.525%20245.054%20243.261C243.649%20243.549%20243.243%20244.025%20242.387%20243.745C241.377%20243.369%20241.348%20244.205%20240.083%20243.901C238.286%20242.517%20236.097%20243.613%20234.749%20244.817C233.681%20244.685%20234.285%20246.177%20233.318%20246.309C230.665%20247.661%20229.695%20250.901%20228.235%20253.589C226.55%20254.661%20227.729%20257.065%20226.887%20258.557L227.139%20263.285C224.95%20267.201%20229.806%20268.949%20229.188%20272.973C229.918%20273.785%20229.555%20275.293%20230.284%20275.793L231.492%20279.029C232.096%20280.653%20231.604%20282.529%20232.603%20284.169C233.178%20285.905%20234.907%20287.121%20235.27%20289.005L239.749%20290.497L241.42%20292.905C243.609%20293.341%20245.773%20293.997%20248.078%20294.149C248.455%20294.413%20248.71%20294.961%20249.271%20294.805C251.097%20295.485%20252.948%20296.165%20254.746%20296.665C255.587%20297.101%20256.431%20297.625%20257.301%20297.369C260.673%20298.721%20264.322%20299.253%20267.708%20300.613L268.074%20301.153C269.659%20301.677%20270.853%20302.621%20272.427%20303.037C273.538%20304.373%20275.335%20304.241%20276.414%20305.445C277.762%20305.445%20278.588%20306.821%20279.926%20306.953C282.129%20306.953%20283.085%20309.493%20285.274%20309.493C286.849%20310.321%20288.154%20311.377%20289.98%20311.813C290.709%20313.017%20292.154%20312.601%20293.139%20313.697C294.965%20314.633%20295.947%20316.253%20297.859%20317.065C298.477%20318.137%20299.434%20318.949%20300.627%20319.337C301.231%20320.273%20302.579%20320.821%20302.945%20322.157L303.057%20321.901L303.787%20322.449C305.023%20323.229%20306.328%20323.521%20307.298%20324.325C310.207%20325.113%20313.111%20326.209%20316.033%20326.865L316.271%20327.301C317.478%20327.433%20318.909%20327.301%20319.653%20328.357C326.814%20331.465%20334.283%20335.113%20342.414%20336.449C346.767%20337.521%20351.85%20337.933%20356.106%20339.685C359.841%20341.169%20363.353%20342.921%20367.228%20344.277C369.082%20344.557%20370.765%20345.589%20372.691%20345.901C373.281%20347.229%20375.107%20346.417%20376.329%20346.681C376.556%20346.681%20376.807%20347.097%20376.667%20347.509C379.223%20348.821%20382.131%20349.657%20384.683%20351.149C385.398%20350.729%20385.765%20352.085%20386.495%20351.405C387.21%20351.929%20388.209%20352.889%20389.528%20352.497C389.528%20352.605%20389.866%20352.889%20390.147%20352.605C390.707%20353.833%20392.393%20353.697%20393.375%20354.377L398.486%20355.993C400.115%20356.541%20401.714%20357.001%20403.371%20357.393V219.793C400.668%20220.145%20398.001%20220.145%20395.697%20222.041ZM151.656%20131.417C154.086%20131.549%20155.154%20131.853%20157.695%20131.441C158.806%20132.513%20160.251%20133.213%20161.71%20133.629C161.947%20133.997%20161.71%20133.933%20162.537%20133.669C163.252%20134.217%20164.068%20134.261%20164.909%20134.677C166.006%20135.357%20166.088%20136.949%20167.127%20137.849C167.843%20138.397%20167.717%20138.481%20168.475%20139.405C169.457%20139.601%20169.094%20140.609%20169.094%20140.609C169.151%20140.781%20169.741%20144.001%20168.644%20145.093C166.958%20147.789%20166.62%20148.789%20165.161%20151.501C163.842%20152.969%20163.083%20155.253%20162.494%20157.393C162.72%20157.517%20162.72%20157.941%20162.72%20158.221C161.401%20158.745%20161.75%20160.629%20160.657%20161.441C160.531%20163.317%20159.942%20164.941%20160.053%20166.973C158.957%20167.909%20159.575%20169.381%20158.705%20170.317C157.889%20173.161%20157.889%20177.061%20159.323%20179.245C160.179%20181.105%20160.053%20183.113%20161.247%20185.017C161.753%20186.769%20163.31%20187.689%20164.295%20189.041C164.406%20190.533%20167.063%20193.089%20167.063%20193.089L169.449%20194.317L169.802%20193.901C170.42%20194.425%20171.908%20194.993%20172.275%20196.065C173.946%20197.137%20176.333%20197.837%20177.526%20199.481C178.508%20200.417%20178.508%20202.169%20178.792%20203.661C180.463%20204.333%20180.028%20206.113%20181.15%20207.577C181.613%20210.005%20176.178%20214.249%20174.381%20215.733C172.052%20217.069%20170.24%20218.953%20168.062%20220.725L167.458%20222.477C164.665%20223.133%20162.868%20225.977%20160.564%20227.461C159.467%20228.945%20157.641%20228.797%20156.322%20229.869C155.592%20229.605%20155.003%20228.665%20154.018%20228.949C151.854%20229.761%20151.969%20232.325%20150.394%20233.785C150.254%20234.729%20149.413%20235.145%20148.709%20235.693C148.062%20235.537%20147.472%20236.109%20147.095%20236.609C145.79%20236.501%20144.456%20236.501%20143.597%20237.553C142.529%20239.873%20140.452%20240.397%20138.514%20241.333C138.022%20242.277%20136.94%20241.333%20136.35%20241.905C135.254%20242.281%20134.046%20242.825%20132.925%20243.085C131.857%20243.765%20130.524%20243.921%20129.413%20244.313C128.345%20244.993%20127.504%20246.877%20126.041%20246.721C125.703%20247.949%20124.215%20247.837%20123.737%20248.909C122.418%20249.565%20120.703%20250.001%20119.495%20251.049C118.399%20251.449%20117.306%20252.385%20116.239%20252.385C115.031%20253.329%20113.823%20254.269%20112.364%20254.401C111.634%20255.361%20111.267%20256.721%20109.948%20256.845C107.87%20256.985%20106.774%20259.141%20105.088%20259.673C103.629%20260.477%20102.195%20261.289%20101.353%20262.909C100.257%20263.173%20100.005%20264.245%2099.3045%20264.793C96.2419%20268.817%2092.9025%20270.721%2089.502%20274.481C88.5458%20275.161%2087.9168%20276.253%2087.0864%20277.045C86.3423%20277.193%2086.4538%20278.137%2085.8786%20278.397C84.5307%20279.209%2083.5745%20280.461%2082.3667%20281.117C82.1151%20282.321%2080.7815%20282.321%2080.5407%20283.389C79.2071%20284.349%2078.2365%20285.685%2077.5068%20287.145L77.2696%20286.753C77.0323%20287.541%2076.3709%20288.041%2076.0474%20287.833C75.3321%20287.981%2074.6168%20288.613%2074.2501%20289.317C73.3946%20289.841%2071.946%20290.521%2072.1725%20291.849C71.3313%20293.085%2070.235%20294.433%2068.9158%20294.433C67.9596%20295.637%2066.6116%20296.465%2065.8819%20297.801C63.1033%20298.737%2061.306%20300.537%2059.2535%20302.565C58.7754%20304.057%2057.05%20304.605%2055.9824%20305.409C55.0119%20305.409%2054.0593%20305.673%2053.441%20306.613C52.4597%20306.613%2051.561%20307.013%2050.9284%20308.081C48.7537%20308.605%2046.9815%20310.901%2044.8212%20310.353C42.154%20311.165%2039.5982%20309.549%2037.9124%20307.409C37.6608%20305.917%2037.2941%20305.213%2036.3272%20303.989C35.4716%20301.169%2035.7233%20298.081%2036.2013%20295.237C35.4716%20293.485%2037.0425%20291.845%2036.3272%20290.253C36.5644%20288.769%2036.3272%20287.277%2036.2013%20285.793C35.4716%20285.137%2036.2013%20283.521%2035.5831%20282.549C34.8821%20281.369%2035.4716%20279.629%2035.4716%20278.393C34.7419%20276.641%2036.0899%20274.345%2034.6305%20272.885C33.1711%20272.181%2033.2825%20270.457%2032.2006%20269.517C32.3264%20268.425%2031.23%20268.289%2031.3738%20267.345C30.7555%20265.753%2029.7742%20264.245%2029.7742%20262.493C29.1847%20260.065%2029.7742%20257.501%2028.455%20255.517C28.5952%20254.681%2027.8655%20254.001%2028.2285%20253.329C27.373%20249.437%2026.1509%20245.361%2025.5613%20241.337C24.9431%20239.877%2024.3392%20238.385%2024.1019%20236.609C22.7827%20234.733%2022.0243%20232.173%2021.938%20229.609C20.2377%20227.733%2019.3822%20225.173%2018.4153%20222.609C17.8114%20221.405%2018.0486%20219.921%2017.3333%20218.853C17.0817%20216.313%2016.6036%20214.261%2015.1442%20212.269C15.2556%20211.309%2014.2743%20211.309%2014.2743%20210.385C12.9551%20207.917%2012.3512%20205.113%2011.4094%20202.557C9.6948%20199.845%208.74224%20196.761%207.5057%20193.785C4.94994%20190.965%206.54953%20186.521%205.45678%20183.285C4.36042%20180.309%205.45678%20177.357%205.20515%20174.253C5.20515%20170.877%205.09372%20167.229%204.61564%20163.729C3.99737%20162.393%204.48983%20160.229%202.90102%20159.441C2.67456%20157.669%201.32659%20156.185%201.10372%20154.457C0.374019%20153.753%200.737073%20152.417%200.23383%20151.481C-0.467116%20149.333%200.600478%20147.457%200.8521%20145.285C1.33018%20144.349%200.374019%20143.145%201.33018%20142.185C1.69683%20141.637%202.05988%20140.585%202.67815%20140.177C3.99737%20136.777%205.31659%20133.457%207.28283%20130.741C7.62072%20129.937%208.23899%20129.125%208.35042%20128.053C11.6359%20122.937%2017.0853%20128.297%2020.7338%20124.797C21.5498%20124.533%2022.3082%20124.533%2022.8977%20123.617C28.6958%20122.789%2034.7491%20128.361%2040.3243%20129.977C43.484%20131.181%2046.2626%20134.025%2049.9003%20133.501C51.0938%20133.085%2052.4417%20133.197%2053.3979%20132.385C56.7948%20132.017%2059.7999%20132.649%2063.3405%20132.649C65.0264%20132.805%2066.7123%20131.445%2068.4233%20132.233L68.7899%20131.989C73.8727%20132.233%2078.7326%20134.129%2083.5601%20132.513C84.5163%20132.381%2085.6091%20132.801%2086.4538%20132.121C91.3137%20132.229%2095.6667%20129.557%20100.494%20129.557C101.364%20129.821%20102.432%20129.821%20103.417%20129.689C105.832%20130.893%20108.499%20132.641%20110.915%20132.797C112.964%20132.377%20115.268%20130.781%20117.457%20131.985C119.032%20132.377%20120.602%20131.877%20122.202%20131.569C123.999%20131.313%20125.319%20132.641%20127.145%20132.373L127.511%20132.793C130.067%20133.049%20132.454%20131.873%20134.995%20131.713C138.295%20131.565%20141.3%20130.885%20144.557%20130.073C147.249%20130.189%20148.989%20130.605%20151.656%20131.417Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M118.744%20442.212C119.585%20440.596%20119.222%20439.133%20119.7%20437.361C120.077%20436.157%20120.796%20435.088%20121.048%20433.728C122.004%20432.524%20122.004%20430.644%20123.097%20429.44C123.223%20429.048%20123%20428.088%20123.715%20428.212C123.967%20425.948%20125.175%20424.588%20126.019%20422.548C126.131%20422.156%20125.879%20421.612%20126.372%20421.612C126.85%20419.056%20128.435%20417.192%20129.391%20415.16L129.758%20415.309C130.362%20414.065%20130.728%20412.729%20131.724%20411.901C132.425%20410.017%20133.888%20408.816%20133.888%20406.776C134.395%20405.996%20135.096%20405.34%20134.97%20404.368C134.028%20401.416%20136.429%20399.541%20136.796%20396.697V396.148C137.766%20394.68%20138.13%20392.928%20138.971%20391.444C139.449%20390.764%20139.449%20389.692%20140.038%20389.28C141.02%20387.108%20142.256%20385.361%20143.086%20383.085C143.565%20382.961%20143.464%20382.404%20143.69%20382.148C144.42%20381.468%20145.038%20380.377%20145.265%20379.305C147.44%20376.877%20147.695%20373.116%20149.985%20370.812C150.826%20368.148%20152.763%20366.377%20154.226%20363.969C154.956%20363.157%20155.463%20361.805%20156.149%20361.125C156.656%20359.633%20157.623%20358.429%20158.579%20357.077C159.561%20353.053%20163.31%20349.945%20164.884%20346.029C165.725%20346.029%20165.391%20344.668%20166.106%20344.428C167.314%20341.848%20169.363%20339.837%20170.179%20336.977C170.937%20335.713%20171.947%20335.421%20172.551%20333.805C172.778%20333.649%20173.324%20333.601%20173.378%20332.969C174.108%20332.313%20174.388%20332.165%20174.992%20331.353C175.905%20331.117%20175.679%20330.672%20176.383%20330.432L176.915%20330.089C177.012%20329.997%20177.113%20329.908%20177.224%20329.824C177.224%20329.824%20177.224%20329.824%20177.253%20329.824C177.253%20329.824%20180.021%20328.405%20180.495%20327.029C182.559%20325.429%20182.925%20322.74%20184.133%20320.724C184.64%20318.952%20185.959%20317.888%20186.689%20316.264C187.39%20314.648%20188.317%20312.52%20188.738%20311.28C188.486%20310.124%20188.429%20309.861%20188.177%20308.913C189.917%20305.633%20188.964%20301.217%20187.868%20297.693C187.501%20294.997%20186.042%20292.176%20183.626%20290.824C181.94%20289.88%20181.887%20288.021%20180.312%20287.081C180.172%20286.861%20180.495%20286.621%20180.255%20286.533C180.028%20286.313%20179.762%20286.269%20179.467%20286.133C179.385%20286.049%20179.284%20285.96%20179.216%20285.828C179.032%20285.828%20178.878%20285.765%20178.738%20285.681C178.695%20285.633%20178.666%20285.588%20178.626%20285.548C178.554%20285.548%20178.486%20285.525%20178.429%20285.477C177.81%20284.977%20177.95%20283.884%20177.25%20283.384C176.743%20281.104%20174.791%20279.753%20173.95%20277.457C173.317%20274.541%20171.211%20271.661%20168.515%20270.349C167.558%20269.801%20166.52%20269.405%20165.427%20269.341C163.572%20269.105%20161.775%20267.544%20159.866%20267.48C159.697%20267.432%20159.557%20267.416%20159.445%20267.372L159.363%20267.201C157.174%20266.521%20155.966%20266.937%20153.773%20266.521C152.677%20267.045%20151.358%20266.52%20150.15%20266.776C149.672%20267.324%20148.719%20266.52%20148.45%20267.324L148.324%20267.201C147.102%20267.873%20146.034%20267.616%20144.812%20268.004C143.604%20268.552%20142.396%20268.269%20141.44%20269.341C137.199%20270.021%20133.072%20271.905%20129.42%20273.785C127.845%20273.785%20126.429%20274.745%20124.984%20275.417C124.607%20275.681%20124.607%20276.496%20124.003%20275.948C119.747%20278.66%20114.934%20279.997%20111.156%20283.753C109.836%20284.017%20108.866%20284.844%20107.633%20285.112C105.836%20286.448%20104.01%20287.909%20102.212%20289.293C101.371%20289.549%20101.102%20290.761%20100.386%20290.909C99.7968%20292.637%2098.2224%20293.572%2096.8744%20294.54C96.1447%20296.4%2094.2072%20295.745%2093.1252%20296.961C90.4436%20298.053%2088.5205%20300.6%2085.6125%20301.272C79.4334%20306.256%2072.4132%20309.74%2066.4893%20315.272C65.871%20315.552%2066.2376%20316.501%2065.5079%20316.345C63.4842%20319.149%2061.2807%20322.189%2058.7968%20324.681C56.2411%20326.893%2053.5739%20328.992%2051.4675%20330.648C50.2884%20331.444%2048.8003%20332.361%2047.3409%20332.361C46.2445%20332.713%2045.4861%20333.761%2044.6449%20334.573C42.6355%20335.245%2042.9051%20336.556%2041.248%20337.612C39.9001%20339.884%2037.905%20342.029%2036.5283%20343.917C36.6973%20344.745%2037.4557%20345.66%2036.9058%20346.776C37.0316%20349.62%2037.5672%20350.408%2037.79%20353.228C37.3119%20353.76%2037.0891%20354.697%2037.3119%20355.401C38.2933%20356.057%2037.1718%20357.956%2038.3795%20358.612C38.7462%20361.456%2040.2595%20363.073%2040.3745%20366.029C41.3702%20368.061%2041.2444%20370.464%2042.7038%20372.092C46.3272%20377.756%2047.2258%20384.297%2051.241%20389.569C52.3086%20391.029%2052.1972%20392.781%2052.1972%20394.685L52.9269%20399.668C54.8643%20404.292%2057.111%20408.161%2058.9945%20412.465C59.4726%20414.129%2059.9219%20415.84%2060.4539%20417.544C61.1549%20421.856%2061.633%20425.904%2063.0924%20429.928C62.4885%20430.624%2062.7401%20431.813%2062.9809%20432.641C62.7437%20434.369%2063.6963%20436.14%2063.6963%20437.892C63.8221%20438.424%2064.5518%20438.705%2064.16%20439.361C62.4885%20446.797%2065.3965%20453.377%2069.4117%20459.025C70.7309%20462.149%2069.4117%20465.76%2070.0012%20468.868C69.4117%20472.26%2070.9573%20474.468%2071.5756%20477.704C73.204%20479.516%2076.0976%20478.253%2077.9776%20479.805C78.3694%20479.953%2078.6534%20480.264%2078.8762%20480.592H79.1998H79.0739C79.1854%20480.676%2079.2716%20480.789%2079.3543%20480.897C80.5333%20481.421%2082.992%20482.317%2084.0165%20481.249C85.5334%20481.117%2086.7951%20481.641%2088.4522%20481.029C90.4472%20483.521%2093.5925%20482.029%2096.2309%20482.341C96.2309%20482.341%2099.5739%20480.496%2099.6566%20480.496C99.883%20479.144%20101.734%20478.964%20102.435%20478.052C102.324%20476.436%20104.247%20476.692%20104.513%20475.208C105.189%20473.98%20105.469%20474.809%20105.803%20474.201C106.393%20473.109%20106.785%20473.193%20107.629%20472.257C107.586%20471.561%20107.827%20471.028%20108.093%20470.544C108.895%20469.888%20109.793%20469.3%20109.905%20468.488C110.634%20467.152%20110.886%20465.536%20111.842%20464.332C111.716%20462.848%20112.683%20461.904%20113.19%20460.552C113.557%20460.152%20113.302%20459.324%20113.92%20458.936C114.258%20457.732%20115.239%20456.656%20114.988%20455.28C115.128%20455.172%20115.239%20455.172%20115.354%20455.172L116.336%20452.353C116.939%20449.789%20117.795%20447.213%20118.244%20445.065C119.111%20444.385%20118.744%20443.048%20118.744%20442.212Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M403.252%20110.04V1.01637C401.412%200.828371%20400.049%200.132371%20398.198%200.272371C395.15%200.688371%20394.071%201.21637%20391.627%202.46037C389.463%202.30437%20389.463%203.80437%20387.526%203.13237C386.444%202.60837%20384.603%204.03237%20383.651%203.37637C381.487%203.22837%20379.424%203.63237%20377.36%204.58837C376.49%204.98837%20375.786%205.52437%20375.171%205.78437C374.33%206.04037%20373.234%206.20037%20372.518%206.73637C370.344%207.55637%20370.944%2010.5084%20368.769%2010.9244C365.257%2012.4164%20362.112%2014.4244%20359.082%2017.0964C356.414%2018.1804%20354.448%2021.3084%20352.54%2023.0164C348.539%2027.0884%20343.327%2028.0084%20339.34%2031.9324C337.291%2032.7124%20335.494%2034.3524%20333.891%2035.7124C332.935%2035.9644%20332.316%2036.9164%20331.475%2037.3204C330.731%2038.4044%20329.635%2038.7884%20329.045%2039.8684C326.982%2040.9604%20324.818%2041.7684%20322.992%2043.2284C320.451%2045.4004%20317.543%2046.3364%20314.987%2047.9644C312.348%2050.2524%20309.063%2051.8844%20305.918%2052.6844C304.473%2053.2084%20303.139%2054.5604%20301.676%2054.7164C299.401%2055.7724%20297.212%2057.5284%20295.386%2059.4044C293.337%2062.2484%20290.666%2065.3324%20288.477%2068.0444C286.539%2068.8564%20284.853%2070.3244%20283.142%2071.6764C282.186%2072.0764%20281.331%2072.9044%20280.504%2073.2924C279.03%2075.1764%20276.74%2075.5884%20275.31%2077.3244C274.213%2077.2164%20273.595%2078.6764%20272.502%2078.5444C270.816%2079.0764%20269.468%2079.8804%20268.038%2080.7164C265.849%2082.5924%20262.955%2082.9884%20260.399%2083.4044C258.825%2083.4044%20257.254%2084.6324%20255.795%2083.9524C254.22%2085.3124%20252.045%2084.0604%20250.485%2085.5444C249.36%2086.3804%20248.156%2087.0364%20247.089%2087.5604C244.784%2088.9204%20243.102%2090.4044%20241.021%2091.7404C236.416%2093.0924%20231.952%2094.9964%20226.98%2095.2884C224.594%2095.4604%20224.622%2094.7324%20222.739%2095.1084C221.912%2094.5844%20220.352%2094.8044%20219.762%2095.2164L219.748%2095.2404C217.207%2094.9764%20217.207%2097.2964%20215.028%2097.9964C211.391%2098.7764%20208.583%20102.716%20205.186%20104.62C203.022%20106.916%20199.669%20106.528%20197.379%20108.536C194.446%20109.48%20190.301%20111.78%20189.74%20111.78C188.364%20111.188%20186.484%20113.372%20185.021%20113.372C184.291%20113.92%20183.166%20115.496%20182.422%20115.888C181.818%20115.34%20181.34%20116.288%20180.75%20116.044C179.64%20116.824%20177.972%20116.764%20177.238%20118.124C175.412%20119.716%20174.01%20118.716%20174.373%20121.272C173.378%20122.076%20173.867%20123.544%20173.644%20124.336C175.581%20126.344%20175.441%20129.296%20177.63%20130.788C177.63%20131.88%20178.698%20131.724%20179.205%20132.248C181.254%20132.38%20182.21%20134.42%20184.162%20134.544C185.017%20135.636%20186.717%20135.38%20187.433%20136.84C188.162%20137.92%20189.147%20139.34%20190.1%20139.996C192.289%20139.62%20193.357%20140.652%20195.042%20141.612C195.549%20142.136%20196.39%20141.744%20196.897%20142.548C197.965%20142.416%20199.032%20143.384%20200.211%20142.964C201.067%20144.744%20203.019%20144.652%20203.623%20146.556C204.705%20146.556%20204.985%20147.992%20205.826%20148.648C206.782%20148.524%20206.951%20149.46%20207.681%20150.14C209.536%20152.148%20211.164%20153.008%20211.527%20155.428C211.894%20156.632%20212.537%20157.068%20212.652%20158.404C212.16%20159.324%20214.266%20160.156%20214.029%20160.832C214.266%20162.3%20215.503%20163.652%20215.28%20165.144C215.657%20166.324%20215.125%20167.676%20215.744%20168.9C217.092%20170.844%20215.014%20171.876%20215.772%20173.344C215.869%20174.04%20215.183%20173.408%20215.492%20174.548C216.84%20176.736%20215.675%20179.14%20216.531%20181.416L215.478%20185.832C214.173%20187.144%20214.536%20188.44%20213.076%20189.644C212.289%20191.612%20209.173%20193.012%20209.424%20194.908C209.762%20196.924%20208.749%20198.26%20209.734%20199.612C211.768%20200.16%20210.661%20202.588%20212.232%20203.66C214.788%20204.864%20221.585%20208.652%20224.59%20208.784C225.445%20207.972%20226.19%20209.2%20227.146%20208.908C227.875%20210.548%20229.195%20209.064%20230.402%20209.328L230.668%20208.908C232.354%20208.784%20234.166%20208.252%20235.988%20208.516C238.066%20209.196%20240.453%20208.516%20242.027%20207.968L243.487%20207.704C245.776%20206.768%20247.869%20205.564%20249.666%20204.08C250.636%20204.188%20251.014%20203.244%20251.715%20202.72C253.289%20202.172%20254.86%20201.104%20256.56%20200.836C257.782%20200.008%20258.99%20198.828%20260.45%20198.936C261.517%20198.124%20262.991%20198.404%20264.199%20197.748C269.282%20194.512%20272.664%20189.108%20278.732%20188.436C283.336%20185.748%20287.801%20184.804%20292.409%20182.092C292.661%20182.348%20293.365%20182.092%20293.506%20182.508C296.033%20181.28%20298.7%20179.688%20301.593%20179.532C306.565%20177.516%20310.328%20173.612%20315.397%20171.876C317.348%20171.46%20318.808%20169.968%20320.382%20168.752C322.909%20166.236%20326.813%20166.58%20329.566%20164.488L330.436%20164.308C334.157%20162.556%20338.287%20160.564%20341.08%20156.628C342.877%20155.58%20344.592%20154.488%20346.4%20153.152C347.985%20150.44%20351.019%20149.372%20353.42%20147.488L355.85%20144.364C356.932%20144.1%20357.676%20142.92%20358.517%20142.24C360.566%20141.148%20362.281%20139.396%20364.315%20137.78C366.001%20137.536%20367.223%20135.372%20368.557%20134.536C369.528%20133.732%20370.876%20133.732%20371.465%20132.528C372.069%20130.776%20374.006%20131.456%20374.977%20130.1C376.915%20129.708%20378.011%20127.692%20379.722%20126.992L385.142%20123.912C388.428%20120.256%20393.148%20121.848%20395.703%20117.28C398.651%20114.852%20399.593%20112.336%20402.95%20110.524M125.483%20479.432L127.561%20480.236C131.184%20480.808%20135.789%20477.868%20139.132%20477.344C140.311%20478.288%20142.277%20478.596%20143.553%20478.46C145.983%20478.984%20147.863%20477.5%20150.221%20478.484C152.328%20478.352%20154.715%20477.696%20156.512%20479.032C158.449%20478.812%20160.768%20481.352%20162.802%20481.4C171.566%20481.112%20178.895%20475.596%20187.235%20479.492C194.971%20479.532%20201.416%20485.744%20209.169%20485.812C209.295%20486.36%20210.434%20485.812%20210.305%20486.468C214.432%20486.82%20218.968%20486.796%20222.843%20488.936C230.607%20490.164%20238.063%20494.32%20245.816%20496.02C248.623%20497.028%20251.517%20496.192%20254.353%20495.816C259.325%20494.396%20264.127%20498.012%20269.152%20497.332L270.331%20497.856C276.384%20498.472%20282.689%20498.292%20289.26%20496.412C292.348%20496.412%20295.227%20498.952%20298.498%20498.576C302.305%20496.24%20306.978%20500.224%20311.345%20499.608L316.525%20502.364C318.125%20502.888%20319.868%20502.956%20321.41%20502.732C324.807%20502.928%20328.179%20506.912%20331.914%20506.388C334.272%20507.348%20340.523%20509.052%20342.755%20509.036C344.581%20508.724%20346.307%20509.8%20347.895%20508.644C349.847%20506.784%20351.91%20509.228%20354.074%20508.184C356.842%20509.192%20359.607%20510.504%20362.245%20510.956L371.372%20511.16C378.014%20508.88%20383.112%20516.864%20389.427%20512.768C394.862%20511.852%20400.269%20509.972%20403.313%20510.36L403.328%20444.744C403.13%20444.68%20402.4%20444.064%20402.4%20444.064C402.023%20443.916%20401.502%20443.828%20401.11%20443.736C399.061%20442.908%20398.331%20442.448%20396.279%20442.316C395.437%20441.776%20394.341%20441.512%20393.356%20441.38C391.25%20440.128%20389.115%20439.824%20387.066%20438.74C386.868%20438.584%20386.645%20438.488%20386.433%20438.32C385.477%20437.928%20385.322%20436.568%20384.258%20436.304C384.244%20436.304%20384.201%20436.264%20384.201%20436.264C383.119%20435.208%20381.703%20434.648%20380.887%20433.592C380.732%20433.568%20380.635%20433.552%20380.549%20433.508C380.437%20433.444%20380.351%20433.384%20380.297%20433.288C379.664%20433.204%20379.089%20433.024%20378.557%20432.716C377.518%20432.144%20376.648%20431.34%20375.779%20430.636C375.696%20430.66%20375.624%20430.636%20375.552%20430.636C375.455%20430.528%20375.34%20430.416%20375.214%20430.332C375.017%20430.356%20374.794%20430.332%20374.567%20430.248C374.398%20430.14%20374.201%20429.96%20374.089%20429.832C373.949%20429.808%20373.852%20429.74%20373.712%20429.724C373.64%20429.652%20373.557%20429.568%20373.5%20429.52C373.331%20429.48%20373.162%20429.436%20373.022%20429.372C372.346%20428.956%20371.814%20428.364%20371.084%20428.084C370.858%20427.912%20370.577%20427.772%20370.311%20427.708C369.427%20426.928%20368.417%20426.308%20367.378%20425.74C365.778%20424.864%20364.035%20424.184%20362.45%20423.356C362.378%20422.808%20361.957%20422.568%20361.508%20422.396C361.271%20422.216%20360.947%20422.084%20360.609%20421.96C360.498%20421.388%20360.16%20421.172%20359.725%20421.04C359.319%20420.648%20358.672%20420.648%20358.054%20420.54C357.885%20419.752%20357.213%20419.812%20356.875%20419.056C356.734%20419.024%20356.565%20418.94%20356.397%20418.876C356.382%20418.828%20356.339%20418.804%20356.339%20418.768C355.498%20418.524%20354.668%20418.024%20353.923%20417.712C348.672%20413.212%20343.168%20409.18%20338.478%20403.588C336.314%20401.16%20334.491%20398.024%20332.424%20395.62C330.85%20393.324%20328.438%20392.252%20326.96%20390.088C325.612%20389.408%20324.322%20388.472%20323.704%20386.868C323.52%20386.852%20323.366%20386.784%20323.197%20386.696C323.197%20386.648%20323.168%20386.612%20323.139%20386.54C323.057%20386.524%20322.97%20386.5%20322.888%20386.476C322.298%20386.016%20321.82%20385.256%20321.119%20385.056C320.95%20384.9%20320.767%20384.812%20320.587%20384.752C320.336%20384.204%20320.138%20383.588%20319.577%20383.572C319.437%20383.392%20319.268%20383.26%20319.045%20383.244C318.905%20383%20318.653%20382.824%20318.398%20382.824C318.301%20382.716%20318.2%20382.636%20318.075%20382.588C317.471%20382.016%20316.993%20381.12%20316.205%20380.852C316.008%20380.704%20315.814%20380.596%20315.587%20380.548C314.476%20379.784%20313.707%20378.54%20312.471%20377.992C312.244%20377.884%20311.993%20377.772%20311.755%20377.664C310.45%20376.412%20308.736%20375.624%20307.248%20374.444C307.205%20374.444%20307.165%20374.444%20307.136%20374.444C306.982%20374.36%20306.827%20374.272%20306.673%20374.164C305.997%20374.272%20305.31%20374.1%20304.663%20373.788C304.016%20373.396%20303.427%20372.912%20302.866%20372.428C302.74%20372.388%20302.614%20372.32%20302.46%20372.28C302.417%20372.208%20302.363%20372.196%20302.291%20372.132C297.966%20370.24%20294.077%20369.304%20289.835%20367.18C289.598%20367.032%20289.329%20366.924%20289.077%20366.884C289.019%20366.836%20288.994%20366.812%20288.951%20366.792L289.077%20366.636C288.951%20366.38%20288.851%20366.112%20288.725%20365.98C288.527%20365.916%20288.347%20365.808%20288.178%20365.724C288.15%20365.724%20288.15%20365.676%20288.135%20365.676C288.092%20365.652%20288.038%20365.612%20287.981%20365.592C286.676%20364.78%20285.748%20363.34%20284.584%20362.224C284.472%20362.2%20284.357%20362.152%20284.246%20362.14C284.163%20362.048%20284.134%20361.984%20284.048%20361.92C283.908%20361.896%20283.797%20361.848%20283.671%20361.812C283.024%20361.312%20282.632%20360.404%20281.931%20359.928C280.906%20359.404%20280.655%20358.2%20279.699%20357.96C279.627%20357.876%20279.515%20357.804%20279.418%20357.764C277.423%20355.224%20276.553%20352.336%20274.195%20350.216C273.829%20350.084%20274.055%20349.272%20273.466%20349.272C273.591%20348.484%20273.128%20347.936%20272.484%20347.632C272.765%20346.696%20271.277%20346.844%20271.417%20345.772C270.967%20345.164%20270.489%20344.46%20269.788%20344.248C269.691%20344.156%20269.591%20344.068%20269.465%20344.02C266.755%20340.936%20264.817%20337.784%20261.729%20335.536C260.55%20334.772%20259.371%20333.48%20258.052%20332.864C257.574%20332.584%20257.082%20332.364%20256.55%20332.256C256.521%20332.256%20256.492%20332.232%20256.452%20332.232C256.172%20331.988%20255.974%20331.684%20256.032%20331.224C255.751%20331.004%20255.694%20331.356%20255.64%20331.66C255.5%20331.448%20255.442%20331.2%20255.471%20330.916C255.104%20330.652%20255.104%20331.308%20254.993%20331.596C254.684%20331.572%20254.404%20331.448%20254.152%20331.308C253.113%20330.676%20252.326%20329.652%20251.244%20329.192C251.089%20329.108%20250.978%20329.012%20250.838%20328.972C250.78%20328.924%20250.755%20328.924%20250.726%20328.9C250.615%20328.86%20250.5%20328.792%20250.388%20328.776C250.248%20328.532%20249.997%20328.572%20249.799%20328.644L249.292%20328.464C249.292%20328.424%20249.263%20328.4%20249.263%20328.34L247.157%20327.576C246.876%20327.248%20246.51%20327.004%20246.118%20326.848C245.442%20326.412%20244.601%20326.264%20243.871%20325.912C243.196%20325.34%20242.441%20324.888%20241.653%20324.512C240.838%20324.028%20240.011%20323.7%20239.238%20323.348C237.441%20323.348%20235.924%20322.192%20234.353%20321.604C233.792%20321.12%20233.257%20320.416%20232.599%20320.196C232.221%20319.932%20229.216%20320.588%20228.767%20320.72C225.525%20321.86%20225.679%20322.212%20223.037%20324.524C222.645%20324.944%20221.901%20324.484%20221.901%20325.252C220.92%20326.236%20220.92%20326.104%20219.022%20326.432C218.742%20326.628%20218.447%20327.064%20218.195%20327.004C217.843%20326.74%20217.494%20327.94%20217.113%20327.832C216.721%20327.552%20216.286%20328.076%20215.765%20328.34C214.306%20329.276%20213.702%20331.052%20212.128%20331.748C211.412%20332.108%20210.78%20333.348%20210.064%20333.896C208.619%20336.98%20205.682%20338.856%20203.745%20341.42C202.818%20343.592%20200.136%20344.396%20199.658%20347.084C199.054%20346.936%20198.914%20347.74%20198.464%20347.896C198.213%20348.7%20197.483%20348.812%20197.242%20349.78C195.165%20351.532%20193.101%20353.404%20191.667%20355.7C189.478%20358.944%20187.3%20361.92%20185.362%20365.528C185.125%20365.808%20185.265%20366.62%20184.647%20366.748C180.52%20373.78%20176.782%20381.296%20171.926%20388.168L169.629%20391.816C169.262%20392.216%20169.402%20393.02%20168.787%20393.152C168.421%20394.488%20167.58%20395.448%20166.85%20396.388C166.483%20398.14%20165.276%20399.496%20164.546%20400.856C164.068%20402.84%20163.115%20404.356%20162.357%20406.084C160.657%20411.068%20158.018%20415.124%20156.081%20419.976C155.225%20422.14%20154.129%20424.156%20153.622%20426.56C152.666%20428.724%20152.946%20431.676%20151.598%20433.576C149.661%20436.272%20148.201%20438.828%20146.501%20441.656C146.264%20442.616%20145.056%20442.876%20145.167%20443.928C142.878%20446.224%20141.292%20449.044%20139.592%20451.756C139.858%20453.092%20138.51%20453.772%20138.51%20454.864C137.428%20455.936%20136.573%20457.552%20135.254%20458.78C135.365%20459.568%20134.524%20459.852%20134.384%20460.532C132.446%20466.46%20128.823%20471.424%20126.17%20477.072%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M1003.13%20376.681C994.671%20376.681%20986.023%20384.073%20976.954%20401.745H976.562V378.689H958.646V479.273H976.562V426.641C976.562%20409.385%20986.224%20395.713%20998.496%20395.713C1002.27%20395.713%201008.3%20398.925%201013.41%20403.761L1022.89%20386.525C1016.13%20379.893%201009.8%20376.681%201003.13%20376.681Z%22%20fill%3D%22white%22%2F%3E%20%3Cpath%20d%3D%22M2066.81%20391.729H2067.2C2074.04%20382.105%202084.1%20376.501%202094.17%20376.501C2111.29%20376.501%202124.98%20389.493%202124.98%20417.049V479.105H2107.06V416.825C2107.06%20402.045%202100.23%20392.409%202089.34%20392.409C2081.48%20392.409%202075.26%20396.449%202066.8%20406.965V479.105H2048.87V378.517H2066.8M2028.34%20449.973C2017.87%20457.597%202007.62%20462.073%201996.75%20462.073C1979.43%20462.073%201969.16%20451.769%201966.35%20431.837H2029.97C2029.97%20394.649%202014.67%20376.501%201990.71%20376.501C1965.75%20376.501%201948.42%20397.109%201948.42%20427.573C1948.42%20455.353%201964.12%20481.113%201992.31%20481.113C2007.62%20481.113%202017.47%20477.309%202028.34%20469.245M1966.75%20418.613C1969.16%20402.713%201977.42%20393.753%201991.11%20393.753C2003.8%20393.753%202011.64%20403.377%202012.25%20418.613H1966.75ZM1913.21%20479.105H1931.12V326.325H1913.21V479.105ZM1871.14%20479.105H1889.05V326.325H1871.14V479.105ZM1856.84%20461.181C1852.8%20464.541%201849.19%20466.557%201847.38%20466.557C1845.16%20466.557%201843.95%20465.205%201843.95%20461.401V409.657C1843.95%20386.805%201829.46%20376.501%201811.15%20376.501C1798.06%20376.501%201788.18%20380.977%201781.16%20390.165V411.901C1789.81%20400.473%201799.86%20395.317%201809.73%20395.317C1820.61%20395.317%201826.03%20400.473%201826.03%20413.013V418.405L1810.12%20424.669C1795.65%20430.497%201779.33%20436.545%201779.33%20456.473C1779.33%20469.465%201788.18%20481.113%201801.47%20481.113C1809.73%20481.113%201817.99%20477.753%201825.84%20470.809C1827.43%20477.981%201831.68%20481.113%201839.54%20481.113C1845.16%20481.113%201848.59%20479.317%201856.84%20473.269M1826.04%20458.713C1821.21%20463.861%201815.97%20467.001%201810.34%20467.001C1802.9%20467.001%201797.45%20461.181%201797.45%20452.893C1797.45%20441.009%201810.73%20435.197%201826.04%20429.369V458.713ZM1759.61%20468.565C1741.28%20477.533%201726.4%20481.113%201707.27%20481.113C1665.19%20481.113%201634.19%20448.409%201634.19%20403.605C1634.19%20358.581%201665.99%20324.309%201707.86%20324.309C1723.98%20324.309%201735.24%20327.225%201756.8%20337.309V359.481C1740.69%20349.621%201723.98%20344.473%201707.47%20344.473C1677.67%20344.473%201654.53%20369.777%201654.53%20402.933C1654.53%20436.989%201677.48%20460.957%201710.08%20460.957C1720.77%20460.957%201730.41%20458.261%201739.89%20454.901V423.549H1713.5V403.821H1759.6M1614.07%20467.669C1614.07%20475.069%201608.63%20481.113%201601.99%20481.113C1595.34%20481.113%201589.92%20475.065%201589.92%20467.669C1589.92%20460.285%201595.34%20454.241%201601.99%20454.241C1608.64%20454.237%201614.07%20460.285%201614.07%20467.669ZM1545.63%20378.517H1574.22V396.445H1545.63V447.961C1545.63%20459.837%201553.27%20463.197%201558.51%20463.197C1564.95%20463.197%201571.61%20460.729%201578.85%20455.805V474.389C1572.6%20478.193%201562.96%20481.109%201557.11%20481.109C1537.57%20481.109%201527.71%20467.665%201527.71%20449.525V396.445H1512.01V394.193L1545.63%20357.677M1500.14%20359.925C1488.47%20347.613%201477.19%20344.017%201467.93%20344.017C1455.25%20344.017%201446.19%20351.417%201446.19%20362.165C1446.19%20391.509%201505.57%20391.065%201505.57%20439.665C1505.57%20463.641%201489.27%20481.109%201467.11%20481.109C1452.23%20481.109%201440.15%20476.633%201428.67%20467.001V439.221C1438.74%20453.557%201451.42%20461.401%201464.92%20461.401C1480.22%20461.401%201487.25%20450.649%201487.25%20442.145C1487.25%20410.561%201427.86%20406.965%201427.86%20365.073C1427.86%20340.213%201444.37%20324.309%201469.53%20324.309C1480.02%20324.309%201490.48%20327.889%201500.14%20335.061M1330.43%20378.517H1359.02V396.445H1330.43V447.961C1330.43%20459.837%201338.1%20463.197%201343.32%20463.197C1349.75%20463.197%201356.41%20460.729%201363.65%20455.805V474.389C1357.41%20478.193%201347.76%20481.109%201341.92%20481.109C1322.37%20481.109%201312.51%20467.665%201312.51%20449.525V396.445H1296.82V394.193L1330.43%20357.677M1294.6%20461.181C1290.58%20464.541%201286.96%20466.557%201285.15%20466.557C1282.93%20466.557%201281.74%20465.205%201281.74%20461.401V409.657C1281.74%20386.805%201267.23%20376.501%201248.91%20376.501C1235.82%20376.501%201225.96%20380.977%201218.91%20390.165V411.901C1227.56%20400.473%201237.63%20395.317%201247.5%20395.317C1258.37%20395.317%201263.82%20400.473%201263.82%20413.013V418.405L1247.91%20424.669C1233.4%20430.497%201217.1%20436.545%201217.1%20456.473C1217.1%20469.465%201225.96%20481.113%201239.24%20481.113C1247.5%20481.113%201255.76%20477.753%201263.59%20470.809C1265.22%20477.981%201269.43%20481.113%201277.3%20481.113C1282.93%20481.113%201286.34%20479.317%201294.6%20473.269M1269.63%20338.417C1264.41%20338.417%201260.18%20342.901%201260.18%20348.721C1260.18%20354.557%201264.41%20359.261%201269.63%20359.261C1274.88%20359.261%201278.9%20354.557%201278.9%20348.721C1278.9%20342.901%201274.88%20338.417%201269.63%20338.417ZM1232.21%20338.417C1226.98%20338.417%201222.73%20342.901%201222.73%20348.721C1222.73%20354.557%201226.98%20359.261%201232.21%20359.261C1237.45%20359.261%201241.47%20354.557%201241.47%20348.721C1241.47%20342.901%201237.45%20338.417%201232.21%20338.417ZM1263.82%20458.713C1258.99%20463.861%201253.74%20467.001%201248.12%20467.001C1240.67%20467.001%201235.22%20461.181%201235.22%20452.893C1235.22%20441.009%201248.51%20435.197%201263.82%20429.369V458.713ZM1173.42%20378.517H1202.01V396.445H1173.42V447.961C1173.42%20459.837%201181.09%20463.197%201186.31%20463.197C1192.74%20463.197%201199.4%20460.729%201206.64%20455.805V474.389C1200.41%20478.193%201190.73%20481.109%201184.89%20481.109C1165.37%20481.109%201155.5%20467.665%201155.5%20449.525V396.445H1139.8V394.193L1173.42%20357.677M1115.85%20359.925C1110.01%20359.925%201105.18%20354.557%201105.18%20348.057C1105.18%20341.557%201110.01%20336.181%201115.85%20336.181C1121.69%20336.181%201126.52%20341.557%201126.52%20348.057C1126.52%20354.557%201121.69%20359.925%201115.85%20359.925ZM1124.7%20479.105H1106.8V378.517H1124.7V479.105ZM1082.43%20404.505C1072.38%20397.113%201062.92%20393.973%201056.28%20393.973C1049.01%20393.973%201044.38%20397.777%201044.38%20403.161C1044.38%20407.645%201050.43%20413.013%201066.34%20423.317C1081.23%20434.301%201086.66%20441.245%201086.66%20451.545C1086.66%20469.249%201073.98%20481.117%201056.88%20481.117C1045.78%20481.117%201037.13%20478.657%201025.47%20471.937V450.421C1037.13%20459.389%201047.81%20463.649%201055.05%20463.649C1062.3%20463.205%201068.33%20459.393%201068.33%20452.221C1068.33%20438.329%201026.07%20430.949%201026.07%20403.829C1026.07%20386.813%201037.75%20376.509%201055.86%20376.509C1064.32%20376.509%201072.98%20379.189%201082.43%20384.797M934.886%20449.973C924.412%20457.597%20914.146%20462.073%20903.265%20462.073C885.964%20462.073%20875.687%20451.769%20872.88%20431.837H936.486C936.486%20394.649%20921.195%20376.501%20897.226%20376.501C872.276%20376.501%20854.961%20397.109%20854.961%20427.573C854.961%20455.353%20870.658%20481.113%20898.854%20481.113C914.146%20481.113%20924.016%20477.309%20934.883%20469.245M873.271%20418.613C875.687%20402.713%20883.944%20393.753%20897.632%20393.753C910.31%20393.753%20918.175%20403.377%20918.765%20418.613H873.271ZM764.172%20378.517H783.705L808.065%20440.345L831.822%20378.517H850.945L811.067%20481.109H805.028M742.633%20359.925C736.792%20359.925%20731.961%20354.557%20731.961%20348.057C731.961%20341.557%20736.792%20336.181%20742.633%20336.181C748.474%20336.181%20753.305%20341.557%20753.305%20348.057C753.305%20354.557%20748.474%20359.925%20742.633%20359.925ZM751.505%20479.105H733.575V378.517H751.505V479.105ZM652.049%20391.729H652.455C659.292%20382.105%20669.361%20376.501%20679.415%20376.501C696.532%20376.501%20710.221%20389.493%20710.221%20417.049V479.105H692.305V416.825C692.305%20402.045%20685.454%20392.409%20674.584%20392.409C666.748%20392.409%20660.5%20396.449%20652.046%20406.965V479.105H634.13V378.517H652.046M612.793%20419.057C612.793%20456.473%20592.67%20481.113%20551.81%20481.113C522.802%20481.113%20494.635%20462.965%20494.635%20421.309V326.325H514.348V416.605C514.348%20433.857%20516.371%20441.013%20522.604%20447.965C530.469%20456.701%20540.326%20460.957%20552.202%20460.957C567.296%20460.957%20578.18%20455.573%20584.413%20448.637C591.462%20440.793%20593.062%20429.597%20593.062%20415.261V326.325H612.789%22%20fill%3D%22white%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip0_6822_34042%22%3E%20%3Crect%20width%3D%222128%22%20height%3D%22516%22%20fill%3D%22white%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--maryland { aspect-ratio:5.0078; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221287%22%20height%3D%22257%22%20viewBox%3D%220%200%201287%20257%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M838.461%204.78516L836.693%2023.0441H838.694C840.415%2013.0677%20842.415%2010.4643%20846.928%2010.4643H866.561V66.4625C866.561%2072.586%20864.514%2074.7423%20857.628%2074.7423H853.488V76.8473H889.031V74.7423H884.844C877.959%2074.7423%20875.958%2072.586%20875.958%2066.4625V10.4643L895.544%2010.4653C900.057%2010.4653%20902.104%2013.0687%20903.779%2023.045H905.826L904.011%204.78609H901.871C901.639%206.13074%20899.964%206.47238%20898.382%206.47238H844.137C843.346%206.47238%20842.555%206.36037%20841.857%206.1354C841.206%205.90297%20840.741%205.45491%20840.601%204.78609L838.461%204.78516ZM692.241%204.79402C680.749%204.79402%20672.282%2011.7954%20672.282%2021.1571C672.282%2040.8881%20708.291%2045.8518%20708.291%2062.0884C708.291%2070.9936%20700.335%2075.3855%20692.799%2075.3855C684.006%2075.3855%20676.19%2069.528%20673.864%2059.4887H671.724L674.05%2076.8463H675.958C676.423%2075.9689%20677.214%2075.3855%20678.191%2075.3855C679.773%2075.3855%20687.635%2078.5032%20693.776%2078.5032C706.942%2078.5032%20716.665%2070.2001%20716.665%2059.1526C716.665%2038.4056%20680.656%2034.1224%20680.656%2018.1126C680.656%2011.7964%20685.82%207.51086%20693.218%207.51086C700.987%207.51086%20708.198%2012.7018%20711.315%2020.8196H713.222L711.315%206.47145H709.5C708.849%207.39931%20708.43%207.62007%20707.5%207.62007C703.592%207.62007%20701.685%204.79402%20692.241%204.79402ZM1147%204.79402C1122.95%204.79402%201105.69%2020.6465%201105.69%2043.1811C1105.69%2064.3567%201124.34%2078.5126%201146.44%2078.5126C1168.35%2078.5126%201186.64%2062.5457%201186.64%2039.6713C1186.64%2019.2883%201168.35%204.79402%201147%204.79402ZM584.169%205.42318C576.818%205.42318%20574.585%205.52912%20569.933%205.75129C565.327%206.01686%20558.442%206.47145%20555.743%206.47145V8.568H558.209C564.769%208.568%20566.676%2010.6141%20566.676%2017.6291V65.3055C566.676%2072.9225%20564.303%2074.7428%20557.651%2074.7428H555.743V76.8477H587.658V74.7428H585.053C578.772%2074.7428%20576.027%2073.0346%20576.027%2066.211V47.0004C577.842%2047.1124%20579.33%2047.2197%20581.796%2047.2197C584.82%2047.2197%20586.634%2047.1124%20589.426%2047.0004C592.124%2048.816%20596.078%2052.1111%20601.01%2057.1097L608.5%2064.6241C618.549%2074.6634%20623.62%2078.99%20643.345%2078.0846V76.017C634.646%2075.4522%20627.76%2071.2563%20621.108%2064.5681L612.222%2055.6162C606.872%2050.2908%20603.522%2047.1077%20599.335%2043.8752C608.593%2041.156%20614.362%2034.0192%20614.362%2025.5252C614.362%2013.9755%20604.964%205.42318%20584.169%205.42318ZM14.4534%206.47145V8.568C22.1199%208.68235%2024.1487%209.81557%2024.1487%2017.0457V50.0467C24.1487%2066.2049%2035.2202%2078.5219%2056.7257%2078.5219C81.1547%2078.5219%2090.0637%2063.4885%2090.0637%2049.482V18.9695C90.0637%2011.7357%2092.7667%208.68235%20100.322%208.568V6.47145H73.832V8.568C83.1784%209.02539%2084.8625%2010.9479%2084.8625%2021.7951V48.1238C84.8625%2067.3297%2071.9153%2072.6411%2059.196%2072.6411C42.4191%2072.6411%2033.5258%2063.4839%2033.5258%2048.2311V16.8179C33.5258%2010.2636%2036.2297%208.568%2042.4214%208.568H43.43V6.47145H14.4534ZM137.557%206.47145V8.568C141.502%208.68235%20144.437%209.59154%20147.033%2011.4034V67.1496C147.033%2072.3629%20144.782%2074.7433%20137.789%2074.7433H137.338V76.8482H163.414V74.7433C153.858%2074.7433%20152.058%2073.0444%20152.058%2064.8859V16.2807L210.29%2077.6883H213.188V14.4605C213.188%2010.0424%20214.994%208.56987%20223.447%208.56987V6.47332H197.143V8.56987C206.14%208.79856%20208.164%2010.0457%20208.164%2016.9565V62.0435L155.203%206.47472L137.557%206.47145ZM268.792%206.47145V8.568C275.105%208.91105%20277.241%2010.609%20277.241%2016.7269V64.9961C277.241%2072.5851%20275.785%2074.396%20268.792%2074.7414V76.8463H296.213V74.7414C288.434%2074.7414%20286.629%2072.4684%20286.629%2065.7895V17.749C286.629%2010.1577%20289.109%208.568%20296.213%208.568V6.47145H268.792ZM336.264%206.47145V8.568C343.149%208.568%20344.503%2010.2641%20347.322%2017.3831L371.784%2078.52H377.399L400.623%2018.2839C403.326%2011.2788%20406.364%208.56613%20412.231%208.56613V6.46958H386.085V8.56613C393.743%208.56613%20396.562%209.92432%20396.562%2013.3156C396.562%2014.8992%20395.887%2017.1628%20394.645%2020.3259L376.855%2066.9918L356.585%2016.3703C354.44%2011.1696%20356.92%208.79483%20367.276%208.56613V6.46958L336.264%206.47145ZM450.919%206.47145V8.568H453.398C460.954%208.568%20462.414%2011.2979%20462.414%2017.6473V65.4357C462.414%2072.2453%20460.837%2074.7423%20451.817%2074.7423H448.667V76.8473H508.616L510.43%2059.9843H508.383C505.545%2069.7763%20503.219%2072.8427%20495.357%2072.8427H477.911C473.724%2072.8427%20471.817%2071.8253%20471.817%2066.6026V42.3886H490.937C495.59%2042.3886%20497.73%2043.2973%20498.614%2051.3685H500.707V29.8817H498.614C498.055%2036.4668%20496.148%2038.3962%20492.054%2038.3962H471.817V10.4653H495.683C499.73%2010.4653%20502.522%2012.5072%20503.964%2022.1606H506.011L505.127%206.47238L450.919%206.47145ZM768.398%206.47145V8.568C774.725%208.91105%20776.865%2010.609%20776.865%2016.7269V64.9961C776.865%2072.5851%20775.376%2074.396%20768.398%2074.7414V76.8463H795.8V74.7414C788.031%2074.7414%20786.216%2072.4684%20786.216%2065.7895V17.749C786.216%2010.1577%20788.728%208.568%20795.8%208.568V6.47145H768.398ZM941.229%206.47145V8.568C948.58%208.7967%20951.185%2010.3803%20956.721%2019.1063L976.586%2050.6115V66.583C976.586%2072.1324%20974.586%2074.7414%20967.701%2074.7414H965.607V76.8463H996.545V74.7414H995.056C988.171%2074.7414%20985.984%2072.3611%20985.984%2066.3543V49.3606L1004.83%2017.5199C1007.94%2012.1922%201011.25%209.13648%201018.88%208.568V6.47145H993.381V8.568C1000.64%208.568%201002.78%2010.4947%20999.15%2016.7269L983.146%2043.9195L965.281%2015.9339C961.885%2010.7201%20962.444%208.568%20971.143%208.568V6.47145H941.229ZM1214.22%206.47145V8.568C1222.13%208.68235%201222.69%2011.9672%201222.69%2019.2244V63.6099C1222.69%2072.8045%201221.43%2074.284%201214.46%2074.7414V76.8463H1241.9V74.7414C1233.44%2074.7414%201232.09%2072.3517%201232.09%2065.9995V41.1299H1252.98C1258.37%2041.1299%201260.75%2043.1779%201260.98%2049.762H1262.89V29.8719H1260.98C1260.65%2034.7525%201258.61%2037.137%201254.42%2037.137H1232.09V10.4643H1253.49C1260.51%2010.4643%201262.75%2013.19%201262.89%2019.7714H1264.75V6.47145H1214.22ZM1144.07%207.51086C1162.68%207.51086%201176.03%2022.3468%201176.03%2043.4089C1176.03%2059.4887%201167.24%2075.7962%201148.81%2075.7962C1130.67%2075.7962%201116.29%2060.8422%201116.29%2039.6713C1116.29%2026.0816%201124.2%207.51086%201144.07%207.51086ZM581.656%207.51972C599.009%207.51972%20603.708%2015.6726%20603.708%2026.2071C603.708%2039.7973%20595.52%2045.1227%20583.006%2045.1227C580.447%2045.1227%20578.725%2045.2305%20576.027%2044.8945V7.74796C578.074%207.51926%20579.516%207.51972%20581.656%207.51972ZM275.059%20100.548L277.166%20105.682L234.626%20221.935C227.155%20242.289%20224.591%20244.87%20209.411%20245.108H209.509V249.654H263.382V245.108H259.651C246.796%20245.108%20240.711%20242.765%20240.711%20236.446C240.711%20233.169%20243.758%20226.155%20245.391%20221.707L258.948%20184.952H307.308L322.972%20227.559C323.907%20229.898%20325.545%20233.403%20325.545%20237.151C325.545%20243.704%20320.628%20245.108%20307.308%20245.108H301.237V249.654H365.434H365.508H431.556V245.108H426.159C413.003%20245.108%20407.36%20241.617%20407.36%20227.639V188.261C411.119%20188.499%20414.175%20188.737%20419.344%20188.737C425.685%20188.737%20429.444%20188.499%20435.315%20188.261C440.954%20192.004%20449.179%20198.748%20459.516%20208.998L474.887%20224.376C495.59%20245.211%20506.104%20254.084%20546.997%20252.207V248.007C528.993%20246.84%20514.757%20238.21%20500.94%20224.442L482.517%20206.011C471.631%20195.042%20464.68%20188.499%20455.99%20181.615C475.12%20175.99%20486.936%20161.228%20486.936%20143.655C486.936%20119.754%20467.723%20101.85%20424.275%20101.85C409.011%20101.85%20404.345%20102.084%20394.826%20102.565C385.294%20103.008%20371.044%20103.946%20365.434%20103.946V108.497H370.574C384.131%20108.497%20388.095%20112.707%20388.095%20127.241V225.772C388.095%20241.379%20383.191%20245.108%20369.402%20245.108H365.508H365.434C353.798%20245.094%20348.909%20242.737%20344.242%20230.355L295.394%20100.548H275.059ZM848.496%20100.548L850.636%20105.682L808.068%20221.935C800.624%20242.299%20798.065%20244.875%20782.853%20245.108V249.654H836.865V245.108H833.097C820.257%20245.108%20814.162%20242.765%20814.162%20236.446C814.162%20233.169%20817.233%20226.155%20818.861%20221.707L832.399%20184.952H880.783L896.414%20227.559C897.345%20229.898%20899.019%20233.403%20899.019%20237.151C899.019%20243.704%20894.088%20245.108%20880.783%20245.108H874.688V249.654H938.982V245.108C927.259%20245.108%20922.374%20242.765%20917.675%20230.355L868.873%20100.548H848.496ZM1191.79%20101.85C1179.6%20101.85%201165.36%20102.084%201152.57%20102.565C1139.82%20103.003%201128.47%20103.475%201119.86%20103.941V103.764H1117.21V103.946H1117.86V108.133H1119.86V108.114H1124.33C1138.15%20108.114%201142.1%20111.866%201142.1%20127.11V228.031C1142.1%20241.599%201136.28%20245.108%201123.63%20245.108H1119.68V249.654H1194.34C1253.57%20249.654%201280.74%20207.215%201280.74%20171.888C1280.74%20133.294%201253.57%20101.85%201191.79%20101.85ZM1117.86%20108.133H1117.21V103.946H1063.24V108.497C1081.9%20108.968%201086.09%20111.54%201086.09%20125.826V219.046L976.2%20103.946H939.587V108.497C947.775%20108.735%20953.823%20110.602%20959.22%20114.349V229.436C959.22%20240.198%20954.567%20245.108%20940.052%20245.108H939.122V249.654H993.228V245.108C973.409%20245.108%20969.687%20241.599%20969.687%20224.759V124.393L1090.51%20251.367H1096.55V120.674C1096.55%20111.54%201100.32%20108.497%201117.86%20108.497V108.133ZM14.9512%20103.913V108.114C29.4453%20109.057%2029.9166%20113.281%2028.9717%20128.762L23.3653%20220.012C22.1962%20241.361%2020.0999%20245.108%203.03911%20245.108L3.03906%20249.654H51.7528V245.108C41.2359%20244.637%2032.2831%20242.056%2032.9898%20230.094L39.3685%20124.534H39.8319L99.4273%20249.654H104.796L162.986%20124.534H163.461L170.239%20229.627C171.174%20242.061%20160.418%20245.108%20149.43%20245.108V249.654H209.374V245.108C192.435%20245.108%20190.56%20245.052%20189.165%20223.532L181.688%20117.267C181.219%20109.29%20185.657%20109.057%20197.106%20108.114V103.913H162.758L106.671%20222.117L50.3506%20103.913H14.9512ZM506.974%20103.946V108.497C522.094%20108.963%20527.444%20112.235%20538.888%20130.246L580.665%20195.28V228.259C580.665%20239.727%20576.432%20245.108%20561.824%20245.108H557.311V249.654H621.652V245.108H618.581C604.345%20245.108%20599.926%20240.194%20599.926%20227.797V192.709L638.679%20126.974C645.192%20115.978%20651.938%20109.668%20667.756%20108.497H669.896C684.643%20108.497%20688.365%20113.649%20688.365%20126.064V229.664C688.365%20241.594%20684.411%20245.108%20673.664%20245.108H665.941V249.654H770.245L788.249%20215.396H784.062C769.314%20235.9%20765.127%20241.286%20751.357%20241.286H716.977C710.184%20241.286%20707.626%20238.948%20707.626%20232.628V124.65C707.626%20110.13%20711.626%20108.497%20726.793%20108.497H735.446V103.946H667.756H666.639H615.092V108.497C630.026%20108.497%20634.446%20112.469%20627.002%20125.336L594.157%20181.479L556.613%20123.703C549.588%20112.94%20550.751%20108.497%20569.128%20108.497V103.946H506.974ZM419.093%20106.392C455.269%20106.392%20465.136%20123.269%20465.136%20145.06C465.136%20173.181%20447.988%20184.186%20421.912%20184.186C416.511%20184.186%20412.984%20184.429%20407.346%20183.719V106.863C411.575%20106.396%20414.631%20106.392%20419.093%20106.392ZM1180.11%20106.392C1212.86%20106.392%201229.47%20114.583%201240.22%20125.341C1254.03%20139.142%201258.96%20158.325%201258.96%20175.636C1258.96%20199.728%201248.17%20217.744%201239.52%20226.164C1225%20240.67%201211.93%20245.108%201180.57%20245.108C1162.06%20245.108%201161.36%20241.832%201161.36%20232.245V107.33C1164.2%20107.096%201170.48%20106.392%201180.11%20106.392ZM282.782%20120.268L303.345%20174.534H262.921L282.782%20120.268ZM856.219%20120.268L876.782%20174.534H836.4L856.219%20120.268Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%221287%22%20height%3D%22257%22%20viewBox%3D%220%200%201287%20257%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M838.461%204.78516L836.693%2023.0441H838.694C840.415%2013.0677%20842.415%2010.4643%20846.928%2010.4643H866.561V66.4625C866.561%2072.586%20864.514%2074.7423%20857.628%2074.7423H853.488V76.8473H889.031V74.7423H884.844C877.959%2074.7423%20875.958%2072.586%20875.958%2066.4625V10.4643L895.544%2010.4653C900.057%2010.4653%20902.104%2013.0687%20903.779%2023.045H905.826L904.011%204.78609H901.871C901.639%206.13074%20899.964%206.47238%20898.382%206.47238H844.137C843.346%206.47238%20842.555%206.36037%20841.857%206.1354C841.206%205.90297%20840.741%205.45491%20840.601%204.78609L838.461%204.78516ZM692.241%204.79402C680.749%204.79402%20672.282%2011.7954%20672.282%2021.1571C672.282%2040.8881%20708.291%2045.8518%20708.291%2062.0884C708.291%2070.9936%20700.335%2075.3855%20692.799%2075.3855C684.006%2075.3855%20676.19%2069.528%20673.864%2059.4887H671.724L674.05%2076.8463H675.958C676.423%2075.9689%20677.214%2075.3855%20678.191%2075.3855C679.773%2075.3855%20687.635%2078.5032%20693.776%2078.5032C706.942%2078.5032%20716.665%2070.2001%20716.665%2059.1526C716.665%2038.4056%20680.656%2034.1224%20680.656%2018.1126C680.656%2011.7964%20685.82%207.51086%20693.218%207.51086C700.987%207.51086%20708.198%2012.7018%20711.315%2020.8196H713.222L711.315%206.47145H709.5C708.849%207.39931%20708.43%207.62007%20707.5%207.62007C703.592%207.62007%20701.685%204.79402%20692.241%204.79402ZM1147%204.79402C1122.95%204.79402%201105.69%2020.6465%201105.69%2043.1811C1105.69%2064.3567%201124.34%2078.5126%201146.44%2078.5126C1168.35%2078.5126%201186.64%2062.5457%201186.64%2039.6713C1186.64%2019.2883%201168.35%204.79402%201147%204.79402ZM584.169%205.42318C576.818%205.42318%20574.585%205.52912%20569.933%205.75129C565.327%206.01686%20558.442%206.47145%20555.743%206.47145V8.568H558.209C564.769%208.568%20566.676%2010.6141%20566.676%2017.6291V65.3055C566.676%2072.9225%20564.303%2074.7428%20557.651%2074.7428H555.743V76.8477H587.658V74.7428H585.053C578.772%2074.7428%20576.027%2073.0346%20576.027%2066.211V47.0004C577.842%2047.1124%20579.33%2047.2197%20581.796%2047.2197C584.82%2047.2197%20586.634%2047.1124%20589.426%2047.0004C592.124%2048.816%20596.078%2052.1111%20601.01%2057.1097L608.5%2064.6241C618.549%2074.6634%20623.62%2078.99%20643.345%2078.0846V76.017C634.646%2075.4522%20627.76%2071.2563%20621.108%2064.5681L612.222%2055.6162C606.872%2050.2908%20603.522%2047.1077%20599.335%2043.8752C608.593%2041.156%20614.362%2034.0192%20614.362%2025.5252C614.362%2013.9755%20604.964%205.42318%20584.169%205.42318ZM14.4534%206.47145V8.568C22.1199%208.68235%2024.1487%209.81557%2024.1487%2017.0457V50.0467C24.1487%2066.2049%2035.2202%2078.5219%2056.7257%2078.5219C81.1547%2078.5219%2090.0637%2063.4885%2090.0637%2049.482V18.9695C90.0637%2011.7357%2092.7667%208.68235%20100.322%208.568V6.47145H73.832V8.568C83.1784%209.02539%2084.8625%2010.9479%2084.8625%2021.7951V48.1238C84.8625%2067.3297%2071.9153%2072.6411%2059.196%2072.6411C42.4191%2072.6411%2033.5258%2063.4839%2033.5258%2048.2311V16.8179C33.5258%2010.2636%2036.2297%208.568%2042.4214%208.568H43.43V6.47145H14.4534ZM137.557%206.47145V8.568C141.502%208.68235%20144.437%209.59154%20147.033%2011.4034V67.1496C147.033%2072.3629%20144.782%2074.7433%20137.789%2074.7433H137.338V76.8482H163.414V74.7433C153.858%2074.7433%20152.058%2073.0444%20152.058%2064.8859V16.2807L210.29%2077.6883H213.188V14.4605C213.188%2010.0424%20214.994%208.56987%20223.447%208.56987V6.47332H197.143V8.56987C206.14%208.79856%20208.164%2010.0457%20208.164%2016.9565V62.0435L155.203%206.47472L137.557%206.47145ZM268.792%206.47145V8.568C275.105%208.91105%20277.241%2010.609%20277.241%2016.7269V64.9961C277.241%2072.5851%20275.785%2074.396%20268.792%2074.7414V76.8463H296.213V74.7414C288.434%2074.7414%20286.629%2072.4684%20286.629%2065.7895V17.749C286.629%2010.1577%20289.109%208.568%20296.213%208.568V6.47145H268.792ZM336.264%206.47145V8.568C343.149%208.568%20344.503%2010.2641%20347.322%2017.3831L371.784%2078.52H377.399L400.623%2018.2839C403.326%2011.2788%20406.364%208.56613%20412.231%208.56613V6.46958H386.085V8.56613C393.743%208.56613%20396.562%209.92432%20396.562%2013.3156C396.562%2014.8992%20395.887%2017.1628%20394.645%2020.3259L376.855%2066.9918L356.585%2016.3703C354.44%2011.1696%20356.92%208.79483%20367.276%208.56613V6.46958L336.264%206.47145ZM450.919%206.47145V8.568H453.398C460.954%208.568%20462.414%2011.2979%20462.414%2017.6473V65.4357C462.414%2072.2453%20460.837%2074.7423%20451.817%2074.7423H448.667V76.8473H508.616L510.43%2059.9843H508.383C505.545%2069.7763%20503.219%2072.8427%20495.357%2072.8427H477.911C473.724%2072.8427%20471.817%2071.8253%20471.817%2066.6026V42.3886H490.937C495.59%2042.3886%20497.73%2043.2973%20498.614%2051.3685H500.707V29.8817H498.614C498.055%2036.4668%20496.148%2038.3962%20492.054%2038.3962H471.817V10.4653H495.683C499.73%2010.4653%20502.522%2012.5072%20503.964%2022.1606H506.011L505.127%206.47238L450.919%206.47145ZM768.398%206.47145V8.568C774.725%208.91105%20776.865%2010.609%20776.865%2016.7269V64.9961C776.865%2072.5851%20775.376%2074.396%20768.398%2074.7414V76.8463H795.8V74.7414C788.031%2074.7414%20786.216%2072.4684%20786.216%2065.7895V17.749C786.216%2010.1577%20788.728%208.568%20795.8%208.568V6.47145H768.398ZM941.229%206.47145V8.568C948.58%208.7967%20951.185%2010.3803%20956.721%2019.1063L976.586%2050.6115V66.583C976.586%2072.1324%20974.586%2074.7414%20967.701%2074.7414H965.607V76.8463H996.545V74.7414H995.056C988.171%2074.7414%20985.984%2072.3611%20985.984%2066.3543V49.3606L1004.83%2017.5199C1007.94%2012.1922%201011.25%209.13648%201018.88%208.568V6.47145H993.381V8.568C1000.64%208.568%201002.78%2010.4947%20999.15%2016.7269L983.146%2043.9195L965.281%2015.9339C961.885%2010.7201%20962.444%208.568%20971.143%208.568V6.47145H941.229ZM1214.22%206.47145V8.568C1222.13%208.68235%201222.69%2011.9672%201222.69%2019.2244V63.6099C1222.69%2072.8045%201221.43%2074.284%201214.46%2074.7414V76.8463H1241.9V74.7414C1233.44%2074.7414%201232.09%2072.3517%201232.09%2065.9995V41.1299H1252.98C1258.37%2041.1299%201260.75%2043.1779%201260.98%2049.762H1262.89V29.8719H1260.98C1260.65%2034.7525%201258.61%2037.137%201254.42%2037.137H1232.09V10.4643H1253.49C1260.51%2010.4643%201262.75%2013.19%201262.89%2019.7714H1264.75V6.47145H1214.22ZM1144.07%207.51086C1162.68%207.51086%201176.03%2022.3468%201176.03%2043.4089C1176.03%2059.4887%201167.24%2075.7962%201148.81%2075.7962C1130.67%2075.7962%201116.29%2060.8422%201116.29%2039.6713C1116.29%2026.0816%201124.2%207.51086%201144.07%207.51086ZM581.656%207.51972C599.009%207.51972%20603.708%2015.6726%20603.708%2026.2071C603.708%2039.7973%20595.52%2045.1227%20583.006%2045.1227C580.447%2045.1227%20578.725%2045.2305%20576.027%2044.8945V7.74796C578.074%207.51926%20579.516%207.51972%20581.656%207.51972ZM275.059%20100.548L277.166%20105.682L234.626%20221.935C227.155%20242.289%20224.591%20244.87%20209.411%20245.108H209.509V249.654H263.382V245.108H259.651C246.796%20245.108%20240.711%20242.765%20240.711%20236.446C240.711%20233.169%20243.758%20226.155%20245.391%20221.707L258.948%20184.952H307.308L322.972%20227.559C323.907%20229.898%20325.545%20233.403%20325.545%20237.151C325.545%20243.704%20320.628%20245.108%20307.308%20245.108H301.237V249.654H365.434H365.508H431.556V245.108H426.159C413.003%20245.108%20407.36%20241.617%20407.36%20227.639V188.261C411.119%20188.499%20414.175%20188.737%20419.344%20188.737C425.685%20188.737%20429.444%20188.499%20435.315%20188.261C440.954%20192.004%20449.179%20198.748%20459.516%20208.998L474.887%20224.376C495.59%20245.211%20506.104%20254.084%20546.997%20252.207V248.007C528.993%20246.84%20514.757%20238.21%20500.94%20224.442L482.517%20206.011C471.631%20195.042%20464.68%20188.499%20455.99%20181.615C475.12%20175.99%20486.936%20161.228%20486.936%20143.655C486.936%20119.754%20467.723%20101.85%20424.275%20101.85C409.011%20101.85%20404.345%20102.084%20394.826%20102.565C385.294%20103.008%20371.044%20103.946%20365.434%20103.946V108.497H370.574C384.131%20108.497%20388.095%20112.707%20388.095%20127.241V225.772C388.095%20241.379%20383.191%20245.108%20369.402%20245.108H365.508H365.434C353.798%20245.094%20348.909%20242.737%20344.242%20230.355L295.394%20100.548H275.059ZM848.496%20100.548L850.636%20105.682L808.068%20221.935C800.624%20242.299%20798.065%20244.875%20782.853%20245.108V249.654H836.865V245.108H833.097C820.257%20245.108%20814.162%20242.765%20814.162%20236.446C814.162%20233.169%20817.233%20226.155%20818.861%20221.707L832.399%20184.952H880.783L896.414%20227.559C897.345%20229.898%20899.019%20233.403%20899.019%20237.151C899.019%20243.704%20894.088%20245.108%20880.783%20245.108H874.688V249.654H938.982V245.108C927.259%20245.108%20922.374%20242.765%20917.675%20230.355L868.873%20100.548H848.496ZM1191.79%20101.85C1179.6%20101.85%201165.36%20102.084%201152.57%20102.565C1139.82%20103.003%201128.47%20103.475%201119.86%20103.941V103.764H1117.21V103.946H1117.86V108.133H1119.86V108.114H1124.33C1138.15%20108.114%201142.1%20111.866%201142.1%20127.11V228.031C1142.1%20241.599%201136.28%20245.108%201123.63%20245.108H1119.68V249.654H1194.34C1253.57%20249.654%201280.74%20207.215%201280.74%20171.888C1280.74%20133.294%201253.57%20101.85%201191.79%20101.85ZM1117.86%20108.133H1117.21V103.946H1063.24V108.497C1081.9%20108.968%201086.09%20111.54%201086.09%20125.826V219.046L976.2%20103.946H939.587V108.497C947.775%20108.735%20953.823%20110.602%20959.22%20114.349V229.436C959.22%20240.198%20954.567%20245.108%20940.052%20245.108H939.122V249.654H993.228V245.108C973.409%20245.108%20969.687%20241.599%20969.687%20224.759V124.393L1090.51%20251.367H1096.55V120.674C1096.55%20111.54%201100.32%20108.497%201117.86%20108.497V108.133ZM14.9512%20103.913V108.114C29.4453%20109.057%2029.9166%20113.281%2028.9717%20128.762L23.3653%20220.012C22.1962%20241.361%2020.0999%20245.108%203.03911%20245.108L3.03906%20249.654H51.7528V245.108C41.2359%20244.637%2032.2831%20242.056%2032.9898%20230.094L39.3685%20124.534H39.8319L99.4273%20249.654H104.796L162.986%20124.534H163.461L170.239%20229.627C171.174%20242.061%20160.418%20245.108%20149.43%20245.108V249.654H209.374V245.108C192.435%20245.108%20190.56%20245.052%20189.165%20223.532L181.688%20117.267C181.219%20109.29%20185.657%20109.057%20197.106%20108.114V103.913H162.758L106.671%20222.117L50.3506%20103.913H14.9512ZM506.974%20103.946V108.497C522.094%20108.963%20527.444%20112.235%20538.888%20130.246L580.665%20195.28V228.259C580.665%20239.727%20576.432%20245.108%20561.824%20245.108H557.311V249.654H621.652V245.108H618.581C604.345%20245.108%20599.926%20240.194%20599.926%20227.797V192.709L638.679%20126.974C645.192%20115.978%20651.938%20109.668%20667.756%20108.497H669.896C684.643%20108.497%20688.365%20113.649%20688.365%20126.064V229.664C688.365%20241.594%20684.411%20245.108%20673.664%20245.108H665.941V249.654H770.245L788.249%20215.396H784.062C769.314%20235.9%20765.127%20241.286%20751.357%20241.286H716.977C710.184%20241.286%20707.626%20238.948%20707.626%20232.628V124.65C707.626%20110.13%20711.626%20108.497%20726.793%20108.497H735.446V103.946H667.756H666.639H615.092V108.497C630.026%20108.497%20634.446%20112.469%20627.002%20125.336L594.157%20181.479L556.613%20123.703C549.588%20112.94%20550.751%20108.497%20569.128%20108.497V103.946H506.974ZM419.093%20106.392C455.269%20106.392%20465.136%20123.269%20465.136%20145.06C465.136%20173.181%20447.988%20184.186%20421.912%20184.186C416.511%20184.186%20412.984%20184.429%20407.346%20183.719V106.863C411.575%20106.396%20414.631%20106.392%20419.093%20106.392ZM1180.11%20106.392C1212.86%20106.392%201229.47%20114.583%201240.22%20125.341C1254.03%20139.142%201258.96%20158.325%201258.96%20175.636C1258.96%20199.728%201248.17%20217.744%201239.52%20226.164C1225%20240.67%201211.93%20245.108%201180.57%20245.108C1162.06%20245.108%201161.36%20241.832%201161.36%20232.245V107.33C1164.2%20107.096%201170.48%20106.392%201180.11%20106.392ZM282.782%20120.268L303.345%20174.534H262.921L282.782%20120.268ZM856.219%20120.268L876.782%20174.534H836.4L856.219%20120.268Z%22%20fill%3D%22white%22%2F%3E%20%3C%2Fsvg%3E"); }
.pr-brand-mark--uli { aspect-ratio:0.8725; mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22445%22%20height%3D%22510%22%20viewBox%3D%22105%20130%20445%20510%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M231.916%20383.234H277.921V143.146H231.916V383.234ZM120.583%20383.234H166.588V143.146H120.583V383.234ZM490.074%20383.234H536.079V143.104H490.074V383.234ZM336.198%20383.234H382.203V143.202H336.198V383.234Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M120.618%20383.196C120.618%20383.196%20120.639%20579.926%20120.639%20580.461C120.639%20610.254%20144.232%20634.458%20173.743%20635.627H224.807C254.304%20634.458%20277.89%20610.254%20277.89%20580.461C277.89%20579.926%20277.911%20383.196%20277.911%20383.196H231.918V580.956C231.805%20586.515%20227.499%20592.362%20220.786%20592.995H177.742C171.043%20592.362%20166.729%20586.515%20166.631%20580.956V383.196H120.618ZM490.079%20383.196V635.276H536.071V383.196H490.079ZM336.209%20383.217V635.194H336.315V635.278H460.912V592.915H382.204V383.219L336.209%20383.217Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); -webkit-mask-image:url("data:image/svg+xml,%3Csvg%20width%3D%22445%22%20height%3D%22510%22%20viewBox%3D%22105%20130%20445%20510%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M231.916%20383.234H277.921V143.146H231.916V383.234ZM120.583%20383.234H166.588V143.146H120.583V383.234ZM490.074%20383.234H536.079V143.104H490.074V383.234ZM336.198%20383.234H382.203V143.202H336.198V383.234Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3Cpath%20d%3D%22M120.618%20383.196C120.618%20383.196%20120.639%20579.926%20120.639%20580.461C120.639%20610.254%20144.232%20634.458%20173.743%20635.627H224.807C254.304%20634.458%20277.89%20610.254%20277.89%20580.461C277.89%20579.926%20277.911%20383.196%20277.911%20383.196H231.918V580.956C231.805%20586.515%20227.499%20592.362%20220.786%20592.995H177.742C171.043%20592.362%20166.729%20586.515%20166.631%20580.956V383.196H120.618ZM490.079%20383.196V635.276H536.071V383.196H490.079ZM336.209%20383.217V635.194H336.315V635.278H460.912V592.915H382.204V383.219L336.209%20383.217Z%22%20fill%3D%22%23397F86%22%2F%3E%20%3C%2Fsvg%3E"); }
