{"version":3,"file":"socialWallMarkup-CazB7pYx.js","sources":["../../node_modules/date-fns/esm/startOfDay/index.js","../../node_modules/date-fns/esm/differenceInCalendarDays/index.js","../../node_modules/date-fns/esm/differenceInDays/index.js","../../node_modules/date-fns/esm/differenceInMinutes/index.js","../../src/foundation/Icons/play.ts","../../src/foundation/Icons/socials/socials.ts","../../src/project/AramcoLife/social-wall/markup/socialWallMarkup.ts"],"sourcesContent":["import toDate from '../toDate/index.js';\nimport requiredArgs from '../_lib/requiredArgs/index.js';\n/**\n * @name startOfDay\n * @category Day Helpers\n * @summary Return the start of a day for the given date.\n *\n * @description\n * Return the start of a day for the given date.\n * The result will be in the local timezone.\n *\n * ### v2.0.0 breaking changes:\n *\n * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes).\n *\n * @param {Date|Number} date - the original date\n * @returns {Date} the start of a day\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // The start of a day for 2 September 2014 11:55:00:\n * var result = startOfDay(new Date(2014, 8, 2, 11, 55, 0))\n * //=> Tue Sep 02 2014 00:00:00\n */\n\nexport default function startOfDay(dirtyDate) {\n requiredArgs(1, arguments);\n var date = toDate(dirtyDate);\n date.setHours(0, 0, 0, 0);\n return date;\n}","import getTimezoneOffsetInMilliseconds from '../_lib/getTimezoneOffsetInMilliseconds/index.js';\nimport startOfDay from '../startOfDay/index.js';\nimport requiredArgs from '../_lib/requiredArgs/index.js';\nvar MILLISECONDS_IN_DAY = 86400000;\n/**\n * @name differenceInCalendarDays\n * @category Day Helpers\n * @summary Get the number of calendar days between the given dates.\n *\n * @description\n * Get the number of calendar days between the given dates. This means that the times are removed\n * from the dates and then the difference in days is calculated.\n *\n * ### v2.0.0 breaking changes:\n *\n * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes).\n *\n * @param {Date|Number} dateLeft - the later date\n * @param {Date|Number} dateRight - the earlier date\n * @returns {Number} the number of calendar days\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // How many calendar days are between\n * // 2 July 2011 23:00:00 and 2 July 2012 00:00:00?\n * var result = differenceInCalendarDays(\n * new Date(2012, 6, 2, 0, 0),\n * new Date(2011, 6, 2, 23, 0)\n * )\n * //=> 366\n * // How many calendar days are between\n * // 2 July 2011 23:59:00 and 3 July 2011 00:01:00?\n * var result = differenceInCalendarDays(\n * new Date(2011, 6, 3, 0, 1),\n * new Date(2011, 6, 2, 23, 59)\n * )\n * //=> 1\n */\n\nexport default function differenceInCalendarDays(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var startOfDayLeft = startOfDay(dirtyDateLeft);\n var startOfDayRight = startOfDay(dirtyDateRight);\n var timestampLeft = startOfDayLeft.getTime() - getTimezoneOffsetInMilliseconds(startOfDayLeft);\n var timestampRight = startOfDayRight.getTime() - getTimezoneOffsetInMilliseconds(startOfDayRight); // Round the number of days to the nearest integer\n // because the number of milliseconds in a day is not constant\n // (e.g. it's different in the day of the daylight saving time clock shift)\n\n return Math.round((timestampLeft - timestampRight) / MILLISECONDS_IN_DAY);\n}","import toDate from '../toDate/index.js';\nimport differenceInCalendarDays from '../differenceInCalendarDays/index.js';\nimport requiredArgs from '../_lib/requiredArgs/index.js'; // Like `compareAsc` but uses local time not UTC, which is needed\n// for accurate equality comparisons of UTC timestamps that end up\n// having the same representation in local time, e.g. one hour before\n// DST ends vs. the instant that DST ends.\n\nfunction compareLocalAsc(dateLeft, dateRight) {\n var diff = dateLeft.getFullYear() - dateRight.getFullYear() || dateLeft.getMonth() - dateRight.getMonth() || dateLeft.getDate() - dateRight.getDate() || dateLeft.getHours() - dateRight.getHours() || dateLeft.getMinutes() - dateRight.getMinutes() || dateLeft.getSeconds() - dateRight.getSeconds() || dateLeft.getMilliseconds() - dateRight.getMilliseconds();\n\n if (diff < 0) {\n return -1;\n } else if (diff > 0) {\n return 1; // Return 0 if diff is 0; return NaN if diff is NaN\n } else {\n return diff;\n }\n}\n/**\n * @name differenceInDays\n * @category Day Helpers\n * @summary Get the number of full days between the given dates.\n *\n * @description\n * Get the number of full day periods between two dates. Fractional days are\n * truncated towards zero.\n *\n * One \"full day\" is the distance between a local time in one day to the same\n * local time on the next or previous day. A full day can sometimes be less than\n * or more than 24 hours if a daylight savings change happens between two dates.\n *\n * To ignore DST and only measure exact 24-hour periods, use this instead:\n * `Math.floor(differenceInHours(dateLeft, dateRight)/24)|0`.\n *\n *\n * ### v2.0.0 breaking changes:\n *\n * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes).\n *\n * @param {Date|Number} dateLeft - the later date\n * @param {Date|Number} dateRight - the earlier date\n * @returns {Number} the number of full days according to the local timezone\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // How many full days are between\n * // 2 July 2011 23:00:00 and 2 July 2012 00:00:00?\n * var result = differenceInDays(\n * new Date(2012, 6, 2, 0, 0),\n * new Date(2011, 6, 2, 23, 0)\n * )\n * //=> 365\n * // How many full days are between\n * // 2 July 2011 23:59:00 and 3 July 2011 00:01:00?\n * var result = differenceInDays(\n * new Date(2011, 6, 3, 0, 1),\n * new Date(2011, 6, 2, 23, 59)\n * )\n * //=> 0\n * // How many full days are between\n * // 1 March 2020 0:00 and 1 June 2020 0:00 ?\n * // Note: because local time is used, the\n * // result will always be 92 days, even in\n * // time zones where DST starts and the\n * // period has only 92*24-1 hours.\n * var result = differenceInDays(\n * new Date(2020, 5, 1),\n * new Date(2020, 2, 1)\n * )\n//=> 92\n */\n\n\nexport default function differenceInDays(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n var sign = compareLocalAsc(dateLeft, dateRight);\n var difference = Math.abs(differenceInCalendarDays(dateLeft, dateRight));\n dateLeft.setDate(dateLeft.getDate() - sign * difference); // Math.abs(diff in full days - diff in calendar days) === 1 if last calendar day is not full\n // If so, result must be decreased by 1 in absolute value\n\n var isLastDayNotFull = compareLocalAsc(dateLeft, dateRight) === -sign;\n var result = sign * (difference - isLastDayNotFull); // Prevent negative zero\n\n return result === 0 ? 0 : result;\n}","import differenceInMilliseconds from '../differenceInMilliseconds/index.js';\nimport requiredArgs from '../_lib/requiredArgs/index.js';\nvar MILLISECONDS_IN_MINUTE = 60000;\n/**\n * @name differenceInMinutes\n * @category Minute Helpers\n * @summary Get the number of minutes between the given dates.\n *\n * @description\n * Get the signed number of full (rounded towards 0) minutes between the given dates.\n *\n * ### v2.0.0 breaking changes:\n *\n * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes).\n *\n * @param {Date|Number} dateLeft - the later date\n * @param {Date|Number} dateRight - the earlier date\n * @returns {Number} the number of minutes\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // How many minutes are between 2 July 2014 12:07:59 and 2 July 2014 12:20:00?\n * var result = differenceInMinutes(\n * new Date(2014, 6, 2, 12, 20, 0),\n * new Date(2014, 6, 2, 12, 7, 59)\n * )\n * //=> 12\n *\n * @example\n * // How many minutes are from 10:01:59 to 10:00:00\n * var result = differenceInMinutes(\n * new Date(2000, 0, 1, 10, 0, 0),\n * new Date(2000, 0, 1, 10, 1, 59)\n * )\n * //=> -1\n */\n\nexport default function differenceInMinutes(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var diff = differenceInMilliseconds(dirtyDateLeft, dirtyDateRight) / MILLISECONDS_IN_MINUTE;\n return diff > 0 ? Math.floor(diff) : Math.ceil(diff);\n}","export const playIcon = `\r\n\t\r\n\t\t\r\n\t\r\n`;","export const instagramLogo = `\r\n\t\r\n\t\t\r\n\t\r\n`;\r\n\r\nexport const linkedinLogo = `\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n`;\r\n\r\nexport const xLogo = `\r\n\t\r\n\t\t\r\n\t\r\n`;\r\n\r\nexport const facebookLogo = `\r\n\t\r\n\t\t\r\n\t\r\n`;\r\n","import { differenceInDays, differenceInHours, differenceInMinutes, format } from \"date-fns\";\r\nimport { playIcon } from \"~/foundation/Icons/play\";\r\nimport { facebookLogo, instagramLogo, linkedinLogo, xLogo } from \"~/foundation/Icons/socials/socials\";\r\nimport { type DistinctSocialWallElements, type SocialWallElement, type SocialWallListDictionary } from \"../../generated-types\";\r\n\r\ntype ExtendedSocialWallElement = SocialWallElement & {\r\n\tpostImage: string;\r\n};\r\n\r\nexport const removeLoader = (container: HTMLElement) => {\r\n\tconst loaderElement = container.querySelector(\".loader\");\r\n\tif (loaderElement) {\r\n\t\tloaderElement.remove();\r\n\t}\r\n};\r\n\r\nexport const addVideoEventListeners = (mediaWrappers: NodeListOf) => {\r\n\tmediaWrappers.forEach(wrapper => {\r\n\t\tconst thumbnail = wrapper.querySelector(\".thumbnail\") as HTMLElement;\r\n\t\tconst playIcon = wrapper.querySelector(\".thumbnail__play-icon\") as HTMLElement;\r\n\t\tconst video = wrapper.querySelector(\"video\") as HTMLVideoElement;\r\n\r\n\t\tif (playIcon && video) {\r\n\t\t\tconst playVideo = () => {\r\n\t\t\t\tthumbnail.classList.add(\"hidden\");\r\n\t\t\t\tvideo.classList.remove(\"hidden\");\r\n\t\t\t\tvideo.play();\r\n\t\t\t};\r\n\r\n\t\t\tplayIcon.addEventListener(\"click\", playVideo);\r\n\t\t\tplayIcon.addEventListener(\"keydown\", (event) => {\r\n\t\t\t\tif (event.key === \"Enter\" || event.key === \" \") {\r\n\t\t\t\t\tevent.preventDefault();\r\n\t\t\t\t\tplayVideo();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\t});\r\n};\r\n\r\nexport const handleMediaLoad = async (mediaWrapper: Element) => {\r\n\treturn new Promise((resolve) => {\r\n\t\tconst img = mediaWrapper.querySelector('img.social-image');\r\n\t\tconst video = mediaWrapper.querySelector('video');\r\n\r\n\t\tif (img) {\r\n\t\t\timg.onload = () => {\r\n\t\t\t\timg.classList.remove(\"hidden\");\r\n\t\t\t\tresolve();\r\n\t\t\t};\r\n\t\t\timg.onerror = () => {\r\n\t\t\t\tmediaWrapper?.classList.add(\"no-img\");\r\n\t\t\t\tresolve();\r\n\t\t\t};\r\n\t\t\t// // Trigger load for images that might be cached\r\n\t\t\t// if (img.complete) {\r\n\t\t\t// \timg.onload!(new Event('load'));\r\n\t\t\t// }\r\n\t\t} else if (video) {\r\n\t\t\t// For videos, we don't actually load the video, just make sure the thumbnail is visible\r\n\t\t\tconst thumbnail = mediaWrapper.querySelector('.thumbnail');\r\n\t\t\tconst thumbnailImg = mediaWrapper.querySelector('.thumbnail img');\r\n\r\n\t\t\tthumbnailImg!.onload = () => {\r\n\t\t\t\tthumbnail!.classList.remove(\"hidden\");\r\n\t\t\t\tresolve();\r\n\t\t\t};\r\n\t\t\tthumbnailImg!.onerror = () => {\r\n\t\t\t\tmediaWrapper?.classList.add(\"no-img\");\r\n\t\t\t\tresolve();\r\n\t\t\t};\r\n\t\t} else {\r\n\t\t\tresolve();\r\n\t\t}\r\n\r\n\t});\r\n};\r\n\r\nexport const formatDate = (postDate: string, dictionary?: SocialWallListDictionary): string => {\r\n\tconst now = new Date();\r\n\tconst postDateObj = new Date(postDate);\r\n\tconst minutesDiff = differenceInMinutes(now, postDateObj);\r\n\tconst hoursDiff = differenceInHours(now, postDateObj);\r\n\tconst daysDiff = differenceInDays(now, postDateObj);\r\n\r\n\tif (minutesDiff < 60) {\r\n\t\treturn `${minutesDiff} ${dictionary?.minutesLabel || \"minutes\"}`;\r\n\t} else if (hoursDiff < 24) {\r\n\t\treturn `${hoursDiff} ${hoursDiff === 1 ? `${dictionary?.hourLabel || \"hour\"}` : `${dictionary?.hoursLabel || \"hours\"}`}`;\r\n\t} else if (daysDiff < 7) {\r\n\t\tconst remainingHours = hoursDiff % 24;\r\n\t\treturn `${daysDiff} ${daysDiff === 1 ? `${dictionary?.dayLabel || \"day\"}` : `${dictionary?.daysLabel || \"days\"}`}${remainingHours ? ` ${remainingHours} ${remainingHours === 1 ? `${dictionary?.hourLabel || \"hour\"}` : `${dictionary?.hoursLabel || \"hours\"}`}` : \"\"}`;\r\n\t} else {\r\n\t\treturn format(postDateObj, \"dd MMMM HH:mm\");\r\n\t}\r\n};\r\n\r\n// Get social icon based on the platform\r\nexport const renderSocialIcon = (socialIcon: string) => {\r\n\tswitch (socialIcon) {\r\n\t\tcase \"facebook\": return facebookLogo;\r\n\t\tcase \"twitter\": return xLogo;\r\n\t\tcase \"instagram\": return instagramLogo;\r\n\t\tcase \"linkedin\": return linkedinLogo;\r\n\t\tdefault: return null;\r\n\t}\r\n};\r\n\r\n// Render social links\r\nexport const renderSocialLinks = (elements: SocialWallElement[]) => {\r\n\treturn elements.map(item => `\r\n \r\n ${renderSocialIcon(item.platform || \"\")}\r\n `).join(\"\");\r\n};\r\n\r\n// Render media (image or video)\r\nexport const renderMedia = async (item: DistinctSocialWallElements) => {\r\n\tconst mediaWrapper = document.createElement(\"div\");\r\n\tmediaWrapper.classList.add(\"media-wrapper\");\r\n\r\n\tconst selectedImage = item.elements\r\n\t\t?.sort((a, b) => {\r\n\t\t\t// Image order: facebook, x (twitter string in the API), linkedin, instagram - prioritize facebook\r\n\t\t\tconst platformOrder = [\"facebook\", \"twitter\", \"linkedin\", \"instagram\"];\r\n\t\t\tconst aIndex = platformOrder.indexOf(a.platform || \"\");\r\n\t\t\tconst bIndex = platformOrder.indexOf(b.platform || \"\");\r\n\t\t\treturn aIndex - bIndex;\r\n\t\t})\r\n\t\t?.find(\r\n\t\t\t(x): x is ExtendedSocialWallElement =>\r\n\t\t\t\t!!(x as ExtendedSocialWallElement).postImage &&\r\n (x as ExtendedSocialWallElement).postImage !== item.imageUrl\r\n\t\t)?.postImage || item.imageUrl;\r\n\r\n\tif (item.videoUrl) {\r\n\t\tmediaWrapper.innerHTML = `\r\n\t\t\t
\r\n\t\t\t\t\r\n\t\t\t\t
\r\n\t\t\t\t\t\"Post\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t`;\r\n\t} else {\r\n\t\tmediaWrapper.innerHTML = `\r\n\t\t\t
\r\n\t\t\t\t\"Post\r\n\t\t\t
`;\r\n\t}\r\n\r\n\tawait handleMediaLoad(mediaWrapper);\r\n\r\n\treturn mediaWrapper;\r\n};\r\n\r\n// Render social wall item\r\n// Use all above functions to create the DOM element and validate img + video + create thumbnail etc.\r\nexport const renderSocialWallItem = async (item: DistinctSocialWallElements, dictionary?: SocialWallListDictionary, isSwiperSlide?: boolean) => {\r\n\tconst mediaWrapper = await renderMedia(item);\r\n\tconst hasNoImage = mediaWrapper.classList.contains(\"no-img\");\r\n\r\n\tconst element = document.createElement(isSwiperSlide ? \"div\" : \"li\");\r\n\tconst classPrefix = isSwiperSlide ? \"social-wall-slider\" : \"social-wall\";\r\n\r\n\tif (isSwiperSlide) {\r\n\t\telement.classList.add(\"social-wall-slider__slide\", \"swiper-slide\");\r\n\t} else {\r\n\t\telement.classList.add(\"social-wall__list-item\");\r\n\t}\r\n\r\n\telement.innerHTML = `\r\n
\r\n ${mediaWrapper?.outerHTML}\r\n
\r\n
\r\n ${item?.elements?.length ? renderSocialLinks(item.elements) : \"\"}\r\n
\r\n
\r\n

${formatDate(item.postDate.toString(), dictionary)}

\r\n

${item.text}

\r\n
\r\n
\r\n
\r\n `;\r\n\r\n\treturn element;\r\n};"],"names":["startOfDay","dirtyDate","requiredArgs","date","toDate","MILLISECONDS_IN_DAY","differenceInCalendarDays","dirtyDateLeft","dirtyDateRight","startOfDayLeft","startOfDayRight","timestampLeft","getTimezoneOffsetInMilliseconds","timestampRight","compareLocalAsc","dateLeft","dateRight","diff","differenceInDays","sign","difference","isLastDayNotFull","result","MILLISECONDS_IN_MINUTE","differenceInMinutes","differenceInMilliseconds","playIcon","instagramLogo","linkedinLogo","xLogo","facebookLogo","removeLoader","container","loaderElement","addVideoEventListeners","mediaWrappers","wrapper","thumbnail","video","playVideo","event","handleMediaLoad","mediaWrapper","resolve","img","thumbnailImg","formatDate","postDate","dictionary","now","postDateObj","minutesDiff","hoursDiff","differenceInHours","daysDiff","remainingHours","format","renderSocialIcon","socialIcon","renderSocialLinks","elements","item","renderMedia","selectedImage","_c","_b","_a","b","platformOrder","aIndex","bIndex","x","renderSocialWallItem","isSwiperSlide","hasNoImage","element","classPrefix"],"mappings":"8EAyBe,SAASA,EAAWC,EAAW,CAC5CC,EAAa,EAAG,SAAS,EACzB,IAAIC,EAAOC,EAAOH,CAAS,EAC3B,OAAAE,EAAK,SAAS,EAAG,EAAG,EAAG,CAAC,EACjBA,CACT,CC3BA,IAAIE,EAAsB,MAoCX,SAASC,EAAyBC,EAAeC,EAAgB,CAC9EN,EAAa,EAAG,SAAS,EACzB,IAAIO,EAAiBT,EAAWO,CAAa,EACzCG,EAAkBV,EAAWQ,CAAc,EAC3CG,EAAgBF,EAAe,QAAS,EAAGG,EAAgCH,CAAc,EACzFI,EAAiBH,EAAgB,QAAS,EAAGE,EAAgCF,CAAe,EAIhG,OAAO,KAAK,OAAOC,EAAgBE,GAAkBR,CAAmB,CAC1E,CC1CA,SAASS,EAAgBC,EAAUC,EAAW,CAC5C,IAAIC,EAAOF,EAAS,YAAW,EAAKC,EAAU,YAAW,GAAMD,EAAS,SAAQ,EAAKC,EAAU,SAAU,GAAID,EAAS,QAAS,EAAGC,EAAU,QAAS,GAAID,EAAS,SAAU,EAAGC,EAAU,SAAQ,GAAMD,EAAS,WAAU,EAAKC,EAAU,WAAU,GAAMD,EAAS,WAAU,EAAKC,EAAU,cAAgBD,EAAS,kBAAoBC,EAAU,kBAElV,OAAIC,EAAO,EACF,GACEA,EAAO,EACT,EAEAA,CAEX,CAwDe,SAASC,EAAiBX,EAAeC,EAAgB,CACtEN,EAAa,EAAG,SAAS,EACzB,IAAIa,EAAWX,EAAOG,CAAa,EAC/BS,EAAYZ,EAAOI,CAAc,EACjCW,EAAOL,EAAgBC,EAAUC,CAAS,EAC1CI,EAAa,KAAK,IAAId,EAAyBS,EAAUC,CAAS,CAAC,EACvED,EAAS,QAAQA,EAAS,QAAO,EAAKI,EAAOC,CAAU,EAGvD,IAAIC,EAAmBP,EAAgBC,EAAUC,CAAS,IAAM,CAACG,EAC7DG,EAASH,GAAQC,EAAaC,GAElC,OAAOC,IAAW,EAAI,EAAIA,CAC5B,CCpFA,IAAIC,EAAyB,IAmCd,SAASC,EAAoBjB,EAAeC,EAAgB,CACzEN,EAAa,EAAG,SAAS,EACzB,IAAIe,EAAOQ,EAAyBlB,EAAeC,CAAc,EAAIe,EACrE,OAAON,EAAO,EAAI,KAAK,MAAMA,CAAI,EAAI,KAAK,KAAKA,CAAI,CACrD,CCzCO,MAAMS,EAAW;AAAA;AAAA;AAAA;AAAA,ECAXC,EAAgB;AAAA;AAAA;AAAA;AAAA,EAMhBC,EAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQfC,EAAQ;AAAA;AAAA;AAAA;AAAA,EAMRC,EAAe;AAAA;AAAA;AAAA;AAAA,ECXfC,EAAgBC,GAA2B,CACjD,MAAAC,EAAgBD,EAAU,cAAc,SAAS,EACnDC,GACHA,EAAc,OAAO,CAEvB,EAEaC,EAA0BC,GAAuC,CAC7EA,EAAc,QAAmBC,GAAA,CAC1B,MAAAC,EAAYD,EAAQ,cAAc,YAAY,EAC9CV,EAAWU,EAAQ,cAAc,uBAAuB,EACxDE,EAAQF,EAAQ,cAAc,OAAO,EAE3C,GAAIV,GAAYY,EAAO,CACtB,MAAMC,EAAY,IAAM,CACbF,EAAA,UAAU,IAAI,QAAQ,EAC1BC,EAAA,UAAU,OAAO,QAAQ,EAC/BA,EAAM,KAAK,CAAA,EAGZZ,EAAS,iBAAiB,QAASa,CAAS,EAC5Cb,EAAS,iBAAiB,UAAYc,GAAU,EAC3CA,EAAM,MAAQ,SAAWA,EAAM,MAAQ,OAC1CA,EAAM,eAAe,EACXD,IACX,CACA,CACF,CAAA,CACA,CACF,EAEaE,EAAkB,MAAOC,GAC9B,IAAI,QAAeC,GAAY,CAC/B,MAAAC,EAAMF,EAAa,cAAgC,kBAAkB,EACrEJ,EAAQI,EAAa,cAAc,OAAO,EAEhD,GAAIE,EACHA,EAAI,OAAS,IAAM,CACdA,EAAA,UAAU,OAAO,QAAQ,EACrBD,GAAA,EAETC,EAAI,QAAU,IAAM,CACLF,GAAA,MAAAA,EAAA,UAAU,IAAI,UACpBC,GAAA,UAMCL,EAAO,CAEX,MAAAD,EAAYK,EAAa,cAAc,YAAY,EACnDG,EAAeH,EAAa,cAAgC,gBAAgB,EAElFG,EAAc,OAAS,IAAM,CACjBR,EAAA,UAAU,OAAO,QAAQ,EAC5BM,GAAA,EAETE,EAAc,QAAU,IAAM,CACfH,GAAA,MAAAA,EAAA,UAAU,IAAI,UACpBC,GAAA,CACT,MAEQA,GACT,CAEA,EAGWG,EAAa,CAACC,EAAkBC,IAAkD,CACxF,MAAAC,MAAU,KACVC,EAAc,IAAI,KAAKH,CAAQ,EAC/BI,EAAc3B,EAAoByB,EAAKC,CAAW,EAClDE,EAAYC,EAAkBJ,EAAKC,CAAW,EAC9CI,EAAWpC,EAAiB+B,EAAKC,CAAW,EAElD,GAAIC,EAAc,GACjB,MAAO,GAAGA,CAAW,KAAIH,GAAA,YAAAA,EAAY,eAAgB,SAAS,GAC/D,GAAWI,EAAY,GACtB,MAAO,GAAGA,CAAS,IAAIA,IAAc,EAAI,IAAGJ,GAAA,YAAAA,EAAY,YAAa,MAAM,GAAK,IAAGA,GAAA,YAAAA,EAAY,aAAc,OAAO,EAAE,GACvH,GAAWM,EAAW,EAAG,CACxB,MAAMC,EAAiBH,EAAY,GACnC,MAAO,GAAGE,CAAQ,IAAIA,IAAa,EAAI,IAAGN,GAAA,YAAAA,EAAY,WAAY,KAAK,GAAK,IAAGA,GAAA,YAAAA,EAAY,YAAa,MAAM,EAAE,GAAGO,EAAiB,IAAIA,CAAc,IAAIA,IAAmB,EAAI,IAAGP,GAAA,YAAAA,EAAY,YAAa,MAAM,GAAK,IAAGA,GAAA,YAAAA,EAAY,aAAc,OAAO,EAAE,GAAK,EAAE,EAAA,KAE9P,QAAAQ,EAAON,EAAa,eAAe,CAE5C,EAGaO,EAAoBC,GAAuB,CACvD,OAAQA,EAAY,CACnB,IAAK,WAAmB,OAAA5B,EACxB,IAAK,UAAkB,OAAAD,EACvB,IAAK,YAAoB,OAAAF,EACzB,IAAK,WAAmB,OAAAC,EACxB,QAAgB,OAAA,IACjB,CACD,EAGa+B,EAAqBC,GAC1BA,EAAS,IAAYC,GAAA;AAAA,eACdA,EAAK,QAAQ;AAAA,QACpBJ,EAAiBI,EAAK,UAAY,EAAE,CAAC;AAAA,SACpC,EAAE,KAAK,EAAE,EAILC,EAAc,MAAOD,GAAqC,WAChE,MAAAnB,EAAe,SAAS,cAAc,KAAK,EACpCA,EAAA,UAAU,IAAI,eAAe,EAE1C,MAAMqB,IAAgBC,GAAAC,GAAAC,EAAAL,EAAK,WAAL,YAAAK,EACnB,KAAK,CAAC,EAAGC,IAAM,CAEhB,MAAMC,EAAgB,CAAC,WAAY,UAAW,WAAY,WAAW,EAC/DC,EAASD,EAAc,QAAQ,EAAE,UAAY,EAAE,EAC/CE,EAASF,EAAc,QAAQD,EAAE,UAAY,EAAE,EACrD,OAAOE,EAASC,CAChB,KAPoB,YAAAL,EAQnB,KACAM,GACA,CAAC,CAAEA,EAAgC,WAChCA,EAAgC,YAAcV,EAAK,YAXnC,YAAAG,EAYlB,YAAaH,EAAK,SAEtB,OAAIA,EAAK,SACRnB,EAAa,UAAY;AAAA;AAAA;AAAA,QAGnBhB,CAAQ;AAAA;AAAA;AAAA,iBAGCqC,GAAiB,EAAE;AAAA;AAAA;AAAA;AAAA;AAAA,oBAKhBF,EAAK,QAAQ;AAAA;AAAA;AAAA,IAK/BnB,EAAa,UAAY;AAAA;AAAA,gBAEXqB,GAAiB,EAAE;AAAA,WAIlC,MAAMtB,EAAgBC,CAAY,EAE3BA,CACR,EAIa8B,EAAuB,MAAOX,EAAkCb,EAAuCyB,IAA4B,OACzI,MAAA/B,EAAe,MAAMoB,EAAYD,CAAI,EACrCa,EAAahC,EAAa,UAAU,SAAS,QAAQ,EAErDiC,EAAU,SAAS,cAAcF,EAAgB,MAAQ,IAAI,EAC7DG,EAAcH,EAAgB,qBAAuB,cAE3D,OAAIA,EACKE,EAAA,UAAU,IAAI,4BAA6B,cAAc,EAEzDA,EAAA,UAAU,IAAI,wBAAwB,EAG/CA,EAAQ,UAAY;AAAA,kBACHC,CAAW,UAAWF,EAAa,SAAW,EAAG;AAAA,QAC3DhC,GAAA,YAAAA,EAAc,SAAS;AAAA,oBACXkC,CAAW;AAAA;AAAA,aAEnBV,EAAAL,GAAA,YAAAA,EAAM,WAAN,MAAAK,EAAgB,OAASP,EAAkBE,EAAK,QAAQ,EAAI,EAAE;AAAA;AAAA;AAAA,iCAGzCf,EAAWe,EAAK,SAAS,SAAS,EAAGb,CAAU,CAAC;AAAA,kCAC/Ca,EAAK,IAAI;AAAA;AAAA;AAAA;AAAA,IAMnCc,CACR","x_google_ignoreList":[0,1,2,3]}