@zenpatient-org/healthspan-marketing-ui 0.2.26 → 0.2.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),l=require("../Icon/constants.cjs.js"),a=require("../../src/components/HighlightCard/highlightCard.module.css"),s=require("../Typography/Typography.cjs.js"),d=require("../IconButton/IconButton.cjs.js"),m=({image:h,eyebrow:t,title:r,description:i,link:n})=>{const o=e.jsxs(e.Fragment,{children:[t&&e.jsx(s.Typography,{as:"p",defaultVariant:"labelSm",emphasis:!0,className:a.eyebrow,children:t}),e.jsxs("div",{className:a.bottomContainer,children:[e.jsxs("div",{className:a.titleContainer,children:[r&&e.jsx(s.Typography,{as:"p",defaultVariant:"headingXl",mobileVariant:"headingLg",className:a.title,children:r}),n&&e.jsxs(e.Fragment,{children:[e.jsx("div",{className:a.desktop,children:e.jsx(d.IconButton,{variant:"muted-invert",size:"lg",iconName:l.EIconName.ARROW_FORWARD})}),e.jsx("div",{className:a.mobile,children:e.jsx(d.IconButton,{variant:"muted-invert",size:"md",iconName:l.EIconName.ARROW_FORWARD})})]})]}),i&&e.jsx(s.Typography,{as:"p",defaultVariant:"bodySm",className:a.description,children:i})]})]}),c={backgroundImage:`url(${h})`,backgroundSize:"cover",backgroundPosition:"center"};return n?e.jsx("a",{href:n,className:a.highlightCard,style:c,children:o}):e.jsx("div",{className:a.highlightCard,style:c,children:o})};exports.HighlightCard=m;
@@ -0,0 +1,8 @@
1
+ export type HighlightCardProps = {
2
+ image: string;
3
+ eyebrow?: string;
4
+ title?: string;
5
+ description?: string;
6
+ link?: string;
7
+ };
8
+ export declare const HighlightCard: ({ image, eyebrow, title, description, link }: HighlightCardProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,33 @@
1
+ import { jsxs as i, Fragment as d, jsx as e } from "react/jsx-runtime";
2
+ import { EIconName as m } from "../Icon/constants.es.js";
3
+ import a from "../../components/HighlightCard/highlightCard.module.css";
4
+ import { Typography as t } from "../Typography/Typography.es.js";
5
+ import { IconButton as h } from "../IconButton/IconButton.es.js";
6
+ const b = ({ image: g, eyebrow: n, title: s, description: l, link: r }) => {
7
+ const o = /* @__PURE__ */ i(d, { children: [
8
+ n && /* @__PURE__ */ e(t, { as: "p", defaultVariant: "labelSm", emphasis: !0, className: a.eyebrow, children: n }),
9
+ /* @__PURE__ */ i("div", { className: a.bottomContainer, children: [
10
+ /* @__PURE__ */ i("div", { className: a.titleContainer, children: [
11
+ s && /* @__PURE__ */ e(
12
+ t,
13
+ {
14
+ as: "p",
15
+ defaultVariant: "headingXl",
16
+ mobileVariant: "headingLg",
17
+ className: a.title,
18
+ children: s
19
+ }
20
+ ),
21
+ r && /* @__PURE__ */ i(d, { children: [
22
+ /* @__PURE__ */ e("div", { className: a.desktop, children: /* @__PURE__ */ e(h, { variant: "muted-invert", size: "lg", iconName: m.ARROW_FORWARD }) }),
23
+ /* @__PURE__ */ e("div", { className: a.mobile, children: /* @__PURE__ */ e(h, { variant: "muted-invert", size: "md", iconName: m.ARROW_FORWARD }) })
24
+ ] })
25
+ ] }),
26
+ l && /* @__PURE__ */ e(t, { as: "p", defaultVariant: "bodySm", className: a.description, children: l })
27
+ ] })
28
+ ] }), c = { backgroundImage: `url(${g})`, backgroundSize: "cover", backgroundPosition: "center" };
29
+ return r ? /* @__PURE__ */ e("a", { href: r, className: a.highlightCard, style: c, children: o }) : /* @__PURE__ */ e("div", { className: a.highlightCard, style: c, children: o });
30
+ };
31
+ export {
32
+ b as HighlightCard
33
+ };
@@ -0,0 +1,73 @@
1
+ .highlightCard {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: space-between;
5
+ padding: 32px;
6
+ border-radius: var(--border-radius-lg);
7
+ height: 483px;
8
+ color: var(--color-text-primary-inverted);
9
+ text-decoration: none;
10
+ }
11
+
12
+ .eyebrow {
13
+ width: 100%;
14
+ color: var(--color-text-secondary-inverted);
15
+ align-self: flex-start;
16
+ }
17
+
18
+ .bottomContainer {
19
+ display: flex;
20
+ flex-direction: column;
21
+ align-items: flex-start;
22
+ gap: 12px;
23
+ margin-top: auto;
24
+ max-width: 325px;
25
+ }
26
+
27
+ .titleContainer {
28
+ display: flex;
29
+ width: 100%;
30
+ gap: 24px;
31
+ justify-content: space-between;
32
+ align-items: center;
33
+ min-height: 0;
34
+ }
35
+
36
+ .desktop {
37
+ display: block;
38
+ }
39
+
40
+ .mobile {
41
+ display: none;
42
+ }
43
+
44
+ @media (width <= 1200px) {
45
+ .highlightCard {
46
+ height: 477px;
47
+ padding: 24px;
48
+ }
49
+
50
+ .bottomContainer {
51
+ max-width: 321px;
52
+ gap: 8px;
53
+ }
54
+ }
55
+
56
+ @media (width <= 768px) {
57
+ .highlightCard {
58
+ height: 415.5px;
59
+ padding: 24px;
60
+ }
61
+
62
+ .bottomContainer {
63
+ max-width: 287px;
64
+ }
65
+
66
+ .desktop {
67
+ display: none;
68
+ }
69
+
70
+ .mobile {
71
+ display: block;
72
+ }
73
+ }
@@ -0,0 +1,2 @@
1
+ export { HighlightCard } from './HighlightCard';
2
+ export type { HighlightCardProps } from './HighlightCard';
@@ -0,0 +1 @@
1
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),v=require("swiper/modules"),o=require("swiper/react"),_=require("../../utils/useSwiper/useSwiper.cjs.js"),s=require("../../src/modules/Highlight/highlight.module.css");;/* empty css */;/* empty css */const c=require("../../components/Typography/Typography.cjs.js"),d=require("../../components/HighlightCard/HighlightCard.cjs.js"),q=require("../../components/ProgressButton/ProgressButton.cjs.js"),P=[v.Navigation],k=({title:r,subtitle:t,highlightCards:n})=>{const h=_.useSwiper(),a=n.length===3,g=n.length>3,{isEnd:p,isBeginning:m,hideNav:u,handleSlideChange:w,handlePrevClick:x,handleNextClick:y,onSwiperInit:j,handleSwiperResize:S,handleReachEnd:N,handleReachBeginning:b}=h;return e.jsx("section",{className:s.root,children:e.jsxs("div",{className:s.container,children:[(r||t)&&e.jsxs("div",{className:s.textContent,children:[r&&e.jsx(c.Typography,{as:"h2",defaultVariant:"displayMd",mobileVariant:"headingLg",className:s.title,children:r}),t&&e.jsx(c.Typography,{as:"p",defaultVariant:"bodyLg",mobileVariant:"bodyMd",className:s.subtitle,children:t})]}),a&&e.jsx("div",{className:s.cardGrid,children:n.map((i,l)=>e.jsx("div",{className:s.cardGridItem,children:e.jsx(d.HighlightCard,{image:i.image,eyebrow:i.eyebrow,title:i.title,description:i.description,link:i.link})},`${i.title}_${l}`))}),!a&&e.jsxs(e.Fragment,{children:[e.jsx("div",{className:s.carouselArea,children:e.jsx(o.Swiper,{onSwiper:j,onResize:S,onSlideChange:w,onReachEnd:N,onReachBeginning:b,modules:P,spaceBetween:16,slidesPerView:3,breakpoints:{0:{slidesPerView:1},769:{slidesPerView:2},1201:{slidesPerView:3}},className:s.swiper,children:n.map((i,l)=>e.jsx(o.SwiperSlide,{className:s.swiperSlide,children:e.jsx(d.HighlightCard,{image:i.image,eyebrow:i.eyebrow,title:i.title,description:i.description,link:i.link})},`${i.title}_${l}`))})}),g&&!u&&e.jsx("div",{className:s.navigation,children:e.jsx(q.ProgressButton,{left:{disabled:m,onClick:x},right:{disabled:p,onClick:y}})})]})]})})};exports.Highlight=k;
@@ -0,0 +1,8 @@
1
+ import { HighlightCardProps } from '../../components/HighlightCard';
2
+
3
+ export type HighlightProps = {
4
+ title?: string;
5
+ subtitle?: string;
6
+ highlightCards: Array<HighlightCardProps>;
7
+ };
8
+ export declare const Highlight: ({ title, subtitle, highlightCards }: HighlightProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,112 @@
1
+ "use client";
2
+ import { jsx as i, jsxs as o, Fragment as V } from "react/jsx-runtime";
3
+ import { Navigation as u } from "swiper/modules";
4
+ import { Swiper as P, SwiperSlide as R } from "swiper/react";
5
+ import { useSwiper as x } from "../../utils/useSwiper/useSwiper.es.js";
6
+ import n from "../../modules/Highlight/highlight.module.css";
7
+ /* empty css */
8
+ /* empty css */
9
+ import { Typography as d } from "../../components/Typography/Typography.es.js";
10
+ import { HighlightCard as m } from "../../components/HighlightCard/HighlightCard.es.js";
11
+ import { ProgressButton as E } from "../../components/ProgressButton/ProgressButton.es.js";
12
+ const B = [u], T = ({ title: l, subtitle: r, highlightCards: s }) => {
13
+ const c = x(), t = s.length === 3, p = s.length > 3, {
14
+ isEnd: h,
15
+ isBeginning: g,
16
+ hideNav: w,
17
+ handleSlideChange: N,
18
+ handlePrevClick: S,
19
+ handleNextClick: f,
20
+ onSwiperInit: v,
21
+ handleSwiperResize: y,
22
+ handleReachEnd: b,
23
+ handleReachBeginning: k
24
+ } = c;
25
+ return /* @__PURE__ */ i("section", { className: n.root, children: /* @__PURE__ */ o("div", { className: n.container, children: [
26
+ (l || r) && /* @__PURE__ */ o("div", { className: n.textContent, children: [
27
+ l && /* @__PURE__ */ i(
28
+ d,
29
+ {
30
+ as: "h2",
31
+ defaultVariant: "displayMd",
32
+ mobileVariant: "headingLg",
33
+ className: n.title,
34
+ children: l
35
+ }
36
+ ),
37
+ r && /* @__PURE__ */ i(
38
+ d,
39
+ {
40
+ as: "p",
41
+ defaultVariant: "bodyLg",
42
+ mobileVariant: "bodyMd",
43
+ className: n.subtitle,
44
+ children: r
45
+ }
46
+ )
47
+ ] }),
48
+ t && /* @__PURE__ */ i("div", { className: n.cardGrid, children: s.map((e, a) => /* @__PURE__ */ i("div", { className: n.cardGridItem, children: /* @__PURE__ */ i(
49
+ m,
50
+ {
51
+ image: e.image,
52
+ eyebrow: e.eyebrow,
53
+ title: e.title,
54
+ description: e.description,
55
+ link: e.link
56
+ }
57
+ ) }, `${e.title}_${a}`)) }),
58
+ !t && /* @__PURE__ */ o(V, { children: [
59
+ /* @__PURE__ */ i("div", { className: n.carouselArea, children: /* @__PURE__ */ i(
60
+ P,
61
+ {
62
+ onSwiper: v,
63
+ onResize: y,
64
+ onSlideChange: N,
65
+ onReachEnd: b,
66
+ onReachBeginning: k,
67
+ modules: B,
68
+ spaceBetween: 16,
69
+ slidesPerView: 3,
70
+ breakpoints: {
71
+ 0: {
72
+ slidesPerView: 1
73
+ },
74
+ 769: {
75
+ slidesPerView: 2
76
+ },
77
+ 1201: {
78
+ slidesPerView: 3
79
+ }
80
+ },
81
+ className: n.swiper,
82
+ children: s.map((e, a) => /* @__PURE__ */ i(R, { className: n.swiperSlide, children: /* @__PURE__ */ i(
83
+ m,
84
+ {
85
+ image: e.image,
86
+ eyebrow: e.eyebrow,
87
+ title: e.title,
88
+ description: e.description,
89
+ link: e.link
90
+ }
91
+ ) }, `${e.title}_${a}`))
92
+ }
93
+ ) }),
94
+ p && !w && /* @__PURE__ */ i("div", { className: n.navigation, children: /* @__PURE__ */ i(
95
+ E,
96
+ {
97
+ left: {
98
+ disabled: g,
99
+ onClick: S
100
+ },
101
+ right: {
102
+ disabled: h,
103
+ onClick: f
104
+ }
105
+ }
106
+ ) })
107
+ ] })
108
+ ] }) });
109
+ };
110
+ export {
111
+ T as Highlight
112
+ };
@@ -0,0 +1,127 @@
1
+ .root {
2
+ width: 100%;
3
+ display: flex;
4
+ flex-direction: column;
5
+ align-items: center;
6
+ }
7
+
8
+ .container {
9
+ width: 100%;
10
+ max-width: var(--content-max-width);
11
+ display: flex;
12
+ flex-direction: column;
13
+ padding: 64px 0;
14
+ gap: 64px;
15
+ overflow: hidden;
16
+ }
17
+
18
+ .textContent {
19
+ display: flex;
20
+ flex-direction: column;
21
+ gap: 16px;
22
+ text-align: center;
23
+ align-items: center;
24
+ }
25
+
26
+ .title {
27
+ max-width: 692px;
28
+ }
29
+
30
+ .subtitle {
31
+ max-width: 648px;
32
+ }
33
+
34
+ .cardGrid {
35
+ display: flex;
36
+ justify-content: center;
37
+ gap: 16px;
38
+ width: 100%;
39
+ flex-direction: row;
40
+ }
41
+
42
+ .cardGridItem {
43
+ flex-shrink: 0;
44
+ }
45
+
46
+ .carouselArea {
47
+ width: 100%;
48
+ overflow: hidden;
49
+ display: flex;
50
+ justify-content: center;
51
+ }
52
+
53
+ .swiper {
54
+ max-width: calc((390px * 3) + (16px * 2));
55
+ /* max width of each card + gap between cards */
56
+ }
57
+
58
+ .swiperSlide {
59
+ max-width: 390px;
60
+ flex-shrink: 0;
61
+ position: relative;
62
+ }
63
+
64
+ .navigation {
65
+ display: flex;
66
+ width: 100%;
67
+ align-items: center;
68
+ justify-content: center;
69
+ margin-top: 32px;
70
+ }
71
+
72
+ .cardGridItem {
73
+ max-width: 389px;
74
+ width: 100%;
75
+ }
76
+
77
+ @media (min-width: 769px) and (max-width: 1200px) {
78
+ .cardGrid {
79
+ max-width: 100%;
80
+ }
81
+
82
+ .cardGridItem {
83
+ max-width: 335px;
84
+ width: 100%;
85
+ }
86
+
87
+ .title {
88
+ font-size: 56px;
89
+ letter-spacing: -2.24px;
90
+ }
91
+
92
+ .swiper {
93
+ max-width: calc((390px * 2) + 16px);
94
+ }
95
+
96
+ .container {
97
+ padding: 64px 17px;
98
+ gap: 32px;
99
+ }
100
+ }
101
+
102
+ @media (max-width: 979px) {
103
+ .cardGrid {
104
+ flex-direction: column;
105
+ align-items: center;
106
+ }
107
+ }
108
+
109
+ @media (max-width: 768px) {
110
+ .cardGridItem {
111
+ max-width: 335px;
112
+ width: 100%;
113
+ }
114
+ .container {
115
+ padding: 64px 20px 32px 20px;
116
+ }
117
+
118
+ .swiper {
119
+ max-width: 335px;
120
+ }
121
+ .navigation {
122
+ margin-top: 24px;
123
+ }
124
+ .subtitle {
125
+ max-width: 576px;
126
+ }
127
+ }
@@ -0,0 +1,2 @@
1
+ export { Highlight } from './Highlight';
2
+ export type { HighlightProps } from './Highlight';
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./chunk-FSLSW5KG.cjs.js"),s=require("react"),e=require("react/jsx-runtime");var S=s.lazy(async()=>Promise.resolve().then(()=>require("./WistiaPlayerWrapper-KYHM7EWK.cjs.js")).then(t=>({default:t.WistiaPlayerWrapper}))),p=s.forwardRef((t,c)=>{const{aspect:l,children:n,embedHost:a,mediaId:i,swatch:d,style:y}=t,o=r.getMergedEmbedOption(i,"embedHost",a!=null?a:void 0),u=r.isString(o)?o:"fast.wistia.com",h=l!==void 0,m=r.wistiaPlayerStyleBlock({mediaId:i,embedHost:u,aspect:l,shouldLoadSwatch:d});return e.jsx(s.Suspense,{fallback:h&&e.jsxs(s.Fragment,{children:[e.jsx("style",{children:m}),e.jsx("wistia-player",{"media-id":i,style:y,children:n})]}),children:e.jsx(S,{ref:c,...t})})});exports.WistiaPlayer=p;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./chunk-FSLSW5KG.cjs.js"),s=require("react"),e=require("react/jsx-runtime");var S=s.lazy(async()=>Promise.resolve().then(()=>require("./WistiaPlayerWrapper-JT6X3U4D.cjs.js")).then(t=>({default:t.WistiaPlayerWrapper}))),p=s.forwardRef((t,c)=>{const{aspect:l,children:n,embedHost:a,mediaId:i,swatch:d,style:y}=t,o=r.getMergedEmbedOption(i,"embedHost",a!=null?a:void 0),u=r.isString(o)?o:"fast.wistia.com",h=l!==void 0,m=r.wistiaPlayerStyleBlock({mediaId:i,embedHost:u,aspect:l,shouldLoadSwatch:d});return e.jsx(s.Suspense,{fallback:h&&e.jsxs(s.Fragment,{children:[e.jsx("style",{children:m}),e.jsx("wistia-player",{"media-id":i,style:y,children:n})]}),children:e.jsx(S,{ref:c,...t})})});exports.WistiaPlayer=p;
@@ -2,7 +2,7 @@ import { getMergedEmbedOption as y, wistiaPlayerStyleBlock as h, isString as f }
2
2
  import { forwardRef as w, Suspense as b, lazy as g, Fragment as u } from "react";
3
3
  import { jsx as t, jsxs as S } from "react/jsx-runtime";
4
4
  var W = g(
5
- async () => import("./WistiaPlayerWrapper-KYHM7EWK.es.js").then((e) => ({
5
+ async () => import("./WistiaPlayerWrapper-JT6X3U4D.es.js").then((e) => ({
6
6
  default: e.WistiaPlayerWrapper
7
7
  }))
8
8
  ), x = w(
@@ -1 +1 @@
1
- "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./chunk-FSLSW5KG.cjs.js"),n=require("react"),h=require("react/jsx-runtime");var L=l=>{const s={};return Object.entries(l).forEach(([d,a])=>{typeof a=="boolean"?s[d]=String(a):s[d]=a}),s},q=n.forwardRef((l,s)=>{const{aspect:d,children:a,className:w,embedHost:u,id:o,mediaId:c,roundedPlayer:E,swatch:p,style:P}=l,S=t.getMergedEmbedOption(c,"embedHost",u!=null?u:void 0),f=t.isString(S)?S:"fast.wistia.com",b=n.useRef(null),[m,v]=n.useState(d),[j,W]=n.useState(!1);n.useEffect(()=>{p!==!1&&m===void 0&&t.isString(f)&&t.getSwatchAspectRatio(c,f).then(e=>{v(e)}),Promise.resolve().then(()=>require("./wistia-player-PKAEVX5L.cjs.js")),customElements.whenDefined("wistia-player").then(()=>{W(!0)})},[]);const g={},y={};Object.entries(l).forEach(([e,i])=>{if(e.startsWith("on")&&e[2]===e[2].toUpperCase()){const r=t.camelCaseToKebabCase(e).slice(3);t.isFunction(i)&&(g[r]=i)}else t.isValidEmbedOption(i)&&(y[t.camelCaseToKebabCase(e)]=i)}),Object.entries(g).forEach(([e,i])=>{n.useEffect(()=>{const r=b.current;return r==null||r.addEventListener(e,i),()=>{r==null||r.removeEventListener(e,i)}},[i,j])});const O=m!==void 0,C=t.wistiaPlayerStyleBlock({mediaId:c,embedHost:f,aspect:m,shouldLoadSwatch:p,roundedPlayer:E});return h.jsxs(n.Fragment,{children:[O&&h.jsx("style",{dangerouslySetInnerHTML:{__html:C}}),h.jsx("wistia-player",{ref:e=>{b.current=e,typeof s=="function"?s(e):s!==null&&(s.current=e)},id:o!=null?o:void 0,"media-id":c,class:w,style:P,react:String(!0),...L(y),children:a},o!=null?o:c)]})});exports.WistiaPlayerWrapper=q;
1
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./chunk-FSLSW5KG.cjs.js"),n=require("react"),h=require("react/jsx-runtime");var L=l=>{const s={};return Object.entries(l).forEach(([d,a])=>{typeof a=="boolean"?s[d]=String(a):s[d]=a}),s},q=n.forwardRef((l,s)=>{const{aspect:d,children:a,className:w,embedHost:u,id:o,mediaId:c,roundedPlayer:E,swatch:p,style:P}=l,S=t.getMergedEmbedOption(c,"embedHost",u!=null?u:void 0),f=t.isString(S)?S:"fast.wistia.com",b=n.useRef(null),[m,v]=n.useState(d),[j,W]=n.useState(!1);n.useEffect(()=>{p!==!1&&m===void 0&&t.isString(f)&&t.getSwatchAspectRatio(c,f).then(e=>{v(e)}),Promise.resolve().then(()=>require("./wistia-player-WXJKPTHM.cjs.js")),customElements.whenDefined("wistia-player").then(()=>{W(!0)})},[]);const g={},y={};Object.entries(l).forEach(([e,i])=>{if(e.startsWith("on")&&e[2]===e[2].toUpperCase()){const r=t.camelCaseToKebabCase(e).slice(3);t.isFunction(i)&&(g[r]=i)}else t.isValidEmbedOption(i)&&(y[t.camelCaseToKebabCase(e)]=i)}),Object.entries(g).forEach(([e,i])=>{n.useEffect(()=>{const r=b.current;return r==null||r.addEventListener(e,i),()=>{r==null||r.removeEventListener(e,i)}},[i,j])});const O=m!==void 0,C=t.wistiaPlayerStyleBlock({mediaId:c,embedHost:f,aspect:m,shouldLoadSwatch:p,roundedPlayer:E});return h.jsxs(n.Fragment,{children:[O&&h.jsx("style",{dangerouslySetInnerHTML:{__html:C}}),h.jsx("wistia-player",{ref:e=>{b.current=e,typeof s=="function"?s(e):s!==null&&(s.current=e)},id:o!=null?o:void 0,"media-id":c,class:w,style:P,react:String(!0),...L(y),children:a},o!=null?o:c)]})});exports.WistiaPlayerWrapper=q;
@@ -13,7 +13,7 @@ var T = (a) => {
13
13
  y(() => {
14
14
  m !== !1 && f === void 0 && E(l) && A(n, l).then((t) => {
15
15
  j(t);
16
- }), import("./wistia-player-PKAEVX5L.es.js"), customElements.whenDefined("wistia-player").then(() => {
16
+ }), import("./wistia-player-WXJKPTHM.es.js"), customElements.whenDefined("wistia-player").then(() => {
17
17
  D(!0);
18
18
  });
19
19
  }, []);
@@ -24,7 +24,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
24
24
  }
25
25
  `),i(!0)},[]),(0,t.h)("line",{ref:B,class:"w-big-play-button-loading-anim",x1:"0",y1:"78",x2:"125",y2:"78",style:{stroke:"#FFFFFF",strokeWidth:4,strokeLinecap:"round",opacity:s?1:0}})}},4730:(_,l,e)=>{e.d(l,{Oj:()=>b,Z0:()=>f,sC:()=>s});var t=e(731);e(7157);var r=e(5509),n=r.s.languages=r.s.languages||{},o=r.s.translations=r.s.translations||{};r.s._translationPromises||(r.s._translationPromises={});var v=["ar","de","es","en-US","fr","it","ja","ko","pt","ru","zh-CN"],M={ara:"ar",ger:"de",spa:"es",eng:"en-US",fre:"fr",ita:"it",jpn:"ja",kor:"ko",por:"pt",rus:"ru",chi:"zh-CN"},u=function(p){if(p==null)return"en-US";if(p=M[p]||p,!v.includes(p)){var y=d(function(){return[p]})[0];y&&(p=y)}return(p==="en"||/^en-/.test(p))&&(p="en-US"),(p==="zh"||/^zh-/.test(p))&&(p="zh-CN"),p},c=function(p,y,L){n[p]={code:p,text:g(y)}},f=function(p){return n[u(p)]},b=function(p,y){if(n[p]==null)throw new Error("Must define a language with code ".concat(p," before defining its translations."));var L=o[p];L?(0,t.h1)(L,y):o[p]=(0,t.o8)(y)},D=function(p){return p==null?"?":p},B,S=r.s.cachedDecodings=r.s.cachedDecodings||{},g=function(p){return B||(B=document.createElement("textarea")),S[p]!=null?S[p]:(B.innerHTML=p,S[p]=B.value,B.value)},s=function(p,y){p=u(p);var L;return o[p]&&o[p][y]?L=o[p][y]:L=o["en-US"][y],g(D(L))},i=function(){return navigator.languages||navigator.language?r.s.languagePreference=navigator.languages||[navigator.language]:r.s.languagePreference=["en-US"],r.s.languagePreference};Promise.resolve({code:"en-US",translations:o["en-US"]});var d=function(){var p=arguments.length>0&&arguments[0]!==void 0?arguments[0]:i;return p().reduce(function(y,L){var G=v.indexOf(L)!==-1,it=L.split("-")[0],j=v.indexOf(it)!==-1;return G?y.push(L):j&&y.push(it),y},[])};c("en-US","English"),b("en-US",{PLAY:"Play",PLAY_BUTTON_LIVE_NOT_STARTED:"Livestream has not started",PLAY_BUTTON_TITLE_WHEN_NOT_PLAYING:"Play Video",PLAY_BUTTON_TITLE_WHEN_PLAYING:"Pause",REWATCH:"Rewatch",SKIP:"Skip"})},4755:(_,l,e)=>{e.d(l,{D5:()=>s});var t=e(4271),r=e(4997),n=e(5510),o=e(5509);function v(i){return f(i)||c(i)||u(i)||M()}function M(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
26
26
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function u(i,d){if(i){if(typeof i=="string")return b(i,d);var m={}.toString.call(i).slice(8,-1);return m==="Object"&&i.constructor&&(m=i.constructor.name),m==="Map"||m==="Set"?Array.from(i):m==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(m)?b(i,d):void 0}}function c(i){if(typeof Symbol!="undefined"&&i[Symbol.iterator]!=null||i["@@iterator"]!=null)return Array.from(i)}function f(i){if(Array.isArray(i))return b(i)}function b(i,d){(d==null||d>i.length)&&(d=i.length);for(var m=0,p=Array(d);m<d;m++)p[m]=i[m];return p}var D=function(){var d=(0,r.y1)().visitorTrackingEnabled;d!=null&&((0,r.$B)(function(m){return delete m.visitorTrackingEnabled}),o.s._visitorTracking={},o.s._visitorTracking[o.s._visitorTrackingDomain]={isEnabled:d,updatedAt:Date.now()},(0,r.$B)(function(m){return m.visitorTracking=o.s._visitorTracking}))};o.s._visitorTrackingDomain||(o.s._visitorTrackingDomain=location.hostname||""),o.s._visitorTracking||(D(),o.s._visitorTracking=(0,r.y1)().visitorTracking||{});var B=function(d){return d==null?s():S(d)};o.s.consent=B;var S=function(d){var m=arguments.length>1&&arguments[1]!==void 0?arguments[1]:o.s._visitorTrackingDomain;d==="default"?delete o.s._visitorTracking[m]:o.s._visitorTracking[m]={isEnabled:"".concat(d)==="true",updatedAt:Date.now()},(0,r.$B)(function(y){return y.visitorTracking=o.s._visitorTracking}),(0,t.mj)("visitortrackingchange",d);var p=v(document.getElementsByTagName("wistia-player"));p.forEach(function(y){y.dispatchEvent(new CustomEvent("visitor-tracking-change",{detail:{isTrackingEnabled:d}}))})},g=function(){if(o.s._visitorTrackingDomain)for(var d=o.s._visitorTrackingDomain.split(".");d.length>0;){var m=o.s._visitorTracking[d.join(".")],p=m&&m.isEnabled;if(p!=null)return p;d.shift()}},s=function(){if(typeof o.s._visitorTracking=="boolean")return o.s._visitorTracking;if(o.s._visitorTracking){var d=g();if(d!=null)return!!d}var m=(0,n.bp)();if(o.s.channel&&o.s.channel.all)try{m.push.apply(m,v(o.s.channel.all()))}catch{}var p=m.some(function(y){var L=y._mediaData||y._galleryData||{};return L.privacyMode===!0});return!p}},4989:(_,l,e)=>{e.d(l,{$:()=>t,b:()=>r});var t=function(o){return o.replace(/[A-Z]+(?![a-z])|[A-Z]/g,function(v,M){return(M!==void 0?"-":"")+v.toLowerCase()})},r=function(o){return o.replace(/-./g,function(v){return v[1].toUpperCase()})}},4997:(_,l,e)=>{e.d(l,{$B:()=>v,y1:()=>o});var t=e(2917),r=e(5509),n="wistia",o=function(){return(0,t.Lg)(n)},v=function(u){return r.s._localStorage=(0,t.yo)(n,u),r.s._localStorage}},5181:(_,l,e)=>{e.d(l,{FK:()=>L,XX:()=>lt,fF:()=>r,h:()=>p,q6:()=>Y,uA:()=>G});var t,r,n,o,v,M,u,c,f,b,D,B,S={},g=[],s=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,i=Array.isArray;function d(h,P){for(var N in P)h[N]=P[N];return h}function m(h){h&&h.parentNode&&h.parentNode.removeChild(h)}function p(h,P,N){var rt,nt,J,ut={};for(J in P)J=="key"?rt=P[J]:J=="ref"?nt=P[J]:ut[J]=P[J];if(arguments.length>2&&(ut.children=arguments.length>3?t.call(arguments,2):N),typeof h=="function"&&h.defaultProps!=null)for(J in h.defaultProps)ut[J]===void 0&&(ut[J]=h.defaultProps[J]);return y(h,ut,rt,nt,null)}function y(h,P,N,rt,nt){var J={type:h,props:P,key:N,ref:rt,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:nt==null?++n:nt,__i:-1,__u:0};return nt==null&&r.vnode!=null&&r.vnode(J),J}function L(h){return h.children}function G(h,P){this.props=h,this.context=P}function it(h,P){if(P==null)return h.__?it(h.__,h.__i+1):null;for(var N;P<h.__k.length;P++)if((N=h.__k[P])!=null&&N.__e!=null)return N.__e;return typeof h.type=="function"?it(h):null}function j(h){var P,N;if((h=h.__)!=null&&h.__c!=null){for(h.__e=h.__c.base=null,P=0;P<h.__k.length;P++)if((N=h.__k[P])!=null&&N.__e!=null){h.__e=h.__c.base=N.__e;break}return j(h)}}function C(h){(!h.__d&&(h.__d=!0)&&o.push(h)&&!A.__r++||v!=r.debounceRendering)&&((v=r.debounceRendering)||M)(A)}function A(){for(var h,P,N,rt,nt,J,ut,_t=1;o.length;)o.length>_t&&o.sort(u),h=o.shift(),_t=o.length,h.__d&&(N=void 0,nt=(rt=(P=h).__v).__e,J=[],ut=[],P.__P&&((N=d({},rt)).__v=rt.__v+1,r.vnode&&r.vnode(N),et(P.__P,N,rt,P.__n,P.__P.namespaceURI,32&rt.__u?[nt]:null,J,nt==null?it(rt):nt,!!(32&rt.__u),ut),N.__v=rt.__v,N.__.__k[N.__i]=N,$(J,N,ut),N.__e!=nt&&j(N)));A.__r=0}function I(h,P,N,rt,nt,J,ut,_t,gt,ct,mt){var V,z,F,K,ot,ft,dt,yt=rt&&rt.__k||g,bt=P.length;for(gt=k(N,P,yt,gt,bt),V=0;V<bt;V++)(F=N.__k[V])!=null&&(z=F.__i==-1?S:yt[F.__i]||S,F.__i=V,ft=et(h,F,z,nt,J,ut,_t,gt,ct,mt),K=F.__e,F.ref&&z.ref!=F.ref&&(z.ref&&q(z.ref,null,F),mt.push(F.ref,F.__c||K,F)),ot==null&&K!=null&&(ot=K),(dt=!!(4&F.__u))||z.__k===F.__k?gt=T(F,gt,h,dt):typeof F.type=="function"&&ft!==void 0?gt=ft:K&&(gt=K.nextSibling),F.__u&=-7);return N.__e=ot,gt}function k(h,P,N,rt,nt){var J,ut,_t,gt,ct,mt=N.length,V=mt,z=0;for(h.__k=new Array(nt),J=0;J<nt;J++)(ut=P[J])!=null&&typeof ut!="boolean"&&typeof ut!="function"?(gt=J+z,(ut=h.__k[J]=typeof ut=="string"||typeof ut=="number"||typeof ut=="bigint"||ut.constructor==String?y(null,ut,null,null,null):i(ut)?y(L,{children:ut},null,null,null):ut.constructor==null&&ut.__b>0?y(ut.type,ut.props,ut.key,ut.ref?ut.ref:null,ut.__v):ut).__=h,ut.__b=h.__b+1,_t=null,(ct=ut.__i=w(ut,N,gt,V))!=-1&&(V--,(_t=N[ct])&&(_t.__u|=2)),_t==null||_t.__v==null?(ct==-1&&(nt>mt?z--:nt<mt&&z++),typeof ut.type!="function"&&(ut.__u|=4)):ct!=gt&&(ct==gt-1?z--:ct==gt+1?z++:(ct>gt?z--:z++,ut.__u|=4))):h.__k[J]=null;if(V)for(J=0;J<mt;J++)(_t=N[J])!=null&&(2&_t.__u)==0&&(_t.__e==rt&&(rt=it(_t)),at(_t,_t));return rt}function T(h,P,N,rt){var nt,J;if(typeof h.type=="function"){for(nt=h.__k,J=0;nt&&J<nt.length;J++)nt[J]&&(nt[J].__=h,P=T(nt[J],P,N,rt));return P}h.__e!=P&&(rt&&(P&&h.type&&!P.parentNode&&(P=it(h)),N.insertBefore(h.__e,P||null)),P=h.__e);do P=P&&P.nextSibling;while(P!=null&&P.nodeType==8);return P}function w(h,P,N,rt){var nt,J,ut,_t=h.key,gt=h.type,ct=P[N],mt=ct!=null&&(2&ct.__u)==0;if(ct===null&&h.key==null||mt&&_t==ct.key&&gt==ct.type)return N;if(rt>(mt?1:0)){for(nt=N-1,J=N+1;nt>=0||J<P.length;)if((ct=P[ut=nt>=0?nt--:J++])!=null&&(2&ct.__u)==0&&_t==ct.key&&gt==ct.type)return ut}return-1}function W(h,P,N){P[0]=="-"?h.setProperty(P,N==null?"":N):h[P]=N==null?"":typeof N!="number"||s.test(P)?N:N+"px"}function H(h,P,N,rt,nt){var J,ut;t:if(P=="style")if(typeof N=="string")h.style.cssText=N;else{if(typeof rt=="string"&&(h.style.cssText=rt=""),rt)for(P in rt)N&&P in N||W(h.style,P,"");if(N)for(P in N)rt&&N[P]==rt[P]||W(h.style,P,N[P])}else if(P[0]=="o"&&P[1]=="n")J=P!=(P=P.replace(c,"$1")),ut=P.toLowerCase(),P=ut in h||P=="onFocusOut"||P=="onFocusIn"?ut.slice(2):P.slice(2),h.l||(h.l={}),h.l[P+J]=N,N?rt?N.u=rt.u:(N.u=f,h.addEventListener(P,J?D:b,J)):h.removeEventListener(P,J?D:b,J);else{if(nt=="http://www.w3.org/2000/svg")P=P.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(P!="width"&&P!="height"&&P!="href"&&P!="list"&&P!="form"&&P!="tabIndex"&&P!="download"&&P!="rowSpan"&&P!="colSpan"&&P!="role"&&P!="popover"&&P in h)try{h[P]=N==null?"":N;break t}catch{}typeof N=="function"||(N==null||N===!1&&P[4]!="-"?h.removeAttribute(P):h.setAttribute(P,P=="popover"&&N==1?"":N))}}function st(h){return function(P){if(this.l){var N=this.l[P.type+h];if(P.t==null)P.t=f++;else if(P.t<N.u)return;return N(r.event?r.event(P):P)}}}function et(h,P,N,rt,nt,J,ut,_t,gt,ct){var mt,V,z,F,K,ot,ft,dt,yt,bt,St,jt,Nt,Yt,zt,Gt,Ft,Ut=P.type;if(P.constructor!=null)return null;128&N.__u&&(gt=!!(32&N.__u),J=[_t=P.__e=N.__e]),(mt=r.__b)&&mt(P);t:if(typeof Ut=="function")try{if(dt=P.props,yt="prototype"in Ut&&Ut.prototype.render,bt=(mt=Ut.contextType)&&rt[mt.__c],St=mt?bt?bt.props.value:mt.__:rt,N.__c?ft=(V=P.__c=N.__c).__=V.__E:(yt?P.__c=V=new Ut(dt,St):(P.__c=V=new G(dt,St),V.constructor=Ut,V.render=vt),bt&&bt.sub(V),V.props=dt,V.state||(V.state={}),V.context=St,V.__n=rt,z=V.__d=!0,V.__h=[],V._sb=[]),yt&&V.__s==null&&(V.__s=V.state),yt&&Ut.getDerivedStateFromProps!=null&&(V.__s==V.state&&(V.__s=d({},V.__s)),d(V.__s,Ut.getDerivedStateFromProps(dt,V.__s))),F=V.props,K=V.state,V.__v=P,z)yt&&Ut.getDerivedStateFromProps==null&&V.componentWillMount!=null&&V.componentWillMount(),yt&&V.componentDidMount!=null&&V.__h.push(V.componentDidMount);else{if(yt&&Ut.getDerivedStateFromProps==null&&dt!==F&&V.componentWillReceiveProps!=null&&V.componentWillReceiveProps(dt,St),!V.__e&&V.shouldComponentUpdate!=null&&V.shouldComponentUpdate(dt,V.__s,St)===!1||P.__v==N.__v){for(P.__v!=N.__v&&(V.props=dt,V.state=V.__s,V.__d=!1),P.__e=N.__e,P.__k=N.__k,P.__k.some(function(kt){kt&&(kt.__=P)}),jt=0;jt<V._sb.length;jt++)V.__h.push(V._sb[jt]);V._sb=[],V.__h.length&&ut.push(V);break t}V.componentWillUpdate!=null&&V.componentWillUpdate(dt,V.__s,St),yt&&V.componentDidUpdate!=null&&V.__h.push(function(){V.componentDidUpdate(F,K,ot)})}if(V.context=St,V.props=dt,V.__P=h,V.__e=!1,Nt=r.__r,Yt=0,yt){for(V.state=V.__s,V.__d=!1,Nt&&Nt(P),mt=V.render(V.props,V.state,V.context),zt=0;zt<V._sb.length;zt++)V.__h.push(V._sb[zt]);V._sb=[]}else do V.__d=!1,Nt&&Nt(P),mt=V.render(V.props,V.state,V.context),V.state=V.__s;while(V.__d&&++Yt<25);V.state=V.__s,V.getChildContext!=null&&(rt=d(d({},rt),V.getChildContext())),yt&&!z&&V.getSnapshotBeforeUpdate!=null&&(ot=V.getSnapshotBeforeUpdate(F,K)),Gt=mt,mt!=null&&mt.type===L&&mt.key==null&&(Gt=tt(mt.props.children)),_t=I(h,i(Gt)?Gt:[Gt],P,N,rt,nt,J,ut,_t,gt,ct),V.base=P.__e,P.__u&=-161,V.__h.length&&ut.push(V),ft&&(V.__E=V.__=null)}catch(kt){if(P.__v=null,gt||J!=null)if(kt.then){for(P.__u|=gt?160:128;_t&&_t.nodeType==8&&_t.nextSibling;)_t=_t.nextSibling;J[J.indexOf(_t)]=null,P.__e=_t}else{for(Ft=J.length;Ft--;)m(J[Ft]);R(P)}else P.__e=N.__e,P.__k=N.__k,kt.then||R(P);r.__e(kt,P,N)}else J==null&&P.__v==N.__v?(P.__k=N.__k,P.__e=N.__e):_t=P.__e=Z(N.__e,P,N,rt,nt,J,ut,gt,ct);return(mt=r.diffed)&&mt(P),128&P.__u?void 0:_t}function R(h){h&&h.__c&&(h.__c.__e=!0),h&&h.__k&&h.__k.forEach(R)}function $(h,P,N){for(var rt=0;rt<N.length;rt++)q(N[rt],N[++rt],N[++rt]);r.__c&&r.__c(P,h),h.some(function(nt){try{h=nt.__h,nt.__h=[],h.some(function(J){J.call(nt)})}catch(J){r.__e(J,nt.__v)}})}function tt(h){return typeof h!="object"||h==null||h.__b&&h.__b>0?h:i(h)?h.map(tt):d({},h)}function Z(h,P,N,rt,nt,J,ut,_t,gt){var ct,mt,V,z,F,K,ot,ft=N.props,dt=P.props,yt=P.type;if(yt=="svg"?nt="http://www.w3.org/2000/svg":yt=="math"?nt="http://www.w3.org/1998/Math/MathML":nt||(nt="http://www.w3.org/1999/xhtml"),J!=null){for(ct=0;ct<J.length;ct++)if((F=J[ct])&&"setAttribute"in F==!!yt&&(yt?F.localName==yt:F.nodeType==3)){h=F,J[ct]=null;break}}if(h==null){if(yt==null)return document.createTextNode(dt);h=document.createElementNS(nt,yt,dt.is&&dt),_t&&(r.__m&&r.__m(P,J),_t=!1),J=null}if(yt==null)ft===dt||_t&&h.data==dt||(h.data=dt);else{if(J=J&&t.call(h.childNodes),ft=N.props||S,!_t&&J!=null)for(ft={},ct=0;ct<h.attributes.length;ct++)ft[(F=h.attributes[ct]).name]=F.value;for(ct in ft)if(F=ft[ct],ct!="children"){if(ct=="dangerouslySetInnerHTML")V=F;else if(!(ct in dt)){if(ct=="value"&&"defaultValue"in dt||ct=="checked"&&"defaultChecked"in dt)continue;H(h,ct,null,F,nt)}}for(ct in dt)F=dt[ct],ct=="children"?z=F:ct=="dangerouslySetInnerHTML"?mt=F:ct=="value"?K=F:ct=="checked"?ot=F:_t&&typeof F!="function"||ft[ct]===F||H(h,ct,F,ft[ct],nt);if(mt)_t||V&&(mt.__html==V.__html||mt.__html==h.innerHTML)||(h.innerHTML=mt.__html),P.__k=[];else if(V&&(h.innerHTML=""),I(P.type=="template"?h.content:h,i(z)?z:[z],P,N,rt,yt=="foreignObject"?"http://www.w3.org/1999/xhtml":nt,J,ut,J?J[0]:N.__k&&it(N,0),_t,gt),J!=null)for(ct=J.length;ct--;)m(J[ct]);_t||(ct="value",yt=="progress"&&K==null?h.removeAttribute("value"):K!=null&&(K!==h[ct]||yt=="progress"&&!K||yt=="option"&&K!=ft[ct])&&H(h,ct,K,ft[ct],nt),ct="checked",ot!=null&&ot!=h[ct]&&H(h,ct,ot,ft[ct],nt))}return h}function q(h,P,N){try{if(typeof h=="function"){var rt=typeof h.__u=="function";rt&&h.__u(),rt&&P==null||(h.__u=h(P))}else h.current=P}catch(nt){r.__e(nt,N)}}function at(h,P,N){var rt,nt;if(r.unmount&&r.unmount(h),(rt=h.ref)&&(rt.current&&rt.current!=h.__e||q(rt,null,P)),(rt=h.__c)!=null){if(rt.componentWillUnmount)try{rt.componentWillUnmount()}catch(J){r.__e(J,P)}rt.base=rt.__P=null}if(rt=h.__k)for(nt=0;nt<rt.length;nt++)rt[nt]&&at(rt[nt],P,N||typeof h.type!="function");N||m(h.__e),h.__c=h.__=h.__e=void 0}function vt(h,P,N){return this.constructor(h,N)}function lt(h,P,N){var rt,nt,J,ut;P==document&&(P=document.documentElement),r.__&&r.__(h,P),nt=(rt=typeof N=="function")?null:N&&N.__k||P.__k,J=[],ut=[],et(P,h=(!rt&&N||P).__k=p(L,null,[h]),nt||S,S,P.namespaceURI,!rt&&N?[N]:nt?null:P.firstChild?t.call(P.childNodes):null,J,!rt&&N?N:nt?nt.__e:P.firstChild,rt,ut),$(J,h,ut)}function Y(h){function P(N){var rt,nt;return this.getChildContext||(rt=new Set,(nt={})[P.__c]=this,this.getChildContext=function(){return nt},this.componentWillUnmount=function(){rt=null},this.shouldComponentUpdate=function(J){this.props.value!=J.value&&rt.forEach(function(ut){ut.__e=!0,C(ut)})},this.sub=function(J){rt.add(J);var ut=J.componentWillUnmount;J.componentWillUnmount=function(){rt&&rt.delete(J),ut&&ut.call(J)}}),N.children}return P.__c="__cC"+B++,P.__=h,P.Provider=P.__l=(P.Consumer=function(N,rt){return N.children(rt)}).contextType=P,P}t=g.slice,r={__e:function(h,P,N,rt){for(var nt,J,ut;P=P.__;)if((nt=P.__c)&&!nt.__)try{if((J=nt.constructor)&&J.getDerivedStateFromError!=null&&(nt.setState(J.getDerivedStateFromError(h)),ut=nt.__d),nt.componentDidCatch!=null&&(nt.componentDidCatch(h,rt||{}),ut=nt.__d),ut)return nt.__E=nt}catch(_t){h=_t}throw h}},n=0,G.prototype.setState=function(h,P){var N;N=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=d({},this.state),typeof h=="function"&&(h=h(d({},N),this.props)),h&&d(N,h),h!=null&&this.__v&&(P&&this._sb.push(P),C(this))},G.prototype.forceUpdate=function(h){this.__v&&(this.__e=!0,h&&this.__h.push(h),C(this))},G.prototype.render=L,o=[],M=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,u=function(h,P){return h.__v.__b-P.__v.__b},A.__r=0,c=/(PointerCapture)$|Capture$/i,f=0,b=st(!1),D=st(!0),B=0},5393:(_,l,e)=>{e.d(l,{H:()=>t});var t=function(){var n;return((n=window.FreshUrl)===null||n===void 0?void 0:n.originalUrl)!=null?window.FreshUrl.originalUrl:window.top===window.self?window.location.href||"":document.referrer||""}},5417:(_,l,e)=>{e.d(l,{Q1:()=>S});var t=e(998);function r(g,s){if(!(g instanceof s))throw new TypeError("Cannot call a class as a function")}function n(g,s){for(var i=0;i<s.length;i++){var d=s[i];d.enumerable=d.enumerable||!1,d.configurable=!0,"value"in d&&(d.writable=!0),Object.defineProperty(g,v(d.key),d)}}function o(g,s,i){return s&&n(g.prototype,s),Object.defineProperty(g,"prototype",{writable:!1}),g}function v(g){var s=M(g,"string");return typeof s=="symbol"?s:s+""}function M(g,s){if(typeof g!="object"||!g)return g;var i=g[Symbol.toPrimitive];if(i!==void 0){var d=i.call(g,s);if(typeof d!="object")return d;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(g)}var u=/^#?([0-9a-f]{3,4}|[0-9a-f]{6,8})$/i,c=/^rgba?\((\d{1,3}(?:\.\d+)?%?),\s*(\d{1,3}(?:\.\d+)?%?),\s*(\d{1,3}(?:\.\d+)?%?)(?:,\s*([01]?\.?\d*))?\)$/,f=/^\d+(\.\d+)*%$/,b=/([0-9a-f])/gi,D=function(s){return f.test(s)?parseFloat(s)*2.55:s},B=function(s,i,d){return d<0&&(d+=1),d>1&&(d-=1),d<1/6?s+(i-s)*6*d:d<1/2?i:d<2/3?s+(i-s)*(2/3-d)*6:s},S=function(){function g(s){r(this,g),s instanceof g?(this.r=s.r,this.g=s.g,this.b=s.b,this.a=s.a):s?this.parse(s):(this.r=this.g=this.b=0,this.a=1)}return o(g,[{key:"parse",value:function(i){if(Array.isArray(i)){var d;this.r=i[0],this.g=i[1],this.b=i[2],this.a=(d=i[3])!==null&&d!==void 0?d:1}else if(u.test(i)){i=String(i);var m=i.replace(/^#/,"");(m.length===3||m.length===4)&&(m=m.replace(b,"$1$1")),this.r=parseInt(m.substr(0,2),16),this.g=parseInt(m.substr(2,2),16),this.b=parseInt(m.substr(4,2),16),m.length===8?this.a=parseInt(m.substr(6,2),16)/255:this.a=1}else if(c.test(i)){i=String(i);var p=i.match(c);this.r=parseFloat(D(p[1])),this.g=parseFloat(D(p[2])),this.b=parseFloat(D(p[3])),p[4]?this.a=parseFloat(p[4]):this.a=1}return this}},{key:"clone",value:function(){return new g(this)}},{key:"_hslFromRgb",value:function(){var i=(0,t.K6)([this.r,this.g,this.b]),d=i.hue,m=i.saturation,p=i.lightness;return this._h=d,this._s=m,this._l=p,this}},{key:"_rgbFromHsl",value:function(){var i=this._h/360,d=this._s/100,m=this._l/100,p=m<.5?m*(1+d):m+d-m*d,y=2*m-p;return this.r=B(y,p,i+1/3)*255,this.g=B(y,p,i)*255,this.b=B(y,p,i-1/3)*255,this}},{key:"blendChannel",value:function(i,d,m,p){return p?(this[i]=Math.sqrt(Math.pow(this[i],2)*(1-m)+Math.pow(d,2)*m),this):(this[i]=m*d+(1-m)*this[i],this)}},{key:"blend",value:function(i,d,m){return i=new g(i),this.blendChannel("r",i.r,d,m),this.blendChannel("g",i.g,d,m),this.blendChannel("b",i.b,d,m),this}},{key:"getContrastRatio",value:function(i){return Number.parseFloat((0,t.bJ)(this.toHexWithHash(),new g(i).toHexWithHash()).toFixed(1))}},{key:"hasAccessibleContrast",value:function(i,d){return this.getContrastRatio(i)>=t.s1[d]}},{key:"hue",value:function(){return this._hslFromRgb(),this._h}},{key:"lightenChannel",value:function(i,d){return this[i]+=d,this[i]<0?this[i]=0:this[i]>255&&(this[i]=255),this}},{key:"lighten",value:function(i){return this.looksLikePercent(i)?this.lightness(this.lightness()+parseFloat(i)):(this.lightenChannel("r",i),this.lightenChannel("g",i),this.lightenChannel("b",i)),this}},{key:"darken",value:function(i){return typeof i=="string"?this.lighten("-".concat(i)):this.lighten(-i)}},{key:"looksLikePercent",value:function(i){return/^-?\d+(\.\d+)?%$/.test(i)}},{key:"lightness",value:function(i){return this._hslFromRgb(),i!=null?(this._l=Math.max(0,Math.min(100,i)),this._rgbFromHsl(),this):this._l}},{key:"saturation",value:function(i){return this._hslFromRgb(),i!=null?(this._s=Math.max(0,Math.min(100,i)),this._rgbFromHsl(),this):this._s}},{key:"setHue",value:function(i){if(this._hslFromRgb(),i!=null)return this._h=Math.max(0,Math.min(360,i)),this._rgbFromHsl(),this}},{key:"shade",value:function(i,d){return this.blend("#000000",i,d)}},{key:"grayLevel",value:function(){return(.299*this.r+.587*this.g+.114*this.b)/255}},{key:"tint",value:function(i,d){return this.blend("#ffffff",i,d)}},{key:"whiteLevel",value:function(){return Math.min(Math.min(this.r,this.g),this.b)}},{key:"getRelativeLuminance",value:function(){var i=function(L){var G=L*.003921569;return G<=.03928?G/12.92:Math.pow((G+.055)/1.055,2.4)},d=i(this.r),m=i(this.g),p=i(this.b);return Math.min(.2126*d+.7152*m+.0722*p,1)}},{key:"isDark",value:function(i){return i?this.getRelativeLuminance()<.15:this.grayLevel()<=.4}},{key:"isLight",value:function(i){return i?this.getRelativeLuminance()>=.8:this.grayLevel()>.4}},{key:"isGrayscale",value:function(){return this.r===this.g&&this.g===this.b}},{key:"distanceFrom",value:function(i){return Math.sqrt(Math.pow(this.r-i.r,2)+Math.pow(this.g-i.g,2)+Math.pow(this.b-i.b,2))}},{key:"channelDominance",value:function(){var i=this;return["r","g","b"].sort(function(d,m){return i[m]-i[d]})}},{key:"alpha",value:function(i){return i!=null?(this.a=i,this):this.a}},{key:"red",value:function(i){return i!=null?(this.r=i,this):this.r}},{key:"green",value:function(i){return i!=null?(this.g=i,this):this.g}},{key:"blue",value:function(i){return i!=null?(this.b=i,this):this.b}},{key:"toHex",value:function(){var i=Math.round(this.r).toString(16),d=Math.round(this.g).toString(16),m=Math.round(this.b).toString(16);return i.length===1&&(i="0".concat(i)),d.length===1&&(d="0".concat(d)),m.length===1&&(m="0".concat(m)),"".concat(i).concat(d).concat(m)}},{key:"toHexWithAlpha",value:function(){var i=Math.round(this.a*255).toString(16);return i.length===1&&(i="0".concat(i)),"".concat(i).concat(this.toHex())}},{key:"toHexWithHash",value:function(){return"#".concat(this.toHex())}},{key:"toRgb",value:function(){return"rgb(".concat(Math.round(this.r),",").concat(Math.round(this.g),",").concat(Math.round(this.b),")")}},{key:"toRgba",value:function(){return"rgba(".concat(Math.round(this.r),",").concat(Math.round(this.g),",").concat(Math.round(this.b),",").concat(this.a,")")}},{key:"toRgbaOrHex",value:function(){return this.toRgba()}},{key:"toPercent",value:function(){return"rgba(".concat(this.r/255*100,"%,").concat(this.g/255*100,"%,").concat(this.b/255*100,"%,").concat(this.a,")")}},{key:"toIeGradient",value:function(){return"progid:DXImageTransform.Microsoft.gradient(startColorStr='#".concat(this.toHexWithAlpha(),"', endColorStr='#").concat(this.toHexWithAlpha(),"')")}},{key:"toString",value:function(){return this.toPercent()}}])}()},5509:(_,l,e)=>{e.d(l,{s:()=>Z});var t=e(8176),r,n,o,v,M,u,c,f,b,D,B,S,g,s,i,d,m,p,y,L,G,it,j,C,A,I,k,T,w,W,H,st,et,R,$,tt=function(q,at){if(typeof q=="undefined"||q===null)throw new TypeError("Cannot convert undefined or null to object");return Object.prototype.hasOwnProperty.call(Object(q),at)};(r=t.z.Wistia)!==null&&r!==void 0||(t.z.Wistia={}),(o=(n=t.z.Wistia)._destructors)!==null&&o!==void 0||(n._destructors={}),(M=(v=t.z.Wistia)._initializers)!==null&&M!==void 0||(v._initializers={}),(c=(u=t.z.Wistia)._remoteData)!==null&&c!==void 0||(u._remoteData=new Map),(b=(f=t.z.Wistia).api)!==null&&b!==void 0||(f.api=function(){return console.error("Accessed Wistia.api() before it was initialized"),null}),(B=(D=t.z.Wistia).defineControl)!==null&&B!==void 0||(D.defineControl=function(){return console.error("Accessed Wistia.defineControl() before it was initialized"),null}),(g=(S=t.z.Wistia).EventShepherdManager)!==null&&g!==void 0||(S.EventShepherdManager={}),(i=(s=t.z.Wistia).mixin)!==null&&i!==void 0||(s.mixin=function(q){var at=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};Object.keys(at).forEach(function(vt){tt(at,vt)&&(q[vt]=at[vt])})}),(m=(d=t.z.Wistia).playlistMethods)!==null&&m!==void 0||(d.playlistMethods=new Map),(y=(p=t.z.Wistia).PublicApi)!==null&&y!==void 0||(p.PublicApi=null),(G=(L=t.z.Wistia).uncacheMedia)!==null&&G!==void 0||(L.uncacheMedia=function(){return console.error("Accessed Wistia.uncacheMedia() before it was initialized"),null}),(j=(it=t.z.Wistia).VisitorKey)!==null&&j!==void 0||(it.VisitorKey=null),(A=(C=t.z.Wistia).visitorKey)!==null&&A!==void 0||(C.visitorKey=null),(k=(I=t.z.Wistia).wistia)!==null&&k!==void 0||(I.wistia=void 0),(w=(T=t.z.Wistia)._liveStreamEventDataPromises)!==null&&w!==void 0||(T._liveStreamEventDataPromises={}),(H=(W=t.z.Wistia)._mediaDataPromises)!==null&&H!==void 0||(W._mediaDataPromises={}),(et=(st=t.z.Wistia)._liveStreamPollingPromises)!==null&&et!==void 0||(st._liveStreamPollingPromises={}),($=(R=t.z.Wistia).first)!==null&&$!==void 0||(R.first=function(){var q;return(q=t.z.Wistia.api())!==null&&q!==void 0?q:document.querySelector("wistia-player")});var Z=t.z.Wistia},5510:(_,l,e)=>{e.d(l,{bp:()=>o}),e(6637);var t=e(3997),r=function(){return(0,t.m)("video")===void 0?[]:Object.values((0,t.m)("video"))},n=function(){return(0,t.m)("iframe_api")===void 0?[]:Object.values((0,t.m)("iframe_api"))},o=function(){return r().concat(n())}},5819:(_,l,e)=>{e.d(l,{V:()=>m});var t=e(4635),r=e(5181),n=e(731),o=e(7715),v=e(4730);function M(p,y){if(!(p instanceof y))throw new TypeError("Cannot call a class as a function")}function u(p,y){for(var L=0;L<y.length;L++){var G=y[L];G.enumerable=G.enumerable||!1,G.configurable=!0,"value"in G&&(G.writable=!0),Object.defineProperty(p,f(G.key),G)}}function c(p,y,L){return y&&u(p.prototype,y),Object.defineProperty(p,"prototype",{writable:!1}),p}function f(p){var y=b(p,"string");return typeof y=="symbol"?y:y+""}function b(p,y){if(typeof p!="object"||!p)return p;var L=p[Symbol.toPrimitive];if(L!==void 0){var G=L.call(p,y);if(typeof G!="object")return G;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(p)}function D(p,y,L){return y=s(y),B(p,g()?Reflect.construct(y,L||[],s(p).constructor):y.apply(p,L))}function B(p,y){if(y&&(typeof y=="object"||typeof y=="function"))return y;if(y!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return S(p)}function S(p){if(p===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return p}function g(){try{var p=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(g=function(){return!!p})()}function s(p){return s=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(y){return y.__proto__||Object.getPrototypeOf(y)},s(p)}function i(p,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function");p.prototype=Object.create(y&&y.prototype,{constructor:{value:p,writable:!0,configurable:!0}}),Object.defineProperty(p,"prototype",{writable:!1}),y&&d(p,y)}function d(p,y){return d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(L,G){return L.__proto__=G,L},d(p,y)}(0,v.Oj)("en-US",{THUMBNAIL_VIDEO_THUMBNAIL:"Video Thumbnail"});var m=function(p){function y(L){var G;return M(this,y),G=D(this,y,[L]),G.initialState=G.state={isLoaded:!1,isDisplaying:!1},G.onDisplay=G.props.onDisplay,G}return i(y,p),c(y,[{key:"componentWillReceiveProps",value:function(G){G.images!==this.props.images&&(this._sortedImages=null,this.setState({isLoaded:!1,isDisplaying:!1})),!this.onDisplay&&G.onDisplay&&(this.onDisplay=G.onDisplay)}},{key:"render",value:function(){var G=this,it=this.props.thumbnailAltText!==void 0?this.props.thumbnailAltText:this.translate("VIDEO_THUMBNAIL");return(0,r.h)("div",{style:this.wrapperStyle(),class:"w-css-reset"},(0,r.h)("img",{class:"w-css-reset",srcset:this.props.images.length>1?this.srcSet():null,src:this.bestSrc(),style:this.imgStyle(),alt:it,ref:function(C){return G.imgElem=C},"aria-hidden":this.props.ariaHidden?"true":null}))}},{key:"translate",value:function(G){return(0,v.sC)(this.props.playerLanguage,"THUMBNAIL_".concat(G))}},{key:"componentDidMount",value:function(){this.setStateBasedOnImgStatus(),this.maybeCallOnDisplay(this.initialState)}},{key:"componentDidUpdate",value:function(G,it){this.setStateBasedOnImgStatus(),this.maybeCallOnDisplay(it)}},{key:"maybeCallOnDisplay",value:function(){this.onDisplay&&this.state.isDisplaying&&!this.calledOnDisplay&&(this.calledOnDisplay=!0,this.onDisplay())}},{key:"setStateBasedOnImgStatus",value:function(){var G=this,it=this.state,j=this.imgElem;it.isLoaded||(j.onload||(j.onload=function(){(0,o.lj)(j)&&G.setState({isLoaded:!0,isDisplaying:!0})}),j.complete&&this.setState({isLoaded:!0,isDisplaying:!0}))}},{key:"wrapperStyle",value:function(){var G=this.state.isDisplaying&&this.props.isVisible;return(0,n.kp)({},this.props.wrapperStyle,{display:this.state.isLoaded&&!G?"none":"block"})}},{key:"baseStyle",value:function(){var G=this.props.fitStrategy;return G==="cover"?this.coverStyle():G==="contain"?this.containStyle():G==="fill"?this.fillStyle():G==="naturalHeight"?this.naturalHeightStyle():this.containStyle()}},{key:"imgStyle",value:function(){var G=this.state.isDisplaying&&this.props.isVisible;return(0,n.kp)(this.baseStyle(),{clip:G?"auto":"rect(0,0,0,0)",display:this.state.isLoaded&&!G?"none":"block",borderRadius:"".concat(this.props.playerBorderRadius,"px")})}},{key:"containStyle",value:function(){return{backgroundColor:this.props.backgroundColor||"#000",height:"100%",objectFit:"contain",position:"absolute",width:"100%",top:0,left:0}}},{key:"coverStyle",value:function(){return{height:"100%",objectFit:"cover",position:"absolute",width:"100%"}}},{key:"fillStyle",value:function(){return{height:"100%",objectFit:"fill",position:"absolute",width:"100%"}}},{key:"naturalHeightStyle",value:function(){return{width:"100%",position:"relative"}}},{key:"bestSrc",value:function(){return(0,t.cd)(this.props.images,{videoWidth:this.props.videoWidth,videoHeight:this.props.videoHeight}).url}},{key:"srcSet",value:function(){var G=this.sortedImages();return G.length===0&&(G=[(0,t.YG)(this.props.videoWidth,this.props.videoHeight)]),G.map(function(it){return"".concat(it.url," ").concat(it.width,"w")}).join(", ")}},{key:"sortedImages",value:function(){return this._sortedImages?this._sortedImages:(this._sortedImages=(0,t.eZ)(this.props.images),this._sortedImages)}},{key:"stretchLimit",value:function(){var G=this.props.stretchLimit;return G!=null?G:10}}])}(r.uA)},5833:(_,l,e)=>{e.d(l,{n:()=>T});var t=e(5509),r=e(159),n=e(1885),o=e(5857),v=e(3917),M=e(3411),u=e(959),c=e(731),f=e(3065);function b(w,W){return s(w)||g(w,W)||B(w,W)||D()}function D(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
27
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function B(w,W){if(w){if(typeof w=="string")return S(w,W);var H={}.toString.call(w).slice(8,-1);return H==="Object"&&w.constructor&&(H=w.constructor.name),H==="Map"||H==="Set"?Array.from(w):H==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(H)?S(w,W):void 0}}function S(w,W){(W==null||W>w.length)&&(W=w.length);for(var H=0,st=Array(W);H<W;H++)st[H]=w[H];return st}function g(w,W){var H=w==null?null:typeof Symbol!="undefined"&&w[Symbol.iterator]||w["@@iterator"];if(H!=null){var st,et,R,$,tt=[],Z=!0,q=!1;try{if(R=(H=H.call(w)).next,W!==0)for(;!(Z=(st=R.call(H)).done)&&(tt.push(st.value),tt.length!==W);Z=!0);}catch(at){q=!0,et=at}finally{try{if(!Z&&H.return!=null&&($=H.return(),Object($)!==$))return}finally{if(q)throw et}}return tt}}function s(w){if(Array.isArray(w))return w}function i(){var w,W,H=typeof Symbol=="function"?Symbol:{},st=H.iterator||"@@iterator",et=H.toStringTag||"@@toStringTag";function R(Y,h,P,N){var rt=h&&h.prototype instanceof tt?h:tt,nt=Object.create(rt.prototype);return d(nt,"_invoke",function(J,ut,_t){var gt,ct,mt,V=0,z=_t||[],F=!1,K={p:0,n:0,v:w,a:ot,f:ot.bind(w,4),d:function(dt,yt){return gt=dt,ct=0,mt=w,K.n=yt,$}};function ot(ft,dt){for(ct=ft,mt=dt,W=0;!F&&V&&!yt&&W<z.length;W++){var yt,bt=z[W],St=K.p,jt=bt[2];ft>3?(yt=jt===dt)&&(mt=bt[(ct=bt[4])?5:(ct=3,3)],bt[4]=bt[5]=w):bt[0]<=St&&((yt=ft<2&&St<bt[1])?(ct=0,K.v=dt,K.n=bt[1]):St<jt&&(yt=ft<3||bt[0]>dt||dt>jt)&&(bt[4]=ft,bt[5]=dt,K.n=jt,ct=0))}if(yt||ft>1)return $;throw F=!0,dt}return function(ft,dt,yt){if(V>1)throw TypeError("Generator is already running");for(F&&dt===1&&ot(dt,yt),ct=dt,mt=yt;(W=ct<2?w:mt)||!F;){gt||(ct?ct<3?(ct>1&&(K.n=-1),ot(ct,mt)):K.n=mt:K.v=mt);try{if(V=2,gt){if(ct||(ft="next"),W=gt[ft]){if(!(W=W.call(gt,mt)))throw TypeError("iterator result is not an object");if(!W.done)return W;mt=W.value,ct<2&&(ct=0)}else ct===1&&(W=gt.return)&&W.call(gt),ct<2&&(mt=TypeError("The iterator does not provide a '"+ft+"' method"),ct=1);gt=w}else if((W=(F=K.n<0)?mt:J.call(ut,K))!==$)break}catch(bt){gt=w,ct=1,mt=bt}finally{V=1}}return{value:W,done:F}}}(Y,P,N),!0),nt}var $={};function tt(){}function Z(){}function q(){}W=Object.getPrototypeOf;var at=[][st]?W(W([][st]())):(d(W={},st,function(){return this}),W),vt=q.prototype=tt.prototype=Object.create(at);function lt(Y){return Object.setPrototypeOf?Object.setPrototypeOf(Y,q):(Y.__proto__=q,d(Y,et,"GeneratorFunction")),Y.prototype=Object.create(vt),Y}return Z.prototype=q,d(vt,"constructor",q),d(q,"constructor",Z),Z.displayName="GeneratorFunction",d(q,et,"GeneratorFunction"),d(vt),d(vt,et,"Generator"),d(vt,st,function(){return this}),d(vt,"toString",function(){return"[object Generator]"}),(i=function(){return{w:R,m:lt}})()}function d(w,W,H,st){var et=Object.defineProperty;try{et({},"",{})}catch{et=0}d=function($,tt,Z,q){if(tt)et?et($,tt,{value:Z,enumerable:!q,configurable:!q,writable:!q}):$[tt]=Z;else{var at=function(lt,Y){d($,lt,function(h){return this._invoke(lt,Y,h)})};at("next",0),at("throw",1),at("return",2)}},d(w,W,H,st)}function m(w,W,H,st,et,R,$){try{var tt=w[R]($),Z=tt.value}catch(q){return void H(q)}tt.done?W(Z):Promise.resolve(Z).then(st,et)}function p(w){return function(){var W=this,H=arguments;return new Promise(function(st,et){var R=w.apply(W,H);function $(Z){m(R,st,et,$,tt,"next",Z)}function tt(Z){m(R,st,et,$,tt,"throw",Z)}$(void 0)})}}var y=15,L=3e4,G=15e3,it=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st=(0,n.CC)(W,H),et=st.replace(/\.json(?!p)/,".jsonp").replace(/&$/,""),R=(0,r.Rb)(et,{ignoreProtocol:!0,scriptRegex:(0,n.dq)(W)});return!!R},j=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st=(0,o.Dd)(H);return"".concat((0,o.v9)(),"//").concat(st,"/embed/").concat(W,".js")},C=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st=j(W,H),et=(0,r.Rb)(st,{ignoreProtocol:!0});return!!et},A=function(){var w=p(i().m(function W(H,st){return i().w(function(et){for(;;)switch(et.n){case 0:return et.a(2,new Promise(function(R,$){var tt=-1,Z=function(){var at=window["wistiajsonp-/embed/medias/".concat(H,".jsonp")];if(at){if(at.media){clearInterval(tt),(0,M.ry)(H,at.media),(0,f.j)(H,st).then(R).catch(function(){$(new Error("Failed to fetch media data via jsonp"))});return}(0,u.V)(at)&&(clearInterval(tt),R(at))}};Z(),tt=window.setInterval(Z,y),setTimeout(function(){clearInterval(tt),$(new Error("Timeout loading jsonp media data"))},L)}))}},W)}));return function(H,st){return w.apply(this,arguments)}}(),I=function(){var w=p(i().m(function W(H){var st,et,R=arguments;return i().w(function($){for(;;)switch($.n){case 0:return st=R.length>1&&R[1]!==void 0?R[1]:{},et=j(H,st),$.a(2,new Promise(function(tt,Z){setTimeout(function(){Z(new Error("Timeout loading js media data"))},L),import(et).then(function(q){var at=q.mediaData;(0,M.ry)(H,at),(0,f.j)(H,st).then(tt).catch(function(){Z(new Error("Failed to fetch media data via js script"))})}).catch(function(){Z(new Error("Failed to load js media data"))})}))}},W)}));return function(H){return w.apply(this,arguments)}}(),k=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st={current:-1},et=new Promise(function(R,$){st.current=window.setTimeout(function(){(0,f.j)(W,H).then(R).catch(function(tt){$(tt instanceof Error?tt:new Error(String(tt)))})},G)});return[et,st]},T=function(){var w=p(i().m(function W(H){var st,et,R,$,tt,Z,q,at,vt,lt,Y,h=arguments;return i().w(function(P){for(;;)switch(P.n){case 0:if(et=h.length>1&&h[1]!==void 0?h[1]:{},R=(0,M.F2)(H),!(R!=null&&et.skipCache!==!0)){P.n=1;break}return P.a(2,(0,f.j)(H,et));case 1:if($=(st=t.s._inlineMediaData)===null||st===void 0?void 0:st[H],$==null){P.n=2;break}return tt=(0,c.o8)($),(0,v.M)(tt,et),(0,M.ry)(H,tt),P.a(2,(0,f.j)(H,et));case 2:if(Z=[],it(H,et)&&Z.push(A(H,et)),C(H,et)&&Z.push(I(H,et)),Z.length!==0){P.n=4;break}return P.n=3,(0,f.j)(H,et);case 3:q=P.v,P.n=6;break;case 4:return at=k(H,et),vt=b(at,2),lt=vt[0],Y=vt[1],P.n=5,Promise.any([].concat(Z,[lt]));case 5:q=P.v,clearTimeout(Y.current);case 6:return P.a(2,q)}},W)}));return function(H){return w.apply(this,arguments)}}()},5857:(_,l,e)=>{e.d(l,{CX:()=>s,Dd:()=>G,KG:()=>D,Qz:()=>it,U4:()=>S,aY:()=>y,bC:()=>p,bF:()=>u,cu:()=>B,hk:()=>f,iD:()=>b,kh:()=>i,pK:()=>M,pb:()=>c,v9:()=>L});var t=e(8176),r=e(2671),n=e(787);(0,n.Ni)("app"),(0,n.Ni)("fast-protected");var o=(0,n.Ni)("fast"),v="fast-canary.wistia.net",M="embed.wistia.com",u="fast.wistia.net",c="fast.wistia.com",f="embed.wistia.com",b="embed-ssl.wistia.com",D="embed-fastly.wistia.com",B="embed-ssl.wistia.com",S="0.3.2";(function(){return typeof window!="undefined"&&t.z===window&&t.z.location?t.z.location.protocol:"https:"})();var g=function(){var T=(0,n.UM)("fast");return T||null},s=function(){var T=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0;if(T)return T;var w=g();return w||o},i=function(){var T=g();if(T)return T;var w="wistia.net";return"fast.".concat(w)},d=function(){return v},m=function(){for(var k=document.getElementsByTagName("script"),T=0;T<k.length;T++){var w=k[T];if(w.src){var W=new r.s0(w.src),H=/\/assets\/external\/E-v1?\.js$/.test(W.rawPath),st=W.host===s()||W.host===i()||W.host===d(),et=location.protocol==="https:"&&W.protocol==="https:",R=W.protocol===""||W.protocol==null,$=et||R||location.protocol==="http:",tt=!w.readyState||/loaded|complete/.test(w.readyState);if(H&&st&&$&&tt)return W}}return new r.s0("".concat((0,r.ff)(),"//").concat(i(),"/E-v1.js"))}(),p=function(){return m.host},y=function(){return m.port?"".concat(p(),":").concat(m.port):p()},L=function(){return m.protocol},G=function(){var T=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return T.embedHost?I(T.embedHost):y()},it=function(){var T="wistia.com";return"pipedream.".concat(T)},j=["wistia.net","wistia.com"],C=[].concat(j,["wistia.mx","wistia.dev","wistia.tech","wistia.am","wistia.se","wistia.io","wistia.st"]),A=new RegExp("(".concat(C.map(function(k){return"\\.".concat(k.replace(".","\\."))}).join("|"),")$")),I=function(T){return T&&A.test(T)?T:y()}},6461:(_,l,e)=>{e(159)},6462:(_,l,e)=>{e.d(l,{I:()=>it});var t=e(8089),r=e.n(t),n=e(8290),o=e.n(n),v=e(731);function M(C,A){if(!(C instanceof A))throw new TypeError("Cannot call a class as a function")}function u(C,A){for(var I=0;I<A.length;I++){var k=A[I];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(C,f(k.key),k)}}function c(C,A,I){return A&&u(C.prototype,A),Object.defineProperty(C,"prototype",{writable:!1}),C}function f(C){var A=b(C,"string");return typeof A=="symbol"?A:A+""}function b(C,A){if(typeof C!="object"||!C)return C;var I=C[Symbol.toPrimitive];if(I!==void 0){var k=I.call(C,A);if(typeof k!="object")return k;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(C)}function D(C,A){S(C,A),A.add(C)}function B(C,A,I){S(C,A),A.set(C,I)}function S(C,A){if(A.has(C))throw new TypeError("Cannot initialize the same private elements twice on an object")}function g(C,A,I){return C.set(i(C,A),I),I}function s(C,A){return C.get(i(C,A))}function i(C,A,I){if(typeof C=="function"?C===A:C.has(A))return arguments.length<3?A:I;throw new TypeError("Private element is not present on this object")}var d=new WeakMap,m=new WeakMap,p=new WeakMap,y=new WeakMap,L=new WeakMap,G=new WeakSet,it=function(){function C(){M(this,C),D(this,G),B(this,d,{}),B(this,m,{}),B(this,p,{}),B(this,y,{domOptions:{},iframeOptions:{},mediaDataOptions:{},wistiaWindowOptions:{}}),B(this,L,{})}return c(C,[{key:"embedOptions",get:function(){return s(m,this)}},{key:"mediaData",get:function(){return s(p,this).embedOptions=s(m,this),s(p,this)}},{key:"setDomEmbedOptionSource",value:function(I){s(y,this).domOptions=I,i(G,this,j).call(this)}},{key:"setIframeEmbedOptionSource",value:function(I){s(y,this).iframeOptions=I,i(G,this,j).call(this)}},{key:"setMediaDataSource",value:function(I){var k;g(L,this,I),g(p,this,(0,v.wg)(o()(s(L,this)))),s(p,this).hashedId!==void 0&&(s(p,this).hashedId=s(p,this).hashedId.toString()),s(y,this).mediaDataOptions=(k=o()(s(p,this).embedOptions))!==null&&k!==void 0?k:{},i(G,this,j).call(this)}},{key:"setWistiaWindowEmbedOptionSource",value:function(I){s(y,this).wistiaWindowOptions=I,i(G,this,j).call(this)}},{key:"updateEmbedOptionOverrides",value:function(I){g(d,this,r()(s(d,this),I)),g(m,this,r()(s(m,this),s(d,this)))}}])}();function j(){var C=s(y,this),A=C.mediaDataOptions,I=C.wistiaWindowOptions,k=C.domOptions,T=C.iframeOptions;g(m,this,(0,v.wg)(r()({},A!=null?A:{},I!=null?I:{},k!=null?k:{},T!=null?T:{},s(d,this)))),s(p,this).embedOptions=s(m,this)}},6633:(_,l)=>{l.fP=l._N=l.qg=l.T1=void 0;var e="\\d+",t="".concat(e,"(?:[\\.,]").concat(e,")?"),r="(".concat(e,"Y)?(").concat(e,"M)?(").concat(e,"W)?(").concat(e,"D)?"),n="T(".concat(t,"H)?(").concat(t,"M)?(").concat(t,"S)?"),o="P(?:".concat(r,"(?:").concat(n,")?)"),v=["years","months","weeks","days","hours","minutes","seconds"],M=Object.freeze({years:0,months:0,weeks:0,days:0,hours:0,minutes:0,seconds:0});l.T1=new RegExp(o);var u=function(b){var D=b.replace(/,/g,".").match(l.T1);if(!D)throw new RangeError("invalid duration: ".concat(b));var B=D.slice(1);if(B.filter(function(S){return S!=null}).length===0)throw new RangeError("invalid duration: ".concat(b));if(B.filter(function(S){return/\./.test(S||"")}).length>1)throw new RangeError("only the smallest unit can be fractional");return B.reduce(function(S,g,s){return S[v[s]]=parseFloat(g||"0")||0,S},{})};l.qg=u;var c=function(b,D){D===void 0&&(D=new Date);var B=Object.assign({},M,b),S=D.getTime(),g=new Date(S);g.setFullYear(g.getFullYear()+B.years),g.setMonth(g.getMonth()+B.months),g.setDate(g.getDate()+B.days);var s=B.hours*3600*1e3,i=B.minutes*60*1e3;return g.setMilliseconds(g.getMilliseconds()+B.seconds*1e3+s+i),g.setDate(g.getDate()+B.weeks*7),g};l._N=c;var f=function(b,D){D===void 0&&(D=new Date);var B=Object.assign({},M,b),S=D.getTime(),g=new Date(S),s=(0,l._N)(B,g),i=D.getTimezoneOffset(),d=s.getTimezoneOffset(),m=(i-d)*60,p=(s.getTime()-g.getTime())/1e3;return p+m};l.fP=f,l._N,l.fP,l.T1,l.qg},6637:(_,l,e)=>{e.d(l,{ct:()=>it});var t=e(4271),r=e(5509);function n(j){return u(j)||M(j)||v(j)||o()}function o(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
27
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function B(w,W){if(w){if(typeof w=="string")return S(w,W);var H={}.toString.call(w).slice(8,-1);return H==="Object"&&w.constructor&&(H=w.constructor.name),H==="Map"||H==="Set"?Array.from(w):H==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(H)?S(w,W):void 0}}function S(w,W){(W==null||W>w.length)&&(W=w.length);for(var H=0,st=Array(W);H<W;H++)st[H]=w[H];return st}function g(w,W){var H=w==null?null:typeof Symbol!="undefined"&&w[Symbol.iterator]||w["@@iterator"];if(H!=null){var st,et,R,$,tt=[],Z=!0,q=!1;try{if(R=(H=H.call(w)).next,W!==0)for(;!(Z=(st=R.call(H)).done)&&(tt.push(st.value),tt.length!==W);Z=!0);}catch(at){q=!0,et=at}finally{try{if(!Z&&H.return!=null&&($=H.return(),Object($)!==$))return}finally{if(q)throw et}}return tt}}function s(w){if(Array.isArray(w))return w}function i(){var w,W,H=typeof Symbol=="function"?Symbol:{},st=H.iterator||"@@iterator",et=H.toStringTag||"@@toStringTag";function R(Y,h,P,N){var rt=h&&h.prototype instanceof tt?h:tt,nt=Object.create(rt.prototype);return d(nt,"_invoke",function(J,ut,_t){var gt,ct,mt,V=0,z=_t||[],F=!1,K={p:0,n:0,v:w,a:ot,f:ot.bind(w,4),d:function(dt,yt){return gt=dt,ct=0,mt=w,K.n=yt,$}};function ot(ft,dt){for(ct=ft,mt=dt,W=0;!F&&V&&!yt&&W<z.length;W++){var yt,bt=z[W],St=K.p,jt=bt[2];ft>3?(yt=jt===dt)&&(mt=bt[(ct=bt[4])?5:(ct=3,3)],bt[4]=bt[5]=w):bt[0]<=St&&((yt=ft<2&&St<bt[1])?(ct=0,K.v=dt,K.n=bt[1]):St<jt&&(yt=ft<3||bt[0]>dt||dt>jt)&&(bt[4]=ft,bt[5]=dt,K.n=jt,ct=0))}if(yt||ft>1)return $;throw F=!0,dt}return function(ft,dt,yt){if(V>1)throw TypeError("Generator is already running");for(F&&dt===1&&ot(dt,yt),ct=dt,mt=yt;(W=ct<2?w:mt)||!F;){gt||(ct?ct<3?(ct>1&&(K.n=-1),ot(ct,mt)):K.n=mt:K.v=mt);try{if(V=2,gt){if(ct||(ft="next"),W=gt[ft]){if(!(W=W.call(gt,mt)))throw TypeError("iterator result is not an object");if(!W.done)return W;mt=W.value,ct<2&&(ct=0)}else ct===1&&(W=gt.return)&&W.call(gt),ct<2&&(mt=TypeError("The iterator does not provide a '"+ft+"' method"),ct=1);gt=w}else if((W=(F=K.n<0)?mt:J.call(ut,K))!==$)break}catch(bt){gt=w,ct=1,mt=bt}finally{V=1}}return{value:W,done:F}}}(Y,P,N),!0),nt}var $={};function tt(){}function Z(){}function q(){}W=Object.getPrototypeOf;var at=[][st]?W(W([][st]())):(d(W={},st,function(){return this}),W),vt=q.prototype=tt.prototype=Object.create(at);function lt(Y){return Object.setPrototypeOf?Object.setPrototypeOf(Y,q):(Y.__proto__=q,d(Y,et,"GeneratorFunction")),Y.prototype=Object.create(vt),Y}return Z.prototype=q,d(vt,"constructor",q),d(q,"constructor",Z),Z.displayName="GeneratorFunction",d(q,et,"GeneratorFunction"),d(vt),d(vt,et,"Generator"),d(vt,st,function(){return this}),d(vt,"toString",function(){return"[object Generator]"}),(i=function(){return{w:R,m:lt}})()}function d(w,W,H,st){var et=Object.defineProperty;try{et({},"",{})}catch{et=0}d=function($,tt,Z,q){if(tt)et?et($,tt,{value:Z,enumerable:!q,configurable:!q,writable:!q}):$[tt]=Z;else{var at=function(lt,Y){d($,lt,function(h){return this._invoke(lt,Y,h)})};at("next",0),at("throw",1),at("return",2)}},d(w,W,H,st)}function m(w,W,H,st,et,R,$){try{var tt=w[R]($),Z=tt.value}catch(q){return void H(q)}tt.done?W(Z):Promise.resolve(Z).then(st,et)}function p(w){return function(){var W=this,H=arguments;return new Promise(function(st,et){var R=w.apply(W,H);function $(Z){m(R,st,et,$,tt,"next",Z)}function tt(Z){m(R,st,et,$,tt,"throw",Z)}$(void 0)})}}var y=15,L=3e4,G=15e3,it=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st=(0,n.CC)(W,H),et=st.replace(/\.json(?!p)/,".jsonp").replace(/&$/,""),R=(0,r.Rb)(et,{ignoreProtocol:!0,scriptRegex:(0,n.dq)(W)});return!!R},j=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st=(0,o.Dd)(H);return"".concat((0,o.v9)(),"//").concat(st,"/embed/").concat(W,".js")},C=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st=j(W,H),et=(0,r.Rb)(st,{ignoreProtocol:!0});return!!et},A=function(){var w=p(i().m(function W(H,st){return i().w(function(et){for(;;)switch(et.n){case 0:return et.a(2,new Promise(function(R,$){var tt=-1,Z=function(){var at=window["wistiajsonp-/embed/medias/".concat(H,".jsonp")];if(at){if(at.media){clearInterval(tt),(0,M.ry)(H,at.media),(0,f.j)(H,st).then(R).catch(function(){$(new Error("Failed to fetch media data via jsonp"))});return}(0,u.V)(at)&&(clearInterval(tt),R(at))}};Z(),tt=window.setInterval(Z,y),setTimeout(function(){clearInterval(tt),$(new Error("Timeout loading jsonp media data"))},L)}))}},W)}));return function(H,st){return w.apply(this,arguments)}}(),I=function(){var w=p(i().m(function W(H){var st,et,R=arguments;return i().w(function($){for(;;)switch($.n){case 0:return st=R.length>1&&R[1]!==void 0?R[1]:{},et=j(H,st),$.a(2,new Promise(function(tt,Z){setTimeout(function(){Z(new Error("Timeout loading js media data"))},L),import(et).then(function(q){var at=q.mediaData;(0,M.ry)(H,at),(0,f.j)(H,st).then(tt).catch(function(){Z(new Error("Failed to fetch media data via js script"))})}).catch(function(){Z(new Error("Failed to load js media data"))})}))}},W)}));return function(H){return w.apply(this,arguments)}}(),k=function(W){var H=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},st={current:-1},et=new Promise(function(R,$){st.current=window.setTimeout(function(){(0,f.j)(W,H).then(R).catch(function(tt){$(tt instanceof Error?tt:new Error(String(tt)))})},G)});return[et,st]},T=function(){var w=p(i().m(function W(H){var st,et,R,$,tt,Z,q,at,vt,lt,Y,h=arguments;return i().w(function(P){for(;;)switch(P.n){case 0:if(et=h.length>1&&h[1]!==void 0?h[1]:{},R=(0,M.F2)(H),!(R!=null&&et.skipCache!==!0)){P.n=1;break}return P.a(2,(0,f.j)(H,et));case 1:if($=(st=t.s._inlineMediaData)===null||st===void 0?void 0:st[H],$==null){P.n=2;break}return tt=(0,c.o8)($),(0,v.M)(tt,et),(0,M.ry)(H,tt),P.a(2,(0,f.j)(H,et));case 2:if(Z=[],it(H,et)&&Z.push(A(H,et)),C(H,et)&&Z.push(I(H,et)),Z.length!==0){P.n=4;break}return P.n=3,(0,f.j)(H,et);case 3:q=P.v,P.n=6;break;case 4:return at=k(H,et),vt=b(at,2),lt=vt[0],Y=vt[1],P.n=5,Promise.any([].concat(Z,[lt]));case 5:q=P.v,clearTimeout(Y.current);case 6:return P.a(2,q)}},W)}));return function(H){return w.apply(this,arguments)}}()},5857:(_,l,e)=>{e.d(l,{CX:()=>s,Dd:()=>G,KG:()=>D,Qz:()=>it,U4:()=>S,aY:()=>y,bC:()=>p,bF:()=>u,cu:()=>B,hk:()=>f,iD:()=>b,kh:()=>i,pK:()=>M,pb:()=>c,v9:()=>L});var t=e(8176),r=e(2671),n=e(787);(0,n.Ni)("app"),(0,n.Ni)("fast-protected");var o=(0,n.Ni)("fast"),v="fast-canary.wistia.net",M="embed.wistia.com",u="fast.wistia.net",c="fast.wistia.com",f="embed.wistia.com",b="embed-ssl.wistia.com",D="embed-fastly.wistia.com",B="embed-ssl.wistia.com",S="0.3.3";(function(){return typeof window!="undefined"&&t.z===window&&t.z.location?t.z.location.protocol:"https:"})();var g=function(){var T=(0,n.UM)("fast");return T||null},s=function(){var T=arguments.length>0&&arguments[0]!==void 0?arguments[0]:void 0;if(T)return T;var w=g();return w||o},i=function(){var T=g();if(T)return T;var w="wistia.net";return"fast.".concat(w)},d=function(){return v},m=function(){for(var k=document.getElementsByTagName("script"),T=0;T<k.length;T++){var w=k[T];if(w.src){var W=new r.s0(w.src),H=/\/assets\/external\/E-v1?\.js$/.test(W.rawPath),st=W.host===s()||W.host===i()||W.host===d(),et=location.protocol==="https:"&&W.protocol==="https:",R=W.protocol===""||W.protocol==null,$=et||R||location.protocol==="http:",tt=!w.readyState||/loaded|complete/.test(w.readyState);if(H&&st&&$&&tt)return W}}return new r.s0("".concat((0,r.ff)(),"//").concat(i(),"/E-v1.js"))}(),p=function(){return m.host},y=function(){return m.port?"".concat(p(),":").concat(m.port):p()},L=function(){return m.protocol},G=function(){var T=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};return T.embedHost?I(T.embedHost):y()},it=function(){var T="wistia.com";return"pipedream.".concat(T)},j=["wistia.net","wistia.com"],C=[].concat(j,["wistia.mx","wistia.dev","wistia.tech","wistia.am","wistia.se","wistia.io","wistia.st"]),A=new RegExp("(".concat(C.map(function(k){return"\\.".concat(k.replace(".","\\."))}).join("|"),")$")),I=function(T){return T&&A.test(T)?T:y()}},6461:(_,l,e)=>{e(159)},6462:(_,l,e)=>{e.d(l,{I:()=>it});var t=e(8089),r=e.n(t),n=e(8290),o=e.n(n),v=e(731);function M(C,A){if(!(C instanceof A))throw new TypeError("Cannot call a class as a function")}function u(C,A){for(var I=0;I<A.length;I++){var k=A[I];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(C,f(k.key),k)}}function c(C,A,I){return A&&u(C.prototype,A),Object.defineProperty(C,"prototype",{writable:!1}),C}function f(C){var A=b(C,"string");return typeof A=="symbol"?A:A+""}function b(C,A){if(typeof C!="object"||!C)return C;var I=C[Symbol.toPrimitive];if(I!==void 0){var k=I.call(C,A);if(typeof k!="object")return k;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(C)}function D(C,A){S(C,A),A.add(C)}function B(C,A,I){S(C,A),A.set(C,I)}function S(C,A){if(A.has(C))throw new TypeError("Cannot initialize the same private elements twice on an object")}function g(C,A,I){return C.set(i(C,A),I),I}function s(C,A){return C.get(i(C,A))}function i(C,A,I){if(typeof C=="function"?C===A:C.has(A))return arguments.length<3?A:I;throw new TypeError("Private element is not present on this object")}var d=new WeakMap,m=new WeakMap,p=new WeakMap,y=new WeakMap,L=new WeakMap,G=new WeakSet,it=function(){function C(){M(this,C),D(this,G),B(this,d,{}),B(this,m,{}),B(this,p,{}),B(this,y,{domOptions:{},iframeOptions:{},mediaDataOptions:{},wistiaWindowOptions:{}}),B(this,L,{})}return c(C,[{key:"embedOptions",get:function(){return s(m,this)}},{key:"mediaData",get:function(){return s(p,this).embedOptions=s(m,this),s(p,this)}},{key:"setDomEmbedOptionSource",value:function(I){s(y,this).domOptions=I,i(G,this,j).call(this)}},{key:"setIframeEmbedOptionSource",value:function(I){s(y,this).iframeOptions=I,i(G,this,j).call(this)}},{key:"setMediaDataSource",value:function(I){var k;g(L,this,I),g(p,this,(0,v.wg)(o()(s(L,this)))),s(p,this).hashedId!==void 0&&(s(p,this).hashedId=s(p,this).hashedId.toString()),s(y,this).mediaDataOptions=(k=o()(s(p,this).embedOptions))!==null&&k!==void 0?k:{},i(G,this,j).call(this)}},{key:"setWistiaWindowEmbedOptionSource",value:function(I){s(y,this).wistiaWindowOptions=I,i(G,this,j).call(this)}},{key:"updateEmbedOptionOverrides",value:function(I){g(d,this,r()(s(d,this),I)),g(m,this,r()(s(m,this),s(d,this)))}}])}();function j(){var C=s(y,this),A=C.mediaDataOptions,I=C.wistiaWindowOptions,k=C.domOptions,T=C.iframeOptions;g(m,this,(0,v.wg)(r()({},A!=null?A:{},I!=null?I:{},k!=null?k:{},T!=null?T:{},s(d,this)))),s(p,this).embedOptions=s(m,this)}},6633:(_,l)=>{l.fP=l._N=l.qg=l.T1=void 0;var e="\\d+",t="".concat(e,"(?:[\\.,]").concat(e,")?"),r="(".concat(e,"Y)?(").concat(e,"M)?(").concat(e,"W)?(").concat(e,"D)?"),n="T(".concat(t,"H)?(").concat(t,"M)?(").concat(t,"S)?"),o="P(?:".concat(r,"(?:").concat(n,")?)"),v=["years","months","weeks","days","hours","minutes","seconds"],M=Object.freeze({years:0,months:0,weeks:0,days:0,hours:0,minutes:0,seconds:0});l.T1=new RegExp(o);var u=function(b){var D=b.replace(/,/g,".").match(l.T1);if(!D)throw new RangeError("invalid duration: ".concat(b));var B=D.slice(1);if(B.filter(function(S){return S!=null}).length===0)throw new RangeError("invalid duration: ".concat(b));if(B.filter(function(S){return/\./.test(S||"")}).length>1)throw new RangeError("only the smallest unit can be fractional");return B.reduce(function(S,g,s){return S[v[s]]=parseFloat(g||"0")||0,S},{})};l.qg=u;var c=function(b,D){D===void 0&&(D=new Date);var B=Object.assign({},M,b),S=D.getTime(),g=new Date(S);g.setFullYear(g.getFullYear()+B.years),g.setMonth(g.getMonth()+B.months),g.setDate(g.getDate()+B.days);var s=B.hours*3600*1e3,i=B.minutes*60*1e3;return g.setMilliseconds(g.getMilliseconds()+B.seconds*1e3+s+i),g.setDate(g.getDate()+B.weeks*7),g};l._N=c;var f=function(b,D){D===void 0&&(D=new Date);var B=Object.assign({},M,b),S=D.getTime(),g=new Date(S),s=(0,l._N)(B,g),i=D.getTimezoneOffset(),d=s.getTimezoneOffset(),m=(i-d)*60,p=(s.getTime()-g.getTime())/1e3;return p+m};l.fP=f,l._N,l.fP,l.T1,l.qg},6637:(_,l,e)=>{e.d(l,{ct:()=>it});var t=e(4271),r=e(5509);function n(j){return u(j)||M(j)||v(j)||o()}function o(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
28
28
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function v(j,C){if(j){if(typeof j=="string")return c(j,C);var A={}.toString.call(j).slice(8,-1);return A==="Object"&&j.constructor&&(A=j.constructor.name),A==="Map"||A==="Set"?Array.from(j):A==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(A)?c(j,C):void 0}}function M(j){if(typeof Symbol!="undefined"&&j[Symbol.iterator]!=null||j["@@iterator"]!=null)return Array.from(j)}function u(j){if(Array.isArray(j))return c(j)}function c(j,C){(C==null||C>j.length)&&(C=j.length);for(var A=0,I=Array(C);A<C;A++)I[A]=j[A];return I}var f=0,b=1,D=2,B=3,S=4,g={ERROR:f,WARNING:b,NOTICE:D,INFO:B,DEBUG:S,error:f,warning:b,notice:D,info:B,debug:S},s=function(){},i=function(C){var A=this;C==null&&(C={});var I=function(){A.ctx=C,A.ctx.initializedAt||A.reset()};return A.error=function(){for(var k=arguments.length,T=new Array(k),w=0;w<k;w++)T[w]=arguments[w];return A.log(f,T)},A.warn=function(){for(var k=arguments.length,T=new Array(k),w=0;w<k;w++)T[w]=arguments[w];return A.log(b,T)},A.notice=function(){for(var k=arguments.length,T=new Array(k),w=0;w<k;w++)T[w]=arguments[w];return A.log(b,T)},A.info=function(){for(var k=arguments.length,T=new Array(k),w=0;w<k;w++)T[w]=arguments[w];return A.log(B,T)},A.debug=function(){for(var k=arguments.length,T=new Array(k),w=0;w<k;w++)T[w]=arguments[w];return A.log(S,T)},I(),A},d=i.prototype;d.reset=function(){this.ctx.level=f,this.ctx.grep=null,this.ctx.grepv=null,this.ctx.first1000LogLines=[],this.ctx.last1000LogLines=[],this.ctx.initializedAt=new Date().getTime()},d.setLevel=function(j){var C=this.logFunc(B);g[j]!=null?(this.ctx.level=g[j],C('Log level set to "'.concat(j,'" (').concat(g[j],")"))):C('Unknown log level "'.concat(j,'"'))},d.setGrep=function(j){this.ctx.grep=j},d.setGrepv=function(j){this.ctx.grepv=j},d.first1000LogLines=function(){return this.ctx.first1000LogLines},d.last1000LogLines=function(){return this.ctx.last1000LogLines},d.matchedGrep=function(j){var C=!1;if(this.ctx.grep||this.ctx.grepv){for(var A=[],I=0;I<j.length;I++)try{var k=j[I];A.push(k.toString&&k.toString())}catch{A.push("")}var T=A.join(" "),w=!this.ctx.grep||T.match(this.ctx.grep),W=!this.ctx.grepv||!T.match(this.ctx.grepv);C=w&&W}else C=!0;return C},d.now=function(){return typeof performance!="undefined"&&typeof performance.now=="function"?performance.now().toFixed(3):Date.now?Date.now()-this.ctx.initializedAt:new Date().getTime()-this.ctx.initializedAt},d.messagesToLogLine=function(j,C,A){var I=[j,C];I=I.concat(A);var k;try{k=I.join(" ")||"",k.length>200&&(k=k.slice(0,200))}catch{k="could not serialize"}return k},d.persistLine=function(j){this.ctx.first1000LogLines.length<1e3?this.ctx.first1000LogLines.push(j):(this.ctx.last1000LogLines.length>=1e3&&this.ctx.last1000LogLines.shift(),this.ctx.last1000LogLines.push(j))},d.log=function(j,C){var A=j<=this.ctx.level,I=j<S,k=(A||I)&&this.matchedGrep(C);j===f&&(0,t.mj)("problem",{type:"error-logged",data:{messages:C}});var T;if(k&&(A||I)&&(T=this.now()),I&&k){var w=this.messagesToLogLine(j,T,C);this.persistLine(w)}if(A&&k){var W=this.logFunc(j),H;C.length===1&&(H=C[0])instanceof Error?(W(H.message),H.stack&&W(H.stack)):W.apply(void 0,n(C))}};var m=function(){for(var C=arguments.length,A=new Array(C),I=0;I<C;I++)A[I]=arguments[I];console.error.apply(console,A)},p=function(){for(var C=arguments.length,A=new Array(C),I=0;I<C;I++)A[I]=arguments[I];console.warn.apply(console,A)},y=function(){for(var C=arguments.length,A=new Array(C),I=0;I<C;I++)A[I]=arguments[I];console.info.apply(console,A)},L=function(){for(var C=arguments.length,A=new Array(C),I=0;I<C;I++)A[I]=arguments[I];console.debug.apply(console,A)},G=function(C){console.log.apply(console,C)};d.logFunc=function(j){if(j==null&&(j=this.level),!console)return s;var C;return j===f?C=m:j===b?C=p:j===B?C=y:j===S&&(C=L),C||(C=G),typeof C!="function"&&(this.noConsoleLog=!0,C=s),C},d.maybePrefix=function(j,C){if(j){if(typeof j=="function")try{j=j()}catch(A){j='prefix err "'.concat(A.message,'"')}return j instanceof Array?j.concat(C):[j].concat(C)}return C},d.getPrefixedFunctions=function(j){var C=this;return{log:function(){for(var I=arguments.length,k=new Array(I),T=0;T<I;T++)k[T]=arguments[T];return C.log(f,C.maybePrefix(j,k))},error:function(){for(var I=arguments.length,k=new Array(I),T=0;T<I;T++)k[T]=arguments[T];return C.log(f,C.maybePrefix(j,k))},warn:function(){for(var I=arguments.length,k=new Array(I),T=0;T<I;T++)k[T]=arguments[T];return C.log(b,C.maybePrefix(j,k))},notice:function(){for(var I=arguments.length,k=new Array(I),T=0;T<I;T++)k[T]=arguments[T];return C.log(b,C.maybePrefix(j,k))},info:function(){for(var I=arguments.length,k=new Array(I),T=0;T<I;T++)k[T]=arguments[T];return C.log(B,C.maybePrefix(j,k))},debug:function(){for(var I=arguments.length,k=new Array(I),T=0;T<I;T++)k[T]=arguments[T];return C.log(S,C.maybePrefix(j,k))}}},r.s&&r.s.wlogCtx==null&&(r.s.wlogCtx={});var it=new i(r.s.wlogCtx)},6906:(_,l,e)=>{e.d(l,{Fn:()=>k});var t=e(5181),r=e(3817),n=e(7880),o=e(4730),v=e(5417),M=e(1627),u=e(7231),c=e(1341),f=e(8213);function b(T,w){var W=Object.keys(T);if(Object.getOwnPropertySymbols){var H=Object.getOwnPropertySymbols(T);w&&(H=H.filter(function(st){return Object.getOwnPropertyDescriptor(T,st).enumerable})),W.push.apply(W,H)}return W}function D(T){for(var w=1;w<arguments.length;w++){var W=arguments[w]!=null?arguments[w]:{};w%2?b(Object(W),!0).forEach(function(H){B(T,H,W[H])}):Object.getOwnPropertyDescriptors?Object.defineProperties(T,Object.getOwnPropertyDescriptors(W)):b(Object(W)).forEach(function(H){Object.defineProperty(T,H,Object.getOwnPropertyDescriptor(W,H))})}return T}function B(T,w,W){return(w=S(w))in T?Object.defineProperty(T,w,{value:W,enumerable:!0,configurable:!0,writable:!0}):T[w]=W,T}function S(T){var w=g(T,"string");return typeof w=="symbol"?w:w+""}function g(T,w){if(typeof T!="object"||!T)return T;var W=T[Symbol.toPrimitive];if(W!==void 0){var H=W.call(T,w);if(typeof H!="object")return H;throw new TypeError("@@toPrimitive must return a primitive value.")}return(w==="string"?String:Number)(T)}function s(T,w){return y(T)||p(T,w)||d(T,w)||i()}function i(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
29
29
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function d(T,w){if(T){if(typeof T=="string")return m(T,w);var W={}.toString.call(T).slice(8,-1);return W==="Object"&&T.constructor&&(W=T.constructor.name),W==="Map"||W==="Set"?Array.from(T):W==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(W)?m(T,w):void 0}}function m(T,w){(w==null||w>T.length)&&(w=T.length);for(var W=0,H=Array(w);W<w;W++)H[W]=T[W];return H}function p(T,w){var W=T==null?null:typeof Symbol!="undefined"&&T[Symbol.iterator]||T["@@iterator"];if(W!=null){var H,st,et,R,$=[],tt=!0,Z=!1;try{if(et=(W=W.call(T)).next,w!==0)for(;!(tt=(H=et.call(W)).done)&&($.push(H.value),$.length!==w);tt=!0);}catch(q){Z=!0,st=q}finally{try{if(!tt&&W.return!=null&&(R=W.return(),Object(R)!==R))return}finally{if(Z)throw st}}return $}}function y(T){if(Array.isArray(T))return T}var L=(0,u.o1)(),G=125,it=80,j=18,C=30,A=.7,I=.85,k=function(w){var W=w.backgroundGradientCss,H=w.baseHeight,st=H===void 0?it:H,et=w.baseWidth,R=et===void 0?G:et,$=w.borderRadius,tt=w.buttonTabIndex,Z=w.color,q=w.controlBarDistance,at=q===void 0?0:q,vt=w.duration,lt=w.elemRef,Y=w.isLiveMedia,h=w.isLoading,P=h===void 0?!1:h,N=w.isVisible,rt=w.leftNudgeFraction,nt=rt===void 0?0:rt,J=w.noMixBlendMode,ut=J===void 0?!1:J,_t=w.onClick,gt=w.playerLanguage,ct=w.scale,mt=w.showBpbTime,V=w.topNudgeFraction,z=V===void 0?0:V,F=w.videoName,K=w.videoWidth,ot=(0,r.J0)(!1),ft=s(ot,2),dt=ft[0],yt=ft[1],bt=R*ct,St=st*ct,jt=function(Ae){return(0,o.sC)(gt.code,"PLAY_BUTTON_".concat(Ae))},Nt=(0,M.Uh)(F),Yt="".concat(jt("TITLE_WHEN_NOT_PLAYING"),": ").concat(Nt),zt={borderRadius:"".concat($,"px"),display:N?"block":"none",left:"calc(50% + ".concat((nt||0)*100,"%)"),marginLeft:"-".concat(bt/2,"px"),marginTop:"-".concat(St/2,"px"),overflow:"hidden",position:"absolute",top:"calc(50% + ".concat((z||0)*100,"% - ").concat(at,"px)")},Gt={backgroundColor:"transparent",border:0,cursor:"pointer",height:"".concat(St,"px"),boxShadow:"none",width:"".concat(bt,"px")},Ft=!L.edge&&!ut,Ut=new v.Q1(Z!=null?Z:"#000").alpha(1),kt={background:Ut.toRgba(),display:Ft?"block":"none",left:0,height:"".concat(St,"px"),mixBlendMode:"darken",position:"absolute",top:0,width:"".concat(bt,"px")},Kt=new v.Q1(Z!=null?Z:"#000"),ae=Ft?A:I;Kt.alpha(ae),dt&&Kt.lighten("15%");var ee=W!=null,$t=ee?{background:W,backgroundSize:"".concat(K,"px 100%"),backgroundPositionX:"center"}:{},re=D(D({backgroundColor:Kt.toRgba()},$t),{},{height:"".concat(St,"px"),left:0,position:"absolute",top:0,transition:"background-color 150ms",width:"".concat(bt,"px")}),Zt=mt&&!Y,Ke={background:"rgba(0,0,0,.4)",color:"#fff",fontFamily:f.w5,fontSize:"".concat(j*ct,"px"),lineHeight:"".concat(C*ct,"px"),pointerEvents:"none",textAlign:"center"},Oe=function(){yt(!0)},Te=function(){yt(!1)};return(0,t.h)("div",{class:"w-bpb-wrapper w-css-reset w-css-reset-tree",ref:lt,style:zt},(0,t.h)("button",{class:"w-big-play-button w-css-reset-button-important w-vulcan-v2-button",style:Gt,onMouseEnter:Oe,onMouseLeave:Te,onFocusIn:Oe,onFocusOut:Te,onClick:_t,"aria-label":Yt,tabIndex:tt,type:"button"},(0,t.h)("div",{style:kt}),(0,t.h)("div",{style:re}),(0,t.h)(n.R,{width:R,height:st,scale:ct,isLoading:P})),Zt?(0,t.h)("div",{class:"w-bpb-time",style:Ke},(0,c.G5)(vt)):null)}},7157:(_,l,e)=>{e.d(l,{$:()=>M});var t=e(5857);function r(){var u,c,f=typeof Symbol=="function"?Symbol:{},b=f.iterator||"@@iterator",D=f.toStringTag||"@@toStringTag";function B(y,L,G,it){var j=L&&L.prototype instanceof g?L:g,C=Object.create(j.prototype);return n(C,"_invoke",function(A,I,k){var T,w,W,H=0,st=k||[],et=!1,R={p:0,n:0,v:u,a:$,f:$.bind(u,4),d:function(Z,q){return T=Z,w=0,W=u,R.n=q,S}};function $(tt,Z){for(w=tt,W=Z,c=0;!et&&H&&!q&&c<st.length;c++){var q,at=st[c],vt=R.p,lt=at[2];tt>3?(q=lt===Z)&&(W=at[(w=at[4])?5:(w=3,3)],at[4]=at[5]=u):at[0]<=vt&&((q=tt<2&&vt<at[1])?(w=0,R.v=Z,R.n=at[1]):vt<lt&&(q=tt<3||at[0]>Z||Z>lt)&&(at[4]=tt,at[5]=Z,R.n=lt,w=0))}if(q||tt>1)return S;throw et=!0,Z}return function(tt,Z,q){if(H>1)throw TypeError("Generator is already running");for(et&&Z===1&&$(Z,q),w=Z,W=q;(c=w<2?u:W)||!et;){T||(w?w<3?(w>1&&(R.n=-1),$(w,W)):R.n=W:R.v=W);try{if(H=2,T){if(w||(tt="next"),c=T[tt]){if(!(c=c.call(T,W)))throw TypeError("iterator result is not an object");if(!c.done)return c;W=c.value,w<2&&(w=0)}else w===1&&(c=T.return)&&c.call(T),w<2&&(W=TypeError("The iterator does not provide a '"+tt+"' method"),w=1);T=u}else if((c=(et=R.n<0)?W:A.call(I,R))!==S)break}catch(at){T=u,w=1,W=at}finally{H=1}}return{value:c,done:et}}}(y,G,it),!0),C}var S={};function g(){}function s(){}function i(){}c=Object.getPrototypeOf;var d=[][b]?c(c([][b]())):(n(c={},b,function(){return this}),c),m=i.prototype=g.prototype=Object.create(d);function p(y){return Object.setPrototypeOf?Object.setPrototypeOf(y,i):(y.__proto__=i,n(y,D,"GeneratorFunction")),y.prototype=Object.create(m),y}return s.prototype=i,n(m,"constructor",i),n(i,"constructor",s),s.displayName="GeneratorFunction",n(i,D,"GeneratorFunction"),n(m),n(m,D,"Generator"),n(m,b,function(){return this}),n(m,"toString",function(){return"[object Generator]"}),(r=function(){return{w:B,m:p}})()}function n(u,c,f,b){var D=Object.defineProperty;try{D({},"",{})}catch{D=0}n=function(S,g,s,i){if(g)D?D(S,g,{value:s,enumerable:!i,configurable:!i,writable:!i}):S[g]=s;else{var d=function(p,y){n(S,p,function(L){return this._invoke(p,y,L)})};d("next",0),d("throw",1),d("return",2)}},n(u,c,f,b)}function o(u,c,f,b,D,B,S){try{var g=u[B](S),s=g.value}catch(i){return void f(i)}g.done?c(s):Promise.resolve(s).then(b,D)}function v(u){return function(){var c=this,f=arguments;return new Promise(function(b,D){var B=u.apply(c,f);function S(s){o(B,b,D,S,g,"next",s)}function g(s){o(B,b,D,S,g,"throw",s)}S(void 0)})}}var M=function(){var u=v(r().m(function c(f){var b,D,B,S,g=arguments;return r().w(function(s){for(;;)switch(s.n){case 0:if(D=g.length>1&&g[1]!==void 0?g[1]:{},B=(b=D.host)!==null&&b!==void 0?b:(0,t.aY)(),S=t.U4,!(S!==""&&S.length>0&&D.mediaData!==!0)){s.n=1;break}return s.a(2,import("".concat((0,t.v9)(),"//").concat(B,"/").concat(f,"@").concat(S)));case 1:return s.a(2,import("".concat((0,t.v9)(),"//").concat(B,"/").concat(f)))}},c)}));return function(f){return u.apply(this,arguments)}}()},7209:(_,l,e)=>{e.d(l,{Fi:()=>p,Q0:()=>T,Wz:()=>W,aF:()=>it,n9:()=>G,o2:()=>m,pb:()=>i,tt:()=>A,x4:()=>y,yE:()=>g});var t=e(731),r=e(2671);e(7231);var n=e(5857),o=e(6637),v=e(787);function M(lt,Y){return D(lt)||b(lt,Y)||c(lt,Y)||u()}function u(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
30
30
  In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function c(lt,Y){if(lt){if(typeof lt=="string")return f(lt,Y);var h={}.toString.call(lt).slice(8,-1);return h==="Object"&&lt.constructor&&(h=lt.constructor.name),h==="Map"||h==="Set"?Array.from(lt):h==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(h)?f(lt,Y):void 0}}function f(lt,Y){(Y==null||Y>lt.length)&&(Y=lt.length);for(var h=0,P=Array(Y);h<Y;h++)P[h]=lt[h];return P}function b(lt,Y){var h=lt==null?null:typeof Symbol!="undefined"&&lt[Symbol.iterator]||lt["@@iterator"];if(h!=null){var P,N,rt,nt,J=[],ut=!0,_t=!1;try{if(rt=(h=h.call(lt)).next,Y!==0)for(;!(ut=(P=rt.call(h)).done)&&(J.push(P.value),J.length!==Y);ut=!0);}catch(gt){_t=!0,N=gt}finally{try{if(!ut&&h.return!=null&&(nt=h.return(),Object(nt)!==nt))return}finally{if(_t)throw N}}return J}}function D(lt){if(Array.isArray(lt))return lt}var B=Array.prototype.slice,S=-1,g=2,s=["select","sortFn","sortBy","unique"],i=function(Y){var h=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(!Y)return[];Y.assets&&(Y=Y.assets),(h.qualityMin!=null||h.qualityMax!=null)&&(Y=j(Y,h.qualityMin,h.qualityMax),h=(0,t.iu)(h,["qualityMin","qualityMax"]));var P=(0,t.j6)(h,s),N=P.select||(0,t.iu)(h,s);N&&(P.select=N);var rt=P.select?(0,t.Lt)(Y,P.select):(0,t.o8)(Y);if((P.sortFn||P.sortBy)&&(rt=(0,t.di)(rt,P.sortFn||P.sortBy)),P.unique){for(var nt={},J=0;J<rt.length;J++){var ut=rt[J],_t=ut["".concat(P.unique)]||"__undefined__";nt[_t]||(nt[_t]=ut)}rt=[];for(var gt in nt)rt.push(nt[gt])}return rt},d=function(Y,h){return i(Y,h)[0]||null},m=function(Y){return i(Y,{ext:"mp3",status:g,public:!0})},p=function(Y){return i(Y,{container:"mp4",status:g,public:!0})},y=function(Y){return i(Y,{container:"m3u8",status:g,public:!0})},L=function(Y){for(var h=[],P=0;P<Y.length;P++){var N=Y[P],rt=N.opt_vbitrate!=null&&N.opt_vbitrate>=500&&N.opt_vbitrate<=1e5,nt=N.width!=null&&N.width>400;(rt||nt)&&h.push(N)}return h},G=function(Y){return L(i(Y,{container:/mp4/,public:!0,status:g}))},it=function(Y){return L(i(Y,{container:/mp4/,public:!0,status:function(P){return P!==S}}))},j=function(Y){var h=arguments.length>1&&arguments[1]!==void 0?arguments[1]:100,P=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1e4;return i(Y,{select:function(rt){var nt=C(rt.width,rt.height);return h<=nt&&nt<=P}})},C=function(Y,h){if(h>Y){var P=Y;Y=h,h=P}var N=Y/h;return N<1.05&&(Y=h*(16/9)),Y>=3740?2160:Y>=2460?1440:Y>=1820?1080:Y>=1180?720:Y>=860?540:Y>=540?360:h},A=function(Y,h){var P;h==="4k"?P=2160:P=parseInt(h,10);var N=j(Y,P,P)[0];if(N)return N;var rt=vt(Y,P,P);if(rt.length===1)return rt[0];var nt=at(Y),J=Math.round(nt*P),ut=M(rt,2),_t=ut[0],gt=ut[1],ct=Math.abs(_t.width-J),mt=Math.abs(gt.width-J);return ct<mt?_t:gt},I=function(Y){var h=d(Y,{type:/^still_image$/,sortBy:"created_at desc"});return h||(h=k(Y)),h||(h=d(Y,{container:/mp4/,sortBy:"width desc"})),h},k=function(Y){return d(Y,{type:/^channel_still_image$/,sortBy:"created_at desc"})},T=function(Y,h){if(h.stillUrl)return[{height:null,url:h.stillUrl,width:null}];var P=I(Y);if(h.instantHlsStillAsset!=null&&(!P||/mp4/.test(P.container)))return[h.instantHlsStillAsset];if(h.originalFileStillAsset!=null&&(!P||/mp4/.test(P.container)))return[h.originalFileStillAsset];if(!P)return[];var N=P.width/P.height;return[320,640,960,1280,1920,3840].map(function(rt){var nt=Math.round(rt/N),J=W(Y,{videoWidth:rt,videoHeight:nt,playButton:!1});return{height:nt,url:J,width:rt}})},w=(0,v.Ni)("fast"),W=function(Y){var h=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},P=I(Y);if(P){if(P.status!==g){var N=k();return N&&N.status===g?N.url:"//".concat(w,"/assets/images/blank.gif")}h=(0,t.h1)({aspect:P.width/P.height||1,stillUrl:P.url,playButton:!1,playerColor:h.playerColor||"636155",videoWidth:P.width||640,videoHeight:P.height||360,stillSnap:!0},h);var rt=h.videoWidth,nt=h.videoHeight,J=new r.s0(h.stillUrl);return h.retina&&(J.params.image_play_button_size="2x",rt*=2,nt*=2),h.stillSnap&&(rt=H({videoWidth:rt,stillAssetWidth:P.width||640}),nt=Math.round(rt/h.aspect)),et(h.stillUrl)?(h.protocol==="https:"&&(J.protocol="https:",J.host=h.embedHost===n.pb||h.embedHost===n.bF?n.iD:n.cu),J.params.image_crop_resized="".concat(rt,"x").concat(nt),(h.playButton==null||h.playButton)&&(J.params.image_play_button_rounded=1,J.params.image_play_button_color="".concat("".concat(h.playerColor).replace(/^#+/,""),"e0")),h.ext&&J.ext(h.ext),J.ext()==="bin"&&J.ext("jpg"),J.absolute()):h.stillUrl}},H=function(Y){var h=[640,960,1280,1920,3840];Y.stillAssetWidth<3840&&h.push(Y.stillAssetWidth);for(var P=[],N=0;N<h.length;N++){var rt=h[N];rt<=Y.stillAssetWidth&&P.push(rt)}P.sort(function(ut,_t){return ut-_t});for(var nt=0;nt<P.length;nt++){var J=P[nt];if(Y.videoWidth<=J)return J}return Math.max.apply(Math,P)},st=[n.pK,n.cu,(0,v.Ni)("embed"),(0,v.Ni)("prime"),(0,v.Ni)("mixergy-cdn"),(0,v.Ni)("embed-fastly"),n.hk,n.iD,n.KG],et=function(Y){if(Y==null)return!1;var h=new r.s0(Y);return h.host?st.join(",").indexOf(h.host)>=0:!1},R=function(Y,h,P){return P=(0,t.h1)({container:h,public:!0,status:g},P),d(Y,P)},$=function(Y,h){return R(Y,"mp4",h)},tt=function(Y,h){return R(Y,"webm",h)},Z=function(Y,h){return R(Y,"m3u8",h)},q=function(Y){return d(Y,{type:"original"})},at=function(Y){var h=$(Y)||Z(Y)||tt(Y)||q(Y);return h&&h.height?h.width/h.height:640/360},vt=function(Y,h,P){if(Y.length===0)return[];for(var N=B.call(Y).sort(function(ct,mt){return C(ct.width,ct.height)-C(mt.width,mt.height)}),rt,nt,J=0;J<N.length;J++){var ut=N[J],_t=C(ut.width,ut.height);if(_t<h&&(rt=ut),_t>=P){nt=ut;break}}var gt=[];return rt&&gt.push(rt),nt&&gt.push(nt),gt.length===0&&(o.ct.error("nearestOutsideRange: no nearby assets found, using first in list",N[0]),gt.push(N[0])),gt}},7211:(_,l,e)=>{e.d(l,{J:()=>r,_:()=>t});var t=.1,r=function(o,v){var M=window.wistiaDisableMux!==!0,u=!o._opts||o._opts.mux!==!1,c=o.iframe==null,f=v,b=!!(o._mediaData&&o._mediaData.type==="LiveStream");return M&&u&&c&&(f||b)}},7229:(_,l,e)=>{e.d(l,{J:()=>n});var t=e(1341),r=60,n=function(v){var M=(0,t.ab)(v,"hms"),u=M.hours,c=M.minutes,f=M.seconds,b="";return u&&(b+="".concat(u,"H")),(c||v>r&&f!==0)&&(b+="".concat(c,"M")),(f||v===0)&&(b+="".concat(f,"S")),b}},7231:(_,l,e)=>{e.d(l,{GS:()=>mt,o1:()=>gt});var t=e(8176),r=e(267),n=navigator.userAgent,o=null,v=/(webkit)[ /]([^\s]+)/i,M=/OPR\/([^\s]+)/i,u=/(edge)\/(\d+(?:\.\d+)?)/i,c=/(mozilla)(?:.*? rv:([^\s)]+))?/i,f=/(android) ([^;]+)/i,b=/(iphone)/i,D=/(Windows Phone OS (\d+(?:\.\d+)?))/,B=/OS (\d+)_(\d+)/i,S=/(firefox)/i,g=/Mobile VR/i,s=/Version\/([^\s]+)/i,i=function(){return(m()[1]||"webkit").toLowerCase()},d=function(){return m()[2]},m=function(){var z;return z=n.match(u),z||(z=n.match(v),z)||(z=n.match(M),z)?z:z?(document.documentMode!=null&&(z[2]=document.documentMode),z):(z=n.match(c),z||[])},p=function(){var z=n.match(f);return z==null?!1:{version:z[2]}},y=function(){return p()&&parseFloat(p().version)<4.1},L=function(){return b.test(n)},G=function(){return H()>0||p()||I()},it=function(){var z,F,K,ot,ft,dt,yt,bt,St;return{hevc:(z=(F=window.MediaSource)===null||F===void 0||(K=F.isTypeSupported)===null||K===void 0?void 0:K.call(F,'video/mp4; codecs="hvc1.2.4.L153.B0"'))!==null&&z!==void 0?z:!1,av1:(ot=(ft=window.MediaSource)===null||ft===void 0||(dt=ft.isTypeSupported)===null||dt===void 0?void 0:dt.call(ft,'video/mp4; codecs="av01.0.08M.10.0.110.09.16.09"'))!==null&&ot!==void 0?ot:!1,vp92:(yt=(bt=window.MediaSource)===null||bt===void 0||(St=bt.isTypeSupported)===null||St===void 0?void 0:St.call(bt,'video/mp4; codecs="vp09.02.10.10.01.09.16.09"'))!==null&&yt!==void 0?yt:!1}},j=function(){var z,F;return!!((z=(F=window).matchMedia)!==null&&z!==void 0&&z.call(F,"(dynamic-range: high)").matches||screen.colorDepth&&screen.colorDepth>=30)},C=function(){try{var z=matchMedia("(hover:hover)");if(z.media!=="not all")return z.matches}catch{}return!G()},A=function(){return t.z.devicePixelRatio!=null&&t.z.devicePixelRatio>1},I=function(){return/Macintosh/i.test(navigator.userAgent)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>1},k=function(){return v.test(n)&&!/chrome/i.test(n)&&!I()&&!L()},T=function(){return/Chrome/.test(n)&&/Google Inc/.test(navigator.vendor)?{version:w()}:!1},w=function(){var z=n.match(/\bChrome\/([^\s]+)/);return z&&z[1]},W=function(){return M.test(n)},H=function(){var z=n.match(B),F=n.match(s);return z!=null?parseFloat("".concat(z[1],".").concat(z[2])):F!=null&&F[1]&&I()?parseFloat(F[1]):0},st=function(){return D.test(n)},et=function(){return u.test(n)},R=function(){return S.test(n)},$=function(){return g.test(n)},tt=function(){return/win/i.test(navigator.platform)},Z=function(){return/mac/i.test(navigator.platform)},q=function(){var z=document.createElement("video"),F=!1;try{if(z.canPlayType){F={};var K='video/mp4; codecs="avc1.42E01E';F.h264=!!z.canPlayType("".concat(K,'"'))||!!z.canPlayType("".concat(K,', mp4a.40.2"')),F.webm=!!z.canPlayType('video/webm; codecs="vp9, vorbis"'),F.nativeHls=!!z.canPlayType("application/vnd.apple.mpegURL")}}catch{F={ogg:!1,h264:!1,webm:!1,nativeHls:!1}}return F},at=function(){var z='video/mp4; codecs="avc1.42E01E';return t.z.MediaSource&&t.z.MediaSource.isTypeSupported("".concat(z,', mp4a.40.2"'))},vt=function(){return(L()||I()||k())&&q().nativeHls},lt=function(){try{return"localStorage"in t.z&&t.z.localStorage!=null}catch{return!1}},Y=function(){return document.fullscreenEnabled||document.mozFullScreenEnabled||document.webkitFullscreenEnabled||document.msFullscreenEnabled},h=function(){var z;return"ManagedMediaSource"in window&&typeof((z=window.ManagedMediaSource)===null||z===void 0?void 0:z.isTypeSupported)=="function"},P=["WebKit","Moz","O","Ms",""],N=function(){for(var z=0;z<P.length;z++){var F=P[z],K="".concat(F,"MutationObserver");if(t.z[K])return K}return null},rt=function(){var z=/webkit|mozilla|edge/.test(i());return L()||I()||p()?!0:!!(z&&q().h264&&Object.defineProperties)},nt,J=function(){if(nt!=null)return nt;try{var z=Object.defineProperty({},"passive",{get:function(){nt=!0}});window.addEventListener("test",null,z)}catch{nt=!1}return nt},ut=function(){return H()>0||p()||k()},_t=function(){var z=T(),F=R(),K=et(),ot=W(),ft=z&&d()>=32,dt=z&&d()>=75&&p(),yt=F&&d()>=65,bt=F&&d()>=67&&p(),St=K&&d()>=18,jt=ot&&d()>=19;return ft||dt||yt||bt||St||jt},gt=function(){return o||(o=ct(),o)},ct=function(){var z={browser:{version:d()},edge:et(),firefox:R(),gearvr:$(),hdr:j(),hdrCodecs:it(),android:p(),oldandroid:y(),iphone:L(),ipad:I(),safari:k(),chrome:T(),winphone:{version:st()[2]},ios:{version:H()},windows:tt(),mac:Z(),retina:A(),hoverIsNatural:C(),touchScreen:G(),video:q(),managedMediaSource:h(),mediaSource:at(),nativeHls:vt(),localstorage:lt(),fullscreenEnabled:Y(),vulcanV2Support:rt(),mutationObserver:N(),callingPlayRequiresEventContext:ut(),passiveSupported:J(),webp:_t(),performanceMeasure:(0,r.O)()};return z.browser[i()]=!0,z},mt=function(){var z=p(),F=I(),K=L();return z||F||K}},7323:(_,l,e)=>{e.d(l,{k:()=>r});var t=4294967295,r=function(o){var v=window.crypto;if(typeof v!="undefined"){var M=v.getRandomValues(new Uint32Array(1));return M[0]/(t+1)<o}var u=Math.random();return u>=o}},7350:(_,l,e)=>{e.d(l,{b:()=>t});var t=function(n){if(typeof n!="object"||n===null)return!1;var o=n,v=o.colors,M=o.on;return M?!Array.isArray(v)||typeof M!="boolean"||v.length===0?!1:v.every(function(u){return typeof u[0]=="string"&&typeof u[1]=="number"}):!0}},7438:(_,l,e)=>{e.d(l,{hy:()=>n});var t=e(2917),r=function(){return"wistia-viewer-preferences"},n=function(){return(0,t.Lg)(r())}},7715:(_,l,e)=>{e.d(l,{Ev:()=>M,Rx:()=>t.R,cG:()=>c,lj:()=>f}),e(731);var t=e(9562),r=e(7231);e(6637),e(6461);var n=e(1224),o=e(5509),v=(0,r.o1)(),M=function(d,m){var p=d||document.body||document.head,y=document.createElement("style");return y.id=(0,n.h)("wistia_","_style"),y.setAttribute("type","text/css"),y.className="wistia_injected_style",p.appendChild(y,p.nextSibling),y.styleSheet?y.styleSheet.cssText=m:y.appendChild(document.createTextNode(m)),y},u=function(d,m){if(!window.getComputedStyle)return null;var p=window.getComputedStyle(d,null);return p==null?null:p[m]},c=function(d){if(d===window)return window.innerWidth?window.innerWidth:document.documentElement?document.documentElement.offsetWidth:document.body.offsetWidth;if(d===document){var m=document.body,p=document.documentElement;return Math.max(m.scrollWidth,m.offsetWidth,p.clientWidth,p.scrollWidth,p.offsetWidth)}var y;return(y=u(d,"width"))&&y!=null?parseFloat(y):d.currentStyle?d.offsetWidth:-1},f=function(d){for(;d;){if(d===document)return!0;d=d.parentNode||d.getRootNode().host}return!1},b=function(d,m,p){var y=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,L=function(j){j=j||window.event,!j.pageX&&!j.pageY&&(j.clientX||j.clientY)&&(j.pageX=j.clientX+g(),j.pageY=j.clientY+S()),j.preventDefault||(j.preventDefault=function(){j.returnValue=!1}),j.stopPropagation||(j.stopPropagation=function(){j.cancelBubble=!0}),j.which==null&&(j.which=j.charCode!=null?j.charCode:j.keyCode),j.which==null&&j.button!=null&&(j.button&1?j.which=1:j.button&2?j.which=3:j.button&4?j.which=2:j.which=0),j.target||j.srcElement&&(j.target=j.srcElement),j.target&&j.target.nodeType===3&&(j.target=j.target.parentNode);for(var C=arguments.length,A=new Array(C>1?C-1:0),I=1;I<C;I++)A[I-1]=arguments[I];var k=p.apply(j.target,[j].concat(A));return k===D&&D(d,m,p),k};o.s._elemBind=o.s._elemBind||{};var G=B(d,m,p);return o.s._elemBind[G]=L,L.elem=d,L.event=m,d.addEventListener(m,L,y),function(){D(d,m,p,y)}},D=function(d,m,p){var y=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1;if(d!=null&&d._wistiaElemId!=null&&p!=null&&p._wistiaBindId){var L=B(d,m,p),G=o.s._elemBind[L];return G&&(d.removeEventListener(m,G,y),G.elem=null,G.event=null),delete o.s._elemBind[L]}},B=function(d,m,p){return d._wistiaElemId=d._wistiaElemId||(0,n.h)("wistia_elem_"),p._wistiaBindId=p._wistiaBindId||(0,n.h)("wistia_bind_"),"".concat(d._wistiaElemId,".").concat(m,".").concat(p._wistiaBindId)},S=function(d){var m=document.body,p=document.documentElement;return p&&p.scrollTop||m&&m.scrollTop||0},g=function(d){var m=document.body,p=document.documentElement;return p&&p.scrollLeft||m&&m.scrollLeft||0},s=["auxclick","click","contextmenu","dblclick","focus","keydown","keypress","keyup","mousedown","mouseup","reset","submit","touchend","touchstart"];s.forEach(function(i){var d=function(p){setTimeout(function(){},0)};b(document,i,d,v.passiveSupported?{capture:!0,passive:!0}:!0)})},7880:(_,l,e)=>{e.d(l,{R:()=>M});var t=e(5181),r=e(4719),n=e(1919);function o(){return o=Object.assign?Object.assign.bind():function(u){for(var c=1;c<arguments.length;c++){var f=arguments[c];for(var b in f)({}).hasOwnProperty.call(f,b)&&(u[b]=f[b])}return u},o.apply(null,arguments)}var v=.5,M=function(c){var f=c.width,b=c.height,D=c.scale,B=c.isLoading,S=B===void 0?!1:B,g=b*D,s=(0,n.I)({width:f,height:b,styleOverride:{position:"absolute",height:"".concat(g,"px"),color:"var(--wistia-player-icon-color, #fff)"},ariaHidden:!0}),i=-18.5+f/2,d=-18+b/2;return(0,t.h)("svg",o({},s,{"aria-hidden":"true"}),(0,t.h)("path",{"fill-rule":"evenodd","clip-rule":"evenodd",fill:"currentcolor",opacity:S?v:1,transform:"translate(".concat(i,", ").concat(d,")"),d:"M12.138 2.173C10.812 1.254 9 2.203 9 3.817v28.366c0 1.613 1.812 2.563 3.138 1.644l20.487-14.183a2 2 0 0 0 0-3.288L12.138 2.173Z"}),S&&(0,t.h)(r.e,null))}},8089:(_,l,e)=>{_=e.nmd(_);var t=200,r="__lodash_hash_undefined__",n=800,o=16,v=9007199254740991,M="[object Arguments]",u="[object Array]",c="[object AsyncFunction]",f="[object Boolean]",b="[object Date]",D="[object Error]",B="[object Function]",S="[object GeneratorFunction]",g="[object Map]",s="[object Number]",i="[object Null]",d="[object Object]",m="[object Proxy]",p="[object RegExp]",y="[object Set]",L="[object String]",G="[object Undefined]",it="[object WeakMap]",j="[object ArrayBuffer]",C="[object DataView]",A="[object Float32Array]",I="[object Float64Array]",k="[object Int8Array]",T="[object Int16Array]",w="[object Int32Array]",W="[object Uint8Array]",H="[object Uint8ClampedArray]",st="[object Uint16Array]",et="[object Uint32Array]",R=/[\\^$.*+?()[\]{}|]/g,$=/^\[object .+?Constructor\]$/,tt=/^(?:0|[1-9]\d*)$/,Z={};Z[A]=Z[I]=Z[k]=Z[T]=Z[w]=Z[W]=Z[H]=Z[st]=Z[et]=!0,Z[M]=Z[u]=Z[j]=Z[f]=Z[C]=Z[b]=Z[D]=Z[B]=Z[g]=Z[s]=Z[d]=Z[p]=Z[y]=Z[L]=Z[it]=!1;var q=typeof e.g=="object"&&e.g&&e.g.Object===Object&&e.g,at=typeof self=="object"&&self&&self.Object===Object&&self,vt=q||at||Function("return this")(),lt=l&&!l.nodeType&&l,Y=lt&&!0&&_&&!_.nodeType&&_,h=Y&&Y.exports===lt,P=h&&q.process,N=function(){try{var a=Y&&Y.require&&Y.require("util").types;return a||P&&P.binding&&P.binding("util")}catch{}}(),rt=N&&N.isTypedArray;function nt(a,E,x){switch(x.length){case 0:return a.call(E);case 1:return a.call(E,x[0]);case 2:return a.call(E,x[0],x[1]);case 3:return a.call(E,x[0],x[1],x[2])}return a.apply(E,x)}function J(a,E){for(var x=-1,pt=Array(a);++x<a;)pt[x]=E(x);return pt}function ut(a){return function(E){return a(E)}}function _t(a,E){return a==null?void 0:a[E]}function gt(a,E){return function(x){return a(E(x))}}var ct=Array.prototype,mt=Function.prototype,V=Object.prototype,z=vt["__core-js_shared__"],F=mt.toString,K=V.hasOwnProperty,ot=function(){var a=/[^.]+$/.exec(z&&z.keys&&z.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}(),ft=V.toString,dt=F.call(Object),yt=RegExp("^"+F.call(K).replace(R,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),bt=h?vt.Buffer:void 0,St=vt.Symbol,jt=vt.Uint8Array;bt&&bt.allocUnsafe;var Nt=gt(Object.getPrototypeOf,Object),Yt=Object.create,zt=V.propertyIsEnumerable,Gt=ct.splice,Ft=St?St.toStringTag:void 0,Ut=function(){try{var a=ze(Object,"defineProperty");return a({},"",{}),a}catch{}}(),kt=bt?bt.isBuffer:void 0,Kt=Math.max,ae=Date.now,ee=ze(vt,"Map"),$t=ze(Object,"create"),re=function(){function a(){}return function(E){if(!ue(E))return{};if(Yt)return Yt(E);a.prototype=E;var x=new a;return a.prototype=void 0,x}}();function Zt(a){var E=-1,x=a==null?0:a.length;for(this.clear();++E<x;){var pt=a[E];this.set(pt[0],pt[1])}}function Ke(){this.__data__=$t?$t(null):{},this.size=0}function Oe(a){var E=this.has(a)&&delete this.__data__[a];return this.size-=E?1:0,E}function Te(a){var E=this.__data__;if($t){var x=E[a];return x===r?void 0:x}return K.call(E,a)?E[a]:void 0}function Me(a){var E=this.__data__;return $t?E[a]!==void 0:K.call(E,a)}function Ae(a,E){var x=this.__data__;return this.size+=this.has(a)?0:1,x[a]=$t&&E===void 0?r:E,this}Zt.prototype.clear=Ke,Zt.prototype.delete=Oe,Zt.prototype.get=Te,Zt.prototype.has=Me,Zt.prototype.set=Ae;function Qt(a){var E=-1,x=a==null?0:a.length;for(this.clear();++E<x;){var pt=a[E];this.set(pt[0],pt[1])}}function oe(){this.__data__=[],this.size=0}function br(a){var E=this.__data__,x=Ce(E,a);if(x<0)return!1;var pt=E.length-1;return x==pt?E.pop():Gt.call(E,x,1),--this.size,!0}function Er(a){var E=this.__data__,x=Ce(E,a);return x<0?void 0:E[x][1]}function Pr(a){return Ce(this.__data__,a)>-1}function wr(a,E){var x=this.__data__,pt=Ce(x,a);return pt<0?(++this.size,x.push([a,E])):x[pt][1]=E,this}Qt.prototype.clear=oe,Qt.prototype.delete=br,Qt.prototype.get=Er,Qt.prototype.has=Pr,Qt.prototype.set=wr;function fe(a){var E=-1,x=a==null?0:a.length;for(this.clear();++E<x;){var pt=a[E];this.set(pt[0],pt[1])}}function qt(){this.size=0,this.__data__={hash:new Zt,map:new(ee||Qt),string:new Zt}}function Or(a){var E=Ie(this,a).delete(a);return this.size-=E?1:0,E}function Tr(a){return Ie(this,a).get(a)}function Mr(a){return Ie(this,a).has(a)}function Ar(a,E){var x=Ie(this,a),pt=x.size;return x.set(a,E),this.size+=x.size==pt?0:1,this}fe.prototype.clear=qt,fe.prototype.delete=Or,fe.prototype.get=Tr,fe.prototype.has=Mr,fe.prototype.set=Ar;function ve(a){var E=this.__data__=new Qt(a);this.size=E.size}function he(){this.__data__=new Qt,this.size=0}function Cr(a){var E=this.__data__,x=E.delete(a);return this.size=E.size,x}function Dr(a){return this.__data__.get(a)}function Sr(a){return this.__data__.has(a)}function Lr(a,E){var x=this.__data__;if(x instanceof Qt){var pt=x.__data__;if(!ee||pt.length<t-1)return pt.push([a,E]),this.size=++x.size,this;x=this.__data__=new fe(pt)}return x.set(a,E),this.size=x.size,this}ve.prototype.clear=he,ve.prototype.delete=Cr,ve.prototype.get=Dr,ve.prototype.has=Sr,ve.prototype.set=Lr;function Ir(a,E){var x=te(a),pt=!x&&We(a),Ot=!x&&!pt&&sr(a),Ct=!x&&!pt&&!Ot&&ur(a),At=x||pt||Ot||Ct,Dt=At?J(a.length,String):[],Lt=Dt.length;for(var Vt in a)At&&(Vt=="length"||Ot&&(Vt=="offset"||Vt=="parent")||Ct&&(Vt=="buffer"||Vt=="byteLength"||Vt=="byteOffset")||Je(Vt,Lt))||Dt.push(Vt);return Dt}function ne(a,E,x){(x!==void 0&&!Be(a[E],x)||x===void 0&&!(E in a))&&$e(a,E,x)}function Rr(a,E,x){var pt=a[E];(!(K.call(a,E)&&Be(pt,x))||x===void 0&&!(E in a))&&$e(a,E,x)}function Ce(a,E){for(var x=a.length;x--;)if(Be(a[x][0],E))return x;return-1}function $e(a,E,x){E=="__proto__"&&Ut?Ut(a,E,{configurable:!0,enumerable:!0,value:x,writable:!0}):a[E]=x}var Br=Kr();function De(a){return a==null?a===void 0?G:i:Ft&&Ft in Object(a)?$r(a):le(a)}function nr(a){return ye(a)&&De(a)==M}function ir(a){if(!ue(a)||Re(a))return!1;var E=me(a)?yt:$;return E.test(Zr(a))}function Se(a){return ye(a)&&Ye(a.length)&&!!Z[De(a)]}function Wr(a){if(!ue(a))return ar(a);var E=se(a),x=[];for(var pt in a)pt=="constructor"&&(E||!K.call(a,pt))||x.push(pt);return x}function Le(a,E,x,pt,Ot){a!==E&&Br(E,function(Ct,At){if(Ot||(Ot=new ve),ue(Ct))jr(a,E,At,x,Le,pt,Ot);else{var Dt=pt?pt(Qe(a,At),Ct,At+"",a,E,Ot):void 0;Dt===void 0&&(Dt=Ct),ne(a,At,Dt)}},cr)}function jr(a,E,x,pt,Ot,Ct,At){var Dt=Qe(a,x),Lt=Qe(E,x),Vt=At.get(Lt);if(Vt){ne(a,x,Vt);return}var Ht=Ct?Ct(Dt,Lt,x+"",a,E,At):void 0,_e=Ht===void 0;if(_e){var be=te(Lt),pe=!be&&sr(Lt),gn=!be&&!pe&&ur(Lt);Ht=Lt,be||pe||gn?te(Dt)?Ht=Dt:or(Dt)?Ht=Ve(Dt):pe?(_e=!1,Ht=kr(Lt)):gn?(_e=!1,Ht=Hr(Lt)):Ht=[]:lr(Lt)||We(Lt)?(Ht=Dt,We(Dt)?Ht=je(Dt):(!ue(Dt)||me(Dt))&&(Ht=Vr(Lt))):_e=!1}_e&&(At.set(Lt,Ht),Ot(Ht,Lt,pt,Ct,At),At.delete(Lt)),ne(a,x,Ht)}function Ur(a,E){return Xr(Qr(a,E,dr),a+"")}var Fr=Ut?function(a,E){return Ut(a,"toString",{configurable:!0,enumerable:!1,value:qr(E),writable:!0})}:dr;function kr(a,E){return a.slice()}function xr(a){var E=new a.constructor(a.byteLength);return new jt(E).set(new jt(a)),E}function Hr(a,E){var x=xr(a.buffer);return new a.constructor(x,a.byteOffset,a.length)}function Ve(a,E){var x=-1,pt=a.length;for(E||(E=Array(pt));++x<pt;)E[x]=a[x];return E}function Nr(a,E,x,pt){var Ot=!x;x||(x={});for(var Ct=-1,At=E.length;++Ct<At;){var Dt=E[Ct],Lt=void 0;Lt===void 0&&(Lt=a[Dt]),Ot?$e(x,Dt,Lt):Rr(x,Dt,Lt)}return x}function Gr(a){return Ur(function(E,x){var pt=-1,Ot=x.length,Ct=Ot>1?x[Ot-1]:void 0,At=Ot>2?x[2]:void 0;for(Ct=a.length>3&&typeof Ct=="function"?(Ot--,Ct):void 0,At&&zr(x[0],x[1],At)&&(Ct=Ot<3?void 0:Ct,Ot=1),E=Object(E);++pt<Ot;){var Dt=x[pt];Dt&&a(E,Dt,pt,Ct)}return E})}function Kr(a){return function(E,x,pt){for(var Ot=-1,Ct=Object(E),At=pt(E),Dt=At.length;Dt--;){var Lt=At[++Ot];if(x(Ct[Lt],Lt,Ct)===!1)break}return E}}function Ie(a,E){var x=a.__data__;return Jr(E)?x[typeof E=="string"?"string":"hash"]:x.map}function ze(a,E){var x=_t(a,E);return ir(x)?x:void 0}function $r(a){var E=K.call(a,Ft),x=a[Ft];try{a[Ft]=void 0;var pt=!0}catch{}var Ot=ft.call(a);return pt&&(E?a[Ft]=x:delete a[Ft]),Ot}function Vr(a){return typeof a.constructor=="function"&&!se(a)?re(Nt(a)):{}}function Je(a,E){var x=typeof a;return E=E==null?v:E,!!E&&(x=="number"||x!="symbol"&&tt.test(a))&&a>-1&&a%1==0&&a<E}function zr(a,E,x){if(!ue(x))return!1;var pt=typeof E;return(pt=="number"?Xe(x)&&Je(E,x.length):pt=="string"&&E in x)?Be(x[E],a):!1}function Jr(a){var E=typeof a;return E=="string"||E=="number"||E=="symbol"||E=="boolean"?a!=="__proto__":a===null}function Re(a){return!!ot&&ot in a}function se(a){var E=a&&a.constructor,x=typeof E=="function"&&E.prototype||V;return a===x}function ar(a){var E=[];if(a!=null)for(var x in Object(a))E.push(x);return E}function le(a){return ft.call(a)}function Qr(a,E,x){return E=Kt(E===void 0?a.length-1:E,0),function(){for(var pt=arguments,Ot=-1,Ct=Kt(pt.length-E,0),At=Array(Ct);++Ot<Ct;)At[Ot]=pt[E+Ot];Ot=-1;for(var Dt=Array(E+1);++Ot<E;)Dt[Ot]=pt[Ot];return Dt[E]=x(At),nt(a,this,Dt)}}function Qe(a,E){if(!(E==="constructor"&&typeof a[E]=="function")&&E!="__proto__")return a[E]}var Xr=Yr(Fr);function Yr(a){var E=0,x=0;return function(){var pt=ae(),Ot=o-(pt-x);if(x=pt,Ot>0){if(++E>=n)return arguments[0]}else E=0;return a.apply(void 0,arguments)}}function Zr(a){if(a!=null){try{return F.call(a)}catch{}try{return a+""}catch{}}return""}function Be(a,E){return a===E||a!==a&&E!==E}var We=nr(function(){return arguments}())?nr:function(a){return ye(a)&&K.call(a,"callee")&&!zt.call(a,"callee")},te=Array.isArray;function Xe(a){return a!=null&&Ye(a.length)&&!me(a)}function or(a){return ye(a)&&Xe(a)}var sr=kt||O;function me(a){if(!ue(a))return!1;var E=De(a);return E==B||E==S||E==c||E==m}function Ye(a){return typeof a=="number"&&a>-1&&a%1==0&&a<=v}function ue(a){var E=typeof a;return a!=null&&(E=="object"||E=="function")}function ye(a){return a!=null&&typeof a=="object"}function lr(a){if(!ye(a)||De(a)!=d)return!1;var E=Nt(a);if(E===null)return!0;var x=K.call(E,"constructor")&&E.constructor;return typeof x=="function"&&x instanceof x&&F.call(x)==dt}var ur=rt?ut(rt):Se;function je(a){return Nr(a,cr(a))}function cr(a){return Xe(a)?Ir(a):Wr(a)}var Ze=Gr(function(a,E,x){Le(a,E,x)});function qr(a){return function(){return a}}function dr(a){return a}function O(){return!1}_.exports=Ze},8176:(_,l,e)=>{e.d(l,{z:()=>r});var t;try{t=self,t.self!==t&&typeof t.self!="undefined"&&typeof window!="undefined"&&(t=window)}catch{typeof globalThis!="undefined"?t=globalThis:t=window}var r=t},8213:(_,l,e)=>{e.d(l,{w5:()=>t});var t="WistiaPlayerInterNumbersSemiBold, Helvetica, Sans-Serif"},8290:(_,l,e)=>{_=e.nmd(_);var t=200,r="__lodash_hash_undefined__",n=9007199254740991,o="[object Arguments]",v="[object Array]",M="[object Boolean]",u="[object Date]",c="[object Error]",f="[object Function]",b="[object GeneratorFunction]",D="[object Map]",B="[object Number]",S="[object Object]",g="[object Promise]",s="[object RegExp]",i="[object Set]",d="[object String]",m="[object Symbol]",p="[object WeakMap]",y="[object ArrayBuffer]",L="[object DataView]",G="[object Float32Array]",it="[object Float64Array]",j="[object Int8Array]",C="[object Int16Array]",A="[object Int32Array]",I="[object Uint8Array]",k="[object Uint8ClampedArray]",T="[object Uint16Array]",w="[object Uint32Array]",W=/[\\^$.*+?()[\]{}|]/g,H=/\w*$/,st=/^\[object .+?Constructor\]$/,et=/^(?:0|[1-9]\d*)$/,R={};R[o]=R[v]=R[y]=R[L]=R[M]=R[u]=R[G]=R[it]=R[j]=R[C]=R[A]=R[D]=R[B]=R[S]=R[s]=R[i]=R[d]=R[m]=R[I]=R[k]=R[T]=R[w]=!0,R[c]=R[f]=R[p]=!1;var $=typeof e.g=="object"&&e.g&&e.g.Object===Object&&e.g,tt=typeof self=="object"&&self&&self.Object===Object&&self,Z=$||tt||Function("return this")(),q=l&&!l.nodeType&&l,at=q&&!0&&_&&!_.nodeType&&_,vt=at&&at.exports===q;function lt(O,a){return O.set(a[0],a[1]),O}function Y(O,a){return O.add(a),O}function h(O,a){for(var E=-1,x=O?O.length:0;++E<x&&a(O[E],E,O)!==!1;);return O}function P(O,a){for(var E=-1,x=a.length,pt=O.length;++E<x;)O[pt+E]=a[E];return O}function N(O,a,E,x){for(var pt=-1,Ot=O?O.length:0;++pt<Ot;)E=a(E,O[pt],pt,O);return E}function rt(O,a){for(var E=-1,x=Array(O);++E<O;)x[E]=a(E);return x}function nt(O,a){return O==null?void 0:O[a]}function J(O){var a=!1;if(O!=null&&typeof O.toString!="function")try{a=!!(O+"")}catch{}return a}function ut(O){var a=-1,E=Array(O.size);return O.forEach(function(x,pt){E[++a]=[pt,x]}),E}function _t(O,a){return function(E){return O(a(E))}}function gt(O){var a=-1,E=Array(O.size);return O.forEach(function(x){E[++a]=x}),E}var ct=Array.prototype,mt=Function.prototype,V=Object.prototype,z=Z["__core-js_shared__"],F=function(){var O=/[^.]+$/.exec(z&&z.keys&&z.keys.IE_PROTO||"");return O?"Symbol(src)_1."+O:""}(),K=mt.toString,ot=V.hasOwnProperty,ft=V.toString,dt=RegExp("^"+K.call(ot).replace(W,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),yt=vt?Z.Buffer:void 0,bt=Z.Symbol,St=Z.Uint8Array,jt=_t(Object.getPrototypeOf,Object),Nt=Object.create,Yt=V.propertyIsEnumerable,zt=ct.splice,Gt=Object.getOwnPropertySymbols,Ft=yt?yt.isBuffer:void 0,Ut=_t(Object.keys,Object),kt=se(Z,"DataView"),Kt=se(Z,"Map"),ae=se(Z,"Promise"),ee=se(Z,"Set"),$t=se(Z,"WeakMap"),re=se(Object,"create"),Zt=te(kt),Ke=te(Kt),Oe=te(ae),Te=te(ee),Me=te($t),Ae=bt?bt.prototype:void 0,Qt=Ae?Ae.valueOf:void 0;function oe(O){var a=-1,E=O?O.length:0;for(this.clear();++a<E;){var x=O[a];this.set(x[0],x[1])}}function br(){this.__data__=re?re(null):{}}function Er(O){return this.has(O)&&delete this.__data__[O]}function Pr(O){var a=this.__data__;if(re){var E=a[O];return E===r?void 0:E}return ot.call(a,O)?a[O]:void 0}function wr(O){var a=this.__data__;return re?a[O]!==void 0:ot.call(a,O)}function fe(O,a){var E=this.__data__;return E[O]=re&&a===void 0?r:a,this}oe.prototype.clear=br,oe.prototype.delete=Er,oe.prototype.get=Pr,oe.prototype.has=wr,oe.prototype.set=fe;function qt(O){var a=-1,E=O?O.length:0;for(this.clear();++a<E;){var x=O[a];this.set(x[0],x[1])}}function Or(){this.__data__=[]}function Tr(O){var a=this.__data__,E=Se(a,O);if(E<0)return!1;var x=a.length-1;return E==x?a.pop():zt.call(a,E,1),!0}function Mr(O){var a=this.__data__,E=Se(a,O);return E<0?void 0:a[E][1]}function Ar(O){return Se(this.__data__,O)>-1}function ve(O,a){var E=this.__data__,x=Se(E,O);return x<0?E.push([O,a]):E[x][1]=a,this}qt.prototype.clear=Or,qt.prototype.delete=Tr,qt.prototype.get=Mr,qt.prototype.has=Ar,qt.prototype.set=ve;function he(O){var a=-1,E=O?O.length:0;for(this.clear();++a<E;){var x=O[a];this.set(x[0],x[1])}}function Cr(){this.__data__={hash:new oe,map:new(Kt||qt),string:new oe}}function Dr(O){return Re(this,O).delete(O)}function Sr(O){return Re(this,O).get(O)}function Lr(O){return Re(this,O).has(O)}function Ir(O,a){return Re(this,O).set(O,a),this}he.prototype.clear=Cr,he.prototype.delete=Dr,he.prototype.get=Sr,he.prototype.has=Lr,he.prototype.set=Ir;function ne(O){this.__data__=new qt(O)}function Rr(){this.__data__=new qt}function Ce(O){return this.__data__.delete(O)}function $e(O){return this.__data__.get(O)}function Br(O){return this.__data__.has(O)}function De(O,a){var E=this.__data__;if(E instanceof qt){var x=E.__data__;if(!Kt||x.length<t-1)return x.push([O,a]),this;E=this.__data__=new he(x)}return E.set(O,a),this}ne.prototype.clear=Rr,ne.prototype.delete=Ce,ne.prototype.get=$e,ne.prototype.has=Br,ne.prototype.set=De;function nr(O,a){var E=me(O)||sr(O)?rt(O.length,String):[],x=E.length,pt=!!x;for(var Ot in O)ot.call(O,Ot)&&!(pt&&(Ot=="length"||Yr(Ot,x)))&&E.push(Ot);return E}function ir(O,a,E){var x=O[a];(!(ot.call(O,a)&&or(x,E))||E===void 0&&!(a in O))&&(O[a]=E)}function Se(O,a){for(var E=O.length;E--;)if(or(O[E][0],a))return E;return-1}function Wr(O,a){return O&&Je(a,Ze(a),O)}function Le(O,a,E,x,pt,Ot,Ct){var At;if(x&&(At=Ot?x(O,pt,Ot,Ct):x(O)),At!==void 0)return At;if(!je(O))return O;var Dt=me(O);if(Dt){if(At=Qr(O),!a)return Vr(O,At)}else{var Lt=le(O),Vt=Lt==f||Lt==b;if(ye(O))return Hr(O,a);if(Lt==S||Lt==o||Vt&&!Ot){if(J(O))return Ot?O:{};if(At=Qe(Vt?{}:O),!a)return zr(O,Wr(At,O))}else{if(!R[Lt])return Ot?O:{};At=Xr(O,Lt,Le,a)}}Ct||(Ct=new ne);var Ht=Ct.get(O);if(Ht)return Ht;if(Ct.set(O,At),!Dt)var _e=E?Jr(O):Ze(O);return h(_e||O,function(be,pe){_e&&(pe=be,be=O[pe]),ir(At,pe,Le(be,a,E,x,pe,O,Ct))}),At}function jr(O){return je(O)?Nt(O):{}}function Ur(O,a,E){var x=a(O);return me(O)?x:P(x,E(O))}function Fr(O){return ft.call(O)}function kr(O){if(!je(O)||Be(O))return!1;var a=lr(O)||J(O)?dt:st;return a.test(te(O))}function xr(O){if(!We(O))return Ut(O);var a=[];for(var E in Object(O))ot.call(O,E)&&E!="constructor"&&a.push(E);return a}function Hr(O,a){if(a)return O.slice();var E=new O.constructor(O.length);return O.copy(E),E}function Ve(O){var a=new O.constructor(O.byteLength);return new St(a).set(new St(O)),a}function Nr(O,a){var E=a?Ve(O.buffer):O.buffer;return new O.constructor(E,O.byteOffset,O.byteLength)}function Gr(O,a,E){var x=a?E(ut(O),!0):ut(O);return N(x,lt,new O.constructor)}function Kr(O){var a=new O.constructor(O.source,H.exec(O));return a.lastIndex=O.lastIndex,a}function Ie(O,a,E){var x=a?E(gt(O),!0):gt(O);return N(x,Y,new O.constructor)}function ze(O){return Qt?Object(Qt.call(O)):{}}function $r(O,a){var E=a?Ve(O.buffer):O.buffer;return new O.constructor(E,O.byteOffset,O.length)}function Vr(O,a){var E=-1,x=O.length;for(a||(a=Array(x));++E<x;)a[E]=O[E];return a}function Je(O,a,E,x){E||(E={});for(var pt=-1,Ot=a.length;++pt<Ot;){var Ct=a[pt],At=void 0;ir(E,Ct,At===void 0?O[Ct]:At)}return E}function zr(O,a){return Je(O,ar(O),a)}function Jr(O){return Ur(O,Ze,ar)}function Re(O,a){var E=O.__data__;return Zr(a)?E[typeof a=="string"?"string":"hash"]:E.map}function se(O,a){var E=nt(O,a);return kr(E)?E:void 0}var ar=Gt?_t(Gt,Object):qr,le=Fr;(kt&&le(new kt(new ArrayBuffer(1)))!=L||Kt&&le(new Kt)!=D||ae&&le(ae.resolve())!=g||ee&&le(new ee)!=i||$t&&le(new $t)!=p)&&(le=function(O){var a=ft.call(O),E=a==S?O.constructor:void 0,x=E?te(E):void 0;if(x)switch(x){case Zt:return L;case Ke:return D;case Oe:return g;case Te:return i;case Me:return p}return a});function Qr(O){var a=O.length,E=O.constructor(a);return a&&typeof O[0]=="string"&&ot.call(O,"index")&&(E.index=O.index,E.input=O.input),E}function Qe(O){return typeof O.constructor=="function"&&!We(O)?jr(jt(O)):{}}function Xr(O,a,E,x){var pt=O.constructor;switch(a){case y:return Ve(O);case M:case u:return new pt(+O);case L:return Nr(O,x);case G:case it:case j:case C:case A:case I:case k:case T:case w:return $r(O,x);case D:return Gr(O,x,E);case B:case d:return new pt(O);case s:return Kr(O);case i:return Ie(O,x,E);case m:return ze(O)}}function Yr(O,a){return a=a==null?n:a,!!a&&(typeof O=="number"||et.test(O))&&O>-1&&O%1==0&&O<a}function Zr(O){var a=typeof O;return a=="string"||a=="number"||a=="symbol"||a=="boolean"?O!=="__proto__":O===null}function Be(O){return!!F&&F in O}function We(O){var a=O&&O.constructor,E=typeof a=="function"&&a.prototype||V;return O===E}function te(O){if(O!=null){try{return K.call(O)}catch{}try{return O+""}catch{}}return""}function Xe(O){return Le(O,!0,!0)}function or(O,a){return O===a||O!==O&&a!==a}function sr(O){return ue(O)&&ot.call(O,"callee")&&(!Yt.call(O,"callee")||ft.call(O)==o)}var me=Array.isArray;function Ye(O){return O!=null&&ur(O.length)&&!lr(O)}function ue(O){return cr(O)&&Ye(O)}var ye=Ft||dr;function lr(O){var a=je(O)?ft.call(O):"";return a==f||a==b}function ur(O){return typeof O=="number"&&O>-1&&O%1==0&&O<=n}function je(O){var a=typeof O;return!!O&&(a=="object"||a=="function")}function cr(O){return!!O&&typeof O=="object"}function Ze(O){return Ye(O)?nr(O):xr(O)}function qr(){return[]}function dr(){return!1}_.exports=Xe},9025:(_,l,e)=>{e.d(l,{k:()=>r});var t=function(o,v){if(typeof o=="undefined"||o===null)throw new TypeError("Cannot convert undefined or null to object");return Object.prototype.hasOwnProperty.call(Object(o),v)},r=function(v){for(var M=arguments.length,u=new Array(M>1?M-1:0),c=1;c<M;c++)u[c-1]=arguments[c];if(Object.assign)return Object.assign.apply(Object,[v].concat(u));for(var f=0;f<u.length;f++)n(v,u[f]);return v},n=function(v,M){for(var u in M)t(M,u)&&(v[u]=M[u]);return v}},9061:(_,l,e)=>{e.d(l,{E0:()=>y,Nw:()=>D,RX:()=>m,_Z:()=>p,hZ:()=>S,oI:()=>b});var t=e(5509),r=function(j,C){if(typeof j=="undefined"||j===null)throw new TypeError("Cannot convert undefined or null to object");return Object.prototype.hasOwnProperty.call(Object(j),C)};function n(j){return u(j)||M(j)||v(j)||o()}function o(){throw new TypeError(`Invalid attempt to spread non-iterable instance.
@@ -4524,7 +4524,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
4524
4524
  });
4525
4525
  var t = e(8176), r = e(2671), n = e(787);
4526
4526
  (0, n.Ni)("app"), (0, n.Ni)("fast-protected");
4527
- var o = (0, n.Ni)("fast"), v = "fast-canary.wistia.net", M = "embed.wistia.com", u = "fast.wistia.net", c = "fast.wistia.com", f = "embed.wistia.com", b = "embed-ssl.wistia.com", D = "embed-fastly.wistia.com", B = "embed-ssl.wistia.com", S = "0.3.2";
4527
+ var o = (0, n.Ni)("fast"), v = "fast-canary.wistia.net", M = "embed.wistia.com", u = "fast.wistia.net", c = "fast.wistia.com", f = "embed.wistia.com", b = "embed-ssl.wistia.com", D = "embed-fastly.wistia.com", B = "embed-ssl.wistia.com", S = "0.3.3";
4528
4528
  (function() {
4529
4529
  return typeof window != "undefined" && t.z === window && t.z.location ? t.z.location.protocol : "https:";
4530
4530
  })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenpatient-org/healthspan-marketing-ui",
3
- "version": "0.2.26",
3
+ "version": "0.2.27",
4
4
  "description": "Design system",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -371,6 +371,11 @@
371
371
  "import": "./dist/components/PlainFeaturesGroup/PlainFeaturesGroup.es.js",
372
372
  "require": "./dist/components/PlainFeaturesGroup/PlainFeaturesGroup.cjs.js"
373
373
  },
374
+ "./HighlightCard": {
375
+ "types": "./dist/components/HighlightCard/HighlightCard.d.ts",
376
+ "import": "./dist/components/HighlightCard/HighlightCard.es.js",
377
+ "require": "./dist/components/HighlightCard/HighlightCard.cjs.js"
378
+ },
374
379
  "./Claims": {
375
380
  "types": "./dist/modules/Claims/Claims.d.ts",
376
381
  "import": "./dist/modules/Claims/Claims.es.js",
@@ -601,6 +606,11 @@
601
606
  "import": "./dist/modules/HomepageHeroV2/HomepageHeroV2.es.js",
602
607
  "require": "./dist/modules/HomepageHeroV2/HomepageHeroV2.cjs.js"
603
608
  },
609
+ "./Highlight": {
610
+ "types": "./dist/modules/Highlight/Highlight.d.ts",
611
+ "import": "./dist/modules/Highlight/Highlight.es.js",
612
+ "require": "./dist/modules/Highlight/Highlight.cjs.js"
613
+ },
604
614
  "./Bubbles": {
605
615
  "types": "./dist/pageComponents/Bubbles/Bubbles.d.ts",
606
616
  "import": "./dist/pageComponents/Bubbles/Bubbles.es.js",